html,
body,
div,
span,
p,
img,
i,
label,
canvas {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: black;
}

body {
    line-height: 1;
    user-select: none;
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
    outline: 0 !important;
    overflow: hidden;
    background-color: black;
    -webkit-text-size-adjust: 100%;
    position: relative;
    font-family: 'lato-black', sans-serif;
    background-color: #000;
    height: 100vh;
    overflow: hidden;
}

@font-face {
    font-family: 'roboto';
    src: url('fonts/roboto.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto regular';
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
}


@font-face {
    font-family: "lato-black";
    src: url("fonts/lato-black.ttf") format("truetype");
}

@font-face {
    font-family: "oswald-bold";
    src: url("fonts/oswald-bold.ttf") format("truetype");
}

.loading-screen {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    position: absolute;
    opacity: 1;
    transition: .5s ease-out;
}

.loading-screen img {
    position: absolute;
    top: 30%;
    height: 40%;
    left: 0;
    right: 0;
    margin: auto;
}

#black-screen {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    opacity: 1;
}

.main-section {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#currency {
    opacity: 1;
}

#game-clock {
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5vw;
    border-radius: 0 0 0.3vw 0;
    font-size: 1.5vw;
    border-right: 0.15vw solid rgba(255, 255, 255, 0.7);
    border-bottom: 0.15vw solid rgba(255, 255, 255, 0.7);
}

#game-currency {
    color: white;
    position: absolute;
    top: 0;
    left: 6%;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5vw;
    border-radius: 0 0 0.3vw 0.3vw;
    font-size: 1.15vw;
    border-right: 0.15vw solid rgba(255, 255, 255, 0.7);
    border-bottom: 0.15vw solid rgba(255, 255, 255, 0.7);
    border-left: 0.15vw solid rgba(255, 255, 255, 0.7);
}

.hidden {
    visibility: hidden !important;
    pointer-events: none !important;
}

.disabled {
    pointer-events: none !important;
}

.blur {
    filter: blur(0.6vw);
}

#quit-loading {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quit-loading div {
    animation: spin 0.75s linear infinite;
    border: 1vw solid transparent;
    border-bottom: 1vw solid white;
    border-top: 1vw solid white;
    border-radius: 50%;
    width: 7%;
    height: 12.445%;
}/* ROTATION IN PORTRAIT MODE */

#rotate-device {
    background-color: #000;
    height: 100%;
    width: 100%;
    color: #fff;
    visibility: hidden;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rotate-device #device-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 46vw;
    width: 46vw;
    animation: rotate-device 2s ease-out infinite;
}

#rotate-device #device-image #phone-back,
#rotate-device #device-image #phone-back #phone-speaker,
#rotate-device #device-image #phone-back #phone-screen,
#rotate-device #device-image #phone-back #phone-button {
    position: absolute;
    background: white;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 70%;
    width: 40%;
    border-radius: 2vw;
}

#rotate-device #device-image #phone-back #phone-speaker {
    background: black;
    top: 5%;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    height: 5%;
    width: 8.9%;
    border-radius: 2vw;
}

#rotate-device #device-image #phone-back #phone-screen {
    background: black;
    top: 13%;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    height: 71%;
    width: 86%;
    border-radius: 1vw;
}

#rotate-device #device-image #phone-back #phone-button {
    background: black;
    top: auto;
    bottom: 3%;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    height: 10%;
    width: 20%;
    border-radius: 0.7vw;
}

@-moz-keyframes rotate-device {
    0% {
        -moz-transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    15% {
        -moz-transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    25% {
        -moz-transform: rotate(0deg);
    }
    75%,
    100% {
        -moz-transform: rotate(90deg);
    }
}

@-webkit-keyframes rotate-device {
    0% {
        -webkit-transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    15% {
        -webkit-transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    25% {
        -webkit-transform: rotate(0deg);
    }
    75%,
    100% {
        -webkit-transform: rotate(90deg);
    }
}

@keyframes rotate-device {
    0% {
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    15% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    25% {
        transform: rotate(0deg);
    }
    75%,
    100% {
        transform: rotate(90deg);
    }
}

#rotate-text {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
}


/* ROTATION END */.jackpot-wrapper div {
    border: 0.3vh inset;
    border-radius: 5px;
    height: 39.7%;
    bottom: 18%;
    width: 100%;
    font-size: 3vh;
}

.jackpot-type-span {
    width: 100%;
    position: absolute;
    font-size: 2vh;
    text-align: center;
    top: 8%;
    /* text-align: left; */
    /* padding-left: 13%; */
}

.jackpot-value-show {
    text-align: center;
    /* text-align: left; */
    /* padding-left: 5%; */
    width: 100%;
}

#fireworks {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.65);
    background-size: cover;
    visibility: hidden;
    pointer-events: all;
    position: absolute;
    top: 0;
    left: 0;
}

#jackpot-img {
    position: absolute;
    height: 45%;
    top: 22.5%;
    margin: auto;
    left: 0;
    right: 0;
}

#jackpot-type {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 45%;
    color: white;
    text-align: center;
    font-size: 2.8vh;
}

#jackpot-amount {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 54%;
    color: white;
    text-align: center;
    font-size: 6vh;
}

#jackpot-popup {
    position: absolute;
    left: 18.5%;
    bottom: 11%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: 1px solid;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    -webkit-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px 1px;
    -moz-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px 1px;
    box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px 1px;
}

#jackpot-popup div p {
    white-space: nowrap;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#jackpot-popup div {
    padding: 0.5vw;
}

#jackpot-popup div.header {
    border: 0.1vw solid;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

#jackpot-popup div.footer {
    border: 0.1vw solid;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

#jackpot-popup div span:nth-child(1) {
    margin-right: 1vw;
}

#jackpot-popup.show {
    opacity: 1;
    bottom: 13%;
}

#light-img,
#light-second-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 56% !important;
    height: 100% !important;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinReverse {
    100% {
        -moz-transform: rotate(-360deg);
    }
}

