*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    background: #000;
}

a {
    cursor: pointer;
    text-decoration: none;
}

/* Header */
.header-menu {
    position: fixed;
    background: linear-gradient(to bottom, black, 40%, transparent);
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 10;
}

.header-menu .col-5 {
    width: 40%;
}

.menu-link {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-link a {
    color: #fff;
    padding: 0px 8px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.menu-link a:hover {
    color: #0bbab5;
    border-bottom: 2px solid #0bbab5;
}

.menu-link a.active {
    color: #0bbab5;
    border-bottom: 2px solid #0bbab5;
}

.logo {
    display: block;
    text-align: center;
}

.logo img {
    max-width: 220px;
}

.member-col {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-evenly;
    /* margin-left: 20px; */
    align-content: center;
    margin-bottom: 0;
    margin-top: 12px;
}

.member-col .form-control {
    border: 1px solid #fff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.733)000;
    color: #fff;
    font-size: 12px;
    padding: 5px;
}
.member-col .form-control::placeholder{
    color: #fff;
}

.member-form {
    width: 50%;
    display: flex;
    align-content: center;
}

.member-login {
    width: 33%;
}

.forgotpassword-text {
    color: #fff;
    font-size: 12px;
}

.button-login {
    background: #0bbab5;
    box-shadow: 0px 4px #119c9e;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 0px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    display: block;
}

.button-signup {
    background: #dd0e0e;
    box-shadow: 0px 5px #af1118;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    padding: 3px;
    width: 100%;
    text-decoration: none;
    border-radius: 5px;
    display: block;
    text-align: center;
}

.member-login [role=button]:hover {
    color: #000;
}

.languages-selection {
    width: 3%;
}

.languages-selection button {
    background: none;
    border: none;
    padding: 0;
}

.languages-selection img {
    max-width: 30px;
}

.languages-selection .dropdown-toggle::after {
    display: none;
}

.languages-selection .dropdown-menu {
    background: #000;
    min-width: 45px;
    transform: translate(-10px, 38px)!important;
    border: 1px solid #333333;
}
.languages-selection .dropdown-item:focus, .languages-selection .dropdown-item:hover{
background: none;
}

/* BODY */
.body-info {
    padding-top: 85px;
}

.bg-general {
    background: #000 url(../images/common/background/bg-download.jpg)no-repeat top center;
    background-size: cover;
    padding-bottom: 40px;
}

.nav-arrow {
    justify-content: center;
    align-items: center;
    display: grid;
    position: absolute;
    width: 100%;
    bottom: -20px;
}

.scroll-arrow {
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    animation: arrow-wave 1s infinite;
    animation-direction: alternate;
}

.scroll-arrow:nth-child(1) {
    animation-delay: 0.1s;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.2s;
}


@keyframes arrow-wave {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.lobby-title {
    display: flex;
    border-left: 1px solid #0bbab5;
    color: #fff;
    align-items: center;
    height: 40px;
    padding: 10px;
}

.lobby-title h5 {
    margin: 0;
}

.swipe-big-box {
    position: relative;
}

.swipe-big-box .swiper-slide {
    -webkit-transition: 250ms all;
    transition: 250ms all;
    border-radius: 10px;
}

.swipe-big-box .swiper-slide:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 1;
    border: 1px solid #555;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
}



.swiper-container,
.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;

}

.swiper-wrapper {
    padding: 20px 0;
}

.swiper-slide img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 100%;
    border-radius: 10px;
}

.swiper-button-next-unique,
.swiper-button-next-unique-2,
.swiper-button-next-unique-3,
.swiper-button-next-unique-4,
.swiper-button-next-unique-5,
.swiper-button-next-unique-6 {
    margin-top: 0px;
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #5e5e5e;
    justify-content: center;
}

.swiper-button-prev-unique,
.swiper-button-prev-unique-2,
.swiper-button-prev-unique-3,
.swiper-button-prev-unique-4,
.swiper-button-prev-unique-5,
.swiper-button-prev-unique-6 {
    position: absolute;
    top: 50%;
    left: -40px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    margin-top: 0px;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #5e5e5e;
    justify-content: center;
}


