:root{

    --clr-primary: #fae17e;
    --clr-dark: #3a2c01;
    --background-transparent: rgba(0,0,0,0.35);
    --default-shadow: 0 5px 10px 1px rgba(0,0,0,0.3);
    --grd-btn: radial-gradient(#fcfc00, #fdc709);
    --grd-secondary: linear-gradient(#000000, #1d1d1d);
    --grd-primary: linear-gradient(180deg, #eccd40, #ffe78a, #c3a600, #ffd753);
    --background-red: rgb(0, 0, 0);
}

html{
    margin: auto;
    position: relative;
}

html, body{
    height: 100%;
    overflow: hidden;
}

*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: black;
}

#content{
    z-index: 1;
    /* position: absolute; */
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    /* top: 80px;
    bottom: 55px; */
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: #fff;
    background-image: url("../img/background.jpg");
    max-width: 500px;
    margin: auto;
    max-height: calc(100vh - 135px)
}

header{
    z-index: 2;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    gap:0.5rem;
    justify-content: space-between;
    height: 60px;
    background: radial-gradient(#00000073 1%, #000000 50%);
    max-width: 500px;
    margin: auto
}

/* header a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
} */

#site-logo{
    max-height: 80%;
    max-width: 80%;
    margin-left:10px;
}

#marquee{
    z-index: 2;
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 100%;
    background: linear-gradient(90deg, #ffd578 0%, #dfa523 50%, #ffd578 100%);
    color: #650000;
    max-width: 500px;
    margin: auto
}

#marquee span{
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    margin: auto;
    white-space: nowrap;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 40s;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes marquee{
    from{
        right: -90%;
    }
    to{
        right: 100%;
    }
}

.hide{
    display: none !important;
}

.box{
    padding: 0 10px 15px;
    margin-bottom:100px;
}

svg > *{
    color:var(--clr-purple);
}

::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

section{
    padding: 3rem 1.5rem;
}

a{
    text-decoration: none;
}

.mt-10{
    margin-top: 10px;
}
.mt-15{
    margin-top:1.5rem;
}

.mb-15{
    margin-bottom:1.5rem;
}

.mb-20{
    margin-bottom:2rem;
}

.mb-25{
    margin-bottom:2.5rem;
}

.btn{
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    line-height: 1
}

.btn-primary{
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
    color: var(--clr-primary);
    background: var(--grd-secondary);
    font-weight: 700;
    border: 2px solid var(--clr-primary);
}

.btn-secondary{
    background: var(--grd-primary);
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
}

.btn-submit{
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    width: 100%;
    border: none;
    margin-bottom: 10px;
    background: var(--grd-primary);
    border-radius: 5px;
    color: var(--clr-dark);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    padding: 12px;
}

.bg-dark{
    background: var(--background-dark);
}

.bg-primary{
    background: var(--grd-primary);
}

.bg-transparent{
    background: rgb(67 67 67);
    border: 2px solid var(--clr-primary);
}

.text-success{
    color: #59ff59;
}

.text-secondary{
    color: var(--clr-secondary);
}

.text-error{
    color: red;
}

.text-center{
    text-align: center
}

.ds{
    box-shadow: var(--default-shadow);
}

header .col{
    padding: 0.5rem;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

header .col-1{
    flex: 0 0 calc(20% - 0.5rem);
}

header .col-2{
    flex: 0 0 calc(60% - 0.5rem);
    /* margin: auto; */
    margin-right:5px;
    gap:10px;
    justify-content: flex-end;
}

header .col-3{
    flex: 0 0 calc(20% - 0.5rem);
    margin: auto;
    justify-content: flex-end;
    align-items: center;
}

header img{
    max-height: 80%;
}

.hide{
    display: none !important;
}

#live-transaction{
    margin-top: 10px;
    font-size: 12px;
    padding: 3px;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.75);
    border-radius: 8px;
    background: linear-gradient(154deg, #ddac17, #fffa8a, #ddac17);
}

#live-transaction .top{
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#live-transaction .live{
    display: flex;
    background: red;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    gap: 3px;
    flex-wrap: nowrap;
    align-items: center;
    animation: live 1.85s infinite;
    font-weight: 600;
    padding: 3px 5px;
    line-height: 1;
}

