.game-banner {
    height: auto;
    width: 100vw;
}

.game-banner img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.game-category-row {
    display: flex;
    text-align: center;
    padding: 20px;
}

.game-category-row .row-item {
    position: relative;
    display: block;
    text-align: center;
    cursor: pointer;
}

.game-category-row .row-item .game {
    background-repeat: no-repeat;
    width: 240px;
    height: 240px;
    display: inline-block;
    margin: 0 26px;
    background-size: cover;
    background-position: center;
}

.row-item .game-hot {
    position: absolute;
    height: 59px;
    width: 40px;
    top: 40%;
    right: 15%;
    transform: translateY(-50%);
}

/* slots */
.slots-page-wrap {
    display: flex;
}

.slots-page-row {
    position: relative;
    padding: 0 24px;
}

.slots-page-row div.slots-page-row-prev,
.slots-page-row div.slots-page-row-next {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 100%;
    background-color: #3c3c3c;
    cursor: pointer;
}

.slots-page-row div.slots-page-row-next {
    left: auto;
    right: 0px;
}

.slots-page-row div.slots-page-row-prev i,
.slots-page-row div.slots-page-row-next i {
    color: #00000066;
    font-size: 40px;
    font-weight: bold;
}

.slots-page-row-item {
    position: relative;
    display: flex;
    width: 1160px;
    max-width: 100%;
    background-color: #000000;
    overflow-x: hidden;
}

.slots-page-row-item div {
    padding: 20px 4px;
    cursor: pointer;
}

.slots-page-row-item div.active {
    background-color: #3c3c3c;
}

.slots-page-row-item div img {
    width: 108px;
	max-width: 108px;
}

.content-slots-page-wrap {
    display: none;
}

.content-slots-page {
    background-color: transparent;
}

.slots-nav-wrap {
    margin-top: 40px;
}

.content-slots-page .nav-tabs .nav-link.active {
    color: #646464;
    border-radius: 0px;
}


.content-slots-page .nav-tabs {
    border-bottom: none;
    background: #FFD800;
    margin: 0 0 20px;
    float: left;
    width: 80%;
    flex-wrap: inherit;
}

.content-slots-page .nav-link {
    display: block;
    padding: 60px 20px 17px 20px;
    line-height: 16px;
    height: 100px;
}

.content-slots-page .nav-tabs .nav-link {
    color: #1e1e1e;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    width: 110px;
    height: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    text-align: center;
}

.slots-nav-wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
}

.content-slots-page .nav-tabs .nav-link.active,
.content-slots-page .nav-tabs .nav-link:hover {
    border: 0px;
    color: #646464;
    margin-right: 0px !important;
}

.content-slots-page .nav-tabs .nav-link.active:after {
    border-bottom: none !important;
    width: unset !important;
    margin: unset !important;
}

.content-slots-page .nav-tabs .nav-item {
    margin-bottom: 0;
    width: auto;
    text-align: center;
    border: 0;
    border-radius: 0;
}

.content-slots-page .nav-tabs .nav-item:last-child {
    border: none;
}

.content-slots-page .search {
    position: relative;
    color: #aaa;
    font-weight: 400;
    font-size: .875rem;
    text-align: right;
    float: right;
    width: 20%;
}

.content-slots-page .search .fa-search {
    position: absolute;
    top: 13px;
    left: 10px;
    color: #000;
}

.content-slots-page .search input {
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #aaa;
    box-shadow: 0 0 3px #ccc, 0 10px 15px #ebebeb inset;
    color: grey;
    padding: 0 20px 0 27px;
}

