/* input(104,35): run-time error CSS1046: Expect comma, found '0'
input(104,39): run-time error CSS1046: Expect comma, found '/' */
/*
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.
*/

.wheel-arrow {
    margin-bottom: -1px;
    margin-top: 10px;
}

    .wheel-arrow img {
        width: 45px;
        height: 35px;
    }

    .wheel-arrow i {
        font-size: 50px;
        color: #0f0d61;
    }

.responsive-canvas {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* 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;
}


@keyframes slideInFromLeft {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.game-result {
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.spin-button {
    width: 100%;
    max-width: 400px;
    font-size: 25px;
    margin-top: 20px;
    font-weight: 600;
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    box-shadow: 0 3px 7px 0 rgb(0 0 0 / 20%);
    color: #fff !important;
}

.game-heading {
    background-color: #e9ecef;
    padding: 10px;
    color: #2e452f;
    text-transform: uppercase;
}

.game-played-box p {
    font-size: 20px;
}

.game-played-box h5 {
    color: #e62121;
    margin-top: 20px;
}

.game-balace-box {
    margin: auto;
    max-width: 200px;
    border: 1px solid #e7d1d1;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    color: #E3714D;
}

.game-result-empty-box i {
    font-size: 100px;
    color: #FF5722;
}

@media all and (max-width: 450px) and (min-width: 100px) {
    .spin-button, .claim-button {
        font-size: 20px;
    }

    .game-heading {
        font-size: 1rem !important;
    }

    .responsive-canvas {
        width: 80%;
    }

    .game-balace-box {
        padding: 1px;
        font-size: 16px;
    }
}