@-webkit-keyframes spinReverse {
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spinReverse {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}


/* JACKPOT POPUP */


/* JACKPOT */

.silver-jackpot {
    background: -moz-linear-gradient(top, #8B8A89 0%, #CFCDCB 100%);
    background: -webkit-linear-gradient(top, #8B8A89 0%, #CFCDCB 100%);
    background: linear-gradient(to top, #8B8A89 0%, #CFCDCB 100%);
}

.gold-jackpot {
    background: -moz-linear-gradient(top, #A57E33 0%, #E4C68D 100%);
    background: -webkit-linear-gradient(top, #A57E33 0%, #E4C68D 100%);
    background: linear-gradient(to top,#A57E33 0%, #E4C68D 100%);
}

.platinum-jackpot {
    background: -moz-linear-gradient(top, #7D7566 0%, #F6F2D2 100%);
    background: -webkit-linear-gradient(top, #7D7566 0%, #F6F2D2 100%);
    background: linear-gradient(to top, #7D7566 0%, #F6F2D2 100%);
}

.diamond-jackpot {
    background: -moz-linear-gradient(top,  #60D1FB 0%, #caf9ff  100%);
    background: -webkit-linear-gradient(top,  #60D1FB 0%, #caf9ff  100%);
    background: linear-gradient(to top,  #60D1FB 0%, #caf9ff  100%);
}

.win-jackpot {
    background: rgba(255, 255, 255, 0.33);
}


/*  */

.silver-jackpot-border {
    border: 20px solid transparent;
    border-image-slice: 1;
    -moz-border-image: -moz-linear-gradient(top, #cedce7 0%, #596a72 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #cedce7 0%, #596a72 100%);
    border-image: linear-gradient(to bottom, #cedce7 0%, #596a72 100%);
}

.gold-jackpot-border {
    border: 20px solid transparent;
    border-image-slice: 1;
    -moz-border-image: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
    border-image: linear-gradient(to bottom, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
}

.platinum-jackpot-border {
    border: 20px solid transparent;
    border-image-slice: 1;
    -moz-border-image: -moz-linear-gradient(top, rgba(242, 246, 248, 1) 0%, rgba(216, 225, 231, 1) 50%, rgba(181, 198, 208, 1) 51%, rgba(224, 239, 249, 1) 100%);
    -webkit-border-image: -webkit-linear-gradient(top, rgba(242, 246, 248, 1) 0%, rgba(216, 225, 231, 1) 50%, rgba(181, 198, 208, 1) 51%, rgba(224, 239, 249, 1) 100%);
    border-image: linear-gradient(to bottom, rgba(242, 246, 248, 1) 0%, rgba(216, 225, 231, 1) 50%, rgba(181, 198, 208, 1) 51%, rgba(224, 239, 249, 1) 100%);
}

.diamond-jackpot-border {
    border: 20px solid transparent;
    border-image-slice: 1;
    -moz-border-image: -moz-linear-gradient(top, #b7deed 0%, #71ceef 50%, #21b4e2 51%, #b7deed 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #b7deed 0%, #71ceef 50%, #21b4e2 51%, #b7deed 100%);
    border-image: linear-gradient(to bottom, #b7deed 0%, #71ceef 50%, #21b4e2 51%, #b7deed 100%);
}

.silver-jackpot,
.gold-jackpot,
.platinum-jackpot,
.diamond-jackpot {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@-moz-keyframes shake-animation {
    0% {
        -moz-transform: translate(2px, 1px) rotate(0deg);
    }

    11% {
        -moz-transform: translate(-1px, -2px) rotate(-3deg);
    }

    22% {
        -moz-transform: translate(-3px, 0px) rotate(3deg);
    }

    33% {
        -moz-transform: translate(0px, 2px) rotate(0deg);
    }

    44% {
        -moz-transform: translate(1px, -1px) rotate(3deg);
    }

    55% {
        -moz-transform: translate(-1px, 2px) rotate(-3deg);
    }

    66% {
        -moz-transform: translate(-3px, 1px) rotate(0deg);
    }

    77% {
        -moz-transform: translate(2px, 1px) rotate(-3deg);
    }

    88% {
        -moz-transform: translate(-1px, -1px) rotate(3deg);
    }

    100% {
        -moz-transform: translate(2px, 2px) rotate(0deg);
    }
}

@-ms-keyframes shake-animation {
    0% {
        -ms-transform: translate(2px, 1px) rotate(0deg);
    }

    11% {
        -ms-transform: translate(-1px, -2px) rotate(-3deg);
    }

    22% {
        -ms-transform: translate(-3px, 0px) rotate(3deg);
    }

    33% {
        -ms-transform: translate(0px, 2px) rotate(0deg);
    }

    44% {
        -ms-transform: translate(1px, -1px) rotate(3deg);
    }

    55% {
        -ms-transform: translate(-1px, 2px) rotate(-3deg);
    }

    66% {
        -ms-transform: translate(-3px, 1px) rotate(0deg);
    }

    77% {
        -ms-transform: translate(2px, 1px) rotate(-3deg);
    }

    88% {
        -ms-transform: translate(-1px, -1px) rotate(3deg);
    }

    100% {
        -ms-transform: translate(2px, 2px) rotate(0deg);
    }
}

@-webkit-keyframes shake-animation {
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg);
    }

    11% {
        -webkit-transform: translate(-1px, -2px) rotate(-3deg);
    }

    22% {
        -webkit-transform: translate(-3px, 0px) rotate(3deg);
    }

    33% {
        -webkit-transform: translate(0px, 2px) rotate(0deg);
    }

    44% {
        -webkit-transform: translate(1px, -1px) rotate(3deg);
    }

    55% {
        -webkit-transform: translate(-1px, 2px) rotate(-3deg);
    }

    66% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }

    77% {
        -webkit-transform: translate(2px, 1px) rotate(-3deg);
    }

    88% {
        -webkit-transform: translate(-1px, -1px) rotate(3deg);
    }

    100% {
        -webkit-transform: translate(2px, 2px) rotate(0deg);
    }
}

@keyframes shake-animation {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    11% {
        transform: translate(-1px, -2px) rotate(-3deg);
    }

    22% {
        transform: translate(-3px, 0px) rotate(3deg);
    }

    33% {
        transform: translate(0px, 2px) rotate(0deg);
    }

    44% {
        transform: translate(1px, -1px) rotate(3deg);
    }

    55% {
        transform: translate(-1px, 2px) rotate(-3deg);
    }

    66% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    77% {
        transform: translate(2px, 1px) rotate(-3deg);
    }

    88% {
        transform: translate(-1px, -1px) rotate(3deg);
    }

    100% {
        transform: translate(2px, 2px) rotate(0deg);
    }
}

.shake {
    -moz-animation-name: shake-animation;
    -ms-animation-name: shake-animation;
    -webkit-animation-name: shake-animation;
    animation-name: shake-animation;
    -moz-animation-duration: 2s;
    -moz-transform-origin: 50% 50%;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-duration: 2s;
    -ms-transform-origin: 50% 50%;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -webkit-animation-duration: 2s;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-duration: 2s;
    transform-origin: 50% 50%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes pulse_animation {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.08);
    }

    80% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes gold_shadow {
    0% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0), rgba(0, 0, 0, 0));
    }

    10% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0), rgba(0, 0, 0, 0));
    }

    20% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0), rgba(0, 0, 0, 0));
    }

    30% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0.4), rgba(0, 0, 0, 0));
    }

    40% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0.7), rgba(0, 0, 0, 0));
    }

    50% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0.4), rgba(0, 0, 0, 0));
    }

    60% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0), rgba(0, 0, 0, 0));
    }

    70% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0), rgba(0, 0, 0, 0));
    }

    80% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0), rgba(0, 0, 0, 0));
    }

    100% {
        background: radial-gradient(farthest-side,rgba(248, 181, 0, 0), rgba(0, 0, 0, 0));
    }
}
@keyframes silver_shadow {
    0% {
        background: radial-gradient(farthest-side,rgba(89, 106, 114, 0), rgba(0, 0, 0, 0));
    }

    10% {
        background: radial-gradient(farthest-side,rgba(89, 106, 114, 0), rgba(0, 0, 0, 0));
    }

    20% {
        background: radial-gradient(farthest-side,rgba(89, 106, 114, 0), rgba(0, 0, 0, 0));
    }

    30% {
        background: radial-gradient(farthest-side,rgba(116, 144, 143, 0.6), rgba(0, 0, 0, 0));
    }

    40% {
        background: radial-gradient(farthest-side,rgba(116, 144, 143, 0.9), rgba(0, 0, 0, 0));
    }

    50% {
        background: radial-gradient(farthest-side,rgba(116, 144, 143, 0.6), rgba(0, 0, 0, 0));
    }

    60% {
        background: radial-gradient(farthest-side,rgba(89, 106, 114, 0), rgba(0, 0, 0, 0));
    }

    70% {
        background: radial-gradient(farthest-side,rgba(89, 106, 114, 0), rgba(0, 0, 0, 0));
    }

    80% {
        background: radial-gradient(farthest-side,rgba(89, 106, 114, 0), rgba(0, 0, 0, 0));
    }

    100% {
        background: radial-gradient(farthest-side,rgba(89, 106, 114, 0), rgba(0, 0, 0, 0));
    }
}
@keyframes platinum_shadow {
    0% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0), rgba(0, 0, 0, 0));
    }

    10% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0), rgba(0, 0, 0, 0));
    }

    20% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0), rgba(0, 0, 0, 0));
    }

    35% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0.4), rgba(0, 0, 0, 0));
    }

    40% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0.7), rgba(0, 0, 0, 0));
    }

    45% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0.4), rgba(0, 0, 0, 0));
    }

    60% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0), rgba(0, 0, 0, 0));
    }

    70% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0), rgba(0, 0, 0, 0));
    }

    80% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0), rgba(0, 0, 0, 0));
    }

    100% {
        background: radial-gradient(farthest-side,rgba(181, 198, 208, 0), rgba(0, 0, 0, 0));
    }
}
@keyframes diamond_shadow {
    0% {
        background: radial-gradient(farthest-side, rgba(33, 180, 226, 0), rgba(0, 0, 0, 0));
    }

    10% {
        background: radial-gradient(farthest-side, rgba(33, 180, 226, 0), rgba(0, 0, 0, 0));
    }

    20% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0), rgba(0, 0, 0, 0));
    }

    30% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0.4), rgba(0, 0, 0, 0));
    }

    40% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0.7), rgba(0, 0, 0, 0));
    }

    50% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0.4), rgba(0, 0, 0, 0));
    }

    60% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0), rgba(0, 0, 0, 0));
    }

    70% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0), rgba(0, 0, 0, 0));
    }

    80% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0), rgba(0, 0, 0, 0));
    }

    100% {
        background: radial-gradient(farthest-side,rgba(33, 180, 226, 0), rgba(0, 0, 0, 0));
    }
}

.pulse_animation {
    animation-name: pulse_animation;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.shadow_silver_animation {
    animation: silver_shadow 1000ms linear infinite;
}

.shadow_gold_animation {
    animation: gold_shadow 1000ms linear infinite;
}

.shadow_platinum_animation {
    animation: platinum_shadow 1000ms linear infinite;
}

.shadow_diamond_animation {
    animation: diamond_shadow 1000ms linear infinite;
}/* AUTOPLAY */

#auto-play-modal {
    position: absolute;
    top: 20%;
    left: 25%;
    width: 50%;
    height: 60%;
    pointer-events: none;
    visibility: hidden;
    background: black;
    border: 0.3vh solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    color: white;
}

