@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Arial:300,400,700,900');

body {
    font-family: "Arial", sans-serif;
    line-height: 1.2;
    font-size: 15px;
    color: #fff;
    background: #293857;
}

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%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
    color: #666;
    width: 100%;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #24262b;
    border-radius: 5px;
    width: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #3e4f7a;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #92a5c6;
}

/* header  */
header {
    background: #242f4d;
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    z-index: 2;
    align-items: center;
    font-size: 12px;
}

.logo img {
    max-width: 150px;
}

.header-mid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.header-mid ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    margin-bottom: 0px;
}

.header-mid ul li {
    padding: 10px 10px;
    cursor: pointer;
}

.t-header .dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #6775a4;
    font-weight: bold;
}

.t-header .dropdown.active .dropbtn {
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 5px;
    padding: 10px 10px;
}

.dropdown-line {
    border-left: 1px solid #d4dee8;
}

.dropdown-content a {
    color: #205583;
    padding: 6px 10px;
    text-decoration: none;
    display: block;
}

.dropdown-line a:hover {
    color: #7eac2f;
    border-left: 2px solid #7eac2f;
}

.t-header .dropdown:hover .dropdown-content {
    display: block;
}

.t-header .dropdown:hover .dropbtn {
    color: #fff;
}

.drop-prov {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #d4dee8;
    padding-bottom: 15px;
}

.drop-prov img {
    max-width: 90px;
}

.dropdown-content.large {
    min-width: 500px;
}

.dropdown-content.medium {
    min-width: 400px;
}

.drop-prov-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 10px 0px;
}

.show-btn {
    width: 100%;
    background: #d4dee8;
    border-radius: 5px;
    color: #205583;
    text-align: center;
}

.show-btn:hover {
    background: #dee6ed;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header-dep {
    color: #7eac2f;
    background: #3e4f7a;
    border-radius: 5px;
    padding: 8px 0px;
    width: 35px;
    height: 35px;
    text-align: center;
}

.header-dep i {
    font-size: 20px;
}

.header-dep:hover {
    background: #3387d1;
    color: #7eac2f;
}