.swipe-big-box [role=button]:hover {
    background: #0bbab5;
}

.btn-more {
    border: 1px solid #fff;
    border-radius: 3px;
    color: #bbbba9;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
}

.btn-more:hover {
    background: #555;
    color: #000;
    border: 1px solid #555;
}

.slot-product {
    width: 100%;

}

.slot-product .image {
    display: block;
    width: 100%;
    height: auto;
}

.slot-product .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 10px;
    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-1 {
    background: #dd0e0e;
    box-shadow: 0px 5px #af1118;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-playmini-1:hover {
    color: #000;
}

.btn-playmini-2 {
    background: #0bbab5;
    box-shadow: 0px 4px #119c9e;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-playmini-2:hover {
    color: #000;
}

/* FOOTER */
.footer-1 {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #78806f;
    border-bottom: 1px solid #78806f;
}

.footer-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #78806f;
}

.footer-3 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.directory-menu {
    display: flex;
    list-style: none;
    margin: 0;
    color: #696969;
}

.directory-menu li {
    padding-right: 10px;
}

.directory-menu li a {
    color: #696969;
    text-decoration: none;
}

.directory-menu li a:hover {
    color: #fff;
}

.copyright-text {
    text-align: right;
    display: block;
    color: #696969;
}

.license-title {
    color: #696969;
}

.version-text {
    color: #696969;
}

/*download*/

.downloadTab {
    padding: 40px 0;
}

.downloadTab .nav-pills .nav-link {
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-size: 100% 100%;
    height: 50px;
    color: #ffffff;
    align-items: center;
    border-radius: 0;
    background: none;
    padding-left: 35px;
    display: flex;
    border-left: 1px solid transparent;
    font-weight: 700;
}

.downloadTab .nav-pills .nav-link.active,
.downloadTab .nav-pills .nav-link:hover {
    background: #1d1d1d;
    color: #ffffff;
    border-left: 1px solid #0bbab5;
}

.downloadbody {
    text-align: center;
    margin-bottom: 35px;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 150px;
}

.ndl-btn {
    background: #0bbab5;
    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: #0bbab5;
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 20px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 55%;
    border: none;
}

.adl-btn i,
.ndl-btn i {
    margin-right: 10px;
}

.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 #666666;
    background: #666666;
    text-align: center;
    padding: 8px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
}

.dl table td {
    text-align: left;
    padding: 8px;
    background: none;
    border: 1px solid #666666;
    color: #ffffff;
}

.dl .username_custom {
    color: #0bbab5;
}

.download-nav {
    border: 1px solid #333333;
    padding: 15px;
    border-radius: 5px;
    min-height: 500px;
}

.img-download {
    width: 30%;
    margin-right: 20px;
    text-align: center;
}

.download-nav span:last-child {
    width: 65%;
}

.downloadboxContent {
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 5px;
}

.downloadbox img {
    max-width: 150px;
}

.dropdown-item {
    padding: 5px;
}

.input-voucher {
    margin-right: 10px;
}

.download-title {
    color: #ffd800;
}

.downloadbody h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: initial;
}

.mobile-sec .container {
    max-width: 1000px;
}