#auto-play-games-wrapper {
    margin-bottom: 0.3vw;
    text-align: center;
    width: 100%;
    height: 19%;
    top: 6.8%;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

#auto-play-games-wrapper>div:nth-child(1),
#auto-play-games-wrapper>div:nth-child(3) {
    cursor: pointer;
    border: 0.3vh solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 0.3vw;
}

#auto-play-games-wrapper>div:nth-child(2) {
    padding: 0.3vw 2.3vw 0.3vw 2.3vw;
}

#auto-play-quick-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-bottom: 1.3vw;
    top: 26%;
    width: 100%;
}

#auto-play-rules-wrapper {
    width: 100%;
    height: 50%;
    text-align: center;
    top: 34%;
}

#auto-play-rules-wrapper>div:nth-child(1) {
    margin-bottom: 0.5vw;
}

#auto-play-rules-wrapper>div {
    position: relative;
}

.auto-play-elements-wrapper {
    display: flex;
    width: 100%;
    height: 19%;
    justify-content: center;
    align-items: center;
    font-size: 1.3vw;
    color: #848484;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

#auto-play-buttons {
    position: absolute;
    bottom: 5%;
    cursor: pointer;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.8);
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

#auto-play-buttons>.button {
    padding: 1vw;
    margin-left: 1vw;
    margin-right: 1vw;
    font-size: 1.2vw;
    border-radius: 0.2vw;
    border: 0.15vw solid rgba(255, 255, 255, 0.8);
}

.auto-play-elements-wrapper>div {
    margin-left: 0.7vw;
    cursor: pointer;
    border: 0.3vh solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 0.3vw;
}

.auto-play-elements-wrapper>input:nth-child(2) {
    margin-left: 1.5vw;
}

.auto-play-elements-wrapper>* {
    cursor: pointer;
}

.auto-play-elements-wrapper>label {
    width: 30%;
    text-align: left;
}

#auto-play-quick-wrapper>.auto-play-elements-wrapper>label,
#any-win-lang {
    width: auto;
    text-align: center;
}

.auto-play-elements-wrapper>input[type='checkbox'] {
    margin: 0 0.5vw 0 0;
    width: 1vw;
    height: 1vw;
}

.auto-play-elements-wrapper>input:nth-child(3) {
    margin-left: 1.5vw;
    font-size: 1.3vw;
    background: currentColor;
    color: white;
    border: 1px solid white;
    text-align: center;
    border-radius: 0.2vw;
    color: #848484;
    border-color: #848484;
    height: 0.2em;
}

#auto-play-modal>div {
    position: absolute;
}

#nor-title {
    background: #232323;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6.647%;
    font-size: 1.3vw;
    border-radius: 5px 5px 0 0;
}

#auto-play-games-decrease {
    border-right: none !important;
    border-radius: 5px 0 0 5px;
}

#auto-play-games-increase {
    border-left: none !important;
    border-radius: 0 5px 5px 0;
}

#auto-play-games-decrease,
#auto-play-games-increase {
    cursor: pointer;
    border: 0.3vh solid rgba(255, 255, 255, 0.8);
    width: 12%;
}

#auto-play-games-decrease:active,
#auto-play-games-increase:active {
    transform: none !important;
}

#auto-play-games-wrapper>div {
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#auto-play-games-number {
    width: 30%;
    border: 0.3vh solid rgba(255, 255, 255, 0.8);
}

#sap-title {
    margin-bottom: 1vw;
    padding: 0.5vw;
    background: #232323;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input::-webkit-input-placeholder {
    color: #303030 !important;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #303030 !important;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #303030 !important;
}

input:-ms-input-placeholder {
    color: #303030 !important;
}

.disabledAutoSection {
    pointer-events: none;
    opacity: 0.4;
}

.slider-value {
    margin-left: 1.5vw;
    width: 7vw;
}


/* Slider style start */

input[type=range] {
    -webkit-appearance: none;
    width: 27%;
    border: none !important;
    opacity: 0.5;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5.8px;
    cursor: pointer;
    background: #ffffff;
    border-radius: 25px;
}

input[type=range]::-webkit-slider-thumb {
    height: 1vw;
    width: 0.95vw;
    border-radius: 50%;
    background: #000000;
    border: 0.1vw solid white;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -0.27vw;
}

input[type=range]::-moz-range-thumb {
    height: 1vw;
    width: 1vw;
    border-radius: 50%;
    background: #000000;
    border: 0.1vw solid white;
    cursor: pointer;
    margin-top: -6px;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 5.8px;
    background: transparent;
    border-color: transparent;
    border-radius: 25px;
    border-width: 6px 0;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: white;
    border-radius: 10px;
}

input[type=range]::-ms-fill-upper {
    background: white;
    border-radius: 10px;
}

input[type=range]::-ms-thumb {
    border: none;
    height: 8vw;
    width: 8vw;
    margin-top: 1px;
    border-radius: 50%;
    border: 0.1vw solid white;
    background: black;
}/*DIALOG GENERAL*/


/*Dialog start*/

.dialog {
    /*from .modal in main.css*/
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    background: black;
    color: white !important;
    top: 0;
    right: 0;
    text-align: center;
    /*from .middle in main.css*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*Dialog end*/


/*Text start*/

.dialog-transparent {
    background: rgba(0, 0, 0, 0.5);
}

.dialog-text-big .dialog-text-small {
    text-align: center;
}

.dialog-text-big {
    font-size: 3vw;
    margin-bottom: 2vw;
}

.dialog-text-small {
    font-size: 2.5vh;
}


/*Text end*/


/*Buttons start*/

.dialog-button-holder {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.dialog-button {
    text-align: center;
    font-size: 4vh;
    height: 3.5vw;
    min-width: 8vw;
    margin: 2vw;
    padding: 0.6vw 1.6vw 0.6vw 1.6vw;
    cursor: pointer;
    border: 0.3vh solid rgba(255, 255, 255, 0.8);
    border-radius: 1vh;
    color: white;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

.dialog-ok-button {
    background: rgba(0, 0, 0, 0.8);
}

.dialog-yes-button {
    background: limegreen;
}

.dialog-no-button {
    background: tomato;
}


/*Buttons end*/


/*DIALOG GENERAL END*/#help-screen {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
}

#help-content {
    left: 0;
    top: 0;
    color: white;
    background-color: #242424;
    box-shadow: 0px 0px 30px 13px rgb(0, 0, 0);
    border: 1px solid #393939;
    padding: 5%;
    margin: 5% 15%;
}

#help-content img {
    max-width: 100%;
}

#help-content h2 {
    margin: 1em 0;
    text-transform: uppercase;
    text-align: center;
}

#help-content p {
    text-align: center;
    font-family: 'roboto regular';
}

#help-content .value-wrapper p {
    text-align: left;
}

p img {
    width: 1em;
    vertical-align: middle;
}

#table {
    margin: 1em auto;
    padding: 2% 0;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 1px;
}

#table.uc {
    display: flex;
    align-items: center;
}

#table p {
    margin: 0.4em 0 0 0;
}

#table .col {
    width: 100%;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#table .col:nth-child(1) {
    grid-column: 1;
}

#table .col:nth-child(2) {
    grid-column: 2;
}

#table .col:nth-child(3) {
    grid-column: 3;
}

#table .col .cell {
    width: 100%;
    margin: 0.5em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex: 1;
}

#table .col .cell img {
    max-height: 4em;
}

#table .col .cell p img {
    width: 11%;
    vertical-align: middle;
}

#table .col .cell .value-wrapper {
    color: yellow;
    margin: 4% 0 0 0;
}

#table .col .cell .value-wrapper p span {
    color: white !important;
}

#table .col .cell .value-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6em;
    border-radius: 0.4em;
    margin-top: 0.7em;
}

#game-lines {
    margin: 3% 0;
}

#game-lines img {
    width: 100%;
}

#scrollbar {
    visibility: hidden;
    position: absolute;
    top: 22%;
    right: 12%;
    background: rgba(169, 169, 169, 0.49);
    width: 0.8%;
    height: 60%;
    border-radius: 50px;
    box-shadow: 0 0 26px 6px rgb(0, 0, 0);
    cursor: pointer;
}

#scroll {
    position: absolute;
    background: #9c9c9c;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    border-radius: 50px;
    transition: background 0.3s;
}

#scroll.active {
    background: white;
}

#close-help-screen {
    visibility: hidden;
    position: absolute;
    top: 11%;
    right: 11.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    border-radius: 90px;
    pointer-events: none;
    text-shadow: 0px 0px 30px rgb(0, 0, 0);
}

#game-title-help-screen {
    visibility: hidden;
    position: absolute;
    top: 3.8%;
    left: 0;
    width: 14.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c9c9c9;
    border-radius: 90px;
    pointer-events: none;
    text-shadow: 0 0 30px rgb(0, 0, 0);
}

