@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap');

:root {
    --mastergreen: #33FF00;
    --mastergreen-hover: #38b519;
    --masteryellow: #FAFF00;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    background-color: #0B0F13;
    padding: 0;
    margin: 0;
}

    .loading-page {
        background: #0B0F13;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: inline-flex;
        z-index: 99999;
        align-items: center;
        justify-content: center;
    }

    .loading-page img {
        max-width: 100px;
    }

    i.ti {
        font-size: 16px
    }

    .scrollCustom::-webkit-scrollbar {
        width: 10px;
    }

    /* Track */

    .scrollCustom::-webkit-scrollbar-track {
        background: #374A5C;
        border-radius: 5px;
    }

    /* Handle */

    .scrollCustom::-webkit-scrollbar-thumb {
        background: rgba(51, 255, 0, 0.48);
        border-radius: 10px;
        transition: all 1s;
    }

    /* Handle on hover */

    .scrollCustom::-webkit-scrollbar-thumb:hover {
        background: #33FF00;
    }

    .btn-mastergreen {
        background-color: var(--mastergreen);
        border-color: var(--mastergreen);
        color: #0B0F13;
        font-weight: 700;
        padding: 10px 20px;
    }

    .btn-mastergreen:hover {
        background-color: var(--mastergreen-hover) !important;
        border-color: var(--mastergreen-hover) !important;
    }

    input.form-control.custom-control {
        border-color: #1F2A34;
        background-color: #1F2A34;
        color: #708DAA;
        padding: 12px;
        border-radius: 5px;
        font-size: 14px;
        box-shadow: none;
    }

    input.form-control.custom-control::placeholder {
        color: #708DAA;
        opacity: 1;
    }

    .modal-backdrop.show {
        background-color: #394b5e;
        opacity: .7;
    }

    /* -- Styles Begin -- */

    .sponsorCheckLoading {
        color: var(--mastergreen);
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    header {
        background-color: #0B0F13;
        position: sticky;
        z-index: 10;
        top: 0;
        border-bottom: 1px solid #1D2834;
        display: flex;
        justify-content: space-between;
        height: 76px;
    }

    header .header-left {
        display: flex;
        justify-content: flex-start;
    }

    header .logo {
        padding: 5px
    }

    header .logo img {
        height: 60px;
    }

    header .prize {
        position: relative;
        display: flex;
        justify-content: flex-start;
        height: 75px;
        background: linear-gradient(85deg, var(--mastergreen) -50%, rgba(0, 0, 0, 0) 60%);
        padding-top: 15px;
        padding-left: 20px;
        padding-right: 30px;
        box-sizing: border-box;
        border-right: 1px solid #1D2834;
        min-width: 250px;
    }

    header .prize .icon img {
        height: 45px
    }

    header .prize .prize-text {
        color: #B1BAC3;
        font-size: 11px;
        position: absolute;
        left: 72px
    }

    header .prize .prize-value {
        margin-top: 11px;
        margin-left: 10px;
        color: var(--mastergreen);
        font-size: 26px;
        font-weight: 600;
        letter-spacing: 3px;
        text-wrap: nowrap;
    }


    .publisher-box {
        position: relative;
        display: flex;
        justify-content: flex-start;
        height: 75px;
        background: linear-gradient(85deg, var(--mastergreen) -50%, rgba(0, 0, 0, 0) 60%);
        padding-top: 15px;
        padding-left: 20px;
        padding-right: 30px;
        box-sizing: border-box;
        border-right: 1px solid #1D2834;
    }

    .publisher-box .avatar {
        display: block;
        border-radius: 8px;
        border: 1px solid var(--mastergreen);
        width: 45px;
        height: 45px;
        margin-right: 20px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        filter: drop-shadow(0px 0px 20px rgba(51, 255, 0, 0.4));
    }

    .publisher-box .avatar img {
        width: 100%;
        border-radius: 8px;
    }

    .publisher-box .publisher-name {
        color: #fff;
        font-size: 26px;
        font-weight: 600;
        line-height: 1;
    }

    .publisher-box .publisher-text {
        color: #fff;
        font-size: 11px;
    }

    header .menu {
        padding-top: 25px;
        padding-left: 40px
    }

    header .menu a {
        color: #B1BAC3;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        margin-right: 20px
    }

    header .menu a.active,
    header .menu a:hover {
        color: var(--mastergreen);
    }

    header .account {
        height: 75px;
        display: flex;
        justify-content: flex-end;
        align-content: center;
    }

    header .account .tg-connect {
        display: flex;
        justify-content: flex-start;
        padding: 17px 20px 0 20px;
        border-left: 1px solid #1D2834;
        color: #fff;
        line-height: 1;
        text-decoration: none;
    }

    header .account .tg-connect .icon {
        background-color: #24A1DE;
        border-radius: 5px;
        color: #fff;
        margin-right: 15px;
        padding: 10px 12px;
        display: inline;
        height: 40px;
        line-height: normal;
    }

    header .account .tg-connect .icon i.ti {
        font-size: 20px
    }

    header .account .tg-connect .tgname {
        font-size: 14px;
        padding-top: 3px;
    }

    header .account .tg-connect .tgname b {
        display: block;
        color: #24A1DE;
        margin-bottom: 5px;
    }

    header .account .detail {
        height: 75px;
        display: flex;
        justify-content: flex-end;
        align-content: start;
        padding: 17px 25px 0 20px;
        border-left: 1px solid #1D2834;
    }

    header .account .detail.active,
    header .account .detail:hover {
        background-color: #1D2834;
    }

    header .account .detail .avatar {
        background-color: #8799AC;
        border-radius: 5px;
        color: #fff;
        margin-right: 15px;
        font-size: 17px;
        font-weight: 700;
        padding: 8px 10px;
        display: inline;
        height: 40px;
    }

    header .account .detail .detail-side a {
        font-size: 13px;
        color: #8799AC;
        text-decoration: none;
    }

    header .account .detail .detail-side .username {
        font-size: 18px;
        font-weight: 700;
        color: var(--mastergreen);
        line-height: 1;
    }

    header .account .links {
        display: flex;
        justify-content: flex-end;
        align-content: center;
    }

    header .account .links a {
        display: block;
        padding: 15px 15px 0 15px;
        font-size: 12px;
        color: #8799AC;
        text-decoration: none;
        border-left: 1px solid #1D2834;
    }

    header .account .links a.active,
    header .account .links a:hover {
        background-color: #1D2834;
    }

    header .account .links a i.ti {
        font-size: 26px;
        color: var(--mastergreen);
    }

    header .account .links a.logout,
    header .account .links a.logout i.ti {
        color: #FF2747;
    }

    header .login {
        height: 75px;
        padding-right: 20px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    header .login .btn {
        position: relative;
        font-size: 14px;
        text-decoration: none;
        color: #0B0F13;
        border-radius: 6px;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    header .login .btn::after {
        position: absolute;
        right: -2px;
        bottom: -2px;
        content: "";
        width: 13px;
        height: 13px;
        background-image: url(../img/btn-corner.png);
        background-position: right;
        background-repeat: no-repeat;
    }

    header .login .btn-login {
        background-color: var(--mastergreen);
    }

    header .login .btn-register {
        background-color: var(--masteryellow);
    }

    .mobile-menu {
        display: none;
    }

    .co-c {
        color: #33FF00;
        margin-top: 10px;
        display: inline-block;
    }

    aside {
        position: fixed;
        top: 75px;
        background: #0B0F13;
        border-right: 1px solid #1D2834;
        width: 94px;
        height: 100%;
    }

    aside .title {
        font-size: 13px;
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: center;
        color: var(--mastergreen);
    }

    aside .avatars .avatar {
        display: block;
        border-radius: 8px;
        border: 1px solid var(--mastergreen);
        width: 50px;
        height: 50px;
        margin: 0 auto 20px auto;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        filter: drop-shadow(0px 0px 20px rgba(51, 255, 0, 0.4));
    }

    aside .divider {
        width: 50px;
        margin: 30px auto 40px;
        border-top: 1px solid #1D2834;
        height: 1px
    }

    aside .gifts {
        margin-top: 30px
    }

    aside .gifts .gift {
        display: block;
        text-decoration: none;
        position: relative;
        text-align: center;
        margin-bottom: 30px
    }

    aside .gifts .gift:last-child {
        margin-bottom: 0
    }

    aside .gifts .gift-title {
        color: #7189A1;
        font-size: 13px;
        font-weight: 600;
        margin-top: 5px
    }

    aside .gifts .gift .bagde {
        position: absolute;
        top: -3px;
        right: 10px;
        text-align: center;
        background-color: var(--mastergreen);
        width: 23px;
        height: 23px;
        box-sizing: border-box;
        border-radius: 50%;
        font-size: 13px;
        padding-top: 2px;
        color: #0B0F13;
    }

    /* -- Custom Page Styles Begin -- */

    .page {
        box-sizing: border-box;
        position: relative;
        padding-top: 60px;
        margin-left: 155px;
        min-height: calc(100vh - 240px);
    }

    .page h1 {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
    }

    .home {
    }

    section .section-title {
        margin-bottom: 30px;
        color: #fff
    }

    .event-item.type-class-1 {
        background-color: #5EFFEC;
        border: 1px solid #5EFFEC;
    }

    .event-item.type-class-1 .subhead {
        background-color: #5EFFEC;
    }

    .event-item.type-class-1 .subhead .avatar {
        border: 1px solid #5EFFEC;
    }

    .event-item.type-class-1 .subhead .title {
        color: #5EFFEC;
    }

    .event-item.type-class-1 .subhead .date {
        background-color: #5EFFEC;
    }

    .event-item.type-class-2 {
        background-color: #7EFF5E;
        border: 1px solid #7EFF5E;
    }

    .event-item.type-class-2 .subhead {
        background-color: #7eff5e;
    }

    .event-item.type-class-2 .subhead .avatar {
        border: 1px solid #7EFF5E
    }

    .event-item.type-class-2 .subhead .title {
        color: #7EFF5E;
    }

    .event-item.type-class-2 .subhead .date {
        background-color: #7EFF5E;
    }

    .event-item.type-class-3 {
        background-color: #FFEF5A;
        border: 1px solid #FFEF5A;
    }

    .event-item.type-class-3 .subhead {
        background-color: #FFEF5A;
    }

    .event-item.type-class-3 .subhead .avatar {
        border: 1px solid #FFEF5A
    }

    .event-item.type-class-3 .subhead .title {
        color: #FFEF5A;
    }

    .event-item.type-class-3 .subhead .date {
        background-color: #FFEF5A;
    }

    .event-item.type-class-4 {
        background-color: #5EFFEC;
        border: 1px solid #5EFFEC;
    }

    .event-item.type-class-4 .subhead {
        background-color: #5EFFEC;
    }

    .event-item.type-class-4 .subhead .avatar {
        border: 1px solid #5EFFEC
    }

    .event-item.type-class-4 .subhead .title {
        color: #5EFFEC;
    }

    .event-item.type-class-4 .subhead .date {
        background-color: #5EFFEC;
    }

    .event-item {
        width: 320px;
        max-width: 100%;
        height: 470px;
        background-color: #7eff5e;
        border: 1px solid #7eff5e;
        border-radius: 20px;
    }

    .col-12.col-lg-3 .event-item {
        width: 100%;
    }

    .event-item .head {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 150px;
        border-radius: 20px 20px 0 0;
    }

    .event-item .subhead {
        position: relative;
        width: 100%;
        height: 60px;
        margin-top: -10px;
        background-color: #7EFF5E;
        border-top-right-radius: 10px;
    }

    .event-item .subhead .title {
        position: absolute;
        left: 0;
        background-color: #0B0F13;
        width: 100%;
        height: 50px;
        box-sizing: border-box;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        padding-top: 10px;
        padding-left: 100px
    }

    .event-item .subhead .avatar {
        position: absolute;
        left: 15px;
        top: -10px;
        border-radius: 8px;
        border: 1px solid #fff;
        width: 70px;
        height: 70px;
        margin: 0 auto 20px auto;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.4));
    }

    .event-item .subhead .date {
        position: absolute;
        right: 0;
        width: 100px;
        height: 50px;
        text-align: center;
        box-sizing: border-box;
        font-size: 12px;
        padding-top: 16px;
        padding-left: 18px;
        color: #0B0F13;
        background-color: #fff;
        background-image: url(/Public/web/img/competition-item-date-bg.png?r=1);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
    }

    .event-item .content {
        padding: 15px 20px 20px 20px;
    }

    .event-item .content .title {
        font-size: 22px;
        font-weight: 600;
        color: #000;
        margin-bottom: 10px;
    }

    .event-item .content .description {
        font-size: 14px;
        color: #000;
        margin-bottom: 10px;
        height: 85px;
    }

    .event-item .time {
        font-weight: 600;
        color: #000;
    }

    .competitions .custom-btn {
        border: 1px solid #000;
        border-radius: 8px;
        padding: 1px;
    }

    .competitions .custom-btn .btn {
        padding: 10px 20px;
        border-radius: 6px;
    }

    .carousel .owl-nav {
        position: relative;
        margin-top: 25px;
        text-align: left;
    }

    .carousel .owl-nav::after {
        content: "";
        position: absolute;
        top: 30px;
        left: 150px;
        right: 60px;
        border-top: 2px solid #3F4B56;
    }

    .carousel .owl-nav button {
        border: 1px solid #3F4B56 !important;
        color: #3F4B56 !important;;
        width: 50px;
        height: 50px;
        border-radius: 50% !important;
        font-size: 20px
    }

    .carousel .owl-dots {
        margin-top: 30px !important;
    }

    .carousel .owl-dots .owl-dot span {
        background-color: #fff;
    }

    .carousel .owl-dots .owl-dot.active span {
        background-color: var(--mastergreen);
    }

    .owl-nav button:hover {
        background: transparent !important;
        border-color: #7189A1 !important;;
        color: #7189A1 !important;;
    }

    .home .publishers .carousel .item {
        width: 192px;
        background-color: #fff;
        border: 1px solid #fff;
        border-radius: 20px;
    }

    .home .publishers .carousel .item .head {
        background-size: cover;
        cursor: pointer;
        background-repeat: no-repeat;
        background-position: top;
        height: 190px;
        border-radius: 20px 20px 0 0;
    }

    .home .publishers .carousel .item .subhead {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: -10px;
        background-color: #fff;
        border-radius: 0 10px 20px 20px;
    }

    .home .publishers .carousel .item.online .subhead {
        height: auto;
    }

    .pub-tg-button {
        background: #00B5DA;
        color: #fff;
        margin-left: 5%;
        width: 90%;
        display: inline-flex;
        margin-bottom: 5px;
        text-decoration: none;
        padding: 10px 5px;
        border-radius: 5px;
    }

    .pub-tg-button img {
        width: 20px !important;
        height: auto !important;
    }

    .pub-tg-button span {
        margin-left: 5px;
        line-height: 1;
    }

    .pub-tg-button-2 {
        text-decoration: none;
        color: #000000;
        margin-left: 5%;
        display: inline-block;
        font-size: 12pt;
    }

    .home .publishers .carousel .item .master-title {
        position: absolute;
        top: -25px;
        left: 0;
        padding: 10px 15px 0 15px;
        background-color: #fff;
        border-radius: 10px 10px 0 0;
        color: #0B0F13;
        font-size: 15px;
        font-weight: 600;
    }

    .home .publishers .carousel .item .title {
        color: #0B0F13;
        font-size: 26px;
        font-weight: 600;
        padding-top: 20px;
        padding-left: 20px;
    }

    .home .publishers .carousel .item .gotopage {
        text-align: right;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .home .publishers .carousel .item .gotopage a {
        text-decoration: none;
        color: #0B0F13;
        font-size: 13px;
        font-weight: 600;
    }

    .page .competition {
        position: relative;
        margin-right: 60px;
        border-radius: 20px;
        padding: 50px;
        background-color: #1E2832;
    }

    .competition .leftup_corner {
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px 20px;
        font-size: 15px;
        color: #0B0F13;
        border-radius: 20px 0 20px 0;
    }

    .competition .leftup_corner.active {
        background-color: var(--mastergreen);
    }

    .competition .leftup_corner.wait {
        background-color: #fff3cd;
    }

    .competition .leftup_corner.complete {
        background-color: #d63939;
        color: #fff;
    }

    .competition .competition-image {
        border-radius: 12px;
        border: 8px solid #2C3B49
    }

    .competition .competition-image img {
        height: 150px;
        border-radius: 6px;
    }

    .competition-title .date {
        font-size: 15px;
        color: #708DAA
    }

    .competition-title .title {
        font-size: 34px;
        font-weight: 700;
        color: #fff;
        margin: 15px 0 5px 0;
    }

    .competition-title .attenders {
        font-size: 24px;
        font-weight: 700;
        color: var(--mastergreen);
    }

    .competition-description-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .competition-description {
        font-size: 15px;
        color: #8EA9C3
    }

    .competition .btn-join-competition {
        font-size: 20px;
        font-weight: 600;
    }

    .competition .btn-join-competition.wait {
        background-color: #FFEF5A;
        border-color: #FFEF5A;
        color: #0B0F13 !important;
    }

    .competition .btn-join-competition.success {
        background-color: var(--mastergreen);
        border-color: var(--mastergreen);
        color: #0B0F13 !important;
    }

    .competition .competition-gifts .gift {
        border-radius: 10px;
        background-color: #374A5C;
        padding: 15px 25px;
        margin-top: 15px;
    }

    .competition .competition-gifts .gift .prize {
        font-size: 26px;
        font-weight: 700;
        color: var(--mastergreen);
    }

    .competition .winners .card {
        border-color: #374A5C;
        border-radius: 8px;
    }

    .competition .winners .card .card-header {
        padding: 15px;
        background-color: #374A5C;
        color: #fff;
    }

    .competition .winners .card .table {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        overflow: hidden;
    }

    .competition-gifts .table tr,
    .competition .winners .card .table tr {
        border-bottom: 1px solid #374A5C;
    }

    .competition-gifts .table tr:last-child,
    .competition .winners .card .table tr:last-child {
        border-bottom: 0;
    }

    .competition-gifts .table td,
    .competition .winners .card .table td {
        background-color: #283541;
        color: #fff;
        padding: 15px;
        border-bottom: 0;
    }

    .competition .winners .card .table td a.btn {
        background-color: #314252;
        border-color: #314252;
        box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        font-size: 12px
    }


    .page .account {
    }

    .page .account .custom-control {
        padding: 20px;
    }

    .page .account .alert {
        border-radius: 4px;
        font-size: 13px;
        padding: 10px 15px;
        border: none;
    }

    .page .account .sites {
        margin-top: 20px;
        display: flex;
        justify-content: flex-start;
        align-content: center;
    }

    .page .account .site {
        border: 6px solid #999;
        background-color: #fff;
        padding: 20px 25px;
        border-radius: 10px;
        margin-right: 15px;
    }

    .page .account .site.active {
        border: 6px solid var(--mastergreen);
        background-color: #fff;
        padding: 20px 25px;
    }

    .page .account .site:not(.active) img {
        filter: grayscale(100%);
    }

    .page .events {
    }

    .page .publishers {
    }

    .page .publishers .item {
        width: 250px;
        background-color: #fff;
        border: 1px solid #fff;
        border-radius: 20px;
    }

    .page .publishers .item .head {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        /*height: 190px;*/
        aspect-ratio: 1/1;
        border-radius: 20px 20px 0 0;
    }

    .page .publishers .item .subhead {
        position: relative;
        width: 100%;
        height: 100px;
        margin-top: -10px;
        background-color: #fff;
        border-radius: 0 10px 20px 20px;
    }

    .page .publishers .item .master-title {
        position: absolute;
        top: -25px;
        left: 0;
        padding: 10px 15px 0 15px;
        background-color: #fff;
        border-radius: 10px 10px 0 0;
        color: #0B0F13;
        font-size: 15px;
        font-weight: 600;
    }

    .page .publishers .item .title {
        color: #0B0F13;
        font-size: 26px;
        font-weight: 600;
        padding-top: 20px;
        padding-left: 20px;
    }

    .page .publishers .item .gotopage {
        text-align: right;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .page .publishers .item .gotopage a {
        text-decoration: none;
        color: #0B0F13;
        font-size: 13px;
        font-weight: 600;
    }

    .page .publisher {
    }

    .page .publisher .social-medias {
        border-bottom: 1px dashed #1d2834;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .page .publisher .social-medias a:last-child {
        margin-right: 0 !important;
    }

    .page .publisher .social-medias .social-twitch {
        color: mediumpurple !important;
    }

    .page .publisher .social-medias .social-kick {
        color: var(--mastergreen) !important;
    }

    .page .publisher .social-medias .social-youtube {
        color: red !important;
    }

    .page .publisher .social-medias .social-telegram {
        color: #24A1DE !important;
    }

    .page .publisher .social-medias .social-instagram {
        color: #bc2a8d !important;
    }

    .page .publisher .social-medias .social-twitter {
        color: #1DA1F2 !important;
    }

    .page .publisher .live {
    }

    .page .publisher .live h3 {
        font-size: 18px
    }

    .page .publisher .live .desc {
        font-size: 13px
    }

    .page .publisher .live .nav-link {
        color: var(--mastergreen)
    }

    .page .publisher .live .nav-link.active {
        background-color: var(--mastergreen);
        color: #000;
    }

    .page .publisher .live .tab-content {
        border: 1px solid #1d2834;
        border-radius: 5px;
        padding: 15px;
    }

    .page .publisher .live .tab-content .tab-pane iframe {
        width: 100%;
        height: 350px;
        margin: 0
    }

    .page .info .title {
    }

    .page .info .content {
        color: #fff;
    }


    .page .bonus-hunt {
    }

    .page .bonus-hunt .competition {
        padding: 35px;
    }

    .page .bonus-hunt .days-select .days a {
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        width: 180px;
        padding: 15px 20px;
        background-color: #1E2832;
        border-radius: 8px;
        color: #708DAA;
        text-decoration: none;
        font-size: 14px;
        margin-right: 10px;
    }

    .page .bonus-hunt .days-select .days a.active {
        background-color: var(--mastergreen);
        color: #1E2832;
    }

    .page .bonus-hunt .days-select .days a.active span.hash {
        color: #1E2832;
    }

    .page .bonus-hunt .days-select .days a span.hash {
        font-size: 20px;
        font-weight: 800;
        color: #fff;
    }

    .page .bonus-hunt .days-select select {
        width: 180px;
        padding: 15px 20px;
        border-color: #1E2832;
        background-color: #1E2832;
        color: #708DAA;
        border-radius: 8px;
        outline: none;
        box-shadow: none !important;
    }

    .page .bonus-hunt .divider {
        border-left: 1px solid #374A5C;
        width: 20px;
        padding: 0;
    }

    .page .bonus-hunt .bonus-info .active-passive-btn {
        color: #708DAA;
        font-size: 14px;
        font-weight: 700;
    }

    .page .bonus-hunt .bonus-info .btn-success {
        border-color: var(--mastergreen);
        background-color: var(--mastergreen);
        font-weight: 700;
        border-radius: 4px;
        padding: 10px 20px;
        color: #1d2834;
        margin-right: 15px;
    }

    .page .bonus-hunt .bonus-info .btn-danger {
        border-color: #FD0012;
        background-color: #FD0012;
        font-weight: 700;
        border-radius: 4px;
        padding: 10px 20px;
        color: #fff;
        margin-right: 15px;
    }

    .page .bonus-hunt .bonus-info .btn-warning {
        border-color: #F3E600;
        background-color: #F3E600;
        font-weight: 700;
        border-radius: 4px;
        padding: 10px 15px;
    }

    .page .bonus-hunt .bonus-info h1 {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page .bonus-hunt .bonus-info .total-spend {
        color: #708DAA;
    }

    .page .bonus-hunt .bonus-info .total-spend b {
        font-size: 20px;
        color: #fff;
        margin-left: 10px;
    }

    .page .bonus-hunt .bonus-games-table {
        border: 1px solid #3C4E60;
        border-radius: 10px;
        overflow: hidden;
    }

    .page .bonus-hunt .bonus-games-table table th {
        background-color: #3C4E60;
        padding: 20px 10px;
        font-size: 13px;
        color: #B2CEEA;
        vertical-align: middle;
    }

    .page .bonus-hunt .bonus-games-table table td {
        padding: 15px 10px;
        font-size: 13px;
        background-color: #1E2832;
        vertical-align: middle;
    }

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:visited,
    .btn-primary {
        background: var(--mastergreen);
        border-color: var(--mastergreen);
        color: #1E2832;

    }

    .page .bonus-hunt .bonus-games-table .image {
        min-width: 40px;
        min-height: 40px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 5px;
        margin-right: 10px;
        transform: scale(1.6);
    }

    .page .bonus-hunt .bonus-games-table table tr:nth-child(even) td {
        background-color: #273542;
    }

    .page .bonus-hunt .bonus-games-table table tr:last-child td {
        border-bottom: 0;
    }

    .page .bonus-hunt .title {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }

    .page .bonus-hunt .bet-form .bet-wrapper {
        position: relative;
    }

    .page .bonus-hunt .bet-form .bet {
        width: 100%;
        padding: 15px 20px 15px 45px;
        border: 1px solid #374A5C;
        background-color: #25313D;
        color: #fff;
        border-radius: 8px;
        outline: none;
        box-shadow: none !important;
        margin-top: 10px;
        font-size: 24px;
    }

    .page .bonus-hunt .bet-form .bet::-webkit-outer-spin-button,
    .page .bonus-hunt .bet-form .bet::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .page .bonus-hunt .bet-form .bet[type=number] {
        -moz-appearance: textfield;
    }

    .page .bonus-hunt .bet-form .bet-wrapper .try {
        position: absolute;
        font-size: 24px;
        color: #fff;
        top: 26px;
        left: 22px
    }

    .page .bonus-hunt .bet-form .bet-wrapper .btn-bet {
        position: absolute;
        top: 24px;
        right: 10px;
        border-color: var(--mastergreen);
        background-color: var(--mastergreen);
        font-size: 14px;
        font-weight: 700;
        border-radius: 4px;
        padding: 10px 15px;
        color: #1d2834;
    }

    .page .bonus-hunt .bet-form .btn-join {
        margin-top: 10px;
        width: 100%;
        border-color: var(--mastergreen);
        background-color: var(--mastergreen);
        font-weight: 700;
        border-radius: 6px;
        padding: 15px 0;
        color: #1d2834;
    }

    .page .bonus-hunt .bet-form .btn-join-wait {
        margin-top: 10px;
        width: 100%;
        border-color: #f59f00;
        background-color: #f59f00;
        font-weight: 700;
        border-radius: 6px;
        padding: 15px 0;
        color: #fff;
    }

    .page .bonus-hunt .bet-form .btn-join-warning {
        margin-top: 10px;
        width: 100%;
        border-color: #d63939;
        background-color: #d63939;
        font-weight: 700;
        border-radius: 6px;
        padding: 15px 0;
        color: #fff;
    }

    .page .bonus-hunt .prizes .prizes-items .item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #374A5C;
        border-radius: 8px;
        padding: 15px 20px;
        color: #fff;
        margin-bottom: 5px;
    }

    .page .bonus-hunt .prizes .prizes-items .item span.prize {
        color: var(--mastergreen);
        font-size: 22px;
        font-weight: 600;
    }

    .page .bonus-hunt .stats .item {
        color: #A6C4E2;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 300;
    }

    .connect-account-alert {
        font-size: 12pt;
        color: #fff;
        text-align: center;
        margin-top: 5px;
        display: inline-block;
        width: 100%;
    }

    .page .bonus-hunt .stats .item b {
        color: #d4e3f1;
        font-size: 15px;
        font-weight: 700;
    }

    .sites-status {
        display: inline-block;
        width: 100%;
        background: var(--mastergreen);
        color: #0B0F13;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        text-align: center;
        font-size: 12pt;
    }

    .sites-status-active-input {
        border-bottom: 0 !important;
        border-radius: 10px !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        text-align: center;
    }

    .custom-control ~ .input-group-append {
        min-width: 20%;
    }

    .new-side {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100vh - 76px);
        width: 100%;
        align-items: center;
    }

    .custom-control ~ .input-group-append .btn {
        margin-top: 0 !important;
        height: 100%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .cark-banner {
        background-color: rgba(0, 0, 0, 0) !important;
        background-image: url("../img/cark-bg.png?v=2");
        border: none !important;
        background-position: top;
        background-size: cover;
    }

    .cark-banner a {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 20px 0;
    }

    .cark-banner.cb-2 a {
        display: inline-block;
    }

    .cark-banner.cb-2 a .full-body {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        width: 80%;
        height: 100%;
        padding: 0 20px;
    }

    .cark-banner .cark-head {
        display: inline-flex;
        align-items: start;
        justify-content: space-between;
    }

    .cark-banner .cark-head .lg {
        max-width: 75%;
    }

    .cark-banner .cark-head .tx {
        max-width: 25%;
    }

    .cark-banner .cark-bottom {
    }

    .cark-banner .cark-bottom img {
        max-width: 90%;
        margin: auto;
    }

    .cevrim-banner a {
        text-decoration: none !important;
    }

    .cevrim-banner .title {
        text-align: center;
        font-size: 26pt !important;
        color: #4DD6FF !important;
        text-shadow: 0px 0px 7px #4DD6FF;
        font-weight: bold !important;
        margin-bottom: 0 !important;
    }

    .cevrim-banner .title.t2 {
        color: #4DFF7A !important;
        text-shadow: 0px 0px 7px #4DFF7A;
        /*margin-top: 10px;*/
        display: inline-block;
        width: 100%;
        border-top: 1px solid #4F6276;
    }

    .cevrim-banner .description {
        text-align: center;
        font-size: 15pt !important;
        color: #fff !important;
        height: auto !important;
    }

    .cevrim-banner .description span {
        margin-right: 5px;
        background: #4DD6FF;
        color: #1E2832;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 5px;
    }

    .cevrim-banner .description.d2 {
    }

    .cevrim-banner .description.d2 span {
        background: #4DFF7A !important;
    }

    .cevrim-banner .pp-btn {
        display: inline-flex;
        width: 100%;
        background: #FFE100;
        color: #1E2832;
        justify-content: space-between;
        align-items: center;
        font-size: 12pt;
        font-weight: bold;
        padding: 10px 10px;
        border-radius: 5px;
        margin-top: 10px;
    }

    .cevrim-banner .content {
        border-radius: 10px;
    }

    .cevrim-banner .pp-btn span {
    }

    .cevrim-banner .pp-btn i {
    }

    .
    .cark-banner .full-body {
        display: inline-flex;
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        height: 100%;
        padding: 35px 30px;
    }

    .cark-banner .full-body img {
        display: block;
        float: left;
        max-width: 100%;
        width: initial;
    }

    .iphone-menu {
        overflow: hidden;
        background: url(/Public/web/img/iphonebanner.png);
        height: 76px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;

    }

    .iphone-menu img {
        max-width: 100%;
        opacity: 0;
        max-height: 80%;
    }

    .pagination {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .pagination li {
        display: inline-block;
    }

    .pagination li a {
        background: none;
        border: 0;
        color: #33FF00;
    }

    .pagination li a i {
    }

    .pagination li:hover a,
    .pagination li.active a {
        background: #33FF00;
        color: #0B0F13;
    }

    .pagination li.active a i {
    }

    .drawing-list-item {
        display: inline-flex;
        width: 100%;
        background: #1e2832;
        color: #fff;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-radius: 10px;
    }

    .drawing-list-item .username {
        display: inline-block;
        font-weight: bold;
        font-size: 15pt;
    }

    .drawing-list-item .tickets {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .drawing-list-item .tickets b {
        color: var(--mastergreen);
        font-weight: bold;
        font-size: 20pt;
        line-height: 1;
    }

    .drawing-list-item .tickets span {
        font-size: 12pt;
        color: #8EA9C3;
        line-height: 1;
    }

    .drawing-list-title {
        display: inline-block;
        width: 100%;
        text-align: center;
        color: #8EA9C3;
        font-size: 20pt;
    }

    @media screen and (max-width: 600px) {
        .iphone-menu {
            display: none;
        }

        .page .bonus-hunt .select-day {
            width: 100%;
        }

        .mobile-info-btns span {
            color: #fff;
        }

        .mobile-info-btns .btn {
            width: 100%;
        }

        .mobile-info-btns .btn-warning {
            margin-top: 12px;
            margin-bottom: 12px;
        }

        .info-title-text {
            margin-top: 25px;
            text-align: center;
        }

        .info-title-text h1 {
            font-size: 20px;
        }

        .info-title-text .total-spend {
            color: #fff;
        }
    }


    footer {
        position: relative;
        z-index: 0;
        margin-top: 60px;
        margin-bottom: 60px;
        padding-right: 60px;
        padding-left: 160px;
        display: inline-block;
        width: 100%;
    }

    footer .menu {
        margin-top: 10px;
    }

    footer .logo img {
        height: 50px;
    }

    footer .copyright {
        color: #fff;
        font-size: 14px;
    }

    footer .sponsors img {
        filter: brightness(0) invert(1);
    }

    footer .sponsors .divider {
        margin: 0 30px;
        border-left: 1px solid #394D60;
        width: 1px;
        height: 50px
    }

    footer .menu a {
        color: #fff;
        font-size: 13px;
        text-decoration: none;
        margin-left: 20px;
    }

    .modal .sponsors .divider {
        margin: 0 15px;
        border-left: 1px solid #394D60;
        width: 1px;
        height: 30px
    }


    .tick {
        font-size: 1rem;
        white-space: nowrap;
        font-family: arial, sans-serif;
    }

    .tick-flip, .tick-text-inline {
        font-size: 2.5em;
    }

    .tick-label {
        margin-top: 1em;
        font-size: 1em;
    }

    .tick-char {
        width: 1.5em;
    }

    .tick-text-inline {
        display: inline-block;
        text-align: center;
        min-width: 1em;
    }

    .tick-text-inline + .tick-text-inline {
        margin-left: -.325em;
    }

    .tick-group {
        margin: 0 .5em;
        text-align: center;
    }

    .tick-text-inline {
        color: #595d63 !important;
    }

    .tick-label {
        color: #595d63 !important;
    }

    .tick-flip-panel {
        color: #fff !important;
    }

    .tick-flip {
        font-family: monospace !important;
    }

    .tick-flip-panel-text-wrapper {
        line-height: 1.45 !important;
    }

    .tick-flip-panel {
        background-color: #3c3e3c !important;
    }

    .tick-flip {
        border-radius: 0.12em !important;
    }

    .join_success {
        display: inline-block;
        width: 100%;
        text-align: center;
        background-color: var(--mastergreen);
        color: #1E2832;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .btn-tickets {
        width: 100%;
        color: #fff;
        text-decoration: none;
        text-align: center;
        margin-top: 10px;
    }

    .title-tickets {
        color: #fff;
        font-weight: bold;
        font-size: 20pt;
        width: 100%;
        display: inline-block;
    }

    .subtitle-tickets {
        color: #fff;
        font-weight: bold;
        font-size: 14pt;
        width: 100%;
        display: inline-block;
    }

    .tickets-back-btn {
        color: #fff;
        float: right;
        text-decoration: none;
    }

    .btn-youtube,
    .btn-youtube:hover,
    .btn-youtube:focus,
    .btn-youtube:visited {
        background-color: #ff0033;
        border-color: #ff0033;
        color: #fff;
    }

    #ytConnectModal {
    }

    #ytConnectModal .modal-dialog {
    }

    #ytConnectModal .modal-dialog .modal-content {
        background-color: #0B0F13;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-header {
        border-bottom: 0;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-footer {
        border-top: 0;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-header .modal-title {
        color: #fff;
        width: 100%;
        text-align: center;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-header .btn-close {
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body {
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body .subtitle {
        display: inline-block;
        width: 100%;
        text-align: center;
        color: #fff;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body .subtitle b {
        color: #ff0033;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body .code-view {
        display: inline-flex;
        width: 100%;
        align-items: center;
        background-color: #374553;
        justify-content: space-between;
        border-radius: 10px;
        padding: 10px;
        margin: 20px 0;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body .code-view .code {
        display: inline-block;
        color: #fff;
        font-weight: bold;
        font-size: 15pt;
        padding: 10px;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body .code-view .copy {
        display: inline-block;
        padding: 10px 20px;
        border: 0;
        background-color: #ff0033;
        color: #fff;
        border-radius: 10px;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body .note {
        display: inline-block;
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 9pt;
    }

    #ytConnectModal .modal-dialog .modal-content .modal-body .btn-yt-live-stream {
        display: inline-block;
        width: 100%;
        margin-top: 10px;
        background-color: #ff0033;
        color: #fff;
        border: 0;
        outline: none;
        border-radius: 10px;
        padding: 10px 0;
        text-align: center;
        text-decoration: none;
    }

    .ticket-item {
        display: inline-block;
        width: 100%;
        border-radius: 10px;
        padding: 10px 0;
        text-align: center;
        color: #fff;
        font-weight: bold;
        background-color: #374A5C;
        margin-bottom: 10px;
    }

    #joinersModal {
    }

    #joinersModal .modal-content {
        background-color: #374553;
    }

    #joinersModal .modal-content td {
        background: none;
        color: #fff;
    }

    [data-bs-target="#joinersModal"] {
        cursor: pointer;
    }

    .joiners > div:nth-child(odd)
        /* Modals */
    #modal-lostpassword .modal-sm,
    #modal-register .modal-sm,
    #modal-login .modal-sm,
    #modal-tgconnect .modal-sm {
        max-width: 320px
    }

    #modal-register .modal-sm {
        max-width: 400px
    }

    #modal-register .alert {
        position: relative;
        color: #000;
        font-size: 13px;
        font-weight: 200;
        padding: 5px;
        padding-left: 40px;
    }

    #modal-register .alert i {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 30px;
        color: var(--mastergreen);
    }

    #modal-register .error .alert i {
        color: #000;
    }

    #modal-register .alert b {
        font-weight: 300;
        color: var(--mastergreen);
    }

    #modal-register .modal-body,
    #modal-lostpassword .modal-body,
    #modal-login .modal-body,
    #modal-tgconnect .modal-body {
        box-shadow: 0px 0px 50px #000;
        border-radius: 8px;
    }

    #modal-register .modal-content,
    #modal-lostpassword .modal-content,
    #modal-tgconnect .modal-content,
    #modal-login .modal-content {
        background-color: #131A21;
        border-radius: 8px;
    }

    #modal-register .modal-head,
    #modal-lostpassword .modal-head,
    #modal-tgconnect .modal-head,
    #modal-login .modal-head {
        padding-bottom: 20px;
    }

    #modal-register .modal-content h6,
    #modal-lostpassword .modal-content h6,
    #modal-login .modal-content h6,
    #modal-tgconnect .modal-content h6 {
        color: #fff;
        text-align: center;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .modal-content .sponsors img {
        filter: brightness(0) invert(1)
    }

    .account-v2 {
        display: inline-block;
        float: left;
        width: 100%;
        margin-bottom: 20px;
    }

    .account-v2 .menu-page {
        display: block;
        width: 100%;
        margin-bottom: 50px;
    }

    .account-v2 .menu-page ul {
        display: inline-block;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        overflow-x: auto;
    }

    .account-v2 .menu-page ul li {
        display: inline-block;
        margin-right: 10px;
        border: 1px solid #8799AC;
        border-radius: 10px;
    }

    .account-v2 .menu-page ul li a {
        display: inline-block;
        float: left;
        font-weight: 500;
        color: #8799AC;
        text-decoration: none;
        font-size: 18pt;
        padding: 5px 10px;
    }

    .account-v2 .menu-page ul li.active a {
        color: #33FF00;
    }

    .account-v2 .menu-page ul li.active {
        border-color: #33FF00;
    }

    .custom-checkbox {
        display: inline-flex;
        float: left;
        align-content: center;
        justify-content: center;
    }

    .custom-checkbox input {
        display: none;
    }

    .custom-checkbox label {
        color: #C7DDF4;
        font-size: 12pt;
        display: inline-flex;
        align-items: center;
    }

    .custom-checkbox label.box {
        display: inline-block;
        width: 50px;
        height: 25px;
        background: #354758;
        margin-right: 10px;
        border-radius: 10px;
    }

    .custom-checkbox label.box:before {
        content: " ";
        display: inline-block;
        float: left;
        transition: all 1s;
        width: 25px;
        height: 25px;
        border-radius: 10px;
        background: #263545;
    }

    .custom-checkbox input:checked ~ label.box:before {
        background: #33FF00;
        margin-left: 25px;
    }

    .sponsor-setting-item {
        display: inline-block;
        width: 100%;
        float: left;
    }

    .sponsor-setting-item .sponsor-image {
        display: inline-block;
        float: left;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        background: #2c343d;
        padding: 20px 0;
        border: 1px solid #2c343d;
    }

    .sponsor-setting-item .sponsor-image.active {
        border-color: #33FF00;
    }

    .sponsor-setting-item .sponsor-image img {
        display: inline-block;
        max-width: 100%;
        height: 50px;
    }

    .sponsor-setting-item .sponsor-name {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        color: #fff;
        font-size: 12pt;
    }

    .sponsor-setting-item .sponsor-name.active {
        color: #33FF00;
    }

    .card-sponsor {
        background: #1E2832;
        margin-bottom: 10px;
    }

    .card-sponsor .logo {
        display: inline-flex;
        width: 100%;
        text-align: center;
        height: 92px;
        align-items: center;
        justify-content: center;
    }

    .card-sponsor .logo img {
        display: inline-block;
        max-height: 92px;
    }

    .card-sponsor.cs-card-1 .logo img {
        height: 59px;
    }

    .card-sponsor .buttons {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
    }

    .card-sponsor .buttons .sponsor-button {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        color: #1E2832;
        text-align: center;
        font-size: 16px;
        padding: 10px 0;
        background: #fff;
        border-radius: 5px;
        background: rgba(255, 197, 7, 1);
        background: linear-gradient(-104deg, rgba(255, 233, 164, 1) 0%, rgba(255, 197, 7, 1) 50%, rgba(255, 233, 164, 1) 100%);
        font-weight: bold;
    }

    .card-sponsor.cs-card-2 .buttons .sponsor-button {
        background: rgb(194, 255, 178);
        background: linear-gradient(-104deg, rgba(194, 255, 178, 1) 0%, rgba(51, 255, 0, 1) 50%, rgba(194, 255, 178, 1) 100%);
    }

    .card-sponsor .buttons .sponsor-button:first-child {
        margin-right: 2%;
    }

    .card-sponsor .content {
        display: inline-block;
        width: 100%;
        margin-top: 10px;
    }

    .card-sponsor .content img {
        display: inline-block;
        width: 100%;
    }

    .btn-answer-save {
        display: inline-block;
        width: 100%;
        background: var(--mastergreen);
        color: #0b0f13;
        font-size: 14pt;
        font-weight: bold;
    }

    .btn-answer-save:hover,
    .btn-answer-save:active {
        background: #229800;
    }

    .custom-answer-radio {
        display: inline-block;
        background-color: var(--mastergreen);
        padding: 3px;
        border-radius: 50px;
        float: left;
        position: relative;
    }

    .custom-answer-radio.disabled {
        background-color: #ccc;
    }

    .custom-answer-radio input {
        opacity: 0 !important;
        position: absolute;
        top: 0;
        left: 0;
    }

    .custom-answer-radio span {
        display: inline-block;
        width: 20px;
        aspect-ratio: 1/1;
        border-radius: 30px;
        background-color: #0b0f13;
        float: left;
        padding: 2.5px;
    }

    .question label {
        cursor: pointer;
    }

    .custom-answer-radio span:before {
        content: ' ';
        display: inline-block;
        width: 15px;
        aspect-ratio: 1/1;
        float: left;
        background-color: #0b0f13;
        border-radius: 20px;
    }

    .custom-answer-radio input:checked ~ span {
    }

    .custom-answer-radio input:disabled ~ span:before {

    }

    .custom-answer-radio input:checked ~ span:before {
        background-color: var(--mastergreen);
    }

    .custom-answer-radio ~ label {
        display: inline-block;
        float: left;
        margin-left: 10px;
        margin-top: 3px;
    }

    .completed-question {
    }

    .completed-question.correct {
        color: var(--mastergreen);
    }

    .completed-question.wrong {
        color: #f00;
    }

    .count-badge-promotion {
        position: absolute;
        background: #33FF00;
        color: #0B0F13;
        width: 20px;
        aspect-ratio: 1 / 1;
        border-radius: 50px;
        line-height: 1;
        padding: 5px;
        font-weight: bold;
        top: 10%;
        right: 25%;
    }