/* LOTTERY */
.tabcontent {
    display: none;
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lobby-sec {
    padding-bottom: 30px;
}

.lot-bg {
    background: #000 url(../images/common/background/bg-lottery.jpg)no-repeat top center;
    padding-bottom: 40px;
}

.casino-bg {
    background: #000 url(../images/common/background/bg-livecasino.jpg)no-repeat top center;
    padding-bottom: 40px;
}

.sport-bg {
    background: #000 url(../images/common/background/bg-sportsbook.jpg)no-repeat top center;
    padding-bottom: 40px;
}

.slot-bg {
    background: #000 url(../images/common/background/bg-slots.jpg)no-repeat top center;
    padding-bottom: 40px;
}

.poker-bg {
    background: #000 url(../images/common/background/bg-poker.jpg)no-repeat top center;
    padding-bottom: 40px;
}

.promo-bg {
    background: #000 url(../images/common/background/bg-promotion.jpg)no-repeat top center;
    padding-bottom: 40px;
}

.info-bg {
    padding-bottom: 40px;
    background: #000 url(../images/common/background/bg-general.jpg)no-repeat top center;
}

.lobby-sec .swipe-big-box {
    margin-bottom: 20px;
}

.lobby-sec .swipe-big-box .swiper-slide {
    position: relative;
    cursor: pointer;
}

.lobby-sec .swipe-big-box .swiper-slide:hover {
    border: 1px solid #fff;
}

.lobby-sec .swipe-big-box .swiper-slide:hover::before {
    content: "";
    color: #ffffff;
    position: absolute;
    border-top: 0.7em solid;
    border-right: 0.7em solid transparent;
    border-bottom: 0;
    border-left: 0.7em solid transparent;
    width: 8px;
    margin: auto;
    bottom: -12px;
    left: 0;
    right: 0;
    z-index: inherit;
}

.lobby-sec .tablinks.active {
    border: 1px solid #fff;
}

.lobby-sec .tablinks.active::before {
    content: "";
    color: #ffffff;
    position: absolute;
    border-top: 0.7em solid;
    border-right: 0.7em solid transparent;
    border-bottom: 0;
    border-left: 0.7em solid transparent;
    width: 8px;
    margin: auto;
    bottom: -12px;
    left: 0;
    right: 0;
    z-index: inherit;
}

.lobby-box {
    padding: 40px 25px;
    min-height: 400px;
    display: flex;
}

.lobby-logo {
    padding-bottom: 20px;
}

.lobby-text {
    color: #fff;
    padding-bottom: 20px;
}

.btn-play {
    background: #0bbab5;
    box-shadow: 0px 4px #119c9e;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 15px;
    max-width: 150px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    display: block;
}

.lot-93 {
    background: url(../images/common/lottery/lot-93-bg.jpg)no-repeat top center;
}

.lot-bb {
    background: url(../images/common/lottery/lot-bb-bg.jpg)no-repeat top center;
}

.lot-isin {
    background: url(../images/common/lottery/lot-isin-bg.jpg)no-repeat top center;
}

.lot-liw {
    background: url(../images/common/lottery/lot-liw-bg.jpg)no-repeat top center;
}

.lot-pp {
    background: url(../images/common/lottery/lot-pp-bg.jpg)no-repeat top center;
}

.lot-qq {
    background: url(../images/common/lottery/lot-qq-bg.jpg)no-repeat top center;
}

.lot-tc {
    background: url(../images/common/lottery/lot-tc-bg.jpg)no-repeat top center;
}

/* SLOT */
.slot-nav-tabs {
    background: #3d3f41;
    margin: 0;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    padding: 0;
}

.search-box button {
    color: #737474;
}

.search-box input {
    background: none;
    border: none;
    color: #737474;
}

.search-box input:focus {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.slot-nav-tabs .nav-tabs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: none;
    padding: 0;
}

.slot-nav-tabs .nav-link {
    width: 100%;
    color: #737474;
    border: none;
    border-radius: 0;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-size: 13px;
}

.slot-nav-tabs .nav-link:hover,
.slot-nav-tabs .nav-link:focus {
    border: none;
    background: #0bbab5;
    border-radius: 0;
    outline: none;
    color: #fff;
}

.slot-nav-tabs .nav-tabs .nav-item.show .nav-link,
.slot-nav-tabs .nav-tabs .nav-link.active {
    background: #0bbab5;
    border: none;
    border-radius: 0;
    color: #fff;
}

.slot-product-catergory {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
}

/* CASINO */
.lc-bb {
    background: url(../images/common/casino/lc-bb-bg.jpg)no-repeat top center;
}

.lc-dg {
    background: url(../images/common/casino/lc-dg-bg.jpg)no-repeat top center;
}

.lc-eb {
    background: url(../images/common/casino/lc-eb-bg.jpg)no-repeat top center;
}

.lc-eg {
    background: url(../images/common/casino/lc-eg-bg.jpg)no-repeat top center;
}

.lc-gp {
    background: url(../images/common/casino/lc-gp-bg.jpg)no-repeat top center;
}

.lc-il {
    background: url(../images/common/casino/lc-il-bg.jpg)no-repeat top center;
}

.lc-mg {
    background: url(../images/common/casino/lc-mg-bg.jpg)no-repeat top center;
}

.lc-sa {
    background: url(../images/common/casino/lc-sa-bg.jpg)no-repeat top center;
}

.lc-sb {
    background: url(../images/common/casino/lc-sb-bg.jpg)no-repeat top center;
}

.lc-vg {
    background: url(../images/common/casino/lc-vg-bg.jpg)no-repeat top center;
}

.lc-wm {
    background: url(../images/common/casino/lc-wm-bg.jpg)no-repeat top center;
}

/* SPORTSBOOK */
.sp-ibc {
    background: url(../images/common/sport/sp-ibc-bg.jpg)no-repeat top center;
}

.sp-sbo {
    background: url(../images/common/sport/sp-sbo-bg.jpg)no-repeat top center;
}

.sp-wbet {
    background: url(../images/common/sport/sp-wbet-bg.jpg)no-repeat top center;
}

.pkr-idn {
    background: url(../images/common/poker/pkr-idn-bg.jpg)no-repeat top center;
}

/* PROMOTION */

.mix {
    display: none;
}



.filter-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 5px;
}