.version-label {
    position: absolute;
    right: 5%;
    bottom: 4%;
    color: white;
}

@media all and (min-width: 989px) {
    #scroll:hover {
        background: white;
    }
}@font-face {
    font-family: "roboto";
    src: url("fonts/roboto.ttf") format("truetype");
}

@font-face {
    font-family: "icons";
    src: url("fonts/icons.ttf") format("truetype");
}

@font-face {
    font-family: 'bottom-icons';
    src: url('fonts/bottom-icons.ttf') format('truetype');
}

@font-face {
    font-family: "cir";
    src: url("fonts/cirHELVn-CrnKond-E.ttf") format("truetype");
}

@font-face {
    font-family: "lato-black";
    src: url("fonts/lato-black.ttf") format("truetype");
}

@font-face {
    font-family: "oswald-bold";
    src: url("fonts/oswald-bold.ttf") format("truetype");
}

.icon {
    font-family: "icons";
}

.icon-11 {
    opacity: 0.3;
}

.icon {
    font-family: "icons";
}

.icon-11 {
    opacity: 0.3;
}

.icon-1:before {
    content: "\e900";
}

.icon-2:before {
    content: "\e901";
}

.icon-3:before {
    content: "\e902";
}

.icon-4:before {
    content: "\e903";
}

.icon-5:before {
    content: "\e904";
}

.icon-6:before {
    content: "\e905";
}

.icon-7:before {
    content: "\e906";
}

.icon-8:before {
    content: "\e907";
}

.icon-9:before {
    content: "\e908";
}

.icon-10:before {
    content: "\e909";
}

.icon-11:before {
    content: "\e90a";
}

.icon-12:before {
    content: "\e90b";
}

.icon-13:before {
    content: "\e90c";
}

.icon-14:before {
    content: "\e90d";
}

.icon-15:before {
    content: "\e90e";
}

.icon-16:before {
    content: "\e90f";
}

.icon-17:before {
    content: "\e910";
}

.icon-18:before {
    content: "\e911";
}

.bottom-icon {
    font-family: "bottom-icons";
}

.icon-delete-all:before {
    content: "\e900";
}

.icon-delete:before {
    content: "\e904";
}

.icon-double:before {
    content: "\e905";
}

.icon-repeat:before {
    content: "\e903";
}

.ui-interactable-false {
    opacity: 20% !important;
    pointer-events: none !important;
}

.chips-interactable-false {
    opacity: 60% !important;
    pointer-events: none !important;
}

body {
    font-family: "oswald-bold", sans-serif;
    margin: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    position: relative;
}

#main-content {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 76%, rgba(10, 10, 10, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 1)), color-stop(76%, rgba(0, 0, 0, 1)), color-stop(100%, rgba(10, 10, 10, 1)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 76%, rgba(10, 10, 10, 1) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 76%, rgba(10, 10, 10, 1) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 76%, rgba(10, 10, 10, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 76%, rgba(10, 10, 10, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#0a0a0a', GradientType=0);
    position: absolute;
    width: 100%;
    height: 100%;
}

#lucky-number-wrapper {
    position: absolute;
    width: 100%;
    height: 18.2%;
    color: white;
}

#lucky-number-wrapper>img {
    width: 100%;
    height: 100%;
}

#lucky-number-show-number {
    position: absolute;
    width: 7vh;
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    right: 2.1%;
    bottom: 14.6%;
    font-family: 'lato-black';
    color: #111111;
}

#lucky-number-jackpot-show {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 27vh;
    height: 10vh;
    right: 6%;
    bottom: 5%;
    font-family: 'lato-black';
}

#lucky-number-jackpot-show>div {
    padding: 1%;
}

#lucky-number-jackpot-name-lang,
#lucky-number-jackpot-value-wrapper {
    font-family: "oswald-bold", sans-serif;
    text-transform: uppercase;
    color: #F4F4F4;
}

#lucky-number-jackpot-message-lang {
    text-transform: lowercase;
    color: #E1C389;
}

.hide {
    display: none !important;
}

#jackpot-popup {
    left: 3%;
    top: 42%;
    bottom: auto !important;
}

#jackpot-popup.show {
    opacity: 1;
    top: 44%;
}

#jackpot-amount {
    top: 53%;
}

.labels {
    width: 100%;
    height: auto;
    display: flex;
}

.labels>div {
    border: 1px solid #ffffff63;
    padding: 0.4% 0.8%;
    background-color: #1c2721;
}

.jackpot-type-span {
    width: 100%;
    position: relative !important;
    text-align: center;
    top: 0;
    padding-left: 0;
    color: white;
}

#jackpots-info-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    top: 6.5%;
    right: 0;
    width: 23%;
    height: 11.111%;
    background: black
}

.jackpot {
    width: 46%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.jackpot-gold-bcg {
    background-image: url('images/jackpot/lucky-number-gold-bcg.png');
    background-size: cover;
}

.jackpot-silver-bcg {
    background-image: url('images/jackpot/lucky-number-silver-bcg.png');
    background-size: cover;
}

.jackpot-online-lucky-bcg {
    background: url('images/jackpot/jackpot-online-lucky-bcg.png');
    background-size: cover;
}

.jackpot-online-bcg {
    background: url('images/jackpot/jackpot-online-bcg.png');
    background-size: cover;
}

.jackpot-online-lucky-bcg>.jackpot-type-span {
    margin-top: 1vh;
}

.jackpot-value {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    border-bottom: 0.15vh solid transparent;
    height: 35%;
    margin-bottom: 0.5vh;
}

.jackpot-condition-wrapper {
    font-family: 'lato-black';
}

.credits {
    float: left;
    height: 100%;
    width: 20%;
}

.bets,
.wins {
    float: left;
    height: 100%;
    width: 20%;
    margin-left: 1%;
    display: flex;
    min-height: 3.6vh;
    align-items: center;
    text-transform: lowercase;
}

#bet-title,
#win-title,
.credits div:nth-child(1) {
    color: white;
    font-size: 1vw;
    text-align: left;
    padding-right: 4%;
}

.credit-value,
.totalbet-text-wrapper,
.win-text-wrapper {
    color: white;
    width: 100%;
    text-align: left;
}

.jackpot-value-show {
    color: white;
    width: auto;
    text-align: center;
    padding: 0;
}

.button {
    font-size: calc(1.3vmax + 1.3vmin);
    border-radius: 5px;
    border: 0.4vh solid rgba(255, 255, 255, 0.75);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

#auto-play-button {
    color: white;
}

#options {
    position: absolute;
    display: flex;
    top: 20%;
    left: 0%;
    width: 21%;
    height: 9%;
}

.optButtons {
    position: relative;
    height: auto;
    padding: 0% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 0.4vh solid rgba(255, 255, 255, 0.75);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.85);
}

#fullscreen-button {
    position: absolute;
    height: 8.4%;
    width: 5%;
    top: 22%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-left: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.4vh solid rgba(255, 255, 255, 0.75);
    border-radius: 0 2vh 2vh 0;
    background: rgba(0, 0, 0, 0.6);
    color: deeppink;
}

#stat-button {
    position: absolute;
    padding: 0.7%;
    top: 21%;
    left: 76%;
    border-radius: 0 !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    -webkit-tap-highlight-color: transparent;
    background: -moz-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
    background: -webkit-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
    background: -ms-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
    border: 0.15vh solid black;
    box-shadow: inset 0 0 0.1vh 0.1vh #4F5D50ff;
    color: white;
    font-size: 1.2vw;
}

#stat-button:hover {
    background: -moz-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
    background: -webkit-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
    background: -ms-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
}

/* #volume-button {
    color: yellow;
} */

/* #info-button {
    color: dodgerblue;
} */

.denomination-button {
    color: #eee;
}

#denomination-popup-roulette {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    height: auto;
    border: 0.2vw solid rgba(255, 255, 255, 0.8);
    border-top: none !important;
    border-radius: 0 0 0.3vw 0.3vw;
    background: rgba(0, 0, 0, 0.85);
    transition: opacity 0.3s;
}

#denomination-popup-roulette.show {
    pointer-events: all;
    opacity: 1;
}

#currency {
    display: none;
}

.credits {
    color: white;
    cursor: pointer;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    min-height: 3.6vh;
    align-items: center;
    text-transform: lowercase;
}

#stat-button {
    /* color: #00ff50; */
}

.options-button {
    color: #eee;
    border-radius: 0 2vh 2vh 0;
    width: auto !important;
    padding: 4.6% !important;
}

.optButtons:active {
    background: rgb(255, 255, 255) !important;
    color: black !important;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -o-transform: scale(1) !important;
}

/* #volume-button {
    border-right: none !important;
} */

/* #info-button, */
.denomination-button.optButtons {
    border-left: none !important;
    border-right: none !important;
}