#live-transaction .live span{
    border-radius: 25px;
    background: #fff;
    width: 8px;
    height: 8px;
}

@keyframes live{
    0%{
        opacity: 0;
    }

    50%{
        opacity: 1;
    }

    100%{
        opacity: 0;
    }
}

#live-transaction .span{
    background: white;
}


#live-transaction .title{
    font-size: 14px;
    font-weight: 600;
    color: black;
}

#live-transaction .container{
    display:flex;
    gap: 5px;
}

#live-transaction table{
  width: 100%;
  border-collapse: collapse;
}

#live-transaction thead td{
    border-radius: 3px;
    text-align: center;
    background:  rgb(0 0 0);
}

#live-transaction td{
    font-size: 11px;
    padding: 3px;
    line-height: 1;
    /*border: 1px solid white;*/
    color: var(--clr-dark)

}

#live-transaction .amount{
    color: #510101;
    text-align: right;
    font-weight: 600
}

#balance-wrapper{
    background: #1e1e1e;
    border-radius: 15px;
    padding: 5px 10px;
    margin-top:10px;
    border-radius: 8px;
    background-image: url('../img/theme/sign-form.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 5px #000;
}

#sign-form{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 5px;
}

#sign-form a{
    width: 50%;
    background-size: 100% 100%;
    text-shadow: none;
    max-width: 320px;
    text-align: center;
    font-size: 18px;
    color: purple;
    background: radial-gradient(#fcfc00, #fdc709);
    font-weight: 800;
}

#sign-form a{
    position: relative;
    padding: 0;
    overflow: hidden;
    padding: 2px;
    background: var(--grd-primary);

}

#sign-form a div{
    padding: 2px 5px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    gap: 2px;
    z-index: 3;
    position: relative;
    background: var(--grd-secondary);
    box-shadow: inset 0 0 5px #000000;
}

#sign-form a div span {
    font-size: 16px;
    padding: 8px 5px;
    text-wrap: nowrap;
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
    animation: 3s btn-sign infinite linear;
    font-weight: 700
}

@keyframes btn-sign{
    0%, 100% {
        color: #fff0b5;
    }
    50% {
        color: #ffdb79;
    }
}

#balance-wrapper .information{
    display: flex;
    gap: 5px;
    padding: 10px 0;
    flex-direction: column;
}

#balance-box{
    width: 62%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#balance-box .title{
    font-size: 14px;
}

#balance-box .amount{
    font-size: 20px;
    margin: 5px 0;
    font-weight: 600;
}

#balance-box p, #balance-box b{
    font-size: 12px
}

#fund-options{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0 5px;
    justify-content: space-around;
}

#fund-options a{

    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    border-radius: 5px;
    color: var(--clr-dark);
    font-weight: 700;
    border: none;
}

#fund-options a img{
    width: 24px;
}

#referral-wrapper{
    position: relative;
    margin: 10px -10px 0 -10px;
}

#referral-wrapper img{
    width: 100%;
}

#referral-wrapper .option-wrapper{
    position: absolute;
    left: 0;
    /* bottom: 30px; */
    width: calc(100% - 20px);
    margin: 0 10px;
}

#referral-wrapper .options{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

#referral-wrapper a{
    /* flex: 0 0 calc(50% - 10px); */
}

#lucky-draw img{
    width: 100%;
    border-radius: 8px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

#banners img{
    width: 100%;
}

#navi-menu{
    display: flex;
    bottom:0;
    position: absolute;
    /* left: 0; */
    width: 100%;
    z-index: 2;
    justify-content: space-around;
    height: 55px;
    align-items: center;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 100%);
    border-top: 2px solid var(--clr-primary);
    max-width: 500px;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}

#navi-menu a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: white;
    flex-direction: column;
    flex: 0 0 20%;
    margin-top: 3px;
}

#navi-menu label{
    color: rgba(255,255,255, 0.5);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

#navi-menu img{
    width: 100%;
    max-width: 24px;
    height: auto;
    filter: grayscale(1);
}

#navi-menu .active img{
    filter: drop-shadow(0px 0px 6px #fae17eb8);
}

#navi-menu .active label{
    color: var(--clr-primary);
    font-weight: 600;
}

