
.Tiger {
    width: 120px;
    height: 150px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, grey 0%, whitesmoke 10%, lightgray 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.TigerNumbers {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.TigerNumbers img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-left: 5px;
    padding-right: 5px;
}

@keyframes rollAnimation {
    from {
        top: 0
    }
    to {
        top: -1500px
    }
}

#modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    z-index: 100;
    border: 1px solid #ccc;
}

#modalContent img {
    width: 300px;
    height: auto;
}

#enterButton, #closeButton {
    margin-top: 10px;
}

.button-yellow {
    padding: 10px 20px;
    background-color: #f0b429;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 15px;
    color: black;
}

.button-yellow:hover {
    background-color: #e6a420;
}

.button-yellow:active {
    transform: scale(0.98);
}

.Tiger, #modal {
    border: 5px solid transparent;
    border-image: linear-gradient(45deg, #ffd700, #f0b429) 1 / 1 / 0 stretch;
}


#coinRainContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    width: 21px;
    height: 21px;
    background-color: "";
    border-radius: 5%;
    background-image: url('../images/jinbi.png');
    background-size: cover;
}

@keyframes fall {
    0% {
        transform: translateY(-100px)
    }
    100% {
        transform: translateY(100vh)
    }
}

@keyframes fallAndBounce {
    0% {
        transform: translateY(-100px);
        opacity: 1
    }
    80% {
        opacity: 1
    }
    90% {
        transform: translateY(calc(100vh - 80px));
        opacity: 1
    }
    95% {
        transform: translateY(calc(100vh - 50px));
        opacity: 1
    }
    100% {
        transform: translateY(100vh);
        opacity: 0
    }
}

:root {
    --primary-color: #0c1624;
    --secondary-color: #282834;
    --tertiary-color: #0564fd;
    --button-color: #0d6efd;
    --notices-color: #6f42c1;
    --label-color: #A1A1A2
}

body {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.55rem;
    letter-spacing: -.015rem;
    color: #4f5050;
    background: #F9F9F9;
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 0;
}

::selection {
    background: rgba(30, 116, 253, .3);
}

a {
    transition: none;
    color: var(--tertiary-color);
    outline: 0 !important;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    outline: 0 !important;
    color: var(--tertiary-color);
    text-decoration: none;
}

button {
    outline: 0 !important;
}

button:hover, button:active, button:focus {
    outline: 0 !important;
}

.appHeader {
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: env(safe-area-inset-top);
    left: 0;
    right: 0;
    z-index: 999;
    background: #FFF;
    color: #141515;
    box-shadow: 0 3px 6px #0000001a, 0 1px 3px #00000014
}

.appHeader:before {
    content: "";
    height: env(safe-area-inset-top);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: var(--tertiary-color)
}

.appHeader .left, .appHeader .right {
    height: 56px;
    display: flex;
    align-items: center;
    position: absolute
}

.appHeader .left i.icon, .appHeader .left ion-icon, .appHeader .right i.icon, .appHeader .right ion-icon {
    font-size: 26px;
    --ionicon-stroke-width: 36px
}

.appHeader .left .headerButton, .appHeader .right .headerButton {
    min-width: 36px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #141515;
    position: relative
}

.appHeader .left .headerButton .btn, .appHeader .right .headerButton .btn {
    font-size: 16px;
    height: 32px;
    padding: 0 14px;
    font-weight: 400
}

.appHeader .left .headerButton:active, .appHeader .right .headerButton:active {
    opacity: .6
}

.appHeader .left {
    left: 8px;
    top: 0
}

.appHeader .right {
    right: 8px;
    top: 0
}

.appHeader.bg-primary {
    border: 0
}

.header-large-title {
    padding: 0 16px
}

.header-large-title .title {
    margin: 4px 0 0;
    font-size: 34px;
    letter-spacing: -.02em;
    line-height: 1.3em
}

.appBottomMenu {
    min-height: 56px;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #E1E1E1;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px
}

