:root{
    --clr-primary: #6dec03;
    --clr-light: rgb(0 155 35);
    --clr-secondary: #ebc325;
    --clr-border-primary: rgb(215 132 5);
    --background-dark: #00104d;
    --background-transparent: rgba(255,255,255,0.1);
    --grd-primary: #006308;
    --grd-secondary: #6dec03;
    --default-shadow: 0 5px 5px 0 rgba(13, 127, 0, 0.15);
    --background-inactive: #84a588;
    --clr-toggle-on: white;
    --bg-toggle-on: #156f00;
    --clr-toggle-off: white;
    --bg-toggle-off: #84a588;
    --bg-modal: linear-gradient(0deg, rgb(11 135 51) 0%, rgb(172 205 61) 100%);
    --bg-modal: linear-gradient(0deg, rgb(117 151 113) 0%, rgb(151 157 51) 100%);
    --clr-accent: #e1ff00;
}

html{
    margin: auto;
    position: relative;
    width: 100vw;
}

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

*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
    font-size: 13px;
    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;
    color: #ffffff;
    background: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: 
        linear-gradient(rgba(243, 243, 243, 0.5), rgba(231, 231, 231, 0.5)), 
        url("../img/ninjabg.png");
}

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: #003102;
}

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

#site-logo{
    max-height: 100%;
    max-width: 100%;
}

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

.dropdown-content {
    display: none;
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 2;
    margin:10px;
    margin-left:40px;
    margin-top:13px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 150px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-container:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

#marquee{
    z-index: 1;
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 100%;
    color: #000000;
    background: #f5ff31;
}

#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: 20s;
    top: 50%;
    transform: translateY(-50%);
}

.hide{
    display: none !important;
}

.box{
    padding: 0 10px 15px;
}

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-10{
    margin-bottom: 10px;
}

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

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

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

.px-10{
    padding-left: 10px;
    padding-right: 10px;
}

.px-15{
    padding-left: 15px;
    padding-right: 15px;
}

.px-20{
    padding-left: 20px;
    padding-right: 20px;
}

.px-25{
    padding-left: 25px;
    padding-right: 25px;
}

.py-10{
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-15{
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-20{
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-25{
    padding-top: 25px;
    padding-bottom: 25px;
}

.btn{
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.btn-cancel{
    color: #ffffff;
    background: #454545;
}

.btn-primary{
    background: #ff4040;
    color: var(--clr-secondary);
    box-shadow: 0 5px 5px rgba(0,0,0,0.3);
}

.btn-secondary{
    background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(71 71 71) 100%);
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
}

.btn-submit{
    background: #ffffff;
    color: #000000;
    box-shadow: 0 5px 5px #ffffff7d;
    width: 100%;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}


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

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

.bg-transparent{
    background: #000000;
    border: 2px solid #6dec03;
}

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

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

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

.text-error{
    color: red;
}

.text-center{
    text-align: center
}

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

.text-danger{
    color: #ff0000;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.link{
    font-size: 14px;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    color: #eb2525;
    text-transform: uppercase
}

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

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

header .col-2{
    flex: 0 0 calc(60% - 5px);
    margin: auto;
    justify-content: center;
}

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

header img{
    max-height: 100%;
}

.hide{
    display: none !important;
}

#live-transaction{
    margin-top: 10px;
    font-size: 12px;
    border-radius: 5px;
    background: #000;
}

#live-transaction .top{
    padding: 1px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #4aa300;
    border-bottom: none;
    font-weight: 450;
}

#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;
}

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


#live-transaction .note{
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
}

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

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

#live-transaction th, #live-transaction td{
    border: 2px solid #4aa300;
}

#live-transaction th{
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    padding: 5px;
    line-height: 1;
}

#live-transaction thead{
    background: var(--grd-primary);
}

#live-transaction thead td{
     border-radius: 5px;
    text-align: center;
    background: rgba(255,255,255,0.25)
}

#live-transaction td{
    font-size: 10px;
    padding: 3px;
    line-height: 1;
}

.cs{
    max-width: 500px !important
}

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

#balance-wrapper{
    /* background: #70966d; */
    background-image: url("../img/referral-background2.png");
    /* opacity: 0.2; */
    padding: 5px 10px;
    border: 2px solid #008f11;
    border-radius: 5px;
}

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

#sign-form a:after{
    content:'';
    position:absolute;
    height: 40px;
    width: 200px;
    animation: reflect 3s infinite;
    top:50%;
    left:-200%;
    transform:translatey(-50%) rotate(-45deg);
    z-index:999;
    background:rgba(255,255,255,0.3);

}

#sign-form a:delay{
    content:'';
    position:absolute;
    height: 100px;
    width: 300px;
    transform: rotate(45);
    animation: reflect 3s infinity;

}

