/*
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.
*/




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

section#ruletaCompleta{
    background-image: url(../img/fondo.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.containerRuleta{
    margin-top:2rem;
    padding-right: 45rem;
}
.img_back_ruleta{
    position: absolute;
    /* top: -126px; */
    left: -14px;
    max-width: 750px;
    max-height: 750px;
    z-index: 0;
}
.imagenCesta{
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    max-width: 450px;

}
.btn-dorado{
    background: rgb(247,232,212);
    background: linear-gradient(90deg, rgba(247,232,212,1) 0%, rgba(210,173,97,1) 55%, rgba(195,134,19,1) 100%);
    border:3px;
    color:rgb(255, 255, 255);
    padding:0.25rem 1rem;
    font-size: 1.5rem;
}
.btn-dorado:hover{
    color:rgb(179, 4, 4);
}
.pt-5n{
    margin-top: -2rem !important;
}






@media(max-width: 1024px){
    .imagenCesta{
        display: none;
    }
    section#ruletaCompleta{
        background-image: none;
    }
    

  }