.denomination-button>span {
    position: absolute;
    top: 13%;
}

.denomination-button>div {
    position: absolute;
    top: 50%;
    font-size: calc(0.7vmax + 0.7vmin);
}

.denomination-button>div>p {
    display: inline-block;
}

.history-line {
    position: absolute;
    /* border: 2px solid rgba(68, 68, 68, 0.8); */
    width: 50%;
    height: 4.5%;
    left: 25%;
    border-radius: 5px;
    top: 38.3%;
}

.history-blink {
    position: absolute;
    background-size: cover;
    background-image: url("images/history-blink.png");
    animation: blinker 1s infinite;
}

/* BOARD */

.table-wrapper {
    position: absolute;
    width: 80.13%;
    height: 51.1%;
    bottom: 20%;
    left: 10.035%;
    pointer-events: all;
    font-family: 'lato-black';
    /* background: url("images/table-roulette.png");
    background-size: contain;
    background-repeat: no-repeat; */
}

.table-wrapper>img {
    width: 100%;
    height: 100%;
    position: absolute;
}

#table-selection {
    pointer-events: none;
    opacity: 0.4;
}

#wins-canvas {
    pointer-events: none;
}

#chips-canvas {
    cursor: pointer;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

.board-wrapper,
.board-chip-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

#f37 {
    left: 93.05%;
    top: 0.4%;
    width: 6.7%;
}

#f38 {
    left: 93.05%;
    top: 20.5%;
    width: 6.7%;
}

#f39 {
    left: 93.05%;
    top: 40.4%;
    width: 6.7%;
}

#f40 {
    left: 7.3%;
    top: 60.6%;
    width: 28.1%;
}

#f41 {
    left: 35.9%;
    top: 60.6%;
    width: 28.1%;
}

#f42 {
    left: 64.5%;
    top: 60.6%;
    width: 28.1%;
}

#f43 {
    left: 7.3%;
    top: 80.4%;
    width: 14%;
}


#f44 {
    left: 21.4%;
    top: 80.4%;
    width: 14%;
}

#f47 {
    left: 64.3%;
    top: 80.4%;
    width: 14%;
}

#f48 {
    left: 78.7%;
    top: 80.4%;
    width: 14%;
}

.defaultField,
.defaultField2x1 {
    position: absolute;
    color: #fefdfe;
    border-radius: 0.5vh;
    display: flex;
    height: 18.714%;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    font-family: 'lato-black';
}

/* Used for blinking animation*/

.blinker {
    animation: blinker 1s infinite;
    -webkit-animation: blinker 1s infinite;
}

@keyframes blinker {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.info-blink {
    animation: info-blinker 1s infinite;
    -webkit-animation: info-blinker 1s infinite;
}

@keyframes info-blinker {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@-webkit-keyframes info-blinker {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* progress bar */

.progress-bar-holder {
    width: 100%;
    background: #48514C;
    border-bottom: 1px solid #727D73;
    height: 0.5%;
    top: 10.32%;
    position: relative;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.progress-bar {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
}

#status {
    background-image: url("images/status-background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 14.3%;
    width: 70%;
    left: 15%;
    height: 4.5%;
    text-align: center;
    font-family: "oswald-bold", sans-serif;
    font-size: calc(0.43vmax + 0.43vmin);
}

.quit-button {
    position: absolute;
    height: 9%;
    width: 5%;
    top: 20%;
    right: 0;
    border-top: 0.4vh solid rgba(255, 255, 255, 0.75);
    border-right: 0.4vh solid rgba(255, 255, 255, 0.75);
    border-radius: 2vh 0 0 2vh;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    font-size: 4vh;
    border: 0.4vh solid rgba(255, 255, 255, 0.75);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 2vh;
    color: white;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

.button:active {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transform: scale(0.95);
    -ms-transform: scale(0.95);
    -webkit-transition-duration: 0.2s;
    -webkit-transform: scale(0.95);
    -moz-transition-duration: 0.2s;
    -moz-transform: scale(0.95);
    -o-transition-duration: 0.2s;
    -o-transform: scale(0.95);
}

#fullscreen-button {
    color: deeppink !important;
    display: none !important;
}

#denomination-popup-roulette .denomination-popup-item {
    display: flex;
    width: 100%;
    padding: 0.8vw 0 0.8vw 0;
    justify-content: center;
    cursor: pointer;
    color: white;
    text-align: center;
    font-size: 0.8vw;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

#denomination-popup-roulette .denomination-popup-item:active,
#denomination-popup-roulette .denomination-popup-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.button:active,
.quit-button:active {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -webkit-transition-duration: 0.2s;
    transition: background-color 0.5s ease;
    transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transform: scale(0.95);
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transition-duration: 0.2s;
    -moz-transform: scale(0.95);
    -o-transition-duration: 0.2s;
    -o-transform: scale(0.95);
}

.bottomButton {
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    background: -moz-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
    background: -webkit-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
    background: -ms-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
    border: 1px solid black;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.bottomButton:hover {
    background: -moz-linear-gradient(90deg, rgb(64, 94, 67, 0.8) 0%, rgb(52, 74, 54, 0.8) 100%);
    background: -webkit-linear-gradient(90deg, rgb(64, 94, 67, 0.8) 0%, rgb(52, 74, 54, 0.8) 100%);
    background: -ms-linear-gradient(90deg, rgb(64, 94, 67, 0.8) 0%, rgb(52, 74, 54, 0.8) 100%);
}

.bottomButton>i {
    font-size: 1.4vw;
    display: block;
    padding-top: 6%;
}

.bottomButton>span:first-of-type {
    font-size: 1.666%;
    display: block;
    padding-top: 2.5%;
}

.bottomButton.right-buttons-series {
    padding-left: 1.5%;
    justify-content: flex-start;
    font-size: 1.852vh;
    background: #122A12;
    border: 2px solid #486047;
    box-shadow: none;
    border-radius: 1vh;
}

.bottomButton.left-buttons-series {
    padding-right: 4%;
    justify-content: flex-end;
    font-size: 1.852vh;
    background: #122A12;
    border: 2px solid #486047;
    box-shadow: none;
    border-radius: 1vh;
}

.bottomButton.left-buttons-series>i {
    color: #516651;
    padding-top: 0%;
}

/*End repeat button*/

.bottomButton.right-buttons-series>i {
    color: #516651;
    padding-top: 0%;
}

.bottomButton.left-buttons-series>span {
    padding-top: 0%;
}

.bottomButton.right-buttons-series>span {
    padding-top: 0%;
}

.bottomButton.right-buttons-series:hover {
    border: 2px solid #5AAC4C;
}

.bottomButton.left-buttons-series:hover {
    border: 2px solid #5AAC4C;
}

.bottomButton.series-active-state {
    background: #011501;
    border: 2px solid #5AAC4C;
}

/*Repeat button*/
#repeat-bet-button i {
    padding-top: 3.5%;
}

#repeat-lang {
    padding-top: 1.5%;
}

#auto-lang {
    padding-top: 1.5%;
}

#hold-for-auto-lang {
    font-family: 'Lato-Black';
    display: block;
    padding-top: 1%;
    color: rgb(154, 163, 155);
}

#hold-to-stop-auto-lang {
    font-family: 'Lato-Black';
    display: block;
    padding-top: 1%;
    color: rgb(154, 163, 155);
}

.bottomButton.autoModeActivated {
    background: #011501;
    border: 2px solid #5AAC4C;
}

/*End repeat button*/

#left-bottom-button-wrapper {
    position: absolute;
    bottom: 3.5%;
    width: 27%;
    height: 9.5%;
    left: 1%;
    display: flex;
}

#left-bottom-button-wrapper>.bottomButton {
    width: 48%;
    height: 100%;
    margin-right: 8%;
    display: block;
}

#right-bottom-button-wrapper {
    position: absolute;
    bottom: 3.5%;
    width: 27%;
    height: 9.5%;
    right: 1%;
    display: flex;
    justify-content: flex-end;
}

#right-bottom-button-wrapper>.bottomButton {
    width: 48%;
    height: 100%;
    margin-left: 8%;
    display: block;
}

#left-top-button-wrapper {
    position: absolute;
    bottom: 15.4%;
    width: 9.115%;
    height: 22.92%;
    left: 6.05%;
    display: flex;
    flex-direction: column-reverse;
}

#left-top-button-wrapper>.bottomButton {
    max-width: 100%;
    height: 20.16%;
    margin-bottom: 4.84%;
}

#right-top-button-wrapper {
    position: absolute;
    bottom: 15.4%;
    width: 9.115%;
    height: 22.92%;
    right: 5.9%;
    display: flex;
    flex-direction: column-reverse;
}

#left-top-button-wrapper.race-table-left-series-position {
    bottom: 34%;
    left: 21.5%;
}