@keyframes reflect{
    from{
        left:-200%;
    }
    to{
        left:200%;
    }
}

#sign-form a{
    width: 50%;
    background-size: 100% 100%;
    text-shadow: none;
    max-width: 320px;
    text-align: center;
    font-size: 18px;
    position: relative;
    padding: 5px 10px;
    opacity: 1;
    color: white;
    overflow: hidden;
    background:linear-gradient(339deg, #0e9000 0%, #008d21 50%, #155900 100%);
}

#sign-form a:last-of-type{
    background: linear-gradient(339deg, #a39837 0%, #fff100 50%, #ae9f1e 100%);
    color: #000000;
}

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

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

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

#balance-box .amount{
    font-size: 20px;
    margin: 5px 0;
    font-weight: 600;
    line-height: 1;
    color: white;
}

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

#balance-box p{
    color: #fff;
}

#balance-box b{
    color: #fff;
}

#fund-options{
    width: 40%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    /* gap: 5px; */
    justify-content: center;
    padding: 0 2px;
    padding-top: 5px;
}

#fund-options a{
    padding: 1px;
    display: flex;
}

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


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

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

#referral-wrapper .option-wrapper{
    position: absolute;
    left: 0;
    bottom: 18px;
    width: calc(100% - 40px);
    padding: 2px 2px;
    margin-left: 20px;
}

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

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

#lucky-draw img{
    width: 100%;
     border-radius: 5px;
    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: #003102;
    border-top: 3px solid #6dec03;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.4);
}

#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, 1);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}
  
#navi-menu img{
    width: 100%;
    max-width: 35px;
    height: auto;
    animation: icon-active infinite 1s;
}

@keyframes shake {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 50%;
	}

	10% {
		transform: rotate(8deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-10deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(10deg);
	}

	80% {
		transform: rotate(-8deg);
	}

	90% {
		transform: rotate(8deg);
	}
}


#navi-menu .active img{
    filter: grayscale(0);
    animation:shake 2s ease-in-out 0s infinite normal none;
}

#navi-menu .active label{
    color: #6dec03;
}

#game-wrapper{
    margin: 15px 0 0 0;
    padding-bottom:15px;
}

#game-options{
    width: 100%;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#game-options .btn-scroll{
    padding: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 2px solid #abe6af;
    margin-bottom: 15px;
    background: #003102;
    color: #abe6af;
    background: linear-gradient(180deg, #119522, #111e01);
    margin: 0;
    transform: translateY(-3px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .8);
    transition: 0.375s;
}

#game-options .btn-scroll.active{
    transform: translateY(0px);
    box-shadow: 0 3px 5px rgba(0,0,0,0);
}

#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;
}

#game-options .option{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
    border-radius: 5px;
    transform: scale(0.95);
    line-height: 1;
    border: 2px solid #397e00;
    box-shadow: 0 0 5px 1px #000000;
    transition: 0.375s;
    background: #000000;
    min-width: 90px;
    max-width: 90px;
}

#game-options .option.active{
    background: var(--grd-primary);
    animation: game-active 0.3s infinite;
    box-shadow: 0 0 2px 2px #438e06;
}

#game-options img{
    width: auto;
    height: 50px;
    filter: grayscale(0);
}

#game-options .active img{
    filter: grayscale(0);
}

#game-options label{
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

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

#games{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-left: 8px;
}

#games .game{
    flex: 0 0 calc(33% - 5px);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 0 12px;
    overflow: hidden;
    box-shadow: 0 0 2px 4px #0d5203;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

@keyframes opacityChange {
	50% {
		opacity:.5;
	}
	100% {
		opacity: 1;
	}
}

#games .game button{
    width: 80%;
    margin: auto;
    font-weight: 600;
    font-size: 13px;
    border: 2px solid var(--clr-secondary);
    background: var(--grd-secondary);
    color: #714500;
    border-radius: 100px;
    position: absolute;
    bottom: -7px;
    animation: game-button 0.875s infinite;
}

#games .game.disabled button{
    display: none;
}

#games img{
    width: 100%;
    animation: 1.5s glowing-shadow infinite;
}

#games .disabled:after {
    content: '';
    position: absolute;
    height: 26px;
    width: 26px;
    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);
    animation: none;
}

