/*
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;
}

.input_chg {
    margin-top: 30px;
    text-align: center !important;
    font-size: 3em !important;
 
    
    cursor: pointer;
}
    .input_chg:disabled {
        background-color: #2b2b2b;
        color: white;
        cursor:pointer;
    }
    
    .popup_one {
        padding: 20px;
        position: fixed;
        z-index: 999999;
        text-align: center;
        width: 700px;
        margin-left: 40px;
        margin-right: 40px;
        margin-top: 15%;
        background-color: white;
        -moz-border-radius: 3px 3px 3px 3px;
        -webkit-border-radius: 3px 3px 3px 3px;
        background-position: 5px center;
        background-repeat: no-repeat;
        -moz-box-shadow: 0 0 10px #999999;
        -webkit-box-shadow: 0 0 2px #999999;
        box-shadow: 0 0 20px #999999;
        /*color: #ffffff;*/
        /* opacity: 0.8;*/
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        filter: alpha(opacity=90);
        border-radius: 10px;
    }
.popup {
    position: fixed;
    z-index: 999999;
    text-align: center;
    width: 260px;
    margin-top: 50px;
    margin-left: 5px;
    /*background-color: white;*/
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    background-position: 5px center;
    background-repeat: no-repeat;
    /*-moz-box-shadow: 0 0 10px #999999;
    -webkit-box-shadow: 0 0 2px #999999;*/
    /*box-shadow: 0 0 20px #999999;*/
    /*color: #ffffff;*/
    /* opacity: 0.8;*/
    /*-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=90);*/
    /*border-radius: 10px;*/
}

.popup_n {
    position: fixed;
    z-index: 999999;
    text-align: center;
    width: 240px;
    margin-top: 200px;
    margin-left: 15px;
    /*background-color: white;*/
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    background-position: 5px center;
    background-repeat: no-repeat;
    /*-moz-box-shadow: 0 0 10px #999999;
    -webkit-box-shadow: 0 0 2px #999999;*/
    /*box-shadow: 0 0 20px #999999;*/
    /*color: #ffffff;*/
    /* opacity: 0.8;*/
    /*-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=90);*/
    /*border-radius: 10px;*/
}

.log_centerl {
    position: fixed;
    z-index: 999998;
    /*-moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
   
    background-position: 5px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 2px #999999;
    -webkit-box-shadow: 0 0 2px #999999;*/
    /*box-shadow: 0 0 2px #999999;*/
    /*color: #ffffff;*/
    /* opacity: 0.8;*/
    /*-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=90);*/
    /* margin-left: -88px;*/
    margin-top: 380px;
    margin-left: 250px;
    width: 300px;
    border-radius: 50%;
}
.light_off {
    opacity: 0.5;
}




/* Sets the background image for the wheel */
div.the_wheel {
    background-image: url(../../img/back.png);
    background-position: center;
    background-repeat: no-repeat;
}

/* 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;
}