#right-top-button-wrapper.race-table-right-series-position {
    bottom: 34%;
    right: 21.3%;
}

#right-top-button-wrapper>.bottomButton {
    max-width: 100%;
    height: 20.16%;
    margin-bottom: 4.84%;
}

.disable-pointer-events {
    pointer-events: none !important;
}

.gold-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    background-image: -moz-linear-gradient(90deg, #C38641 0%, #F4D179 100%);
    background-image: -webkit-linear-gradient(90deg, #C38641 0%, #F4D179 100%);
    background-image: -ms-linear-gradient(90deg, #C38641 0%, #F4D179 100%);
}

#chips-wrapper {
    position: absolute;
    width: 41.4%;
    height: 9.5%;
    bottom: 3.5%;
    left: 29.3%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

#chips-wrapper.chips-justify-content{
    justify-content: flex-start;
}

.chip {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100%;
    min-width: 5vw;
    display: flex;
    position: relative;
    font-size: 1vw;
    justify-content: center;
    text-align: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.75;
    outline: 0;
    margin-left: 1.45%;
    margin-right: 1.45%;
    color: black;
    -webkit-tap-highlight-color: transparent;
}

.chip-button {
    color: white;
    font-size: 2vw;
    position: absolute;
    top: 89.1%;
    cursor: pointer;
    padding: 1vw;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

#left-chip-button {
    left: 26.5%;
    opacity: 0.4;
}

#right-chip-button {
    right: 26.5%;
}

#chip1 {
    background-image: url("images/chips/chip1.png");
}

#chip2 {
    background-image: url("images/chips/chip2.png");
}

#chip3 {
    background-image: url("images/chips/chip3.png");
}

#chip4 {
    background-image: url("images/chips/chip4.png");
}

#chip5 {
    background-image: url("images/chips/chip5.png");
}

#chip6 {
    background-image: url("images/chips/chip6.png");
}

#chip7 {
    background-image: url("images/chips/chip7.png");
}

#chip8 {
    background-image: url("images/chips/chip8.png");
}

#chip9 {
    background-image: url("images/chips/chip9.png");
}

#chip10 {
    background-image: url("images/chips/chip10.png");
}

.special-button {
    position: absolute;
    width: 5.65%;
    height: 10%;
    top: 34%;
    cursor: pointer;
    background-repeat: no-repeat;
    border: none;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    color: #fefdfe;
}

.special-button.left {
    left: 2.6%;
    word-spacing: 100vw;
    text-align: center;
    background-image: url("images/race-bet.png");
    background-size: contain;
}


.special-button.right {
    left: 91.5%;
    word-spacing: 100vw;
    text-align: center;
    border-image-slice: 1;
    border: 0.2vh solid #000000;
    border-radius: 50%;
    box-shadow: inset 0 0.2vh 0 #88A08A;
    background: -moz-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
    background: -webkit-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
    background: -ms-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
}

.special-button.right:hover {
    background: -moz-linear-gradient(90deg, rgb(64, 94, 67) 0%, rgb(52, 74, 54) 100%);
    background: -webkit-linear-gradient(90deg, rgb(64, 94, 67) 0%, rgb(52, 74, 54) 100%);
    background: -ms-linear-gradient(90deg, rgb(64, 94, 67) 0%, rgb(52, 74, 54) 100%);
}

.stream-message {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    color: white;
}

#show-stream-button {
    display: flex;
    left: 0%;
    position: absolute;
    height: 8%;
    width: 4.8%;
    font-size: 1vw;
    background: rgba(0, 0, 0, 0.85);
    border: 0.4vh solid rgba(255, 255, 255, 0.75);
    top: 38.4%;
    color: white;
    text-align: center;
    vertical-align: middle;
    border-radius: 0 1vw 1vw 0;
    visibility: hidden;
}

.stream-wrapper {
    position: absolute;
    width: 18.1%;
    height: 18.1%;
    top: 0%;
    left: 41.65%;
    background: #0f1010;
    box-shadow: 1px 1px 8px black;
}

.stream-canvas-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0f1010;
}

.stream-wrapper:after {
    pointer-events: none;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid #363636;
}

.stream-wrapper>canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#stream-numbers-wrapper {
    visibility: hidden;
}

#stream-controls {
    visibility: hidden;
}

.stream-desktop-controls {
    position: absolute;
    visibility: visible;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5vw;
    height: 2.5vw;
    bottom: 1.6%;
    background: rgba(0, 0, 0, 0.57);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1vw;
    border: solid 1px rgba(255, 255, 255, 0.21);
}

#change-stream-desktop {
    right: 0.9%;
}

#resize-stream-desktop {
    left: 0.9%;
}

#play-pause-stream-desktop {
    left: 0.9%;
}

.stream-desktop-controls:active {
    color: white;
    background: rgba(255, 255, 255, 0.35);
}

/**** MODALS ****/

.processing-loader {
    border: 1vw solid transparent;
    border-bottom: 1vw solid white;
    border-top: 1vw solid white;
    border-radius: 50%;
    width: 7%;
    height: 12.445%;
}

#processing-label {
    color: white;
    position: absolute;
    top: 61%;
    font-size: 1.5vw;
    width: 100%;
    left: 0;
}

/* MODALS END */

/* HELP ADDITIONAL STYLE ----------------------------------------- */

#help-content p {
    text-align: justify;
}

#help-content img {
    width: 100%;
}

#help-bets-rules {
    width: 100%;
    display: grid;
    grid-column-gap: 1em;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

#help-bets-rules p,
#help-bets-chances>div>p {
    text-align: left !important;
}

#help-bets-rules img,
#help-bets-rules p,
#help-race-bet img,
#help-race-bet p,
#help-poker-bet img,
#help-poker-bet p {
    display: flex;
    justify-content: center;
    align-self: center;
}

#help-bets-chances {
    width: 100%;
    display: grid;
    grid-column-gap: 1em;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

#help-race-bet,
#help-poker-bet {
    width: 100%;
    display: grid;
    grid-column-gap: 1em;
    grid-template-columns: 15% 81%;
    grid-template-rows: repeat(1, 1fr);
}

.help-icons {
    display: inline-block !important;
}

#help-buttons {
    width: 100%;
}

#help-buttons div {
    display: flex;
    justify-content: space-between;
}

#help-buttons div i {
    width: 1.2em;
}

#help-buttons div p:nth-child(2) {
    flex: 1;
}

#help-buttons div p:nth-child(3) {
    width: 75%;
}

#help-buttons i,
#help-buttons p {
    display: flex;
    align-self: center;
}

#help-buttons-series,
#help-buttons-special-bets,
#help-buttons-options {
    background: rgba(0, 0, 0, 0.35);
    background: linear-gradient(to right, #00000000, #161616, transparent);
    padding: 0.2em 0;
    margin: 0.8em 0;
}

#help-chips {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#help-chips img {
    width: 60%;
}

#help-credit-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    text-align: center;
    align-items: center;
    border-radius: 1em;
    background: black;
    padding: 1em 0;
}

#help-timer {
    width: 100%;
    position: relative;
    border: 1px solid #535353;
    display: flex;
    justify-content: center;
    align-items: center;
}

#help-timer-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 74%;
    height: 100%;
    background: green;
}

#help-timer-label {
    position: relative;
    margin: 0.3em 0;
    text-transform: uppercase;
}

table {
    width: 100%;
    text-align: center;
    border-spacing: 0;
    border: 1px solid #474747;
}

#help-poker-table {
    width: 50%;
    margin: auto;
}

table tr td {
    border: 1px solid #383838;
    padding: 0.2em;
}

#help-table-play,
#help-table-win-1,
#help-table-win-2,
#help-table-win-3,
#help-poker-table-outcome,
#help-poker-table-win,
#help-poker-table-min,
#help-poker-table-max,
#help-table-win,
#help-table-min,
#help-table-max {
    font-weight: bold;
    background: #171717;
    padding: 0.3em 0;
}

#help-table-roulette,
#help-table-game-prizes,
#help-poker-table-title,
#help-poker-table-limits,
#help-table-bet-limits {
    font-weight: bold;
    text-transform: uppercase;
    background: #171717;
    padding: 0.3em 0;
}

#help-max-bet-description,
#help-max-win-description {
    display: inline-block;
}

#help-race-bet-board-description,
#help-poker-bet-board-description,
#help-timer-description,
#help-22-numbers-description,
#help-bonus,
#help-malfunction,
.rtp {
    text-align: center !important;
}

#help-buttons-series,
#help-buttons-special-bets,
#help-buttons-options,
#help-malfunction {
    justify-content: center;
    grid-column: 1/4;
}

#help-content.uc #help-bets-rules {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 24em;
}

#help-content.uc #help-bets-rules img {
    max-width: 4em;
    margin: 4% 0;
}

#help-content.uc #help-bets-chances {
    display: flex;
    justify-content: space-between;
}