.header-gift {
    color: #fff;
    background: #3e4f7a;
    border-radius: 5px;
    padding: 10px 0px;
    width: 35px;
    height: 35px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.header-gift i {
    font-size: 18px;
}

.header-gift:hover {
    background: #3387d1;
    color: #fff;
}

.gift-num {
    color: #fff;
    background: #7eac2f;
    border-radius: 50px;
    position: absolute;
    width: 15px;
    height: 15px;
    right: 2px;
    top: 3px;
    font-size: 10px;
    padding: 2px;
}

.header-reg {
    color: #fff;
    background: #7eac2f;
    border-radius: 5px;
    padding: 10px 15px;
}

.header-reg:hover {
    background: #93c738;
    color: #fff;
}

.header-login {
    color: #fff;
    background: #286aa6;
    border-radius: 5px;
    padding: 10px 15px;
}

.header-login:hover {
    background: #3387d1;
    color: #fff;
}

.header-phone {
    color: #fff;
    background: #404d77;
    border-radius: 5px;
    padding: 8px 0px;
    width: 35px;
    height: 35px;
    text-align: center;
}

.header-phone i {
    font-size: 20px;
}

.header-phone:hover {
    background: #3387d1;
    color: #fff;
}

.header-setting {
    padding: 2px;
    margin-right: 3px;
    color: #fff;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.header-setting:hover,
.header-setting:active {
    background: #d4dee8;
    border-radius: 5px;
    color: #205583;
}

.header-setting:hover i.set {
    transition: 0.9s;
    transform: rotate(180deg);
}

.drop-setting .dropdown-toggle.show i.arrow {
    transition: 0.9s;
    transform: rotate(180deg);
}

.drop-setting .dropdown-toggle i.arrow {
    transition: 0.9s;
    transform: rotate(0deg);
}

.header-setting.active .setting-dropdown {
    display: block;
}

.set-drop-title {
    color: #205583;
    padding-bottom: 5px;
}

.set-line {
    border-bottom: 1px solid #d4dee8;
    margin-bottom: 10px;
}

.set-line input {
    padding: 0px 10px;
}

.market-wrap {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #d4dee8;
    margin-bottom: 10px;
}

.market-full {
    background: #d4dee8;
    color: #276aa5;
    padding: 6px 10px;
    width: 50%;
    border: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.market-short {
    background: #276aa5;
    color: #fff;
    padding: 6px 10px;
    width: 50%;
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.save-btn {
    width: 100%;
    background: #7eac2f;
    border-radius: 5px;
    color: #fff;
    padding: 6px 10px;
    text-align: center;
    display: block;
}

.save-btn:hover {
    background: #93c738;
    color: #fff;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #fff;
    position: absolute;
    right: 13px;
    top: -11px;
}

.header-line {
    border-right: 1px solid #434f69;
    height: 30px;
}

.time-search input {
    background: #f3f8fc;
    border: none;
    color: #92afc8;
    padding: 5px;
    border-radius: 5px;
}

.time-search {
    position: relative;
    padding-bottom: 10px;
}

.time-search i {
    position: absolute;
    top: 6px;
    right: 10px;
}

.time-list {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    border-top: 1px solid #d4dee8;
}

.time-list:hover,
.lang-list:hover {
    background: #d4dee8;
}

.time-country {
    color: #286aa6;
}

.time-utc {
    color: #3f5179;
}

.lang-list {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px 5px;
    border-top: 1px solid #d4dee8;
}

.lang-icon img {
    max-width: 30px;
}

.lang-country {
    color: #242f4d;
    border-right: 1px solid #d4dee8;
    padding: 0px 10px;
}

.lang-name {
    color: #242f4d;
    padding-left: 10px;
}

.lang-list:hover .lang-country {
    border-right: 1px solid #242f4d;
}

.dropmenu-inner {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
    -webkit-transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
}

.dropmenu:hover .dropmenu-inner {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
}

.drop-wrap {
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    max-height: 600px;
    overflow-y: auto;
}

.drop-wrap a {
    padding: 10px;
    display: inline-block;
}

.drop-wrap img {
    max-width: 180px;
    filter: grayscale(0.4);
    border-radius: 5px;
}


.drop-wrap a:hover img {
    filter: grayscale(0);
}

.prod-title {
    color: #205583;
    padding-top: 5px;
}

.dropmenu:hover .dropbtn {
    color: #fff;
}

.drop-setting .btn{
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
}

.drop-setting .dropdown-toggle::after{
    display: none;
}

.drop-setting .dropdown-toggle.show,
.drop-setting .dropdown-toggle:hover{
    color: #205583; 
}

.drop-setting .dropdown-menu{
    border-radius: 0px;
    padding: 10px;
    min-width: 300px;
    font-size: 13px;
}

/* end header */

/* index */
.t-body {
    padding: 80px 15px 20px;
}

#index-carousel img {
    border-radius: 5px;
}

.index-game {
    padding: 20px 0px;
}

.game-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-title {
    font-weight: bold;
}

.game-more {
    color: #92a5c6;
    font-size: 13px;
}

.game-more:hover {
    color: #fff;
}

.game-wrap {
    padding: 10px 0px;
}

/* end index */

/* footer */
.t-footer {
    background: #242f4d;
    padding: 10px;
    padding-bottom: 20px;
}

.footer-top {
    background: #344674;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    gap: 10%;
}

.footer-title {
    font-weight: bold;
    padding-bottom: 5px;
}

.footer-wrap a {
    display: block;
    color: #fff;
    padding: 5px 0px;
    font-size: 13px;
}

.footer-wrap a:hover {
    color: #7eac2f;
}

.footer-content {
    background: #344674;
    border-radius: 5px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5px;
}

.footer-inner-content {
    color: #96a8d0;
    font-size: 13px;
}

.content-inner {
    padding: 10px 0px;
}

.footer-icon {
    display: grid;
    grid-template-columns: 45% 55%;
    margin-top: 5px;
}

.footer-license,
.footer-prov {
    background: #344674;
    border-radius: 5px;
    padding: 10px;
}

.footer-prov {
    margin-left: 5px;
}


.license-wrap {
    display: flex;
    padding-top: 3%;
    gap: 5px;
}

.license-box {
    background: #303f6a;
    padding: 10px;
    border-radius: 5px;
    max-width: 150px;
    margin: 0 auto;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.prov-swiper {
    padding: 0px 4%;
}

.prov-wrap .swiper-slide {
    background: #303f6a;
    padding: 10px;
    border-radius: 5px;
}

.prov-box {
    background: #303f6a;
    padding: 10px;
    border-radius: 5px;
    margin: 5px;
}

.swiper-button-next.slideNext-prov {
    background-image: none;
    right: 0px;
    font-size: 20px;
    color: #fff;
}

.swiper-button-prev.slidePrev-prov {
    background-image: none;
    left: 0px;
    font-size: 20px;
    color: #fff;
}

.swiper-button-next.slideNext-prov::after,
.swiper-button-prev.slidePrev-prov::after {
    content: "";
}

.footer-bottom {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    margin-top: 5px;
}

.footer-copyright {
    background: #344674;
    border-radius: 5px;
    padding: 15px 10px;
    color: #96a8d0;
    font-size: 12px;
}

.footer-copyright a {
    color: #fff;
}

.footer-chat {
    background: #344674;
    border-radius: 5px;
    padding: 15px 10px;
    color: #96a8d0;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 5px;
}

.footer-chat i {
    font-size: 40px;
    color: #96a8d0;
}

.chat-detail {
    text-align: center;
}

.chat-detail div {
    color: #fff;
}

.social-wrap {
    display: grid;
    grid-template-columns: 70% 30%;
    margin-left: 5px;
}

.social-box {
    background: #344674;
    border-radius: 5px;
    padding: 15px 10px;
    color: #96a8d0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    gap: 15px;
}

.social-18 {
    background: #344674;
    border-radius: 5px;
    padding: 15px 10px;
    color: #fff;
    text-align: center;
    margin-left: 5px;
}

.footer-mobile-btn {
    background: #286aa6;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 5px;
    margin-left: 5px;
    display: block;
}

.footer-mobile-btn:hover {
    background: #3387d1;
    color: #fff;
}

/* end footer */


/* casino page */
.casino-wrap {
    margin-top: 20px;
}

.casino-side {
    border: 1px solid #3e4f79;
    padding: 1px;
}

/* .casino-side-title {
    border-top: 1px solid #30353b;
    border-bottom: 1px solid #30353b;
    border-left: 2px solid #d4dee8;
    background: #252a30;
    text-align: center;
    font-weight: 400;
    color: #fff;
    padding: 10px;
} */

/* .casino-search input {
    background: #293857;;
    border: 1px solid #d4dee8;
    padding: 10px;
} */

.casino-main-top {
    display: grid;
    grid-template-columns: 80% 20%;
    align-items: center;
}

.casino-main {
    padding: 0px 10px;
}

.casino-main-search {
    position: relative;
    background: #304068;
    padding: 20px 15px;
    margin-left: 5px;
    height: 80px;
}

.casino-main-search input {
    background: #242f4c;
    border: 1px solid #3e4f79;
    padding: 10px;
    padding-left: 15%;
}

.casino-main-search i {
    position: absolute;
    top: 32px;
    left: 25px;
}

.list-prod .swiper-container {
    z-index: 0;
}

.swiper_wrap.list-prod {
    position: relative;
    text-align: center;
    background: #304068;
    padding: 10px 0px;
    height: 80px;
}

.list-prod .swiper-button-next {
    background: none !important;
    right: 0;
}

.list-prod .swiper-button-prev {
    background: none !important;
    left: 0;
}

.list-prod .swiper-button-next:after,
.list-prod .swiper-button-prev:after {
    font-size: 20px;
    color: #fff;
}

.swiper-slide i {
    font-size: 30px;
}

.list-prod .swiper-slide .casino-list {
    cursor: pointer;
    color: #586f9b;
}

.list-prod .swiper-slide .casino-list img {
    filter: grayscale(0.9);
}

.list-prod .swiper-slide .casino-list:hover {
    color: #fff;
}

.list-prod .swiper-slide.active .casino-list {
    color: #fff;
}

.list-prod .swiper-slide.active .casino-list img,
.list-prod .swiper-slide .casino-list:hover img {
    filter: grayscale(0);
}

.list-prod .nav {
    flex-wrap: nowrap;
}

.casino-tab-content {
    padding: 10px 0px;
}

.casino-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0em 0.625em 0em 0.3125em;
    width: 100%;
    margin: 0.4375em 0em;
    border-left: 3px solid #82b031;
}

.casino-name {
    padding: 0;
    margin: 0.3125em;
    font-size: 18px;
    font-weight: 400;
}

.show-all-btn {
    display: flex;
    background-color: #82b031;
    transition: background-color 0.2s linear;
    color: #fff;
    padding: 0.76923em 2.30769em;
    margin: 1.125em auto 0em;
}

.casino-list-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    gap: 10px;
}

.casino-prod {
    padding: 5px;
    cursor: pointer;
    transition: transform .2s;
}

.casino-prod:hover {
    transform: scale(1.02);
}

.slot-play-btn.casino {
    bottom: 10%;
}

/* casino page end */

/* slots page */
.slots-wrap {
    display: grid;
    grid-template-columns: 20% 80%;
    margin-top: 20px;
}

.slots-side {
    border: 1px solid #3e4f79;
    padding: 1px;
}

.side-prov-wrap {
    padding: 15px 10px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.side-prov-box {
    background: #242f4c;
    border-bottom: 3px solid #242f4c;
    padding: 15px 10px;
    margin: 3px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #3e4f79;
}

.side-prov-box img {
    filter: grayscale(1);
    padding-right: 5px;
}

.side-prov-box:hover,
.side-prov-box.active {
    background: #3e4f79;
    border-bottom: 3px solid #7eac2f;
    color: #fff;
}

.side-prov-box:hover img,
.side-prov-box.active img {
    filter: grayscale(0);
}

.slots-main {
    padding: 0px 10px;
}

.slots-tab-content {
    padding: 10px 0px;
}

.slots-prod {
    cursor: pointer;
    transition: transform .2s;
    position: relative;
}

.slots-list {
    padding-bottom: 10px;
}

.slots-list-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    gap: 10px;
}

.slots-prod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s linear;
    border-radius: 10px;
}

.slots-prod:hover .slots-prod-overlay,
.game-prod:hover .slots-prod-overlay {
    opacity: 1;
}

.slots-play-btn {
    align-items: center;
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.slots-play-wrap {
    width: 6.25em;
    height: 6.25em;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.slots-play-wrap::before,
.slots-play-wrap::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    display: inline-block;
    width: 5.625em;
    height: 5.625em;
    border-radius: 50%;
}

.slots-play-wrap::before {
    border-left: 0.1875em solid #fff;
    border-top: 0.1875em solid transparent;
    border-bottom: 0.1875em solid transparent;
    border-right: 0.1875em solid #fff;
    animation: spin 1.5s infinite linear;
}

.slots-play-wrap::after {
    border-right: 0.1875em solid transparent;
    border-top: 0.1875em solid #90c534;
    border-bottom: 0.1875em solid #90c534;
    border-left: 0.1875em solid transparent;
    width: 4.5em;
    height: 4.5em;
    top: 15%;
    left: 11%;
    animation: spin-reverse 1.5s infinite linear;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin-reverse {
    100% {
        -moz-transform: rotate(-360deg);

    }
}

@-webkit-keyframes spin-reverse {
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    100% {
        -webkit-transform: rotate(-360deg);
        /* transform: rotate(-360deg) scale(0.8); */

        transform: rotate(-360deg);
    }
}

.slot-play-btn {
    color: #fff;
    position: absolute;
    bottom: 20%;
    right: 0;
    left: 0;
    text-decoration: underline;
}

.slot-play-btn:hover {
    color: #90c534;
    text-decoration: underline;
}

.slots-play-btn i {
    font-size: 30px;
}

.slot-star {
    position: absolute;
    top: 10px;
    left: 10px;
}

.slot-star:hover {
    color: #90c534;
}

/* end slots page */

/* promotion page */
.mix {
    display: none;
}

.filter-menu-bar {
    margin: 20px 0;
    background-color: #344674;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.pmbox {
    background: none;
    color: #6079a7;
    text-transform: uppercase;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}

.pmbox.active {
    color: #fff;
    background: #242f4c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 2px solid #7eac2f;
}

.pmbox.active:first-child:after {
    background: #242f4c;
    position: absolute;
    top: -32px;
    left: -32px;
    content: "";
    width: 50px;
    height: 50px;
}


.pmbox.active:last-child:after {
    background: #242f4c;
    position: absolute;
    top: -12px;
    right: -32px;
    content: "";
    width: 50px;
    height: 50px;
}

.promo-content {
    display: grid;
    grid-gap: 0px;
    grid-template-columns: repeat(3, 1fr);
}

.pm-boxer {
    display: block;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    max-width: 100%;
    height: auto;
    align-content: center;
    margin: 10px 10px;
    color: #000000;
}

.pm-boxer_inner {
    display: grid;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-top: 10px;
}

.pm-boxer_inner_sec {
    display: flex;
    align-items: flex-end;
}

.promo-modal .modal-content{
    color: #fff;
    background: #242f4c;    
}

.promo-modal .btn-close{
    color: #fff;
}

.promo-modal .modal-header{
    border-bottom: none;
}

table.promo-table{
    margin-bottom: 10px;
    font-size: 15px;
}

table.promo-table tr th {
    background: #242f4c;
    padding: 4px;
    border: 1px solid #fff;
    font-size: 13px;
    text-align: center;
    padding: 10px 0px;
}

table.promo-table tr td {
    border: 1px solid #fff;
    font-size: 12px;
    text-align: center;
    padding: 10px 0px;
}

.gr-title{
    margin: 10px 0px;
}

.grlist ul li{
    line-height: 1.5;
}

/* promotion page end */

/* about us */
.about-title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    padding: 20px 0px;
}

.about-wrap {
    display: grid;
    grid-template-columns: 20% 80%;
}

.about-nav-box {
    background: #f3f3f7;
    color: #242f4d;
    padding: 20px;
    display: grid;
    grid-template-columns: 15% 85%;
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.07);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    margin-right: 20px;
}

.about-nav-box.active,
.about-nav-box:hover {
    color: #7cab30;
    background: #fff;
}

.about-content {
    background: #fff;
    padding: 20px;
}

.about-content {
    color: #242f4d;
}

/* end about us page */

/* banking page */
.bank-table tr.trans td {
    background: rgb(255 255 255 / 50%);
    color: #000;
    border: 1px solid #242f4d;
    padding: 2px;
}

.bank-table tr.trans1 td {
    background: rgb(255 255 255);
    color: #000;
    border: 1px solid #242f4d;
    padding: 2px;
}

.bank-table tr.dwbox td {
    background: #242f4d;
    color: #fff;
    font-weight: 600;
    padding: 2px;
}

/* end banking page */

/* tnc page */
button.btn-tnc {
    background: #293857;
    width: 100%;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: #fff;
    border: none;
    border-radius: 5px;
    position: relative;
}

button.btn-tnc.collapsed {
    background: #293857;
    color: #fff;
}

button.btn-tnc:focus {
    outline: none;
}

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: rgb(225 225 225 / 30%);
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
}