.filter-menu-bar {
    display: flex;
}

.promo-collap {
    background: url(../images/promo/promobox-bg.png)center;
    background-size: 100% 100%;
    padding: 1px;
}

.promo-img {
    width: 100%;
    border: 1px solid #303030;
    border-radius: 5px;
}

.promo-img img {
    width: 100%;
    border-radius: 5px;
}

.promo-text {
    width: 100%;
    /* padding-top: 10px; */
    position: relative;
}

.promo-text h5 {
    color: #fff;
    font-size: 25px;
}

.promo-text span {
    color: #ffffff;
    margin: 10px 0px;
    display: block;
    font-weight: 500;
}

.promo-text .btn-promo-more {
    /* right: 10px; */
    background: #0bbab5;
    border: none;
    padding: 6px 20px;
    color: #000;
    display: block;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
}

.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: 1px solid #303030;
    border-radius: 0;
    margin-left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 7px 17px;
}

.pmbox:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pmbox:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.pmbox.active:first-child,
.pmbox:hover:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pmbox.active:last-child,
.pmbox:hover:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}



.pmbox.active,
.pmbox:hover {
    background: #0bbab5;
    border: none;
    border-radius: 0;
    color: #fff;
    border: 1px solid transparent;
}

.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; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.promo-bx {
    /* padding: 15px 0px; */
    width: 100%;
}

.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;
}

/* INFO CENTER */
.info-nav {
    border: 1px solid #333333;
    padding: 30px;
    border-radius: 5px;
    min-height: 640px;
}

.info-nav ul {
    list-style: none;
    padding-left: 0;
}

.info-nav li a {
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-size: 100% 100%;
    height: 50px;
    color: #ffffff;
    align-items: center;
    border-radius: 0;
    text-transform: uppercase;
    background: none;
    padding-left: 35px;
    display: flex;
    border-left: 1px solid transparent;
}

.info-nav li a i {
    color: #0bbab5;
    font-size: 25px;
    margin-right: 20px;
}

.info-nav li a.active,
.info-nav li a:hover {
    background: #1d1d1d;
    color: #ffffff;
    border-left: 1px solid #0bbab5;
}

.info-center {
    border: 1px solid #333333;
    padding: 30px;
    border-radius: 5px;
    color: #fff;
}

.info-title h5 {
    position: relative;
    background: #000;
    text-transform: uppercase;
}

.info-title h5:after {
    content: "";
    width: 75%;
    position: absolute;
    height: 2px;
    top: 50%;
    right: 10px;
    background: #333333;
    z-index: 1;
}

/* CONTACT */
.contact-box {
    border: 1px solid #333333;
    border-radius: 5px;
    text-align: center;
    position: relative;
    height: 80px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 15px;
}