#game-wrapper {
    margin: 15px 5px 0 5px;
    padding-bottom: 15px;
    display: flex;
    flex-wrap: nowrap;
}

#game-options{
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 15px;
    width: 120px;
    box-sizing: border-box;
    align-items: flex-start !important;
}

#game-options .option{
    flex: 0 0 calc(20% - 5px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px 5px;
    border-radius: 5px;
    background: #202020;
    transform: scale(0.95);
    border: 2px solid #3a3a3a;
    transform: scale(0.95);
}

#game-options .options {
    display: flex
;
    justify-content: flex-start;
    gap: 5px;
    /* padding: 10px 0; */
    border-radius: 5px 5px 0 0;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    flex-direction: column;
    padding-right: 5px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

#game-options .btn-scroll {
    padding: 1px;
    display: flex
;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 2px solid var(--clr-primary);
    margin-bottom: 15px;
    color: var(--clr-primary);
    background: black;
    margin: 0;
    transform: translateY(-3px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .8);
    transition: 0.375s;
    display: none !important;
}

#game-options .option.active{
    border-radius: 5px;
    transform: scale(1);
    box-shadow: 0 0px 8px 5px rgb(255 190 0 / 29%);
    border: 2px solid var(--clr-primary);
    background: var(--grd-secondary);
}

#game-options img{
    width: 80%;
    max-width: 32px;
    filter: grayscale(1);
}

#game-options .active img{
    filter: grayscale(0);
    animation: bounce 0.6s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

#game-options label{
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #c1c1c1;
}

#game-options .active label{
    color: white;
}

/* @media only screen and (max-width: 1600px) {
    #game-options {
        width: calc(100% - 20px);
        margin-left: 10px;
    }
} */

#games{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    width: calc(100% - 110px) !important;
    gap: 10px;
    align-items: flex-start;
    height: fit-content;
    padding-left: 5px;
}

#games .game{
    flex: 0 0 calc(50% - 5px);
    position: relative;
}

#games img{
    width: 100%;
    filter: drop-shadow(0 3px 5px #e4af7263);
    border-radius:10px;
}

#games .disabled:after {
    content: '';
    position: absolute;
    height: 64px;
    width: 80px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 0 6px rgba(0, 0, 0, 0.6));
}

#games .disabled img {
    filter: brightness(0.5);
}

#games .under-maintenance:after {
    background-image: url(../img/maintenance.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 4px 10px black);
}

#games .lock:after {
    background-image: url(../img/lock.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 4px 10px black);
}

#profile-container{
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
}

.section-header{
    display: flex;
    position: absolute;
    bottom: 100%;
    transform: translate(-50%, 50%);
    left: 50%;
    display: flex;
    justify-content: center;
    height: 40px;
    align-items: center;
    gap: 5px;
    min-width: 60%;
    padding: 15px;
    background: var(--grd-secondary);
    border-radius: 50px;
    border: 2px solid var(--clr-primary);
}

.section-header label{
    text-transform: uppercase;
    text-wrap: nowrap;
    color: var(--clr-dark);
    font-size: 14px;
    font-weight: 700;
    color: white
}

.section{
    position: relative;
    margin: 40px 10px 0;
    padding: 40px 10px 10px;
    border-radius: 8px;
}

form{
    margin: 10px;
}

.input-field{
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    border-bottom: 2px solid rgb(255 255 255);
    transition: 0.3s;
    background: linear-gradient(0deg, rgb(0 0 0 / 14%), transparent 60%);
    position: relative;
}

.inp-default {
    font-size: 16px;
    padding: 0;
    margin: 10px 5px;
    background: none;
    border-radius: 0;
    border: none;
    color: white;
}

.input-field:not(.default) {
    position: relative;
}

.input-field.custom {
    position: relative;
}

.input-field:not(.default) label {
    position: absolute;
    pointer-events: none;
    top: 11px;
    left: 5px;
    transition: top 0.35s ease;
}

.input-field.custom label {
    position: absolute;
    pointer-events: none;
    top: 11px;
    left: 5px;
    transition: top 0.35s ease;
}

.input-field label {
    font-size: 16px;
    color: white;
    opacity: 0.5;
}

.input-field .icon-tabler-lock {
    position: absolute;
    right: 5px;
    bottom: 10px;
}