.tnc-body ol {
    padding-left: 15px;
}

.tnc-body ol li {
    padding-bottom: 8px;
    list-style: auto;
}

.tnc-body p {
    margin-bottom: 10px;
}

button.btn-tnc::after {
    content: '>';
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 10px;
    transform: rotate(270deg);
    transition: all 0.3s;
}

button.btn-tnc.collapsed::after {
    content: '>';
    transform: rotate(90deg);
    transition: all 0.3s;
}

/* end tnc page */

/* sports page */
.lobby-title {
    text-align: center;
    color: #fff;
    padding: 20px 0px;
}

.lobby-title h2 {
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
}

.lobby-box {
    text-align: center;
}

.lobby-box img {
    border-radius: 10px;
}

.lobby-box.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

.t-body.sports {
    background: url(../images/sports/bg.jpg) no-repeat;
    background-size: 100% 100%;
}

.game-prod {
    cursor: pointer;
    transition: transform .2s;
    position: relative;
    border-radius: 10px;
}

/* end sports page */

/* esports page */
.t-body.esports {
    background: url(../images/esports/bg.jpg) no-repeat;
    background-size: 100% 100%;
}

/* end esports page */

/* fish page */
.t-body.fish {
    background: url(../images/fishing/bg.jpg) no-repeat;
    background-size: 100% 100%;
}

