/*
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 */
.the_wheel
{
    background-image: url(./wheel_back2.png);
    background-position: center;
    background-repeat: none;
}

/* 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 */
.power
{
    
    cursor: pointer;
    
}
#pw1 {
    font-size: 96px;
}
#pw2 {
    font-size: 96px;
}
#pw3 {
    font-size: 96px;
}
.pw1-1
{
    background-color: #6fe8f0;
    font-size: 96px;
}

.pw2-1
{
    background-color: #86ef6f;
    font-size: 96px;
}

.pw3-1
{
    background-color: #ef6f6f;
    font-size: 96px;
}

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

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


.main {
    background-image: url(./marbel3.jpg); 
    background-position: ;
    background-repeat: repeat-y repeat-x;
    background-size: 500px;
    width: 100%;
    height: 1500px;
}

.imgg {
    background-image: url(./fortu.png); 
    background-size: 300px;
    background-repeat: no-repeat;
}

/*popup*/

*{
    font-family: Areal;
}
.b-container{
    width:400px;
    height:450px;
    background-color: #ccc;
    margin:0px auto;
    padding:10px;
    font-size:30px;
    color: #fff;
}
.b-popup{
    width:100%;
    height: 2000px;
    background-color: rgba(0,0,0,0.5);
    overflow:hidden;
    position:fixed;
    top:0px;
}
.b-popup .b-popup-content{
    margin:40px auto 0px auto;
    width:400px;
    height: 800px;
    padding:10px;
    background-color: #c5c5c5;
    border-radius:5px;
    box-shadow: 0px 0px 10px #000;
}