.contact-icon {
    position: absolute;
    width: 100%;
    top: -29px;
}

.contact-icon img {
    max-width: 60px;
}

.contact-box a {
    color: #fff;
}

.contact-box a i {
    margin-left: 10px;
}

.info-center .accordion-button {
    background: #d7d7d740;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #333333;
}

.info-center .accordion-item {
    background: none;
    margin-bottom: 10px;
}

.info-center .accordion-button::after {
    background-image: url(../images/common/caret-down-solid.svg);
    filter: invert(1);
    width: 21px;
    height: 15px;
    background-position-y: -10px;
}

/* AF LOGIN */
.af-sec{
    background: #303030 url(../images/common/background/bg-general.jpg)no-repeat top center;
    padding-bottom: 30px;
}
.af-login-icon {
    display: flex;
    list-style: none;
    justify-content: end;
    width: 100%;
}

.af-login-icon li {
    padding-left: 5px;
    width: 13%;
    text-align: center;
    padding-right: 5px;
}

.af-login-icon li a {
    color: #fff;
}

.af-nav {
    border: 1px solid #333333;
    padding: 30px;
    border-radius: 5px;
    min-height: 640px;
}

.af-nav ul {
    list-style: none;
    padding-left: 0;
}
.af-nav li{
    margin-bottom: 10px;
}

.af-nav li a {
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-size: 100% 100%;
    height: 50px;
    color: #ffffff;
    width: 100%;
    align-items: center;
    border-radius: 0;
    text-transform: uppercase;
    background: none;
    font-size: 14px;
    padding-left: 15px;
    display: flex;
    border-left: 1px solid transparent;
}

.af-nav li a img {
    max-width: 40px;
    margin-right: 20px;
}

.af-nav li a.active,
.af-nav li a:hover {
    background: #1d1d1d;
    color: #ffffff;
    border-left: 1px solid #0bbab5;
}

.af-center {
    border: 1px solid #333333;
    padding: 30px;
    border-radius: 5px;
    color: #fff;
}

.af-title h5 {
    position: relative;
    background: #000;
    text-transform: uppercase;
}

.af-title h5:after {
    content: "";
    width: 70%;
    position: absolute;
    height: 2px;
    top: 50%;
    right: 10px;
    background: #333333;
    z-index: 1;
}

