/*************** CSS for Desktop ***************/
@keyframes olpulse {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}
@-webkit-keyframes brightness {
    0% {
		/* transform: scale(0.95); */
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }

    50% {
        /* transform: scale(1); */
        -webkit-filter: brightness(1);
        filter: brightness(1);
    }

    100% {
		/* transform: scale(0.95); */
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }
}
@-webkit-keyframes pulse {
    0% {
		transform: scale(0.95);
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }

    50% {
        transform: scale(1);
        -webkit-filter: brightness(1);
        filter: brightness(1);
    }

    100% {
		transform: scale(0.95);
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }
}

@keyframes scroll-left {
    0% {
        transform: translate(0)
    }
    
    to {
        transform: translate(-9%)
    }

}

@keyframes scroll-left-2 {
    0% {
        transform: translate(0)
    }
    
    to {
        transform: translate(-80%)
    }

}

@keyframes scroll-right {
    0% {
        transform: translate(-20%)
    }

    to {
        transform: translate(0)
    }
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: gray; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
.lightbox-content {
	background-color: transparent;
    text-align: center;
}
.lightbox-content > * {
	margin: 0 auto;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    opacity: 0;
    transition: opacity .15s linear;
}
.modal.show {
    display: block;
    opacity: 1;
}
.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.88);
}
.modal-dialog {
    position: relative;
    width: 500px;
    max-width: 90%;
    top: 50%;
    margin: 0 auto;
    pointer-events: none;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px);
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    border-radius: .3rem;
    outline: 0;
    padding: 20px 15px;
    background-color: #000;
    border: 2px solid #fff;
}
.modal-title {
    width: 100%;
    display: inline-block;
    color: #f2e200;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}
.modal-body {
    color: #fff;
    padding: 0;
    line-height: 1.3;
    padding: 1rem 0;
}
.modal-content .close {
    position: absolute;
    right: -4%;
    bottom: 104%;
    z-index: 2;
    color: #f2e200;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}
.z-10 {
	z-index: 10;
}
.pulse {
	transform: scale(1);
	animation: pulse .5s linear infinite;
    cursor: pointer;
}
html, body, #main, #wrapper, .j-section {
    /* height: 100%; */
}
html, body {
    background-color: #021708 !important;
    scroll-behavior: smooth;
}
#main, #wrapper {
    background-color: transparent !important;
}
body, #main, #wrapper {
    /* overflow: hidden; */
}
.j-section {
    margin: 0 auto;
    max-width: 100%;
}
.j-submit {
    display: none;
}
body {
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    /* background-attachment: fixed; */
}
#main, #wrapper {
    background-color: transparent;
}
.col-inner>.img:not(:last-child), .col>.img:not(:last-child), blockquote, dl, figure, form, ol, p, pre, ul {
    margin-bottom: 0;
}
.j-slider .img {
    width: 33.333333% !important;
    display: flex;
    align-items: flex-end;
    min-height: 8.5vw;
}
.j-img {
    padding: 0 0.6% !important;
}
.j-img .img-inner {
    margin-bottom: 2%;
    margin-left: -13.5%;
    z-index: 99;
}
.j-noti {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #3674d4;
    overflow: hidden;
    height: 60px;
    padding: 0 15px;
    width: 85%;
    color: #fff;
    font-weight: bold;
}
.j-noti::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #071935;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.j-noti marquee {
    display: block;
    position: relive;
    z-index: 2;
}
.j-noti em {
    color: #8f8f8f;
    font-style: normal;
}
.j-noti strong {
    color: #3cff00;
}
.section-title-container {
    margin: 0;
}
.section-title, 
.section-title .section-title-main {
    border: none;
    padding: 0;
    color: #f5aa1e;
    font-size: 1em;
}
.banner .section-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 15px;
}
.banner .text-inner > .text {
    line-height: 1.6;
    font-size: 110%;
}
.banner p {
    margin: 0;
}
.white {
    color: #084789 !important;
}
/* .flickity-slider .img .img-inner {
    width: 90%;
    padding-top: 76%;
    display: block;
    box-shadow: 0 0 8px #413937 inset;
    margin: 0 auto;
}
.flickity-slider .img img {
    height: 96%;
    width: 96%;
    left: 2%;
    top: 2%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
} */
.j-150k {
    background-color: #ff6f00;
    color: #fff;
    padding: 8px 15px;
}
.j-150k strong {
    font-size: 150%;
}
.banner .text-box {
	max-height: 70%;
    overflow-y: auto;
}
.oneImg .text-box {
	max-height: 100%;
    overflow-y: hidden;
}
.banner-layers {
	max-width: 100%;
    padding: 0;
}
.ux-timer {
	display: flex;
	font-size: 200% !important;
    justify-content: space-around;
    align-items: center;
    gap: 5%;
}
.ux-timer span{
	padding: 0;
	margin: 0;
	background-color: transparent;
}
.ux-timer span strong{
	display: none !important;
}
.sponsor-track {
	overflow: hidden;
}
.sponsor-track .stack {
    width: 110%;
    animation: scroll-left 5s linear infinite;
}
.sponsor-track-2 .stack {
    width: 500%;
    animation: scroll-left-2 30s linear infinite;
}
.slider-style-focus {
    padding: 0;
}
.lpa-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lpa-player-name {
    display: block;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #00ff1e;
}