.games-row {
    /* overflow: scroll; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.games-col {
    float: left;
    width: 146px;
    margin: 0 0 22px;
    height: auto;
    position: relative;
    background: black;
}

.games-col:first-child {
    margin: 0;
}

.games-col .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
}

.games-col .middle .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.games-col .image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.games-col:hover .image {
    opacity: 0.3;
}

.games-col:hover .middle {
    opacity: 1;
}

.games-col:hover .game-name p {
    color: #FFD800 !important;
}

.games-col2:hover .image {
    opacity: 0.3;
}

.games-col2:hover .middle {
    opacity: 1;
}

.games-col2:hover .game-name p {
    color: #FFD800 !important;
}

.game-name {
    background-color: #d5d5d5;
    position: relative;
    bottom: 0px;
    color: #000000;
    width: 146px;
    height: 50px;
    text-align: center;
    font-size: 12px;
    display: grid;
    align-items: center;
}

.game-name p {
    text-align: center;
    padding: 0;
}

.games-col2 {
    float: left;
    width: 174px;
    margin-left: 10px;
    margin-right: 11px;
    position: relative;
    background: black;
    height: 198px;
    margin-bottom: 22px;
}

.game-name2 {
    background: #FFD800;
    position: relative;
    bottom: 0px;
    color: #1E1E1E;
    width: 174px;
    text-align: center;
    font-size: 12px;
}

/* slots */

/* togel */
.togel-content .section-tab {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 20px;
    color: #fff;
    background-color: #646464;
    text-align: center;
    border: 0;
}

.togel-content .section-tab>.nav-link {
    position: relative;
    width: calc(100% / 3);
    padding: 16px 0px 20px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    border: 0;
    color: #ffffff;
}

.togel-content .section-tab>.nav-link.active {
    font-weight: 900;
    background-color: #FFD800 !important;
    color: #1E1E1E;
    border-radius: 0;
    margin-right: 0px !important;
}

.togel-content .section-tab>.nav-link .tick {
    display: none;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0;
    height: 0;
    color: #fff;
    border-bottom: 40px solid #3c3c3c;
    border-left: 40px solid transparent;
}

.togel-content .section-tab>.nav-link.active .tick {
    display: flex;
}

.togel-content .section-tab>.nav-link .tick i {
    position: absolute;
    top: 18px;
    right: 3px;
    font-size: 18px;
}

.togel-content .primary-cta-btn {
    font-weight: 900;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 45px;
    background-color: #FFD800;
    width: 50%;
    margin: auto;
    border: none;
}

.togel-content .section-list {
    overflow: hidden;
    padding-top: 25px;
}

.togel-content .result-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.togel-content .row-sec-list {
    background-color: #ebebeb;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.togel-content .head-top-sec {
    background-color: #3c3c3c;
    background-image: url("../images/game/lottery/logo-1.png");
    background-repeat: no-repeat;
    background-position: 200px 10px;
    background-size: auto 35px;
    padding: 10px 15px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.togel-content .head-top-sec h3 {
    font-weight: 900;
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
}

.togel-content .head-top-sec p {
    font-weight: 400;
    color: #fff;
    font-size: 12px;
    margin-bottom: 0px;
}

.togel-content .col03 .head-top-sec {
    background-image: url("../images/game/lottery/logo-2.png");
    background-position: 194px 6px;
    background-size: auto 40px;
}

.togel-content .col04 .head-top-sec {
    background-image: url("../images/game/lottery/logo-3.png");
    background-position: 198px 2px;
    background-size: auto 50px;
}

.togel-content .col05 .head-top-sec {
    background-image: url("../images/game/lottery/logo-4.png");
    background-position: 204px 5px;
    background-size: auto 46px;
}

.togel-content .col06 .head-top-sec {
    background-image: url("../images/game/lottery/logo-5.png");
    background-position: 190px 5px;
    background-size: auto 44px;
}

.togel-content .col07 .head-top-sec {
    background-image: url("../images/game/lottery/logo-6.png");
    background-position: 175px 10px;
    background-size: auto 35px;
}

.togel-content .col08 .head-top-sec {
    background-image: url("../images/game/lottery/logo-7.png");
    background-position: 180px 8px;
    background-size: auto 42px;
}

.togel-content .head-top-sec-prize-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    text-align: center;
}

.togel-content .head-top-sec-prize {
    width: 30%;
    font-weight: 900;
    box-shadow: 0 3px 6px 3px #00000029;
}

.togel-content .head-top-sec-prize-head {
    padding: 4px 0px;
    font-size: 12px;
    font-weight: 900;
    color: #1e1e1e;
    background-color: #FFD800;
}

.togel-content .head-top-sec-prize-text {
    padding: 2px 0px;
    font-size: 14px;
    background-color: #ffffff;
    color: #000;
}

.togel-content .mid-bot-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
}

.togel-content .mid-bot-row {
    width: 46%;
    overflow: hidden;
    color: #fff;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: center;
}

.togel-content .mid-bot-header {
    padding: 4px 0px;
    font-size: 12px;
    font-weight: 900;
    background: #1e1e1e;
}

.togel-content .mid-bot-text {
    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.togel-content .mid-bot-text>div {
    width: 50%;
    font-size: 14px;
    font-weight: 900;
    color: #000000;
    background-color: #ffffff;
}

.lottery-title {
    margin-bottom: 20px;
    color: #FFD800;
    font-size: 25px;
    font-weight: 900;
}

.lottery-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.lottery-text ul {
    padding-inline-start: 20px;
}

.tablepay {
    margin: 15px 0;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 13px;
}

.tablepay th {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    border: 1px solid #1e1e1e;
    background-color: #FFD800;
    color: #1e1e1e;
}

.tablepay td {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    border: 1px solid #1e1e1e;
    background-color: #ffffff;
    line-height: 13px;
}

/* togel */

/* promotion */
.promo-nav .nav {
    top: 152px;
    border-bottom: 0;
    display: flex !important;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    position: fixed;
    padding: 10px 0px;
    z-index: 3;
    font-size: 16px;
    width: 100%;
    background-color: #1E1E1E;
}

#promo_header {
    min-height: 636px;
}