.appBottomMenu.rounded {
    border-radius: 24px 24px 0 0 !important
}

.appBottomMenu.rounded .item:before {
    display: none
}

.appBottomMenu .item {
    font-size: 9px;
    letter-spacing: 0;
    text-align: center;
    width: 100%;
    height: 56px;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.appBottomMenu .item:before {
    content: "";
    display: block;
    height: 2px;
    border-radius: 0 0 10px 10px;
    background: transparent;
    position: absolute;
    left: 4px;
    right: 4px;
    top: 0
}

.appBottomMenu .item .col {
    width: 100%;
    padding: 0 4px;
    text-align: center
}

.appBottomMenu .item i.icon, .appBottomMenu .item ion-icon {
    display: inline-flex;
    margin: 1px auto 3px;
    font-size: 26px;
    line-height: 1em;
    color: #141515;
    transition: none;
    display: block
}

.appBottomMenu .item:active {
    opacity: .8
}

.appBottomMenu .item.active:before {
    background: transparent
}

.appBottomMenu .item.active i.icon, .appBottomMenu .item.active ion-icon {
    color: var(--tertiary-color) !important;
    font-weight: 500
}

.appBottomMenu .item:hover i.icon, .appBottomMenu .item:hover ion-icon {
    color: #141515
}

.appBottomMenu.bg-primary {
    border: 0
}

.appBottomMenu.bg-primary .item:before {
    display: none
}

#appCapsule {
    padding: 56px 0;
    margin-bottom: env(safe-area-inset-bottom);
    margin-top: env(safe-area-inset-top)
}

.section {
    padding: 0 16px
}

.section.full {
    padding: 0
}

.col-3 {
    padding-left: 8px;
    padding-right: 8px
}

.mt-2 {
    margin-top: 16px !important
}

.mt-3 {
    margin-top: 24px !important
}

.mb-2 {
    margin-bottom: 16px !important
}

.ms-1 {
    margin-left: 8px !important
}

.ms-3 {
    margin-left: 24px !important
}

.p-1 {
    padding: 8px !important
}

.p-2 {
    padding: 16px !important
}

.pb-2 {
    padding-bottom: 16px !important
}

h2, h3 {
    color: #141515;
    margin: 0 0 10px;
    letter-spacing: -.02em;
    line-height: 1.3em
}

h2 .badge, h3 .badge {
    line-height: 1em
}

h2 {
    font-size: 24px;
    font-weight: 700
}

h3 {
    font-size: 17px;
    font-weight: 700
}

ion-icon {
    --ionicon-stroke-width: 32px
}

i.icon {
    line-height: 1em !important
}