.lpa-player-money {
    color: #a9cfce;
    font-size: .6vw;
}

.lpa-reward {
	font-size: 1vw;
    text-align: right;
    color: #ffe400;
}

.lpa-rankings-bottom {
    position: relative;
}

.lpa-bottom-img {
    width: 100%;
}

.lpa-bottom-content {
    position: absolute;
    width: 100%;
    height: 90%;
    display: block;
    text-align: center;
    align-content: center;
    text-transform: uppercase;
    font-size: 1.3vw;
    bottom: 0;
    left: 0;
    padding-bottom: 1.2vw;
    font-weight: 900;
    color: #ffffff6b;
}
.vdd-bxh {
    height: 46%;
    min-height: 0;
    font-size: .65vw;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: .3vw;
    padding-bottom: .8vw;
	margin-top: 23%;
}

.vdd-bxh-thead {
    display: grid;
    grid-template-columns: 10% 1fr 30%;
    padding: 0 2vw;
}

.vdd-bxh-thead .lpa-th {
    color: #619cbf;
    font-family: 'SVN-Aguda';
    font-weight: 700;
}

.vdd-bxh-thead .lpa-th:not(:first-child) {
    text-align: center;
}
.vdd-bxh-thead .lpa-th:last-child {
    text-align: right;
	padding-right: 10%;
}

.vdd-bxh-tbody {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    gap: .3vw;
    padding: 0 1vw;
    position: relative;
}

.vdd-bxh-tbody.loading::before,
.vdd-bxh-tbody.loading::after {
    content: '';
    position: absolute;
    z-index: 20;
}

.vdd-bxh-tbody.loading::before {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
}

.vdd-bxh-tbody.loading::after {
    width: 25px;
    height: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-left-color: #3576ab;
    border-radius: 40px;
    animation: spin 2s linear infinite;
}

