@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900');

body {
    background: #1b2026;
    font-family: "gotham", sans-serif;
    line-height: 1.2;
    font-size: 15px;
    color: #fff;
}

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,
button:focus,
button:hover {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #222a35;
}

::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px #222a35; */
    border-radius: 15px;
    background-color: #222a35;
}

::-webkit-scrollbar-thumb {
    border-radius: 15px;
    /* -webkit-box-shadow: inset 0 0 6px #67696d; */
    background-color: #67696d;
}

input:focus {
    outline: none !important;
    border: none;
}

@font-face {
    font-family: "gotham";
    src: url("../fonts/Gotham-Medium.otf") format("opentype");
}

@font-face {
    font-family: "gotham-light";
    src: url("../fonts/Gotham-Light.otf") format("opentype");
}

.got-light {
    font-family: "gotham-light";
}

/* modal animation */
@keyframes appear {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

dialog {
    color: #fff;
    background: transparent;
    max-width: 100%;
    max-height: 100%;
}

dialog[open] {
    animation: appear 0.25s linear;
    display: flex;
}

dialog::backdrop {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(54, 54, 54, 0.5));
    backdrop-filter: blur(3px);
}

dialog#menu-modal {
    justify-content: end;
    color: #fff;
}

body:has(dialog[open]) {
    overflow: hidden;
}

/* end modal animation */

/* header */
.header-bell {
    color: #67696d;
    position: relative;
}

.header-bell i {
    font-size: 25px;
}

