@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

body
{
    font-family: 'Montserrat', sans-serif;
    background: url('https://cdn.rbtasset.com/assets/tpl/27bb85daf9/images/middle.png') no-repeat center;
    width: 100%;
}

#canvasContainer {
    position: relative;
    width: 300px;
}
 
#canvas {
    z-index: 1;
}
 
#prizePointer {
    position: absolute;
    left: 200px;
    top: -40px;
    z-index: 999;
}

.extra-top {
    padding-top: 60px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #prizePointer {
        position: absolute;
        left: 160px;
        top: -40px;
        z-index: 999;
    }
    .extra-top {
        padding-top: 35px;
    }
} 

.button {
    position:relative;
    display:inline-block;
    margin:15px 5px;
}

.button .text {
    color:white !important;
    font-weight:bold;
    font-size:24px;
    text-align: center;
    text-decoration:none;
    background-color:#ffcc00;
    display:block;
    position:relative;
    padding:10px 30px;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-shadow: 0px 1px 0px #000;
    filter: dropshadow(color=#000, offx=0px, offy=1px);

    -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #a08107;
    -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #a08107;
    box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #a08107;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    cursor: pointer;
}

.button a:active {
    top:10px;
    background-color:#ffcc00;

    -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #c4a21c;
    -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #c4a21c;
    box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #c4a21c;
}

.button:after{
    content:"";
    height:100%;
    width:100%;
    padding:4px;
    position: absolute;
    bottom:-15px;
    left:-4px;
    z-index:-1;
    background-color:#80680a;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.game-input{
    width: 100%;
    max-width: 75%;
    outline: none;
    border-radius: 8px;
    min-height: 65px;
    border: 5px solid #ffcc00;
    margin: 15px 15px 20px;
    box-shadow: 0 6px 0 #c4a21c, 0 8px 1px 1px rgba(0, 0, 0, .3), 0 10px 0 5px #a58815, 0 12px 0 5px #8b720d, 0 15px 0 5px #695505, 0 15px 1px 6px rgba(0, 0, 0, .3);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.5em;
    letter-spacing: .1em;
    text-shadow: 2px 2px 1px #c4a21c, -2px 2px 1px #c4a21c, 2px -2px 1px #a58815, -2px -2px 1px #a58815, 0px 2px 1px #a58815, 0px -2px 1px #a58815, 0px 4px 1px #856d0f, 2px 4px 1px #856d0f, -2px 4px 1px #930704;
    color: #fff;
    caret-color: #c4a21c;
    padding: 8px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    text-transform:uppercase;
}

.game-input::placeholder{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: .1em;
    text-shadow: 2px 2px 1px #c4a21c, -2px 2px 1px #c4a21c, 2px -2px 1px #a58815, -2px -2px 1px #a58815, 0px 2px 1px #a58815, 0px -2px 1px #a58815, 0px 4px 1px #856d0f, 2px 4px 1px #856d0f, -2px 4px 1px #930704;
    color: #fff;
    opacity: .3;
    text-transform:uppercase;
}





.fixed-footer {
    display: flex;
    justify-content: space-around;
    position: fixed;
    background: radial-gradient(circle 214px at 49.5% 54.2%, #2e2b25 0, #2e2b25 96%);
    padding: 5px 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

.fixed-footer a {
    text-align: center;
    flex-basis: calc((100% - 15px*6)/ 5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    max-width: 75px;
    font-size: 12px
}

.fixed-footer .center {
    transform: scale(1.5) translateY(-5px);
    background: center no-repeat;
    background-size: contain;
    background-color: inherit;
    border-radius: 50%
}

.fixed-footer img {
    /* max-width: 50%; */
    margin-bottom: 5px
}

.custom-alert {
    background-color: #e3e039;
    color: #917110;
    padding: 5px;
    border-radius: 6px;
}