.my-profile {
    display: flex;
    align-items: center;
    color: #fff;
    padding-left: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

.member-badge {
    max-width: 35px;
}

.mp-name {
    margin-left: 10px;
}

.mp-name span {
    display: block;
    font-size: 12px;
}

.my-balance {
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
}

.m-balance span {
    display: block;
    font-size: 12px;
}

.balance-digit {
    font-size: 32px;
    font-weight: 500;
}

.ori_img {
    display: none;
}

.af-content .nav-pills .nav-link.active .ori_img {
    display: block;
}

.af-content .nav-pills .nav-link.active .grey_img {
    display: none;
}

.af-content .nav-pills .nav-link {
    padding: 0;
    background: none;
    margin-right: 15px;
}

.af-content .tab-content {
    margin-top: 20px;
}

.af-content .nav-pills .nav-link img {
    border-radius: 5px;
    border: 1px solid #333333;
    max-width: 160px;
}

.af-content .setting_text {
    text-transform: uppercase;

}

.af-content .form-group {
    display: flex;
}

.bank-input input {
    background: #4c4c4c;
    border: 1px solid #666;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.bank-input button {
    background: rgba(0, 0, 0, .25);
    border: 1px solid #333333;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    padding: 0px 13px;
}

.currency {
    color: #fff;
    background-color: #4c4c4c;
    border: 1px solid #666;
    border-right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.amount-input input {
    background: rgba(0, 0, 0, .25);
    border: 1px solid #333333;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
}

.deposit-amount {
    display: flex;
}

.deposit-amount a {
    border: 1px solid #6c757d;
    background: none;
    color: #fff;
    text-align: center;
    width: 25%;
    font-size: 18px;
    padding: 5px;
    font-weight: 600;
}

.deposit-amount a:hover {
    background: #0bbab5;
}

.deposit-amount a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.deposit-amount a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.button-submit {
    background: #dd0e0e;
    box-shadow: 0px 5px #af1118;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    padding: 7px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: block;
    text-align: center;
    border: none;
}

.important-notice {
    background-color: #191919;
    padding: 15px;
    border: 1px solid #323232;
}

.important-notice h5 {
    color: #858080;
    font-size: 1rem;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
}

.important-notice p,
.important-notice ol {
    color: #5a5a5a;
    margin-bottom: 0;
    letter-spacing: .05rem;
    font-size: .8rem;
}
.af-content select {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: rgba(0, 0, 0, .25);
    border: 1px solid #333333;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #fff;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.games-selection{
    text-align: center;
}
.games-button{
    text-align: center;
    font-size:12px;
    margin: 8px 0;
    border-radius: 11px;
    display: block;
    position: relative;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
}
.games-selection-wrap{
    padding: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid #333;
    border-bottom: none;
}
.games-selection-wrap img{
    max-height: 25px;
}
.games-button:hover .allin{
    background: #0bbab5;
}
.allin{
    background: #303030;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 13px;
    color: #fff;
}
.history-tab li{
width: 50%;
}
.history-tab.nav-tabs .nav-link{
    width: 100%;
    background: #383838;
    border: none;
    border-top: 2px solid transparent;
    border-radius: 0;
    color: #fff;
}
.history-tab.nav-tabs .nav-link.active, .history-tab.nav-tabs .nav-link:hover{
    border: none;
    border-top: 2px solid #0bbab5;
}
.history-content .table{
    border: none;
}
.history-content .table tr th{
    background: #383838;
    color: #fff;
}
.history-content .table tr td{
    border: none;
    text-align: center;
    color: #fff;
}
.history-content .page-link{
    background: #383838;
    border: 1px solid #333333;
    color: #fff;
}
.profile-form label{
    display: block;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.form-msg {
    color: #bdbdbd;
    font-size: 12px;
}
.profile-form .form-control:disabled, .form-control[readonly]{
    background: #4c4c4c!important;
    border: 1px solid #323232;
}
.profile-form .form-control{
    background: none;
    border: 1px solid #ced4da;
    color: #fff;
}
.table{
    border: none;
}
.table tr th{
    background: #383838;
    color: #fff;
}
.table tr td{
    border: none;
    text-align: center;
    color: #fff;
}
.form-control:disabled, .form-control[readonly]{
    background: #4c4c4c!important;
    border: 1px solid #323232;
}
.form-control{
    background: none;
    border: 1px solid #ced4da;
    color: #fff;
}
.bank-input label{
    text-transform: uppercase;
}
.border-sep{
    width: 100%;
    height: 1px;
    background:#ced4da;
    margin-top: 30px;
}
/*register*/
.title_text02 span:last-child{
    color: red;
}
.step-form .form-control{
    font-size: 13px;
}
.step-bg{
    width: 959px;
    background: white;
    margin: 40px 0px;
    padding: 40px 20px;
}
.step-nav{
    display: flex;
    padding: 0;
    /* width: 50%; */
    margin: 30px auto;
    list-style: none;
    justify-content: space-between;
    border-bottom: 0;
    margin-top: 0;
}
.step-nav li{
    position: relative;
}
.step-nav  a{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: #000000;
    color: white;
    border: 2px solid #383838;
    position: relative;
}
.step-nav .nav-item.show a, .step-nav a.active {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    background: #119c9e;
    color: white;
    position: relative;
}
.step-nav .nav-item.show a:last-child, .step-nav a.active:last-child{
    background: #6ac259;
}
.step-nav a:nth-child(1):before{
    content: "";
    width: 290px;
    height: 2px;
    background: #383838;
    position: absolute;
    top: 50%;
    left: 100%;
    z-index: 11;
}
.step-nav a:nth-child(2)::before{
    content: "";
    width: 290px;
    height: 2px;
    background: #383838;
    position: absolute;
    top: 50%;
    left: 101%;
    z-index: 11;
}
.step-form{
    margin: 0 auto;
}
.register_header {
    background: black;
    width: 100%;
    color: white;
    padding: 9px 0px 9px 15px;
    margin: 0 auto;
}
.sub-side-right .form-group .form-control {
    background-color: #ffffff;
    border: 1px solid #44474c;
    border-radius: 2px;
    color: #191919;
    height: 31px;
    padding: 0 10px;
}
.next-btn{
    color: #fff;
    background-color: #02189c;
    border-radius: 5px;
    border: none;
    width: 75px;
    padding: 10px;
}
.depo-btn{
    color: #fff;
    background-color: #02189c;
    border-radius: 5px;
    border: none;
    width: 150px;
    padding: 10px;
}
.vcode {
    position: absolute;
    right: 20px;
    top: 30px;
}

/* BLOG */
.blog-sec{
    padding-top: 60px;
    padding-bottom: 20px;
}
.blog-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #78806f;
    border-radius:5px;
}

.blog-title-box {
    border: 1px solid #78806f;
    padding: 5px;
    border-radius: 5px;
}

.blog-title-box i {
    font-size: 28px;
    color: #0bbab5;
    margin-left: 10px;
    margin-right: 10px;
}

.blog-boxer {
    display: grid;
    grid-template-columns: 40% 60%;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    max-width: 100%;
    height: auto;
    align-content: center;
    margin: 25px 0;
    grid-gap: 10px;
}
.blog-content-page{
    margin-bottom: 10px;
}

.blog-boxer img {
    width: 100%;
}

.blog-boxer h4 {
    color: #0bbab5;
    font-weight: 600;
    font-size: 26px;
}

.blog-time-title {
    color: #166138;
}

.blog-time-title p {
    color: #0bbab5;
}

.blog-time-title p i {
    margin-right: 10px;
    color: #0bbab5;
}

.blog-content {
    color: #fff;
    margin-bottom: 15px;
    max-height: 95px;
    overflow: auto;
}

.blog-boxer .moreinfo_btn {
    display: flex;
    align-items: center;
    width: 23%;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}
.blog-boxer .moreinfo_btn:hover{
    color: #000;
}

.blog-boxer_inner {
    display: grid;
    padding-bottom: 10px;
}

.blog-boxer .moreinfo_btn i {
    background: #fff;
    color: #28adec;
    border-radius: 50%;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    padding: 2px;
    padding-left: 5px;
}

.seperate-line {
    height: 2px;
    width: 80%;
    margin: 0 auto;
    background: #78806f;
    border-radius: 10px;
}

.moreinfo_btn {
    background: #0bbab5;
    box-shadow: 0px 4px #119c9e;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
/* MODAL */
.modal-dialog{
    max-width: 700px;
}
.modal-content{
    background: #000;
    color: #fff;
    border: 1px solid #78806f;
}
.modal-content .title_text02{
    text-transform: uppercase;
}
.modal-header{
    border: none;
    color:#0bbab5;
}
.btn-close{
    filter: invert(1);
}
.modal-body h4{
    color:#0bbab5;
}
/* VIP */

#vipcarousel .carousel-indicators {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 39%;
    margin: 20px auto;
    color: #fff;
    top: 0;
    height: 60px;
}

#vipcarousel .carousel-indicators [data-bs-target] {
    width: 100%;
    height: 60px;
    text-align: center;
    background: none;
    border: none;
    text-indent: inherit;
    color: #fff;
    opacity: 1;
    text-transform: uppercase;
}

#vipcarousel .carousel-indicators [data-bs-target].active {
    border-bottom: 2px solid #0bbab5;
}

