﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Orbitron:wght@400;500;700&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.3;
    font-size: 14px;
    margin: 0 auto;
    color: #fff;
    background: #000;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    a:hover, a:focus {
        text-decoration: none;
        outline: none;
    }

img {
    max-width: 100%;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #221b3d;
    width: 100%;
}

    input:focus, button:focus, textarea:focus, select:focus {
        outline: none;
    }

.t-body {
    padding-top: 60px;
}

/** Header **/
.header-top {
    background: #221b3d;
    border-bottom: 2px solid #192de8;
    height: 60px;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.burger-menu {
    max-width: 30px;
    position: absolute;
    left: 14px;
    top: 14px;
}

.logo {
    max-width: 90px;
    margin: auto;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
}

.msgbox {
    position: absolute;
    right: 15px;
    top: 10px;
    text-align: center;
}

    .msgbox a {
        color: #fff;
        font-size: 10px;
    }

        .msgbox a i {
            display: block;
            font-size: 27px;
            margin-bottom: -3px;
            color: #c410ff;
            animation: shake 0.7s infinite linear, huec 2s ease infinite;
        }

span.notice-mail {
    background: #e20000;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 600;
    height: 15px;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -7px;
    top: -4px;
    z-index: 2;
}

@keyframes huec {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes shake {
    0% {
        transform: translate(2px, 0);
    }

    20% {
        transform: translate(-2px, 0);
    }

    40% {
        transform: translate(0, 0);
    }

    60% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(-2px, 0);
    }

    100% {
        transform: translate(2px, 0);
    }
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(2px, 0);
    }

    20% {
        -webkit-transform: translate(-2px, 0);
    }

    40% {
        -webkit-transform: translate(0, 0);
    }

    60% {
        -webkit-transform: translate(0, 0);
    }

    80% {
        -webkit-transform: translate(-2px, 0);
    }

    100% {
        -webkit-transform: translate(2px, 0);
    }
}



/** Footer Menu **/
.footer-menu {
    background: #221b3d;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.ft-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    padding: 8px 0;
}

.ftmenu a {
    color: #fff;
    font-size: 11px;
}

.ftmenu img {
    display: block;
    max-height: 31px;
    margin: auto;
    filter: brightness(10);
}

.ftmenu.active a {
    color: #d255cb;
}

.ftmenu.active img {
    filter: none;
}

.ftmenu-center {
    background: url(../images/bottom-center.png)no-repeat top center;
    background-size: 100% 100%;
    width: 85px;
    height: 71px;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 14px;
}



/** Home **/
button.reg-btn {
    background: #782a67;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    height: 40px;
    text-transform: uppercase;
    border: none;
}

button.login-btn {
    background: #fff;
    color: #6841cd;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    height: 40px;
    text-transform: uppercase;
    border: none;
}

.nav-tabs.game {
    border-bottom: none;
    background: #221b3d;
}

    .nav-tabs.game .nav-item {
        width: 25%;
        margin-bottom: 0;
    }

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 9px 3px;
    font-size: 13px;
    color: #fff;
}

.nav-tabs.game .nav-link img {
    display: block;
    max-width: 35px;
    margin: auto;
    margin-bottom: 5px;
}

.nav-tabs.game .nav-item.show .nav-link, .nav-tabs.game .nav-link.active {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    background: rgba(72,28,96,1);
    background: -moz-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(72,28,96,1)), color-stop(100%, rgba(210,85,203,1)));
    background: -webkit-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
    background: -o-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
    background: linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
}

.tab-content.game {
    background: #b449b4;
    height: 100%;
}

.tab-pane#slots {
    background: #b449b4 url(../images/slot/slot_02.jpg)no-repeat top center;
    background-size: cover;
}

.tab-pane#casino {
    background: #b449b4 url(../images/casino/casino_02.jpg)no-repeat top center;
    background-size: 100% 100%;
    height: 80vh;
}

.tab-pane#sports {
    background: #000 url(../images/sport/sports_02.jpg)no-repeat top center;
    background-size: 100% 100%;
    height: 100%;
}

.gm_wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 7px;
    padding: 10px;
    text-align: center;
}

.gm_wrapper_sport {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 7px;
    padding: 10px;
}

/** 4D **/
body.lottery {
    background: #b449b4;
}

.lottery-sec {
    background: #b449b4 url("../images/4d/lottery_02.jpg")no-repeat top center;
    background-size: 100%;
    height: 100%;
}

.btn-lotto {
    margin-top: 61%;
    padding-bottom: 80px;
}

a.bet-btn {
    display: block;
    max-width: 150px;
    margin: auto;
    margin-bottom: 10px;
    text-align: center;
    filter: drop-shadow(1px 2px 17px rgb(134,253,255,1));
}

.hue-rotate {
    animation: huecolor 2s ease infinite;
}

.hue-rotate {
    animation: huecolor 2s ease infinite;
}

@keyframes huecolor {
    0% {
        filter: hue-rotate(0deg) drop-shadow(1px 2px 17px rgb(134,253,255,1));
    }

    100% {
        filter: hue-rotate(360deg) drop-shadow(1px 2px 17px rgb(134,253,255,1));
    }
}

.toto-result-sec {
    background: #b449b4 url(../images/4d/lottery_02.jpg)no-repeat top center;
    background-size: 100%;
    padding: 30px 0 45px 0;
    text-align: center;
    color: #fff;
}

ul.lt-wrap {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-gap: 2px;
    border-bottom: 2px solid #4CFFFF;
    padding: 0 2px;
}