.vdd, .row-collapse > .vdd {
    background-image: url(../img/xephang-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
	padding-top: 185.59% !important;
	position: relative;
}
.vdd > div,
.vdd .tabbed-content {
	height: 100%;
    width: 100%;
}
.vdd > div {
	position: absolute;
	top: 0%;
}
.vdd .tabbed-content {
	flex-direction: column;
}
.vdd .tabbed-content .tab-panels {
    margin-top: -9%;
	padding-top: 0;
    height: 86%;
    overflow: hidden;
}
.vdd .tabbed-content .tab-panels .panel.active {
    height: 98.5%;
}
.vdd .nav {
	flex-flow: row;
	text-align: center;
	height: 11%;
}
.vdd .nav>li {
	width: 33%;
	margin: 0;
	height: 100%;
	display: flex;
	align-items: flex-start;
    justify-content: center;
    padding-top: 3%;
	position: relative;
}
.vdd .nav>li>a {
	color: #5e5e8f;
	font-size: 11px;
	line-height: normal;
	padding: 0;
	position: relative;
	z-index: 99;
}
.vdd .nav>li>a span {
	display: block;
	font-weight: lighter;
}
.vdd .nav>li.active::before {
	content: "";
	position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
	width: 303%;
	height: 100%;
	top: 0;
}
.vdd .nav>li:first-child.active::before {
    background-image: url(../img/tab1.webp);
	left: 0;
}
.vdd .nav>li:nth-child(2).active::before {
    background-image: url(../img/tab2.webp);
    background-position: center;
	left: -100%;
}
.vdd .nav>li:last-child.active::before {
    background-image: url(../img/tab3.webp);
    background-position: right;
	right: 0%;
}
.vdd .nav>li.active>a {
	color: #fff;
}
.vdd-ranking-time {
    width: 80%;
    margin: 10px auto 5px auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vdd-league {
    text-transform: uppercase;
    /* font-family: 'SVN-Aguda'; */
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 3px;
}

.vdd-league strong:first-child {
    font-weight: 700;
    font-size: .65vw;
    color: #9ddef9
}

.vdd-league-time {
    text-align: center;
    font-size: .7vw;
    color: #fff;
}

.vdd-league strong:last-child {
    font-weight: 700;
    font-size: .85vw;
    color: #ffe400;
    text-shadow:
        -1px -1px 0 #c82704,
        1px -1px 0 #c82704,
        -1px 1px 0 #c82704,
        1px 1px 0 #c82704;
}

.vdd-board-content {
    display: grid;
    grid-template-columns: 31% 1fr 33%;
    width: 92%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 46.5%;
}

.vdd-board-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .6vw;
    line-height: .9vw;
}

.vdd-board-item strong {
    color: #fff;
    font-family: 'SVN-Aguda';
    font-weight: 900;
    display: block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80%;
}

.vdd-board-item span {
    font-size: .7vw;
    color: #ffe400;
}


@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.vdd-bxh-tbody::-webkit-scrollbar {
    width: 3px;
}

.vdd-bxh-tbody::-webkit-scrollbar-track {
    background: transparent;
}

.vdd-bxh-tbody::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 5px;
    max-height: 8px;
}

.vdd-bxh-tbody:hover::-webkit-scrollbar-thumb {
    background: #00fffc;
    width: 4px;
}

.vdd-bxh-row {
    display: grid;
    grid-template-columns: 10% 60% 30%;
    border-radius: 999px;
    border: 1px solid #2d4350;
    background-image: linear-gradient(to top, rgba(45, 67, 80, 0.4), transparent);
    align-items: center;
    color: #fff;
    padding: .1vw 1vw;
}

.vdd-bxh-error {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-size: 1.5em;
}