.bell-number {
    background: #fd2d3d;
    right: -50%;
    bottom: 50%;
    font-size: 11px;
    padding: 5px 7px;
    text-align: center;
    line-height: 1.0;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

.signup-btn {
    background: #fd2d3d;
    padding: 10px 25px;
}

.signup-btn:hover {
    background: #67696d;
}

.mobile-top-header {
    background: transparent;
    padding: 5px 15px;
}

.mobile-top-header.fixed-bg {
    background: #1b2026;
}

.login-btn:hover {
    color: #fd2d3d;
}

.hdr-search input {
    background: #1b2026;
    border: 1px solid transparent;
}

.hdr-search input::placeholder {
    color: #fff;
}

.hdr-search:hover {
    border: 1px solid #67696d;
}

.hdr-menu-grid{
    grid-template-columns: 10% 80%;
}

.hdr-menu-grid img{
    margin: 0 auto;
}
/* end header */


/* index page */
.t-body {
    padding: 0px 20px;
}

.index-wrap {
    display: grid;
    grid-template-columns: 15% 65% 20%;
    gap: 10px;
    padding: 20px 10px;
}

.color-red {
    color: #ff332c;
}

.color-grey {
    color: #67696d;
}

.bg-main-red,
.button-red,
.button-grey:hover {
    background: #ff332c;
}

.bg-main-grey,
.button-red:hover,
.button-grey,
.button-hover-grey:hover {
    background: #67696d;
}

.sidemenu-div {
    border-color: #67696d;
}

.index-left a:hover span,
.index-left a:hover i {
    color: #fff;
}

.index-left a:hover img {
    filter: brightness(0) invert(1);
}

.index-left a.no-filter:hover img {
    filter: none;
}

.index-bonus-box {
    background: #222a35;
    grid-template-columns: 40% 60%;
}

.index-bonus-num span {
    font-size: 30px;
}

.bonus-new {
    top: 10px;
    right: 0px;
    max-width: 40px;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.arrow-slider-wrap {
    padding: 20px 0px 10px;
}

.arrow-slider {
    margin: 10px 0;
}

.arrow-slider .slide-arrow {
    cursor: pointer;
    max-width: 45px;
    background: #222a35;
    font-size: 20px;
    padding: 5px 10px;
}

.arrow-slider .slide-arrow:hover {
    background: #fd2d3d;
}

.swiper.new-swiper {
    overflow-x: hidden;
    height: 100%;
    z-index: 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.cat-btn {
    background: #222a35;
    display: block;
    padding: 10px;
    font-size: 13px;
}

.cat-btn:hover {
    background: #fd2d3d;
}

.index-prov-box {
    background: #232a34;
    position: relative;
    padding: 10px 10px 40px;
}

.index-prov-img {
    background: #1b2026;
    padding: 15px 10px;
}

.index-prov-btn {
    background: #232a34;
    border: 3px solid #1b2026;
    padding: 10px;
    top: -30px;
    width: 80%;
    margin: auto;
}

.index-prov-btn:hover {
    background: #fd2d3d;
}

.index-jp-num {
    margin: 0 auto;
    top: 15px;
    left: 0;
    right: 0;
    max-width: 15vw;
}

.index-jp-title {
    margin: 0 auto;
    top: 20%;
    left: 0;
    right: 0;
}

.index-jp-num img {
    margin: auto;
}

.index-jp-num span {
    left: 0;
    right: 0;
    bottom: 30%;
    font-size: 1.5vw;
}

.index-jp-win {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 32%;
    max-width: 50%;
}

.index-jp-name {
    bottom: 10%;
    margin: auto;
    left: 0;
    right: 0;
}

.index-jp-name span {
    display: block;
}

.index-tour-btn {
    background: #222a35;
    padding: 10px;
}

.index-tour-btn:hover {
    background: #fd2d3d;
}

.index-tour-btn-1 {
    background: #fd2d3d;
    text-align: center;
    padding: 10px 20px;
}

.index-tour-btn-1:hover {
    background: #67696d;
}

.tour-right {
    width: 35%;
}

.index-tour-content {
    padding-top: 10%;
}

.tour-right-note {
    font-size: 10px;
    font-weight: lighter;
}

.tour-time-wrap {
    background: #1b2026;
}

.tour-time-box {
    background: #232a34;
    padding: 10px 18px 20px;
}

.tour-day {
    background: #fd2d3d;
    width: 80%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
    padding: 3px;
    font-size: 10px;
}

.index-vip-box {
    background: #232a34;
    padding: 15px;
}

.index-vip-btn {
    background: #fd2d3d;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
}

.index-vip-btn:hover {
    background: #67696d;
}

.index-us-left {
    width: 45%;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    padding-top: 40px;
}

.index-us-right {
    width: 45%;
    top: 46%;
    right: 20px;
    transform: translateY(-50%);
    padding-top: 60px;
}

.index-join-btn {
    background: #fd2d3d;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
}

.index-join-btn:hover {
    background: #67696d;
}

.right-bg {
    background: #232a34;
    padding: 15px;
}

.index-jp-wrap {
    background: #1b2026;
    padding: 10px;
}

.index-jp-wrap:hover {
    background: #fd2d3d;
}

.index-jp-wrap img {
    max-width: 40px;
}

.jp-swiper .swiper-container {
    overflow: hidden;
    height: 38vh;
}

.jp-swiper .swiper-slide {
    height: auto;
    margin: 0;
    padding: 0;
}

.index-detail-btn {
    border-radius: 5px;
    padding: 10px 15px;
    background: #fd2d3d;
    left: 0;
    right: 0;
    margin: auto;
    top: 40%;
    width: 40%;
    text-align: center;
}

.index-detail-btn:hover {
    background: #67696d;
}

.index-pg-wrap {
    border-bottom: 1px solid #67696d;
    padding: 10px 0px;
}

.index-pg .index-pg-wrap:last-of-type {
    border-bottom: 1px solid transparent;
}

.index-pg-wrap img {
    max-width: 80px;
}

.index-play-btn {
    background: #fd2d3d;
    padding: 10px;
    border-radius: 5px;
}

.index-play-btn:hover {
    background: #67696d;
}

.swiper-button-next.popup, .swiper-button-prev.popup{
    background-image: none;
    color: #fff;
    background-color: rgb(223 223 223 / 70%);
    background-color: rgb(31 41 55 / 0.3);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.swiper-button-next.popup:after, .swiper-button-prev.popup:after {
    content: "";
}

button.popup-close-btn {
    color: #212934;
    background: #fd2d3d;
    width: 30px;
    height: 30px;
    top: -30px;
    right: 65px;
}
/* end index page */

/* footer  */
.t-footer {
    background: #232a34;
    font-family: "gotham-light";
    padding: 50px 0px;
    font-size: 13px;
}

.footer-top {
    border-bottom: 1px solid #67696d;
    flex-wrap: wrap;
}

.footer-title {
    color: #fff;
}

.footer-link:hover {
    color: #fff;
}

.footer-prov {
    border-bottom: 1px solid #67696d;
    flex-wrap: wrap;
}

.footer-social {
    border-bottom: 1px solid #67696d;
    flex-wrap: wrap;
}

/* end footer  */

/* footer menu */
.menu-btm {
    background: #222a35;
    bottom: 0;
    height: 55px;
    box-shadow: 0px -3px 5px 0px rgba(202, 250, 206, 0.2);
    z-index: 1;
}

.menu-wrapper a.active {
    color: #fff;
}

/* end footer menu */


/* side menu  */
.menu-modal-bg {
    background-color: #222a35;
}

/* end side menu  */

/* login reg modal */
.login-bg {
    background: url(../images/index/login/popup-login-register.png) no-repeat;
    background-size: 100% 100%;
    min-height: 400px;
}

button.login-close-btn {
    color: #212934;
    background: #fd2d3d;
    width: 30px;
    height: 30px;
    top: 55px;
    right: 0px;
}

input.form-bg,
select.form-bg {
    background-color: #222a35;
}

.reg-create-btn {
    background: #fd2d3d;
    color: #fff;
    padding: 10px;
}

.reg-create-btn:hover {
    background: #67696d;
}

.verify-code {
    width: 100px;
    right: 0;
    top: 0;
    height: 100%;
}

/* end login reg modal */

/* casino page */
.top-winner {
    background: #232a34;
    padding: 10px;
}

.win-red-box {
    background: url(../images/products/casino/winnerboard-1.png) no-repeat;
    background-size: 100% 100%;
    padding: 20px 10px;
}

.win-dark-box {
    background: url(../images/products/casino/winnerboard-2.png) no-repeat;
    background-size: 100% 100%;
    padding: 20px 10px;
}

.win-amt {
    background: #232a34;
    padding: 10px;
}

.prod-overlay {
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s linear;
}

.prod:hover .prod-overlay {
    opacity: 1;
}

.prod-play-btn {
    width: 50px;
    height: 50px;
    padding: 10px 18px;
    background: #fd2d3d;
    margin: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/* end casino page */


/* sports page */
.sports-tab-red {
    color: #fd2d3d;
    border-color: #fd2d3d;
}

.bet-box {
    background: #232a34;
    padding: 20px;
}

.bet-date {
    background: #353e4a;
    padding: 5px 10px;
    bottom: 30px;
    max-width: 50%;
}

.bet-logo {
    background: #1b2026;
    padding: 10px;
    max-width: 55px;
}

.bet-green-box {
    background: #09aa20;
    padding: 5px 15px;
}

.bet-dark-box {
    background: #1b2026;
    padding: 5px 15px;
}

.bet-put-btn {
    background: #fd2d3d;
    color: #fff;
    padding: 10px;
}

.bet-put-btn:hover {
    background: #67696d;
}

.bet-arrow-slider {
    position: absolute;
    top: -1px;
    right: 0px;
}

.swiper.sports-swiper {
    position: unset;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

button.acc-bg {
    background: #303843;
}

button.acc-bg:hover {
    background: #67696d;
    color: #fff;
}

.sp-acc-body {
    background: #232a34;
    border-color: #232a34;
}

.pl-dark-bg {
    background: #1b2026;
}

.pl-stat {
    background: #fd2d3d;
    padding: 5px 10px;
}

.pl-flag {
    background: #303843;
}

.pl-point {
    background: #303843;
    border: 1px solid #303843;
    padding: 10px;
}

.color-green {
    color: #09aa20;
}

.pl-point-red {
    background: #303843;
    border: 1px solid #fd2d3d;
    padding: 10px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.pl-team {
    width: 53%;
    gap: 59px;
}

.pl-team-name {
    width: 130px;
}

/* end sports page */


/* slots page */
.slt-popular {
    background: #232a34;
    padding: 10px;
}

/* end slots page */


/* esports page */
.esports-live {
    background: #232a34;
    padding: 20px;
}

.watch-btn {
    background: #fd2d3d;
    padding: 10px;
}

.watch-btn:hover {
    background: #67696d;
}

.es-go-icon {
    opacity: 0;
}

.esports-pop-box:hover .es-go-icon {
    opacity: 1;
}

.esports-pop-box {
    padding: 10px;
}

.esports-pop-box:hover {
    background: #fd2d3d;
}

/* end esports page */

/* about us page */
.abt-menu {
    background: #222a35;
    color: #697582;
}

.abt-menu-btn {
    background: transparent;
    padding: 10px 15px;
    color: #697582;
}

.abt-menu-btn.active,
.abt-menu-btn:hover {
    background: #fd2d3d;
    color: #fff;
}

/* end about us page */

/* banking page */
.bank-table tr.trans td {
    color: #fff;
    border: 1px solid #fd2d3d;
    padding: 2px;
}

.bank-table tr.trans1 td {
    /* background: rgb(255 255 255);
    color: #000; */
    border: 1px solid #fd2d3d;
    padding: 2px;
}

.bank-table tr.dwbox td {
    background: #fd2d3d;
    color: #fff;
    font-weight: 600;
    padding: 2px;
}

/* end banking page */

/* faq page */
.tnc-acc-body {
    border: 1px solid #67696d;
}

/* end faq page */

/* contact us page */
input.ctc-form-bg,
textarea.ctc-form-bg {
    background: #1b2026;
    border: 1px solid transparent;
}

.send-btn {
    background: #fd2d3d;
    padding: 10px 15px;
}

.send-btn:hover {
    background: #67696d;
}

.ctc-right-bg {
    background: #1b2026;
}

/* end contact us page */

/* promotion page */
button.promo-close-btn {
    color: #212934;
    background: #fd2d3d;
    width: 30px;
    height: 30px;
    top: 55px;
    right: 0px;
}

.promo-modal-bg {
    background: #222a35;
}

.promo-modal-content {
    max-height: 500px;
}

/* end promotion page */

/* index afterlogin page */
button.top-profile {
    background: #222a35;
}

.top-profile:hover {
    background: #67696d;
}

.top-username {
    overflow: hidden;
    position: relative;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80%;
}

.al-hdr-list i {
    width: 10%;
}

button.bln-close-btn {
    color: #212934;
    background: #fd2d3d;
    width: 30px;
    height: 30px;
    top: -35px;
    right: -25px;
    z-index: 2;
}

.bln-modal-top {
    background: #232a34;
}

.all-btn {
    background: #fd2d3d;
    padding: 5px 20px;
}

.all-btn:hover {
    background: #67696d;
}

.bln-modal-body {
    max-height: 500px;
}

.bln-list {
    background: #1b2026;
}

.bln-list:hover {
    background: #67696d;
}

.bln-out {
    background: #48dd30;
    padding: 5px 10px;
}

.bln-in {
    background: #fd2d3d;
    padding: 5px 10px;
}

.bln-out:hover,
.bln-in:hover {
    opacity: 0.6;
}

.al-hdr-inbox {
    background: #fd2d3d;
    height: 20px;
    width: 20px;
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.dropdown-button {
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.dropdown-button:hover {
    transform: translateY(3px);
    box-shadow: 3px 3px 30px rgba(118, 96, 168, 0.17);
}

.dropdown-menu {
    transform: scale(0.01);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease 0.15s;
    transform-origin: center top;
    overflow: hidden;
    margin-left: -70px;
}

.dropdown-menu.open {
    transform: scale(1);
    opacity: 1;
    box-shadow: 3px 3px 30px rgba(118, 96, 168, 0.15);
}

.dropdown-menu a {
    transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

/* end index afterlogin page */

/* account page  */
.al-wrap {
    display: grid;
    grid-template-columns: 15% 85%;
    gap: 10px;
    padding: 20px 10px;
}

.acc-info {
    background: #232a34;
}

.acc-vip {
    -webkit-box-pack: justify;
    z-index: 0;
    background: linear-gradient(294.54deg, rgb(72, 84, 99) 10.77%, rgb(157, 167, 177) 108.33%);
    background: #232a34;
    padding: 5px 12px;
    /* min-height: 85px; */
}

.acc-info::after {
    background: url(../images/afterlogin/vipbadge_big.png) no-repeat;
    content: "";
    width: 133px;
    height: 160px;
    position: absolute;
    background-size: contain;
    top: 0px;
    right: 0px;
}

.acc-vip-title {
    background-image: linear-gradient(179.01deg, rgb(229, 240, 254) 8.85%, rgb(171, 182, 196) 85.43%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.acc-info-div {
    border-color: #67696d;
    height: 70px;
}

.change-pw-btn {
    background: #ff332c;
    padding: 5px 15px;
}

.change-pw-btn:hover {
    background: #67696d;
}

.acc-content {
    background: url(../images/afterlogin/bg-after_login.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.acc-menu {
    background: #232a34;
}

.acc-menu-list:hover {
    color: #ff332c;
}

.acc-menu-title {
    background: linear-gradient(to right, #67696d 0%, #232a34 100%);
    padding: 8px 20px;
}

.accordion-item {
    margin: 5px auto;
}

.accordion-item .accordion-title {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    cursor: pointer;
}

.accordion-item .accordion-title:hover {
    transition: all 0.8s ease-out;
}

.accordion-item .accordion-active {
    background-color: rgb(75 85 99);
    color: #fff;
}

.accordion-item .accordion-content {
    display: none;
}

/* end account page  */

/* profile page */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.pf-update-btn {
    background: #ff332c;
}

.pf-update-btn:hover {
    background: #67696d;
}

/* end profile page */

/* history page */
select option {
    line-height: 60px;
}

/* end history page */

/* inbox page */
.inbox-wrap {
    max-height: 400px;
}

.chatMsg {
    padding: 15px;
    height: calc(100% - 80px);
    margin-bottom: 30px;
}

.msg {
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0.55);
}

.chatMsg ul li {
    margin-bottom: 15px;
}

.msg-reply {
    display: block;
    position: relative;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
    color: #000;
    border-radius: 5px;
}

.msg::before,
.msg-reply::before {
    position: absolute;
    left: -8px;
    top: 0px;
    content: "";
    display: block;
    border-bottom: 15px solid transparent;
}

.msg-reply {
    margin-left: inherit;
    background: #ff332c;
    color: #ffffff;
    padding: 10px;
    font-size: 13px;
}

.msg-reply::before {
    left: inherit;
    right: -9px;
    border-right: inherit;
}


.chatBox {
    bottom: 0;
    left: 0;
    right: 0;
}

.chatBox .mdi-attachment {
    position: absolute;
    z-index: 2;
    left: 10px;
    font-size: 20px;
    bottom: 15px;
    color: #4d61a6;
    cursor: pointer;
}

.chatBox .mdi-send {
    width: 32px;
    height: 32px;
    line-height: 32px;
    position: absolute;
    z-index: 2;
    bottom: 8px;
    right: 10px;
    font-size: 16px;
    color: #fff;
    background: #2283f6;
    text-align: center;
    cursor: pointer;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    border-radius: 32px;
}

.chatBox .mdi-send.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.chatBox textarea {
    display: block;
    resize: none;
    width: 100%;
    border: 0;
    border-top: 1px solid #ccc;
    background: #fff;
    padding: 12px 50px 12px 40px;
    position: absolute;
    bottom: 0;
    min-height: 45px;
    overflow: hidden;
    color: #000;
}

.hiddendiv {
    display: none;
}

.chatBox textarea:focus {
    outline: none;
}

.msg-content {
    background: #ffffff;
}

.mdi-send:before {
    content: "\f1d8";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    right: 10px;
}

.reply-btn {
    background: #fd2d3d;
}

.signup-btn:hover {
    background: #67696d;
}

/* end inbox page */

/* deposit page */
.dep-success-icon {
    font-size: 100px;
}

/* end deposit page */

/* blog page */
.blog-bg {
    background: #232a34;
}

.blog-cat {
    right: 10px;
    top: 10px;
}

.blog-read-btn {
    background: #fd2d3d;
}

.blog-read-btn:hover {
    background: #67696d;
}

.blog-divider {
    border-color: #67696d;
    height: 20px;
}

/* end blog page */


/* fortune wheel page */
.wheel-point {
    bottom: 40%;
    top: auto;
    left: 0;
    right: 0;
    margin: 0px auto;
    z-index: 1;
    width: 15%;
}

.wheel-frame {
    width: 55.5%;
    bottom: 5%;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0px auto;
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg)
    }

    80% {
        transform: rotate(1turn)
    }

    to {
        transform: rotate(1turn)
    }
}

.wheel-token-btn {
    background: #232a34;
}

/* end fortune wheel page */

/* vip page */
.vip-info {
    background: linear-gradient(294.54deg, rgb(72, 84, 99) 10.77%, rgb(32 41 51) 108.33%);
}

.vip-info::after {
    background: url(../images/afterlogin/vipbadge_big.png) no-repeat;
    content: "";
    width: 133px;
    height: 160px;
    position: absolute;
    background-size: contain;
    top: 0px;
    right: 0px;
}

.vip-title {
    background-image: linear-gradient(179.01deg, rgb(229, 240, 254) 8.85%, rgb(171, 182, 196) 85.43%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.vip-table-title {
    background: linear-gradient(to right, #67696d 0%, #232a34 100%);
}

.vip-table table tbody th,
.vip-table table thead th:first-child {
    position: sticky;
    left: 0;
}

div::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
} */

div::-webkit-scrollbar-thumb {
    background-color: #67696d;
}

/* end vip page */


/* referral program page */
.ref-info {
    background: linear-gradient(294.54deg, rgb(72, 84, 99) 10.77%, rgb(32 41 51) 108.33%);
}

#myRange {
    accent-color: #fd2d3d;
}

/* end referral program page */

/* lucky gift box */
.gift-box{
    margin-left: 12%;
    margin-top: 5px;
    bottom: 10%;
    z-index: 3;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

button.lucky-close-btn {
    color: #212934;
    background: #fd2d3d;
    width: 30px;
    height: 30px;
    top: 55px;
    right: 0px;
    z-index: 1;
}

.text-gold {
    font-size: 37px;
    line-height: 33px;
    background: #ECE976;
    background: repeating-linear-gradient(to bottom, #ECE976 0%, #F29835 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 0px #000);
}

.floating-all img {
    width: 70%;
}

.floating-wrap img {
    margin: 0px auto;
    opacity: 1;
}

.floating-text {
    top: 25%;
    left: 0;
    right: 0;
    margin: 0px auto;
    padding: 16px;
    color: #000;
}

.floating-pop {
    display: inline-flex;
    padding: 10px 20px;
    color: #fff;
    font-size: 50px;
    text-shadow: 3px 3px black;
    line-height: 30px;
}

#closeButton{
    right: 15%;
    top: -20px;
}

/* end lucky gift box */


/* daily reward page */
.daily-list{
    bottom: 55px;
    left: 0;
    right: 0;
}

.daily-day{
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0px auto;
}

.daily-list a img{
    filter: grayscale(0.8);
}

.daily-list a.active img, .daily-list a.claimed img{
    filter: grayscale(0);
}

.daily-list a.claimed .daily-day{
    display: none;
}

.daily-light{
    bottom: -27px;
    left: 0;
    right: 0;
    margin: 0px auto;
}

.daily-coin{
    margin: 0px auto;
    z-index: 1;
}

/* end daily reward page */


/* mission page */
.mission-title{
    top: 0px;
}

.mission-btn{
    bottom: -5px;
}
/* end mission page */


/* p2e page */
.p2e-title{
    background: #232a34;
}

.p2e-info{
    border: 1px solid #232a34;
}
/* end p2e page */


/* reward & redemption page */
.reward-bg{
    background: url(../images/reward-redemption/rr-bg.png) no-repeat center top;
}

.reward-date{
    left: 0;
    right: 0;
}

.reward-tnc-btn{
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, #F5E489 0%, #D88127 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    filter: drop-shadow(2px 2px 0px black);
}

.reward-token{
    left: 0;
    right: 0;
}

.reward-box{
    left: 0;
    right: 0;
    bottom: 25px;
}

.point-text {
    line-height: 8px;
    color: #c498ff;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0px 0 #000, 1px 0px 0 #000, 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000, 1px 2px 0 #000, -1px 2px 0 #000, 1px -2px 0 #000, -1px -2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000;
}

.reward-claim-btn{
    margin-top: -20px;
}

.reward-claim-btn span{
    color: #dd9dfd;
    left: 0;
    right: 0;
    bottom: 0px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 20px #8e23d6;
}

.reward-modal-bg{
    background: url(../images/reward-redemption/bg-reward.png) no-repeat;
    background-size: 100% 100%;
    padding-bottom: 10px;
}

.reward-modal-box{
    bottom: 50px;
}

.reward-modal-btn{
    margin-top: -40px;
}

.reward-modal-btn span{
    color: #dd9dfd;
    left: 0;
    right: 0;
    bottom: 0px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 20px #8e23d6;
}

/* end reward & redemption page */

/* account activation modal */
.otp-field {
    display: flex;
}

.otp-field input {
    width: 55px;
    font-size: 32px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid #67696d;
    background: #222a35;
    font-weight: bold;
    color: #fff;
    outline: none;
    transition: all 0.1s;
}

.otp-field input:focus {
    border: 2px solid #ff332c;
    box-shadow: 0 0 2px 2px #ff276f6a;
}

/* end account activation modal */

@media only screen and (max-width: 1535px) {    
}

@media only screen and (max-width: 1279px) {
    .index-pg-wrap img {
        max-width: 50px;
    }

    .dropdown-menu {
        margin-left: -120px;
    }

    .tour-time-box {
        padding: 10px 8px 20px;
    }

    .tour-right {
        width: 100%;
    }

    .index-tour-wrap {
        background: #232a34;
        outline: 1px solid #fff;
        outline-offset: -8px;
        border-radius: 10px;
        padding: 20px;
    }

    .index-tour-content {
        padding-top: 0%;
    }

    .tour-time-box {
        padding: 10px 12px 20px;
    }

    .index-us-left,
    .index-us-right {
        width: 100%;
        padding-top: 0px;
        transform: none;
    }

    .index-us {
        background: #232a34;
        outline: 1px solid #fff;
        outline-offset: -8px;
        border-radius: 10px;
        padding: 30px 20px 30px;
    }
}

@media only screen and (max-width: 1023px) {

    /* index page */
    .index-wrap {
        display: flex;
        flex-direction: column;
    }

    .al-wrap {
        display: flex;
        flex-direction: column;
    }

    .acc-info::after {
        background: none;
    }

    .t-body {
        padding: 0px 0px;
    }

    .index-jackpot {
        background: #232a34;
        outline: 1px solid #fff;
        outline-offset: -8px;
        border-radius: 10px;
        padding: 20px;
    }

    .index-jp-num {
        top: 0px;
        background: url(../images/index/jackpot/jackpot-red.png) no-repeat;
        background-size: 100% 100%;
        display: block;
        max-width: 50%;
        padding: 5px 0px 10px;
    }

    .index-jp-num span {
        font-size: 4vw;
    }

    .t-footer {
        padding: 20px 0px;
    }

    .index-pg-wrap img {
        max-width: 80px;
    }

    .gift-box{
        margin-left: 15px;
    }

    #closeButton{
        right: 55%;
        top: -20px;
    }

    button.lucky-close-btn {
        top: 5px;
    }

    .text-gold{
        font-size: 28px;
    }

    .reward-wrap{
        margin-top: 5px;
    }
}


@media only screen and (max-width: 767px) {
    .login-bg {
        background: #232a34;
        outline: 1px solid #fff;
        outline-offset: -8px;
        border-radius: 20px;
        padding: 20px;
    }

    button.login-close-btn {
        top: 0px;
    }

    button.bln-close-btn {
        right: 0px;
    }

    .vip-table table tbody th,
    .vip-table table thead th:first-child {
        width: 30%;
    }

    .otp-field input {
        width: 40px;
        font-size: 20px;
        padding: 5px;
    }
}

@media only screen and (max-width: 600px) {
    button.popup-close-btn {
        top: -40px;
        right: 0px;
    }
}

@media(max-width: 550px) {}

@media only screen and (max-width: 480px) {}