@keyframes loadingAnimation {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.badge {
    font-size: 12px;
    line-height: 1em;
    border-radius: 100px;
    letter-spacing: 0;
    height: 22px;
    min-width: 22px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400
}

.appHeader .badge {
    min-width: 16px;
    height: 16px;
    line-height: 9px !important;
    font-size: 10px;
    padding: 0 4px !important;
    position: absolute;
    right: 2px;
    top: 10px
}

.appBottomMenu .badge {
    min-width: 16px;
    height: 16px;
    line-height: 9px !important;
    font-size: 10px;
    padding: 0 4px !important;
    position: absolute;
    right: 50%;
    transform: translate(120%);
    top: 10px
}

.btn {
    height: 40px;
    padding: 3px 18px;
    font-size: 13px;
    line-height: 1.2em;
    font-weight: 500;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: none;
    text-decoration: none !important;
    border-radius: 6px;
    border-width: 2px
}

.btn i.icon, .btn ion-icon {
    font-size: 22px;
    margin-right: 10px;
    margin-top: -2px;
    font-weight: 700
}

.btn.rounded {
    border-radius: 100px !important
}

.btn-sm {
    height: 30px;
    padding: 0 12px;
    font-size: 12px
}

.btn-sm i.icon, .btn-sm ion-icon {
    font-size: 20px;
    margin-right: 6px
}

.bg-primary {
    background: var(--notices-color) !important;
    color: #fff
}

a.bg-primary {
    background: var(--primary-color) !important;
    color: #fff !important
}

a.bg-primary:hover, a.bg-primary:active {
    background: var(--primary-color) !important
}

.text-success, a.text-success {
    color: #34c759 !important
}

.alert {
    margin: 0;
    padding: 6px 16px;
    border: 0;
    font-size: 13px;
    border-radius: 6px
}

@keyframes storybar-animation {
    0% {
        width: 0
    }
    to {
        width: 100%
    }
}

/*noinspection ALL*/

body.dark-mode-active {
    background: var(--primary-color) !important;
    color: var(--label-color) !important
}

body.dark-mode-active.bg-white {
    background: var(--primary-color) !important
}

body.dark-mode-active h2, body.dark-mode-active h3 {
    color: #fff
}

body.dark-mode-active .appHeader {
    background: var(--primary-color);
    border-bottom-color: var(--label-color)
}

body.dark-mode-active .appHeader .left .headerButton, body.dark-mode-active .appHeader .right .headerButton {
    color: #fff
}

body.dark-mode-active .header-large-title .title {
    color: #fff
}

body.dark-mode-active .appBottomMenu {
    background: var(--primary-color);
    border-top-color: var(--label-color)
}

body.dark-mode-active .appBottomMenu .item i.icon, body.dark-mode-active .appBottomMenu .item ion-icon {
    color: #fff
}

body.dark-mode-active .appBottomMenu .item:hover i.icon, body.dark-mode-active .appBottomMenu .item:hover ion-icon {
    color: #fff
}

.custom-card {
    border-color: #2f3240 !important;
    border-radius: 10px;
}

.notification {
    display: inline-block;
    margin-right: 20px;
    white-space: nowrap;
    background-color: #000;
    border-radius: 50px;
    height: 22px
}

.all-notifications {
    animation: moveNotifications 15s linear infinite
}

@keyframes moveNotifications {
    0% {
        transform: translate(0)
    }
    to {
        transform: translate(calc(-100% - 20px))
    }
}

/*.custom-menu-icon {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    cursor: pointer;*/
/*    display: block;*/
/*    position: fixed;*/
/*    top: 40px;*/
/*    left: 10px;*/
/*    z-index: 1050;*/
/*    border-radius: 50%;*/
/*    overflow: hidden;*/
/*    object-fit: cover*/
/*}*/

#submenu {
    position: fixed;
    top: 60px;
    left: 20px;
    z-index: 1050
}

.circle-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(to right, #ffd700, #f8b500, #ffd700)
}

.menu-item {
    text-align: center;
    margin-bottom: 20px
}

.circle-logo img {
    width: 100%;
    height: auto
}

#submenu {
    position: fixed;
    top: 60px;
    left: 20px;
    z-index: 1050;
    background-color: rgba(0, 170, 100, 0.7);
    max-height: 600px;
    overflow-y: auto;
    width: 360px;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box
}

.circle-logo img {
    width: 100%;
    height: auto
}

.menu-item a {
    color: white;
    text-decoration: none
}

#submenu {
    position: fixed;
    top: 75px;
    left: 20px;
    z-index: 1050;
    background-color: rgba(0, 170, 100, 0.7);
    max-height: 550px;
    overflow-y: auto;
    width: 400px;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box
}

@media (max-width: 768px) {
    #submenu {
        width: 60%;
        left: 50%;
        transform: translateX(-50%)
    }
}

@media (max-width: 480px) {
    #submenu {
        width: 80%;
        font-size: 14px
    }
}

.circle-logo-container {
    position: relative;
    display: inline-block
}

.badge {
    position: absolute;
    top: -10px;
    right: -3px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 4px;
    font-size: 10px
}

.menu-item .nav-link {
    display: block;
    margin-top: -5px;
    text-align: center
}