#help-content.uc #help-bets-chances div {
    width: 33%;
}

#help-content.uc #help-bets-chances div img {
    width: 100%;
}

#help-content.uc #help-race-bet,
#help-content.uc #help-poker-bet {
    width: 100%;
    display: flex;
}

#help-content.uc #help-race-bet img,
#help-content.uc #help-poker-bet img {
    width: 15% !important;
    margin-right: 3%;
}

#help-content.uc #help-credit-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#help-content.uc #help-credit-section span,
#help-content.uc #help-credit-section div {
    width: 30%;
}

/* HELP END */

#rotate-device {
    display: flex;
    justify-content: center;
    text-align: center;
}

#rotate-device>img {
    height: 100%;
}

#watermark {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0.3%;
    right: 1%;
    text-align: center;
}

/* Slider style end */

.win-number-animation {
    animation: win-blinker 1s infinite;
    -webkit-animation: win-blinker 1s infinite;
}

#illegal-bet-div {
    padding-bottom: 20%;
}

#illegal-bet-container {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: -webkit-radial-gradient(black, rgba(0, 0, 0, 0));
    color: red;
}

@keyframes win-blinker {
    0% {
        opacity: 0.5;
    }

    35% {
        opacity: 1;
    }

    65% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@media all and (max-width: 1030px) {
    input[type="range"]::-webkit-slider-thumb {
        height: 2vw;
        width: 2vw;
        margin-top: -0.7vw;
    }

    input[type="range"]::-moz-range-thumb {
        height: 1vw;
        width: 1vw;
    }

    input[type="range"]::-ms-thumb {
        height: 9vw;
        width: 9vw;
    }
}

@media all and (max-width: 989px) {

    /* UI UPDATES IF MOBILE VERSION */
    .jackpot-type-span {
        width: 100%;
        position: absolute;
        text-align: center;
        top: 5%;
        /* text-align: left; */
        /* padding-left: 13%; */
    }

    .jackpot-value-show {
        text-align: center;
        /* text-align: left; */
        /* padding-left: 5%; */
        width: 100%;
    }

    #jackpot-popup {
        left: 3%;
        top: 9%;
    }

    #jackpot-popup.show {
        opacity: 1;
        top: 13%;
        left: 6.6%;
    }

    .quit-button {
        position: absolute;
        height: 9%;
        width: 5%;
        background: rgba(0, 0, 0, 0.6);
        font-size: 4vh;
        border: 0.4vh solid rgba(255, 255, 255, 0.75);
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        border-right: none;
        border-radius: 2vh 0 0 2vh;
        top: 8%;
        right: 0;
        color: white;
        text-align: center;
        vertical-align: middle;
    }

    #auto-play-modal {
        top: 3%;
        left: 6%;
        width: 88%;
        height: 92%;
    }

    #nor-title {
        height: 8.825%;
    }

    #auto-play-buttons>.button {
        padding: 1vw;
        margin-left: 1.5vw;
        margin-right: 1.5vw;
        font-size: 2.8vw;
        border-radius: 0.4vw;
        border: 0.15vw solid rgba(255, 255, 255, 0.8);
    }

    #auto-play-games-wrapper {
        height: 21%;
    }

    .auto-play-elements-wrapper>label {
        width: 40%;
        text-align: left;
    }

    input[type="range"]::-webkit-slider-thumb {
        height: 3vw;
        width: 3vw;
        margin-top: -1vw;
    }

    input[type="range"]::-moz-range-thumb {
        height: 2vw;
        width: 2vw;
    }

    input[type="range"]::-ms-thumb {
        height: 11vw;
        width: 11vw;
    }

    #left-top-button-wrapper {
        bottom: 22% !important;
        width: 40%;
        height: 5.5%;
        display: flex;
        flex-direction: row;
        transform: matrix(1, 0, 0, 1, 0, 0);
    }

    .bottomButton {
        width: 12.8%;
        margin-right: 2%;
        height: 100% !important;
        margin-bottom: 0 !important;
        display: block;
    }

    .cancel-all-button {
        color: rgb(253, 134, 134);
    }

    #right-top-button-wrapper {
        bottom: 22% !important;
        width: 40%;
        height: 5.5%;
        right: 2%;
        display: flex;
        justify-content: flex-end;
        flex-direction: row;
        transform: matrix(1, 0, 0, 1, 0, 0);
    }

    #right-top-button-wrapper .bottomButton,
    #right-bottom-button-wrapper .bottomButton {
        margin-right: 0;
        margin-left: 2%;
    }

    #left-bottom-button-wrapper,
    #right-bottom-button-wrapper {
        bottom: 11.5%;
        height: 5.5%;
    }

    .bottomButton>i {
        display: none !important;
    }

    .bottomButton>span:first-of-type {
        width: 100%;
        height: 100%;
        margin: 0;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 1.3vw;
    }

    .chip-button {
        top: 73.1%;
        width: 4%;
        display: flex;
        justify-content: center;
    }

    #left-chip-button {
        left: 42.5%;
    }

    #right-chip-button {
        right: 42.5%;
    }

    .special-button {
        top: 58%;
    }

    .special-button.left {
        left: 6.9%;
    }

    .special-button.right {
        left: 87.7%;
    }

    .stream-wrapper {
        width: 40%;
        height: 40%;
        left: 25%;
        top: 25%;
        position: absolute;
        opacity: 0;
        pointer-events: none;
        -webkit-box-shadow: 0 0 5px 2px rgb(0, 0, 0);
        -moz-box-shadow: 0 0 5px 2px rgb(0, 0, 0);
        box-shadow: 0 0 5px 2px rgb(0, 0, 0);
    }

    .stream-wrapper>canvas {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

    #stream-controls {
        position: absolute;
        visibility: visible;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        opacity: 0;
        height: 100%;
        width: 20%;
        top: 0;
        right: 0;
        border-radius: 0 0.7vw 0.7vw 0;
        background: -moz-linear-gradient(right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        background: -webkit-linear-gradient(right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    #stream-controls.visible {
        opacity: 1;
    }

    .stream-control {
        width: 100%;
        height: 33.32%;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 2vw;
        outline: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .stream-control:active {
        background: rgba(255, 255, 255, 0.14);
    }

    #stream-numbers-wrapper {
        position: absolute;
        visibility: hidden;
        top: 1.6%;
        left: 0.9%;
        height: 10%;
        width: 20%;
        display: flex;
        justify-content: space-between;
    }

    #stream-numbers-wrapper img {
        height: 100%;
        margin-right: 1%;
    }

    #stream-numbers-wrapper.win-number-animation {
        visibility: visible;
    }

    .stream-desktop-controls {
        visibility: hidden;
        pointer-events: none;
    }
}

#show-stream-button {
    color: gold !important;
}body {
    font-family: "oswald-bold", sans-serif;
    margin: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    position: relative;
}

.main-section {
    background: rgba(0, 0, 0, 1);
}

.blink1 {
    top: 39%;
    left: 25.4%;
    width: 1.977%;
    height: 3.6%;
}

.blink1.triple {
    top: 34.56%;
    left: 30.3%;
    width: 1.577%;
    height: 2.6%;
}

.blink2 {
    top: 37.9%;
    left: 30.3%;
    width: 1.577%;
    height: 2.6%;
}

.blink3 {
    top: 41.2%;
    left: 30.3%;
    width: 1.577%;
    height: 2.6%;
}

.race-wrapper {
    position: absolute;
    width: 80.13%;
    height: 51.1%;
    bottom: 20%;
    left: 10.035%;
    opacity: 0;
    visibility: hidden;
    /* background-image: url("images/race-bet-board.png");
    background-size: contain;
    background-repeat: no-repeat; */
    pointer-events: none;
    transform: matrix(0.9, 0, 0, 0.9, 0, 0);
}

.race-wrapper>.race-bet-board {
    width: 100%;
    height: 100%;
    position: absolute;
}

.race-wrapper>canvas,
.race-chip-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

#race-bet-fields {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chips-svg {
    visibility: hidden;
    cursor: pointer;
}

.race-button {
    border-radius: 50% !important;
    position: absolute;
    padding: 0.5vw;
}

/* #race-big-series-button {
    bottom: 47%;
    left: 13%;
}

#race-58-button {
    bottom: 47%;
    left: 82%;
}

#race-orph-button {
    bottom: 27%;
    left: 73.5%;
} */

/* TITAN STYLES */

#main-content {
    background-image: url("images/background.png");
    background-size: contain;
    background-repeat: no-repeat;
}