#vipcarousel h4 {
    font-size: 40px;
    color: #fff;
}

#vipcarousel h4 span {
    color: #0bbab5;
    margin-left: 10px;
}

#vipcarousel .carousel-item {
    padding-top: 120px;
    min-height: 650px;
    padding-bottom: 50px;
    background-size: contain;
}

.vip-logo {
    max-width: 120px;
}

#vipcarousel .carousel-item:nth-child(1) {
    background: #000 url(../images/common/vip/vip1.jpg)no-repeat center top;
}

#vipcarousel .carousel-item:nth-child(2) {
    background: #000 url(../images/common/vip/vip2.jpg)no-repeat center top;
}

#vipcarousel .carousel-item:nth-child(3) {
    background: #000 url(../images/common/vip/vip3.jpg)no-repeat center top;
}

#vipcarousel .carousel-item:nth-child(4) {
    background: #000 url(../images/common/vip/vip4.jpg)no-repeat center top;
}

.text-right {
    text-align: right;
}

.vip-content {
    color: #fff;
    font-size: 14px;
    margin-top: 55px;
}

.vip-content h5 {
    font-size: 13px;
}

.vip-level {
    list-style: none;
    padding-left: 0;
    display: flex;
    text-align: center;
    justify-content: end;
    margin-top: 31px;
}

