* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

label .menu {
    position: absolute;
    right: -100px;
    top: -100px;
    z-index: 100;
    width: 180px;
    height: 180px;
    background: #CC3340;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
    cursor: pointer;

}

label .hamburger {
    position: absolute;
    top: 130px;
    left: 40px;
    width: 30px;
    height: 2px;
    background: #FFF;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

label .hamburger:after,
label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #FFF;
}

label .hamburger:before {
    top: -10px;
}

label .hamburger:after {
    bottom: -10px;
}

label input {
    display: none;
}

label input:checked+.menu {
    box-shadow: 0 0 0 100vw #CC3340, 0 0 0 100vh #CC3340;
    border-radius: 0;

}

label input:checked+.menu .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

}

label input:checked+.menu .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;

}

label input:checked+.menu .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;

}

label input:checked+.menu+ul {
    opacity: 1;
}

label ul {
    z-index: 200;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
    list-style-type: none;
}

label a {
    margin-bottom: 1em;
    display: block;
    color: #FFF;
    text-decoration: none;
    font-size: 30px;
    text-align: center;
}

:focus {
    outline: none !important;
    box-shadow: none !important;
}

body {
    height: 100vh;
    color: #fff;
    font-family: Hind Siliguri, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    background: var(--background) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
p {
    margin: 0;
}

a,
button {
    color: #ecc42e;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

a:hover,
button:hover {
    color: #eeca45;
}

.page-loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #CC3340;
    z-index: 100000;
}

.page-loader .loader-cont {
    position: absolute;
}

.loader-cont .dice {
    width: 100%;
    height: 48px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.loader-cont .loading {
    font-size: 1.5rem;
    font-weight: bold;
}

.loader-cont .dice i {
    position: absolute;
    animation: spinning_dice 1.5s linear infinite;
}

@keyframes spinning_dice {
    0% {
        top: 0px;
        transform: rotate(0deg);
    }

    5% {
        top: 0px;
        transform: rotate(0deg);
    }

    10% {
        top: -10px;
        transform: rotate(0deg);
    }

    25% {
        top: -50px;
        transform: rotate(180deg);
    }

    50% {
        top: -70px;
        transform: rotate(360deg);
    }

    75% {
        top: -50px;
        transform: rotate(540deg);
    }

    90% {
        top: -10px;
        transform: rotate(720deg);
    }

    95% {
        top: 0px;
        transform: rotate(720deg);
    }

    to {
        top: 0px;
        transform: rotate(720deg);
    }
}

.loading-btn {
    padding: 8px 15px;
    position: absolute;
    font-size: 16px !important;
    font-weight: bold;
    /*color: #fff !important;*/
    z-index: 999;
}

.bg-dark {
    background: rgba(0, 0, 0, 0.4) !important;
    min-height: 100vh;
}

.alert-bg.active {
    display: flex !important;
}

.alert-bg {
    z-index: 99999 !important;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.alert-bd {
    width: 400px;
    max-width: 80%;
    height: auto !important;
    margin-top: -40px;
    padding: 20px;
    position: relative;
    /*background: black;*/
    /*color: white;*/
    background: #fff;
    color: #5e5e5e;
    font-weight: bold;
    border-radius: 4px;
}

.alert-close {
    font-size: 22px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: -15px;
    right: -13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 34px;
    height: 34px;
    background: red;
}

.alert-close:hover {
    color: #fff;
    text-decoration: none;
}

.alert-text {
    text-align: center;
    font-size: 17px;
    overflow: hidden;
}

.alert-text .prize {
    display: block;
    font-size: 28px;
    border: 1px solid #5e5e5e;
    border-radius: 3px;
}

.alert-text img.win {
    max-width: 220px;
    margin-top: -30px;
}

.alert-text img.wrong-code-img {
    max-width: 220px;
}

.alert-text .wrong-code-msg {
    min-height: 70px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.the-wheel {
    max-width: 100%;
    background-image: url('../assets/images/483b4ac87f1a954f2919b47927942b3c.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.the-wheel.with-arrow:before {
    content: "";
    width: 8%;
    height: 70px;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translate(-50%, 0);
    background: url('../assets/images/wheel_arrow.webp') no-repeat 0 0;
    background-size: 100%;
}

@media (max-width: 425px) {
    .the-wheel:before {
        width: 35px;
        height: 50px;
        top: 12px;
        left: calc(50% - 17px);
    }
}

.the-wheel canvas {
    max-width: 100%;
}

.input-voucher {
    max-width: 200px;
    height: auto !important;
    padding: 7px 10px 6px;
    background: white;
    border: 0px;
}

.single-img {
    border-radius: 5px;
    overflow: hidden;
}

.single-img img.img-effect {
    transition: .3s;
    transform: scale(1);
    width: 100%;
}

.single-img img.img-effect:hover {
    transform: scale(1.03);
}

.btn-gold {
    color: #222;
    font-size: 1em;
    border-radius: 3px;
    background: #d4ab13 linear-gradient(180deg, #dab836, #d4ab13) repeat-x;
    border: 1px solid transparent;
    border-color: #d4ab13;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: 2px 2px 2px #9c9c9c;
    transition: all .2s ease-in-out;
}

.btn-gold:hover {
    color: #fff;
    background: #b18f10 linear-gradient(180deg, #bda034, #b18f10) repeat-x;
    border-color: #a5850f;
}

.btn-gold.focus,
.btn-gold:focus {
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .2rem rgba(212, 171, 19, .5);
}

.btn-gold.disabled,
.btn-gold:disabled {
    color: #222;
    background-color: #d4ab13;
    border-color: #d4ab13;

}

.btn-gold:not(:disabled):not(.disabled).active,
.btn-gold:not(:disabled):not(.disabled):active,
.show>.btn-gold.dropdown-toggle {
    color: #fff;
    background-color: #a5850f;
    background-image: none;
    border-color: #997c0e;
}

.btn-gold:not(:disabled):not(.disabled).active:focus,
.btn-gold:not(:disabled):not(.disabled):active:focus,
.show>.btn-gold.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .2rem rgba(212, 171, 19, .5);
}

.btn-outline-gold {
    color: #d4ab13;
    background-color: transparent;
    background-image: none;
    border-color: #d4ab13;
}

.btn-outline-gold:hover {
    color: #222;
    background-color: #d4ab13;
    border-color: #d4ab13;
}

.btn-outline-gold.focus,
.btn-outline-gold:focus {
    box-shadow: 0 0 0 .2rem rgba(212, 171, 19, .5);
}

.btn-outline-gold.disabled,
.btn-outline-gold:disabled {
    color: #d4ab13;
    background-color: transparent;
}

.btn-outline-gold:not(:disabled):not(.disabled).active,
.btn-outline-gold:not(:disabled):not(.disabled):active {
    color: #222;
    background-color: #d4ab13;
    border-color: #d4ab13;
}

.btn-outline-gold:not(:disabled):not(.disabled).active:focus,
.btn-outline-gold:not(:disabled):not(.disabled):active:focus {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .2rem rgba(212, 171, 19, .5);
}

.logo-cont {
    max-width: 270px;
    display: inline-block;
    position: absolute;
    bottom: calc(100% - 200px);
    right: -278px;
}

@media(max-width: 768px) {
    .logo-cont {
        max-width: 270px;
        display: inline-block;
        position: relative;
        bottom: 20px;
        left: 0px;
    }
}

.mute-btn {
    height: 32px;
    padding: 0;
    position: fixed !important;
    top: 15px;
    left: 15px;
    z-index: 99;
}

.speaker {
    height: 30px;
    width: 30px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.speaker span {
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    margin: 0 0 0 4px;
    transition: all 0.2s ease-out;
}

.speaker span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    border-width: 8px 12px 8px 13px;
    left: -8px;
    top: 7px;
    transition: all 0.2s ease-out;
}

.speaker span:before {
    transform: rotate(45deg);
    border-radius: 0 50px 0 0;
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-style: double;
    border-color: #fff;
    border-width: 7px 7px 0 0;
    left: 19px;
    top: 10px;
    transition: all 0.2s ease-out;
}

.speaker:hover span:before {
    transform: scale(.8) translate(-3px, 0) rotate(42deg);
}

.speaker.mute span {
    margin: 0 0 0 8px;
}

.speaker.mute span:before {
    transform: scale(.5) translate(-15px, 0) rotate(36deg);
    opacity: 0;
}

.speaker.mute span:after {
    left: -4px;
}

.dashboard-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    position: fixed !important;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 55px;
    left: 15px;
    color: #fff;
    font-size: 18px;
    z-index: 99;
}