<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Description:
    Contains all the styles for the winning wheel page.
    
Verison History:
    2012-01-28, Douglas McKechie
    - Created based off earlier version.
    
    2015-09-26, Douglas McKechie
    - Minor updates for the 2.0 winwheel example.
*/

body
{
    font-family: arial;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

audio {
  display: none;
}

.btn-grad2 {background-image: linear-gradient(to right, #ffd700 0%, #ffd700 51%, #ffc300  100%)}
.btn-grad2 {
    color: black;font-weight: bold;
            margin: 10px;
            padding: 15px 45px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
          }

.btn-grad {background-image: linear-gradient(to right, #ffd700 0%, #ffd700  51%, #ffc300  100%)}
.btn-grad {
    color: black;font-weight: bold;
            margin: 10px;
            padding: 15px 45px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
                      
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
          }

.btn-grad:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
          }





          


.kodeTicket {
    font-size: 25px;
    color:#ffff ;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
}
/* Sets the background image for the wheel */
td.the_wheel
{
    
    background-position: center;
    background-repeat: no-repeat;
  background-size: 500px 550px;
}

/* Do some css reset on selected elements */
.container2 {
  position: relative;
}


#canvas {
  font-weight: bold;
  word-wrap: break-word;
}


.overlay {
  position: absolute;
  top: 40%;
  left:39%;
  
  opacity: 0.8;
}
h1, p
{
    margin: 0;
}

div.power_controls
{
    margin-right:70px;
}

div.html5_logo
{
    margin-left:70px;
}

/* Styles for the power selection controls */
table.power
{
    background-color: #cccccc;
    cursor: pointer;
    border:1px solid #333333;
}

table.power th
{
    background-color: white;
    cursor: default;
}

td.pw1
{
    background-color: #6fe8f0;
}

td.pw2
{
    background-color: #86ef6f;
}

td.pw3
{
    background-color: #ef6f6f;
}

/* Style applied to the spin button once a power has been selected */
.clickable
{
    cursor: pointer;
}

/* Other misc styles */
.margin_bottom
{
    margin-bottom: 5px;
}

.responsive-image {
    width: 320px;
    max-width: 500%;
    height: auto;
}




#spin_button, #wallet-connect, #spin_button_mobile, #wallet-disconnect {
    font-size: 14px;
    font-weight: bold;
    padding: 15px 10px;
    width: 200px;
    border-width: 2px;
    border-radius: 50px;
    background: linear-gradient(to bottom, #de0202, #4a0a0a);
    color: #f5f5f5 !important;
    border-color: #4a0a0a;
}

#spin_button:hover {
  font-size: 14px;
  color: #530000 !important;
    font-weight: bold;
    padding: 15px 10px;
    width: 250px;
    border-width: 2px;
    border-radius: 50px;
  background: linear-gradient(to bottom, #ffd001, #ceac00);
  border-color: #a10000;
}


#box1 {
  background: rgba(0, 0, 0, .5);
  width: 500px;
  height: 300px;
  padding: 30px 30px;
  border-radius: 30px;
}








/* SIDEBAR */

.sidebar-contact{
    position:fixed;
    top:80%;
    left:-350px;
    transform:translateY(-50%);
    width:350px;
    height:auto;
    padding: 0px 20px 20px 20px;

    box-sizing:border-box;
    transition:0.5s;
      z-index: 100;
  }
  .sidebar-contact.active{
    left:0;
  }
  .sidebar-contact textarea{
    width:100%;
    height:36px;
    padding:5px;
    margin-bottom:10px;
    box-sizing:border-box;
    border:1px solid rgba(0,0,0,.5);
    outline:none;
  }

  .toggle{
    position:absolute;
    height:48px;
    width:48px;
    text-align:center;
    cursor:pointer;
    top:0;
    right:-48px;
    line-height:48px;
      background:#ff3d3d;
      border-radius: 0px 12px 12px 0px;
        z-index: 100;
  }
  .toggle:before{
    content:'\f0a9';
    font-family:fontAwesome;
    font-size:30px;
    color:#ffdd00;
  }
  .toggle.active:before{
    content:'\f057';
      color: #ffdd00;
  }

.fa {
  padding: 15px;
  font-size: 30px;
  width: 15px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

    /* @media(max-width:768px)
    {
    .sidebar-contact{
        visibility: hidden;
    }
    .sidebar-contact .toggle{
        visibility: hidden;
    }
    .sidebar-contact.active .toggle
    {
        visibility: hidden;
    }
    } */</pre></body></html>