.input-field:not(.default) input:not(:placeholder-shown)~label, .input-field:not(.default).focus label {
    top: -11px;
    font-weight: 600;
    opacity: 1;
    left: 0;
}
.input-field.custom input:not(:placeholder-shown)~label, .input-field.custom.focus label {
    top: -11px;
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
    left: 0;
}

.input-field.focus {
    border-bottom: 2px solid var(--clr-primary);
    background: linear-gradient(0deg, #fff99a0f, transparent);
}

.input-field.focus label {
    color: var(--clr-primary);
}

.input-field.with-note{
    margin-bottom: 32px;
}

.group-input{
    display: flex;
    position: relative;
}

.group-input .input-field{
    width: 100%;
}

.group-input .extra-field{
    width: 25%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-3px, calc(-50% + -15px));
    z-index: 2;
}

.btn-otp{
    background: transparent;
    width: 90%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-secondary);
    color: var(--clr-primary);
    border: 2px solid;
    margin-bottom: 10px;
    font-size: 14px;
}

.btn-otp.disabled{
    background: #636363;
    color: #f1f1f1;
    border: none;
    text-transform: unset;
    font-weight: 400;
}

.btn-cancel{
    background: radial-gradient(#ff3f3f, #db0000);
    color: white;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.additional-link{
    color: white;
    font-size: 14px;
    width: 100%;
    display: block;
    text-align: center;
    margin: 10px 0 15px;
}

.additional-link span{
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--clr-primary);
    color: var(--clr-primary);
}

.input-note{
    display: flex;
    justify-content: flex-start;
    color: var(--clr-primary);
    position: absolute;
    bottom: -20px;
    padding: 0 3px;
    font-size: 11px;
}

.input-note.red{
    color: red;
}

.input-field .cus-label {
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
}

.sel-default{
    font-size: 16px;
    padding: 0;
    margin: 10px 0 5px;
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-sizing: border-box;
    color: white;;
}

.sel-default option {
    background-color: rgba(255,255,255,0.1) !important;
    border-radius: 0;
    padding: 5px;
    color: black;
    box-sizing: border-box;
}

select option {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.upload-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 5px;
}

.upload-label .txt {
    font-size: 16px;
    color: white;
    opacity: 0.5;
    font-weight: 400;
}

.inp-browse {
    background: var(--clr-primary);
    border-radius: 5px;
    padding: 5px 10px;
}

.input-field .label-btn {
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
}

.uploaded-receipt {
    display: none;
    max-height: 200px;
    height: auto;
    max-width: 100%;
    overflow: hidden;
    margin: auto;
}

.uploaded-receipt.show {
    display: inline;
    margin-bottom: 25px;
}

#receipt-x {
    display: none;
    position: absolute;
    bottom: -9px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    border-radius: 5px;
    background: var(--red);
    max-width: 70px;
    padding: 5px;
}

#receipt-x.show {
    display: inline;
}


.notice-box {
    background: #ffffff47;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    margin: 5px 0 15px 0;
}

.notice-box .top {
    display: flex;
    gap: 5px;
    align-items: center;
    color: white;
    justify-content: space-between;
}

.notice-box .top .label {
    display: flex;
    gap: 8px;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.notice-box .top img {
    height: 16px;
    width: 16px;
}

.notice-box .svg-toggle {
    transform: rotate(0deg);
    transition: 0.6s;
}

.notice-box.minimize .svg-toggle {
    transform: rotate(180deg);
    transition: 0.6s;
}

.notice-box .content {
    z-index: 1;
    overflow: hidden;
}

.notice-box .content ul {
    transform: translateY(-15px);
    animation: showNotice 0.6s forwards;
}

.notice-box ul {
    margin: 10px 0 0 0;
    padding-inline-start: 25px;
}

.notice-box li {
    color: white;
}

.notice-box p {
    font-size: 12px;
    font-weight: 400;
    color: white;
}

.notice-box.minimize .content ul {
    animation: hideNotice 0.6s forwards;
}

#apk-game-info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#apk-game-info img{
    width:55%;
    margin: auto;
}

#apk-game-info .account-info{
    border: 1px solid var(--clr-primary);
    border-radius: 8px;
    margin: 5px;
}