/*body, html {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    height: 100%;*/
/*    position: relative;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center*/
/*}*/

.slide-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #ccc
}

.slide-item span {
    flex: 1;
    text-align: center;
    color: white;
    font-size: 13px;
    font-family: 'Times New Roman', Times, serif
}

.text {
    left: 50%;
    margin-left: -140px;
    width: 300px;
    position: absolute;
    text-align: center;
    color: #FFF;
    font-size: 22px;
    bottom: -50px;
    opacity: 1;
    display: block;
    animation: hideAWhile 4.5s, show 1s 4.5s;
    -webkit-animation: hideAWhile 4.5s, show 1s 4.5s
}

@keyframes show-text {
    0% {
        transform: translateY(0%);
        -webkit-transform: translateY(0%)
    }
    100% {
        transform: translateY(-20%);
        -webkit-transform: translateY(-20%)
    }
}

@-webkit-keyframes show-text {
    0% {
        transform: translateY(0%);
        -webkit-transform: translateY(0%)
    }
    100% {
        transform: translateY(-20%);
        -webkit-transform: translateY(-20%)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes show-picture {
    0% {
        transform: translateY(100%);
        -webkit-transform: translateY(100%)
    }
    100% {
        transform: translateY(0%);
        -webkit-transform: translateY(0%)
    }
}

@-webkit-keyframes show-picture {
    0% {
        transform: translateY(100%);
        -webkit-transform: translateY(100%)
    }
    100% {
        transform: translateY(0%);
        -webkit-transform: translateY(0%)
    }
}

@keyframes show {
    0% {
        opacity: 0;
        bottom: 0
    }
    100% {
        opacity: 1;
        bottom: -90px
    }
}

@-webkit-keyframes show {
    0% {
        opacity: 0;
        bottom: 0
    }
    100% {
        opacity: 1;
        bottom: -90px
    }
}

@keyframes hideAWhile {
    0% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes hideAWhile {
    0% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@keyframes showAWhile {
    0% {
        opacity: 1
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes showAWhile {
    0% {
        opacity: 1
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes flower {
    0% {
        transform: scale(10) rotate(0deg);
        -ms-transform: scale(10) rotate(0deg);
        -webkit-transform: scale(10) rotate(0deg);
        -webkit-filter: blur(30px);
        -moz-filter: blur(30px);
        -o-filter: blur(30px);
        -ms-filter: blur(30px);
        filter: blur(30px)
    }
    100% {
        transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        -webkit-filter: none;
        -moz-filter: none;
        -o-filter: none;
        -ms-filter: none;
        filter: none
    }
}

@-webkit-keyframes flower {
    0% {
        transform: scale(10) rotate(0deg);
        -ms-transform: scale(10) rotate(0deg);
        -webkit-transform: scale(10) rotate(0deg);
        -webkit-filter: blur(30px);
        -moz-filter: blur(30px);
        -o-filter: blur(30px);
        -ms-filter: blur(30px);
        filter: blur(30px)
    }
    100% {
        transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        -webkit-filter: none;
        -moz-filter: none;
        -o-filter: none;
        -ms-filter: none;
        filter: none
    }
}

#popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #000;
    border-image: linear-gradient(180deg, #f0b42900, #f0b429, #f0b42900) 1;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 20px;
    border-radius: 15px;
    z-index: 100;
    max-width: 90%; /* Faz o popup não ultrapassar 90% da largura da tela */
    width: 600px;
    box-sizing: border-box; /* Garante que padding e border sejam incluídos na largura/altura */
    overflow-y: auto; /* Permite rolagem se o conteúdo for muito alto */
    max-height: 90vh;
    text-align: left;
}

#popup a {
    display: inline-block; /* ou 'inline', dependendo da necessidade */
    margin: 0;
    padding: 0;
}

#popup img {
    border-radius: 10px;
}

#popup p {
    font-size: 17px;
}
#popup-overlay {
    display: none; /* Escondido por padrão */
    position: fixed; /* Posicionamento fixo em relação à janela do navegador */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2); /* Cor de fundo com opacidade */
    z-index: 99; /* Z-index abaixo do popup para que o popup possa ser clicado */
}

@media (max-width: 767px) {
    #popup {
        width: 100%; /* Faz o popup ocupar a largura inteira em dispositivos móveis */
        height: auto; /* Altura automática para acomodar o conteúdo */
        max-height: 100vh; /* Para dispositivos muito pequenos, permite que o popup ocupe toda a altura da tela */
        transform: translate(-50%, -50%) scale(1); /* Ajuste para garantir que o popup não saia da tela */
    }
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 0;
    border: none;
    background: transparent;
    color: white; /* Ou qualquer cor que faça o ícone ficar visível sobre o seu popup */
    font-size: 24px; /* Ajuste o tamanho se necessário */
    cursor: pointer;
    z-index: 101;
}

.close-popup:hover {
    color: #ccc; /* Uma cor mais clara para o hover */
}

/* Se precisar ajustar o tamanho do ícone Ionicon */
.close-popup ion-icon {
    font-size: 24px; /* Ou o tamanho que você preferir */
}

/*.slot-machine {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.slot {*/
/*    display: flex;*/
/*    align-items: center; !* Centraliza verticalmente o conteúdo do slot *!*/
/*    justify-content: center; !* Centraliza horizontalmente o conteúdo do slot *!*/
/*    width: 120px;*/
/*    height: 150px;*/
/*    margin: 5px;*/
/*    border: 5px solid #f0b429;*/
/*    border-radius: 5px;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    background: linear-gradient(180deg, grey 0%,whitesmoke 10%, lightgray 100%);*/
/*}*/

.reel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Centraliza verticalmente a bobina dentro do slot */
    width: 100%;
    height: calc(100% - 10px); /* Subtrai as bordas superior e inferior */
}

.reel a {
    display: block; /* Adiciona propriedade display para as tags <a> */
    width: 90%; /* Largura igual à das imagens */
    margin: 0 auto; /* Centraliza horizontalmente */
    text-align: center; /* Centraliza o conteúdo de texto e inline dentro de <a> */
}

.reel img {
    max-width: 100%; /* Garante que a imagem não exceda a largura do <a> */
    height: auto; /* Mantém a proporção da imagem */
    display: inline-block; /* Permite centralização com text-align no pai */
    z-index: 99;
    margin: 10px auto;
}

@keyframes rollAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
    /* Roll 3 images up */
}