.nav-tabs.lt-wrap .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
}

    .nav-tabs.lt-wrap .nav-item.show .nav-link, .nav-tabs.lt-wrap .nav-link.active {
        color: #495057;
        background-color: transparent;
    }

li.lt-item {
    position: relative;
    padding-bottom: 22px;
}

ul.lt-wrap li a.active:after {
    content: "";
    color: #4CFFFF;
    position: absolute;
    border-top: 0;
    border-right: 0.7em solid transparent;
    border-bottom: 0.7em solid;
    border-left: 0.7em solid transparent;
    width: 8px;
    margin: auto;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
}

.result-boxes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.prize {
    background: #b449b4;
    font-weight: 500;
    font-size: 16px;
    padding: 3px 2px;
}

.result-tt {
    padding: 7px 2px;
    font-weight: 500;
    font-size: 16px;
    background: rgba(0,0,0,0.8);
}

.result-boxes-1 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-ttt {
    padding: 3px 2px;
    font-weight: 500;
    font-size: 14px;
    background: rgba(0,0,0,0.8);
}

.table-in div {
    padding: 5px 0;
}

.table-in {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-box {
    border: 1px solid #fff;
}

.date-box {
    padding: 10px 0px;
    font-size: 16px;
    background: rgba(0,0,0,0.8);
}

span#resultDate {
    vertical-align: middle;
}

/** Promotion **/
body.promo {
    background: #ac58ba url("../images/promo-bg.jpg")no-repeat top center;
    background-size: 100%;
    background-attachment: fixed;
}

.promo-sec {
    padding: 15px 0 80px;
}

.promo-bx {
    background: url(../images/promo-box.png)no-repeat top center;
    background-size: 100% 100%;
    max-width: 500px;
    height: 190px;
    margin: 10px auto;
    padding: 10px;
    position: relative;
    font-family: 'Orbitron';
    transition: 0.3s;
}

