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 **/

.logo img {
    max-width: 250px;
}

.t-header {
    position: relative;
    z-index: 2;
    background: #000 url(../images/header-bg.jpg)repeat-x;
    background-size: 100% 100%;
}

.time-bar {
    background: #000;
    height: 40px;
    display: flex;
    align-items: center;
    color: #585959;
}

.header-top {
    /* background: #272b3a; */
    background-size: cover;
    height: auto;
    color: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
}

.download-link {
    color: #585959;
}

.header-bottom {
    color: #FFF;
    position: relative;
}

.header-bottom::before {
    content: "";
    width: 1920px;
    height: 1px;
    background: url("../images/header-line.jpg") no-repeat center;
    top: -1px;
    right: 0px;
    position: absolute;
}

.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: space-between;
    align-items: center;
}

.login-form {
    display: grid;
    grid-template-columns: 30% 30% 20% 20%;
    grid-gap: 5px;
    margin: 0;
}

.log-field {
    align-self: center;
    width: 30%;
    background: #151515;
    border: 1px solid #747474;
    color: #666666;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 5px;
    position: relative;
}

input.log_input {
    background: none;
    border: none;
    width: 70%;
    padding: 0;
    padding-right: 5px;
    color: #666666;
}

input.log_input:focus {
    outline: none;
    box-shadow: none;
}

input.log_input::placeholder {
    color: #fff;
}

.forgot {
    color: #666666;
    font-size: 12px;
    align-self: center;
    font-weight: 500;
    position: absolute;
    width: 30%;
    text-align: center;
    border-radius: 5px;
}

.forgot:hover {
    color: #e9deaa;
}

button.login-btn {
    border: none;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    padding: 6px;
    width: 15%;
    transition: 0.3s;
    background: #0084ff;
    border-radius: 20px;
}

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 {
    text-align: center;
    color: #d300ff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    transition: 0.3s;
    border: 2px solid #d300ff;
    background: black;
    padding: 3px;
    border-radius: 25px;
    box-shadow: 0px 0 10px #d300ff;
    width: 18%;
    animation: mymove 2s infinite;
}

@keyframes mymove {
    from {
        color: #d300ff;
        border: 1px solid #d300ff;
        box-shadow: 0px 0 10px #d300ff;
    }
    to {
        color: #00f6ff;
        border: 1px solid #00f6ff;
        box-shadow: 0px 0 5px #00f6ff;
    }
}

.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 {
    margin: 0 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-size: contain;
    color: #de00ff;
    border: 1px solid #0084ff;
    box-shadow: 0px 0px 6px 1px rgb(222 0 255);
    background: #000000;
}

.menu-product-title {
    color: #f7b818;
    display: flex;
    border-bottom: 1px solid #8f17ae;
    height: 40px;
    align-items: center;
}

.menu-product-title h4 {
    font-size: 32px;
    color: #8f17ae;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    height: 80px;
    position: relative;
    top: -105px;
}

.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;
}

.menupart {
    width: 1140px;
    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;
    width: 10%;
}

.menupart>ul>li.active,
.menupart>ul>li:hover {
    background: #000 url(../images/navbar-bg.jpg)repeat-x;
    border-top: none;
    border-bottom: none;
    color: #fff;
    border: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-top: none;
    border-bottom: none;
    border-image-source: url(../images/border.png);
}

.menupart>ul>li.active>a>span,
.menupart>ul>li:hover>a>span {
    border-right: none;
    border-left: none;
    color: #c7c7c7;
}

.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(7) {
    animation-delay: 600ms;
}

.menu-product:nth-child(8) {
    animation-delay: 700ms;
}

.menu-product:nth-child(9) {
    animation-delay: 800ms;
}

.menu-product:nth-child(10) {
    animation-delay: 900ms;
}

.menupart>ul>li>a {
    text-transform: uppercase;
    padding: 10px 0;
    color: #ffffff;
    font-size: 14px;
    display: grid;
    width: 100%;
}

.menupart>ul>li>a:hover {
    color: #c7c7c7;
    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 #5f6c9e; */
    border-right: 1px solid #570f5c;
    font-size: 14px;
    position: relative;
}

.menupart>ul>li>a>span>.comingsoon {
    position: absolute;
    top: -10px;
    width: 100px;
    right: 0;
}

.menupart>ul>li:first-child>a>span {}