/*************** CSS for landscape Desktop ***************/
@media (max-width: 1750px) {
    .j-slider .img {
        min-height: calc(8.5vw*0.92);
    }
}
@media (max-width: 1400px) {
    .j-slider .img {
        min-height: calc(8.5vw*0.93);
    }
    .ux-timer {
        font-size: 150% !important;
    }
}
@media (max-height: 660px) and (orientation: landscape) {

}
/*************** CSS for Tablet ***************/
@media (max-width: 1023px) and (orientation: landscape) {
    body {
        font-size: 8px;
    }
    .section {
    	/*max-width: 65%;/**/
        margin: 0 auto;
    }
    .j-section,
    .j-submit {
        min-height: 0 !important;
    }
    .j-section {
        height: 100dvh;
    }
    .j-noti {
        height: 30px;
    }
    .banner .section-title {
        font-size: 1em;
    }
    .ux-timer {
        font-size: 80% !important;
    }
    .banner .text-box {
        width: 90% !important;
    }
}
@media (orientation: portrait) {
    body {
        background-image: url(../img/bg-mb.webp);
        font-size: 12px;
    }
    .h2, h2 {
        font-size: 1.2em;
    }
    body::before {
        display: none;
    }
    .j-section,
    .j-submit {
        max-width: 100%;
        min-height: 0 !important;
    }
    .j-section {
        height: 100dvh;
    }
    .col, .row-collapse>.col {
        flex-basis: 100%;
        max-width: 100%;
        /* padding: 0 5% !important; */
    }
    .col.small-1, .row-collapse>.col.small-1 {
        flex-basis: 8.3333333333%;
        max-width: 8.3333333333%
    }
    
    .col.small-2, .row-collapse>.col.small-2 {
        flex-basis: 16.6666666667%;
        max-width: 16.6666666667%
    }
    
    .col.small-3, .row-collapse>.col.small-3 {
        flex-basis: 25%;
        max-width: 25%
    }
    
    .col.small-4, .row-collapse>.col.small-4 {
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%
    }
    
    .col.small-5, .row-collapse>.col.small-5 {
        flex-basis: 41.6666666667%;
        max-width: 41.6666666667%
    }
    
    .col.small-6, .row-collapse>.col.small-6 {
        flex-basis: 50%;
        max-width: 50%
    }
    
    .col.small-7, .row-collapse>.col.small-7 {
        flex-basis: 58.3333333333%;
        max-width: 58.3333333333%
    }
    
    .col.small-8, .row-collapse>.col.small-8 {
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%
    }
    
    .col.small-9, .row-collapse>.col.small-9 {
        flex-basis: 75%;
        max-width: 75%
    }
    
    .col.small-10, .row-collapse>.col.small-10 {
        flex-basis: 83.3333333333%;
        max-width: 83.3333333333%
    }
    
    .col.small-11, .row-collapse>.col.small-11 {
        flex-basis: 91.6666666667%;
        max-width: 91.6666666667%
    }
    .hide-for-small, [data-show=hide-for-small], .hide-for-medium, [data-show=hide-for-medium] {
        display: none !important;
    }
    .show-for-small, [data-show=show-for-small] {
        display: flex !important;
    }
    .ux-timer {
        font-size: 100% !important;
    }
    .slider-wrapper,
    .flickity-viewport {
        overflow: visible !important;
        position: relative;
        z-index: 9;
    }
    .slider-style-focus .flickity-slider>.is-selected {
        transform: scale(1.2);
        opacity: 1 !important;
        z-index: 999;
    }
    .slider-style-focus .flickity-slider>:not(.is-selected) {
        transform: scale(1);
    }
    .slider-style-focus .img {
        display: flex;
        align-items: center;
        min-height: 30vw;
    }
	
	.vdd-league strong:first-child {
		font-size: 2.6vw;
	}

	.vdd-league-time {
		font-size: 2.8vw;
	}

	.vdd-league strong:last-child {
		font-size: 3.4vw;
	}
	.vdd-board-item {
		font-size: 2.4vw;
		line-height: normal;
	}

	.vdd-board-item span {
		font-size: 2.8vw;
	}
	.vdd-bxh, .lpa-player-money, .lpa-reward {
		font-size: 2.4vw;
	}
}
@media (min-width: 750px) and (orientation: portrait) {
    .section {
    	/*max-width: 72%;/**/
        margin: 0 auto;
    }
    .j-section .row {
        /* max-width: 65% !important; */
    }
    .banner .text-box {
        width: 75% !important;
    }
}

/*************** CSS for mobile ***************/
@media (max-width: 549px) {
    body {
        font-size: 10px;
    }
    .j-slider .img {
        width: 50% !important;
        min-height: 27.5vw;
    }
    .j-noti {
        height: 30px;
    }
    .banner .section-title {
        font-size: 0.9em;
        margin-bottom: 6px;
    }
    .banner .text-inner > .text {
        font-size: 60%;
    }
}

/*************** CSS for mobile ***************/
@media (max-width: 390px) {

}