.promo-title-wrapper {
    font-size: 14px;
    color: #fff;
    text-align: left;
    padding: 10px 10px 0;
    line-height: 1.2;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

    .promo-title-wrapper i {
        color: #4cffff;
    }

.check-now {
    position: absolute;
    right: 13px;
    bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
}

    .check-now i {
        color: #4cffff;
        margin-right: 5px;
    }


/** Download **/
body.download {
    background: #3d193d url("../images/download/download_bg.jpg")no-repeat top center;
    background-size: 100%;
    background-attachment: fixed;
}

.download-menu-sec {
    padding: 30px 0 20px;
}

.dl-menu {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .dl-menu a {
        font-family: 'Orbitron';
        display: flex;
        justify-content: center;
        align-items: center;
        background: url("../images/blue-btn-dark.png")no-repeat center;
        background-size: 100% 100%;
        width: 130px;
        height: 47px;
        margin: auto 5px;
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
        text-align: center;
    }

        .dl-menu a.active {
            background: url("../images/blue-btn.png")no-repeat center;
            background-size: 100% 100%;
            width: 130px;
            height: 47px;
        }

.download-sec {
    padding-bottom: 80px;
}

.dlbox {
    margin-bottom: 20px;
    text-align: center;
}

.dl-action {
    text-align: center;
}

a.dl-btn {
    display: inline-block;
    width: 135px;
    margin: auto 3px;
    text-align: center;
    filter: drop-shadow(0 4px 5px rgb(0,0,0,0.7));
}


/** Wallet **/
body.wallet {
    background: linear-gradient(to bottom, rgba(46,72,139,1) 0%, rgba(39,19,73,1) 34%, rgba(39,19,73,1) 65%, rgba(46,64,126,1) 100%);
    background-size: 100% 100%;
    background-attachment: fixed;
}

.wallet-sec {
    background: url("../images/wallet-top-bg_02.jpg")no-repeat top center;
    background-size: cover;
    padding: 23px 0 10px;
}

.total-box {
    float: left;
    display: grid;
    width: 100%;
    grid-template-columns: 72% auto;
}

.depbox {
    display: grid;
    grid-template-columns: 60% 40%;
}

.wbox-vip {
    grid-column: 1/3;
}

.vip-box {
    background: url(../images/vipbar.png)no-repeat top center;
    background-size: 100% 100%;
    display: grid;
    grid-template-columns: 70px 45px auto;
    padding: 7px 10px 5px 10px;
    height: 60px;
}

.vip-title {
    text-transform: uppercase;
    font-size: 9px;
    font-family: 'Orbitron';
    padding-top: 3px;
}

    .vip-title i {
        color: #4dffff;
        margin-right: 5px;
    }

.viptier {
    font-family: 'Orbitron';
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    align-self: center;
    padding-left: 8px;
}

.balance-box {
    background: url(../images/total-balance.png)no-repeat center;
    background-size: 100% 100%;
    max-width: 300px;
    height: 52px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.token-box {
    background: url(../images/total-token.png)no-repeat center;
    background-size: 100% 100%;
    max-width: 300px;
    height: 52px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.total-title {
    font-size: 8px;
    font-weight: 500;
}

    .total-title i {
        color: #4dffff;
        margin-right: 5px;
    }

.amt {
    text-align: right;
    font-size: 17px;
    margin-top: 7px;
    margin-right: 0px;
    font-weight: 500;
}

span.rmunit {
    font-size: 10px;
    margin-right: 4px;
}

.dep-out {
    margin-left: 5px;
}

.wbox-btn {
    align-self: center;
}

.deposit-green {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: url(../images/deposit-btn.png)no-repeat;
    background-size: 100% 100%;
    max-width: 120px;
    height: 42px;
    text-align: center;
    color: #fff;
    padding: 5px 2px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
}

    .deposit-green img, .all-yellow img {
        margin-left: 3px;
        transition: 0.6s;
        max-width: 15px;
    }

    .deposit-green:hover, .all-yellow:hover {
        color: #fff;
        filter: brightness(1.15);
    }

.all-yellow {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: url("../images/allout-btn.png")no-repeat;
    background-size: 100% 100%;
    max-width: 120px;
    height: 42px;
    text-align: center;
    color: #fff;
    padding: 5px 2px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
}

    .all-yellow:hover img, .deposit-green:hover img {
        transform: rotate(180deg);
        transition: 0.6s;
    }

.wallet-menu-sec {
    background: #221b3d;
}

.menu-wallet-wrapper {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    text-align: center;
}

.mwbox {
    position: relative;
    padding: 6px 2px;
}

    .mwbox a {
        color: #fff;
        font-size: 8px;
        text-transform: uppercase;
    }

    .mwbox img {
        max-width: 34px;
        display: block;
        margin: auto;
    }

    .mwbox.active {
        background: rgba(72,28,96,1);
        background: -moz-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
        background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(72,28,96,1)), color-stop(100%, rgba(210,85,203,1)));
        background: -webkit-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
        background: -o-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
        background: -ms-linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
        background: linear-gradient(45deg, rgba(72,28,96,1) 0%, rgba(210,85,203,1) 100%);
    }

        .mwbox.active:after {
            content: "";
            position: absolute;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 7px solid #6d2c7d;
            width: 7px;
            margin: auto;
            bottom: -6px;
            left: 0;
            right: 0;
            z-index: 10;
        }

.wallet-content {
    padding: 15px 0 80px;
}

.depform {
    margin-top: 15px;
    background: rgba(25,11,57,0.5);
    padding: 15px;
    border-radius: 7px;
}

.dp-field {
    margin-bottom: 10px;
}

    .dp-field label {
        margin-bottom: 2px;
        text-transform: uppercase;
        font-size: 10px;
    }

.aic {
    align-self: center;
}

.fieldbox select, .fieldbox input {
    background: #75a0dd;
    color: #000;
    font-size: 12px;
    height: 35px;
    border: none;
    border-radius: 7px;
    padding: 5px 10px;
    font-weight: 500;
    width: 100%;
}

    .fieldbox input::placeholder {
        color: #170537;
    }

select.dp-input option {
    background: #fff;
}

.dp-field.bonus {
    margin: 0 auto 10px;
}

.nav-tabs.wallet .nav-link {
    background: url(../images/acc-btn.png)no-repeat center;
    background-size: 100% 100%;
    width: 160px;
    height: 56px;
    margin: auto 5px;
    font-family: 'Orbitron';
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    padding: 18px 10px;
    border: none;
}

.nav-tabs.wallet {
    border-bottom: none;
    max-width: 340px;
    margin: 18px auto 0;
}

    .nav-tabs.wallet .nav-item {
        margin: auto;
    }

        .nav-tabs.wallet .nav-item.show .nav-link, .nav-tabs.wallet .nav-link.active {
            background: url("../images/acc-btn-light.png")no-repeat center;
            background-size: 100% 100%;
            width: 160px;
            height: 56px;
            color: #fff;
        }

.ibank-option-wrapper label {
    width: 23%;
}
    /* HIDE RADIO */
    .ibank-option-wrapper label [type=radio] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }
        /* IMAGE STYLES */
        .ibank-option-wrapper label [type=radio] + .bank-option {
            cursor: pointer;
            background: #170537;
            padding: 7px;
            border: 1px solid transparent;
            border-radius: 10px;
            text-align: center;
            font-size: 8px;
            text-transform: uppercase;
        }

.bankname {
    font-size: 10px;
    margin-top: 3px;
}
/* CHECKED STYLES */
.ibank-option-wrapper label [type=radio]:checked + .bank-option {
    border: 1px solid #75a0dd;
    background: #101010;
    color: #fff;
}

.ibank-option-wrapper label {
    margin: 0 1px;
}

.quick-box {
    margin-bottom: 10px;
}

.quick-btn {
    background: #170537;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    border: none;
    border-radius: 8px;
    padding: 3px;
    width: 15.4%;
    height: 38px;
}

    .quick-btn span {
        font-size: 9px;
        display: block;
        font-weight: 500;
    }

    .quick-btn:hover {
        background: #75a0dd;
        color: #000;
    }

.agree-field {
    display: grid;
    grid-template-columns: 45px auto;
    align-items: center;
    margin: 15px auto;
    font-size: 13px;
}

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

    .styled-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0;
        margin: 0;
    }

        .styled-checkbox + label:before {
            content: '';
            margin-right: 10px;
            display: inline-block;
            vertical-align: text-top;
            width: 27px;
            height: 27px;
            border-radius: 50%;
            background: #fff;
        }

    .styled-checkbox:hover + label:before {
        background: #008040;
    }

    .styled-checkbox:focus + label:before {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    }

    .styled-checkbox:checked + label:before {
        background: #008040;
    }

    .styled-checkbox:disabled + label {
        color: #b8b8b8;
        cursor: auto;
    }

        .styled-checkbox:disabled + label:before {
            box-shadow: none;
            background: #ddd;
        }

    .styled-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 8px;
        top: 13px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.bank_info {
    padding: 8px 0 0;
}

table.bank-info-table tr td {
    padding: 2px 4px;
    font-size: 11px;
}

input.dp-input.upload {
    width: 68%;
}

.upload-btn {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}