.lobby-box.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 10px;
}

/* end fish page */

/* lotto page */
.t-body.lotto {
    background: url(../images/lotto/bg.jpg) no-repeat;
    background-size: 100% 100%;
}

.lotto-box {
    text-align: center;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.lotto-ply-btn {
    cursor: pointer;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 15%;
    width: 20%;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
    background: #7eac2f;
    border-radius: 5px;
    padding: 20px 15px;
}

.lotto-ply-btn:hover {
    background: #93c738;
    color: #fff;
}

/* end lotto page */


/* cock page */
.t-body.cock {
    background: url(../images/cock/bg.jpg) no-repeat;
    background-size: 100% 100%;
}
/* end cock page */


/* p2p page */
.t-body.p2p {
    background: url(../images/p2p/bg.jpg) no-repeat;
    background-size: 100% 100%;
}
/* end p2p page */


/* afterlogin page */
.afterlogin_wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.afterlogin_wrap h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    padding: 20px 0;
}

.afterlogin_inn_wrap {
    display: grid;
    grid-template-columns: 752px minmax(260px, 368px);
    gap: 1rem;
}

.afterlogin_inn_wrap.afterlogin_inn_wrap_custom {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
}

.depwith_wrapbtn {
    background-color: #0000004d;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border-color: #dee3f026;
}

.depwith_wrapbtn a {
    padding: 15px;
    font-size: 14px;
    line-height: 14px;
    background-color: #dee3f026;
    color: #ecf1ffb3;
    border-color: #0000004d;
    width: 100%;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    text-align: center;
}

.depwith_wrapbtn a.active {
    color: #ffffff;
    background-color: #ed0000;
}

.depwith_wrapbtn_left {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-right: 3px;
}

