body {
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    font-size: 14px;
    margin: 0 auto;
    color: #191919;
    background: #000;
    height: 100vh;
}

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: #666;
    width: 100%;
}


/** Header **/

.t-header {
    position: relative;
    z-index: 2;
}

.time-bar {
    background: #131313;
    height: 40px;
    display: flex;
    align-items: center;
    color: #fff;
}

.header-top {
    background: #212121;
    border-bottom: 1px solid #75592e;
    background-size: cover;
    height: auto;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-bottom {
    background: #212121;
    color: #FFF;
}

.social-link-wrapper {
    display: flex;
    justify-content: flex-end;
    font-weight: 500;
    padding: 15px 0 6px;
}

.social-box {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 5px;
    align-items: center;
}

.smlink {
    background: #010619;
    border-radius: 25px;
    padding: 4px 6px;
    text-align: center;
}

.smlink a {
    display: inline-block;
    max-width: 23px;
    margin: 0 2px;
    text-align: center;
}

.smlink a:hover {
    filter: grayscale(1);
}

.header-sec {
    padding: 13px 0 10px;
    display: flex;
    justify-content: flex-end;
}

.login-form {
    display: grid;
    grid-template-columns: 30% 30% 20% 20%;
    grid-gap: 5px;
    margin: 0;
}

.log-field {
    align-self: center;
    width: 100%;
    background: #151515;
    border: 1px solid #747474;
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 5px;
    position: relative;
    height: 31px;
}

input.log_input {
    background: none;
    border: none;
    width: 75%;
    padding: 0;
    padding-right: 5px;
}

input.log_input:focus {
    outline: none;
    box-shadow: none;
}

input.log_input::placeholder {
    color: #fff;
}

.forgot {
    color: #fff;
    font-size: 10px;
    align-self: center;
    font-weight: 500;
    position: absolute;
    width: 40%;
    text-align: center;
    border: 1px solid #747474;
    background: #313131;
    border-radius: 5px;
    right: 2px;
}

.forgot:hover {
    color: #e9deaa;
}

button.login-btn {
    margin: auto;
    border: none;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    padding: 5px;
    width: 100%;
    transition: 0.3s;
    border: 1px solid #e9deaa;
    background: linear-gradient(to bottom, rgba(143, 114, 62, 1) 0%, rgba(96, 71, 42, 1) 100%);
    border-radius: 5px;
}

button.login-btn:focus,
button.join-btn:focus {
    outline: none;
}

button.login-btn:hover,
button.join-btn:hover {
    filter: drop-shadow(0 0 3px rgb(255, 255, 255, 0.5));
    transform: scale(0.97);
    transition: 0.3s;
}

button.join-btn {
    margin: auto;
    border: none;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    transition: 0.3s;
    background: linear-gradient(to bottom, rgba(108, 107, 108, 1) 0%, rgba(58, 58, 55, 1) 100%);
    padding: 5px;
    width: 100%;
    border: 1px solid #747474;
    border-radius: 5px;
}

.lang-box {
    align-self: 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: 0 5px;
    background: rgba(0, 0, 0, 0.7);
    min-width: auto;
    border: none;
}

.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);
}

.product-logo {
    display: block;
}

.product-logo img {
    height: 32px;
    margin: 7px auto;
}

.menu-product a:hover {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /* -webkit-animation-name: shakeX; */
    /* animation-name: shakeX; */
    background: linear-gradient(to bottom, rgba(143, 114, 62, 1) 0%, rgba(96, 71, 42, 1) 100%);
    color: #ffffff;
    border: 1px solid #d2c697;
}

.menu-product-title {
    color: #e2c38a;
    display: flex;
    border-bottom: 1px solid #e2c38a;
    height: 40px;
    align-items: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    height: 80px;
    position: relative;
    /* top: -105px; */
    margin-top: 20px;
}

.menu-grid .menu-product {
    width: 100%;
}


/************************************* NAV MENU CSS ************************************/

.menuWrapper.affix {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.menuWrapper {
    width: 100%;
    height: auto;
    font-weight: 400;
    font-family: 'Ropa Sans', sans-serif;
    background: #212121;
}

.menupart {
    width: 1160px;
    margin: 0 auto;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.menupart>ul>li {
    display: inline-block;
}

.menupart>ul>li.active,
.menupart>ul>li:hover {
    border-right: 1px solid #d2c697;
    border-left: 1px solid #d2c697;
    background: linear-gradient(to bottom, rgba(210, 198, 151, 1) 0%, rgba(143, 114, 70, 1) 24%, rgba(42, 36, 28, 1) 100%);
    border-top: none;
    border-bottom: none;
}

.menupart>ul>li.active>a>span,
.menupart>ul>li:hover>a>span {
    border-right: none;
    border-left: none;
}

.menupart>ul>li:hover>.megamenu .megamenu-character {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.menupart>ul>li:hover>.megamenu .menu-product {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.menu-product:nth-child(2) {
    animation-delay: 200ms;
}

.menu-product:nth-child(3) {
    animation-delay: 300ms;
}

.menu-product:nth-child(4) {
    animation-delay: 400ms;
}

.menu-product:nth-child(5) {
    animation-delay: 500ms;
}
.menu-product:nth-child(6) {
    animation-delay: 600ms;
}
.menu-product:nth-child(7) {
    animation-delay: 700ms;
}

.menu-product:nth-child(8) {
    animation-delay: 800ms;
}

.menu-product:nth-child(9) {
    animation-delay: 900ms;
}

.menu-product:nth-child(10) {
    animation-delay: 1000ms;
}

.menu-product:nth-child(11) {
    animation-delay: 700ms;
}

.menu-product:nth-child(12) {
    animation-delay: 800ms;
}

.menu-product:nth-child(13) {
    animation-delay: 900ms;
}

.menu-product:nth-child(14) {
    animation-delay: 1000ms;
}
.menu-product:nth-child(15) {
    animation-delay: 1100ms;
}
.menupart>ul>li>a {
    xfont-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    display: grid;
    width: 115px;
}

.menupart>ul>li>a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: #2f91dc;
}

.menupart>ul>li>.icon {
    padding: 8px 16px 3px 16px;
}

.menupart>ul>li>a>span {
    padding-top: 7px;
    padding-bottom: 7px;
    border-left: 1px solid #323232;
    border-right: 1px solid #323232;
    font-size: 14px;
}

.menupart>ul>li>a img {
    padding-bottom: 5px;
    margin: 0 auto;
}

.wsmenu-list li:last-child a {
    padding: 10px 0;
}

.slider-sec {
    position: relative;
}

.announce-sec {
    background: #00000080;
    height: 34px;
    color: #fff;
    font-size: 13px;
    margin-top: 11px;
    position: absolute;
    bottom: 0;
    width: 100%;
    align-items: center;
    display: flex;
}

.announce-sec i {
    color: #f0cb64;
    font-size: 21px;
    padding: 5px;
}

.horn-icon {
    width: 10%;
    display: flex;
    align-items: center;
}

.announce-sec marquee {
    width: 90%;
}

.horn-icon span {
    color: #e5dca3;
    padding: 5px;
    font-size: 15px;
}

.notice-wrapper {
    display: flex;
    align-items: center;
}

.menu-in>ul>li>a {
    border-right: none !important;
    border-left: none !important;
}

.product-logo {
    display: grid;
    text-align: center;
    background: #1d1b1c;
    padding: 10px;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #f8b10100;
}


/* GAME LOBBY */

.slots-sec {
    background: url(../images/index-games-bg.png)no-repeat top center;
    padding: 0;
    overflow: hidden;
    background-size: cover;
}

.slots-sec .slide-container {
    max-width: 1380px;
}

.slots-charac {
    position: relative;
    width: 65%;
    margin-top: 35px;
}

.slots-content {
    width: 35%;
    padding-right: 40px;
    display: flex;
    align-items: center;
}

.slot-content .container {
    max-width: 1200px;
}

.slots-wrapper {
    z-index: 1;
    position: relative;
}

.slots-wrapper a {
    display: block;
    z-index: 1;
    margin: 0 auto;
}

.slots-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 97px;
    height: 97px;
}

.slots-wrapper a:hover>.close_img {
    opacity: 0;
}

.slots-wrapper a:hover>.open_img {
    opacity: 1;
    transform: scale(1);
}

.slots-wrapper a .open_img {
    opacity: 0;
}

.slots-box.actives a>.close_img {
    opacity: 0;
}

.slots-box.actives a>.open_img {
    opacity: 1;
    transform: scale(1);
}

.rows1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0px;
    margin: 65px 0;
}

.rows2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin: auto;
}