button.upload-button {
    background: linear-gradient(to bottom, rgba(186,0,196,1) 0%, rgba(121,9,76,1) 100%);
    border: 1px solid #630bb8;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    padding: 0px 5px;
    width: 28%;
    border-radius: 5px;
    height: 35px;
    text-transform: uppercase;
    margin-left: 5px;
}

    button.upload-button:hover {
        background: linear-gradient(to top, rgba(186,0,196,1) 0%, rgba(121,9,76,1) 100%);
        color: #fff;
    }

.dep-btn-wrapper {
    text-align: center;
}

button.pay-btn {
    background: url("../images/acc-btn-light.png")no-repeat center;
    background-size: 100% 100%;
    width: 130px;
    height: 50px;
    margin: auto 5px;
    font-family: 'Orbitron';
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 10px;
    border: none;
}

    button.pay-btn.collapsed {
        background: url("../images/acc-btn.png")no-repeat center;
        background-size: 100% 100%;
        width: 130px;
        height: 50px;
    }

    button.pay-btn:hover {
        background: url(../images/acc-btn-light.png)no-repeat center;
        background-size: 100% 100%;
        width: 130px;
        height: 50px;
    }

.reg-button {
    font-family: 'Orbitron';
    color: #fff;
    background: url(../images/pink-btn.png)no-repeat center;
    background-size: 100% 100%;
    width: 130px;
    height: 47px;
    margin: 15px auto;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
}

.transfer-content {
    background: url(../images/trans-bg.png)no-repeat top center;
    background-size: 100% 100%;
    max-width: 830px;
    min-height: 1000px;
    margin: auto;
    padding: 15px 15px 30px;
    color: #fff;
}

.wallet-wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 5px;
    margin: 30px 0;
}

.walletbox {
    background: url("../images/probox.png")no-repeat top center;
    background-size: 100% 100%;
    max-width: 185px;
    height: 150px;
    text-align: center;
    padding: 5px;
}

.pvd-logo {
    margin-top: 7px;
    height: 48px;
}

.amount-num {
    color: #4dffff;
    padding: 4px;
    font-size: 15px;
}

.allin-btn {
    background: url(../images/acc-btn-light.png);
    background-size: 100% 100%;
    max-width: 140px;
    height: 47px;
    margin: auto;
    width: 100%;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    padding: 5px;
    font-weight: 500;
}

    .allin-btn:hover {
        filter: brightness(1.2);
    }

.transfer-form {
    background: url("../images/dp-frame.png")no-repeat top center;
    background-size: 100% 100%;
    max-width: 780px;
    margin: 15px auto;
    padding: 40px 30px;
}

input.transfer {
    width: 60%;
}

button.trans-button {
    background: linear-gradient(to bottom, rgba(186,0,196,1) 0%, rgba(121,9,76,1) 100%);
    border: 1px solid #630bb8;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    padding: 0px 3px;
    width: 36%;
    border-radius: 5px;
    height: 35px;
    text-transform: uppercase;
    margin-left: 4px;
}

    button.trans-button:hover {
        background: linear-gradient(to top, rgba(186,0,196,1) 0%, rgba(121,9,76,1) 100%);
    }

.transtable {
    margin-bottom: 15px;
    font-size: 12px;
}

table.bank-info-withdraw tr th {
    border: 1px solid #5494ce;
    padding: 5px 5px;
    color: #fff;
    background: #5494ce;
    text-align: center;
}

table.bank-info-withdraw tr td {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 1px solid #5494ce;
    padding: 5px 5px;
    text-align: center;
}

.history-wrapper {
    margin: 15px auto;
    font-size: 12px;
    overflow: auto;
}

.profile-form {
    margin: 15px 0;
}

.nav-tabs.wallet.profile {
    max-width: 500px;
    margin: 0 auto;
}