.menupart>ul>li:last-child>a>span {
    border: none;
}

.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: #0000006b;
    height: 45px;
    color: #fff;
    font-size: 13px;
    margin-top: 11px;
    position: absolute;
    bottom: 0;
    width: 100%;
    align-items: center;
    display: flex;
}

.announce-sec i {
    color: #9419ae;
    font-size: 21px;
    padding: 5px;
}

.horn-icon {
    width: 10%;
    display: flex;
    align-items: center;
}

.announce-sec marquee {
    width: 90%;
    color: #bbbbbb;
}

.horn-icon span {
    color: #bbbbbb;
    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: #1d1c1c;
    padding: 10px;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #343333;
    font-weight: 700;
}

.all-bg .container{
    position: relative;
    min-height: 400px;
}
/* GAME LOBBY */
.slots-casino-sec {
    /* background: #000 url(../images/index-bg.jpg)no-repeat top center;
    padding: 0;
    background-size: 100%;
    padding-top: 30px;
    min-height: 1460px;
    padding-bottom: 30px; */
}

.lobby-title {
    /* margin-bottom: 35px; */
}

.slots-sec {
    background: #000 url(../images/index-games-bg.jpg)no-repeat;
    padding: 0;
    overflow: hidden;
    background-size: cover;
    padding-top: 30px;
    /* background-position-y: 61px; */
}

.slot-right-box {
    display: flex;
    /* justify-content: space-between; */
}

.slots-wrapper-left {

    align-self: center;
}

.slots-wrapper-right {

    margin-left: 15px;
}

.slots-sec .slide-container {
    max-width: 1380px;
}

.slots-charac {
    position: relative;
    width: 51%;
}

.slots-content {
    width: 49%;
    padding-right: 10px;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.slot-content .container {
    max-width: 1200px;
}



.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);
}

.slots-logo {
    text-align: center;
}

.slots-logo img {
    margin: 0 auto;
    margin-bottom: 30px;
}

.slot-right-title {
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    font-size: 25px;
}

/* 
.slot-right::before {
    content: '';
    background: none;
    background: linear-gradient(to bottom, #d1ab6600 0%, #576494 50%, #d1ab6600 100%);
    width: 1px;
    height: 330px;
    position: absolute;
    left: -40px;
    z-index: 20;
    top: 55px;
} */

.rows1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0px;
}

.rows2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
    margin: auto;
}

.slots-box {
    position: relative;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.stt {
    margin-top: 110px;
}

.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: 15px;
    width: 79%;
    margin: 0 auto;
    text-align: center;
}

.slots-desc a {
    background: url(../images/btn-play.png)no-repeat;
    background-size: 100% 100%;
    padding: 15px;
    border-radius: 35px;
    color: #fff;
    display: block;
    width: 70%;
    margin: 40px auto;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.download-sec {
    background: #272b3a url(../images/index-mobile.jpg)no-repeat center top;
    padding-top: 150px;
}

.download-sec a {
    text-align: center;
    display: block;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.download-sec a img {
    margin-left: 40%;
}

/* CASINO */


.casino-sec {
    background: #000 url(../images/index-casino.jpg);
    padding: 0;
    min-height: 800px;
    position: relative;
}

.casino-sec .slick-prev,
.slick-next {
    top: 50%;
}

.slider {
    width: 50%;
    margin: 100px auto;
}

.slick-slide {
    margin: 10px 20px;
}

.slick-slide img {
    width: 95%;
    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 .casino-title {
    text-align: center;
}

.casino-sec .middle_img {}

.casino-sec .middle_img img {
    text-align: center;
    z-index: 200;
    position: absolute;
    left: 7px;
    right: 0;
    bottom: 52px;
    width: 438px;
    margin: 0 auto;
}

.casino-sec .center.slider {
    position: absolute;
    top: 105px;
    left: 15%;
    z-index: 10;
}

.casino-sec .slider {
    width: 70%;
}

.casino-sec .slick-slide {
    margin: 0;
}

.casino-sec .slick-prev::before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 14px;
    padding: 30px 5px;
    color: #fff;
    background: url(../images/slide-button.png)no-repeat;
    background-size: 100% 100%;

}

.casino-sec .slick-next::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 14px;
    padding: 30px 5px;
    color: #fff;
    background: url(../images/slide-button.png)no-repeat;
    background-size: 100% 100%;
}

.casino-sec .slick-dots {
    display: none;
}


/* FOOTER */


/*contact_layer*/

.contact_layer {
    background: #000000;
    padding-top: 25px;
    padding-bottom: 25px;
}

.contact_layer .col-3 a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    display: grid;
    margin-left: 10px;
}

