/*
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;
}

/* Sets the background image for the wheel */

 @media only screen and (max-width:430px)
        {
            #canvas
            {
                position:relative;
               top:44.5px;
               left:3.5px;
               max-width:318px;
            }
            
            div.the_wheel
            {
                background-image: url(/wp-content/plugins/cn-lucky-wheel/wheel_back-2.png); 
                background-position: center;
                background-repeat: no-repeat;
                background-size: 380px 400px; 
                
                height : 450px;

                
            }
            
            
            #new_pin_div
            {
               /* display:none !important; */
               
               top:40px !important;
            }
            
            #new_pin
            {
                width:30px;
            }
            
          /*  div.the_wheel
            {
                
                
                 background: url(/wp-content/plugins/cn-lucky-wheel/wheel_back-2.png) no-repeat center ; 
                 background-size: cover;
                 overflow:visible;
                 
            } */
            
            
            #cn_wheel_main_div
            {
                            margin-left:0%;
                            margin-right:0%;
                           
                            min-width:100vw !important;
                           

            }
        }
        
         @media only screen and (min-width:430px)
        {
            #canvas
            {
                position:relative;
               top:62px;
               left:5px;
               max-width:110%;
            }
            
            div.the_wheel
            {
                background-image: url(/wp-content/plugins/cn-lucky-wheel/wheel_back-2.png); 
                background-position: center;
                background-repeat: no-repeat;
                background-size: 520px 545px; 
                
                height : 600px;

                
            }
            
             #cn_wheel_main_div
            {
                            max-width:89%;
                            margin-left:5.5%;
                            margin-right:5.5%;

            }
        }





/* Do some css reset on selected elements */
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;
}