.nav-tabs.wallet .nav-link.profile {
    max-width: 95px;
    font-size: 9px;
    height: 50px;
    padding: 4px 2px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.pagination-box {
    text-align: center;
}

    .pagination-box a {
        color: #fff;
        font-size: 15px;
        margin: 5px;
        display: inline-block;
    }

        .pagination-box a.active, .pagination-box a:hover {
            color: #4cffff;
        }

/** Inbox **/
body.inbox {
    background: url("../images/inbox_02.jpg")no-repeat top center;
    background-size: 100% 100%;
    background-attachment: fixed;
}

.inbox-sec {
    padding: 15px 0;
}

.inbox-title {
    font-family: 'Orbitron';
    text-transform: uppercase;
    font-size: 22px;
    padding-left: 0px;
}

    .inbox-title i {
        color: #4dffff;
    }

.mail-list {
    height: 350px;
    overflow: auto;
    padding: 10px 0;
}

a.mailbox {
    color: #fff;
    display: block;
    font-size: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 7px 20px 7px 10px;
    position: relative;
}

    a.mailbox:hover, a.mailbox.active {
        color: #fff;
        background: #402b6c;
    }

        a.mailbox.active::after {
            content: "\f101";
            font-family: "Font Awesome 5 Free";
            font-weight: 700;
            font-size: 15px;
            color: #4dffff;
            position: absolute;
            right: 9px;
            top: 6px;
            transition: 0.3s;
        }

span.mail-icon {
    margin-right: 15px;
}

a.mailbox.unread {
    font-weight: 700;
}

.date-mail {
    color: #99a0d6;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 10px 0;
}

.title-mail {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.inbox-msg {
    padding-bottom: 15px;
    font-size: 13px;
}

.mail-context {
    max-height: 420px;
    padding-right: 5px;
    margin-bottom: 15px;
    overflow: auto;
}

    .mail-context::-webkit-scrollbar {
        width: 3px;
    }

    .mail-context::-webkit-scrollbar-thumb {
        background: #2f4583;
        border-radius: 30px;
    }

    .mail-context::-webkit-scrollbar-track {
        background: #271349;
        border-radius: 30px;
    }

.action-box {
    background: url(../images/action-bg.png)no-repeat bottom right;
    background-size: contain;
    height: 80px;
    width: 100%;
    position: relative;
}

.action-btn {
    position: absolute;
    bottom: 14px;
    font-weight: 500;
    right: 100px;
    font-size: 15px;
}

    .action-btn a {
        color: #99a0d6;
        margin: 0 9px;
    }

        .action-btn a:hover {
            color: #fff;
        }

textarea.replybox {
    height: 250px;
    border-radius: 4px;
    border: 1px solid #103254;
    background: rgba(0,0,0,0.2);
    color: #fff;
    padding: 10px;
    font-size: 14px;
}

.reply-msg {
    border-top: 1px dotted #fff;
}

/** VIP **/
.vip-sec {
    background: #b449b4 url("../images/vip/vip-bg.jpg")no-repeat top center;
    background-size: 100%;
    min-height: 600px;
    padding-top: 32%;
    padding-bottom: 100px;
}

.vip-card {
    margin-bottom: 5px;
}

.btn-vip {
    background: #141531;
    font-size: 14px;
    padding: 2px 5px 2px 15px;
    border: 2px solid #48b3e1;
    color: #bcdef6;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: visible;
}

    .btn-vip img {
        max-width: 45px;
        position: relative;
        margin-right: 20px;
    }

    .btn-vip:focus, .btn-vip:hover {
        outline: none;
        box-shadow: none;
        color: #bcdef6;
    }

.btn.btn-vip.collapsed:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    transform: rotate(0);
    transition: linear 0.3s;
    color: #bcdef6;
    font-size: 15px;
}

.btn.btn-vip:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #bcdef6;
    font-size: 14px;
    height: 22px;
    position: absolute;
    right: 23px;
    top: 13px;
    transform: rotate(90deg);
    transition: linear 0.3s;
}

.vip-table-wrapper {
    line-height: 1.2;
    font-size: 13px;
    margin-top: 5px;
}

    .vip-table-wrapper table tr td {
        border: 1px solid #3d608d;
        background: #221b3d;
        padding: 8px 8px;
        font-weight: 500;
        color: #bcdef6;
        text-align: center;
    }

        .vip-table-wrapper table tr td:first-child {
            font-weight: 600;
            width: 70%;
        }

.text-small {
    font-size: 11px;
    font-weight: 400;
}

.vip-table-wrapper table tr td img {
    max-width: 15px;
}

.terms-wrapper {
    background: linear-gradient(to bottom, rgba(46,72,139,1) 0%, rgba(39,19,73,1) 34%, rgba(39,19,73,1) 65%, rgba(46,64,126,1) 100%);
    border: 1px solid #4DFFFF;
    padding: 15px;
    margin-top: 15px;
}

.tnc-vip ol {
    padding: 0;
    padding-left: 15px;
    margin-top: 5px;
}

    .tnc-vip ol li {
        font-size: 12px;
        font-weight: 400;
        padding-bottom: 5px;
    }

.bonus-table {
    width: 100%;
    max-width: 680px;
    margin: auto;
    text-align: center;
    font-size: 13px;
}

    .bonus-table tr td {
        border: 1px solid #b8bdbd;
        padding: 5px;
    }

/** Winning Wheel **/
.wheel-win {
    padding-left: 16%;
    margin: 20px 0 10px;
}

    .wheel-win a {
        display: flex;
        align-items: center;
        color: #cec3f5;
        text-align: left;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
    }

        .wheel-win a img {
            max-width: 30px;
            margin-right: 10px;
        }

        .wheel-win a:hover {
            color: #d255cb;
        }

.winwheel-sec {
    background: #b449b4 url("../images/wheel-bg.jpg")no-repeat top center;
    background-size: 100%;
    min-height: 600px;
    padding-top: 32%;
    padding-bottom: 100px;
}

.token-wheel {
    margin-top: 52%;
    text-align: center;
}

.token-btn {
    background: url(../images/button-w.png)no-repeat center;
    background-size: 100% 100%;
    width: 140px;
    height: 50px;
    color: #fff;
    border: none;
    font-family: 'Orbitron';
    font-size: 15px;
    text-transform: uppercase;
    margin: 0 2px;
    filter: drop-shadow(1px 2px 17px rgb(134,253,255,1));
    transition: 0.3s;
}

    .token-btn span {
        color: #e4bdff;
    }

.winning-tnc {
    color: #e6bdd1;
    background: rgba(0,0,0,0.2);
    max-width: 990px;
    margin: 55px auto 0;
    padding: 20px;
    font-size: 14px;
    border-radius: 8px;
    border: 2px solid rgb(83,32,104,0.2);
    box-shadow: 0 0 8px 0 rgb(255,255,255,0.1);
}

ol.win-tnc {
    padding: 0;
    padding-left: 15px;
}

/** Sport UEFA **/
.uefa-live {
    padding: 15px 10px 5px;
}

.live-sports {
    background: #000 url("/mobile/assets/winw/images/sport/sports_02.jpg")no-repeat top center;
    background-size: cover;
    padding: 30px 0 80px;
}

.scwhite {
    background: rgba(255,255,255,0.75);
}

/** Homepage "Others" tab **/
.tab-pane#others {
    background: #000 url("../images/others/other.jpg")no-repeat top center;
    background-size: 100% 100%;
    height: 57vh;
}