.rolling {
    animation: rollAnimation 0.3s infinite linear; /* Loop the animation */
}

@-webkit-keyframes accessoryAnim {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
    15% {
        -webkit-transform: translateX(72%) translateY(172%);
        transform: translateX(72%) translateY(172%)
    }
    30% {
        -webkit-transform: translateX(112%) translateY(330%);
        transform: translateX(112%) translateY(330%)
    }
    45% {
        -webkit-transform: translateX(112%) translateY(547%);
        transform: translateX(112%) translateY(547%)
    }
    60% {
        -webkit-transform: translateX(87%) translateY(615%);
        transform: translateX(87%) translateY(615%)
    }
    75% {
        -webkit-transform: translateX(79%) translateY(790%);
        transform: translateX(79%) translateY(790%)
    }
    80% {
        -webkit-transform: translateX(87%) translateY(615%);
        transform: translateX(87%) translateY(615%)
    }
    85% {
        -webkit-transform: translateX(112%) translateY(547%);
        transform: translateX(112%) translateY(547%)
    }
    90% {
        -webkit-transform: translateX(112%) translateY(330%);
        transform: translateX(112%) translateY(330%)
    }
    95% {
        -webkit-transform: translateX(72%) translateY(172%);
        transform: translateX(72%) translateY(172%)
    }
    to {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@keyframes accessoryAnim {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
    15% {
        -webkit-transform: translateX(72%) translateY(172%);
        transform: translateX(72%) translateY(172%)
    }
    30% {
        -webkit-transform: translateX(112%) translateY(330%);
        transform: translateX(112%) translateY(330%)
    }
    45% {
        -webkit-transform: translateX(112%) translateY(547%);
        transform: translateX(112%) translateY(547%)
    }
    60% {
        -webkit-transform: translateX(87%) translateY(615%);
        transform: translateX(87%) translateY(615%)
    }
    75% {
        -webkit-transform: translateX(79%) translateY(790%);
        transform: translateX(79%) translateY(790%)
    }
    80% {
        -webkit-transform: translateX(87%) translateY(615%);
        transform: translateX(87%) translateY(615%)
    }
    85% {
        -webkit-transform: translateX(112%) translateY(547%);
        transform: translateX(112%) translateY(547%)
    }
    90% {
        -webkit-transform: translateX(112%) translateY(330%);
        transform: translateX(112%) translateY(330%)
    }
    95% {
        -webkit-transform: translateX(72%) translateY(172%);
        transform: translateX(72%) translateY(172%)
    }
    to {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-webkit-keyframes leverAnim {
    0% {
        -webkit-transform: rotate(0) scaleY(1) translateX(0) translateY(0);
        transform: rotate(0) scaleY(1) translateX(0) translateY(0)
    }
    15% {
        -webkit-transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%);
        transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%)
    }
    30% {
        -webkit-transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%);
        transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%)
    }
    45% {
        -webkit-transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%);
        transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%)
    }
    60% {
        -webkit-transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%);
        transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%)
    }
    75% {
        -webkit-transform: rotate(112deg) scaleY(1) translateX(216%) translateY(-47%);
        transform: rotate(112deg) scaleY(1) translateX(216%) translateY(-47%)
    }
    80% {
        -webkit-transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%);
        transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%)
    }
    85% {
        -webkit-transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%);
        transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%)
    }
    90% {
        -webkit-transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%);
        transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%)
    }
    95% {
        -webkit-transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%);
        transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%)
    }
    to {
        -webkit-transform: rotate(0) scaleY(1) translateX(0) translateY(0);
        transform: rotate(0) scaleY(1) translateX(0) translateY(0)
    }
}