.slots-box {
    position: relative;
    width: 100%;
}

.stt {
    margin-top: 100px;
}

.open_img {
    position: absolute;
    top: 0;
    left: 0;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.close_img {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.slots-logo p {
    color: #fff;
    font-size: 12px;
}

.slots-desc a {
    background: linear-gradient(to bottom, #f1e767 0%, #040003 0%, #2e2927 54%, #2e2927 54%, #010004 100%);
    padding: 10px;
    border-radius: 18px;
    color: #dfbf95;
    box-shadow: 0px -3px 1px 1px #dfbf95;
    display: block;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    /* border: 1px solid #dfbf95; */
}


/* CASINO */

.casino-sec {
    background: #000 url(../images/index-casino.png)no-repeat top center;
    padding: 0;
    height: 740px;
    background-position-y: 331%;
}

.slider {
    width: 50%;
    margin: 100px auto;
}

.slick-slide {
    margin: 10px 20px;
}

.slick-slide img {
    width: 90%;
    margin: 0 auto;
}

.slick-prev:before,
.slick-next:before {
    color: black;
    background: #1e1e1e;
}

.slick-dotted .slick-current img {
    transform: scale(1.1);
    opacity: 0;
}

.casino-sec .slick-slide .slick-current {
    margin: 20px;
}

.casino-sec {
    position: relative;
}

.casino-sec .casino-title {
    text-align: center;
}

.casino-sec .middle_img img {
    text-align: center;
    z-index: 99;
    position: absolute;
    left: 4px;
    right: 0;
    bottom: -13px;
    margin: 0 auto;
}

.casino-sec .center.slider {
    position: absolute;
    top: 20%;
    left: 15%;
    z-index: 10;
}

.casino-sec .slider {
    width: 70%;
}

.casino-sec .slick-slide {
    margin: 0;
}

.casino-sec .slick-prev::before {
    content: '<';
    padding: 30px 5px;
    color: #e2dc92;
    background: linear-gradient(to bottom, #f1e767 0%, #212121 0%, #1f1f1f 50%, #212121 100%);
    border: 1px solid #414141;
}

.casino-sec .slick-next::before {
    content: '>';
    padding: 30px 5px;
    color: #e2dc92;
    background: linear-gradient(to bottom, #f1e767 0%, #212121 0%, #1f1f1f 50%, #212121 100%);
    border: 1px solid #414141;
}

.casino-sec .slick-dots {
    display: none;
}


/* FOOTER */


/*contact_layer*/

.contact_layer {
    background: #101010;
    padding-top: 25px;
    padding-bottom: 25px;
}

.contact_layer .col-3 a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    display: grid;
}

.contact_layer .p-1 {
    color: #606060;
}

.contact_layer .p-2 {
    color: #e9df9e;
}

.contact_layer .p-2:hover {
    color: #beb67f;
}

footer {
    background: #1a1a1a;
}

.partner-list {
    display: flex;
    padding: 35px 0px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 22px;
}

.partner-list li {
    padding-left: 10px;
    padding-right: 10px;
}

.partner-list li a img:hover {
    transition: all 0.4s;
    transform: scale(1.1);
    filter: brightness(0.5);
}

.partner-list img {
    max-width: 100px;
}

.footer-link-copyright {
    background: linear-gradient(to right, #8f7246 1%, #e5c59c 55%, #8f7246 100%);
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.footer-right a {
    color: #6d6d6d;
    border-right: 1px solid #6d6d6d;
    padding-left: 10px;
    padding-right: 10px;
}

.copyright-line:last-child {
    border-right: none;
}

.footer-copyright {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #6d6d6d;
}


/****************sport*****************/

.sport-bg {
    background: #000;
    max-height: 780px;
}

.mod-sport {
    max-height: 871px;
    transition: all .2s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
}

.lobby-platform {
    background-repeat: no-repeat;
    -webkit-transition: all 0.50s ease-in;
    -moz-transition: all 0.50s ease-in;
    -o-transition: all 0.50s ease-in;
    -ms-transition: all 0.50s ease-in;
    transition: all 0.50s ease-in;
}

.lobby-platform.sport-plat li a {
    height: 250px;
}

.sport-plat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 465px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
}

.btn-play {
    position: absolute;
    background: linear-gradient(to bottom, #f1e767 0%, #040003 0%, #2e2927 27%, #2e2927 54%, #010004 100%);
    display: block;
    padding: 10px;
    border-radius: 18px;
    color: #c6a251;
    box-shadow: 0px -3px 1px 1px #c6a251;
    text-align: center;
    width: 200px;
    top: 430px;
}

.btn-play:hover {
    text-decoration: none;
    color: #fff;
}


.mod-sport.wbet-active {
    background-image: url( "../images/sport/Product-Banner-tbs.png");
}


.v1-active {
    background-image: url( "../images/vsport/Product-Banner-fazi.png");
}
.v2-active {
    background-image: url( "../images/vsport/Product-Banner-kiron.png");
}
.v3-active {
    background-image: url( "../images/vsport/Product-Banner-V2G.png");
}
.v4-active {
    background-image: url( "../images/vsport/Product-Banner-Interactive.png");
}



.v1-platform {background: url( "../images/vsport/Fazi.png" ) no-repeat;background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;}
.v2-platform {background: url( "../images/vsport/Kiron.png" ) no-repeat;background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;}
.v3-platform {background: url( "../images/vsport/V2G.png" ) no-repeat;background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;}
.v4-platform {background: url( "../images/vsport/Interactive.png" ) no-repeat;background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;}



.lobby-platform.sport-plat .wbet-platform {
    background: url( "../images/sport/TBS.png" ) no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;
}


.wbet-platform,.v1-platform,.v2-platform,.v3-platform, .v4-platform {
    transition: all .5s;
    cursor: pointer;
}


.wbet-platform:hover , .v1-platform:hover,.v2-platform:hover,.v3-platform:hover, .v4-platform:hover{
    transform: scale(1.1);
    filter: drop-shadow(0 0 0.75rem rgb(255, 174, 44));
}


/* CASINO */

.casino-bg {
    background: #000;
    /* max-height: 950px; */
}

.mod-casino {
    /* max-height: 950px; */
    transition: all .2s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
    background-position: top;
}

.lobby-platform {
    background-repeat: no-repeat;
    -webkit-transition: all 0.50s ease-in;
    -moz-transition: all 0.50s ease-in;
    -o-transition: all 0.50s ease-in;
    -ms-transition: all 0.50s ease-in;
    transition: all 0.50s ease-in;
}

.lobby-platform.casino-plat li a {
    height: 250px;
}

.casino-plat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 540px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 56px;
}

.mod-casino.c1-active {
	background-image: url("../images/casino/Product-Banner-Apollo.png");
}

.mod-casino.c2-active {
    background-image: url( "../images/casino/Product-Banner-Bgaming.png");
}

.mod-casino.c3-active {
    background-image: url( "../images/casino/Product-Banner-Evolution.png");
}

.mod-casino.c4-active {
    background-image: url( "../images/casino/Product-Banner-Luckystreak.png");
}


.mod-casino.c5-active {
	background-image: url("../images/casino/Product-Banner-PlayPearls.png");
}

.mod-casino.c6-active {
    background-image: url( "../images/casino/Product-Banner-Pragmatic-Play.png");
}

.mod-casino.c7-active {
    background-image: url(  "../images/casino/Product-Banner-Pretty-Gaming.png");
}

.mod-casino.c8-active {
    background-image: url(  "../images/casino/Product-Banner-RedRake.png");
}


.mod-casino.c9-active {
	background-image: url( "../images/casino/Product-Banner-vivo.png");
}

.mod-casino.c10-active {
    background-image: url( "../images/casino/Product-Banner-Wazda.png");
}

.mod-casino.c11-active {
    background-image: url(  "../images/casino/Product-Banner-wm.png");
}

.mod-casino.c12-active {
    background-image: url( "../images/casino/Product-Banner-Yeebet.png");
}








.lobby-platform.casino-plat .c1-platform {
    background: url( "../images/casino/Apollo.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c2-platform {
    background: url( "../images/casino/bgaming.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c3-platform {
    background: url( "../images/casino/Evolution.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c4-platform {
    background: url( "../images/casino/Luckystreak.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}
.lobby-platform.casino-plat .c5-platform {
    background: url( "../images/casino/PlayPearls.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c6-platform {
    background: url( "../images/casino/pp.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c7-platform {
    background: url(  "../images/casino/Pretty-Gaming.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c8-platform {
    background: url( "../images/casino/RedRake.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}
.lobby-platform.casino-plat .c9-platform {
    background: url( "../images/casino/vv.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c10-platform {
    background: url( "../images/casino/Wazda.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c11-platform {
    background: url( "../images/casino/wm.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.lobby-platform.casino-plat .c12-platform {
    background: url( "../images/casino/Yeebet.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 186px;
}

.c1-platform, .c2-platform, .c3-platform, .c4-platform, .c5-platform, .c5-platform, .c7-platform, .c8-platform, .c9-platform, .c10-platform, .c11-platform, .c12-platform {
    transition: all .5s;
    cursor: pointer;
}

.c1-platform:hover, .c2-platform:hover, .c3-platform:hover, .c4-platform:hover, .c5-platform:hover, .c5-platform:hover, .c7-platform:hover, .c8-platform:hover, .c9-platform:hover, .c10-platform:hover, .c11-platform:hover, .c12-platform:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 0.75rem rgb(255, 174, 44));
}


/* LOTTO */

.lotto-bg {
    background: #212121;
    max-height: 780px;
}

.mod-lotto {
    max-height: 780px;
    transition: all .2s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
}


.lobby-platform {
    background-repeat: no-repeat;
    -webkit-transition: all 0.50s ease-in;
    -moz-transition: all 0.50s ease-in;
    -o-transition: all 0.50s ease-in;
    -ms-transition: all 0.50s ease-in;
    transition: all 0.50s ease-in;
}

.lobby-platform.lotto-plat li a {
    height: 250px;
}

.lotto-plat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 465px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
}

.mod-lotto.liw-active {
    background-image: url( "../images/lotto/Product-Banner-PlayPearls.png");
}

.mod-lotto.clicklotto88-active {
    background-image: url(../images/lotto-click.jpg);
}

.lobby-platform.lotto-plat .liw-platform {
    background: url( "../images/lotto/PlayPearls.png") no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;
}

.lobby-platform.lotto-plat .clicklotto88-platform {
    background: url( ) no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;
}

.liw-platform,
.clicklotto-platform {
    transition: all .5s;
    cursor: pointer;
}

.liw-platform:hover,
.clicklotto88-platform:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 0.75rem rgb(255, 174, 44));
}


/* ESPORT */

.esport-bg {
    background: url(../images/esport-im.jpg)no-repeat center top;
    max-height: 780px;
}

.mod-esport {
    max-height: 780px;
    transition: all .2s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
}

.lobby-platform {
    background-repeat: no-repeat;
    -webkit-transition: all 0.50s ease-in;
    -moz-transition: all 0.50s ease-in;
    -o-transition: all 0.50s ease-in;
    -ms-transition: all 0.50s ease-in;
    transition: all 0.50s ease-in;
}

.lobby-platform.esport-plat li a {
    height: 250px;
}

.esport-plat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 465px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
}

.mod-esport.im-active {
    background-image: url(../images/esport-im.jpg);
}

.mod-esport.tfg-active {
    background-image: url(../images/esport-tfg.jpg);
}

.lobby-platform.esport-plat .im-platform {
    background: url(../images/icon-esport-im.png) no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;
}

.lobby-platform.esport-plat .tfg-platform {
    background: url(../images/icon-esport-tfg.png) no-repeat;
    background-size: contain;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 250px;
}

.im-platform,
.tfg-platform {
    transition: all .5s;
    cursor: pointer;
}

.im-platform:hover,
.tfg-platform:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 0.75rem rgb(255, 174, 44));
}


/* FISH */

.fish-bg {
    background: url("../images/fishing/bg-fish.png")no-repeat center top;
    height: 652px;
    display: flex;
    align-items: center;
    position: relative;
}

.fish-animation {
    position: absolute;
    top: 0;
    width: 100%;
}

.btn-fish1 img {
    transition: all .5s;
}

.btn-fish1 img:hover {
    transform: scale(1.2);
    z-index: 2;
    filter: drop-shadow(0 0 0.75rem rgb(44, 177, 255));
}

.btn-fish2 img {
    transition: all .5s;
}

.btn-fish2 img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 0.75rem rgb(44, 177, 255));
}

.btn-fish3 img {
    transition: all .5s;
}

.btn-fish3 img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 0.75rem rgb(44, 177, 255));
    z-index: 2;
}

.bubble {
    position: absolute;
}



/* * BUBBLES KEYFRAMES */

*/ @-webkit-keyframes animateBubble {
    0% {
        margin-top: 500px;
    }
    100% {
        margin-top: -10%;
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 500px;
    }
    100% {
        margin-top: -10%;
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 500px;
    }
    100% {
        margin-top: -10%;
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: 50px;
    }
}

@-moz-keyframes sideWays {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: 50px;
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: 50px;
    }
}


/* BUBBLES ANIMATIONS */

.x1 {
    -webkit-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
    -moz-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 34%;
    top: 42%;
    background: url("../images/fishing/bubble-1.png")no-repeat center;
    width: 73px;
    height: 105px;
}

.x2 {
    -webkit-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 22%;
    top: 67%;
    background: url("../images/fishing/bubble-2.png")no-repeat center;
    width: 109px;
    height: 118px;
}

.x3 {
    -webkit-animation: animateBubble 40s linear infinite, sideWays 2s ease-in-out infinite alternate;
    -moz-animation: animateBubble 40s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 40s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 33%;
    top: 40%;
    background: url("../images/fishing/bubble-3.png")no-repeat center;
    width: 57px;
    height: 61px;
}

.x4 {
    -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
    -moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 20%;
    top: 0;
    background: url("../images/fishing/bubble-4.png")no-repeat center;
    width: 92px;
    height: 104px;
}

.x5 {
    -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
    right: 35%;
    top: 50%;
    background: url("../images/fishing/bubble-5.png")no-repeat center;
    width: 43px;
    height: 62px;
}

.x6 {
    -webkit-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
    -moz-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 21s linear infinite, sideWays 1s ease-in-out infinite alternate;
    right: 31%;
    top: 0;
    background: url("../images/fishing/bubble-6.png")no-repeat center;
    width: 119px;
    height: 103px;
}

.x7 {
    -webkit-animation: animateBubble 27s linear infinite, sideWays 2s ease-in-out infinite alternate;
    -moz-animation: animateBubble 27s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 27s linear infinite, sideWays 2s ease-in-out infinite alternate;
    right: 28%;
    top: 70%;
    background: url("../images/fishing/bubble-3.png")no-repeat center;
    width: 57px;
    height: 61px;
}

.x8 {
    -webkit-animation: animateBubble 35s linear infinite, sideWays 3s ease-in-out infinite alternate;
    -moz-animation: animateBubble 35s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 35s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 80%;
    top: 10%;
    background: url("../images/fishing/bubble-7.png")no-repeat center;
    width: 25px;
    height: 24px;
}

.x9 {
    -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 16%;
    top: 50%;
    background: url("../images/fishing/bubble-7.png")no-repeat center;
    width: 25px;
    height: 24px;
}

.x10 {
    -webkit-animation: animateBubble 30s linear infinite, sideWays 2s ease-in-out infinite alternate;
    -moz-animation: animateBubble 30s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 30s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 80%;
    top: 80%;
    background: url("../images/fishing/bubble-1.png")no-repeat center;
    width: 73px;
    height: 105px;
}

.fish {
    position: absolute;
    max-width: 120px;
    top: 50%;
    animation: swim 1.5s, left-right 14s;
    -webkit-animation: swim 1.5s, left-right 14s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

.fish-group {
    position: absolute;
    margin-top: 10%;
    top: 50%;
    animation: right-left 16s;
    -webkit-animation: right-left 16s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes swim {
    0% {
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    50% {
        -ms-transform: rotate(12deg);
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg);
    }
    100% {
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes swim {
    0% {
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    50% {
        -ms-transform: rotate(12deg);
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg);
    }
    100% {
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes left-right {
    0% {
        margin-left: -134px
    }
    90% {
        margin-left: 100%;
    }
    100% {
        margin-left: 100%;
    }
}

@keyframes left-right {
    0% {
        margin-left: -134px
    }
    70% {
        margin-left: 100%;
    }
    100% {
        margin-left: 100%;
    }
}

@-webkit-keyframes right-left {
    0% {
        right: 0
    }
    90% {
        right: 100%;
    }
    100% {
        right: 100%;
    }
}

@keyframes right-left {
    0% {
        right: 0
    }
    70% {
        right: 100%;
    }
    100% {
        right: 100%;
    }
}


/* POKER */

.poker-bg {
    background: url( "../images/p2p/Product-Banner-p2p.png")no-repeat center top;
    height: 651px;
    display: flex;
    align-items: center;
}

.poker-wrapper {
    position: relative;
    display: flex;
    height: 651px;
    justify-content: space-around;
    align-items: center;
}

.btn-poker1 img {
    transition: all .5s;
}

.btn-poker1 img:hover {
    transform: scale(1.2);
    z-index: 2;
    filter: drop-shadow(0 0 0.75rem rgb(44, 177, 255));
}

.btn-poker2 img {
    transition: all .5s;
}

.btn-poker2 img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 0.75rem rgb(44, 177, 255));
}


/* PROMOTION */

.promo-sec {

/* background: #0b0b0b; */
}

.mix {
    display: none;
}

.promo-annouce {
    /* position: inherit; */
    margin-top: 0;
    padding: 20px;
    top: 0px;
}

.filter-wrapper {
    display: flex;
    align-items: center;

    justify-content: space-between;
    padding: 10px;
    background: #212121;
    margin-bottom: 20px;
}

.filter-menu-bar {
    display: flex;
}

.has-search {
    position: relative;
    margin: 0;
}

.has-search .form-control {
    padding-right: 12px;
    background: none;
    border: 1px solid #666a6b;
    width: 90%;
    height: 32px;
    margin: 0 auto;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 10px;
    height: 10px;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #6c757d;
    right: 16%;
    top: -2px;
    font-size: 16px;
}

.card-promo {
    padding-bottom: 25px;
}

.card-body.promo {
    font-size: 12px;
    background: #00000061;
    color: #fff;
    text-align: left;
    padding: 20px;
}

.filter-menu-bar ul li a {
    position: relative;
}

.pmbox {
    cursor: pointer;
    border: none;
    color: #666a6b;
    border-radius: 0;
    display: block;
    padding: .5rem 1rem;
    position: relative;
}

.pmbox:hover:after {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    border-top: 5px solid #000000;
}

.pmbox.active::after {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    border-top: 5px solid #000000;
}

.pmbox.active,
.pmbox:hover {
    background-color: #000;
    border: none;
    border-radius: 0;
    color: #fff;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-btn {
    padding: 7px;
    height: 28px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #e9deaa;
    background: linear-gradient(to bottom, rgba(143, 114, 62, 1) 0%, rgba(96, 71, 42, 1) 100%);
    border-radius: 5px;
    color: #fff;
}

.promo-content {
    padding: 15px;
}

.promo-bx {
    padding: 5px 0px;
}

.text-yellow {
    color: #f9bb22;
}

.text_promotions {
    color: #fff;
}

.text_promotions ol {
    padding: 0;
    padding-left: 10px;
}

.promo-content .card-body {
    color: #fff;
    padding: 15px;
    border: 1px solid #75592e;
    background: #000000d4;
    border-radius: 10px;
}

.promo-content .card-body h4 {
    font-size: 14px;
}

.promo-content .card-body ul {
    list-style: decimal;
}

.promo-table>tbody>tr>th {
    background: #bb0000;
    border: 1px solid #eeeeee;
    color: #ffffff;
    padding: 5px 10px;
    text-align: center;
    font-weight: normal;
}


/* SLOT */

.slot-nav {
    padding-top: 15px;
}

.slot-nav .nav-tabs {
    border: none;
    background: #121212;
    display: grid;
    grid-template-columns: repeat(8,1fr);
    margin-bottom: 20px;
}

.slot-nav .nav-tabs .nav-link {
    color: #606060;
    border: 1px solid #1b1b1b;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    text-align: -webkit-center;
}

.slot-nav .nav-tabs .nav-link img {
    filter: grayscale(1);
}

.slot-nav .nav-tabs .nav-item.show .nav-link,
.slot-nav .nav-tabs .nav-link.active {
    background: #232323;
    color: #fff;
    border-radius: 0;
    border: 1px solid #3f3f3f;
}

.slot-nav .nav-tabs .nav-item.show .nav-link img,
.slot-nav .nav-tabs .nav-link.active img {
    filter: none;
}

.slot-nav .nav-tabs .nav-link:focus,
.slot-nav .nav-tabs .nav-link:hover {
    background: #232323;
    color: #fff;
    border-radius: 0;
    border: 1px solid #1b1b1b;
}

.slot-nav .nav-tabs .nav-link:focus img,
.slot-nav .nav-tabs .nav-link:hover img {
    filter: none;
}

.slot-nav .nav-tabs .nav-item {
    border-radius: 0;
    /* width: 12%; */
    text-align: center;
}

.slot-content .nav-tabs {
    background: #121212;
    border: none;
    padding: 10px 20px;
    margin-top: 5px;
    color: #fff;
}

.slot-content .nav-tabs .nav-item.show .nav-link,
.slot-content .nav-tabs .nav-link.active {
    background: #000;
    color: #fff;
    border: none;
}

.slot-content .nav-link {
    padding: 5px 15px;
    border-radius: 10px;
    border: none;
    color: #606060;
}

.slot-content .nav-tabs .nav-link:focus,
.slot-content .nav-tabs .nav-link:hover {
    border: none;
    background: #000;
    color: #fff;
}

.slot-bg {
    /* background: #0b0b0b; */
    padding-top: 550px;
}

.slot-content {
    padding-bottom: 10px;
    /* height: 435px; */
}

.jackpot-pool {
    background: #121212;
    margin-top: 10px;
    margin-bottom: 10px;
}

.jac-kpot {
    background: #121212;
    height: 120px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jac-kpot a:hover img {
    opacity: .8;
}

.slot-text {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    padding-top: 20px;
    margin-left: 25px;
    color: #fede9a;
}

.jiangchi {}

.jackpot-box .num-item {
    display: inline-block;
    float: left;
    height: 70px;
    width: 51px;
    line-height: 70px;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(to bottom, #464445 0%, #4f4f4f 51%, #262c3a 100%);
    border-right: 4px solid #121212;
    border-radius: 9px;
}

.jackpot-box {
    position: relative;
    display: flex;
    align-items: center;
}

.jackpot-box .num-item:nth-child(4n+0) {
    background: none;
    width: auto;
    padding: 0;
    margin-left: 2px;
    margin-right: 2px;
}

.jackpot {}

.jackpot_gif {
    position: absolute;
    bottom: 40px;
    left: 390px;
    width: 415px;
    height: 122px;
}

.jackpot_figure {
    width: 500px;
    text-align: center;
    font-size: 60px;
    text-transform: uppercase;
    padding-top: 15px;
    color: #ffffff;
    text-shadow: #000 5px 4px 4px;
    font-weight: 800;
}

.jackpot-title {
    color: #ccaf6b;
    padding-right: 10px;
}

.slot-product {
    width: 100%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.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);
}

.mini-box:hover .overlay {
    opacity: 1;
}

.mini-box {
    position: relative;
    width: 100%;
    padding: 2px;
    background: #262626;
}

.btn-playmini {
    background: #dc0032;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-playmini:hover {
    color: #fff;
}

.slot-catergory {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 0px;
    align-items: center;
}

.game-item .game-info {
    background: url(../images/game-item.jpg)no-repeat center;
    height: 74px;
    padding: 12px 8px;
}

.game-item .game-info .g_line1 a {
    color: #fff;
}

.game-item .game-info .g_line2 div {
    color: #aaa;
}

.game-item .game-info .g_line2 span {
    color: #fae39e;
}

.game-item [class*=" imghvr-"],
.game-item [class^=imghvr-] {
    width: 100%;
    background: none;
}

.game-item .game-info .g_title {
    font-size: 15px;
}


/* REGISTER */

.reg-body {
    max-width: 900px;
    /* border: 1px solid #b8874c; */
    /* background: #151515; */
    margin: 0px auto;
    padding-top: 70px;
}

.reg-box {
    max-width: 450px;
    padding: 15px;
    margin: 0 auto;
}

.reg-body .container {
    padding: 15px;
}

.reg-body .nav-tabs {
    border-bottom: none;
    justify-content: space-between;
    max-width: 330px;
    margin: 0 auto;
}

.reg-body .nav-tabs .nav-link {
    color: #b0afaa;
    border: none;
    border-bottom: 1px solid transparent;
    font-size: 25px;
}

.reg-body .nav-tabs .nav-item.show .nav-link,
.reg-body .nav-tabs .nav-link.active {
    background: none;
    color: #e1ae53;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e1ae53;
}

.reg-body .nav-tabs .nav-link:focus,
.reg-body .nav-tabs .nav-link:hover {
    background: none;
    color: #e1ae53;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e1ae53;
}

.reg-box .input-group-text {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    background: #fff;
    border-right: none;
}

.reg-box .input-group-text img {
    max-width: 30px;
}

.reg-box .form-control {
    height: 55px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-left: none;
}

.reg-box .input-group>.custom-select:not(:last-child),
.reg-box .input-group>.form-control:not(:last-child) {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-left: none;
}

.veri-code {
    position: absolute;
    right: 60px;
    top: 8px;
}

.form-desc {
    color: #fff;
    font-size: 11px;
    width: 100%;
    padding: 5px 32px 0;
}

.btn-reg-reg {
    background: #feb127;
    border-radius: 25px;
    width: 35%;
    margin: 0 auto;
    color: #fff;
    font-size: 13px;
    padding: 15px;
}

.btn-refresh {
    position: absolute;
    right: 20px;
    top: 12px;
    background: none;
    font-size: 20px;
    border: none;
}

.reg-des {
    color: #fff;
    font-size: 11px;
    width: 78%;
    margin: 0 auto;
    margin-top: 10px;
}

.info-bg {
    /* padding: 15px; */
}

.info-bg .container {
    max-width: 1070px;
}

.info-nav {
    background: #212121;
    max-width: 1200px;
    padding: 15px;
    margin-top: 20px;
}

.info-nav .nav-tabs {
    justify-content: center;
    border-bottom: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.info-nav .nav-item {
    position: relative;
}

.info-nav .nav-link {
    text-align: center;
    border-radius: 0;
    margin: 0 10px;
    border-radius: 6px;
    padding: 15px;
    border: none;
}

.info-nav .nav-item:nth-child(1)::before {
    content: none;
}

.info-nav .nav-item::before {
    content: "";
    height: 120px;
    background: #101010;
    width: 1px;
    position: absolute;
    top: 15px;
}

.info-nav .nav-tabs .nav-item.show .nav-link .info-main-title,
.info-nav .nav-tabs .nav-link.active .info-main-title {
    color: #b79857;
}

.info-nav .nav-tabs .nav-item.show .nav-link .info-sub-title,
.info-nav .nav-tabs .nav-link.active .info-sub-title {
    color: #b79857;
}

.info-nav .info-main-title {
    font-size: 15px;
    color: #595959;
    margin-bottom: 10px;
    margin-top: 15px;
}

.info-nav .info-sub-title {
    font-size: 12px;
    color: #595959;
}

.info-nav .nav-tabs .nav-item.show .nav-link,
.info-nav .nav-tabs .nav-link.active {
    background: #151515;
    border: none;
    color: #8c6d1b;
}

.info-nav .nav-tabs .nav-link:focus,
.info-nav .nav-tabs .nav-link:hover {
    background: #151515;
    border: none;
}

.info-nav .nav-tabs .nav-link:focus .info-main-title,
.info-nav .nav-tabs .nav-link:hover .info-main-title {
    border: none;
    color: #b79857;
}

.info-nav .nav-tabs .nav-link:focus .info-sub-title,
.info-nav .nav-tabs .nav-link:hover .info-sub-title {
    border: none;
    color: #b79857;
}

.info-content {
    background: #212121;
    padding: 40px;
}

.contact-tab {
    background: #151515;
    border: 1px solid #141414;
    list-style: none;
    padding: 10px;
}

.contact-info-title {
    border-bottom: 1px solid #484848;
}

.contact-info-title span {
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
    border-radius: 10px;
    color: #fff!important;
    text-align: center;
    padding: 5px;
    display: block;
    margin: 7px;
}

.contact-info-details {
    color: #b79857;
    border-bottom: 1px solid #484848;
    text-align: center;
    padding: 10px;
    margin: 5px;
}

.contact-info-details:last-child {
    border-bottom: none;
}

.contact-tab li i {
    font-size: 20px;
    margin-right: 20px;
}

.info-wrapper {
    border: 1px solid #b7864b;
    background: #151515;
    padding: 40px;
}

.info-wrapper h4 {
    color: #b79857;
    border-bottom: 1px solid #b79857;
    padding-bottom: 15px;
    font-weight: 700;
}

.info-wrapper p {
    color: #fff;
}

button.btn-tnc {
    background: #ffd05e;
    width: 100%;
    text-align: left;
    font-size: 15px;
    padding: 7px 15px;
    color: #000;
    font-weight: 600;
    border: 1px solid #7f6610;
    border-radius: 5px;
}

button.btn-tnc.collapsed {
    background: #131313;
    color: #fff;
    font-weight: 400;
}

button.btn-tnc:focus {
    outline: none;
}

.tnc-card {
    margin-bottom: 10px;
}

.tnc-body {
    background: rgba(0, 0, 0, 0.3);
    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;
}


/*download*/

.downloadTab {
    padding: 20px 0;
}

.downloadTab .nav-pills .nav-link {
    background: #13171d;
    height: 60px;
    color: #dfbf95;
    border: 1px solid #e9deaa;
    align-items: center;
    border-radius: 0;
    justify-content: center;
    display: flex;
}

.downloadTab .nav-pills .nav-link.active,
.downloadTab .nav-pills .nav-link:hover {
    background: linear-gradient(to bottom, #8f723e 0%, #60472a 100%);
    color: #fff;
}

.downloadbody {
    text-align: center;
    margin-bottom: 35px;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 150px;
}

.ndl-btn {
    background: #13171d;
    color: #dfbf95;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 55%;
    border: 1px solid #dfbf95;
    box-shadow: 0px 2px 0px #dfbf95;
}

.ndl-btn:hover,
.ndl-btn:focus {
    color: #000000;
}

.adl-btn {
    background: #13171d;
    color: #dfbf95;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 55%;
    border: 1px solid #dfbf95;
    box-shadow: 0px 2px 0px #dfbf95;
}

.adl-btn:hover,
.adl-btn:focus {
    color: #406794;
}

.dl {
    max-width: 500px;
    margin: auto;
}

.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}

.dl table th {
    border: 1px solid #d2b16e;
    text-align: center;
    padding: 8px;
    color: #ffd800;
    font-weight: 500;
    text-transform: capitalize;
}

.dl table td {
    text-align: left;
    padding: 8px;
    background: none;
    border: 1px solid #d9b75f;
    color: #ffffff;
}

.dl .username_custom {
    color: #d2b16e;
}

.downloadboxContent {
    padding: 15px;
    border: 1px solid #d2b16e;
    background: #13171d;
}

.downloadbox img {
    max-width: 150px;
}

.dropdown-item {
    padding: 5px;
}

.input-voucher {
    margin-right: 10px;
}

.download-title {
    color: #dfbf95;
}

.downloadbody h4 {
    color: #dfbf95;
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
}
.mobile-sec{background:#212121 url("../images/download.png") top center no-repeat; padding-top: 60px;}
.mobile-sec .container {
    max-width: 1000px;
	
}


/*downloadEND*/


/* AF LOGIN */

.btn-balance {
    border: none;
    background: none;
    color: #fff;
    padding: 0;
}

.dropdown-menu-balance {
    background: #000;
    border: 1px solid #75592e;
}

.dropdown-menu-balance .clearfix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: #ffd65b;
    padding: 5px;
    font-size: 12px;
}

.remaining {
    text-align: end;
}

.header-panel ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-panel ul li {
    width: auto;
    display: inline-block;
    margin-right: 12px;
    line-height: 22px;
}

.af-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-panel .panel_name a {
    color: #efd709 !important;
}

.header-panel .panel_news .label-info {
    background-color: #e00e0e;
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.header-panel ul li a {
    color: #fff;
}


/*afterlogin*/

.afterlogin_bg {
    /* background: url("../images/afterlogin/bg.jpg")no-repeat top center; */
    padding: 20px 0;
}

.profilebox {
    background-color: #ffffff;
    height: 89px;
    padding: 14px;
    margin-bottom: 20px;
}

.profileinfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.profile_icon {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding: 0 10px;
}

.wallet_custom {
    border-left: 1px dotted #505050;
    padding-left: 20px;
}

.profile_rank {
    color: #cd9c41;
}

.wallet_bal {
    color: #cd9c41;
}

.sidepanel {
    margin: 0;
    padding: 0;
    width: 195px;
    float: left;
    border-bottom: none;
}

.sidepanel-title {
    color: #cd9c41;
    font-weight: 700;
    border-bottom: 1px solid #cd9c41;
    padding-bottom: 10px;
}

.sidepanel ul {
    list-style-type: none;
    padding: 20px;
}

.sidepanel ul li {
    margin-bottom: 10px;
    border-radius: 10px;
}

.sidepanel ul li a {
    display: flex;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    margin: 0px;
    border-radius: 5px;
    line-height: initial;
    align-items: center;
    justify-content: left;
    padding-left: 20px;
    word-break: break-all;
    padding: 10px;
    color: #ffffff;
}

.sidepanel ul li:hover a {
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
    color: #ffffff;
}

.sidepanel ul li.active a {
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
    color: #ffffff;
}

.sidepanel_icon_white {
    display: none;
}

.sidepanel ul li.active a .sidepanel_icon_white {
    display: block;
    filter: invert(1);
}

.sidepanel ul li.active a .sidepanel_icon_color {
    display: none;
}

.sidepanel ul li a img {
    margin-right: 5px;
    width: 24px;
}

.sidepanel_content {
    display: block;
    margin-left: 210px;
    min-height: 620px;
    border-radius: 10px;
    background: rgb(44 44 44 / 84%);
    color: #ffffff;
    padding: 15px;
}

.sidepanel_header {
    padding: 20px;
    color: #cd9c41;
    border-bottom: 1px solid #cd9c41;
    font-weight: 800;
    font-size: 19px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

.setting_text {
    color: #cd9c41;
}

.title_text {
    display: flex;
    padding-left: 50px;
    align-items: center;
}

.title_text02 {
    display: flex;
    padding-left: 50px;
    align-items: unset;
}

.nav-pills.afterlogin .nav-link.active,
.nav-pills.afterlogin .show>.nav-link {
    color: #fff;
    background-color: #ffffff;
    border: 1px solid #ecc659;
    background-image: url(../images/afterlogin/deposit/tContent_depositContent_largeActive.png);
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 8px 0px;
}

.nav-pills.afterlogin .nav-link {
    color: #fff;
    background-color: #ffffff;
    padding: 0;
    margin: 8px 0px;
    border: 1px solid #bbbbbb;
}

.ori_img {
    display: none;
}

.nav-pills.afterlogin .nav-link.active .ori_img {
    display: block;
}

.nav-pills.afterlogin .nav-link.active .grey_img {
    display: none;
}

.bank_select {
    display: flex;
    justify-content: left;
    width: 500px;
    font-size: 12px;
}

.bank_select_inner {
    display: flex;
    color: #858585;
    text-align: center;
    align-items: center;
    margin-right: 10px;
}

.bank_select_img {
    border: 1px solid #858585;
    border-radius: 5px;
    padding: 0px;
    margin: 8px;
    margin-left: 0;
}

.nav-pills.afterlogin_bank .nav-link.active,
.nav-pills.afterlogin_bank .show>.nav-link {
    color: #fff;
    background-color: #ffffff00;
    background-image: url(../images/afterlogin/deposit/tContent_depositContent_smallActive.png);
    background-position: 1% 56%;
    background-repeat: no-repeat;
    padding: 0;
}

.nav-pills.afterlogin_bank .nav-link {
    padding: 0;
}

.nav-pills.afterlogin_bank .nav-link.active .bank_select_inner {
    color: #cd9c41;
}

.nav-pills.afterlogin_bank .nav-link.active .bank_select_inner .bank_select_img {
    border: 1px solid #ecc659;
}

.ori_img {
    display: none;
}

.nav-pills.afterlogin_bank .nav-link.active .ori_img {
    display: block;
}

.nav-pills.afterlogin_bank .nav-link.active .grey_img {
    display: none;
}

.inputDeposit {
    border: 1px solid silver;
    background-color: #fff;
    color: #999;
    border-radius: 4px;
    display: flex;
    align-items: center;
    height: 40px;
    width: 300px;
}

.maxLimit {
    color: red;
}

.depositBtn {
    width: 80px;
    height: 40px;
    background-image: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -moz-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -ms-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -o-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: linear-gradient(top, #f4f3f3, #e6e6e6);
    -webkit-transition: background-color .2s ease-out;
    -moz-transition: background-color .2s ease-out;
    -ms-transition: background-color .2s ease-out;
    -o-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    background-clip: padding-box;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid silver;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #858585;
    font-size: 14px;
}

.submit_btn {
    margin-top: 10px;
    border-radius: 4px;
    width: 188px;
    height: 40px;
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
    color: #fff;
    cursor: pointer;
    font-size: inherit;
    border: none;
}

.upload_btn {
    margin-top: 10px;
    border-radius: 4px;
    width: 188px;
    height: 40px;
    background: #0062c9;
    background: -moz-linear-gradient(top, #f4f3f3 0%, #e6e6e6 102%);
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background: linear-gradient(to bottom, #f4f3f3 0%, #e6e6e6 102%);
    color: #858585;
    cursor: pointer;
    font-size: inherit;
    border: 1px solid #e6e6e6;
}

.bank_details_copy {
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
    color: white;
    display: flex;
    align-items: center;
    border-radius: 4px;
    width: 250px;
    height: 30px;
    justify-content: center;
}

.tab-pane-bank {
    margin-left: auto;
    margin-right: 0;
}

.important-notice {
    background: #eeeeee;
    padding: 20px 20px 20px 20px;
    margin: 20px;
    font-size: 12px;
    height: fit-content;
}

.important-notice-title {
    color: #000000;
}

.important-notice-content {
    color: #858585;
}

.important-notice-content ol {
    padding: 0;
}

.exchangeIcon {
    color: #999;
    display: flex;
    align-items: center;

}

.weekly {
    background: #E2E2E2;
    padding: 10px;
    margin-left: auto;
    margin-right: 0;
    color: #000;
    display: flex;
    border-radius: 5px;
}

.text_title_transfer {
    color: #cd9c41;
    margin-top: 10px;
    margin-bottom: 10px;
}

.transfer_game_main {
    font-size: 12px;
}

.transfer_box {
    display: flex;
    border: none;
    background-color: #000;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.transfer_box_sec {
    color: #000000;
    padding: 0 2px;
    background-color: #E2E2E2;
    display: flex;
    min-height: 27px;
    align-items: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.transfer_btn {
    height: 22px;
    width: 64px;
    border: 1px solid #cd9c41;
    color: #cd9c41;
    background: none;
    border-radius: 5px;
    margin-top: 10px;
}

.transfer_btn:hover {
    background: #cd9c41;
    color: #fff;
}

.text-blue {
    color: #cd9c41;
}

.withdrawal table {
    border-collapse: collapse;
    width: 100%;
    color: #000000;
}

.withdrawal table th {
    border: none;
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
    color: #000000;
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
    border: 1px solid transparent;
}

.withdrawal table td {
    text-align: left;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #d5d5d5;
    background-color: #ffffff;
}

.withdrawal table td:first-child {
    text-align: right;
}

.history_main {
    display: flex;
    align-items: center;
}

.history_btn {
    border: none;
    padding: 5px;
    background-color: transparent;
    color: #858585;
    margin: 0 5px;
}

.history_btn.active {
    border: 1px solid #cd9c41;
    border-radius: 4px;
    color: #ffffff;
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
    padding-left: 18px;
    padding-right: 18px;
    align-items: center;
}

.history_table table {
    width: 100%;
    color: #000;
    text-align: center;
}

.history_table table tr:first-child {
    background: linear-gradient(to bottom, #dec084 0%, #94703c 70%, #9a763a 100%);
}

.history_table table tr td {
    padding: 15px 0;
    border: none;
    background: #3e3e3e;
    color: #fff;
}

.history_table table tr td i {
    font-size: 20px;
}

.history_table table tr th {
    padding: 8px;
}

.history_to {
    color: #000;
    display: flex;
    align-items: center;
}

.form-control.date_custom {
    padding: 0 10px;
}

.inbox_msg_text {
    color: #cd9c41!important;
    cursor: pointer;
}


/*profile*/

.profile_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #858585;
    grid-column-gap: 10px;
}

.profile_main_title {
    color: #cd9c41;
}

.profile_main_bg {
    background-color: #000000;
    padding: 20px;
    border-radius: 5px;
}

.bank_details_content {
    display: flex;
    align-items: center;
}

.deposit_btn {
    background: url(../images/bg-btn.jpg)repeat-x;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}

.deposit_btn a {
    color: #000;
}

.logout_btn {
    background: linear-gradient(to bottom, #b60000 0%, #5a0500 100%, #f1e767 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}

.btmtools_after {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6d6d6d;
    font-size: 12px;
    padding: 5px 10px 0;
    float: right;
}

.log-group a {
    color: #6d6d6d;
}

.three_dot {
    font-size: 10px;
}

.msg_head {
    font-size: 20px;
    color: #cd9c41;
}

.about-us-header,
.contact-us-header {

    background: #efefef;
    padding: 5px 0 5px 15px;
    font-weight: bold;
    font-size: 18px;
}

.contact-us-header_inner {
    margin: 50px 0;
}

.contact_dotted {
    border-right: 1px dotted;
}

.about-us-p {
    padding: 10px;
}

@media only screen and (max-width: 1580px) {
    .btn-play {
        bottom: 15%;
    }
}

.lang-btn img {
    height: 20px;
}

a.download-link {
    color: #968e71;
}
.menu-grid2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    height: 80px;
    position: relative;
    /* top: -105px; */
    margin-top: 20px;
}

.ttl-line {border-right-width: 0;border-left-width: 0;border-bottom-width: 1px;border-top-width: 0;border-style: solid;border-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0), #dfbf95, rgba(0, 0, 0, 0)) 20 stretch;max-width: 525px;margin: 0px auto;color: #dfbf95;font-weight: bold;font-size: 28px;padding-bottom: 10px;padding-top: 30px;display: flex;justify-content: center;}

section.download-sec {
    position: relative;
}

section.download-sec .lobby-title.text-center {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
    top: 6%;
}
section.download-sec img {
    display: block;
    margin: 0px auto;
}

.ttl-line span {
    padding: 0px 20px;
}


.slt-bg{background: #212121  url("../images/slot/slot.png") top center no-repeat; position: relative;}

.jackpot-title h5 {
    font-size: 40px;
}
.jackpot-title p {
    margin: 0px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}


.all-bg {
    position: relative;
}
.promo-bg{background: #212121 url("../images/promo.png") top center no-repeat;padding-top: 30px;}
.reg-wrap {
    border: 1px solid #e1ae53;
    padding: 25px;
    padding-bottom: 0px;
}
.rebate-in{padding:30px;}
.referral_qr img{display:block;height: 149px;margin: 0px auto;}
.rabate-date{display:flex;justify-content:flex-start;align-items:center;margin-top:30px;}
.referral_qr{margin-top:26px;}
.rabate-date .form-group{margin:0px 20px;}
.btn-check{background:#ffd65b;color:#000;border-radius:50px;padding:4px 20px;border:none;}
.af-table tr th{background: linear-gradient(to bottom, rgba(234,188,119,1) 0%, rgba(234,188,119,1) 1%, rgba(186,128,35,1) 51%, rgba(234,188,119,1) 89%, rgba(250,232,169,1) 100%);color:#000;padding:5px 10px;text-align:center;border: 1px solid #b3953c;}
.af-table tr td{padding:5px 10px;border: 1px solid #b3953c;text-align:center;color: #fff;}
.privatemsgTable{margin-top:30px;}
.table-detail tr th{background:linear-gradient(to bottom, rgba(197,156,84,1) 0%, rgba(105,72,14,1) 100%);padding:7px;text-align:center;border:1px solid #856123;}
.table-detail tr td{text-align:center;border:1px solid #856123;padding:5px;}
table.table-detail{width:500px;margin:0px auto;}

.slot-content-index{
    min-height: 435px;
}