#apk-game-info .row:last-of-type {
    border-bottom: none;
}

#apk-game-info .top{
    text-align: center;
    color: var(--clr-secondary);
    padding: 5px;
    background: var(--clr-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px 5px 0 0;
}

#apk-game-info  .row{
    border-bottom: 1px solid var(--clr-primary);
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

#apk-game-info label{
    line-height: 1;
    font-size: 12px;
}

#apk-game-info .value{
    margin-top: 5px;
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
    margin-bottom: 5px;
}

#apk-game-info .btn-copy{
    display: flex;
    align-items: center;
    justify-content: center;
}

#apk-game-info .action-wrapper{
    margin: 5px;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
}

#apk-game-info .btn{
    width: 50%;
    padding: 10px 15px;
    border: none;
    font-size: 18px;
}

#apk-game-info .download-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 5px;
    align-items: center;
}

#apk-game-info .download-wrapper label{
    color: white;
    font-size: 14px;
    font-weight: 400;
    animation: 1s white-glow infinite;
}

@keyframes white-glow{
    0%{
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0));
    }

    50%{
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1));
    }

    100%{
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0));
    }
}

#apk-game-info .download-wrapper button{
    font-size: 14px;
    line-height: 1;
    border-radius: 8px;
    padding: 5px 10px;
    font-weight: 600;
    border: none;
    color: white;
    background: transparent;
    text-decoration: underline;
}

#share-referral-content h1{
    color: white;
    margin: 0 15px 10px;
    text-align: center;
    background-image: var(--grd-primary);
    background-clip: text;
    color: transparent;
    font-size: 20px;
    border-bottom: 3px solid var(--clr-primary);
    padding-bottom: 5px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.65));
}

#share-referral-modal .modal-content{
    max-width:350px;
}

#share-referral-content .qr-wrapper{
    display: flex;
    justify-content: center;
}

#share-referral-content .qr-container{
    background: #ffffff;
    width: 65%;
    margin: auto;
    padding: 10px;

    margin-bottom: 25px;
    border: 1px solid var(--clr-primary);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
    color: var(--clr-dark);
    border-radius: 5px
}

#share-referral-content .qr{
    width: 100%;
    max-width: 300px;
    min-width: 150px;
    margin: auto;
}

#share-referral-content .qrcode{
    text-align: center;
    margin: 0 15px 0;
    font-weight: 700;
    color: var(--clr-dark);
    animation: 3s text-glow infinite;
    font-size: 24px;
    line-height: 1;
}

.refer-qrcode-note{
    color: white;
    font-size: 12px;
    text-align: center;
    margin: 5px 15px 15px;
}

#share-referral-modal .action-wrapper{
    display: flex;
    flex-wrap: nowrap;
    margin: 15px 25px;
    justify-content: center;
}

#share-referral-modal .action-wrapper img{
    padding: 5px;
    flex: 0 0 33.33%;
    width: 100%;
    max-width: 55px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}


@keyframes hideNotice {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-15px);
        height: 0;
        margin: 0;
    }
}

@keyframes showNotice {
    0% {
        opacity: 0;
        transform: translateY(-15px);
        height: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        height: 100%;
    }
}

@media only screen and (max-width:340px){
    .input-note{
        font-size: 8px;
    }
}

.swiper-pagination-bullet-active{
    background: var(--clr-primary) !important;
}