@keyframes leverAnim {
    0% {
        -webkit-transform: rotate(0) scaleY(1) translateX(0) translateY(0);
        transform: rotate(0) scaleY(1) translateX(0) translateY(0)
    }
    15% {
        -webkit-transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%);
        transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%)
    }
    30% {
        -webkit-transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%);
        transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%)
    }
    45% {
        -webkit-transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%);
        transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%)
    }
    60% {
        -webkit-transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%);
        transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%)
    }
    75% {
        -webkit-transform: rotate(112deg) scaleY(1) translateX(216%) translateY(-47%);
        transform: rotate(112deg) scaleY(1) translateX(216%) translateY(-47%)
    }
    80% {
        -webkit-transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%);
        transform: rotate(86deg) scaleY(80%) translateX(174%) translateY(-10%)
    }
    85% {
        -webkit-transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%);
        transform: rotate(75deg) scaleY(69%) scaleX(92%) translateX(166%) translateY(14%)
    }
    90% {
        -webkit-transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%);
        transform: rotate(41deg) scaleY(69%) scaleX(92%) translateX(73%) translateY(42%)
    }
    95% {
        -webkit-transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%);
        transform: rotate(20deg) scaleY(80%) translateX(18%) translateY(18%)
    }
    to {
        -webkit-transform: rotate(0) scaleY(1) translateX(0) translateY(0);
        transform: rotate(0) scaleY(1) translateX(0) translateY(0)
    }
}

.game {
    text-align: center;
    color: #000000;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;

}