.promo-wrapper {
    float: left;
    position: relative;
    min-height: 1px;
}

.promosi-thumb {
    position: relative;
    margin-bottom: 20px;
}

img.cust-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.img-title {
    position: relative;
    top: -140px;
    text-align: center;
}

.full-tit {
    width: 80%;
    margin: auto;
}

.btn-mr {
    position: absolute;
    top: 115px;
    right: 0;
    margin-right: 15px;
}

.menu-list-side {
    position: relative;
}

.menu-list-side .nav {
    display: block;
}

.menu-list-side ul.nav.nav-tabs {
    /* position: fixed;
    top: 152px;
    right: 50px; */
    position: fixed;
    top: 152px;
    background: #000000;
    border-bottom: 0;
    width: 90px;
    text-align: center;
    z-index: 1;
}

.menu-list-side .nav-tabs .nav-item {
    margin-bottom: -1px;
    text-align: center;
}

.menu-list-side .dropdown ul,
li {
    padding: 0;
    margin: 0;
}

.menu-list-side .nav-link {
    color: white;
}

.menu-list-side a.active {
    color: #FFD800 !important;
    border-radius: 0 !important;
    border: 0 !important;
}

.menu-list-side .nav-tabs .nav-link {
    display: block;
    padding-bottom: 5px;
    height: 90px;
    line-height: 16px;
    margin-right: 0px !important;
    padding-top: 0px !important;
}

.menu-list-side .nav-tabs .nav-link:hover {
    border: none !important;
}

.menu-list-side .nav-tabs .nav-link.active {
    background-color: #3c3c3c !important;
    font-weight: 400 !important;
}

.menu-list-side .nav-tabs .nav-link.active:after {
    border-bottom: none;
}

.menu-list-side .nav-tabs .nav-item>a img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    text-align: center;
}

.menu-list-side .nav-tabs .nav-item>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-list-side .nav-item>a i {
    margin-right: .3rem;
}

.fa-product,
.fa-products,
.fa-limitedtimeevent{
    --fa: "\f017";
    --fa--fa: "\f017\f017";
}

.fa-newmember{
    --fa: "\f890";
    --fa--fa: "\f890\f890";
}

.fa-vip{
    --fa: "\f521";
    --fa--fa: "\f521\f521";
}

.fa-special{
    --fa: "\f06b";
    --fa--fa: "\f06b\f06b";
}

.fa-casino{
    --fa: "\e3ed";
    --fa--fa: "\e3ed\e3ed";
}

.fa-sports{
    --fa: "\e643";
    --fa--fa: "\e643\e643";
}

.fa-slots{
    --fa: "\e3ce";
    --fa--fa: "\e3ce\e3ce";
}

.fa-tournament{
    --fa: "\f091";
    --fa--fa: "\f091\f091";
}

.promotion-content-modal {
    margin-top: 152px;
    background-color: #1e1e1e;
    padding-bottom: 152px;
	display: none;
}

.promotion-content-modal .closing-btn-wrap {
    position: absolute;
    top: 160px;
    right: 0;
    width: 100%;
}

.promotion-content-modal .closing-btn {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #fff !important;
    cursor: pointer;
}

.promotion-content-modal .closing-btn i {
    color: #404040 !important;
    font-size: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: inherit;
}

.promotion-content-modal .banner-pro img {
    width: 100vw;
    height: auto;
}

.promotion-content-modal .contentWrapper2 {
    padding: 20px 0px 50px;
}

.promotion-content-modal .btn-claim {
    text-align: right;
}

.promotion-content-modal .promo-redirect-btn {
    display: none;
}

.promotion-content-modal .promo-claim-btn,
.promotion-content-modal .promo-join-btn {
    font-weight: 900;
    cursor: pointer;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background-color: #FFD800;
    color: #1e1e1e;
    border: none;
    text-decoration: none;
    padding: 10px 25px;
    margin-right: 10px;
}

.promotion-content-modal .top-content {
    color: #fff;
    text-align: center;
    font-weight: 900;
}

.promotion-content-modal .content-bottom {
    color: #fff;
    padding: 20px;
    font-weight: 400;
}

.promotion-content-modal .promo_table {
    background-color: #3c3c3c;
    color: #ffffff;
}

.promotion-content-modal .promo_table th {
    padding: 5px 0;
    font-weight: 700;
    background-color: #FFD800;
    color: #1e1e1e;
    font-weight: 900;
}

.promotion-content-modal .promo_table td {
    padding: 5px 0;
}

/* promotion */

.games-wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.game-event{
	position: absolute;;
    width: 66px;
    top: 40%;
    right: 10%;
    transform: translateY(-50%);
}