@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    font-size: 15px;
    margin: 0 auto;
    color: #9c9c9c;
    background: #ffffff;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover,
a:focus {
    text-decoration: none;
}

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: #9c9c9c;
    width: 100%;
}

::-webkit-scrollbar {
    height: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
    background: #cdcdcd;
}

::-webkit-scrollbar-track {
    background: #f0f6ff;
}

.container {
    width: 1180px;
}

.forgot_btn_wrap {
    display: flex;
    grid-gap: 10px;
}

.head_navbar {
    /* height: 75px; */
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: .3s ease-in-out;
    padding: 10px 0;
}

.head_navbar .container {
    width: 1280px;
}

.head_navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(62, 115, 250, .25);
}

.header_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar_ul li {
    padding: 0 0.35rem;
}

.navbar_ul li a {
    display: block;
    position: relative;
    color: #9c9c9c;
    overflow: hidden;
    font-size: 13px;
}

.navbar_ul li a.active,
.navbar_ul li a:hover {
    /* color: #ff8633; */
}

.navbar_ul li a:after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff8633;
    opacity: 0;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.navbar_ul li a.active:after,
.navbar_ul li a:hover:after {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.navbar_ul li a.head_icon img {
    width: 25px;
    margin: 0 auto 0.25rem;
}

.navbar_ul li a.head_icon {
    display: grid;
    text-align: center;
    min-width: 45px;
    line-height: 1.1;
}

.navbar_ul li .head_icon.login_btn {
    color: #fff;
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 3px 6px 2px #ffa46652;
    min-height: 33px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    min-width: 85px;
    cursor: pointer;
    border: none;
}

.navbar_ul li a.head_icon.reg_btn {
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 95%);
    box-shadow: 0 3px 6px 2px #0000002e;
    min-height: 33px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0px;
    min-width: 100px;
}

.navbar_ul li a.head_icon:after,
.navbar_ul li a.head_icon:hover:after {
    opacity: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.slider_main .slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.slider_main .item {
    height: 100%;
    position: relative;
    z-index: 1;
}

.slider_main .item img {
    width: 100%;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
}

.slider_main .slick-active .item img {
    transform: scale(1);
}

.slider_main .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider_main .slick-arrow .slick-arrow-btn {
    cursor: pointer;
    pointer-events: visible;
    opacity: .65;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    transition: all .3s ease-in-out;
    width: 35px;
    height: 70px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider_main {
    position: relative;
}

.dropdown-menu-list {
    width: 100%;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
    left: 0;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .95), rgba(214, 227, 246, .95));
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
    transition: all 1s ease-in-out;
    z-index: -1;
    overflow: hidden;
    padding: 1rem;
    background-position: bottom;
    background-size: 100% 100%;
    transition: transform 1s ease;
    max-height: 700px;
    overflow-y: scroll;
}

.navbar_ul li:hover .dropdown-menu-list {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: transform 1s ease;
}

.dropdown_list_expand {
    margin-top: 75px;
}