.game h2 {
    font-family: 'PassionOne', sans-serif;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px
}

.game .slot-machine {
    position: relative;
    width: 590px;
    background: url("../images/img-slot.png") no-repeat center;
    background-size: contain;
    margin: 15px auto;

}

.game .slot-machine:before {
    content: '';
    position: relative;
    display: block;
    padding-top: 44.5%;
    background: url("../images/img-slot-reels.png") no-repeat center;
    opacity: 0.3;
    background-size: 73.7% auto;
    z-index: -1
}

.game .slot-machine-reels {
    position: absolute;
    width: 100%;
    height: 98%;
    left: 0;
    top: 1%;
    overflow: hidden;
}

.game .slot-machine-reels .reel {
    width: 20%;
    z-index: -1;
}

.game .slot-machine-reels .reel li {
    position: relative;
    display: block;
    width: 100%;
    height: 10%
}

.game .slot-machine-reels .reel li img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 84%;
    height: 65%;
    -o-object-fit: contain;
    object-fit: contain
}

.game .slot-machine-reels .reel.reel-01 {
    left: 13.5%;
    -webkit-transition: -webkit-transform 5s ease;
    transition: -webkit-transform 5s ease;
    transition: transform 5s ease;
    transition: transform 5s ease, -webkit-transform 5s ease
}

.game .slot-machine-reels .reel.reel-02 {
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: -webkit-transform 7s ease;
    transition: -webkit-transform 7s ease;
    transition: transform 7s ease;
    transition: transform 7s ease, -webkit-transform 7s ease
}

.game .slot-machine-reels .reel.reel-03 {
    right: 13.5%;
    -webkit-transition: -webkit-transform 9s ease;
    transition: -webkit-transform 9s ease;
    transition: transform 9s ease;
    transition: transform 9s ease, -webkit-transform 9s ease
}

.game .lever {
    position: absolute;
    left: 92.2%;
    top: -25%;
    width: 10%
}

.game .lever .img-accessory {
    position: absolute;
    top: -25%;
    right: -34%;
    width: 78%;
    border-radius: 50%;
    z-index: 1
}

.game .lever .img-accessory.disabled {
    pointer-events: none;
    -webkit-filter: contrast(0.7);
    filter: contrast(0.7)
}

.game .lever .img-lever {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform-origin: 2% 98%;
    transform-origin: 2% 98%
}

.game .lever.move .img-accessory {
    -webkit-animation: accessoryAnim 0.3s linear;
    animation: accessoryAnim 0.3s linear
}

.game .lever.move .img-lever {
    -webkit-animation: leverAnim 0.3s linear;
    animation: leverAnim 0.3s linear
}

.container {
    display: block;
    width: 1460px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;

}

.disabled {
    pointer-events: none;
    opacity: 0.8;
    color: #000000;
    background-color: #ffffff;
    border-color: #000000
}

@media (max-width: 768px) {
    .game .slot-machine {
        width: 100%;
    }
}

/*@media (max-width: 620px) {*/
/*    .game .slot-machine {*/
/*        width: 410px;*/
/*    }*/
/*}*/

/*@media (max-width: 500px) {*/
/*    .game .slot-machine {*/
/*        width: 380px;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .game .slot-machine {*/
/*        width: 350px;*/
/*    }*/
/*}*/

/*@media (max-width: 420px) {*/
/*    .game .slot-machine {*/
/*        width: 330px;*/
/*    }*/
/*}*/


/*@media (max-width: 360px) {*/
/*    .game .slot-machine {*/
/*        width: 290px;*/
/*    }*/
/*}*/

/*@media (max-width: 340px) {*/
/*    .game .slot-machine {*/
/*        width: 280px;*/
/*    }*/
/*}*/

/*@media (max-width: 330px) {*/
/*    .game .slot-machine {*/
/*        width: 270px;*/
/*    }*/
/*}*/

main {
    position: relative;
    z-index: 3;
    max-width: 100%;
}