.store-whell{
    display: inline-block;
    width: 100%;

    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.store-whell .store-whell-floor-2{
    display: inline-block;
    width: 100%;
    background: url("../img/store-whell-bg.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.store-whell .store-whell-floor-2 .whell-container{
    display: inline-block;
    position: relative;
    width: 100%;
}
.store-whell .store-whell-floor-2 .whell-container .whell{
    display: inline-block;
    width: 100%;
}
.store-whell .store-whell-floor-2 .whell-container .whell img{
    display: inline-block;
    width:100%;
}
.store-whell .store-whell-floor-2 .whell-container .slices-con{
    display: inline-block;
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
}
.store-whell .store-whell-floor-2 .whell-container .slices{
    display: inline-flex;
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.store-whell .store-whell-floor-2 .whell-container .slices .slice{
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
    font-size: 19pt;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    flex-direction: column;
    transform-origin: center center;
    height: 100%;
}
.store-whell .store-whell-floor-2 .whell-container .slices .slice span{
    font-weight: 400;
    font-size: 11pt;
}
.store-whell .store-whell-floor-2 .whell-container .pin{
    display: inline-block;
    position: absolute;
    top: -8%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9;
    width: 12%;
    margin: auto;
}
.swetborder{
    border: 0 !important;
}
.swetborder svg{
    color: #01FFBF;
}
.store-whell .store-whell-floor-2 .whell-container .pin img{
    display: inline-block;
    max-width: 100%;
}
.store-whell .store-whell-floor-2 .whell-container .slices .slice b.old{
    font-size: 16pt;
    text-decoration: line-through;
    opacity: 0.8;
}
.store-whell .store-whell-floor-2 .whell-container .slices .slice.color1{color: #98B1CE}
.store-whell .store-whell-floor-2 .whell-container .slices .slice.color2{color: #00E5FF}
.store-whell .store-whell-floor-2 .whell-container .slices .slice.color3{color: #D9EA1F}
.store-whell .store-whell-floor-2 .whell-container .slices .slice.color4{color: #FF0101}
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(1) { transform: rotate(10deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(2) { transform: rotate(34deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(3) { transform: rotate(56deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(4) { transform: rotate(78deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(5) { transform: rotate(101deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(6) { transform: rotate(123deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(7) { transform: rotate(146deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(8) { transform: rotate(168deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(9) { transform: rotate(190deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(10) { transform: rotate(213deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(11) { transform: rotate(235deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(12) { transform: rotate(258deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(13) { transform: rotate(280deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(14) { transform: rotate(303deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(15) { transform: rotate(325deg); }
.store-whell .store-whell-floor-2 .whell-container .slices .slice:nth-child(16) { transform: rotate(348deg); }

.store-whell .store-whell-floor-2 [turning="1"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="1"].whell-container .whell{animation: store-whell-anim1 5s cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;transform: rotate(-730deg);}
.store-whell .store-whell-floor-2 [turning="2"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="2"].whell-container .whell{animation: store-whell-anim2 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-754deg)}
.store-whell .store-whell-floor-2 [turning="3"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="3"].whell-container .whell{animation: store-whell-anim3 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-776deg)}
.store-whell .store-whell-floor-2 [turning="4"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="4"].whell-container .whell{animation: store-whell-anim4 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-798deg)}
.store-whell .store-whell-floor-2 [turning="5"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="5"].whell-container .whell{animation: store-whell-anim5 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-821deg)}
.store-whell .store-whell-floor-2 [turning="6"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="6"].whell-container .whell{animation: store-whell-anim6 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-843deg)}
.store-whell .store-whell-floor-2 [turning="7"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="7"].whell-container .whell{animation: store-whell-anim7 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-866deg)}
.store-whell .store-whell-floor-2 [turning="8"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="8"].whell-container .whell{animation: store-whell-anim8 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-888deg)}
.store-whell .store-whell-floor-2 [turning="9"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="9"].whell-container .whell{animation: store-whell-anim9 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-910deg)}
.store-whell .store-whell-floor-2 [turning="10"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="10"].whell-container .whell{animation: store-whell-anim10 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-933deg)}
.store-whell .store-whell-floor-2 [turning="11"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="11"].whell-container .whell{animation: store-whell-anim11 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-955deg)}
.store-whell .store-whell-floor-2 [turning="12"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="12"].whell-container .whell{animation: store-whell-anim12 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-978deg)}
.store-whell .store-whell-floor-2 [turning="13"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="13"].whell-container .whell{animation: store-whell-anim13 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-1000deg)}
.store-whell .store-whell-floor-2 [turning="14"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="14"].whell-container .whell{animation: store-whell-anim14 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-1023deg)}
.store-whell .store-whell-floor-2 [turning="15"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="15"].whell-container .whell{animation: store-whell-anim15 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-1045deg)}
.store-whell .store-whell-floor-2 [turning="16"].whell-container .slices,.store-whell .store-whell-floor-2 [turning="16"].whell-container .whell{animation: store-whell-anim16 5s  cubic-bezier(0.42, 0, 0, 1) 0s 1 normal;;transform: rotate(-1068deg)}

@keyframes store-whell-anim1{0%{transform: rotate(0deg)}100%{transform: rotate(-730deg)}}
@keyframes store-whell-anim2{0%{transform:rotate(0deg)}100%{transform: rotate(-754deg)}}
@keyframes store-whell-anim3{0%{transform:rotate(0deg)}100%{transform: rotate(-776deg)}}
@keyframes store-whell-anim4{0%{transform:rotate(0deg)}100%{transform: rotate(-798deg)}}
@keyframes store-whell-anim5{0%{transform:rotate(0deg)}100%{transform: rotate(-821deg)}}
@keyframes store-whell-anim6{0%{transform:rotate(0deg)}100%{transform: rotate(-843deg)}}
@keyframes store-whell-anim7{0%{transform:rotate(0deg)}100%{transform: rotate(-866deg)}}
@keyframes store-whell-anim8{0%{transform:rotate(0deg)}100%{transform: rotate(-888deg)}}
@keyframes store-whell-anim9{0%{transform:rotate(0deg)}100%{transform: rotate(-910deg)}}
@keyframes store-whell-anim10{0%{transform:rotate(0deg)}100%{transform: rotate(-933deg)}}
@keyframes store-whell-anim11{0%{transform:rotate(0deg)}100%{transform: rotate(-955deg)}}
@keyframes store-whell-anim12{0%{transform:rotate(0deg)}100%{transform: rotate(-978deg)}}
@keyframes store-whell-anim13{0%{transform:rotate(0deg)}100%{transform: rotate(-1000deg)}}
@keyframes store-whell-anim14{0%{transform:rotate(0deg)}100%{transform: rotate(-1023deg)}}
@keyframes store-whell-anim15{0%{transform:rotate(0deg)}100%{transform: rotate(-1045deg)}}
@keyframes store-whell-anim16{0%{transform:rotate(0deg)}100%{transform: rotate(-1068deg)}}


.store-whell .store-whell-floor-2 .whell-container .spin-con{
    display: inline-flex;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}
.store-whell .store-whell-floor-2 .whell-container .spin-con .spin-btn{
    display: inline-block;
    border-radius: 50%;
    padding: 30px;
    aspect-ratio: 1/1;
    font-size: 20pt;
    font-weight: bold;
    border: 0;
    background-color: #03ff27;
    color: #1F242A;
    transition: transform 1s;
    cursor: pointer;
}
.store-whell .store-whell-floor-2 .whell-container .spin-con .spin-btn:disabled{
    background-color: #616161;
    color: #fff;
    transform:scale(.9);
}
.store-whell .store-whell-floor-2 .whell-container .spin-con .spin-btn:hover{
    transform: scale(1.1);
}
.store-whell .store-whell-floor-2 .whell-container .spin-con .spin-btn:active{
    transform: scale(.9);
}


.store-whell .profile-box-1{
    display: inline-flex;
    flex-direction: row;
    color: #fff;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #1F242A;
}
.store-whell .profile-box-1 .left{
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}
.store-whell .profile-box-1 .left b{
    display: inline-block;
    color: #fff;
    font-size: 20pt;
    font-weight: 500;
}
.store-whell .profile-box-1 .left span{
    display: inline-block;
    color: #6E8194;
    font-size: 10pt;
    margin-top: 20px;
}
.store-whell .profile-box-1 .right{
    display: inline-block;
    line-height: 1;
}
.store-whell .profile-box-1 .right b{
    color: #03ff27;
    display: inline-block;
    font-weight: bold;
    font-size: 50pt;
}
.store-whell .profile-box-2{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: #1F242A;
    width: 100%;
}
.store-whell .profile-box-2 .img{
    display: inline-block;
    max-width: 100%;
}
.store-whell .profile-box-2 .img img{
    display: inline-block;
    max-width: 100%;
}
.store-whell .profile-box-2 .texts{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.store-whell .profile-box-2 .texts span{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #6E8194;
    font-size: 12pt;
}
.store-whell .profile-box-2 .texts b{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #03ff27;
    font-weight: bold;
    font-size: 20pt;
}
.store-whell .profile-box-2 .texts .btn-detail{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 500;
    padding: 15px 0;
    font-size: 14pt;
    margin-top: 20px;
}
.store-whell .profile-box-2 .btn-link{
    color: #03ff27 !important;
    text-decoration: none;
}
.store-whell .profile-box-2 .btn-link:hover{
    color: #00b51b !important;
}

.title-row{
    display: inline-flex;
    width: 100%;
    padding:20px 0;
    align-items: center;
    justify-content: space-between;
}
.title-row .title{
    display: inline-block;
    color: #9AA9B9;
    font-weight: bold;
    font-size: 14pt;
}
#modal-rules h1{
    display: inline-block;
    margin: 0;
    width: 100%;
    color: #fff;
    font-weight: 500;
}
#modal-rules h2{
    display: inline-block;
    margin: 0;
    width: 100%;
    color: #BCCBDB;
    font-weight: 500;
}
#modal-rules b{
    color: #01FFBF;
    font-size: 13pt;
}
b.attention{
    color: #ffc107 !important;
    margin-bottom: 10px;
    margin-top: 10px;
    display: inline-block;
}
#modal-rules b{
    color: #92AAC3;
    font-weight: normal;
}

#modal-rules .modal-footer,
#modal-rules .modal-header{
    border: 0;
}
#modal-rules .modal-body{
    color: #fff;
}
#modal-rules .modal-content{
    background-color: #0B0F13 !important;
}

.store-whell .timer,
.event-page-details .timer{
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
}
.store-whell .timer .time{
    display: inline-block;
    width: 100%;
    background-color: #1F242A;
    border-radius: 10px;
    margin:0 1%;
    padding: 20px 0;
}
.store-whell .timer .time:first-child{
    margin-left: 0;
}
.store-whell .timer .time:last-child{
    margin-right: 0;
}
.store-whell .timer .time b{
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 25pt;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin: 0;
}
.store-whell .timer .time span{
    display: inline-block;
    line-height: 1;
    text-align: center;
    width: 100%;
    color: #6E8194;
    font-size: 12pt;
    font-weight: 500;
}
.store-whell .btn-detail{
    background-color: #1F242A;
    color: #6E8194;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
    display: inline-block;
}

.invite-code-con-header{
    display: inline-block;
    width: 100%;
}
.invite-code-con-header .codes{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #34ff00;
    color: #000;
    padding: 23px 20px;
    float: left;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
    position: relative;
}
.invite-code-con-header .codes span{
    display: inline-block;
    font-size: 10pt;
    margin-right: 10px;
}
.invite-code-con-header .codes b{
    font-size: 14pt;
    font-weight: bold;
}
.invite-code-con-header .codes .copy{
    display: inline-block;
    font-size: 20pt;
    margin-left: 25px;
    cursor: pointer;
}
.invite-code-con-header .codes .coppied{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.invite-code-con-header .codes .coppied div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-flex;
    border:1px solid #34ff00;
    background-color: #34ff00;
    color: #000;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14pt;
}
.invite-code-con-header .codes .copy i{
    font-size: 16pt;
}

.invite-code-con-header .invites-con {
    display: inline-block;
}
.invite-code-con-header .invites{
    display: inline-flex;
    flex-direction: column;
    float: left;
    margin-right: 10px;
    margin-top: 0;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #FFF600;
    background-color: #1F242A;
    line-height: 1;
}
.invite-code-con-header .invites.g{
    border-color: #34ff00;
}
.invite-code-con-header .invites span{
    display: inline-block;
    color: #fff;
    font-size: 9pt;
}
.invite-code-con-header .invites div{
    display: inline-flex;
    align-items: center;
    color: #FFF600;
    margin-top: 5px;
}
.invite-code-con-header .invites.g div{
    color: #34ff00;
}
.invite-code-con-header .invites div i{}
.invite-code-con-header .invites div b{
    display: inline-block;
    margin-left: 5px;
    font-weight: 500;
}
.invite-page-container{
    display: inline-block;
    width: 98%;
}
.invite-page-container .tabs-header{
    display: inline-flex;
    align-items: center;
    margin: 20px 0;
}
.invite-page-container .tabs-header a{
    display: inline-block;
    font-weight: 500;
    color: #858D96;
    font-size: 18pt;
    text-decoration: none;
    padding: 0 20px;
}
.invite-page-container .tabs-header a.active{
    color: #34ff00;
}
.invite-page-container .tabs-lists{
    display: inline-block;
    width: 100%;
}
.invite-page-container .tabs-lists .tab-con{
    display: none;
    width: 100%;
}
.invite-page-container .tabs-lists .tab-con.active{
    display: inline-block;
}
.invite-page-container .tabs-lists .tab-con .table{
    width: 100%;
}
.invite-page-container .tabs-lists .tab-con .table thead{}
.invite-page-container .tabs-lists .tab-con .table thead tr{}
.invite-page-container .tabs-lists .tab-con .table thead tr th{
    background-color: #14181C;
    color: #fff;
    padding: 20px 0;
    font-weight: 400;
    text-align: center;
    border: 1px solid #353D46;
    font-size: 10pt;
}
.invite-page-container .tabs-lists .tab-con .table tbody{}
.invite-page-container .tabs-lists .tab-con .table tbody tr{}
.invite-page-container .tabs-lists .tab-con .table tbody tr td{
    background: none;
    border: 1px solid #353D46;
    text-align: center;
    padding: 10px 0;
    color: #fff;
}
.invite-page-container .tabs-lists .tab-con .table tbody tr:nth-child(even) td{
    background-color: #14181C;
}
.invite-page-container .invite-title{
    display: inline-block;
    color: #fff;
    font-size: 18pt;
    font-weight: 500;
}
.invite-page-container .prizes{
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.invite-page-container .prizes .item{
    display: inline-flex;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    background: #1F242A;
    margin-bottom: 10px;
}
.invite-page-container .prizes .item .left{
    display: inline-flex;
    align-items: center;
}
.invite-page-container .prizes .item .left svg{
    color: #34ff00;
    font-size: 16pt;
}
.invite-page-container .prizes .item .left span{
    color: #849090;
    font-weight: 500;
    margin-left: 10px;
}
.invite-page-container .prizes .item .right{
    display: inline-flex;
    align-items: center;
}
.invite-page-container .prizes .item .right span{
    color: #34ff00;
    font-size: 14pt;
    font-weight: 500;
}
.invite-page-container .prizes .item .right .icon{
    display: inline-block;
    margin-left: 10px;
}
.invite-page-container .prizes .item .right .icon img{}
.invite-page-container .invite-warn{
    display: inline-block;
    margin-bottom:10px;
    color: #fff;
    font-size: 10pt;
}
.invite-page-container .invite-warn span{
    color: #34ff00;
}
.invite-page-container .dates{
    display: inline-block;
    width: 100%;
    color: #fff;
    margin-bottom: 10px;
    text-align: right;
    font-size: 10pt;
}
.text-color-1{
    color: #34ff00;
}
.border-color-1{
    border-color: #34ff00;
}
.event-list{
    display: inline-block;
    width: 98%;
}
.event-list .list{
    display: inline-block;
}
.event-list .list .item{
    display: inline-block;
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.event-list .list .item .image{
    display: inline-block;
    width: 100%;
}
.event-list .list .item .image img{
    display: inline-block;
    width: 100%;
}
.event-list .list .item .image .hover{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 20px;
    background: #242A30;
    background: linear-gradient(180deg, rgba(36, 42, 48, 0) 0%, rgba(36, 42, 48, 1) 77%);
}
.event-list .list .item .image .hover .totalPrize{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #34ff00;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px;
    border-radius: 10px;
}
.event-list .list .item .image .hover .totalPrize span{
    display: inline-block;
    color: #000;
    font-size: 9pt;
    line-height: 1;
}
.event-list .list .item .image .hover .totalPrize b{
    display: inline-block;
    color: #000;
    font-size: 13pt;
    font-weight: 500;
}
.event-list .list .item .image .hover .name{
    display: inline-block;
    width: 100%;
    text-align: left;
    color: #fff;
    font-size: 20pt;
    font-weight: bold;
    line-height: 1;
}
.event-list .list .item .image .hover .name small{
    font-size: 10pt;
}
.event-list .list .item .image .hover .bottom-row{
    display: inline-flex;
    width:100%;
    border-top: 1px solid #54677A;
    margin-top: 10px;
    padding-top: 10px;
    align-items: center;
    justify-content: space-between;
}
.event-list .list .item .image .hover .bottom-row .timer{
    display: inline-flex;
    align-items: center;
}
.event-list .list .item .image .hover .bottom-row .timer span{
    display: inline-block;
    font-size: 10pt;
    color: #6E8194;
}
.event-list .list .item .image .hover .bottom-row .timer b{
    display: inline-block;
    font-size: 12pt;
    font-weight: 500;
    color: #BCCBDB;
    margin-left: 10px;
}
.event-list .list .item.prize .image .hover .bottom-row .timer b{
    color: #34ff00;
    font-size: 14pt;
}
.event-list .list .item .image .hover .bottom-row .btn-event{
    display: inline-block;
    background-color: #2F3942;
    font-size: 11pt;
    font-weight: 500;
    text-decoration: none;
    color: #9AA9B9;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 1s;
}
@media screen and (max-width: 600px) {
        .count-badge-promotion {
            right: initial;
            left: 1.5%;
            width: 30px;
            text-align: center;
            background: #004147;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .connect-account-alert {
            margin-top: 10px;
        }

        .page .publishers .item.online {
            border-color: #33FF00;
            box-shadow: 0px 0px 0px 0px #33FF00;
            width: 198px !important;
            border-width: 4px;
        }

        .page .publishers .item.online2 {
            border-color: #33FF00;
            box-shadow: 0px 0px 0px 0px #33FF00;
            border-width: 4px;
        }

        header {
            border-bottom: 3px solid var(--mastergreen);
            height: 78px;
        }

        header .login .btn {
            font-size: 12px;
            padding: 7px 10px;
        }

        header .account .tg-connect {
            padding: 20px 10px 0 10px !important;
        }

        header .account .tg-connect .icon {
            padding: 5px 8px;
            height: 35px;
            margin-right: 0;
            line-height: 30px;
        }

        header .account .tg-connect .tgname {
            display: none;
            font-size: 11px
        }

        header .account .tg-connect .tgname b {
            font-size: 13px;
            margin-bottom: 5px;
        }

        header .account .detail {
            padding: 20px 10px 0 10px !important;
        }

        header .account .detail .avatar {
            padding: 5px;
            height: 35px;
            margin-right: 10px
        }

        header .account .detail .detail-side .username {
            font-size: 15px
        }

        header .account .detail .detail-side a {
            font-size: 11px
        }

        header .account .links a.logout {
            padding-left: 10px;
            padding-right: 10px;
        }

        .mobile-menu {
            display: block;
            position: sticky;
            top: 78px;
            z-index: 10;
        }

        .page {
            padding-top: 20px;
            margin-left: 20px;
            margin-right: 20px;
        }

        .page .publisher .social-medias {
            padding-bottom: 0;
            margin-bottom: 20px;
            display: inline-block !important;
            text-align: center;
        }

        .page .publisher .social-medias a {
            margin-right: 0 !important;
            margin: 5px !important;
        }

        .page .publisher .social-medias a:nth-child(2) {
            margin-right: 0 !important;
        }

        .page .publisher .social-medias a:nth-child(3) {
            margin-left: 0 !important;
        }

        .prize.mobile {
            position: relative;
            display: flex;
            justify-content: space-between;
            height: 75px;
            background: linear-gradient(85deg, var(--mastergreen) -50%, rgb(44, 122, 0) 60%);
            padding-top: 0px;
            padding-left: 20px;
            padding-right: 20px;
            box-sizing: border-box;
            border-right: 1px solid #1D2834;
            min-width: 250px;
            color: #fff;
            top: 20px;
        }

        .prize.mobile .prize-value {
            width: 200px;
            text-wrap: nowrap;
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            padding-top: 12px;
            text-align: right;
        }

        .publisher-box {
            border-right: 0;
            background: linear-gradient(85deg, var(--mastergreen) -50%, rgb(44, 122, 0) 60%) !important;
        }

        .page .publisher .live .tab-content .tab-pane iframe {
            height: 250px;
        }

        .event-item {
            width: 290px;
            height: 470px;
        }

        .event-item .custom-btn .btn {
            font-size: 14px;
            padding: 6px 10px;
        }

        .home .publishers .carousel .item {
            width: 192px;
        }

        footer {
            margin-top: 30px;
            margin-bottom: 30px;
            padding: 30px 20px 0 20px;
            border-top: 1px solid #1D2834;
        }

        footer img:not(:first-child) {
            filter: brightness(0) invert(1);
        }

        .page .competition {
            margin-right: 0;
            padding: 40px 10px 30px 10px;
        }

        .page .competition .col.d-flex {
            margin-bottom: 30px;
        }

        .page .competition-title .date {
            font-size: 12px
        }

        .page .competition-title .title {
            font-size: 24px;
            margin: 0;
        }

        .page .detail-divider {
            display: none;
        }

        .page .competition .competition-image img {
            height: 90px;
            border-radius: 6px;
        }

        .email-empty-error {
            padding: 10px;
            margin-right: 0 !important;
            font-size: 13px
        }

        .page .publishers .item {
            width: auto;
        }

        .publisher .social-medias b {
            display: block;
            margin-bottom: 10px;
        }

        .publisher .social-medias a {
            display: inline-block;
            margin-bottom: 10px;
        }

        .list-group-item-dark.spec {
            background: #004147;
            color: #fff;
        }

        .custom-control ~ .input-group-append .btn {
            font-size: 10pt;
        }

        .custom-control ~ .input-group-append {
            width: 30%;
        }

        .page .account .custom-control {
            padding: 13px;
        }

        .account-v2 .menu-page ul li a {
            font-size: 12pt;
            padding: 5px;
        }

        .account-v2 .menu-page ul li {
            margin-right: 5px;
        }

        .sponsor-setting-item {
            margin-top: 20px;
        }

        .account-v2 .menu-page {
            margin-bottom: 20px;
        }

        .account-v2 form.pt-4 {
            padding-top: 10px !important;
        }

        .mobile-w100 {
            width: 100% !important;
            padding-left: 0 !important;
        }
        .store-whell .profile-box-1{
            margin-top: 20px;
        }
        .store-whell{
            background-position: top center;
            background-image: url("../img/store-whell-bg.png");
            background-size: contain;
            padding-top: 0;
            background: none;
        }
        .store-whell .store-whell-floor-2{
            background:none;
        }
        .store-whell .profile-box-2{
            display: inline-block;
            flex-direction: row;
        }
        .store-whell .profile-box-2 .img{
            width: 35%;
        }
        .store-whell .profile-box-2 .texts{
            width: 64%;
            justify-content: flex-end;
            text-align: right;
        }
        .store-whell .profile-box-2 .texts b,
        .store-whell .profile-box-2 .texts span{
            text-align: right;
        }
        .store-whell .profile-box-2 .mobile-co{
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }


        .invite-code-con-header .codes{
            width: 100%;
            margin-bottom: 0px;
            display: inline-block;
            padding: 10px;
            line-height: 1;
        }
        .invite-code-con-header .codes b{
            font-size: 12pt;
        }
        .invite-code-con-header .codes .copy{
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            display: inline-flex;
            align-items: center;
            padding: 0 10px;
        }
        .invite-code-con-header .invites{
            margin-left: 0;
            width: 100%;
            margin-top: 10px;
            display: inline-flex;
            flex-direction: row;
            justify-content: space-between;
        }
        .invite-code-con-header .invites div{
            margin-top: 0;
        }
        .invite-page-container .tabs-header a{
            width: 50%;
            text-align: center;
            font-size: 14pt;
            padding: 0;
        }
        .invite-page-container .tabs-header{
            width: 100%;
        }
        .invite-page-container .tabs-lists .tab-con .table thead tr th,
        .invite-page-container .tabs-lists .tab-con .table tbody tr td{
            padding: 10px;
            font-size: 10pt;
        }
        .invite-code-con-header .invites-con{
            width: 100%;
        }
    }