/* @media only screen and (min-width: 700px){
    #content .front{
        width: calc(50% - 10px);
        margin-top: 10px;
    }

    #balance-wrapper{
        position: absolute;
        right: 10px;
        width: calc(50% - 10px);
        top: 0;
        margin-top: 10px;
    }

    #games .game{
        flex: 0 0 calc(20% - 5px);
    }

    .section{
        max-width: 800px;
        margin: 40px auto 10px;
        padding: 40px 15px 15px;
    }

    #more-settings, #logout{
        max-width: 800px;
        margin: 15px auto !important;
    }

    .swiper-container{
        margin: 0 !important;
    }

    #referral-wrapper{
        margin: 10px 0 0;
    }

    #bonus-wrapper div{
        flex: 0 0 calc(10% - 5px) !important;
        justify-content: flex-start !important;
    }

    #bonus-wrapper div img{
        min-width: 80px;
    }
} */
/* 
@media only screen and (min-width:1600px){
    #content{
        background-image: url("../img/theme/background-desktop.jpg");
    }
    #content .front{
        width: calc(25% - 10px);
        margin-top: 10px;
    }

    #referral-wrapper .option-wrapper{
        bottom:20px;
    }

    #game-wrapper{
        position: absolute;
        width: calc(50% - 10px);
        left: 50%;
        transform: translateX(calc(-50%));
        top: 0;
        margin-top: 0;
    }

    #balance-wrapper{
        position: absolute;
        right: 10px;
        width: calc(25% - 10px);
        top: 0;
        margin-top: 10[x];
    }

    #games .game{
        flex: 0 0 calc(20% - 5px);
    }

    .section{
        max-width: 800px;
        margin: 40px auto 10px;
        padding: 40px 15px 15px;
    }

    #more-settings, #logout{
        max-width: 800px;
        margin: 15px auto !important;
    }

    .swiper-container{
        margin: 0 !important;
    }

    #referral-wrapper{
        margin: 10px 0 0;
    }

    #bonus-wrapper div{
        flex: 0 0 calc(10% - 5px) !important;
        justify-content: flex-start !important;
    }

    #bonus-wrapper div img{
        min-width: 80px;
    }
}

@media only screen and (min-width: 1024px){
    #promo-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    #promo-wrapper img{
        width: 50% !important;
        flex: 0 0 50%;
        padding: 15px;
    }
} */

#jackpot-wrapper{
    background-image: url(../img/layer.jpg);
    position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    padding-top: 13%;
    animation: jackpot-wrapper 2s infinite;
}

@keyframes jackpot-wrapper{
    0%{
        filter: drop-shadow(0 0 6px rgb(253, 205, 7, 0));
    }

    50%{
        filter: drop-shadow(0 0 6px rgb(253, 205, 7, 0.9));
    }

    100%{
        filter: drop-shadow(0 0 6px rgb(253, 205, 7, 0));
    }
}

#sidebar{
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 10008;
    /* width: 80%; */
    height: 100%;
    transition: .425s;
    max-width: 275px;
    width: 0;
}

#sidebar.show{
    transform: translateX(-100%);
    width: 80%;
    max-width: 275px
}

#sidebar.show:before{
    content: '';
    width: 102%;
    background: rgba(0,0,0,.75);
    position: fixed;
    height: 100%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: var(--max-vw);
}

#sidebar .container{
    top: 0;
    height: 100vh;
    overflow-y: hidden;
    padding-bottom: 30px;
    width: 100%;
    max-width: 325px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #25282f;
    /* background-image: url('../img/sidebar-background.png'); */
    background-size: 150% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

#sidebar .container::-webkit-scrollbar{
    display: none;
}

#sidebar .top{
    padding: 10px 15px;
    border-bottom: 1px solid white;
    width: 100%;
    position: relative;
    display: flex;
    background: #25282f;
}

#sidebar .top .btn-close{
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
}

#sidebar .top .btn-close > *{
    color: white;
}

#sidebar .top .profile-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

#sidebar .top .profile-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#sidebar .top .profile-wrapper span{
    font-weight: 600;
    color: white;
    font-size: 16px;
}

#sidebar .top span.balance{
    color: #f1c137;
}

#sidebar .top .logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sidebar .top .logo img{
    padding-top:20px;
    width: 100%;
    max-width: 70px
}

#sidebar .middle{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 5px;
    margin: 0 10px;
    border-bottom: 1px solid #ccc;
    height: 100px;
}

#sidebar .middle a{
    flex: 0 0 33.333%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

#sidebar .middle a img{
    width: 32px;
}

#sidebar .middle a label{
    font-size: 12px;
    font-weight: 600;
    color: #af7920;
    text-align: center
}

#sidebar .items{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
    height: calc(100vh - 250px);
    overflow-y: scroll
}

#sidebar .item a{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 10px 35px;
}

#sidebar .item{
    border-bottom: 1px solid #ffffff4d
}

#sidebar .item:last-of-type{
    border-bottom: none;
}

#sidebar .item a img{
    width: 24px;
}

#sidebar .item a label{
    color: white;
    font-size: 15px;
    font-weight: 400;
    transform: none;
}