.tab-pane#sports {
    height: 57vh;
}

/** Merdeka Event 2/8/2021 **/
.wheel-win {
    margin: 20px 0 0;
}

.merdeka-sec {
    background: #c346be url("../images/merdeka/merdeka-bg.jpg")no-repeat top center;
    background-size: cover;
    padding-bottom: 100px;
}

.title-merdeka {
    padding: 30px 0 10px;
    margin: auto;
}

.merdeka-table-wrap {
    overflow: auto;
    max-width: 900px;
    margin: auto;
}

.how-title {
    max-width: 90%;
    margin: auto;
    margin-bottom: -5px;
    text-align: center;
}

table.table-merdeka tr td {
    background: #141530;
    color: #bcdef6;
    border: 1px solid #48b3e1;
    padding: 5px 5px;
    text-align: center;
    font-size: 13px;
}

.notice-text {
    text-align: center;
    color: #fff;
    font-weight: 600;
    padding: 4px 0;
    font-size: 13px;
}

.how-play {
    max-width: 90%;
    margin: auto;
    margin-bottom: -10px;
    text-align: center;
}

.spend-box {
    background: rgba(0,0,0,0.4);
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to left, #15c7d8, #cf01fe);
    max-width: 960px;
    margin: 0 auto 15px;
    padding: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 17px;
    font-family: 'Orbitron';
    color: #e4bdff;
    font-weight: 500;
    line-height: 2.3;
}

    .spend-box .notice-text {
        color: cyan;
        font-size: 13px;
        line-height: 1.3;
    }

span.cash-img img {
    max-height: 30px;
    margin: 0 3px;
}

.quiz-merdeka {
    margin: auto;
    margin-bottom: -10px;
    text-align: center;
}

.quiz-wrap {
    padding-bottom: 25px;
}