@media all and (max-width: 989px) {
    .labels {
        top: 5% !important;
    }

    #watermark {
        top: -4%;
        font-size: 1.5vw;
    }

    #options,
    .quit-button {
        top: 15%;
    }

    /* #history-button, */
    #fullscreen-button {
        top: 27% !important;
    }

    .table-wrapper {
        width: 84.74%;
        height: 54.2%;
        top: 15%;
        left: 7.63%;
    }

    .race-wrapper {
        width: 86.6%;
        height: 51.65%;
        top: 16.5%;
        left: 6.7%;
    }

    .progress-bar-wrapper {
        height: 6%;
    }

    #chips-wrapper {
        bottom: 7.5%;
    }

    #status {
        font-size: 1.5vw;
    }

    .blink1 {
        top: 4.9%;
        left: 25.6%;
        height: 3.914%;
        width: 1.877%;
    }

    .blink1.triple {
        top: 1.86%;
        left: 25.6%;
        width: 1.877%;
        height: 3.5%;
    }

    .blink2 {
        top: 6.46%;
        left: 25.6%;
        width: 1.877%;
        height: 3.5%;
    }

    .blink3 {
        top: 10.86%;
        left: 25.6%;
        width: 1.877%;
        height: 3.5%;
    }
}

/* AUTOPLAY */

#auto-play-rules-wrapper {
    top: 26%;
}

@media all and (max-width: 989px) {
    #auto-play-modal {
        top: 9%;
        left: 18%;
        width: 64%;
        height: 82%;
    }

    #nor-title {
        height: 8.825%;
    }

    #auto-play-buttons>.button {
        padding: 1vw;
        margin-left: 1.5vw;
        margin-right: 1.5vw;
        font-size: 2.8vw;
        border-radius: 0.4vw;
        border: 0.15vw solid rgba(255, 255, 255, 0.8);
    }

    #auto-play-games-wrapper {
        height: 21%;
    }

    #auto-play-games-number {
        width: 50%;
    }
}

/* WIN NUMBER START */

#win-number-1 {
    font-size: 3vw;
    border-radius: 1vh;
    position: absolute;
    top: 4%;
    right: 34.25%;
    width: 5.1%;
    height: 9.05%;
    color: #F4F4F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'lato-black';
}

/* WIN NUMBER END */

#close-statistic-button>img {
    width: 100%;
    height: 100%;
}

#history-numbers-wrapper {
    position: absolute;
    width: 58%;
    top: 20.8%;
    overflow: auto;
    display: flex;
    align-items: center;
    left: 18%;
    color: white;
    font-family: 'lato-black';
}

.red-number-color {
    background: -moz-linear-gradient(90deg, rgb(212, 0, 0) 0%, rgb(212, 0, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgb(212, 0, 0) 0%, rgb(212, 0, 0) 100%);
    background: -ms-linear-gradient(90deg, rgb(212, 0, 0) 0%, rgb(212, 0, 0) 100%);
}

.black-number-color {
    background: -moz-linear-gradient(90deg, rgb(0, 0, 1) 0%, rgb(39, 43, 45) 100%);
    background: -webkit-linear-gradient(90deg, rgb(0, 0, 1) 0%, rgb(39, 43, 45) 100%);
    background: -ms-linear-gradient(90deg, rgb(0, 0, 1) 0%, rgb(39, 43, 45) 100%);
}

.zero-number-color {
    background: rgb(51, 96, 49);
}

.red-number-box,
.black-number-box,
.zero-number-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    font-size: 1.8vh;
    border: 1px solid #2D3935;
}

.number-box {
    color: #C0C0C0
}

.first-number-box {
    color: #F4F4F4;
}

.top-left-ui-holder {
    position: absolute;
    top: 1%;
    left: 2%;
    width: 50%;
    height: auto;
    align-items: center;
    text-align: center;
    column-count: 1;
}

/* Denomination */
.denomination-btn {
    width: 21.37%;
    height: auto;
    display: block;
    box-shadow: inset 0 0 0.1vh 0.1vh #4F5D50ff;
    color: white;
    align-self: center;
    cursor: pointer;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    margin-top: 1%;
    border: 0.15vh solid black;
    background: -moz-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
    background: -webkit-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
    background: -ms-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
}

.denomination-btn:hover {
    background: -moz-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
    background: -webkit-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
    background: -ms-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
}

.denomination-btn:active {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transform: scale(0.95);
    -ms-transform: scale(0.95);
    -webkit-transition-duration: 0.2s;
    -webkit-transform: scale(0.95);
    -moz-transition-duration: 0.2s;
    -moz-transform: scale(0.95);
    -o-transition-duration: 0.2s;
    -o-transform: scale(0.95);
}

.active-denomination-state {
    background: rgb(232, 39, 48) !important;
}

.denomination-value-holder {
    display: flex;
    width: 100%;
    height: auto;
    align-self: center;
    margin: auto;
    display: table;
    color: white;
    font-size: 2.24vh;
    padding-top: 1.5%;
}

.denomination-state-holder {
    display: flex;
    width: fit-content;
    height: 0.4vh;
    align-self: center;
    margin: auto;
    padding-top: 3%;
    padding-bottom: 2.5%;
}

.denomination-state {
    background: rgb(158, 158, 158);
    width: 1.3vh;
    height: 0.35vh;
}

.denomination-state-offset {
    margin-left: 6.25%;
}

#denomination-lang {
    color: white;
    font-size: 1.67vh;
    padding-top: 2.5%;
    margin: auto;
    display: table;
    font-family: "oswald-bold", "sans-serif";
}

#denomination-currency {
    text-transform: uppercase;
}

/* Denomination - end*/

#race-table-path-text {
    font-family: "oswald-bold";
    font-size: 0.85vw;
    fill: #f4f4f4;
    opacity: 0.95;
}

#game-menu-button {
    position: absolute;
    top: 1%;
    right: 2%;
    width: 7.813%;
    height: 4.63%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0.1vh 0.1vh #4F5D50ff;
    color: white;
    cursor: pointer;
    border: 0.15vh solid black;
    background: -moz-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
    background: -webkit-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
    background: -ms-linear-gradient(90deg, rgb(33, 47, 32) 0%, rgb(45, 58, 43) 100%);
}

#game-menu-button:hover {
    background: -moz-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
    background: -webkit-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
    background: -ms-linear-gradient(90deg, rgb(45, 58, 43) 0%, rgb(33, 47, 32) 100%);
}

#game-menu-button>i {
    color: #4F5D50ff;
    position: absolute;
    right: 5%;
}

#game-menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#game-menu {
    position: absolute;
    width: 35.625%;
    height: 37.315%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-image: url(images/menu/bcg-menu.png);
    background-size: cover;
    border-radius: 1vh;
    box-shadow: 0 0 1.5vh rgba(0, 0, 0, 0.93);
}

#close-game-menu {
    width: 5.6vh;
    height: 5.6vh;
    position: absolute;
    right: -2vh;
    top: -2vh;
    background-image: url(images/menu/close.png);
    background-size: cover;
    cursor: pointer;
}

#game-menu>.game-menu-buttons-wrapper {
    width: 50%;
    height: 50%;
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

#game-menu>.game-menu-buttons-wrapper>.game-menu-button {
    color: #f4f4f4;
    cursor: pointer;
    border: 0.2vh solid #000000;
    box-shadow: inset 0 0 0.1vh 0.1vh #88A08A;
    background: -moz-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
    background: -webkit-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
    background: -ms-linear-gradient(90deg, rgb(52, 74, 54) 0%, rgb(64, 94, 67) 100%);
}

#game-menu>.game-menu-buttons-wrapper>.game-menu-button:hover {
    background: -moz-linear-gradient(90deg, rgb(64, 94, 67) 0%, rgb(52, 74, 54) 100%);
    background: -webkit-linear-gradient(90deg, rgb(64, 94, 67) 0%, rgb(52, 74, 54) 100%);
    background: -ms-linear-gradient(90deg, rgb(64, 94, 67) 0%, rgb(52, 74, 54) 100%);
}

#game-menu>.game-menu-buttons-wrapper>.game-menu-button,
#game-menu>.game-menu-buttons-wrapper>.game-menu-button>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#game-menu>.game-menu-buttons-wrapper>.game-menu-button.active-button {
    border: 0.2vh solid #5AAC4C;
    background: #011501;
}

/* #game-menu>.game-menu-button>.show-winnings-icon{
    width: 4.8vh;
    height: 3vh;
    background-image: url('images/menu/eye-show.png');
    background-size: cover;
}

#game-menu>.game-menu-button>.hide-winnings-icon {
    width: 4.8vh;
    height: 3vh;
    background-image: url('images/menu/eye-hide.png');
    background-size: cover;
}

#game-menu>.game-menu-button>.show-help-icon {
    
}

#game-menu>.game-menu-button>.show-history-icon {
    width: 3.8vh;
    height: 3.34vh;
    background-image: url('images/menu/history.png');
    background-size: cover;
} */

#game-menu>.menu-lang {
    position: absolute;
    top: 7%;
    left: 4%;
    color: #f4f4f4;
}
