* {
    box-sizing: border-box;
    position: relative;
}
html, body {
    padding: 0;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 24px;
    background: #000;
    font-family: var(--font-poppins);
    color: var(--primary-white);
}
.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main, #masthead, #mastfoot{
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}
main {
    flex: 1;
    padding-top: 30px;
    padding-bottom: 100px;
}
#masthead {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #292421;
}
/* #masthead.scroll-down {
    transform: translateY(-125px);
} */
#masthead .navbar-nav {
    gap: 0;
}
#masthead .menu-wrapper {
    flex: 1;
}
#masthead .nav-item .nav-link {
    color: var(--primary-white);
    padding: 0.75rem 1.5rem;
}
#masthead .nav-item .nav-link:hover {
    opacity: 0.8;
    background-color: rgba(255,255,255, 0.2);
}
#masthead .nav-item .nav-link.active {
    background-color: var(--primary-main);
    color: var(--primary-white);
}
#masthead .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #141311;
}
#masthead .dropdown-item {
    padding: 0.5rem;
    padding-left: 3rem;
    padding-right: 2rem;
    color: #d7d7d7;
}
#masthead .dropdown-item:hover {
    color: var(--text-default);
}
#masthead .navbar-collapse {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    max-width: 300px;
    width: 100%;
    height: 100%;
    z-index: 9;
    transform: translateX(-100%);
    transition: all 0.35s linear;
}
#masthead .navbar-collapse.show {
    transform: translateX(0);
}
#masthead .navbar-collapse::before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.25s linear;
    z-index: -1;
}
#masthead .navbar-collapse::before, #masthead .navbar-close {
    opacity: 0;
    visibility: hidden;
}
#masthead .navbar-collapse.show::before, #masthead .navbar-collapse.show .navbar-close {
    opacity: 1;
    visibility: visible;
}
#masthead .navbar-collapse .navbar-collapse-inner {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    max-height: 100vh;
}
#masthead .navbar-collapse.show .navbar-collapse-inner {
    opacity: 1;
    visibility: visible;
}
#masthead .navbar-close {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #fff;
    position: absolute;
    top: 15px;
    left: 315px;
    padding: 0;
}
#masthead .navbar-close::before, #masthead .navbar-close::after {
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    top: 50%;
    left: 50%;
}
#masthead .navbar-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#masthead .navbar-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
#masthead .navbar-nav .nav-item:last-child {
    padding-bottom: 8px;
}
#masthead .navbar-nav .nav-item:last-child::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 1.5rem;
    background-color: #fff;
    width: calc( 100% - 3rem );
    height: 1px;
    transform: translateY(-50%);
}
.navbar-collapse .title-logo {
    background-color: #292421;
}
.navbar-collapse .title-logo img {
    width: auto;
    height: 52px;
}
section {
    padding: 30px 0;
}
.section-default-padding {
    padding: 90px 0;
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75rem;
}
h1, h2, h3, h4, h5, h6, b, strong, .text-editor > p > b > a {
    font-weight: var(--fw-semi-bold);
}
.text-editor h1 a, .text-editor h2 a, .text-editor h3 a, .text-editor h4 a, .text-editor h5 a, .text-editor h6 a, li a, li b a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}
p, a, li, a, th, td, input, textarea, select, label, button {
    font-weight: var(--fw-regular);
}
h1, .h1 {
    font-size: 42px;
    line-height: 52px;
}
h2, .h2 {
    font-size: 36px;
    line-height: 46px;
}
h3, .h3 {
    font-size: 28px;
    line-height: 36px;
}
h4, .h4 {
    font-size: 24px;
    line-height: 32px;
}
h5, .h5 {
    font-size: 20px;
    line-height: 28px;
}
h6, .h6, p, a, li, a, th, td, input, textarea, select, label, button, .text-p {
    font-size: 16px;
    line-height: 24px;
}
.text-h1, .text-h2, .text-h3, .text-h4, .text-h5, .text-h6 {
    margin-bottom: 0.5rem;
}
.text-h4 {
    font-size: 20px;
    line-height: 28px;
}
a, a:hover, a:focus, a:visited, button, button:hover, button:focus, button:visited {
    box-shadow: none!important;
    outline: none;
    text-decoration: none;
}
a, button, .btn, a.btn, button.btn, .share-button::before {
    transition: all 0.3s ease;
}
p, ul, ol, .text-p {
    margin-bottom: 0.5rem;
}
.heading-title li::marker {
    font-weight: 700;
}
.heading-title.heading-3 li::marker {
    font-size: 24px;
    line-height: 24px;
}
.heading-title.heading-4 li::marker {
    font-size: 20px;
    line-height: 20px;
}
.text-editor h1 > a, .text-editor h2 > a, .text-editor h3 > a, .text-editor h4 > a, .text-editor h5 > a, .text-editor h6 > a,
.text-editor li p a, .text-editor li p a:hover, 
.text-editor li a, .text-editor li a:hover, .text-editor p a, .text-editor p a:hover, 
.text-editor > p > a, .text-editor > p > a:hover, .text-editor > p > b > a, .text-editor > p > b > a:hover {
    color: var(--primary-sub);
}
.text-editor h1 > a:hover, .text-editor h2 > a:hover, .text-editor h3 > a:hover, .text-editor h4 > a:hover, .text-editor h5 > a:hover, .text-editor h6 > a:hover,
.text-editor li p a:hover, .text-editor li a:hover, .text-editor > p > a:hover, .text-editor > p > b > a:hover {
    text-decoration: underline;
}
table thead tr th{
    background-color: #9db0c7!important;
}
table thead tr th, table thead tr td, table tbody tr th {
    font-weight: bold;
}
table .fa-check{
    color: green;
}
table .fa-times{
    color: red;
}
.btn-wrapper {
    display: flex;
    gap: 1rem;
}
a, button, .btn, a.button, button.btn {
    border: none;
    box-shadow: none;
    border: none;
}
.btn:hover, a.button:hover, button.btn:hover {
    filter: contrast(0.7);
}
.btn-copy-clipboard, .btn-copy-clipboard:hover {
    background: #0d6efd;
    padding: 6px 12px;
    border: none;
}
.btn-copy-clipboard, .btn-copy-clipboard:hover, .copy-msg {
    color: #fff;
}
.btn.btn-rounded {
    border-radius: 10px;
}
.btn.btn-default {
    padding: 0.25rem 0.75rem;
    background-color: #efefef;
    color: #000;
}
.heading-block {
    padding: 30px 0;
    margin-bottom: 30px;
    border-color: #b5b5b5;
    border-width: 1px 0 1px 0;
    border-style: solid;
}
.img-fit {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.navbar-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.navbar-brand {
    display: block;
    width: auto;
    height: 46px;
}
.navbar-toggler {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
}
.navbar-toggler {
    width: 46px;
    height: 46px;
    padding: 8px;
    flex-direction: column;
}
.navbar-toggler, .navbar-toggler:hover, .navbar-toggler:focus, .navbar-toggler:visited {
    outline: none;
    border: none;
    box-shadow: none;
}
.navbar-toggler:hover, .btn-copy-clipboard:hover, .share-buttons .share-button:hover::before, .link:hover, a.link:hover, .footer-nav .nav-item .nav-link:hover, .floating-list-inner .floating-item:hover {
    opacity: 0.8;
}
.navbar-toggler img {
    width: 25px;
}
.iconbox{
    height: 100%;
}
.modal .modal-content > div[class*='modal-'] {
    width: 100%;
}
.modal .modal-content > div[class*='modal-'] > * {
    margin: 0;
}
.link, a.link {
    color: var(--primary-white);
    text-decoration: underline;
}
#mastfoot {
    z-index: 9;
    background: #292421;
}
#mastfoot .icon{
    filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(335deg) brightness(108%) contrast(114%) !important;
    /* width: 25px; */
    height: 25px;
}
#mastfoot span{
    color: var(--primary-white);
}
.marquee {
    width: 100%;
    height: 25px;
    margin: 0 auto;
    padding-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--primary-main);
    color: var(--primary-black);
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    text-indent: 0;
    -webkit-animation: marquee 15s linear infinite;
    animation: marquee 15s linear infinite;
}
.marquee strong {
    font-size: .8rem;
    font-weight: 400;
}
@keyframes marquee {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    100% {
        -webkit-transform: translate(-100%);
        transform: translate(-100%);
    }
}
.table-content {
    border-radius: 15px;
    background-color: #222529;
    padding: 30px 25px;
    text-align: center;
}
.table-content ol, .table-content ul {
    padding-left: 0;
    list-style: none;
}
.table-content > *:last-child {
    margin-bottom: 0;
}
.copyright {
    padding: 20px 0;
}
.map-iframe {
    height: 250px;
}
.map-iframe iframe, iframe {
    width: 100%;
    height: 100%;
}
.iconbox {
    background: linear-gradient(0deg, #58cffc, #438FF0);
}
.banner-swiper .swiper-img img {
    object-fit: contain;
    object-position: center center;
}
.banner-swiper .swiper-caption {
    position: absolute;
    max-width: 83.33333333%;
    width: 100%;
    padding: 0 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.banner-swiper .swiper-navigation, .banner-swiper .swiper-navigation .btn-nav {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.banner-swiper .swiper-navigation {
    width: 100%;
    height: 1px;
    left: 0;
    z-index: 1;
}
.banner-swiper .swiper-navigation .btn-nav {
    background-color: transparent;
    color: var(--primary-sub);
    font-size: 24px;
    width: 35px;
    height: 35px;
}
.banner-swiper .swiper-navigation .nav-prev {
    left: 0;
}
.banner-swiper .swiper-navigation .nav-next {
    right: 0;
}
.banner-swiper .swiper-pagination {
    top: auto;
    bottom: 0;
}
.banner-swiper .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    opacity: 0.5;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-left: 6px;
    margin-right: 6px;
    background-color: var(--primary-sub);
}
.floating-list {
    display: none;
    position: fixed;
    bottom: 64px;
    right: 25px;
}
.floating-list-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.floating-list-inner .floating-item {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 26px;
}
.floating-list-inner .floating-item  a, .floating-list-inner .floating-item svg {
    display: block;
    width: 100%;
    height: 100%;
}
.back-to-top {
    cursor: pointer;
}
.floating-item.whatsapp {
    transform-origin: center center;
    animation: rotateInfinite 10s infinite linear;
    animation-delay: 2s;
}
@keyframes rotateInfinite {
    100% {
        transform: rotate(360deg);
    }
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 0;
}
.accordion-item:first-of-type>.accordion-header .accordion-button, .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion-item:last-of-type {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.rtp-table table th, .rtp-table table td {
    padding-left: 12px;
    padding-right: 12px;
}
.rtp-table table th:nth-child(1), .rtp-table table td:nth-child(1) {
    width: 12%;
}
.rtp-table table th:nth-child(2), .rtp-table table td:nth-child(2) {
    width: 15%;
}
.rtp-table table th:nth-child(3), .rtp-table table td:nth-child(3) {
    width: 30%;
}
.responsive-table {
    margin-bottom: 12px;
}
.percent-bar {
    width: 100%;
    background-color: #00c0ff;
    overflow: hidden;
    box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.2);
}
.percent-bar, .percent-bar-inner {
    display: block;
    border-radius: 15px;
    height: 26px;
}
.percent-bar label {
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 14px;
    line-height: 14px;
    transform: translateY(-50%);
    z-index: 2;
}
.percent-bar-inner {
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: center left;
    width: 0;
    background-color: #3484ce;
    z-index: 1;
}
.userprofile-container {
    background: #292421;
    border-radius: 10px;
}
.btn-section-bg {
    background: #292421;
    border: .5px solid var(--primary-main);
}
.btn-section-bg.active:not(.amount_options) {
    background-color: var(--primary-main) !important;
    color: var(--primary-black)!important;
}
.text-primary {
    color: var(--primary-main) !important;
}
.text-secondary {
    color: var(--primary-sub) !important;
}
.btn-style {
    padding: 8px 10px;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 5px;
    color: var(--primary-white) !important;
}
.btn-primary {
    background: var(--primary-main) !important;
    color: var(--primary-black) !important;
    border: none;
}
.text-0-5 {
    font-size: .5rem;
}
.text-0-55 {
    font-size: .55rem;
}
.text-0-6 {
    font-size: .6rem;
}
.text-0-65 {
    font-size: .65rem;
}
.text-0-7 {
    font-size: .7rem;
}
.text-0-75 {
    font-size: .75rem !important;
    font-size: .75rem;
}
.text-0-8 {
    font-size: .8rem;
}
.text-0-85 {
    font-size: .85rem;
}
.text-0-9 {
    font-size: .9rem;
}
.text-0-95 {
    font-size: .95rem;
}
.text-1-0 {
    font-size: 1.0rem;
}
.text-1-05 {
    font-size: 1.05rem;
}
.text-1-1 {
    font-size: 1.1rem;
}
.text-1-15 {
    font-size: 1.15rem;
}
.text-1-2 {
    font-size: 1.2rem;
}
.text-1-3 {
    font-size: 1.3rem;
}
.text-1-4 {
    font-size: 1.4rem;
}
.text-1-5 {
    font-size: 1.5rem;
}
.text-weight-400 {
    font-weight: 400;
}
.text-weight-500 {
    font-weight: 500;
}
.text-weight-600 {
    font-weight: 600;
}
.text-weight-700 {
    font-weight: 700;
}
.text-weight-800 {
    font-weight: 800;
}
.text-weight-900 {
    font-weight: 900;
}
.filter-black-to-white {
    -webkit-filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(335deg) brightness(108%) contrast(114%) !important;
    filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(335deg) brightness(108%) contrast(114%) !important;
}
.vip-table-row-line {
    border-bottom: 1px solid var(--primary-sub);
}
.vip-table-row-line > div {
    line-height: 17px;
}
.top-brand {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    counter-reset: brand-counter;
}
.top-brand .top-brand-item {
    counter-increment: brand-counter;
    background-color: #272727;
    border: 1px solid #ececec;
    border-radius: 5px;
    width: 100%;
}
.top-brand .top-brand-item::before {
    content: counter(brand-counter);
    position: absolute;
    top: 4px;
    left: 4px;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-color: #4bbaf1;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}
.top-brand .top-brand-inner > .col {
    width: 33.33333333%;
    text-align: center;
}
.top-brand .col-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4;
    object-fit: contain;
    object-position: center center;
}
.top-brand .col-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: rgb(0 0 0 / .05);
    background-color: #fff0;
    color: #fff;
    font-size: .97em;
    font-weight: bolder;
    letter-spacing: .03em;
    text-align: center;
    padding: 0 1.125rem;
    min-height: 2rem;
    max-width: fit-content;
    margin: 0 auto;
}
.top-brand .top-brand-item:not(:first-child) {
    /* pointer-events: none; */
    display: none;
}
.btn[disabled] {
    pointer-events: none;
}
.top-brand .col-cta a::before, .top-brand .col-cta a::after {
    content: '';
    position: absolute;
    border-radius: 10px;
    z-index: 0;
}
.top-brand .col-cta a::before {
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    top: -2px;
    left: -2px;
    background-size: 400%;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
}
.top-brand .col-cta a::after {
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
}
.top-brand .col-cta a span {
    z-index: 1;
}
@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
.top-brand .col-title {
    font-weight: 700;
    padding-top: 10px;
}
.top-brand .klwin .col-desc p {
    font-size: 0.75rem;
    line-height: 1.4;
}
.social-icon .fa {
    font-size: 32px;
    line-height: 32px;
    color: var(--primary-sub);
}