.header_dropdown_wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.dropdown_product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dropdown_title {
    width: 100%;
    display: flex;
    align-items: center;
    color: #6b7ba8;
    transition: all .3s ease-in-out;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.dropdown_title_icon {
    background-image: url(../images/header_icon/btn-normal.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0.2rem;
    box-shadow: 0px 3px 2px 0px #00000014;
}

.dropdown_product:hover .dropdown_title_icon {
    background-image: url(../images/header_icon/btn-active.png);
}

.dropdown_product:hover .dropdown_title_icon img {
    filter: brightness(10.5);
}

.dropdown_product .dropdown_title_icon img {
    width: 38px;
    margin: auto;
    max-width: 100%;
}

.dropdown_product p {
    margin: 0;
    color: #6b7ba8;
    text-transform: uppercase;
    font-weight: 500;
}

.dropdown_product:hover p {
    color: #ffa466;
}

.dropdown_product img {
    max-width: 80%;
    margin: auto;
}


.login_li_wrap {
    position: relative;
}

.login_f_wrap {
    position: absolute;
    top: 48px;
    z-index: 9;
    right: 0;
}

.login_f_wrapping {
    width: 300px;
    min-height: 50px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
    position: relative;
    padding: 12px;
    box-shadow: 0px 0px 5px 4px #8383830f;
}

.login_f_wrapping.top::after {
    content: '';
    height: 16px;
    width: 16px;
    position: absolute;
    background-color: #ffffff;
    top: -9px;
    right: 13%;
    border-top: #ffffff solid 1px;
    border-left: #ffffff solid 1px;
    transform: rotate(45deg);
}

.login_m_title {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
}

.login_w {
    position: relative;
}

.login_input_g {
    margin: 15px 0px 15px 0;
    display: flex;
    align-items: center;
}

.login_input_g_sec {
    margin: 15px 0px 10px 0;
    display: flex;
    align-items: center;
}

input.login_input {
    background-color: #e7eff8;
    border-radius: 3px;
    border: none;
    height: 42px;
    color: #9c9c9c;
    padding: 0 10px;
}

.signin_btn {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100%;
    height: 36px;
    margin-top: 10px;
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 3px 6px 2px #ffa46652;
}

.signin_btn a {
    color: #fff !Important;
    font-size: 14px !important;
}

.signin_btn:hover a {
    color: #fff;
}

.login_f_wrap {
    display: none;
}

.login_input_g_user {
    color: #fff;
    background-color: #ffa96e;
    height: 42px;
    min-width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot-link {
    text-align: center;
}

.navbar_ul li .forgot-link a {
    margin-top: 10px;
}

.navbar_ul li .forgot-link a:after,
.navbar_ul li .signin_btn a:after {
    content: unset;
}

.slider_main .slick-dots li button {
    position: relative;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 3px 5px rgba(107, 123, 168, .25);
    width: 1.25rem;
    height: 1.25rem;
}

.slider_main .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0.75rem;
    height: 0.75rem;
    color: transparent;
    background-color: initial;
    border-radius: 50%;
    opacity: 1;
}

.slider_main .slick-dots li.slick-active button:before {
    background-color: #b6b6b6;
    color: #b6b6b6;
}

.slider_main .slick-dots li.slick-active button {
    border: 1px solid #b6b6b6;
}

.slider_main .slick-dots {
    bottom: 6px;
}

.marquee_bg {
    background: linear-gradient(to bottom, #ffffff 0%, #e4e4e4 60%, #ffffff 100%);
    border-radius: 50px;
    box-shadow: 0 0 2px inset white;
    filter: drop-shadow(0 4px 0 #cdcdcd) drop-shadow(0 5px 6px #0000002e);
    padding: 5px 5px;
    display: flex;
    align-items: center;
}

.marquee_icon {
    background-color: #ffa466;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    border-radius: 100px;
    font-size: 18px;
}

marquee {
    cursor: pointer;
    margin: 0 0.75rem;
    display: flex;
    color: #9c9c9c;
}

.btn_more_marquee {
    position: relative;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_more_marquee p {
    margin: 0;
    position: absolute;
    color: #fff;
}

.btn_more_marquee img {
    max-width: 100px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #ff8633;
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: rgba(74, 137, 252, .2) 0 3px 6px;
}

.section-header p {
    color: #9c9c9c;
    font-size: 1.125rem;
    text-align: center;
    padding: 0 6rem;
    margin: 0;
}

.content_section {
    margin: 90px 0 0 0;
}

.slider_product_main {
    position: relative;
    z-index: 1;
    margin-bottom: 90px;
}

.stage_bg {
    z-index: -1;
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider_product_main .slider {
    height: 300px;
}

.slider_product_main .slider.slider-for {
    height: 180px;
    padding-top: 65px;
}

.slider_product_main .slider2.slider-nav02 {
    padding: 5px 5px;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #e4e4e4 60%, #ffffff 100%);
    border-radius: 50px;
    box-shadow: 0 0 2px inset white;
    filter: drop-shadow(0 4px 0 #cdcdcd) drop-shadow(0 5px 6px #0000002e);
}

.slider_product_main .slider2.slider-nav02 .slick-list {
    width: 100%;
}

.slider_product_main .slider2.slider-single02 .slick-slide img {
    width: 210px;
    cursor: pointer;
    padding-top: 40px;
}

.slider_product_main .slider2.slider-single02 img.img_main {
    opacity: 0.6;
    transition: all 300ms ease;
    transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    -webkit-transform: scale(1.5);
}

.slider_product_main .slider2.slider-single02 .slick-center img.img_main {
    opacity: 1;
    transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    -webkit-transform: scale(2.4);
}

/*.slider_product_main .slider.slider-for .slick-slide img.img_hover_product{
    display: none;
}*/
.slider_product_main .slider.slider-for .slick-slide .game_products_inner:hover img.img_hover_product {
    display: block;
    filter: hue-rotate(-9deg);
}

/*.slider_product_main .slider.slider-for .slick-slide .game_products_inner:hover img.img_normal_product {
    display: none;
}*/
.slider_product_main .slider.slider-for .slick-slide .game_products_inner img {
    /* width: 77px; */
}

.game_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.game_wrap .game_products_inner {
    width: 190px;
    background-color: #126e51;
    margin: 0 10px;
    border-radius: 42px;
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 7px;
}

.slider_product_main .slider2.slider-single02 .slick-slide {
    min-height: 500px;
    margin: 0px 20px;
    text-align: -webkit-center;
    /* height: 100%; */
}

.slider_product_main .slider2.slider-nav02 .slick-slide {
    cursor: pointer;
    /* float: left; */
    display: flex;
    height: 100%;
    min-height: 1px;
    padding-top: 0px;
    margin: auto;
    justify-content: center;
}

.slider_product_main .slider2.slider-nav02 .slick-slide .game_tab {
    min-width: 86px;
    /* opacity: 0; */
    display: flex;
    justify-content: center;
    margin: 0 4px;
    width: 100%;
    padding: 0 10px;
}

.slider_product_main .slider2.slider-nav02 .slick-slide.slick-current .game_tab,
.slider_product_main .slider2.slider-nav02 .slick-slide:hover .game_tab {
    opacity: 1;
    /* filter: drop-shadow(0px 3px 3px #af9772); */
    background-image: url(../images/index/btn-more.png);
    border-radius: 35px;
}

.slider_product_main .slider2.slider-nav02 .slick-slide.slick-current .game_tab,
.slider_product_main .slider2.slider-nav02 .slick-slide:hover .game_tab .game_tab_info {
    color: #ffffff;
    /* text-shadow: 0px 4px 4px #907c5d; */
}

.slider_product_main .slider2.slider-nav02 .slick-slide .game_tab .game_tab_info .img_slide_icon {
    display: block;
}

.slider_product_main .slider2.slider-nav02 .slick-slide .game_tab .game_tab_info .img_slide_icon_hover {
    display: none;
}

.slider_product_main .slider2.slider-nav02 .slick-slide.slick-current .game_tab .game_tab_info .img_slide_icon_hover {
    display: block;
}

.slider_product_main .slider2.slider-nav02 .slick-slide.slick-current .game_tab .game_tab_info .img_slide_icon {
    display: none;
}

.slider_product_main .slider2.slider-nav02 .slick-slide:hover .game_tab .game_tab_info .img_slide_icon_hover {
    display: block;
}

.slider_product_main .slider2.slider-nav02 .slick-slide:hover .game_tab .game_tab_info .img_slide_icon {
    display: none;
}

.slider_product_main .slider2.slider-nav02 .slick-slide.slick-current .game_tab .game_tab_info {
    color: #ffffff;
    /* text-shadow: 0px 4px 4px #907c5d; */
}

.slider_product_main .slider2.slider-single02 .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {}

.slider_product_main .slider2.slider-single02 .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] img.img_main {
    opacity: 1;
    transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transition: all 300ms ease;
}

.slider-nav02 .slick-track {
    transform: translate3d(0, 0, 0) !important;
}

.slider_product_main .slider2.slider-single02 .index_product_wrap {
    background: url(../images/index/product.png)no-repeat top center;
    background-size: cover;
    /* overflow: hidden; */
    width: 243px;
    height: 299px;
    border-radius: 12px;
    width: 17.75rem;
    height: 17.6875rem;
    margin-top: 3rem;
}

.slider_product_main .slider2.slider-single02 .slick-center .index_product_wrap {
    overflow: visible;
}

.game_tab_info {
    display: flex;
    bottom: 0;
    justify-content: center;
    justify-items: center;
    text-align: center;
    align-items: center;
    padding: 3px 0px;
    font-size: 11px;
    font-weight: 700;
    color: #425878;
    text-transform: uppercase;
    margin: 3px 0;
    width: 100%;
}

.slider2 {
    margin: 30px auto 30px auto;
}

.control-c {
    width: 34px !important;
    height: 68px !important;
}

.slider_product_main .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider_product_main .slick-arrow .slick-arrow-btn {
    cursor: pointer;
    pointer-events: visible;
    opacity: .65;
    background-color: #ffa466;
    transition: all .3s ease-in-out;
    width: 45px;
    height: 87px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 0 10px;
}

.slider_product_main .slick-arrow .slick-arrow-btn i {
    font-size: 30px;
}

.slider_product_main .slick-arrow .slick-arrow-btn.rightp {
    border-radius: 0 10px 10px 0;
}

.slider_product_main .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.section_whoweare {
    position: relative;
    margin-bottom: 140px;
}

.section_whoweare_box {
    background-image: url(../images/general-bg.jpg);
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 0 3px 3px #fff inset;
    filter: drop-shadow(0 4px 0 #cdcdcd) drop-shadow(0 5px 6px #0000002e);
    width: 100%;
    height: 30rem;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    margin-left: auto;
    padding: 1rem;
}

.section_whoweare_content {
    max-width: 58%;
    /* height: 74%; */
}

.section_whoweare_content h2 {
    color: #ff8633;
    font-weight: 600;
    text-shadow: rgba(74, 137, 252, .2) 0 3px 6px;
    /* white-space: break-spaces; */
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.section_whoweare_content p {
    max-height: 85%;
    color: #9c9c9c;
    overflow: auto;
    padding-bottom: 1rem;
    padding-right: 1rem;
}

.section_whoweare_img {
    position: absolute;
    left: -12%;
    top: 0;
    z-index: 1;
}

.section_whoweare_img img {
    width: 90%;
}

.gauge-container {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    width: 164px;
    height: 150px;
    display: block;
    padding: 10px;
    top: 0;
}

.gauge-col .col-3 .gauge-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto 1rem;
    text-align: center;
}

.lazy-load-image-background.blur {
    -webkit-filter: blur(15px);
    filter: blur(15px);
}

.lazy-load-image-background.blur.lazy-load-image-loaded {
    -webkit-filter: blur(0);
    filter: blur(0);
    transition: -webkit-filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s;
}

.gauge-col .col-3 .gauge-wrapper .gauge-content {
    position: absolute;
    width: 125px;
    height: 125px;
    top: 13.5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.gauge-col .col-3 .gauge-wrapper .gauge-content .gauge-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70%;
    position: absolute;
    left: 50%;
    top: 52.5%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.gauge-col .col-3 .gauge-wrapper .gauge-content .gauge-body p {
    font-size: 0.5rem;
    white-space: nowrap;
    margin-bottom: 0;
    color: #8894b9;
    font-weight: 700;
}

.gauge-col .col-3 .h5,
.gauge-col .col-3 h5 {
    font-size: .875rem;
    color: #848484;
    text-align: center;
}

.service-section-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../images/index/serv.png);
    background-position: bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0.75rem 1.25rem;
}

.service-section-content .h4,
.service-section-content h4 {
    color: #9c9c9c;
    margin: 1rem 0;
}

.service-section-content p {
    height: 100%;
    text-align: center;
    color: #9c9c9c;
    padding: 0 1rem 1rem;
    overflow: auto;
}

.section_service02 {
    padding-bottom: 100px;
}

.footer_main {
    background-color: #848484;
}

.footer_ul_link {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: flex;
    padding: 18px 0;
}

.footer_ul_link li {
    margin: 0 10px;
}

.footer_ul_link span {
    width: 2px;
    height: 15px;
    background-color: #f0f6ff;
}

.footer_ul_link li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
}

.f_providerhead {
    color: #ffa66a;
    text-align: left;
    margin-bottom: 15px;
}

.f_provider {

    border-top: 1px solid #747474;

    border-bottom: 1px solid #747474;

    padding: 20px 0;

    text-align: center;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 5%;
}

.footer_btm {
    background-color: #717171;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.f_lic {
    padding: 18px 0;
    /* text-align: center; */
    display: flex;
    justify-content: space-between;
    gap: 10%;
}

.right_fixed_btn {
    position: fixed;
    min-height: 40%;
    max-width: 6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10;
    bottom: 20px;
    right: 0;
    pointer-events: none;
}

.right_fixed_btn a {
    background: linear-gradient(180deg, #fff, #ffffff);
    box-shadow: 3px 5px 3px #4c4c4c47;
    display: block;
    pointer-events: auto;
    /* height: 5rem; */
    width: 6rem;
    padding: 0.75rem;
    margin-left: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
    text-align: center;
}

.right_fixed_btn p {
    color: #9c9c9c;
    font-size: 11px;
    margin: 0;
    margin-top: 10px;
}

.sports_bg {
    background-image: url(../images/bg/bg-sports.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.productpage_grid {
    display: grid;
    grid-template-columns: 40% 59%;
    padding-top: 12%;
    padding-bottom: 10%;
    justify-content: space-between;
    align-items: center;
}

.tabcontentproduct {
    display: none;
}

.product_content {
    color: #9c9c9c;
    margin: 20px 0;
}

.product_logo_icon {
    background-image: url(../images/header_icon/btn-normal.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0.2rem;
    box-shadow: 0px 3px 2px 0px #00000014;
    border-radius: 6px;
    min-height: 89px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tablinksproduct.active .product_logo_icon {
    background-image: url(../images/header_icon/btn-active.png);
}

.tablinksproduct.active .product_logo_icon img {
    filter: brightness(10.5);
}

.tablinksproduct {
    border: none;
    background-color: transparent;
    padding: 0;
}

.btn_enter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
}

.btn_enter p {
    margin: 0;
    position: absolute;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 1px 1px #8b8b8b;
    /* margin-top: -10px; */
}

.tabproduct {
    margin: 25px 0 25px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
}

.product_img_title img {
    width: 300px;
}

/*casino*/
.casino_bg {
    background-image: url(../images/bg/bg-casino.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/*esport*/
.esport_bg {
    background-image: url(../images/bg/bg-espb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/*games*/
.games_bg {
    background-image: url(../images/bg/bg-esports.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.slots_bg_banner {
    background-image: url(../images/bg/banner-slots.jpg);
    background-repeat: no-repeat;
    /* background-size: cover; */
    max-height: 800px;
    min-height: 800px;
    background-position: top center;
    position: relative;
}

.fish_bg {
    background-image: url(../images/bg/bg-fishing.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.flip_number {
    position: absolute;
    z-index: 10;
    bottom: 25%;
    left: 51%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

.flip_number_img {
    position: absolute;
    width: auto;
    height: auto;
    bottom: 14%;
    left: 52%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

.flip_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip_wrap span {
    width: 40px;
    height: 70px;
    perspective: 500px;
    overflow: hidden;
    display: inline-block;
    text-align: left;
    background-image: url(../images/slot/jp-num.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    font-size: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9c9c9c;
    font-weight: 500;
    margin: 0 2px;
}

.flip_wrap span.span_custom {
    background-image: none;
    color: #fff;
    width: 20px;
}

.slots_bg {
    background-color: #fff;
}

.slot_product_bg {
    background-color: #fff;
    box-shadow: 0px 0px 10px 3px #4c4c4c47;
    padding: 25px;
    margin: 30px 0;
    border-radius: 15px;
}

.slot_product_icon_wrap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 15px;
}

.slot_product_box {
    background-image: url(../images/slot/prov-bgnormal.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0.2rem;
    /* box-shadow: 0px 3px 2px 0px #00000014; */
    display: grid;
    align-items: center;
    grid-template-columns: 25% 75%;
    width: 100%;
    height: 53px;
    cursor: pointer;
    grid-gap: 5px;
    padding: 0 10px;
    text-align: center;
    justify-content: center;
}

.slot_product_box:hover,
.slot_product_box.active {
    background-image: url(../images/slot/prov-bgactive.png);
}

.slot_product_box img {
    margin: auto;
}

.slot_product_box:hover img,
.slot_product_box.active img {
    filter: brightness(10.5);
}

.slot_product_box:hover .slot_product_txt,
.slot_product_box.active .slot_product_txt {
    color: #fff;
}

.slot_product_txt {
    color: #9c9c9c;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 600;
    font-size: 12px;
}

.slot_product_games_wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    margin: 25px 0 0 0;
    width: 100%;
}

.slot_product_games_title {
    color: #9c9c9c;
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
}

.slot_product_games_box {
    border: 1px solid #ffa466;
    border-radius: 13px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.mobiledw_bg {
    padding: 10% 0 5% 0;
}

.section_downloadapp_box {
    background-image: url(../images/general-bg.jpg);
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 0 3px 3px #fff inset;
    filter: drop-shadow(0 5px 0 #ebf0ff) drop-shadow(0 5px 6px #0000002e);
    width: 100%;
    height: 30rem;
    display: flex;
    justify-content: end;
    /* align-items: center; */
    position: relative;
    margin-left: auto;
    padding: 2rem 1rem 1rem 1rem;
}

.section_downloadapp_img {
    position: absolute;
    left: -6%;
    top: -4%;
    z-index: 1;
}

.section_downloadapp_img img {
    width: 90%;
}

.section_downloadapp_content {
    max-width: 58%;
    width: 50%;
}

.section_downloadapp_content h2 {
    color: #ff8633;
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: rgba(74, 137, 252, .2) 0 3px 6px;
}

.section_downloadapp_content p {
    color: #9c9c9c;
    font-size: 1.125rem;
    /* padding: 0 6rem; */
    margin: 0;
    text-align: left;
}

.section_qr_wrap {
    display: flex;
    justify-content: left;
    margin: 25px 0 0 0;
    grid-gap: 30px;
}

.section_qr_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* height: 11.25rem; */
    border-radius: 5%;
    background-color: #fff;
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
    margin: auto;
    margin-bottom: 20px;
    padding: 15px;
}

.section_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_btn .section_btn_content {
    position: absolute;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #9c9c9c;
}

.section_qr_img img {
    width: 100%;
}

.section_downloadgames_box {
    background: linear-gradient(90deg, #828ea1 0%, #32353a 100%);
    background-size: cover;
    border-radius: 20px;
    /* box-shadow: 0 0 3px 3px #fff inset; */
    /* filter: drop-shadow(0 5px 0 #ebf0ff) drop-shadow(0 5px 6px #0000002e); */
    width: 90%;
    /* height: 30rem; */
    /*    display: flex;*/
    /*    justify-content: end;*/
    /* align-items: center; */
    position: relative;
    margin-left: auto;
    padding: 2rem 1rem 2rem 1rem;
    box-shadow: 0px 0px 3px 4px #0000001a;
    margin-top: 130px;
}

.section_downloadgames_box_grip {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}

.section_downloadgames_box_grip .tab_dw {
    display: none;
}

.section_downloadgames_box_grip .tab-active {
    display: block;
}

.tab-menu {
    position: absolute;
    left: -16%;
    top: 16%;
}

.tab-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-image: url(../images/mobile/menu.png);
    background-size: 100% 100%;
    min-height: 320px;
    background-repeat: no-repeat;
    width: 210px;
    filter: drop-shadow(0 1px 0 #ebf0ff) drop-shadow(0 3px 6px #0000002e);
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    grid-gap: 10px;
}

.tab-menu ul li a {
    color: #9c9c9c;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    width: 100%;
    text-align: center;
    padding: 11px;
    align-items: center;
}

.tab-menu ul li a.active-a,
.tab-menu ul li a:hover {
    background-image: url(../images/index/btn-more.png);
    background-size: contain;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
}

.section_downloadgames_box_img {
    z-index: 1;
}

.section_downloadgames_box_content h2 {
    color: #ff8633;
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: rgba(74, 137, 252, .2) 0 3px 6px;
}

.section_downloadgames_box_content .section_qr_img {
    width: 85%;
}

.section_downloadgames_box_content .section_qr_wrap {
    display: flex;
    justify-content: left;
    margin: 10px 0 0 0;
    grid-gap: 30px;
}

.dl {
    margin: 15px 0 0 0;
}

.dl table {
    width: 100%;
}

.dl table th {
    background: linear-gradient(180deg, #ffd3b5 0%, #ffa567 50%, #ffd3b5 100%);
    padding: 0.5rem;
}

.dl table tr {
    border: 1px solid #000;
}

.dl table tr td {
    background: #212121;
    color: #fdbd2a;
    padding: 0.5rem;
}

.dl table tr td:first-child {
    color: #9c9c9c;
}

/*wheel*/
.wheel_bg {
    background-image: url(../images/wheel/fw-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 900px;
}

.fortune_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.token_wrap {
    background-color: #fff;
    color: #ff8633;
    border-radius: 40px;
    width: 70px;
    height: 70px;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    padding: 13px;
    /* border: 1px solid #caa23f; */
    font-weight: 700;
    box-shadow: 0px 0px 3px 2px #00000017;
}

.token_wrap span {
    display: block;
    line-height: 1.2;
    /* align-items: center; */
    /* justify-content: center; */
}

.fortune_btn_wrap button {
    background: transparent;
    border: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fortune_btn_wrap button:focus {
    outline: unset
}

.fortune_btn_wrap button img {
    /* height: 45px; */
    filter: drop-shadow(0px 2px 3px #fff);
}

.fortune_btn_wrap button .spinbtn_txt {
    position: absolute;
    font-weight: 700;
    color: white;
    font-size: 22px;
    text-shadow: -1px 1px 0 #00000047, 1px 1px 0 #00000054, 1px -1px 0 #0003, -1px -1px 0 #0000002b;
    z-index: 1;
}

.fortune_btn_wrap button .spinbtn_txt2 {
    color: #9c9c9c;
    font-size: 19px;
    background: #fff;
    border-radius: 34px;
    font-weight: 600;
    padding: 10px 20px;
    height: 57px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortune_wrap {
    height: 100%;
    min-height: 781px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.modal-dialog.promo {
    max-width: 800px !important;
    border-radius: 20px;
}

.modal-content.promo {
    border: none;
    background: #191b1e;
    border-radius: 20px;
    /* border: 1px solid #d9353d; */
}

button.close-promo {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #000;
}

.grlist {
    color: var(--text-color);
}

.pm-title-wrapper {
    font-size: 21px;
    font-weight: 700;
    background: linear-gradient(180deg, #ffd4b7 0%, #ffa466 95%);
    color: #000;
    padding: 15px 20px;
    border-radius: 20px 20px 0px 0px;
    text-align: center;
}

.pmtable-wrapper {}

table.promo-table tr th {
    color: #fff;
    background: #d9353d;
    padding: 4px;
    text-align: center;
    border: 1px solid var(--text-color);
}

table.promo-table tr td {
    border: 1px solid var(--text-color);
    padding: 5px;
    color: var(--text-color);
    text-align: center;
}

.gr-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #d9353d;
}

.grlist ul {
    padding-left: 20px;
    margin-top: 5px;
}

.grlist ul li {
    padding-bottom: 8px;
    font-size: 14px;
    list-style: disc;
}

.promo-pop-cont {
    padding: 15px;
    border: 1px solid #d9353d;
    border-radius: 0px 0px 20px 20px;
}

.promo-nav button {
    background: #1e2024;
    padding: 10px 30px;
    color: #fff;
    border-radius: 20px;
}

.promo-modal-tnc {
    font-size: 14px;
    color: #9c9c9c;
    list-style: disc;
    padding: 0;
    margin: 0;
    padding-left: 17px;
}

.promo-modal-tnc li span {
    color: orangered;
    margin-right: 10px;

}

.promo_table tr th {
    background: #ffa466;
    padding: 10px;
    border-right: 1px solid #fff;
    text-align: center;
    font-size: 12px;
    color: #000;
}

.promo_table tr td {
    font-size: 12px;
    color: #000;
    padding: 10px;
    border: 1px solid #fff;
    background: #d7d7d7;
    text-align: center;
}

.basic-text {
    font-size: 15px;
    color: #000;
    margin-top: 10px;
    margin-left: 0px !important;
}

.promo_table {
    width: 100%;
}

.promo-text {
    padding: 20px;
    background-color: #fff;
    border-radius: 0px 0px 10px 10px;
}

.red-underline {
    margin: 10px 0 0 0;
}

.promo_bg_banner {
    background-image: url(../images/bg/banner-promotion.jpg);
    background-repeat: no-repeat;
    /* background-size: cover; */
    max-height: 800px;
    min-height: 800px;
    background-position: top center;
    position: relative;
}

.promo_wrap {
    display: grid;
    grid-template-columns: 250px auto;
    padding: 40px 0;
}

.promo_menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-image: url(../images/mobile/menu.png);
    background-size: 100% 100%;
    min-height: 320px;
    background-repeat: no-repeat;
    width: 250px;
    filter: drop-shadow(0 1px 0 #ebf0ff) drop-shadow(0 3px 6px #0000002e);
    /* height: 100%; */
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    grid-gap: 10px;
    padding: 2rem;
    max-height: 500px;
}

.promo_menu .filter {
    color: #9c9c9c;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    width: 100%;
    text-align: center;
    padding: 11px;
    align-items: center;
    cursor: pointer;
}

.promo_menu .filter.active {
    background-image: url(../images/index/btn-more.png);
    background-size: 100% 100%;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
}

.promoicon_h {
    display: none;
}

.promo_menu .filter.active .promoicon_n {
    display: none;
}

.promo_menu .filter.active .promoicon_h {
    display: block;
    filter: none;
}

.promo_menu .filter img {
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(1%) saturate(0%) hue-rotate(227deg) brightness(93%) contrast(85%);
}

.mix {
    display: none;
}

.promo_banner_boxes {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    min-height: 30px;
}

.promo_banner_boxes img {
    width: 100%;
}

.promo-boxes {

    padding-left: 20px;
}


.vip_bg_banner {
    background-image: url(../images/bg/banner-vip.jpg);
    background-repeat: no-repeat;
    /* background-size: cover; */
    max-height: 800px;
    min-height: 800px;
    background-position: top center;
    position: relative;
}

.vip-img img {
    width: 70px;
}

.vip-img {
    color: #ff8633;
    font-size: 12px;
}

.vip-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-in-table {
    padding: 20px;
    margin-bottom: 20px;
}

.vip-all {
    /* background: #fff; */
    /* box-shadow: 0px 1px 4px 5px #ababab24; */
    margin: 35px 0 0 0;
}

.vip-all tbody {
    box-shadow: 0px 1px 4px 5px #ababab24;
}

.vip-all tr td {
    text-align: center;
    padding: 5px;
    background: #ffffff;
    border-bottom: 1px solid #d2d2d2;
}

.vip-all tr td h3 {
    text-align: left;
    color: #ffffff;
}

.vip-all tr td:first-child {
    text-align: left;
    background: #a0abc9;
    color: #fff;
    font-weight: bold;
    width: 20%;
    font-size: 12px;
}

table.vip-all tr:first-child td {
    background: none;
}

tr.titleRow td {
    background: #ffa466 !important;
    color: #000 !important;
    border-bottom: 2px solid #ffd1b3 !important;
    border-top: 2px solid #ffd1b3 !important;
}

tr.titleRow p {
    margin: 0px;
    color: #b54a00;
}

.vip-all tr:first-child td {
    border: none;
}

table.vip-all tr td:nth-child(2) .vip-cell {
    text-transform: uppercase;
    font-weight: bold;
}

.vip-cell {
    text-transform: uppercase;
    font-weight: bold;
}

table.vip-all tr td:nth-child(3) .vip-cell {
    text-transform: uppercase;
    font-weight: bold;
}

table.vip-all tr td:nth-child(4) .vip-cell {
    text-transform: uppercase;
    font-weight: bold;
}

table.vip-all tr td:nth-child(5) .vip-cell {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

table.vip-all tr td:nth-child(6) .vip-cell {
    text-transform: uppercase;
    font-weight: bold;
}

table.vip-all tr td {
    width: 8%;
    font-size: 13px;
}

.vip-wrap {
    background: rgb(0 0 0 / 70%);
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.vip-tnc {
    padding: 0px 20px;
    color: #fff;
}

.vip-tnc h4 {
    font-size: 16px;
    font-weight: bold;
}

.vip-tnc ul {
    margin-bottom: 20px;
}

.vip-container {
    width: 1300px;
    margin: 0px auto;
}

tr.titleRow-last td {
    background: #b27ed0 !important;
    border: none !important;
    color: #fff;
}

.vip-tnc ol li {
    margin-bottom: 5px;
    padding-left: 10px;
}

.vip-tnc {
    color: #9c9c9c;
}

.info_bg {
    padding: 6% 0 5% 0;
    background: url(../images/general-bg.jpg) no-repeat top center;
    background-size: cover;
}

.info_grid {
    display: flex;
    grid-gap: 20px;
}

.info_grid_menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-image: url(../images/mobile/menu.png);
    background-size: 100% 100%;
    /* min-height: 320px; */
    background-repeat: no-repeat;
    /* width: 285px; */
    filter: drop-shadow(0 1px 0 #ebf0ff) drop-shadow(0 3px 6px #0000002e);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    grid-gap: 10px;
    padding: 20px;
    /* max-height: 365px; */
    height: 100%;
}

.info_grid_menu a {
    color: #9c9c9c;
    font-size: 14px;
    font-weight: 500;
    display: block;
    /* width: 100%; */
    text-align: center;
    padding: 11px;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    min-width: 150px;
    white-space: nowrap;
}

.info_grid_menu a.active {
    background-image: url(../images/index/btn-enter.png);
    background-size: 100% 100%;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    font-weight: 600;
}

.info_grid_content {
    background-image: url(../images/general-bg.jpg);
    background-size: 100% 100%;
    border-radius: 20px;
    box-shadow: 0 0 3px 3px #fff inset;
    filter: drop-shadow(0 5px 0 #ebf0ff) drop-shadow(0 5px 6px #0000002e);
    width: 100%;
    /* height: 30rem; */
    /* display: flex; */
    /* justify-content: left; */
    position: relative;
    margin-left: auto;
    padding: 2rem 1rem 1rem 1rem;
}

.inf-content h4 {
    margin-bottom: 20px;
    margin-top: 5px;
    color: #ff8633;
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: rgba(74, 137, 252, .2) 0 3px 6px;
}

.inf-content p {
    margin-bottom: 20px;
    opacity: 1;
    color: #9c9c9c;
}

.contact_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    max-width: 500px;
    margin: auto;
}

.contact_row a {
    display: block;
    position: relative;
    margin: auto;
}

.contact_row_container {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 2rem 1rem;
    text-align: center;
}

.contact_row_container h4 {
    font-size: 1.3125rem;
}

.contact_row_container img {
    width: 60px;
}

button.btn-tnc {
    background: linear-gradient(to bottom, #ffa466 0%, #e87b30 100%);
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 8px 15px;
    color: #000;
    border: none;
    border-radius: 5px;
    position: relative;
}

button.btn-tnc.collapsed {
    background: linear-gradient(to bottom, #ffc299 0%, #ffa466 60%);
    color: #fff;
}

button.btn-tnc:focus {
    outline: none;
}

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: #f0f6ff;
    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;
}

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;
}

.table-second {
    margin: 20px 0px;
}

.table-second>tbody>tr>th {
    border: 1px solid #ff6700;
    background: linear-gradient(to bottom, #ffc299 0%, #ffa466 60%);
    color: #fff;
    text-align: center;
    padding: 5px;
}

.table-second>tbody>tr>td {
    border: 1px solid #9c9c9c;
    background: #fafafa;
    padding: 5px;
    color: #9c9c9c;
}

.afterlogin_bg {
    padding: 6% 0 5% 0;
}

.afterlogin_body_grid {
    display: grid;
    grid-template-columns: 220px auto;
    grid-gap: 20px;
}

.afterlogin_left_menu {
    width: 100%;
    margin-right: 1rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
}

.afleft_menu_top {
    padding: 1rem;
}

.ps-user-details {
    display: grid;
    justify-content: center;
    grid-gap: 0.25rem;
    gap: 0.25rem;
    text-align: center;
}

.ps-user-details img {
    max-width: 60px;
    margin: auto;
}

.ps_navbar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.ps_navbar_box {
    display: block;
    text-align: center;
    color: #6b7ba8;
    transition: all .3s ease-in-out;
    font-size: 12px;
}

.ps_navbar_box img {
    display: block;
    max-width: 40px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.ps-user-name {
    font-weight: 600;
}

.afleft_menu_btm {
    padding: 0 0 1rem
}

.afleft_menu_btm ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.afleft_menu_btm ul li a.menu_btm_navlink {
    color: #6b7ba8;
    transition: all .3s ease-in-out;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
    padding: 0.75rem 1rem;
}

.afleft_menu_btm ul li a.menu_btm_navlink img {
    max-width: 25px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.afleft_menu_btm ul li a.menu_btm_navlink p {
    font-size: .875rem;
    color: #6b7ba8;
    width: 75%;
    margin: 0;
}

.afleft_menu_btm ul hr {
    border: none;
    height: 1px;
    opacity: 1;
    background-color: #becaec;
    margin: 1rem;
}

.afterlogin_right_menu {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
}

.afterloginpage_title {
    color: #414755;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group label {}

.select_bank_opt {
    display: grid;
    grid-template-columns: repeat(5, calc(20% - 0.4rem));
    grid-gap: 0.5rem;
    gap: 0.5rem;
    border-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
    border-color: #becaec;
}

.form-check .btn-check {
    border-color: #becaec;
}

.form-check .btn-check:checked {
    background-color: #4a89fc;
    border-color: #4a89fc;
}

.select_bank_opt .form-check-inline .form-check-label {
    font-size: .75rem;
    width: 100%;
    max-width: unset;
    flex-direction: column;
    height: 4.5rem;
    grid-gap: 0.15rem;
    gap: 0.15rem;
    overflow: hidden;
    border: 1px solid #cecece;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-check .btn-check:checked+.form-check-label {
    color: #4a89fc !important;
    border: 0.0625rem solid #9c9c9c;
    position: relative;
    overflow: hidden;
}

.select_bank_opt .form-check-inline .form-check-label img {
    height: 24px;
}

.form-check .btn-check:checked+.form-check-label:after {
    content: "";
    position: absolute;
    background: url(../images/afterlogin/checked.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -0.0625rem;
    right: -0.0625rem;
    width: 1.5625rem;
    height: 1.5625rem;
}

.select_bank_opt .form-check-inline {
    margin: 0;
    padding: 0;
}

.form-check-label p {
    margin: 0;
}

.content-section {
    display: none;
}

.tabcontent_custom_dep {
    padding-top: 0px;
}

.row_form {
    margin: 15px 0;
    display: flex;
    /* align-items: center; */
}

.tabcontent_custom_dep {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.form-control {
    color: #414755;
    border: 1px solid #becaec;
    min-height: 2.5rem;
}

.amt_input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.amt_input .input-group-text {
    color: #414755;
    background: transparent;
    position: relative;
    border-right: 0;
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    min-height: 2.5rem;
    border: 0;
}

.amt_input input {
    margin-left: calc(var(--bs-border-width)*-1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.select_bank_opt_amt .select_bank_opt .form-check-inline .form-check-label {
    height: 2.5rem;
    width: 100%;
}

.select_bank_opt_amt .select_bank_opt {
    display: grid;
    grid-template-columns: repeat(7, calc(14% - 0.4rem));
    grid-gap: 0.5rem;
    gap: 0.5rem;
    border-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
    border-color: #becaec;
    margin-top: 10px;
}

.uploader {
    display: block;
    /* clear: both; */
    /* margin: 0 auto; */
    width: 100%;
    /* max-width: 600px; */
}

.uploader label {
    float: left;
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 7px;
    border: 1px solid #becaec;
    transition: all 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.uploader label:hover {
    border-color: #becaec;
}

.uploader label.hover {
    border: 3px solid #454cad;
    box-shadow: inset 0 0 0 6px #eee;
}

.uploader label.hover #start i.fa {
    transform: scale(0.8);
    opacity: 0.3;
}

.uploader #start {
    float: left;
    clear: both;
    width: 100%;
}

.uploader #start.hidden {
    display: none;
}

.uploader #start i.fa {
    font-size: 50px;
    margin-bottom: 1rem;
    transition: all 0.2s ease-in-out;
}

.uploader #response {
    float: left;
    clear: both;
    width: 100%;
}

.uploader #response.hidden {
    display: none;
}

.uploader #response #messages {
    margin-bottom: 0.5rem;
}

.uploader #file-image {
    display: inline;
    margin: 0 auto 0.5rem auto;
    width: auto;
    height: auto;
    max-width: 180px;
}

.uploader #file-image.hidden {
    display: none;
}

.uploader #notimage {
    display: block;
    float: left;
    clear: both;
    width: 100%;
}

.uploader #notimage.hidden {
    display: none;
}

.uploader progress,
.uploader .progress {
    display: inline;
    clear: both;
    margin: 0 auto;
    width: 100%;
    max-width: 180px;
    height: 8px;
    border: 0;
    border-radius: 4px;
    background-color: #eee;
    overflow: hidden;
}

.uploader .progress[value]::-webkit-progress-bar {
    border-radius: 4px;
    background-color: #eee;
}

.uploader .progress[value]::-webkit-progress-value {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
}

.uploader .progress[value]::-moz-progress-bar {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
}

.uploader input[type=file] {
    display: none;
}

.uploader div {
    margin: 0 0 0.5rem 0;
    color: #5f6982;
}

.uploader .btn {
    display: inline-block;
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    clear: both;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: initial;
    border: none;
    border-radius: 0.2rem;
    outline: none;
    padding: 0 1rem;
    height: 36px;
    line-height: 36px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    /* border-color: #454cad; */
    cursor: pointer;
}

.button_sub {
    color: #fff;
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 3px 6px 2px #ffa46652;
    min-height: 33px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    min-width: 85px;
    cursor: pointer;
    border: none;
}

.table-share tr th {
    background-color: #9c9c9c;
    padding: 10px 5px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #9c9c9c;
    color: #fff;
}

.table-share tr td {
    padding: 5px;
    border: 1px solid #9c9c9c;
    text-align: center;
}

.filters-col {
    display: grid;
    grid-gap: 0.75rem;
    gap: 0.75rem;
    margin-top: 1rem;
}

.filters-tp-panel {
    display: flex;
    justify-content: space-between;
}

.filters-tp-col {
    display: flex;
    align-items: center;
}

.col-form-label {
    font-size: .75rem;
    white-space: nowrap;
    margin-right: 1rem;
}

.filters-group {
    display: flex;
}

.filters-group .form-check-label {
    height: 2.5rem;
    min-width: 4.5rem;
    max-width: 8.75rem;
    line-height: 1.25;
    border: 0.0625rem solid #becaec;
    color: #414755;
    background-color: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 0;
    font-size: .75rem;
}

.filters-group .form-check-label.active,
.filters-group .form-check-label:hover {
    color: #4a89fc;
    border: 0.0625rem solid #4a89fc;
    position: relative;
    overflow: hidden;
    line-height: 1.25;
    font-size: .75rem;
}

.filters-group .form-check-label.active:after {
    content: "";
    position: absolute;
    background: url(../images/afterlogin/checked.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -0.0625rem;
    right: -0.0625rem;
    width: 1.5625rem;
    height: 1.5625rem;
}

.filters-group .form-check-inline:first-child .form-check-label {
    border-radius: 0.25rem 0 0 0.25rem;
}

.filters-group .form-check-inline:last-child .form-check-label {
    border-radius: 0 .25rem .25rem 0;
}

.filters-group .form-check-inline {
    margin: 0;
    padding: 0;
}

.filters-tp-col_date {
    grid-gap: 10px;
}

.history_table {}

.history_table tr th {
    padding: 0 5px;
}

.history_table tr td {
    padding: 3px 5px;
}

tr.unread td {
    font-weight: bold;
    color: #fff;
}

.history_table tr th:last-child {
    text-align: right;
}

.history_table tr td:last-child {
    color: #f4ba00;
    text-align: right;
}

.afterlogin_right_menu_historytable {
    min-height: 500px;
}

.time_h {
    font-size: .75rem;
    white-space: nowrap;
    margin-right: 1rem;
}

.btn-df {
    border: none;
    background: #ed1d49;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

.addbank_form {
    display: none;
}

.addbankbtn {
    background: transparent;
    border: none;
    color: #9c9c9c;
    margin-top: 40px;
}

.addbankbtn i {
    margin-right: 10px;
}

.wallet_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.my-wallet-content {
    height: 100%;
    display: flex;
    padding: 1rem;
    border: 1px solid #becaec;
    border-radius: 0.5rem;
}

.wallet-container {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.interest-tnc {
    width: max-content;
    /* min-width: 10rem; */
    display: flex;
    align-items: center;
    border: 0.0625rem solid #4a89fc;
    border-radius: 1rem;
    font-size: .75rem;
    padding: 0.125rem 0.25rem;
    line-height: 1;
    color: #4a89fc;
    font-weight: 500;
    background: #f6faff;
    margin-right: 0.5rem;
    cursor: pointer;
}

.wallet-container_content p {
    color: #414755;
    font-weight: 500;
    margin: 0;
}

.wallet-container_content span {
    font-size: 1.25rem;
    word-break: break-all;
}

.wallet-container img {
    width: 60px;
}

.afterlogin_right_menu_bank {
    min-height: 523px;
}

.amt-box {
    position: relative;
}

button.btn-cpy {
    position: absolute;
    right: 24px;
    top: 9px;
    border: none;
    padding: 0px;
    color: #636363;
    background: transparent;
}

.qr-code img {
    display: block;
    margin: 0px auto;
    max-width: 200px;
    /* margin-top: 20px; */
}

.msg-tabs-col .nav-tabs {
    border-bottom: 0;
}

.msg-tabs-col .nav-tabs .nav-item .nav-link {
    position: relative;
    color: #414755;
    background: transparent;
    font-weight: 600;
    border: 0;
    border-bottom: 0.1875rem solid transparent;
    transition: all .3s ease-in-out;
}

.msg-tabs-col .nav-tabs .nav-item .nav-link.active {
    color: #4a89fc;
    border-bottom: 0.1875rem solid #4a89fc;
}

.notify-num {
    right: -2.5%;
    top: -7.5%;
    width: 1.0625rem;
    height: 1.0625rem;
    border-radius: 50%;
    color: #fff;
    background-image: linear-gradient(0deg, #ea4e3d, #f7778c);
    font-size: .63rem;
    font-weight: 500;
    line-height: 1.0625rem;
}

.notify-num,
.notify-red-dot {
    position: absolute;
    display: inline-block;
}

.afterlogin_right_menu_msg {
    padding-bottom: 0;
}

.msg-edit-panel {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.msg-edit-panel i {
    margin-right: 5px;
}

.box_delete {
    color: red;
}

.box_mark {
    color: #4a89fc;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-color: #becaec;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.msg-icon-col img {
    width: 30px;
}

.list-group-item .h6,
.list-group-item h6 {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    width: 17%;
    /* line-height: 1; */
}

.list-group-item .h6>span,
.list-group-item h6>span,
.list-group-item p,
.list-group-item span {
    font-size: .75rem;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-group-item p {
    color: #6b7ba8;
    width: 65%;
}

.list-group-item>span:not(h6):not(.h6) {
    color: #848484;
}

.reg-box {
    width: 100%;
}

.reg_bg {
    background-image: url(../images/general-bg.jpg);
    background-size: 100% 100%;
    border-radius: 20px;
    box-shadow: 0 0 3px 3px #fff inset;
    filter: drop-shadow(0 5px 0 #ebf0ff) drop-shadow(0 5px 6px #0000002e);
    width: 100%;
    position: relative;
    margin-left: auto;
    padding: 2rem 1rem 1rem 1rem;
}

.content_section_reg {
    margin: 50px 0;
}

.reg-wrp {
    display: grid;
    justify-content: space-between;
    grid-gap: 10px;
    grid-template-columns: 34% 59%;
}

.reg-step {
    background: url("../images/register/rtep-1.png") no-repeat top center;
    width: 658px;
}

.reg-step2 {
    background: url("../images/register/rtep-2.png") no-repeat top center;
    width: 658px;
}

.reg-step3 {
    background: url("../images/register/rtep-3.png") no-repeat top center;
    width: 658px;
}

.reg-step4 {
    background: url("../images/register/rtep-4.png") no-repeat top center;
    width: 658px;
}

.reg-wrap .container {
    width: 1120px;
    max-width: 1120px;
}

.reg-step ul li {
    list-style: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reg-step ul {
    padding: 0px;
    display: grid;
    height: 44px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
}


.ttl-reg {
    padding-left: 8px;
    color: #9c9c9c;
    font-weight: bold;
    font-size: 14px;
}

.ttl-nm {
    color: #fff;
    font-weight: bold;
    padding-right: 8px;
    position: relative;
    top: 2px;
}

.reg-step ul li.active .ttl-reg,
.reg-step ul li.active .ttl-nm,
.reg-step ul li:hover .ttl-reg,
.reg-step ul li:hover .ttl-nm {
    color: #666666;
}

.reg-step ul li {
    padding-right: 14px;
    background: url("../images/register/silver-arrow.png") no-repeat;
    width: 184px;
}

.reg-step ul li:hover,
.reg-step ul li.active {
    padding-right: 16px;
    background: url("../images/register/gold-arrow.png") no-repeat;

}

.reg-step ul li:first-child {
    z-index: 3;
}

.reg-step ul li:nth-child(2) {
    padding-right: 11px;
    background: url("../images/register/silver-arrow.png") no-repeat;
    position: relative;
    margin-left: -20px;
    padding-left: 25px;
    /*    filter: grayscale(1);*/
    z-index: 2;
}

.reg-step ul li:nth-child(3) {
    padding-right: 12px;
    background: url(../images/register/silver-arrow.png) no-repeat;
    position: relative;
    margin-left: -23px;
    /*    filter: grayscale(1);*/
    padding-left: 25px;
    z-index: 1;
}

.reg-step ul li:last-child {
    padding-right: 9px;
    background: url("../images/register/silver-last.png") no-repeat;
    position: relative;
    margin-left: -27px;
    /* filter: grayscale(1); */
    padding-left: 29px;
}

.reg-step ul li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.reg-step ul li.active:nth-child(3),
.reg-step ul li:hover:nth-child(3) {
    background: url(../images/register/gold-arrow-middle.png) no-repeat;
}

.reg-step ul li.active:nth-child(2),
.reg-step ul li:hover:nth-child(2) {
    background: url(../images/register/gold-arrow-middle.png) no-repeat;
}

.reg-step ul li.active:last-child,
.reg-step ul li:hover:last-child {
    background: url("../images/register/gold-end.png") no-repeat;
}

.form-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 5px;
}

.inp-txt {
    width: 210px;
    padding-left: 15px;
    text-transform: uppercase;
}

.inp-box input {
    margin: 0px;
    width: 100%;
    height: 40px;
    border: 1px solid #9c9c9c;
    background: #9c9c9c;
    color: #000;
}

.inp-box {
    width: 100%;
    display: flex;
}

.reg-box img {
    margin-bottom: 10px;
}

.reg-box2 {
    margin: 20px 0px;
}


.btn-sub {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.btn-sub .jms-link {
    height: 38px;
    font-size: 16px;
    color: #fff;
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 3px 6px 2px #ffa46652;
    min-height: 33px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    min-width: 85px;
    cursor: pointer;
    border: none;
}

.wrap-reg {
    margin-top: 29px;
}

select.form-nm {
    background: #a7b3d6;
    color: #000;
    border: none;
    padding: 0px 20px;
    margin-right: 10px;
    width: 25%;
}

.form-field {
    display: block;
    padding: 10px;
    border: 1px solid #cacaca;
    border-radius: 5px;
    height: 53px;
}

.red-mi {
    color: #FF0004;
}

.field {
    float: left;
    padding: 7px;
    font-weight: 800;
    font-size: 17px;
    line-height: 1;
    width: 20%;
    vertical-align: middle;
    color: #292929;
}

.value {
    float: left;
    padding: 3px;
    width: 75%;
    position: relative;
}

.form-field .value input {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.form-field .value input:focus {
    outline: 0;
}

.value.vercode {
    width: 60%;
}

.vcode {
    float: left;
    padding: 3px;
    width: 16%;
}

.vcode img {
    max-width: 110px;
}

select.telco {
    width: 100px;
    border: none;
    color: #fff;
    background: none;
    font-size: 16px;
    background: #a7b3d6;
}

.value.tel-num {
    display: flex;
}

input.tel-input {
    margin-left: 15px;
}

.phone-verify {
    max-width: 300px;
    margin: auto;
    background: #a7b3d6;
}

input.num-verify {
    height: 45px;
    width: 45px;
    margin: 0 5px;
    font-size: 24px;
    text-align: center;
    padding: 5px;
    border: 1px solid #cacaca;
    border-radius: 5px;
}

.code-field {
    text-align: center;
}

.field-label {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.code-issue {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.congrazt-title {
    font-size: 24px;
    font-weight: 800;
}

.congrazt-title-2 {
    font-size: 18px;
    font-weight: 700;
}

.tick-success {
    font-size: 130px;
    line-height: 1;
    color: #ffc299;
    padding: 10px 0;
}

select.telco:focus {
    border: none;
    outline: none;
}

button.jms-link,
button.jms-link2 {
    height: 38px;
    font-size: 16px;
    color: #fff;
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 3px 6px 2px #ffa46652;
    min-height: 33px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    min-width: 85px;
    cursor: pointer;
    border: none;
}

.jms_btn_all {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

/*language*/

.lang-box {
    align-self: center;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    /* margin-left: 10px; */
    /* width: 55px; */
    border-radius: 25px;
    min-height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
}

.lang-btn:focus {
    outline: none;
}

.lang-btn.dropdown-toggle::after {
    color: #fff;
}

.dropdown-menu.language {
    padding: 10px;
    /* background: rgb(0 0 0); */
    min-width: 247px;
    border: none;
    top: 6px !important;
    box-shadow: 0 0 1px #fff;
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 95%);
    box-shadow: 0 3px 6px 2px #0000002e;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.lang-menu {
    padding: 15px;
    min-width: 250px;
    background: #010205;
    border: 1px solid #516997;
}

.lang-drop-menu {
    color: #fff;
}

.region-wrap {
    display: flex;
    justify-content: unset;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #516997;
}

.lang-drop-menu i {
    font-size: 30px;
    color: #005fa0;
}

.bb-none {
    border-bottom: none;
}

.reginItem {
    margin-bottom: 4px;
}

.language-sec {
    height: 100vh;
    background-size: cover;
    padding: 10px;
    background: #023431 url(../images/bg-index.jpg)no-repeat center;
}

.lang-title {
    font-size: 25px;
    color: #ffe001;
    padding: 5px;
    text-align: center;
    background: #001315;
    text-transform: uppercase;
    border-radius: 5px;
    margin-bottom: 20px;
}

.region_box .reginItem .iconsAndText {
    margin-top: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0.1rem;
    justify-content: space-between;
}

.region_box .reginItem .iconsAndText>ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
}

.region_box .reginItem .iconsAndText>ul>li {
    height: 0.72rem;
    border-right: 0.02rem solid #cccccc;
    padding: 0 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.region_box .reginItem .iconsAndText>ul>li:last-child {
    border-right: none;
}

.iconsAndText img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding-left: 0;
}

.region_box .reginItem .title {
    font-size: 11px;
    color: #929292;
    line-height: 100%;
}

.region_box {}

.mainFont {
    color: #9c9c9c;
    font-size: 11px;
}

.region-text {
    margin-left: 15px;
    text-transform: uppercase;
}

.lang-btn img {
    max-width: 20px;
}

.dropdown-menu.language a {
    padding: 1px 5px;
}

.dropdown-menu.language a:hover {
    background: transparent;
}

.dropdown-menu.language a:hover img {
    filter: drop-shadow(0px 0px 2px #fff);
}

/* end */

/* TRANSFER BALANCE */
.prov-bx {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.bld-detail {
    display: flex;
    /* background: #292825;
    width: 100%; */
}

.bld-detail-in {
    display: flex;
    justify-content: center;
    border: 1px solid #ffa466;
    padding: 20px;
    justify-content: center;
    align-items: end;
    /* background: #292825;
    color: #fff; */
}

.am-box {
    padding: 5px 20px;
    border-radius: 5px;
    width: 180px;
    text-align: right;
    padding-right: 5px;
    color: #ffa466;
    border: 1px solid #ffa466 !important;
}

.amt-detail {
    margin-right: 10px;
}

.user-detail {
    margin-right: 20%;
}

.ttl-bln {
    text-align: right;
}

.prov-in ul {
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    padding: 0px;
    grid-template-columns: repeat(6, 1fr);
    margin: 0px;
}

.prov-in ul li {
    list-style: none;
    border: 1px solid #ffd1b3;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    margin-left: -1px;
}

.prov-in ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    grid-gap: 10px;
    justify-content: center;
}

.prov-in ul li:nth-child(7n+1) {}

.prov-in ul li p {
    color: #ffa466;
    margin: 0px;
    font-size: 12px;
    border: 1px solid #ffd1b3;
    border-radius: 30px;
    padding: 0px 10px;
}

.prov-in ul li h5 {
    margin: 0px;
    font-size: 14px;
    color: #9c9c9c;
    height: 30px;
}

.prov-in ul li:hover {
    /* background: #9d9d9d;
    color: #fff; */
    background: #000;
}

.in-all {
    background: #06cb24f2;
    color: #fff;
}

.inout button {
    border: none;
    border-radius: 5px;
}

.out-all {
    background: #f00;
    color: #fff;
}

.in-all:hover {
    background: #048b19f2;
}

.out-all:hover {
    background: #b70303;
}

.out-all:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.out-in:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.amt-wrap {
    border: 1px solid #fcd25e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

.yll-txt {
    font-size: 10px;
    color: #ffa466;
}

.mw-wrap button {
    border: none;
    margin-bottom: 10px;
    padding: 5px 20px;
    font-size: 16px;
    border-radius: 5px;
}

.mw-wrap {
    display: flex;
    flex-direction: column;
}

.amt-ttl {
    color: #ffa466;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
}

.restore-box {
    /* width: 20%; */
    text-align: end;
    color: #7682a5;
    margin-bottom: 10px;
}

.restore-box div {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.restore-box div img {
    max-width: 30px;
}

/* AFTERLOGIN HEADER */
.user-balance-container {
    display: flex;
    flex-direction: column;
}

.user-balance-container .profile-dropdown {
    width: 225px;
    position: absolute;
    top: 50px;
    right: 0;
    list-style-type: none;
    background-color: #fff;
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    transition: all .3s ease-in-out;
    pointer-events: none;
}

.user-balance-container .profile-dropdown:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 60%;
    border-bottom: 6px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.user-balance-container .profile-dropdown li {
    padding: 1rem;
}

.user-balance-container .user-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: #414755;
    cursor: pointer;
}

.user-balance-container .user-balance .coin-balance span {
    padding-left: 0.25rem;
}

.user-balance-container .user-balance .coin-balance img {
    width: 100%;
    max-width: 1.25rem;
    height: auto;
}

.user-balance-container .user-balance .coin-balance {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    padding-right: 0.25rem;
}

.user-balance-container .user-balance .header-arrow {
    width: 16px;
    height: 16px;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.user-balance-container .profile-dropdown li a {
    display: flex;
    align-items: center;
}

.vip-icon {
    width: 2.125rem;
    min-width: 2.125rem;
    height: 1.0625rem;
    background: linear-gradient(90deg, #ffe5b4, #ffaa09);
    color: #f0f6ff;
    text-align: center;
    font-weight: 700;
    font-size: .63rem;
    font-style: italic;
    line-height: 1.1rem;
    border-radius: 0.3125rem;
    z-index: 1;
    margin: 0;
}

.user-profile-container .vip-icon {
    position: absolute;
    bottom: 0;
    right: -22%;
    background: #8b9ccb;
    z-index: 2;
}

.user-profile-container .user-profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.user-profile-container {
    position: relative;
    width: 3.125rem;
    height: 3.125rem;
}

.user-balance-container p {
    margin-bottom: 0;
}

.user-balance-container .profile-dropdown.active {
    pointer-events: visible;
    opacity: 1;
}

.user-balance-container .profile-dropdown li a p {
    padding: 0 0.5rem;
    color: #6b7ba8;
}

.user-balance-container .menu_btm_navlink img {
    max-width: 25px;
}

.user-balance-container .user-balance .coin-balance:after {
    content: "";
    height: 1.25rem;
    width: 0.0625rem;
    position: absolute;
    right: -0.03125rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #414755;
}

.btn-signout {
    background-color: #414755;
    width: 100%;
    border: none;
    padding: 5px;
    border-radius: 10px;
    color: #fff;
}

.floating img {
    width: 50%;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
    bottom: 10%;
    position: fixed;
    z-index: 1000;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

.floating-all img {
    width: 70%;
}

.floating_modal .modal-content {
    background: none;
    border: none;
}

.floating-wrap img {
    display: block;
    margin: 0px auto;
    opacity: 1;
}

.floating-wrap .close {
    color: #fff;
    opacity: 1;
}

.floating_modal .close {
    color: #fff;
    opacity: 1;
    font-size: 50px;
    position: absolute;
    right: 0px;
    z-index: 10;
}

.floating-wrap a {
    position: relative;
}

.floating-text {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
    padding: 16px;
    color: #000;
    font-weight: bold;
}

.floating-pop {
    display: inline-flex;
    padding: 10px 20px;
    color: #fff;
    font-size: 50px;
    text-shadow: 3px 3px black;
    line-height: 30px;
}

#closeButton {
    right: 0;
    top: 0px;
    color: #ffa466;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 20px;
    font-weight: 100;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    font-weight: 900;
}

.btn-group-transfer {

    display: flex;

    justify-content: end;

    grid-gap: 10px;
}

.btn-group-transfer button {
    border: none;
    border-radius: 5px;
    padding: 5px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    flex: 1;
}

.btn-in-transfer {
    background: #13ce2f;
}

.btn-out-transfer {
    background: #ff0000;
}

.logo img {
    max-width: 150px;
}

.msg-in ul {
    color: #000;
    padding-left: 5px;
}

.msg-in ul li {
    list-style: none;
    margin-bottom: 5px;
}

.msg-in ul li i {
    margin-right: 10px;
    color: #ffa36e;
}

.msg-in {
    font-weight: 500;
}

.msg-in p {
    margin-left: 15px;
}

.inner_product_content.vip_wrap {
    width: 400px;
    text-align: left;
    margin-left: auto;
    padding-top: 110px;
}

.status_wrapper {
    margin-top: 30px;
}

.vip_tit {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffbb8e;
}

.vip_con {
    font-size: 13px;
    margin-bottom: 20px;
    color: #000;
}

.vip_status_wrap {
    display: grid;
    grid-template-columns: 300px auto;
    padding-top: 300px;
}

.vip_status_wrap img {
    width: 235px;
}

.progress-bar {
    position: relative;
    overflow: hidden;
    height: 30px;
    margin-top: 10px;
    border-radius: 30px;
    background: #dbdbdb;
}

.progress-bar>span {
    position: relative;
    display: block;
    height: 100%;
}

.progress-bar>span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffbb8e;
}

.current-status-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.current-status h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.status-bottom h6 {
    margin: 0;
    padding: 39px 0 0px;
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.status-bottom h6:before {
    width: 1px;
    height: 27px;
    position: absolute;
    background: #dbdbdb;
    bottom: 20px;
    left: 50%;
    content: "";
    transform: translateX(-50%);
}

.status-bottom p {
    color: #b0b0b0;
    font-size: 13px;
    padding: 7px 0 0;
    line-height: 13px;
    text-align: center;
    /* font-weight: bold; */
}

.vip span {
    text-shadow: 1px 3px 4px #000;
}

.status-bottom span {
    display: block;
}

.color1 {
    color: #4a4237;
}

.color2 {
    color: #453733;
}

.color3 {
    color: #b7b7b7;
}

.color4 {
    color: #cbb584;
}

.color5 {
    color: #a7c2d7;
}

.color6 {
    color: #111;
}

.progress_percent_bronze {
    width: 7%;
}

.progress_percent_silver {
    width: 29%;
}

.progress_percent_gold {
    width: 50%;
}

.progress_percent_platinum {
    width: 72%;
}

.progress_percent_diamond {
    width: 100%;
}

.vip_table {
    color: #9c9c9c;
    text-align: center;
    font-size: 13px;
    /* font-weight: bold; */
    margin-bottom: 50px;
}

.icon_1st {
    content: '';
    min-height: 28px;
}

.txt_yellow {
    color: #a7a7a7 !important;
    font-weight: normal !important;
}

.vip_line hr {
    border-top: 1px solid #b7b7b7;
}

table.vip_table tbody tr td:first-child {
    text-align: left;
    color: #ffbb98;
    font-weight: bold;
}

table.vip_table tbody tr td img {
    width: 100px;
}

table.vip_table tbody tr td {
    padding: 10px;
}

table.vip_table tbody tr td.text-left {
    padding-bottom: 0px;
    padding-top: 12px;
    text-transform: uppercase;
    color: #ffbb93;
}

.vip_pri {
    font-size: 20px;
    vertical-align: bottom;
}

.vip_bom_img {
    text-align: center;
    padding-top: 30px;
}

.inner_main_body {
    background-color: #fff;
    min-height: 500px;
    background-position: top center;
    background-repeat: no-repeat;
}

.inner_product_txt {
    margin-top: 45px;
}

.lotto-bg {
    background: #17181a url(../images/4d/lotto-bg.jpg) no-repeat top center;
    padding-bottom: 20px;
}

.fd-keno-in {
    margin-bottom: 15px;
    margin-left: 0px;
    position: relative;
}

.fd-keno-in img {
    position: relative;
    display: block;
    border: none;
    float: left;
    padding-left: 10px;
}

.lottery-bg {
    background: #000 url(../images/common/lottery-bg.jpg) top center no-repeat;
}

.lottery-item {
    float: left;
    position: relative;
    margin: 13px 0 13px 29px;
}

.btn-lottery-wrap {
    position: absolute;
    left: 0;
    bottom: -5px;
}

.btn-lottery-item {
    float: left;
    padding: 0 3px;
}

.btn-lottery {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #e3d08c;
    text-align: center;
    border: 1px solid #e3d08c;
    border-radius: 5px;
}

.btn-lottery:hover,
.btn-lottery:focus {
    border: 1px solid #e3d08c;
    background: #e3d08c;
    color: #000000;
    text-decoration: none;
}

.payoutTable {
    border-collapse: collapse;
    border: 1px solid #e3d08c;
}

.payoutTable>tbody>tr>th {
    border: 1px solid #e3d08c;
    padding: 5px 5px;
    background: #e3d08c;
    font-weight: bold;
    text-align: center;
    color: #000000;
}

.payoutTable>tbody>tr>td {
    border: 1px solid #e3d08c;
    padding: 3px 5px;
    text-align: center;
}

.txt-bonus {
    position: relative;
    top: -1px;
}

.txt-bonus-desp {
    color: #e3d08c;
    font-weight: bold;
}

.fourD-titleBG {
    background-color: #3f3f3f;
    height: 26px;
}

.fourD-title {
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
}

.fourD-topTxtone {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    text-align: center;
    padding: 0;
    background: #fff;
}

.fourD-topTxttwo {
    font-size: 17px;
    font-weight: bold;
    color: #000;
    text-align: center;
    padding: 0px;
}

.fourD-topTxtthree {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-align: center;
    background-color: #fff;
    padding: 1px;
    height: 15px;
}

.fourD-item {
    float: left;
    /* margin-left: 11px; */
    width: 265px;
    background-color: #e3e3e3;
    padding: 8px;
    border-radius: 5px;
    height: 335px;
    margin-bottom: 15px;
    /* box-shadow: 0px 1px 4px #000; */
}

.fourD-item .fd-top {
    /* height: 42px; */
}

.fourD-item .fd-top-left {
    float: right;
    width: 179px;
    padding-right: 3px;
}

.fourD-item .fd-top-left .fd-title-01 {
    padding-top: 2px;
    padding-right: 3px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-align: right;
}

.fourD-item .fd-top-left .fd-title-02 {
    float: left;
    padding-left: 3px;
    width: 95px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
}

.fourD-item .fd-top-left .fd-title-03 {
    float: right;
    font-size: 10px;
    color: #fff;
    padding-right: 3px;
}

.fourD-item .fd-top-left .fd-title-01w {
    padding-top: 2px;
    padding-left: 3px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.fourD-item .fd-top-left .fd-title-02w {
    float: left;
    padding-left: 3px;
    width: 95px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
}

.fourD-item .fd-top-left .fd-title-03w {
    float: left;
    font-size: 11px;
    color: #fff;
}

.fourD-item .fd-top-right {
    float: right;
    display: inline-block;
    width: 45%;
}

.fourD-item .fd-row-01,
.fourD-item .fd-row-02 {
    margin-top: 7px;
}

.fourD-item .fd-row-bg {
    background: #7c7b7b;
}

.sixD-table {
    border-collapse: collapse;
    border: 2px solid #7c7b7b;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}

.sixD-table>tbody>tr>th {
    background: #3f3f3f;
    height: 24px;
    border: 2px solid #7c7b7b;
    color: #FFFFFF;
}

.sixD-table>tbody>tr>td {
    border: 2px solid #7c7b7b;
}

.fourd-TableBtm>tbody>tr>td {
    border: 2px solid #7c7b7b;
}

.btn-4d {
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    min-width: 180px;
    background: rgba(248, 253, 65, 1);
    background: -moz-linear-gradient(top, rgba(248, 253, 65, 1) 0%, rgba(225, 166, 3, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248, 253, 65, 1)), color-stop(100%, rgba(225, 166, 3, 1)));
    background: -webkit-linear-gradient(top, rgba(248, 253, 65, 1) 0%, rgba(225, 166, 3, 1) 100%);
    background: -o-linear-gradient(top, rgba(248, 253, 65, 1) 0%, rgba(225, 166, 3, 1) 100%);
    background: -ms-linear-gradient(top, rgba(248, 253, 65, 1) 0%, rgba(225, 166, 3, 1) 100%);
    background: linear-gradient(to bottom, rgba(248, 253, 65, 1) 0%, rgba(225, 166, 3, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8fd41', endColorstr='#e1a603', GradientType=0);
}

.btn-4d:hover,
.btn-4d:focus {
    color: #000000;
    text-decoration: none;
    background: rgba(225, 166, 3, 1);
    background: -moz-linear-gradient(top, rgba(225, 166, 3, 1) 0%, rgba(248, 253, 65, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(225, 166, 3, 1)), color-stop(100%, rgba(248, 253, 65, 1)));
    background: -webkit-linear-gradient(top, rgba(225, 166, 3, 1) 0%, rgba(248, 253, 65, 1) 100%);
    background: -o-linear-gradient(top, rgba(225, 166, 3, 1) 0%, rgba(248, 253, 65, 1) 100%);
    background: -ms-linear-gradient(top, rgba(225, 166, 3, 1) 0%, rgba(248, 253, 65, 1) 100%);
    background: linear-gradient(to bottom, rgba(225, 166, 3, 1) 0%, rgba(248, 253, 65, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e1a603', endColorstr='#f8fd41', GradientType=0);
}

.fd-bg {
    background: url(../images/common/fd-bg.png)top left no-repeat;
    margin-left: 12px;
    width: 718px;
    float: left;
    border-radius: 12px;
    position: relative;
    height: 353px;
    display: flex;
}

.fd-co {
    position: absolute;
    right: 40px;
    top: 66px;
}

.fd-date {
    padding: 11px;
    border-radius: 0px 12px 12px 0px;
    position: absolute;
    left: 6%;
    top: 25px;
}

.fd-btn {
    padding: 0px;
}

.fd-top {
    display: flex;
    align-items: center;
}

.btn-fdd {
    flex: 3 0px;
    margin: 15px 0px;
    justify-content: center;
    display: flex;
}

.drwn-nm {
    width: 100%;
    display: flex;
    position: relative;
}

span.btn-clr {
    border-radius: 50%;
    background: url(../images/common/Ellipse.png);
    width: 70px;
    height: 73px;
    padding: 5px;
    text-align: center;
    font-size: 43px;
    margin: 0px 11px;
    font-weight: bold;
}

.date-time {
    text-align: center;
    padding: 5px;
    color: #fff;
    font-size: 15px;
    background: #ce0701;
    margin: 32px 13px 10px 13px;
}

.lotto-guide {
    color: #000;
}

.btn-4d {
    margin: 0px 5px;
}

.fd-btn h4 {
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-box button {
    display: block;
    margin: 0px auto;
    margin-top: 15px;
}

.btn-drwn {
    background: #fff;
    color: #db427b;
    font-weight: bold;
    padding: 5px 40px;
    text-transform: uppercase;
    border-radius: 21px;
}

.btn-pay {
    background: url(../images/common/fd-btn-y.png) no-repeat;
    color: #f12f43;
}

.btn-plly {
    background: url(../images/common/fd-btn-r.png) no-repeat;
    color: #fddd00;
}

.fd-in {
    display: flex;
    margin-top: 30px;
}

.btn-l {
    width: 50%;
    background-size: 100% 100%;
    height: 35px;
    font-weight: bold;
}

#PayOut .modal-header {
    display: block;
}

#PayOut .modal-title {
    text-align: left;
}

.modal-table2 table tr td {
    border: 1px solid #55dcb5 !important;
    padding: 5px;
    font-size: 14px;
    color: #fff;
}

.modal-content_cus {
    background: #000000e3;
    color: #fff;
    width: 635px;
}

.modal-content_cus .close {
    color: #55dcb5;
    opacity: 1;
    position: relative;
    top: 6px;
}

.trTitle {
    background: #55dcb5;
    color: #FFF;
    text-shadow: 0px 0px 1px #000, 0px 0px 5px #000;
}

.btn-pay:hover {
    color: #414141;
}

.modal-bg h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.btn-drwn:hover {
    background: #db427b;
    color: #fff;
}

.btn-plly:hover {
    color: #fff;
}

.fd-top ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    width: 100%;
}

.fd-box {
    background: url("../images/common/frame-btn.png") no-repeat center top;
    width: 189px;
    height: 229px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    line-height: 45px;
    text-shadow: 0px 0px 3px #c1e887, 0px 0px 5px #3db6ba;
}

.fd-keno-iteam {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    /* justify-content: space-between; */
    align-items: center;
    /* align-content: stretch; */
    padding: 15px;
    background: #fff;
    box-shadow: 0px 0px 10px 3px #4c4c4c47;
    border-radius: 10px;
}

.fd-row-01 table tr,
th,
td {
    height: 0px;
}

.lotto_wrap {
    padding-top: 55%;
    display: flex;
    gap: 20px;
    padding-left: 30px;
}

.lotto_wrap .btn_enter p {
    font-size: 16px;
    color: #b2b2b2;
    text-shadow: none;
}

.bonus_c_wrap iframe {
    width: 100%;
    height: 100%;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f_provider p {
    color: #fff;
    font-size: 10px;
    text-align: left;
    margin-bottom: 0px;
}

.f_provider span {
    color: #fdc495;
    text-align: left;
}

.img-logo img {
    max-width: 130px;
}

.footer-1 {
    width: 430px;
}

.footer-2 {
    width: 400px;
}

.center-lft {
    text-align: left;
}

.contact-icon {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-3 {
    text-align: left;
}

.lotto-table {
    margin-top: 100px;
    margin-bottom: 30%;
}

.fd-btn.active p,
.fd-btn:hover p {
    color: #fff;
    margin-bottom: 10px;
}

.lotto_wrap .btn_enter:hover img,
.lotto_wrap .btn_enter.active img {
    content: url('../images/index/prov-bg-org.png');
}

.lotto_wrap .btn_enter img {
    max-width: 190px;
    height: 64px;
}

.fd-red {
    background: #fa0000;
}

.fd-yellow {
    background: #ffc100;
}

.fd-blue {
    background: #1b377c;
}

.fd-cyan {
    background: #0065a6;
}

.fd-cred {
    background: #e91222;
}

.fd-green {
    background: #37a105;
}

.fd-orange {
    background: #f68b01;
}

.fd-red .fd-row-bg {
    background: #fa0000;
}

.fd-yellow .fd-row-bg {
    background: #ffc100;
}

.fd-blue .fd-row-bg {
    background: #1b377c;
}

.fd-cyan .fd-row-bg {
    background: #0065a6;
}

.fd-cred .fd-row-bg {
    background: #e91222;
}

.fd-green .fd-row-bg {
    background: #37a105;
}

.fd-orange .fd-row-bg {
    background: #f68b01;
}

.fd-red .fourd-TableBtm>tbody>tr>td {
    border: 2px solid #fa0000;
}

.fd-yellow .fourd-TableBtm>tbody>tr>td {
    border: 2px solid #ffc100;
}

.fd-blue .fourd-TableBtm>tbody>tr>td {
    border: 2px solid #1b377c;
}

.fd-cyan .fourd-TableBtm>tbody>tr>td {
    border: 2px solid #0065a6;
}

.fd-cred .fourd-TableBtm>tbody>tr>td {
    border: 2px solid #e91222;
}

.fd-green .fourd-TableBtm>tbody>tr>td {
    border: 2px solid #37a105;
}

.fd-orange .fourd-TableBtm>tbody>tr>td {
    border: 2px solid #f68b01;
}

.fd-red .fourD-topTxtone {
    border: 2px solid #fa0000;
}

.fd-yellow .fourD-topTxtone {
    border: 2px solid #ffc100;
}

.fd-blue .fourD-topTxtone {
    border: 2px solid #1b377c;
}

.fd-cyan .fourD-topTxtone {
    border: 2px solid #0065a6;
}

.fd-cred .fourD-topTxtone {
    border: 2px solid #e91222;
}

.fd-green .fourD-topTxtone {
    border: 2px solid #37a105;
}

.fd-orange .fourD-topTxtone {
    border: 2px solid #f68b01;
}

.fd-red .fourD-titleBG td {
    border: 2px solid #fa0000;
}

.fd-yellow .fourD-titleBG td {
    border: 2px solid #ffc100;
}

.fd-blue .fourD-titleBG td {
    border: 2px solid #1b377c;
}

.fd-cyan .fourD-titleBG td {
    border: 2px solid #0065a6;
}

.fd-cred .fourD-titleBG td {
    border: 2px solid #e91222;
}

.fd-green .fourD-titleBG td {
    border: 2px solid #37a105;
}

.fd-orange .fourD-titleBG td {
    border: 2px solid #f68b01;
}

.draw-date {
    color: #000;
    font-weight: 700;
    font-size: 35px;
    text-align: center;
}

.draw-date .date {
    font-size: 30px;
}

.draw-date p {
    margin-bottom: 0px;
}

.calendar-container {
    width: 220px;
    margin: 0 auto;
}

#datepicker {
    display: block;
    margin: 0 auto;
    padding: 10px;
}

.ui-datepicker {
    width: 230px !important;
    height: 205px !important;
    font-size: 11px !important;
    font-weight: bold;
}

.section_service02 .position-relative {
    padding: 0px;
}

#payout .msg-in p,
#rules .msg-in p {
    margin-left: 0px;
    margin-bottom: 0px;
    color: #000;
}

.payout-table {
    margin: 20px 0px;
}

#rules .msg-in ul li {
    list-style-type: disc;
}

#rules .msg-in ul {
    margin-left: 15px;
    margin-top: 10px;
}

.login-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}


/* Index-live */

.bonus_c_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding-top: 30px;
    margin-bottom: 70px;
    background: url(../images/index/index-spb-bg.png) no-repeat top right;
    /* background-size: 100%; */
}

.bonus_c_wrap {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-gap: 10px;
    padding-top: 30px;
    margin-bottom: 70px;
}

.slide_txt01 {
    color: #000;
    font-size: 12px;
    font-weight: 700;
}

.slide_txt02 {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.index-live {
    display: flex;
    gap: 5px;
}

.carousel-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 150px;
}

.slide-btn1:hover,
.slide-btn1.active {
    background: url(../images/index/button_hover-wbet.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn1 {
    background: url(../images/index/button-wbet.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn2:hover,
.slide-btn2.active {
    background: url(../images/index/button_hover-saba.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn2 {
    background: url(../images/index/button-saba.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn3:hover,
.slide-btn3.active {
    background: url(../images/index/button_hover-m9.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn3 {
    background: url(../images/index/button-m9.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn4:hover,
.slide-btn4.active {
    background: url(../images/index/button_hover-cmd.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn4 {
    background: url(../images/index/button-cmd.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.carousel-btn button {
    border: none;
}

.slide_txt {
    line-height: 1;
    text-align: left;
    padding: 10px 0px 5px;
}

/* end index-live*/

/* 27062024 */
.title-bg {
    background: url(../images/tournament/title.png)no-repeat center;
    height: 595px;
    position: relative;
    margin-top: 40px;
}

.title-money {
    color: #fff;
    font-size: 23px;
}

.title-text {
    position: absolute;
    bottom: 40px;
    color: #ebce60;
    display: block;
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 25px;
}

.tournament-table {
    width: 80%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 30% 70%;
}

.tournament-table span {
    padding: 10px 15px;
}

.tournament-table .span-1 {
    color: #ebce60;
    background: rgba(0, 0, 0, 0.753);
    margin-bottom: 2px;
    margin-right: 2px;
    font-weight: 600;
    font-size: 18px;
}

.tournament-table .span-2 {
    color: #fff;
    background: rgba(0, 0, 0, 0.507);
    margin-bottom: 2px;
    font-weight: 600;
}

.tournament-btn-group {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.modal#result {
    top: 0;
}

.tournament button.close {
    color: #ebce60;
    position: absolute;
    right: -35px;
    top: -180px;
    opacity: 1;
    height: 30px;
    border: 1px solid #ebce60;
    width: 30px;
    border-radius: 50%;
    text-shadow: none;
}

.tournament .title-text {
    bottom: 45px;
    left: 31%;
}

.tournament-header {
    position: absolute;
    top: -75px;
    text-align: center;
    width: 100%;
    z-index: 99;
    left: -161px;
}

.result-table {
    margin-top: 255px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
}

.result-table table {
    width: 100%;
    color: #fff;
}

.result-table tr:nth-child(odd) {
    background: #160f00;
}

.result-table tr:nth-child(even) {
    background: #231401;
}

.result-table tr td {
    padding: 5px 15px;
}

.result-table tr td:last-child {
    color: #ebce60;
}

.tnc button.close {
    text-shadow: none;
    color: #fff;
    position: absolute;
    top: 0;
    right: -25px;
    opacity: 1;
}

.tnc .modal-dialog {
    padding-top: 10px !important;
}

.tnc-content {
    margin-top: 50px;
    color: #fff;
}

.modal-dialog.tournament {
    height: 100%;
    margin-top: 105px;
    background: none;
    border: none;
    box-shadow: none;
}

.modal-content.tournament {
    background: #2e1d01;
    border: 1px solid #c6c257;
    border-radius: 10px;
    margin-top: 70px;
}

.tournament-countdown {
    background: url(../images/tournament/time-stage.png)no-repeat center;
    text-align: center;
    min-height: 138px;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;
    padding-top: 12px;
}

.countdown-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.tbox-1 {
    font-size: 33px;
    display: inline-block;
    font-weight: 600;
    background: #160c14a6;
    padding: 3px 3px;
    border-radius: 6px;
    margin: 1px;
    color: #ffffff;
    border: 1px solid #a57b33;
    width: 23%;
    height: 50px;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dbox-1 {
    font-size: 25px;
    font-weight: 600;
    color: #fffc7b;
    margin: 3px;
    line-height: 1;
}

.time-cap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    padding: 2px 0 0 0;
    grid-gap: 13px;
    max-width: 75%;
    margin: 0 auto;
}

.tcap-1 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgb(255 240 137) 0%, rgb(172 121 46) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tournament-count {
    position: relative;
    top: 25px;
}

.ttl-tour {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    width: 100%;
    /* margin: auto; */
    align-items: flex-end;
    margin-top: 4%;
}

.ttl-tour-all img {
    width: 85%;
}

.ttl-tour-center img {
    width: 100%;
}

.ttl-tour-all-txt {
    color: #9c9c9c;
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
}

table.tournament_table_wrap {
    border-collapse: collapse;
    border-spacing: 0;
}

table.tournament_table_wrap tr th {
    background: #7e7e7e;
    color: #fff;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 0px 5px 20px;
}

table.tournament_table_wrap tr td {
    color: #ff8519;
    /* background-color: #ededed; */
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 0px 0px 20px;
    font-weight: 500;
}

table.tournament_table_wrap tr:nth-child(odd) {
    background: #ededed;
}

.tournament_table {
    padding: 30px 0;
    width: 60%;
    margin: auto;
}

button.tournament_btn {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    border: 1px solid #ae8410;
    min-width: 120px;
    padding: 5px;
    border-radius: 5px;
}

.tournament_btn_wrap {
    display: flex;
    justify-content: center;
    grid-gap: 15px;
    padding-bottom: 20px;
}

.tournament_modal .modal-bg {
    color: #fff;
}

.tournament_modal .modal-header .close {
    padding: 0px;
    color: #000;
    font-weight: 400;
    text-shadow: none;
    border: 3px solid #ffa568;
    border-radius: 56px;
    width: 32px;
    height: 32px;
    opacity: 1;
    margin: 0;
    margin-top: 15px;
    font-size: 26px;
    position: absolute;
    right: -11px;
    top: -30px;
    background: #fff;
}

#tournament_prizepastModal.tournament_modal .modal-header .close {
    padding: 0px;
    color: #ffae00;
    font-weight: 400;
    text-shadow: none;
    border: 3px solid #ffae00;
    border-radius: 56px;
    width: 32px;
    height: 32px;
    opacity: 1;
    margin: 0;
    margin-top: 15px;
    font-size: 26px;
    position: absolute;
    right: 7px;
    top: -9px;
    z-index: 1;
}

.tournament_modal .modal-header {
    border-bottom: 1px solid #ffffff00;
    display: block;
    position: relative;
    padding: 10px 10px 0 10px;
}

.tournament_modal .modal-title {
    margin: 0;
    line-height: 1.42857143;
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    position: absolute;
    width: 309px;
    top: -20px;
    left: 0;
    right: 0;
    background: linear-gradient(181deg, #ffc299 0%, #ffa466 95%);
    border-radius: 5px;
    padding: 4px;
    margin: auto;
    text-transform: uppercase;
}

.tournament_modal .modal-content {
    background-color: #fff;
    /* border: 1px solid #efb800; */
    /* filter: brightness(1.15) drop-shadow(0 0 4px #f0b90b); */
    color: #fff;
    width: 400px;
    border-radius: 18px;
}

.tournament_modal .modal-dialog {
    margin-top: 80px;
}

.remark_red {
    color: red;
}

.body_tournament_past {
    background: url(../images/common/event/bg-result.jpg) center top / cover;
}

.tournament_past_wrapper {
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 15px;
}

.tournament_past_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.tournament_past_grid_each {
    /* border: 1px solid #930000; */
    /* border-radius: 10px; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tournament_past_grid_each img {
    /* border-radius: 10px; */
    width: 100%;
}

.tournament_past_grid_txt {
    color: #fba463;
    position: absolute;
    text-align: center;
    font-size: 40px;
    top: 60px;
    line-height: 1;
    /* text-shadow: 2px 1px 6px #ff0000, -2px -1px 7px #ff0000; */
    font-weight: bold;
}

.tournament_past_grid_txt .grid_txt_th {
    font-size: 18px;
}

.tournament_past_grid_txt_grid {
    display: flex;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-top: 5px;
}

.tournament_p_title {

    text-align: center;

    color: #fff;

    text-transform: uppercase;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 700;
}

.tournament_p_title2 {

    text-align: center;

    color: #fff;

    text-transform: uppercase;

    font-size: 21px;
}

.tournament_p_title3 {

    text-align: center;

    color: #fff;

    background: -webkit-linear-gradient(#fdf5e0 26%, #bf8005 49%, #e7a916 50%, #bf8005 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    font-size: 52px;

    font-weight: 700;

    line-height: 1;

    margin-top: 20px;
}

.tournament_past_wrap {
    padding-bottom: 30px;
}

.modal_past_content {
    background-image: url(../images/common/event/bg-congratulations.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.tournament_top_img img {
    width: 60%;
}

.body_tournament_wrap {
    padding: 0 10px;
}

.body_tournament_past a.tournament_swap.active {
    text-shadow: 2px 1px 6px #ff0000, -2px -1px 7px #ff0000;
    border-bottom: 4px solid #ffae00;
}

.side-ico.ico-grd.ico_tour img {
    height: 20px;
    filter: grayscale(0) invert(0);
    display: block;
    margin: 0px auto;
}

.tournament_title {
    font-size: 17px;
    font-weight: 700;
}

.ttl-winner {
    position: relative;
}

.ttl-winner span {
    color: #fff;
    position: absolute;
    font-weight: 900;
    font-size: 25px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

table.tournament_table_wrap tr:nth-child(even) {
    background: #e1e1e1;
}

#wName_r2 {
    color: #ff8519;
    font-size: 30px;
}

#wVal_r2 {
    color: #ff8519;
}

.ttl-tour-all.ttl-tour-center {
    position: relative;
    bottom: 20px;
}

#winner-list {
    margin-top: 5%;
    margin-bottom: 5%;
}

.pro-category {
    margin-top: 10%;
}

.pro-cat .nav-tabs .nav-item .nav-link {
    background: none;
    border: none;
    padding: 0px;
}

.pro-cat .nav-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    border-bottom: 0px;
}

.pro-cat .nav-tabs .nav-item.reward-box2 {
    width: 150px;
}

.pro-cat .nav-tabs .nav-item .nav-link.active .winner-cat .winner-cat-btn {
    width: 100%;
    color: #fff;
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

.winner-cat-btn {
    width: 100%;
    color: #9c9c9c;
    /* text-shadow: 1px 1px 1px #00000066; */
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 95%);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border: none;
    /* font-weight: bold; */
    box-shadow: -1px 0px 5px #ffaa7991;
}

.past-event {
    margin: 5% 0%;
}

.tournament_modal .modal-header .close span {
    position: relative;
    top: -6px;
}

.lotto-guide .tournament_table {
    width: 100%;
    padding: 10px;
}

.lotto-guide ul {
    padding-left: 18px;
}

.congratulation p {
    margin-bottom: 0px;
    font-size: 25px;
    text-transform: capitalize;
    color: #ffab7b;
}

.congratulation {
    text-align: center;
    font-weight: bold;
}

.tournament_modal.tour_tnc .modal-content {
    width: 800px;
}

.tournament_modal.tour_tnc .modal-dialog {
    max-width: 800px;
}

/* 05082024 */
.jackpot_bg {
    background-image: url(../images/jackpot/bg-jackpot.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.productpage_grid.prod-top {
    align-items: flex-start;
    top: 50px;
}

.prod-top .productpage_grid_left {
    margin-top: 50px;
    height: 100%;
}

.prod-top .btn_enter {
    top: 25%;
}

.jackpot-title-bg {
    background: url(../images/jackpot/stage-baccarat.png)no-repeat center;
    height: 627px;
    position: relative;
}

.jackpot-body{
    padding-top: 150px;
}

.jackpot_table {
    padding: 20px;
    width: 100%;
}

#jackpot-winner-list {
    padding: 0px;
    margin: 0 auto;
    width: 60%;
    margin-bottom: 60px;
}

.jackpot {
    margin: 25px 0%;
}

.jackpot .btn_enter {
    margin: 0 auto;
    padding-bottom: 100px;
}

/*.jackpot-amount{
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
}*/

.jackpot-amount p {
    font-size: 68px;
    font-weight: bold;
}

/*.jackpot-amount span {
    font-size: 50px;
    margin-right: 15px;
    color: #e8b28d;
}*/

.pmc-title-bg {
    background: url(../images/jackpot/pmc/pmc-bg.jpg)no-repeat center;
    height: 1080px;
    position: relative;
}

.pmc-body {
    padding-top: 50px;
}
.pmc-bottom {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 100px;
    align-items: center;
}

.pmc-game {
    /* background: #9c9c9c; */
    /* border-radius: 20px; */
    /* padding: 10px 40px; */
    /* border: 1px solid #ffa96f; */
}

.pmc-reward {
    text-align: center;
    margin-top: 90px;
}

.reward span {
    color: #ff965c;
    font-size: 40px;
    margin-right: 10px;
}

.reward p {
    font-weight: 600;
    font-size: 50px;
    position: absolute;
    bottom: -100px;
    left: 48%;
    transform: translate(-50%, -50%);
}

.reward {
    position: relative;
    margin-bottom: 50px;
}

.pmc-reward-1 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding-top: 5%;
    padding-bottom: 10%;
}

.pmc-reward-1 .reward p {
    font-weight: 600;
    font-size: 50px;
    position: absolute;
    bottom: -100px;
    left: 38%;
    transform: translate(-50%, -50%);
}

/* 07082024 */
.tab_search {
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: #a2a4a1;
    width: 100%;
    margin: 30px 0px;
    box-shadow: 0px 0px 10px 3px #4c4c4c47;
}

.tab_search input {
    border: none;
    margin-left: 10px;
}

.tab-right {
    float: right;
}

/* 13082024 */

/* announcementmodal */

.ann-wrap {
    display: flex;
    background: #292929;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    align-items: center;
}

.announcementpopupimg img {
    /* width: 400px; */
    margin: auto;
    border-radius: 5px;
}

#announcementpopup .carousel-control-prev {
    left: -22px;
}

#announcementpopup .carousel-control-next {
    right: -22px;
}

.announcementmodal.modal {
    z-index: 999999;
}

.announcementmodal .modal-content {
    position: relative;
}

.announcementmodal .close {
    right: 0;
    bottom: -35px;
    color: #ffa566;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcementmodal.detectannouncementmodal02 .close {
    position: absolute;
    right: 55px;
    top: 20px;

}

.announcementmodal .modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}


.announcementmodal .modal-dialog {
    max-width: 500px;
}

.annou-pop {
    border-radius: 18px;
    background: #fffafa6e;
    padding: 20px;
    color: #434141;
    border: 1px solid #ff851a;
}

.annou-ttle {
    color: #434141;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #ff871e;
    padding-bottom: 7px;
}

.annou-content {
    padding-top: 25px;
    font-size: 12px;
}

.announcementmodal .modal_close {
    z-index: 10;
    color: #fff;
    opacity: 1;
}

.annou-content img {
    display: block;
    margin: 0px auto;
}

.annou-pop p {
    margin-top: 20px;
    margin-bottom: 0px;
}

.round {
    position: relative;
    margin-right: 10px;
    height: 16px;
}

.round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    height: 16px;
    left: 0;
    position: absolute;
    top: 0;
    width: 16px;
    margin: 0px;
}

.round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 1px;
    opacity: 0;
    position: absolute;
    top: 3px;
    transform: rotate(-45deg);
    width: 12px;
}

.round input[type="checkbox"] {
    visibility: hidden;
}

.round input[type="checkbox"]:checked+label {
    background-color: #2283f6;
    border-color: #2283f6;
}

.round input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

.cls-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size: 12px;
    color: #fff;
}

/* withdrawal-transfer-btn */
.transfer-btn {
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    border: none;
    border-radius: 20px;
    color: #fff;
    margin-left: 10px;
    padding: 0px 10px;
}

/* 26082024 */
#forgot_f_wrap_id .input-group-text {
    position: absolute;
    background: transparent;
    padding: 0px;
    top: 8px;
    border: none;
    left: 5px;
}

.input-group-text select {
    border: none;
    background: #e6eff7;
}

.contact-input {
    margin-left: 0px;
    padding-left: 60px !important;
}

/* 30082024 */
.qr-table tr td {
    border: 1px solid #9c9cb6;
    padding: 10px;
}

.qr-table td:last-child {
    width: 70%;
}

.qr-table i{
    float: right;
    position: relative;
    top: 4px;
}

/* 02092024 */
.view-btn {
    background: none;
    border: 0;
    text-decoration: underline;
    color: #ffa977;
}

.rd-color{
    color: #ffa977;
}

#tournamentContent table tr th {
    background: linear-gradient(181deg, #ffc299 0%, #ffa466 95%);
}

#tournamentContent table tr th, td {
    text-align: center;
    border: 1px solid #000;
}

#tournamentContent table {
    width: 80%;
    margin-bottom: 10px;
}

#tournamentContent img {
    margin-bottom: 10px;
}

#tournamentContent ul li {
    list-style: decimal;
    padding-left: 10px;
}

.header_wrap .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.header_wrap .nav-item.dropdown:hover .dropdown-toggle {
    color: #000;
    background-color: #f8f9fa;
}

.dropdown_title p {
    margin-bottom: 0px;
}

.header_wrap .dropdown .dropdown-menu {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .95), rgba(214, 227, 246, .95));
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
    max-height: 700px;
    overflow-y: scroll;
}

.header_wrap .dropdown .dropdown-menu .dropdown-item {
    background-color: transparent;
}

.dropdown_title_icon img {
    max-width: 35px;
}

.header_wrap .dropdown .dropdown-menu::-webkit-scrollbar {
    width: 0px;
}

.header_wrap .dropdown .dropdown-menu::-webkit-scrollbar {
    height: 4px;
}

.header_wrap .dropdown .dropdown-menu::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb:hover {
    background: #cdcdcd;
}

.left-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.right-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 09092024 */
.info_bg_banner {
    background-image: url(../images/info/pb-info.jpg);
    background-repeat: no-repeat;
    max-height: 800px;
    min-height: 800px;
    background-position: top center;
    position: relative;
}

.t-pimg {
    position: relative;
    padding: 15px;
}

.promo_product_img {
    height: 200px;
    border-radius: 10px 10px 0px 0px;
}

.info-center {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 50px 0px 100px;
}

.play-now {
    background: #ffbb8e;
    padding: 5px 0px;
    border-radius: 0px 0px 10px 10px;
}

.info-center p {
    padding: 0px;
    height: auto;
}

.info-btn {
    color: #ffa673;
    border: none;
    background: transparent;
    text-decoration: underline;
}

/* 11092024 */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: rgba(0, 0, 0, 0.568);
}

.btn-playmini {
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    background-size: 100% 100%;
    color: #fff;
    padding: 5px;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 65%;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #00000066;
}

    .btn-playmini:hover {
        color: #fff;
    }

.slot_product_games_box:hover .overlay {
    opacity: 1;
}

.info-detail {
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 95%);
    box-shadow: 0 3px 6px 2px #0000002e;
    padding: 20px;
    margin-bottom: 20px;
}

.info_custom {
    padding: 0px 20px;
}

.info-title.t-title1 {
    margin-top: 20px;
}

/* 14012025 */
.slide-btn5:hover,
.slide-btn5.active {
    background: url(../images/index/button_hover-fb.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

.slide-btn5 {
    background: url(../images/index/button-fb.png) no-repeat top center;
    background-size: 100% 100%;
    padding: 5px 10px;
}

/* 25022025 */
/*poker*/
.poker_bg {
    background-image: url(../images/bg/bg-poker.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* 06032025 */

.apk_bg {
    background-image: url(../images/bg/bg-apk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.apk-product {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding-top: 100px;
    gap: 50px 20px;
    padding-bottom: 150px;
}

.download-btn {
    color: #fff;
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 3px 6px 2px #ffa46652;
    min-height: 40px;
    border-radius: 50px;
    padding: 0 25px;
    min-width: 85px;
    cursor: pointer;
    border: none;
    text-align: center;
    margin-top: 10px;
}

.apk-download {
    text-align: center;
}

.dl-modal .btn-close {
    background: none;
    color: #000;
    font-size: 30px;
    position: absolute;
    right: 4px;
    top: 0px;
    z-index: 1;
}

.dld-wrap {
    text-align: center;
    padding-top: 20px;
}

.download-wrap {
    padding: 15px 0px;
    text-align: center;
}

a.devide-btn {
    background: #ffa466;
    border: 1px solid #ffa466;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0px;
    display: inline-block;
    width: 120px;
    padding: 5px 2px;
    margin: 0 5px;
    border-radius: 5px;
}

/* 29052025 */
.entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.points {
    color: #ff6600;
    font-weight: bold;
}

.username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}

.pmc-winner-right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 100px;
}

.winner-list {
    padding: 20px;
    min-width: 300px;
    border: double #ffa774;
    border-radius: 10px;
}

.winner-title {
    text-shadow: 1px 1px 1px #00000066;
    background: linear-gradient(135deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 3px 6px 2px #ffa46652;
    color: #fff;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 15px;
}

/* 18072025 */
.jackpot_bg {
    background-image: url(../images/jackpot/bg-jackpot-new.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.top-gap {
    padding: 15% 5%;
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.jackpot-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.jackpot-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px 10px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

    .jackpot-card img {
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
    }

.jackpot-title,
.jackpot-digit {
    font-size: 18px;
    margin-top: 40px;
    color: #9d9d9d;
}

.jackpot-amount {
    font-size: 30px;
    font-weight: bold;
}

.jackpot-digit {
    font-size: 14px;
    margin-top: 10px;
}

.supreme {
    color: #fe9b52;
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 14px, transparent 14px) 0% 0% / 15px 15px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 14px, transparent 14px) 100% 0% / 15px 15px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 14px, transparent 14px) 0% 100% / 15px 15px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 14px, transparent 14px) 100% 100% / 15px 15px no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 2px) calc(100% - 30px) no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 30px) calc(100% - 2px) no-repeat, linear-gradient(0deg, transparent 0%, #fe9b52 100%);
}

.extreme {
    color: #17ccf5;
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 14px, transparent 14px) 0% 0% / 15px 15px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 14px, transparent 14px) 100% 0% / 15px 15px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 14px, transparent 14px) 0% 100% / 15px 15px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 14px, transparent 14px) 100% 100% / 15px 15px no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 2px) calc(100% - 30px) no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 30px) calc(100% - 2px) no-repeat, linear-gradient(0deg, transparent 0%, #17ccf5 100%);
}

.ultramega {
    color: #11c47e;
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 14px, transparent 14px) 0% 0% / 15px 15px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 14px, transparent 14px) 100% 0% / 15px 15px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 14px, transparent 14px) 0% 100% / 15px 15px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 14px, transparent 14px) 100% 100% / 15px 15px no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 2px) calc(100% - 30px) no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 30px) calc(100% - 2px) no-repeat, linear-gradient(0deg, transparent 0%, #11c47e 100%);
}

.ultra {
    color: #f70001;
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 14px, transparent 14px) 0% 0% / 15px 15px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 14px, transparent 14px) 100% 0% / 15px 15px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 14px, transparent 14px) 0% 100% / 15px 15px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 14px, transparent 14px) 100% 100% / 15px 15px no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 2px) calc(100% - 30px) no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 30px) calc(100% - 2px) no-repeat, linear-gradient(0deg, transparent 0%, #f70001 100%);
}

.super {
    color: #d2ad3c;
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 14px, transparent 14px) 0% 0% / 15px 15px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 14px, transparent 14px) 100% 0% / 15px 15px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 14px, transparent 14px) 0% 100% / 15px 15px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 14px, transparent 14px) 100% 100% / 15px 15px no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 2px) calc(100% - 30px) no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 30px) calc(100% - 2px) no-repeat, linear-gradient(0deg, transparent 0%, #d2ad3c 100%);
}

.big {
    color: #91a08b;
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 14px, transparent 14px) 0% 0% / 15px 15px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 14px, transparent 14px) 100% 0% / 15px 15px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 14px, transparent 14px) 0% 100% / 15px 15px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 14px, transparent 14px) 100% 100% / 15px 15px no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 2px) calc(100% - 30px) no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 30px) calc(100% - 2px) no-repeat, linear-gradient(0deg, transparent 0%, #91a08b 100%);
}

.mini {
    color: #b7824a;
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 14px, transparent 14px) 0% 0% / 15px 15px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 14px, transparent 14px) 100% 0% / 15px 15px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 14px, transparent 14px) 0% 100% / 15px 15px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 14px, transparent 14px) 100% 100% / 15px 15px no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 2px) calc(100% - 30px) no-repeat, linear-gradient(#fff, #fff) center / calc(100% - 30px) calc(100% - 2px) no-repeat, linear-gradient(0deg, transparent 0%, #b7824a 100%);
}

.jackpot-digit span {
    margin: 0 2px;
}

.jackpot-card hr {
    width: 65%;
    margin: 0 auto;
}

.jp-digit {
    font-weight: 600;
}

.winner-container {
    display: grid;
    border-radius: 20px;
    width: 100%;
    gap: 40px;
    margin-top: 80px;
    grid-template-columns: 600px auto;
}

.left-content {
    padding: 20px;
    background: #fff;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .left-content h2 {
        color: #fc9b58;
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .left-content p {
        color: #a1a1a1;
        font-size: 15px;
        line-height: 1.5;
    }

        .left-content p span {
            color: #f49e5e;
            font-weight: bold;
        }

.girl-img {
    position: absolute;
    right: -20px;
    top: -50px;
}

.right-panel {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 0 1px #f2f2f2;
    padding: 40px 20px 20px;
    position: relative;
}

.winner-title-2 {
    position: absolute;
    top: -25px;
    transform: translateX(-25%);
    background: url(../images/index/btn-more-1.png);
    padding: 15px 40px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    right: 0px;
    background-size: cover;
}

.winner-list {
    margin-top: 30px;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

    .winner-item:last-child {
        border-bottom: none;
    }

.winner-date {
    color: #999;
}

.winner-info {
    text-align: right;
}

.winner-name {
    color: #b1b1b1;
    font-size: 12px;
}

.winner-amount {
    color: #f36c21;
    font-weight: bold;
}

.buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-play {
    background: linear-gradient(180deg,rgba(253, 232, 216, 1) 10%, rgba(248, 167, 107, 1) 55%, rgba(248, 176, 123, 1) 100%);
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    background-size: cover;
    border: 1px solid #f8c198;
    width: 190px;
    color: #fff;
    box-shadow: 0px 2px 1px #de8e54;
}

.btn-terms {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 12px 20px;
    color: #a1a1a1;
}

.left-info {
    width: 70%;
    margin-top: 40px;
}

.btn-play:hover {
    color: #fff;
}

.jackpot-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}