.depwith_wrapbtn_right {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.afterlogin_dep_head {
    background-color: #242f4d;
    padding: 1.25rem 2.25rem;
}

.afterlogin_dep_headbody_wrap {
    overflow: hidden;
    border-radius: 1rem;
    margin-top: 20px;
}

.afterlogin_dep_headbody_wrap.afterlogin_dep_headbody_wrap_custom {
    overflow: hidden;
    border-radius: 1rem;
    margin-top: 0;
}

.head_col_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head_col_1 span {
    font-weight: 600;
}

.trans_btn {
    background-color: #35383d;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 12px;
}

.head_bal {
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
}

.head_bal span {
    color: #2283f6;
}

.afterlogin_dep_body {
    background-color: #24262b;
    padding: 2.25rem;
}

.afterloginbody_step_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.afterloginbody_step_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.afterloginbody_step_bottom span {
    flex: 1 1 0%;
    font-size: 13px;
}

.afterloginbody_step_bottom span:first-child {
    text-align: left;
}

.afterloginbody_step_bottom span:nth-child(2) {
    text-align: center;
}

.afterloginbody_step_bottom span:nth-child(3) {
    text-align: right;
}

.afterloginbody_step_bottom span.stepcus {
    text-align: right;
}

.step_bullet {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background-color: #dee3f026;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step_bullet.active {
    background-color: #ed0000;
}

.step_line {
    height: 3px;
    background-image: linear-gradient(269.99deg, #383a40 1.25%, rgba(46, 49, 54, 0) 101.67%);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    flex: auto;
}

.step_line.active {
    background-image: linear-gradient(270deg, #ed0000 29.61%, rgba(28, 201, 128, 0) 101.68%);
}

.deposit_body_notis {
    background-color: #242f4d;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 8px;
    margin-top: 20px;
    padding: 6px;
}

.deposit_body_notis_leftcolor {
    width: 170px;
    position: absolute;
    background-image: linear-gradient(89.78deg, #1f5999 4.36%, rgba(41, 106, 173, 0) 99.77%);
    left: 0;
    top: 0;
    border-radius: 8px;
    height: 100%;
}

.dep_notisicon {
    width: 32px;
    height: 32px;
    margin-right: 4px;
}

.deposit_body_notis_content {
    display: flex;
    align-items: center;
    font-size: 12px;
    position: relative;
}

.dep_content_warning {
    color: #ed0000;
}

.deposit_bank_choose_box {
    display: flex;
    background-color: #242f4d;
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    align-items: center;
}

.deposit_bank_choose_box:hover {
    background-color: #36383e;
}

.deposit_bank_choose_box img {
    width: 84px;
    border-radius: 5px;
    margin-right: 10px;
}

.deposit_bank_choose_box span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
}

.deposit_bank_choose_box i {
    margin-left: auto;
}

.deposit_bank_choose_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 25px;
    margin-top: 25px;
}

.afterlogin_inn_wrap_faqbody {
    padding: 1rem;
    background-color: #24262b;
    border-radius: 1rem;
    height: 100%;
}

.dep_faq_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mb-0>a {
    display: block;
    position: relative;
}

.mb-0>a:after {
    content: "\f054";
    /* fa-chevron-down */
    position: absolute;
    right: -23px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.mb-0>a[aria-expanded="true"]:after {
    content: "\f078";
    /* fa-chevron-up */
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.afterlogin_inn_wrap_faqaccor .card-header {
    padding: 14px 1.25rem;
    margin-bottom: 0;
    background-color: #242f4d;
    border-bottom: #242f4d;
}

.afterlogin_inn_wrap_faqaccor .card-header:hover {
    background-color: #36383e;
}

.afterlogin_inn_wrap_faqaccor .card-header a {
    color: #fff;
    font-size: 14px;
    display: flex;
    width: 90%;
    align-items: center;
}

.afterlogin_inn_wrap_faqaccor .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #1a1c21;
    background-clip: border-box;
    border: none;
    border-radius: 10px;
}

.afterlogin_inn_wrap_faqaccor .card-header:first-child {
    border-radius: 0px;
}

.afterlogin_inn_wrap_faqaccor .card:first-child .card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.afterlogin_inn_wrap_faqaccor .card:last-child .card-header {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn_dep {
    background-color: #2283f6;
    margin-right: 0;
}

.header_btn_dep {
    display: flex;
    align-items: center;
    background-color: #1a1c21;
    border-radius: 0.5rem;
    padding: 0px 0px 0 10px;
}

.headusericon {
    width: 25px;
    border-radius: 50px;
}

.head_afterlogin_custom .btn_dropup_lang button {
    background-color: #0000004d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 19px;
    border-bottom: 1px solid #dee3f026;
}

.head_afterlogin_custom .btn_dropup_lang {
    width: 152px;
    margin: 0 0px 0 20px;
}

.head_afterlogin_custom .btn_dropup_lang .dropdown-menu.show {
    display: block;
    width: 100%;
    background-color: #fff;
    border-radius: 0px;
}

.head_afterlogin_custom .btn-secondary:not(:disabled):not(.disabled).active,
.head_afterlogin_custom .btn-secondary:not(:disabled):not(.disabled):active,
.head_afterlogin_custom .show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #0000004d;
    border-color: #4e555b;
}

.head_afterlogin_custom .btn_dropup_lang .dropdown-menu a {
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 7px 11px;
    justify-content: left;
    grid-gap: 0 10px;
    color: #242f4d;
}

.head_afterlogin_custom .btn_dropup_lang .dropdown-menu a i {
    display: block;
    /* margin-right: 8px; */
    font-size: 12px;
    width: 20px;
}

.head_afterlogin_custom .dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
}

.head_afterlogin_custom_mobile {
    display: none;
}

.btn_tr {
    background-color: #2d3035;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 7px;
}

.afterlogin_btn_back {
    color: #fff;
    margin-right: 20px;
}

.header_mobile_show {
    display: none;
}

.deposit_select_showbank {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.bank_display {
    width: 82px;
    border-radius: 5px;
    margin-right: 10px;
}

.bank_display_name {
    font-weight: 700;
}

.afterlogin_wrap .form-control {
    background-color: rgba(0, 0, 0, .3);
    min-height: 52px;
    border: transparent;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    color: #fff;
}

.afterlogin_wrap .form_label {
    margin-bottom: 2px;
    font-weight: 700;
}

.afterlogin_wrap .form-control:focus {
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    border: 1px solid #7eac2f;
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #7eac2f;
}

.form_wrap {
    margin-top: 22px;
}

.label_wrap {
    display: flex;
    justify-content: space-between;
}

.form_label_notis {
    font-size: 12px;
}

.bank_amount_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    margin-top: 8px;
}

.bank_amount_grid button {
    width: 100%;
    color: #fff;
    background-color: rgba(222, 227, 240, .15);
    border-radius: 5px;
    padding: 10px;
    border: none;
    font-size: 13px;
    font-weight: 700;
}

.bank_amount_grid button:hover {
    background-color: rgba(222, 227, 240, .3);
}

.form_bonus_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text_bonus_amt_top {
    color: #ed0000;
}

.text_bonus_amt {
    font-size: 17px;
    font-weight: 700;
}

.form_bonus_wrap {
    font-size: 13px;
}

.submit_btn_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 50px;
}

.submit_btn_wrap button.backbtn {
    background-color: rgba(222, 227, 240, .15);
    height: 52px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    color: #fff;
    border: none;
    font-weight: 700;
}

.submit_btn_wrap button.paybtn {
    background-color: #2283f6;
    height: 52px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    color: #fff;
    border: none;
    font-weight: 700;
}

.submit_btn_wrap_with {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 50px;
}

body[data-singlepage="afterlogin"] .mobile_footer {
    padding: 18px 10px 155px 10px;
}

.add_bank_with_wrap {
    color: #2283f6;
    display: flex;
    flex-direction: column;
    height: 112px;
    background-color: #dee3f00d;
    border-radius: 0.75rem;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.add_bank_with_wrap p {
    margin-bottom: 0;
}

.add_bank_with_wrap i {
    font-size: 24px;
    margin-bottom: 10px;
}

.table-share tr th {
    background-color: rgba(0, 0, 0, .3);
    padding: 5px;
}

.table-share tr td {
    padding: 5px;
    border-bottom: 1px solid #636363;
}

.add_bank_with_wrap:hover {
    background-color: rgba(222, 227, 240, .15);
}

.addbankdropdown .btn {
    width: 100%;
    color: #fff;
    background-color: #191b1e;
    height: 52px;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    text-align: left;
}

.addbankdropdown .dropdown-menu {
    width: 100%;
    background-color: #242f4d;
}

.addbankdropdown .dropdown-menu a {
    color: #fff;
    padding: 10px 20px;
    background-color: #242f4d;
}

.addbankdropdown .dropdown-menu a:hover {
    background-color: #36383e;
}

.addbankdropdown img {
    width: 83px;
    margin-right: 10px;
    border-radius: 5px;
}

.afterlogin_dep_body select {
    -webkit-appearance: none;
    appearance: none;
}

.afterlogin_dep_body .select_custom {
    position: relative;
}

.afterlogin_dep_body .select_custom::after {
    content: "\f054";
    font-weight: 900;
    font-size: 0.8rem;
    top: 29%;
    right: 17px;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
}

.history_typebtn a {
    padding: 15px;
    font-size: 14px;
    line-height: 14px;
    background-color: #dee3f026;
    color: #ecf1ffb3;
    border-color: #0000004d;
    width: 100%;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    text-align: center;
}

.history_typebtn a.active {
    color: #ffffff;
    background-color: #ed1d498c;
}

.history_typebtn {
    background-color: #0000004d;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border-color: #dee3f026;
    grid-gap: 4px;
}

.select_form_history {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    grid-gap: 15px;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.history_table_wrap {
    background-color: #24262b;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 40px;
}

.history_table {
    color: #ecf1ff80;
}

.history_table tr th {
    padding: 10px;
}

.history_table tr td {
    padding: 10px;
}

.history_table tr th:last-child {
    text-align: right;
}

.history_table tr td:last-child {
    color: #ed0000;
    text-align: right;
}

.history_table tr:nth-child(1) {
    background: linear-gradient(90deg, rgba(30, 86, 119, 1) 0%, rgba(30, 86, 119, 0) 100%) !important;
}

.history_table tr:nth-child(odd) {
    background: #293857;
}

.msg_user {
    cursor: pointer;
}

.msg_user:hover {
    color: #fff;
}

.history_table_wrap.history_table_wrap_inbox {
    background-color: #24262b;
    padding: 0;
    border-radius: 10px;
    margin-top: 0;
}

.profile_userimg_wrap {
    background-color: #24262b;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 24px;
    border-radius: 16px;
    display: flex;
    padding-left: 45px;
    grid-gap: 20px;
}

.profile_userimg img {
    border-radius: 100%;
    width: 80px;
    border: 5px solid #dee3f026;
}

.profile_userinfo {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.profileuserinfo_badge {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.profileuserinfo_badge img {
    width: 28px;
}

.profileuserinfo_badge p {
    margin: 0;
    position: absolute;
}

.profile_user_num {
    margin: 0;
    font-size: 21px;
}

.profile_vip_row {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    z-index: 0;
    background: linear-gradient(294.54deg, rgb(72, 84, 99) 10.77%, rgb(157, 167, 177) 108.33%);
    padding: 5px 12px;
    min-height: 85px;
}

.main-vip {
    /* position: absolute; */
    top: 0;
    left: 7px;
    font-size: 33px;
    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;
    font-weight: bold;
    font-style: italic;
    width: 100%;
    margin: 0;
}

.vip-process {
    position: relative;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.15);
    width: 70%;
}

.vip-process-bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 4px;
    border-radius: 2px;
    background: white;
}

.vipprofile_text {
    font-size: 13px;
}

.profile_vip_row::after {
    background-image: url('../images/afterlogin/vipbadge_big.png');
    content: "";
    width: 133px;
    height: 160px;
    position: absolute;
    background-size: contain;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.profile_content_wrap {
    padding: 1.5rem;
    background-color: #24262b;
    border-radius: 16px;
    margin-top: 1.5rem;
}

.profile_content_wrap_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.profile_content_wrap_rowleft_con {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.profile_content_wrap_rowleft_con p,
.profile_content_wrap_rowleft_con i {
    margin: 0;
    font-weight: 700;
    color: #ecf1ffb3;
}

.profile_content_wrap_rowright_con {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.profile_content_wrap_rowright_con p,
.profile_content_wrap_rowright_con i {
    margin: 0;
    font-weight: 700;
    color: #ecf1ffb3;
}

.hr_profile_line {
    border-top: 1px solid #dee3f00d;
    margin: 2px;
}

.profile_chgpas {
    background-color: #dee3f00d;
    border-radius: 8px;
    color: #ecf1fff0;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.profile_chgpas:hover {
    background-color: #dee3f029;
}

.profile_navimenu {
    padding: 1.5rem;
    background-color: #24262b;
    border-radius: 16px;
    margin-top: 1rem;
}

.profile_navimenu_inn {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}

.profile_navimenu_inn a {
    display: grid;
    text-align: center;
    grid-gap: 3px;
    line-height: 1.2;
    align-items: end;
}

.profile_navimenu_inn a i {
    font-size: 23px;
}

.profile_navimenu {
    display: none;
}

.amt-box {
    position: relative;
}

.btn-cpy {
    position: absolute;
    right: 16px;
    top: 14px;
    border: none;
    padding: 0px;
    color: #242f4d;
}

.btn-cpy:hover {
    color: #314575;
}

.btn-cpy i {
    color: #fff;
    background: transparent;
}

.qr-code img {
    display: block;
    margin: 0px auto;
    max-width: 150px;
    margin-top: 20px;
}

.balance-btn {
    cursor: pointer;
}

.balance-btn:hover {
    color: #286aa6;
}

.blc-amt {
    display: flex;
    gap: 20px;
}

.blc-inout {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-out {
    border: none;
    border-radius: 5px;
    background: #48dd30;
    color: #fff;
    min-width: 45px;
}

.btn-out:hover {
    background: #40c62b;
}

.btn-in {
    background: #ed1d49;
    border: none;
    border-radius: 5px;
    color: #fff;
    min-width: 45px;
    padding: 5px;
}

.balance-modal .modal-body {
    padding: 0px;
}

.btn-bln-all {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    padding: 10px 15px;
    background: #293857;
    border-radius: 10px 10px 0px 0px;
}

.btn-amt {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

button.btnall {
    padding: 5px 20px;
    border-radius: 10px;
    background: #ed1d49;
    color: #fff;
    border: none;
}

button.btnall:hover {
    background: #b20e30;
}

.bln-all ul {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    max-height: 466px;
    padding-left: 0px;
}

.bln-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bln-all ul li {
    margin: 3px 0px;
    border-radius: 5px;
    padding: 5px 15px;
    cursor: pointer;
    list-style: none;
    background: #000;
    border: 1px solid #92929200;
}

.bln-all {
    padding: 10px;
}

.bln-all ul li:hover {
    border: 1px solid #293857;
    background: #000;
}

.balance-modal .modal-content {
    background: #242f4c;
    border-radius: 10px 10px 0px 0px;
}

.balance-modal .close {
    float: right;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    color: #293857;
    text-shadow: 0 1px 0 #293857;
    opacity: 1;
    top: -33px;
    position: absolute;
    right: -20px;
    background: transparent;
    border: none;
}

span.rd-box {
    background: #ed1d49;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dep-step3 {
    max-width: 500px;
    margin: auto;
    margin-top: 40px;
}

.dep-step3 i {
    text-align: center;
    display: block;
    margin: 0px auto;
    font-size: 130px;
    color: #4c5e8c;
    margin-bottom: 10px;
}

.dep-step3 h4 {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
}

.dep-step3 p {
    text-align: center;
    color: #c3c3c3;
    font-size: 12px;
}

.dep-step3 .form_wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.dep-step3 .step3-btn {
    margin: 0px;
    background: #4c5e8c;
    display: block;
    max-width: 150px;
    padding: 7px 0px;
    width: 100%;
    border-radius: 10px;
    border: none;
    color: #fff;
}

.dep-step3 .step3-btn {
    margin: 0px;
    background: #4c5e8c;
    display: block;
    max-width: 150px;
    padding: 7px 0px;
    width: 100%;
    border-radius: 10px;
    border: none;
    color: #fff;
}

/* end afterlogin page */

/* afterlogin header */
.login_btn_container {
    display: flex;
    align-items: center;
}

.btn_container {
    border-radius: 10px;
    font-size: 12px;
    padding: 10px 14px;
    color: #fff;
    font-weight: 600;
    border: none;
    margin: 0 0px 0px 5px;
}

.btn_dropup_lang button {
    background-color: #1c2532;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 19px;
}

.btn_dropup_lang button img {
    margin-right: 12px;
}

.dropup.btn_dropup_lang .dropdown-toggle::after {
    right: 15px;
    position: absolute;
}

.btn_dropup_lang.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: unset;
}

.btn_dropup_lang .dropdown-menu.show {
    display: block;
    width: 100%;
    background-color: #1c2532;
}

.btn_dropup_lang .dropdown-menu a {
    color: #fff;
    padding: 5px 17px;
    display: block;
}

.btn_dropup_lang .dropdown-menu a:hover {
    /* background-color: #36383e; */
    background: #d4dee8;
}

.btn_dropup_lang .btn-secondary:focus {
    box-shadow: unset;
}

/* end afterlogin header */

/* download page */
.downloadTab .nav-pills .nav-link {
    background: #353535;
    margin-bottom: 5px;
    height: 50px;
    color: #ffffff;
    align-items: center;
    display: flex;
}

.downloadTab .nav-pills .nav-link.active,
.downloadTab .nav-pills .nav-link:hover {
    background: #242f4d;
    color: #fff;
}

.downloadbody {
    text-align: center;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 173px;
}

.ndl-btn {
    background: linear-gradient(to bottom, rgba(88, 215, 26, 1) 0%, rgba(27, 74, 4, 1) 100%);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 15px;
    width: 78%;
}

.ndl-btn:hover,
.ndl-btn:focus {
    color: #ffffff;
    background: linear-gradient(to top, rgba(88, 215, 26, 1) 0%, rgba(27, 74, 4, 1) 100%);
}

.adl-btn {
    background: linear-gradient(to bottom, rgba(159, 1, 12, 1) 0%, rgba(74, 4, 9, 1) 100%);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 15px;
    width: 78%;
}

.adl-btn:hover,
.adl-btn:focus {
    color: #ffffff;
    background: linear-gradient(to top, rgba(159, 1, 12, 1) 0%, rgba(74, 4, 9, 1) 100%);
}

.dl {
    max-width: 500px;
    margin: auto;
    margin-top: 20px;
}

.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}

.dl table th {
    border: 1px solid #242f4d;
    text-align: center;
    padding: 8px;
    background-color: #242f4d;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.dl table td {
    text-align: left;
    padding: 8px;
    background-color: #000000;
    border: 1px solid #242f4d;
    color: #ffffff;
}

.dl .username_custom {
    color: #6775a4;
}

.downloadboxContent {
    padding: 20px;
    border: 1px solid #242f4d;
    background: #00000033;
}

/* end download page  */

/* contact page */
.contact_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.contact_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact_wrapper_inn {
    position: absolute;
    margin-top: 37px;
}

.contact_wrapper_inn p {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 5px;
}

.contact_wrapper_inn span {
    font-size: 14px;
    font-weight: 600;
}

/* end contact page */

/* register page */
.t-body.register {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 5%;
}

.reg-title {
    font-weight: bold;
    font-size: 30px;
    padding: 20px 0 10px;
}

.reg-wrap {
    display: grid;
    grid-template-columns: 30% 70%;
}

.reg-left {
    background: #3e4f79;
    border-radius: 10px;
}

.step-form {
    padding: 20px;
}

.step-nav {
    display: flex;
    padding: 0;
    margin: auto;
    list-style: none;
    justify-content: space-between;
    border-bottom: 0;
}

.step-nav li {
    position: relative;
}

.step-nav a {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50% !important;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #283556;
    position: relative;
    z-index: 0;
}

.step-nav.nav-pills a.nav-link {
    background: #334573;
}

.step-nav.nav-pills a.nav-link:hover {
    color: #fff;
}

.step-nav .nav-item.show a,
.step-nav a.active {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    background: #0070c1;
    color: white;
    position: relative;
}

.step-nav .nav-item.show a:last-child,
.step-nav a.active:last-child {
    background: #276aa5;
}

.step-nav li:nth-child(1):before {
    content: "";
    width: 200px;
    height: 2px;
    background: #222222;
    position: absolute;
    top: 50%;
    left: 97%;
    /* z-index: 11; */
}

.step-nav li:nth-child(2)::before {
    content: "";
    width: 120px;
    height: 2px;
    background: #222222;
    position: absolute;
    top: 50%;
    left: 97%;
    /* z-index: 11; */
}

.step-nav li:nth-child(3)::before {
    content: "";
    width: 100px;
    height: 2px;
    background: #222222;
    position: absolute;
    top: 50%;
    left: 97%;
    /* z-index: 11; */
}

.step-nav li:nth-child(4):before {
    display: none;
}

.reg-text {
    color: #fff;
    font-size: 13px;
}

.next-btn {
    color: #fff;
    background-color: #7eac2f;
    border-radius: 5px;
    border: none;
    width: 100%;
    padding: 10px 5px;
}

.verify-btn, .submit-btn {
    color: #fff;
    background-color: #7eac2f;
    border-radius: 5px;
    border: none;
    width: 50%;
    padding: 10px 5px;
    text-align: center;
}

.depo-btn {
    color: #fff;
    background-color: #586f9b;
    border-radius: 5px;
    border: none;
    width: 50%;
    padding: 10px 5px;
    text-align: center;
}

.reg input,
.reg select {
    background: none;
    border: none;
    border-radius: 0;
    color: #fff;
    border-bottom: 1px solid #5a0e50;
    font-size: 12px;
}

.reg input:focus,
.reg select:focus {
    background: none;
    color: #ffff;
}

.reg input::placeholder {
    color: #fff;
}

.otp-input {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
}

.reg-box {
    margin-top: 15px;
}

.reg-text {
    padding-bottom: 5px;
}

.asterisk {
    color: red;
}

.reg-form-box input {
    background: #242f4c;
    border: none;
}

.reg-18 {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
}

.reg-18-text {
    font-size: 12px;
    padding-left: 10px;
}

.reg-18-text a {
    color: #e56710;
}

.reg-back-btn {
    background: #334573;
    color: #fff;
    border-radius: 20px;
    margin-right: 20px;
    margin-right: 20px;
    justify-self: center;
    padding: 10px 17px;
}

.reg-step-2-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: 20% 80%;
    padding-top: 20px;
}

.reg-right {
    background: #3e4f79;
    border-radius: 10px;
    margin-left: 10px;
    text-align: center;
    padding: 10px;
}

/* end register page */

/* login page */
.forget-pass {
    padding-top: 15px;
    text-align: center;
}

.forget-pass a {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
}

/* end login page */


/* inbox modal */
.inbox-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.inbox-text {
    background: #404348;
    margin: 0px 15px;
    border-radius: 10px;
    padding: 15px;
}

.modal-dialog.inbox {
    max-width: 500px !important;
    border-radius: 20px;
}

.modal-content.inbox {
    border: none;
    background: #191b1e;
    border-radius: 20px;
}

button.close-inbox {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
}

.wrapper {
    margin: 0 auto;
}

.chatMsg {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 80px);
    margin-bottom: 30px;
}

.chatMsg ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 0px;
}

.chatMsg ul li {
    position: relative;
    margin-bottom: 15px;
}

.msg,
.msg-reply {
    display: block;
    /* margin-left: 10px; */
    /* background: #cbcbcb; */
    /* padding: 10px 15px; */
    position: relative;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
    color: #000;
    border-radius: 5px;
    /* margin-right: 10px; */
}

.msg::before,
.msg-reply::before {
    position: absolute;
    left: -8px;
    top: 0px;
    content: "";
    display: block;
    /* border-right: 12px solid #fff; */
    border-bottom: 15px solid transparent;
}

.msg-date2 {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0px auto;
    color: #fff;
    font-weight: 100;
}

.msg-reply {
    margin-left: inherit;
    /* margin-right: 10px; */
    background: #293857;
    color: #fff;
    /* margin-left: 10px; */
    padding: 10px;
    font-size: 13px;
}

.msg-reply::before {
    left: inherit;
    right: -9px;
    border-right: inherit;
    /* border-left: 12px solid #4d61a6; */
}

.avatar,
.avatar-reply {
    position: absolute;
    left: 0;
    overflow: hidden;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.avatar img,
.avatar-reply img {
    max-width: 30px;
}

.avatar-reply {
    left: inherit;
    right: 0;
}

.chatBox {
    position: absolute;
    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-date {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    gap: 10px;
    /* border-bottom: 1px solid #a4a4a4; */
}

.msg-content {
    line-height: 18px;
    margin-top: 0px;
    font-size: 13px;
    background: #cbcbcb;
    padding: 10px;
    border-radius: 5px;
}

.mdi-send:before {
    content: "\f1d8";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    right: 10px;
}

.inbox-title-wrapper {
    font-size: 16px;
    font-weight: 700;
    background: #293857;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 20px 20px 0px 0px;
}

/* end inbox modal */

/* blog page */
.blog-item {
    padding: 15px 25px;
    border: 1px solid #ffffff42;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-ttle {
    font-weight: bold;
}

.blog-date {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 15px;
}

.btn-back {
    background: #286aa6;
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 3px 20px;
}

.blog-img img {
    border-radius: 5px;
}

.btm-mr {
    display: flex;
    justify-content: end;
    margin-top: 15px;
}

.blog_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 25px;
}

.blog-content {
    padding: 20px 0px;
}

.blog-wrap h4 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-wrap p {
    line-height: 24px;
    margin-bottom: 20px;
}

.blog-wrap h5 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-wrap ul {
    padding-left: 15px;
    margin-bottom: 20px;
}

.blog-wrap ul li {
    list-style: circle;
}

.blog-wrap ol li {
    list-style: auto;
}

.blog-wrap ol {
    padding-left: 15px;
    margin-bottom: 20px;
}

.blog-wrap table tr td {
    padding: 10px;
    text-align: center;
}

.blog-wrap table tr th {
    padding: 10px;
    text-align: center;
}

.blog-wrap table {
    margin-bottom: 20px;
}

.blog-wrap{
    max-width: 1300px;
    margin: 0 auto;
}

.btn-more {
    color: #fff;
    background: #286aa6;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
}

/* end blog page */

/* 21/6/2024 */
.announce-wrap {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 10px 10px 10px 30px;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-top: 10px;
}

.ann-icon {
    max-width: 18px;
    position: absolute;
    left: 10px;
    color: #fff;
}

.ann-bar {
    width: 100%;
}



@media (max-width: 1440px) {
    .header-mid ul {
        padding-left: 10px;
    }

    .header-mid ul li {
        padding: 10px 5px;
        font-size: 9px;
    }

    .header-right {
        font-size: 12px;
        gap: 5px;
    }

    .head_afterlogin_custom .btn_dropup_lang {
        width: 100px;
        margin: 0 0px 0 10px;
    }

    .headusericon {
        width: 20px;
    }

    .head_afterlogin_custom .btn_dropup_lang button {
        padding-left: 10px;
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        font-size: 9px;
    }

    .logo img{
        max-width: 80px;
    }

    .btn_container{
        padding: 10px 5px;
        font-size: 9px;
    }
}