.contact_layer .p-1 {
    color: #ffffff;
    padding: 0 !important;
}

.contact_layer .p-2 {
    color: #ffffff;
    padding: 0 !important;
}

.contact_layer .p-2:hover {
    color: #beb67f;
}

footer {
    background-image: linear-gradient(to bottom, #0a0a0a, black);
}

.footer-partner .container {}

.partner-list {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.partner-list li {
    padding-left: 10px;
    padding-right: 10px;
}

.partner-list li a img:hover {
    transition: all 0.4s;
    transform: scale(1.1);
    filter: none;
}

.partner-list img {
    width: 100%;
    filter: grayscale(1);
}

.footer-link-copyright {
    background: url(../images/footer-bar.jpg)repeat-x;
    background-size: 100% 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: #ffffff;
    border-right: 1px solid #ffffff;
    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: url(../images/sports/sp-wbet.jpg)no-repeat center top;
    max-height: 732px;
}

.mod-sport {
    max-height: 700px;
    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 {
    min-height: 203px;
}

.sport-plat {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5%;
}

.btn-play {
    position: absolute;
    display: block;
    padding: 10px 15px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 2px 3px 7px 1px #000000d1;
    background:url(../images/btn-play.png)no-repeat;
    background-size: 100% 100%;
    text-align: center;
    width: 180px;
    bottom: 10%;
    left: 10%;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-play:hover {
    text-decoration: none;
    color: #000;
}

.mod-sport.ibc-active {
    background-image: url(../images/sports/sp-ibc.jpg);
}

.mod-sport.cmd-active {
    background-image: url(../images/sports/sp-cmd.jpg);
}

.mod-sport.wbet-active {
    background-image: url(../images/sports/sp-wbet.jpg);
}

.lobby-platform.sport-plat .ibc-platform {
    background: url(../images/sports/icon-sp-ibc.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.sport-plat .cmd-platform {
    background: url(../images/sports/icon-sp-cmd.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
    /* margin-right: 15px; */
}

.lobby-platform.sport-plat .wbet-platform {
    background: url(../images/sports/icon-sp-wbet.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
    /* margin-right: 15px; */
}

.ibc-platform,
.cmd-platform,
.wbet-platform {
    transition: all .5s;
    cursor: pointer;
    width: 17%;
}

.ibc-platform:hover,
.cmd-platform:hover,
.wbet-platform:hover {
    transform: scale(1.1);
}


/* CASINO */

.casino-bg {
    background: url(../images/casino/casino-bg.jpg)no-repeat center top;
    max-height: 730px;
}

.mod-casino {
    max-height: 730px;
    transition: all .2s ease-in-out;
    background-position-x: 65%;
    background-repeat: no-repeat;
    /* background-size: cover; */
}

.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 {
    min-height: 300px;
}

.casino-plat {
    display: flex;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 228px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 61px;
}

.casino-plat-2 {
    padding-top: 0;
}

.mod-casino.ag-active {
    background-image: url(../images/casino/lc-ag.png);
}

.mod-casino.bg-active {
    background-image: url(../images/casino/lc-bg.png);
}

.mod-casino.dg-active {
    background-image: url(../images/casino/lc-dg.png);
}

.mod-casino.eg-active {
    background-image: url(../images/casino/lc-eg.png);
}

.mod-casino.pp-active {
    background-image: url(../images/casino/lc-pp.png);
}

.mod-casino.pt-active {
    background-image: url(../images/casino/lc-pt.png);
}

.mod-casino.sa-active {
    background-image: url(../images/casino/lc-sa.png);
}

.mod-casino.yeebet-active {
    background-image: url(../images/casino/lc-yb.png);
}

.lobby-platform.casino-plat .ag-platform {
    background: url(../images/casino/icon-lc-ag.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.casino-plat .bg-platform {
    background: url(../images/casino/icon-lc-bg.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.casino-plat .dg-platform {
    background: url(../images/casino/icon-lc-dg.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.casino-plat .eg-platform {
    background: url(../images/casino/icon-lc-eg.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.casino-plat .pp-platform {
    background: url(../images/casino/icon-lc-pp.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.casino-plat .pt-platform {
    background: url(../images/casino/icon-lc-pt.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.casino-plat .sa-platform {
    background: url(../images/casino/icon-lc-sa.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}

.lobby-platform.casino-plat .yeebet-platform {
    background: url(../images/casino/icon-lc-yb.png) no-repeat;
    background-size: 100%;
    display: flex;
    background-position-x: center;
    background-position-y: center;
    max-height: 200px;
}


.ag-platform,
.bg-platform,
.dg-platform,
.eg-platform,
.pp-platform,
.pt-platform,
.sa-platform,
.yeebet-platform {
    transition: all .5s;
    cursor: pointer;
    margin-right: 15px;
    width: 12%;
}

.ag-platform:hover,
.bg-platform:hover,
.dg-platform:hover,
.eg-platform:hover,
.pp-platform:hover,
.pt-platform:hover,
.sa-platform:hover,
.yeebet-platform:hover {
    transform: scale(1.1);
}

.btn-play-casino {
    position: absolute;
    background-size: 100% 100%;
    display: block;
    padding: 10px 15px;
    height: 45px;
    border-radius: 30px;
    color: #8e03a2;
    box-shadow: 2px 3px 7px 1px #000000d1;
    background-image: linear-gradient(to bottom, white, #ffffff7d);
    text-align: center;
    width: 180px;
    bottom: 361px;
    left: 40%;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-play-casino::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(to bottom, #00aeff, #de00ff);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.btn-play-casino:hover {
    text-decoration: none;
    color: #fff;
    background-image: linear-gradient(to bottom, #00aeff, #de00ff);
    box-shadow: 0px 0px 10px #fefefe;
}


/* LOTTO */

.lotto-bg {
    background: url(../images/lotto-liw.jpg)no-repeat center top;
    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-liw.jpg);
}

.mod-lotto.clicklotto88-active {
    background-image: url(../images/lotto-click.jpg);
}

.lobby-platform.lotto-plat .liw-platform {
    background: url(../images/icon-lotto-liw.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(../images/icon-lotto-click.png) 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/esports/esp-tfg.jpg)no-repeat center top;
    min-height: 734px;
}
.esport-bg .btn-play{
    bottom: 0;
}
.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/fish/fsh-bg.jpg)no-repeat center top;
    height: 700px;
    display: flex;
    align-items: center;
}

.fish-box {
    cursor: pointer;
}

.fish-box:hover img {
    transform: scale(1.1);
    transition: all .5s;
}


/* PROMOTION */

.promo-sec {
    background: url(../images/slots/brick-bg.jpg)repeat-y center;
}

.mix {
    display: none;
}



.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0, 132, 255, 1) 0%, rgba(122, 41, 134, 1) 100%);
    margin-bottom: 20px;
    border-radius: 20px;
}

.filter-menu-bar {
    display: flex;
}

.promo-collap {
    display: flex;
    background: url(../images/promo/promobox-bg.png)center;
    background-size: 100% 100%;
    padding: 1px;
}

.promo-img {
    width: 70%;
}

.promo-img img {
    width: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.promo-text {
    width: 30%;
    padding: 15px;
    position: relative;

}

.promo-text h5 {
    color: #fff;
    font-size: 25px;
}

.promo-text span {
    color: #de00ff;
}

.promo-text .btn-promo-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: url(../images/slots/btn-more.png)no-repeat center;
    background-size: 100% 100%;
    border: none;
    padding: 6px 20px;
    color: #fff;
}

.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: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    width: 14%;
    position: relative;
    font-weight: 700;
    height: 42px;
}

.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,
.pmbox:hover {
    background: url(../images/promo/promo-active.png)no-repeat center;
    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 #705531;
    background: linear-gradient(to bottom, #f99900 0%, #fc8301 100%);
    border-radius: 5px;
    color: #fff;
}

.promo-content {
    padding: 15px;
}

.promo-bx {
    padding: 15px 0px;
}

.text-yellow {
    color: #f9bb22;
}

.text_promotions {
    color: #fff;
}

.text_promotions ol {
    padding: 0;
    padding-left: 10px;
}

.promo-content .card-body {
    color: #fff;
    padding: 20px;
    border: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(to bottom, rgba(122, 41, 134, 1) 0%, rgba(0, 132, 255, 1) 100%);
    background: #000;
}

.promo-content .card-body h4 {
    font-size: 20px;
    color: #de00ff;
}

.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;
    padding-bottom: 40px;
}

.slot-nav .nav-tabs {
    border: none;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.slot-nav .nav-tabs .nav-link {
    height: 60px;
    color: #ffffff;
    background: url(../images/slots/nav-link-bg.png)no-repeat;
    background-size: 100% 100%;
    text-align: center;
    border: none;
    padding: 0;
}

.slot-nav .nav-tabs .nav-link img {
    opacity: 0.5;
}

.slot-nav .nav-tabs .nav-item.show .nav-link,
.slot-nav .nav-tabs .nav-link.active {
    background: url(../images/slots/nav-link-bg-h.png)no-repeat;
    background-size: 100% 100%;
    color: #fff;
    border: none;
    border-radius: 0;
}

.slot-nav .nav-tabs .nav-item.show .nav-link img,
.slot-nav .nav-tabs .nav-link.active img {
    opacity: 1;
}

.slot-nav .nav-tabs .nav-link:focus,
.slot-nav .nav-tabs .nav-link:hover {
    background: url(../images/slots/nav-link-bg-h.png)no-repeat;
    background-size: 100% 100%;
    color: #fff;
    border-radius: 0;
    border: none;
}

.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: 100%;
    text-align: center;
}

.slot-content .nav-tabs {
    background: #000000;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    color: #fff;
}

.slot-content .nav-tabs .nav-item.show .nav-link,
.slot-content .nav-tabs .nav-link.active {
    background: #000;
    color: #f7d454;
    border: none;
}

.slot-content .nav-link {
    padding: 5px 15px;
    border-radius: 0;
    border: none;
    color: #606060;
    position: relative;
}

.slot-content .nav-item .nav-link::before {
    content: "";
    width: 1px;
    background: #fff;
    height: 15px;
    position: absolute;
    left: 0;
    top: 8px;
}

.slot-content .nav-item:first-child .nav-link:before {
    display: none;
}

.slot-content .nav-tabs .nav-link:focus,
.slot-content .nav-tabs .nav-link:hover {
    border: none;
    background: #000;
    color: #f7d454;
}

.slot-bg {
    background: #000 url(../images/slots/brick-bg.jpg)repeat-y center top;
}

.slot-box {

    max-width: 1200px;
    margin: 0 auto;
}

.slot-content {
    /* padding-bottom: 151px; */
}

.jackpot-pool {
    margin-top: 10px;
    margin-bottom: 10px;
}

.jac-kpot {
    height: 218px;
    padding: 10px;
    display: flex;
    align-items: center;
    background: url(../images/slots/jackpot-bg.png)no-repeat center;
}

.jac-kpot a:hover img {
    opacity: .8;
}

.jac-box {
    margin-left: 39%;
}

.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: 80px;
    width: 51px;
    line-height: 65px;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    background: url(../images/slots/num-item-bg.png)no-repeat;
    background-size: contain;
    /* border-right: 4px solid #14192d; */
}

.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;
}

.btn-playmini {
    background: url(../images/btn-play.png)repeat-x;
    background-size: 100% 100%;
    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: #000;
}

#more {
    display: none;
    width: max-content;
}

.btn-more {
    background: url(../images/slots/btn-more.png)no-repeat center;
    background-size: 100% 100%;
    height: 37px;
    color: #fff;
    width: 115px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-catergory {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    align-items: center;
}

.slot-catergory-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    align-items: center;
}

.game-item .game-info {
    padding: 5px;
}

.game-item .game-info h5 {
    color: #fff;
    text-align: center;
    margin: 0px auto;
    margin-top: 5px;
    font-size: 12px;
}

.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 #5f6c9e;
    background: #151515;
    margin: 20px auto;
}

.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: #9419ae;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #9419ae;
}

.reg-body .nav-tabs .nav-link:focus,
.reg-body .nav-tabs .nav-link:hover {
    background: none;
    color: #9419ae;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #9419ae;
}

.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: #0084ff;
    border-radius: 20px;
    width: 30%;
    margin: 0 auto;
    color: #fff;
    font-size: 13px;
    padding: 10px;
}

.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: #0a0a0a;
    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: #de00ff;
}

.info-nav .nav-tabs .nav-item.show .nav-link .info-sub-title,
.info-nav .nav-tabs .nav-link.active .info-sub-title {
    color: #fff;
}

.info-nav .info-main-title {
    font-size: 15px;
    color: #777777;
    margin-bottom: 10px;
    margin-top: 15px;
}

.info-nav .info-sub-title {
    font-size: 12px;
    color: #777777;
}

.info-nav .nav-tabs .nav-item.show .nav-link,
.info-nav .nav-tabs .nav-link.active {
    background: #151515;
    border: none;
    color: #ffffff;
}

.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: #de00ff;
}

.info-nav .nav-tabs .nav-link:focus .info-sub-title,
.info-nav .nav-tabs .nav-link:hover .info-sub-title {
    border: none;
    color: #ffffff;
}

.info-content {
    background-image: url(../images/slots/brick-bg.jpg);
    background-repeat: repeat;
}

.contact-tab {
    background: #000;
    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, #0084ff 0%, #7a2986 100%);
    border-radius: 10px;
    color: #fff;
    text-align: center;
    padding: 5px;
    display: block;
    margin: 7px;
}

.contact-info-details {
    color: #de00ff;
    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 transparent;
    background: #000000;
    padding: 40px;
    border-image: url(../images/border.jpg) 1 round;
}

.info-wrapper h4 {
    color: #0084ff;
    border-bottom: 1px solid #570f5c;
    padding-bottom: 15px;
    font-weight: 700;
}

.info-wrapper p {
    color: #fff;
}

button.btn-tnc {
    background: #0084ff;
    border: 1px solid #0084ff;
    width: 100%;
    text-align: left;
    font-size: 15px;
    padding: 7px 15px;
    color: #000;
    font-weight: 600;
    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: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-size: 100% 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #0179e8;
    align-items: center;
    border-radius: 0;
    background: none;
    justify-content: center;
    display: flex;
    font-weight: 700;
}

.downloadTab .nav-pills .nav-link.active,
.downloadTab .nav-pills .nav-link:hover {
    background: url(../images/navbar-bg.jpg)repeat-x;
    color: #ffffff;
}

.downloadbody {
    text-align: center;
    margin-bottom: 35px;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 150px;
}

.ndl-btn {
    background: url(../images/navbar-bg.jpg)repeat-x;
    background-size: 100% 100%;
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 55%;
    border: none;
}

.ndl-btn:hover,
.ndl-btn:focus {
    color: #969696;
}

.adl-btn {
    background: url(../images/navbar-bg.jpg)repeat-x;
    background-size: 100% 100%;
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 55%;
    border: none;
}

.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 #de0084ff;
    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 #de0084ff;
    color: #ffffff;
}

.dl .username_custom {
    color: #d2b16e;
}

.downloadboxContent {
    padding: 15px;
    border: 1px solid #0179e8;
    background: rgba(129, 157, 187, 0.15);
}

.downloadbox img {
    max-width: 150px;
}

.dropdown-item {
    padding: 5px;
}

.input-voucher {
    margin-right: 10px;
}

.download-title {
    color: #ffd800;
}

.downloadbody h4 {
    color: #ffd800;
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
}

.mobile-sec .container {
    max-width: 1000px;
}


/*downloadEND*/


/* AF LOGIN */
.user-af {}

.inbox-icon {
    color: #00aeff;
    padding-right: 5px;
}

.member-text {
    color: #fff;
    padding-right: 5px;
}

.member-name {
    color: #00aeff;
}

.balance-af {
    padding-left: 10px;
    padding-right: 10px;
}

button.deposit-btn {
    border: none;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px;
    width: 20%;
    transition: 0.3s;
    background: #de00ff;
    border-radius: 20px;
}

button.deposit-btn:focus {
    outline: none;
}

button.deposit-btn:hover,
    {
    filter: drop-shadow(0 0 3px rgb(255, 255, 255, 0.5));
    transform: scale(0.97);
    transition: 0.3s;
}

button.logout-btn {
    border: none;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px;
    width: 20%;
    transition: 0.3s;
    background: #0084ff;
    border-radius: 20px;
}

button.logout-btn:focus {
    outline: none;
}

button.logout-btn:hover,
    {
    filter: drop-shadow(0 0 3px rgb(255, 255, 255, 0.5));
    transform: scale(0.97);
    transition: 0.3s;
}

.btn-balance {
    border: none;
    background: none;
    color: #de00ff;
    padding: 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}

.btn-balance:focus {
    border: none;
    outline: none;
}

.dropdown-menu-balance {
    background: #000;
    border: 2px solid #de00ff;
    box-shadow: 0px 0px 9px 4px #de00ff;
    width: 250px;
    padding: 0;
    margin-top: 10px;
}

.dropdown-menu-balance .clearfix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: #ffd65b;
    padding: 5px;
    font-size: 12px;
}

.balance-wrap {
    padding: 10px;
}

.balance-til {
    display: flex;
    justify-content: space-between;
}

.balance-til i {
    margin-right: 10px;
}

.balance-til span:first-child {
    color: #fff;
}

.balance-til span:last-child {
    color: #de00ff;
}

.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: #000000 url(../images/slots/brick-bg.jpg)repeat-y;
    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: #e9df9e;
}

.wallet_bal {
    color: #e9df9e;
}

.sidepanel {
    margin: 0;
    padding: 0;
    width: 195px;
    float: left;
    border-bottom: none;
    background: #101528;
}

.sidepanel-title {
    color: #de00bd;
    border-bottom: 1px solid #de00bd;
    font-weight: 700;
    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;
    font-weight: 700;
}

.sidepanel ul li:hover a {
    background: url(../images/navbar-bg.jpg)repeat-x;
    color: #303547;
}

.sidepanel ul li.active a {
    background: url(../images/navbar-bg.jpg)repeat-x;
    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: 600px;
    background: #101528;
    color: #ffffff;
    padding: 15px;
}

.sidepanel_header {
    padding: 20px;
    color: #de00bd;
    border-bottom: 1px solid #de00bd;
    font-weight: 800;
    font-size: 19px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

.setting_text {
    color: #de01b9;
}

.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: #e9df9e;
}

.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: url(../images/navbar-bg.jpg)repeat-x;
    color: #ffffff;
    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: url(../images/navbar-bg.jpg)repeat-x;
    background-size: 100% 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: #de00bd;
    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 #0084ff;
    color: #0084ff;
    background: none;
    border-radius: 5px;
    margin-top: 10px;
}

.transfer_btn:hover {
    background: #0084ff;
    color: #fff;
}

.text-blue {
    color: #0084ff;
}

.withdrawal table {
    border-collapse: collapse;
    width: 100%;
    color: #000000;
}

.withdrawal table th {
    border: none;
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
    color: #ffffff;
    background: url(../images/navbar-bg.jpg)repeat-x;
    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;
    font-weight: 700;
}

.history_btn.active {
    border: none;
    border-radius: 4px;
    color: #ffffff;
    background: url(../images/navbar-bg.jpg)repeat-x;
    padding-left: 18px;
    padding-right: 18px;
    align-items: center;
}

.history_table table {
    width: 100%;
    color: #fff;
    text-align: center;
    border: 1px solid #de00bd;
}

.history_table table tr:first-child {
    background: url(../images/navbar-bg.jpg)repeat-x;
}

.history_table table tr td {
    padding: 15px 0;
    border: none;
    background: #0000002b;
    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: #de01b9 !important;
    cursor: pointer;
}


/*profile*/

.profile_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #858585;
    grid-column-gap: 10px;
}

.profile_main_title {
    color: #dd01b9;
}

.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: #e9df9e;
}

.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 {
    }

    .middle_img {
        left: 544px !important;
        width: 439px !important;
        top: 98px;
    }

    .casino-sec {
        background-position: center;
    }

    .casino-sec .slider {
        width: 80%;
        left: 11% !important;
    }
}




/* LUCKYDRAW */
.luckydraw-sec {
    background: url(../images/luckydraw/brick-bg.jpg)repeat-y center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.prize-col {
    background: url(../images/luckydraw/prize-bg.png)center no-repeat;
    background-size: 100% 100%;
    padding: 2px;
}

.prize-img img {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.prize-des {
    padding: 12px;
}

.product-name {
    color: #fff;
    font-size: 15px;
    height: 40px;
}

.prize-point {
    color: #00aeff;
    background: url(../images/luckydraw/prize-point.png)center no-repeat;
    background-size: 100% 100%;
    padding: 3px 10px;
    margin-top: 10px;
}

.prize-point span {
    margin-right: 5px;
}

.prize-point span i {
    margin-left: 5px;
}

.stock-sold {
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.stock-sold meter {
    width: 65%;
    height: 25px;
}

.stock-sold meter::-webkit-meter-bar {
    background: #222222;
    border: 1px solid #222222;
}

.stock-sold meter::-webkit-meter-optimum-value {
    background: #555555;
}

.stock-sold span {
    width: 35%;
    color: #555555;
    padding-left: 5px;
}

.time-end {
    color: #fff;
}

.time-counting {
    color: #00aeff;
}

.prize-cat {
    margin-top: 10px;
}

.diamond-count {
    text-align: end;
    color: #de00ff;
}

.prize-cat meter {
    width: 100%;
    height: 35px;
}

.prize-cat meter::-webkit-meter-bar {
    background: #000;
    padding: 5px;
    border: 1px solid #fff;
    box-shadow: 0px 0px 3px #fff;
}

.prize-cat meter::-webkit-meter-optimum-value {
    background: #de00ff;
}

.btn-redeem {
    text-align: end;
    color: #fff;
    background: url(../images/btn-play.png)center no-repeat;
    background-size: 100% 100%;
    padding: 3px 18px;
    max-height: 40px;
}
.btn-redeem:hover{
    color: #000;
}

/* REWARD */
.reward-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.reward-box {
    background: url(../images/luckydraw/ico-cat.png)no-repeat;
    background-size: 100% 100%;
    padding: 40px 15px;
    height: 200px;
    width: 200px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.reward-box img {
    max-width: 100px;
}

.reward-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.reward-des {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.reward-point {
    color: #00aeff;
}

.reward-point h3 {
    margin-bottom: 0;
}

.btn-redeemreward {
    background: url(../images/slots/btn-more.png)no-repeat center;
    background-size: 100% 100%;
    color: #fff;
    padding: 5px;
    display: block;
    height: 30px;
    text-transform: uppercase;
}

.reward-name {
    color: #fff;
    font-size: 15px;
    height: 20;
}
/* 13/9/2021 */
.modal-dialog.tnc{
    max-width: 900px;
    margin-top: 10%;
}
.modal-content.tnc{
    background: #000;
    box-shadow: 0px 0 11px 2px #0084ff;
    border-radius: 10px;
}
.tnc .modal-body{
 padding: 5px;
 position: relative;
}
.tnc .row{
    margin: 0;
}
.tnc .modal-body img{
    border-radius: 7px;
    width:100%;
}
.tnc .product-name{
    display: flex;
    align-items: center;
}
.tnc .stock-sold meter{
    width: 55%;
}
.tnc .stock-sold span{
    color: #de00ff;
    width: 45%;
}
.tnc meter {
    height: 35px;
}

.tnc meter::-webkit-meter-bar {
    background: #000;
    padding: 5px;
    border: 1px solid #fff;
    box-shadow: 0px 0px 3px #fff;
}

.tnc meter::-webkit-meter-optimum-value {
    background: #de00ff;
}
button.wxclose {
    background: #000;
    box-shadow: 0px 0px 10px 3px #de00ff;
    border-radius: 50%;
    color: #de00ff;
    border: none;
    padding: 5px;
    width: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 40px;
    line-height: 1;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: -15px;
    top: -15px;
    font-weight: 700;
}
.product-des{
    padding: 10px;
}
.tnc-title{
    color: #de00ff;
    padding-top: 10px;
    margin-bottom: 20px;
}
.product-spec{
    color: #999999;
}
.product-spec ul{
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}
.product-add-more{
    color: #fff;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: end;
    margin-top: 90px;
}
.add-more{
    width: 25%;
    margin-right: 10px;
}
.product-add-more input{
    background: #000;
    width: 33%;
    height: 28px;
    text-align: center;
    color: #fff;
}
.add-more-button{
    /* border: 1px solid #7a2986; */
    background: url(../images/btn-play.png)center no-repeat;
    width: 31%;
    background-size: 100% 100%;
    align-items: center;
    height: 31px;
    padding: 0 8px;
    margin-right: 10px;
}
.add-more-button button{
    border: none;
    background: none;
    color: #fff;
 
}
.product-add-more a{
    width: 33%;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}
.border-none{
    border: none;
}
.product-add-more .btn-redeemreward{
    width: 50%!important;
}