.quiz-box {
    background: rgba(0,0,0,0.4);
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to left, #15c7d8, #cf01fe);
    color: #fff;
    padding: 25px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.ques-text {
    font-size: 17px;
    font-weight: 600;
    margin: 0 auto 15px;
    width: 87%;
}

.answer-pick-wrapper {
    width: 100%;
}

.pick-btn {
    position: relative;
}

    .pick-btn input[type="radio"] {
        visibility: hidden;
        height: 100%;
        width: 100%;
        left: 0;
        position: absolute;
    }

    .pick-btn label {
        background: url("../images/merdeka/optionbox.png")no-repeat center;
        background-size: 100% 100%;
        max-width: 300px;
        margin: 8px auto;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        cursor: pointer;
        font-weight: 500;
        color: #fff;
        padding: 5px 10px;
        transition: all 0.3s ease-out;
    }

    .pick-btn input[type="radio"]:checked + label {
        background: url("../images/merdeka/optionbox-hover.png")no-repeat center;
        background-size: 100% 100%;
    }

.ques-submit-wrap {
    margin: 10px 0;
    text-align: center;
}

button.ques-submit {
    background: url(../images/button-w.png)no-repeat center;
    background-size: 100% 100%;
    width: 180px;
    height: 60px;
    color: #fff;
    border: none;
    font-family: 'Orbitron';
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 10px;
    filter: drop-shadow(0px 8px 10px rgb(0,0,0,0.4));
    transition: 0.3s;
}

    button.ques-submit:hover {
        filter: brightness(1.15) drop-shadow(0px 8px 10px rgb(0,0,0,0.4));
        transform: scale(1.03);
        transition: 0.3s;
    }

.quiz-terms {
    color: #e6bdd1;
    background: rgba(0,0,0,0.25);
    max-width: 990px;
    margin: 30px auto 0;
    padding: 15px;
    font-size: 14px;
    border-radius: 13px;
    border: 2px solid rgb(83,32,104,0.2);
    box-shadow: 0 0 8px 0 rgb(255 255 255 / 30%);
}

    .quiz-terms ol {
        padding-left: 17px;
        margin: 0;
    }

.quiz-terms-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

/** Slots Challenges update - 25/8/2021 **/
.slots-challenges-sec {
    background: #622575 url("../images/slots-challenges/bg.jpg")no-repeat top center;
    background-size: 150%;
    padding-bottom: 70px;
}

.challenge-title {
    text-align: center;
    padding-bottom: 15px;
}

.chal-title {
    text-align: center;
    padding-bottom: 5px;
    filter: drop-shadow(0px 0px 9px rgb(0,0,0,0.8));
}

.superior-frame {
    background: rgba(20,21,48,0.6);
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to left, #15c7d8, #cf01fe);
    max-width: 837px;
    margin: 0 auto 10px;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-slots {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

    .sp-slots .sp-slot-box:first-child {
        grid-column: 1/3;
        max-width: 50%;
    }

.sp-slot-box {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.logo-slt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accum-slot {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.prize-chall {
    font-family: 'Orbitron';
    font-size: 24px;
}

span.caret-slot {
    color: #4dffff;
    filter: drop-shadow(0px 0px 4px #4dffff);
    margin: 0 15px;
}

.current-turn {
    background: url(../images/slots-challenges/frame-2.png)no-repeat top center;
    background-size: 100% 100%;
    max-width: 310px;
    min-height: 74px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.regular-challenge-wrapper {
    max-width: 860px;
    margin: 15px auto;
}

.regbox {
    max-width: 262px;
    margin: 0 auto 30px;
    color: #fff;
    text-align: center;
}

.reg-top {
    background: url(../images/slots-challenges/frame-slots.png)no-repeat top center;
    background-size: 100% 100%;
    max-width: 262px;
    min-height: 357px;
    margin: 0 auto;
    padding: 40px 15px 15px;
}

    .reg-top .sp-slot-box {
        width: auto;
    }

.reg-caption {
    color: #c58fe2;
    font-size: 15px;
    font-weight: 500;
    height: 86px;
}

.prize-chall-2 {
    font-family: 'Orbitron';
    font-size: 20px;
    font-weight: 500;
}

    .prize-chall-2 .caret-slot {
        margin: 0 5px;
    }

.reg-btm {
    background: url("../images/slots-challenges/slot-turnover.png")no-repeat top center;
    background-size: 100% 100%;
    max-width: 250px;
    height: 109px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.regb-1 {
    font-size: 15px;
    font-weight: 700;
    color: #9283d1;
}

.regb-2 {
    font-size: 18px;
    font-weight: 600;
}

button.term-challenge-btn {
    background: none;
    border: none;
    padding: 0;
}

.challe-terms ol {
    margin-top: 15px;
    padding-left: 15px;
}

    .challe-terms ol li {
        padding-bottom: 5px;
    }

/** Esports Prediction Updated - 9/9/2021 **/

.modal-dialog.bracket {
    max-width: 900px;
    top: 10%;
}

.modal-content.bracket {
    background: rgba(0,0,0,0.8);
    border: none;
    border-radius: 0;
}

button.close-btn {
    background: none;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: -15px;
    z-index: 2;
}

.esport-predict-sec {
    background: #c84dc1 url("/mobile/assets/winw/images/esports-prediction/bg.jpg")no-repeat top center;
    background-size: 100%;
    padding-bottom: 100px;
    padding-top: 10px;
}

.require-box {
    background: rgba(0,0,0,0.4);
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to left, #15c7d8, #cf01fe);
    max-width: 960px;
    margin: 0 auto 15px;
    padding: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 17px;
    font-family: 'Orbitron';
    color: #e4bdff;
    font-weight: 500;
    line-height: 2.3;
}

.esport-game-title {
    margin: 0 auto -4%;
    text-align: center;
    max-width: 62%;
}

.matchbox {
    position: relative;
    background: rgba(0,0,0,0.4);
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to left, #15c7d8, #cf01fe);
    color: #fff;
    max-width: 550px;
    margin: auto;
    padding: 10px 5px 20px;
    margin-bottom: 50px;
}

.match-team {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    text-align: center;
}

.match-detail {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.matchitem {
    position: relative;
    z-index: 2;
}

.line-dot {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    max-width: 70%;
    margin: auto;
}

.team-btn {
    position: relative;
}

    .team-btn input[type="radio"] {
        visibility: hidden;
        height: 100%;
        width: 100%;
        left: 0;
        position: absolute;
    }

    .team-btn label {
        width: 120px;
        height: 120px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        cursor: pointer;
        font-weight: 500;
        color: #fff;
        padding: 5px 10px;
    }

    .team-btn input[type="radio"]:checked + label {
        background: url("/mobile/assets/winw/images/esports-prediction/round.png")no-repeat center;
        background-size: 100%;
        margin: auto;
    }

.vs-img {
    max-width: 81px;
    margin: auto;
}

.predict-submit-wrap {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -29%;
}

button.predict-submit {
    background: url(/mobile/assets/winw/images/button-w.png)no-repeat center;
    background-size: 100% 100%;
    width: 180px;
    height: 60px;
    color: #fff;
    border: none;
    font-family: 'Orbitron';
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 10px;
    filter: drop-shadow(0px 8px 10px rgb(0,0,0,0.4));
    transition: 0.3s;
}

    button.predict-submit:hover {
        filter: brightness(1.15) drop-shadow(0px 8px 10px rgb(0,0,0,0.4));
        transform: scale(1.03);
        transition: 0.3s;
    }

.match-terms {
    color: #e6bdd1;
    background: rgba(0,0,0,0.25);
    max-width: 900px;
    margin: 80px auto 0;
    padding: 15px 10px;
    font-size: 14px;
    border-radius: 13px;
    border: 2px solid rgb(83,32,104,0.2);
    box-shadow: 0 0 8px 0 rgb(255 255 255 / 30%);
    font-size: 13px;
}

.match-terms-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.match-terms ol {
    padding-left: 17px;
    margin-bottom: 0;
}

/** CSS Update 15/11/2021 **/
a.copy-btn {
    background: #6841cd;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 30px;
    padding: 2px 8px;
    position: absolute;
    right: 10px;
    top: 5px;
}

    a.copy-btn:hover {
        background: #fff;
        color: #6841cd;
    }

.info-table tr td {
    position: relative;
}

.seo-sec {
    background: #1b1b1d;
    font-size: 13px;
    color: #fff;
    padding: 80px 0 0px;
    margin-bottom: 30px;
    padding-bottom: 50px;
}

    .seo-sec strong {
        color: #f1d59b;
    }

    .seo-sec a {
        color: #f1d59b;
        text-decoration: underline;
    }

    .seo-sec p {
        padding-bottom: 10px;
    }

    .seo-sec h1 {
        font-size: 20px;
        font-weight: 700;
        color: #f1d59b;
        margin-bottom: 5px;
    }

    .seo-sec h2 {
        font-size: 18px;
        font-weight: 600;
        color: #f1d59b;
        margin-bottom: 5px;
    }

    .seo-sec h3 {
        font-size: 16px;
        font-weight: 500;
        color: #f1d59b;
        margin-bottom: 5px;
    }

/** Blog Page Update 13/9/2022 **/
.blog-title {
    text-align: center;
    max-width: 80%;
    margin: 0 auto -3%;
}

.blog-box {
    background: url(../images/blog/blog-base.png)no-repeat top center;
    background-size: 100% 100%;
    max-width: 600px;
    width: 100%;
    margin: -12px auto;
    padding: 4% 4% 13%;
    position: relative;
    font-family: 'Orbitron';
}

.blog-title-wrapper {
    font-size: 14px;
    color: #fff;
    text-align: left;
    padding: 10px 10px 0;
    line-height: 1.2;
    overflow: hidden;
}

    .blog-title-wrapper i {
        color: #4cffff;
    }

.date-blog {
    color: #fff584;
    padding: 10px 0 3px;
    font-size: 12px;
}

.blog-subtitle {
    padding: 5px 5px 15px;
    font-size: 12px;
    color: #fff;
    overflow: hidden;
    height: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

a.more-info-btn {
    color: #fff;
    position: absolute;
    right: 5%;
    bottom: 6%;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

    a.more-info-btn:hover {
        color: #4cffff;
    }

    a.more-info-btn i {
        color: #4cffff;
        margin-right: 5px;
    }

.pagination-wrap {
    text-align: center;
    padding: 30px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.page-bubble {
    color: #fff;
    background: #8671c9;
    border: 1px solid #aeaab0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron';
    font-size: 13px;
    margin: 0 3px;
}

    a.page-bubble.active, a.page-bubble:hover, a.page-bubble.arrow:hover {
        background: #543276;
    }

    a.page-bubble.arrow {
        background: #ab9cdd;
    }

.blog-inner-container {
    background: url(/mobile/assets/winw/images/blog/blog-frame_bottom.png)no-repeat bottom center;
    background-size: 100%;
    color: #fff;
    padding-bottom: 2px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-img-frame {
    padding-bottom: 5;
}

.blog-top {
    background: url(/mobile/assets/winw/images/blog/blog-frame_top.png)no-repeat;
    background-size: 100% 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 15px 5px;
}

.blog-center {
    background: url("/mobile/assets/winw/images/blog/blog-frame_center.png")top center no-repeat;
    background-size: 100% 100%, 100% 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 10px 10px;
    font-family: 'Orbitron';
}

.date-blog-inner {
    font-family: 'Orbitron';
    color: #fff584;
    font-size: 15px;
    padding: 0px 0px 5px;
}

.blog-content {
    font-family: 'Montserrat';
    padding: 12px 10px;
    color: #fff;
}

.back-wrap {
    text-align: center;
    padding: 15px 0;
}

a.blog-back-btn {
    background: url(/mobile/assets/winw/images/acc-btn.png)no-repeat;
    background-size: 100% 100%;
    max-width: 155px;
    height: 55px;
    margin: 0 auto;
    font-family: 'Orbitron';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-transform: uppercase;
}

/**  Updated 14/2/2023 **/
.info-container {
    background: linear-gradient(to bottom, rgba(46,72,139,1) 0%, rgba(39,19,73,1) 34%, rgba(39,19,73,1) 65%, rgba(46,64,126,1) 100%);
    border: 1px solid #4DFFFF;
    padding: 15px 15px;
}

.info-title {
    font-family: 'Orbitron';
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.bank-table tr td {
    border: 1px solid #a427a5;
    padding: 5px;
}

ul.terms {
    padding-left: 17px;
}

button.btn-tnc {
    background: #290b34;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 15px;
    color: #ca42c6;
    border: none;
    border-radius: 5px;
}

    button.btn-tnc.collapsed {
        background: #a427a5;
        color: #fff;
        border: 1px solid #353535;
        margin-bottom: 0;
    }

    button.btn-tnc:focus {
        outline: none;
    }

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: rgba(0,0,0,0.3);
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.3;
}

    .tnc-body ol {
        padding-left: 15px;
    }

        .tnc-body ol li {
            padding-bottom: 8px;
        }

.info-content h5 {
    font-weight: 600;
    font-size: 15px;
}

.help-text {
    font-size: 15px;
    padding-bottom: 10px;
}

.contact-wrap {
    text-align: center;
}

.ctbox {
    background: linear-gradient(to bottom, rgba(186,0,196,1) 0%, rgba(121,9,76,1) 100%);
    color: #fff;
    border: 1px solid #630bb8;
    font-size: 16px;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

    .ctbox:hover {
        background: linear-gradient(to top, rgba(186,0,196,1) 0%, rgba(121,9,76,1) 100%);
    }

    .ctbox i {
        font-size: 30px;
    }

    .ctbox a {
        color: #fff;
        display: block;
        font-size: 14px;
        font-weight: 600;
    }
/** Updated - 13/12/2024 **/
.cert-wrapper img {
    display: inline-block;
    margin: 2px 8px;
    max-height: 35px;
    text-align:center;
}

/** Updated - 26/12/2024 **/
.mission-reward {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
    grid-gap: 5px;
    margin: 15px 0;
}

.msbox {
    position: relative;
    background: #141531;
    padding: 10px 10px 15px;
    font-size: 12px;
}

.mstext-1 {
    color: #fff686;
    font-weight: 600;
}

.mstext-2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

button.ms-claim-btn {
    background: #3C3C3C;
    color: #fff;
    border-radius: 30px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 2px;
    width: 100%;
    max-width: 110px;
    height: 28px;
    pointer-events: none;
}

    button.ms-claim-btn.active {
        background: #fff;
        color: #6841cd;
        pointer-events: auto;
    }

        button.ms-claim-btn.active:hover {
            transform: scale(0.98);
            filter: brightness(1.07);
        }