#games .under-maintenance:after {
    background-image: url(../img/maintenance.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


#games .lock:after {
    background-image: url(../img/lock.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.section-header{
    border-radius: 50px;
    position: absolute;
    bottom: 100%;
    transform: translate(-50%, 50%);
    left: 50%;
    display: flex;
    justify-content: center;
    height: 40px;
    align-items: center;
    gap: 5px;
    /* border: 2.5px solid var(--clr-secondary); */
    max-width:375px;
    width:40%;
    padding: 15px;
    color: #ffffff;
    background: #0a4e00;
    border: 3px solid #6dec03;
}

.section-header label{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-wrap: nowrap;
}

.section{
    position: relative;
    border-radius: 5px;
}

.form-section{
    margin:0 auto;
    padding: 20px
}

.section-title{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin: 50px auto 20px;
}

form{
    margin: 10px;
}

.input-field{
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255,255,255,0.75);
    transition: 0.3s;
    position: relative;
}

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

.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;
    color: #ffffff8c;
}

.input-field label {
    font-size: 16px;
    color: black;
    opacity: 1;
    text-transform: uppercase;
}

.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: -8px;
    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 input::placeholder{
    opacity: 0 ;
    color: rgba(0, 0, 0, 0.5);
}

.input-field.focus input::placeholder{
    opacity: 0.8;
}

.input-field .input-note{
    display: none;
    font-size: 12px;
    color: white
}

.input-field.focus .input-note{
    position: absolute;
    bottom: -20px;
    left: 1px;
    display: flex;
}

.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: 1px solid;
    font-size: 14px;
}

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

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

.additional-link span{
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid white;
}

.input-note{
    display: flex;
    justify-content: flex-start;
    color: #c5c5c5;
    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;
    text-transform: uppercase;
    color: var(--clr-primary);
}

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

.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;
}

.input-field.contact input{
    padding-left: 70px;
    position: relative;
}

.input-field.contact .country-code{
    content: '';
    position: absolute;
    left: 10px;
    bottom: 5px;
    display: flex;
    align-items: center;
    color: white;
    display: none;
}

.input-field.contact .country-code img{
    height: 24px;
    margin-right: 5px;
}

.input-field:not(.default) input:not(:placeholder-shown)~span.country-code, .input-field:not(.default).focus .country-code{
    display: flex;
    align-items: center;
}

.notice-box {
    background: red;
    padding: 10px;
    border-radius: 5px;
    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 .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: 14px;
    font-weight: 400;
    color: white;
}

.notice-box strong{
    font-weight: 600;
    font-size: 14px;
}

.notice-box .highlight{
    color: #edff00;
}

.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: 5px;
    margin: 5px;
}

#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 .row:last-of-type {
    border-bottom: none;
}


#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: wheat;
    font-size: 14px;
    font-weight: 400;
    animation: 1s text-glow infinite;
}

#apk-game-info .download-wrapper button{
    font-size: 14px;
    line-height: 1;
    background: transparent;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 600;
    border: 2px solid #00aaff;
    color: #00aaff;
}

#share-referral-content h1{
    color: white;
    margin: 0 15px 10px;
    text-align: center;
}

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

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

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

#share-referral-content .qrcode{
    text-align: center;
    margin: 10px 15px;
    font-weight: 700;
    color: wheat;
    animation: 3s text-glow infinite;
    font-size: 24px;
}

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

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

#share-referral-modal .action-wrapper img{
    padding: 5px;
    width: 25%;
    box-sizing: border-box;
}

#desktop-footer{
    display: none;
}

#mobile-footer{
    display: block
}

.footer{
    background: #49693c69;
}

.footer-wrapper{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.copyright p{
    font-size: 12px;
    color: #fff;
    text-align: center;
    width: 100%
}

.copyright{
    padding: 10px;
}

.footer .col{
    width: 100%;
    padding: 15px 10px;
}

.footer .col-title{
    margin-bottom: 10px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.footer .content{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer img{
    max-height: 32px
}

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

.form-title{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    color: #ffffff;
    text-transform: uppercase
}

#sendotp{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 14px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    background: transparent;
}

.btn-submit:disabled{
    background: grey !important;
    color: white !important;
}

#game-options::-webkit-scrollbar {
    height: 6px !important;
}

div#game-options::-webkit-scrollbar-track {
    background: rgb(95 199 93);
    border-radius: 10px;
}

div#game-options::-webkit-scrollbar-thumb {
    background-color: #246b4a;
    border-radius: 10px;
}

#bonus-count{
    position: absolute;
    left: calc(50% + 12px);
    top: -5px;
    font-size: 12px;
    font-weight: 600;
    background: red;
    display: flex;
    justify-content: center;
    border-radius: 100px;
    padding: 0;
    height: 20px;
    height: 18px;
    width: 18px;
    animation: glow-notification 1.375s infinite
}

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

    .footer img{
        max-height: 20px
    }

    #marquee span{
        animation-duration: 5s;
    }
}

@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(25% - 5px);
    }

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

    .form-section{
        margin:0 auto;
        padding: 20px
    }
    
    #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;
    }

    #game-options img{
        height: 60px;
        width: auto;
        max-width: none
    }

    #marquee span{
        animation-duration: 15s;
    }
}