.vip-level li {
    padding-left: 15px;
    padding-right: 15px;
}

.vip-level h5 {
    font-size: 13px;
    margin: 0;
}

.vip-level span {
    font-size: 11px;
}

.vip-level img {
    max-width: 80px;
    margin: 8px auto;
}

.vip-benefits-table {
    width: 100%;
}

.vip-benefits-table tr:nth-child(even) {
    background-color: #0bbab59c;
}

.vip-benefits-table tr td:first-child {
    text-align: left;
}

.vip-benefits-table img {
    max-width: 100px;
}

.vip-benefits-table p {
    margin: 0;
}

.vip-benefits-table tr td {
    text-align: center;
    font-size: .9rem;
    line-height: 2;
    padding: 5px 10px;
}

.vip-tabs-item .accordion-item {
    margin-bottom: 10px;
    background: none;
    border-radius: 5px;
}

.vip-tabs-item .accordion-button::after {
    filter: invert(1);
}

.vip-tabs-item .accordion-button {
    background-color: #0bbab59c;
    color: #fff;
    border-radius: 5px;
}

.vip-tabs-item .accordion-body {
    color: #fff;
}


/* AFF */

#affcarousel .carousel-indicators {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 39%;
    margin: 20px auto;
    color: #fff;
    top: 0;
    height: 60px;
}

#affcarousel .carousel-indicators [data-bs-target] {
    width: 100%;
    height: 60px;
    text-align: center;
    background: none;
    border: none;
    text-indent: inherit;
    color: #fff;
    opacity: 1;
    text-transform: uppercase;
}

#affcarousel .carousel-indicators [data-bs-target].active {
    border-bottom: 2px solid #0bbab5;
}

#affcarousel h4 {
    font-size: 40px;
    color: #fff;
}

#affcarousel h4 span {
    color: #0bbab5;
    margin-left: 10px;
}

#affcarousel .carousel-item {
    padding-top: 120px;
    min-height: 650px;
    padding-bottom: 50px;
    background-size: contain;
}

#affcarousel .carousel-item:nth-child(1) {
    background: #000 url(../images/common/vip/aff1.jpg)no-repeat center top;
}

#affcarousel .carousel-item:nth-child(2) {
    background: #000 url(../images/common/vip/aff2.jpg)no-repeat center top;
}

#affcarousel .carousel-item:nth-child(3) {
    background: #000 url(../images/common/vip/aff3.jpg)no-repeat center top;
}

.aff-benefits-table {
    font-size: 12px;
    width: 100%;
}

.aff-benefits-table tr td {
    color: #fff;
    text-align: center;
    padding: 5px;
    font-weight: 600;
}

.aff-content {
    color: #fff;
    font-size: 12px;
}

.aff-table-header {
    background: #222222;
}

.aff-table-subheader:nth-child(2) {
    border-left: 1px solid #0bbab5;
    border-right: 1px solid #0bbab5;
}

.border-tiffany {
    border-bottom: 1px solid #0bbab5;
}

.text-tiffany {
    color: #0bbab5!important;
}

.sub-line td {
    border: 1px solid #0bbab5;
}

.calculation p {
    margin: 0;
}