@media only screen and (min-width: 1024px){
    #promo-wrapper {
        display: flex;
        flex-wrap: wrap;
    }
    
    #games .game {
        flex: 0 0 calc(25% - 5px);
    }

    .footer .col{
        width: 25%;
        justify-content: center;
    }

    .footer .col{
        width: 25%;
    }

    .footer img{
        max-height: 24px;
    }

    .footer .col-title{
        text-align: center;
    }

    .footer .content{
        justify-content: center;
    }

    #marquee span{
        animation-duration: 17s;
    }
}

@media only screen and (min-width: 1200px){
    #marquee span{
        animation-duration: 20s;
    }
}

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

    #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% - 30px);
        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;
    }

    .form-section{
        margin:0 auto;
        padding: 20px
    }
    
    #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;
    }

    #game-options .option{
        min-width:120px;
        max-width: 120px;
    }

    #game-options img{
        height: 60px;
    }

    #marquee span{
        animation-duration: 23s;
    }
    
    #desktop-footer{
        display: block;
    }

    #mobile-footer{
        display: none;
    }
}


/**** MEDIA SCREEN END ****/

/**** ANIMATION START ****/
@keyframes marquee{
    from{
        right: -400%;
    }
    to{
        right: 100%;
    }
}

@keyframes glow-notification{
    0%, 100%{
        transform: scale(1);
    }

    50%{
        transform:scale(0.8)
    }
}
@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%;
    }
}

@keyframes glowing-shadow{
    0% {
        filter: drop-shadow(0 0 1px rgba(246, 214, 129, 0.3));
    }
    50% {
    filter: drop-shadow(0 0 3px rgba(246, 214, 129, 0.75));
    }
    100% {
        filter: drop-shadow(0 0 1px rgba(246, 214, 129, 0.3));
    }
}

@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%;
    }
}

@keyframes text-glow{
    0%{
        filter: drop-shadow(0 0 5px rgba(245, 222, 179, 0));
    }

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

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

@keyframes game-active{
    0%, 100%{
        transform: scale(0.95) translateY(0);
    }

    50%{
        transform: scale(0.95) translateY(-5px);
    }
}

@keyframes navi-main-icon{
    0%, 100%{
        filter:drop-shadow(0 0 1px rgb(167,238,255, 0.1));
    }

    50%{
        filter:drop-shadow(0 0 5px rgb(167,238,255, 0.65));
    }
}

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

    50%{
        opacity: 1;
    }
}

@keyframes game-button{
    0%, 100%{
        transform: scale(0.9);
    }

    50%{
        transform: scale(1);
    }
}
/**** ANIMATION END ****/

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

#sidebar.show{
    left: 0
}

#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: rgb(1, 70, 38);
    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 #d79e00;
    width: 100%;
    position: relative;
    display: flex;
    background: linear-gradient(360deg, #317f00, #b5c71b);
}

#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{
    width: 100%;
    max-width: 120px
}

#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 15px;
}

#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;
}


/* .pushable {
    background: hsl(340deg 100% 32%);
    border-radius: 12px;
    border: none;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
  }
  .front {
    display: block;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    background: hsl(345deg 100% 47%);
    color: white;
    transform: translateY(-6px);
  }

  .pushable:active .front {
    transform: translateY(-2px);
  } */

  .sticky-element{
    position: fixed;
    right: 0;
    transform: translateY(-200%);
    z-index: 120;
    width: 7.2rem;
    height: auto;
    border-radius: 100%;
    
    /*background: var(--clr-bg-gold);*/
    animation: moveVertical 30s infinite;
  }
  
  .sticky-element img{
    width:100%;
    animation: csyShadow 3s infinite;
  }

  .sticky-wrap .text{
    text-align: center;
    background: var(--theme-grd-gold);
    box-sizing: border-box;
    padding: 0.3rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
    animation: csyScale 1s infinite;
  }

  @keyframes csyScale {
      0%{
        transform: scale(0.9);
      }
      50%{
        transform: scale(1);
      }
      100%{
        transform: scale(0.9);
      }
  }
  
  .sticky-wrap{
    position: relative;
  }
  
  .close-sticky{
    position: absolute;
    right: -0.5rem;
    top: -2rem;
    background: var(--clr-black);
    border-radius: 0.8rem;
    display: flex;
  }
  
  .close-sticky svg > *{
    color: white;   
  }
  
  @keyframes moveVertical {
    0% {
      top:75%;
    }
    50% {
      top:25%;
    }
    100% {
      top:75%;
    }
  }
  
  #contact-wrapper{
    padding:3rem 1.5rem;
  }