

html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll !important;
}

html::-webkit-scrollbar {
    width: 10px;
    background: #000000;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(#a9d65f, #658b34, #658b34);
    border: solid 1px #000000;
    border-radius: 5px;
}

body {
    padding-right: 0 !important;
    text-align: center;
    background-color: #111111;
    color: #fff;
    font-size: 14px;
    font-family: 'font';
    transition: 0.3s;
}

body.active {
    overflow: hidden;
}

@media (min-width: 1921px) {
    body {
        background-size: cover;
    }
}

button, a, input, select, textarea, span {
    outline: none !important;
    transition: 0.3s;
}

button {
    padding: 0;
}

a:hover {
    text-decoration: none;
}
img{max-width: 100%;}
.loading-wrap{display: none}
.w-b, .w-a, .w-ba {
    position: relative;
    z-index: 1;
}

.w-b:before, 
.w-a:after,
.w-ba:before, 
.w-ba:after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

:root {
    --bs-main: #eebb60;
    --bs-main2: #806020;
    --bs-main-d: #95783a;
    --bs-main-d2: #483200;
    --bs-main-d3: #513424;
    --bs-main-d4: #483200;
    --yellow: #f7ef00;
    --green: #c6fc6f;
}

.font-small {
    font-size: 10px;
}

.font-s-12 {
    font-size: 12px !important;
}

.font-bold {
    font-weight: 600;
}

.font-black {
    font-weight: 900;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-green {
    color: var(--green) !important;
}

.table-layout-fixed {
    table-layout: fixed;
}

.min-h-auto {
    min-height: auto !important;
}

.dflex-ac-jc {
    display: flex !important;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.dflex-ac-js {
    display: flex !important;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.dflex-ac-je {
    display: flex !important;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.dflex-ae-jc {
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
}

.dflex-as-jc {
    display: flex !important;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.dflex-acs-jc {
    display: flex !important;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.wrapper.affix  {
    padding: 80px 0 0;
}

.bs-ul {
    list-style: none;
    margin-bottom: 0;
    width: auto;
    display: table;
    padding: 0;
}

.bs-ul li {
    list-style: none;
    width: auto;
    height: auto;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

.container {
    position: relative;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1530px;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}


/* Loading Wrapper */

.loading-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    background-image: url(../img/icon/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.loading-wrapper.active {
    opacity: 1;
    pointer-events: auto;
}


/* Site Button */


.btn-yellow {
    color: rgba(0, 0, 0, 1.0);
    background-color: var(--bs-main);
    background-image: linear-gradient(var(--bs-main), var(--bs-main2));
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 1.0);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-red {
    color: #ffffff;
    background-color: var(--bs-main-d);
    background-image: linear-gradient(var(--bs-main-d), var(--bs-main-d2));
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 1.0);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.btn-green {
    color: rgba(0, 0, 0, 0.75);
    background-color: var(--bs-main);
    background-image: linear-gradient(var(--bs-main), var(--bs-main2));
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 1.0);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-gray {
    color: #ffffff;
    background-color: #8c8a8a;
    background-image: linear-gradient(#8c8a8a, #575757);
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 1.0);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.btn-yellow span,
.btn-red span,
.btn-green span,
.btn-gray span {
    transition: 0s;
}

.btn-yellow:before,
.btn-red:before,
.btn-green:before,
.btn-gray:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
    z-index: -1;
    border-radius: 2px;
    opacity: 0;
}


.btn-yellow:before {
    background-image: linear-gradient(var(--bs-main-d3), var(--bs-main-d4));
}

.btn-red:before {
    background-image: linear-gradient(var(--bs-main-d3), var(--bs-main-d4));
}

.btn-green:before {
    background-image: linear-gradient(var(--bs-main-d3), var(--bs-main-d4));
}

.btn-gray:before {
    background-image: linear-gradient(var(--bs-main-d3), var(--bs-main-d4));
}


@media(min-width:1201px){ 

    .btn-yellow:hover:before,
    .btn-red:hover:before,
    .btn-green:hover:before,
    .btn-gray:hover:before {
        opacity: 1;
    }

    .btn-yellow:hover {
        color: #ffffff;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 1.0), 0 0 15px rgba(255, 187, 0, 0.25);
    }

    .btn-red:hover {
        box-shadow: 0 1px 1px rgba(0, 0, 0, 1.0), 0 0 15px rgba(205, 63, 0, 0.75);
    }

    .btn-green:hover {
        color: rgba(0, 0, 0, 0.75);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 1.0), 0 0 15px rgba(131, 211, 0, 0.25);
    }

    .btn-gray:hover {
        box-shadow: 0 1px 1px rgba(0, 0, 0, 1.0), 0 0 15px rgba(255, 255, 255, 0.25);
    }

}


/* Banner Section */

.banner-section {
    width: 100%;
    height: 470px;
}

.banner-section:before {
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/banner-bg.jpg);
    background-position: center;
    left: 0;
    top: 0;
    opacity: 0.5;
}


/* Logo */

.logo {
    width: 368px;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.logo img {
    position: absolute;
}

.logo .logo-img {
    width: 100%;
    position: relative;
    opacity: 0;
}

.logo .t-top {
    width: 55.71%;
    left: 9.75%;
    top: 0;
    animation: lgTopAnim 7s ease infinite;
}

.logo .cardimg{
    width: 25%;
    left: 0px;
    right: 0;
    top: -36%;
    margin: auto;
    animation: logo_card_anim 6s linear infinite;
    opacity: 1;
    position: absolute;
}

.logo .circle {
    width: 35%;
    left: 0;
    right: 0;
    top: -41%;
    margin: auto;
    opacity: 1;
    position: absolute;
}

.logo .logo-bg {
    width: 160.69%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
}

@keyframes logo_card_anim{
    0%{transform:rotateX(-360deg);opacity:1;}
    40%{opacity:1;}
    100%{transform:rotateX(0deg);opacity:1;}
}
@keyframes lgTopAnim {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }
    10% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.logo .t-bot {
    width: 38.32%;
    left: 0;
    bottom: 10.25%;
    animation: lgBotAnim 7s ease infinite;
}

@keyframes lgBotAnim {
    0% {
        opacity: 0;
        transform: translate(10%, -25%);
    }
    10% {
        opacity: 1;
        transform: translate(0, 0);
    }
    95% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(0, 0);
    }
}

.logo .itle {
    width: 74.46%;
    right: 11.25%;
    top: 11.25%;
    animation: lgItleAnim 7s ease infinite;
}

@keyframes lgItleAnim {
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    5% {
        opacity: 0;
        transform: translateX(-10%);
    }
    20% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.logo .casino {
    width: 40.04%;
    right: 34px;
    bottom: 0;
    animation: lgCasinoAnim 7s ease infinite;
}

@keyframes lgCasinoAnim {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    10% {
        opacity: 0;
        transform: translateY(-10%);
    }
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    95% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}


/* Banner Carousel */

.banner-carousel {
    margin: 0 0 30px;
    position: relative;
    z-index: 4;
}

.banner-carousel h1,
.banner-carousel h2  {
    margin: 0;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 1.0), 0 0 10px rgba(0, 0, 0, 1.0);
}

.banner-carousel .carousel-item {
    padding: 0 0 20px;
}

.banner-carousel .indicator-panel {
    width: 100%;
}

.carousel-indicators {
    height: 20px;
    margin: 0 auto;
    bottom: 0;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 1.0);
    border: solid 1px #526746;
    border-radius: 14px;
    position: relative;
}


.carousel-indicators li {
    width: 5px;
    height: 12px;
    border-radius: 2px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border:none;
    opacity: 1;
    transition: 0.3s;
}

.carousel-indicators li:hover {
    background-color: rgba(255, 255, 255, 1);
}

.carousel-indicators li.active {
    background-color: #ff4700;
}


/* Banner Background */

.banner-background {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.banner-background img {
    bottom: 0;
    position: absolute;
}

.banner-background div {
    position: absolute;
    bottom: 0;
}

.banner-background div .d-img {
    width: 100%;
    position: relative;
}

.banner-background .golf-ball {
    width: 11.13%;
    left: -2%;
    bottom: -10.5%;
    animation: golfBall 10s ease infinite;
}

@keyframes golfBall {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }
    4% {
        opacity: 0;
        transform: translateX(25%);
    }
    18% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.banner-background .golf-ball .golf-glow {
    animation: golfGlow 0.8s ease infinite;
}

@keyframes golfGlow {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.banner-background .golf-ball .golf-img {
    width: 51.75%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.banner-background .dealer-02 {
    width: 25.56%;
    left: 0;
    animation: dealer02 10s ease infinite;
}

@keyframes dealer02 {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }
    12% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.banner-background .dealer-01 {
    width: 22.88%;
    left: 14.75%;
    animation: dealer01 10s ease infinite;
}

@keyframes dealer01 {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }
    12% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.banner-background .seven {
    width: 30.86%;
    right: 3%;
    bottom: auto;
    top: 20%;
    transform-origin: bottom left;
    animation: sevenAnim 10s ease infinite;
}

@keyframes sevenAnim {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    8% {
        opacity: 0;
        transform: scale(0);
    }
    16% {
        opacity: 1;
        transform: scale(1.1);
    }
    26% {
        opacity: 1;
        transform: scale(1.0);
    }
    95% {
        opacity: 1;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.banner-background .items {
    width: 10.07%;
    left: 2.25%;
    bottom: -6%;
    transform-origin: bottom right;
    animation: itemsAnim 10s ease infinite;
}

@keyframes itemsAnim {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 0;
        transform: scale(0.5);
    }
    18% {
        opacity: 1;
        transform: scale(1.1);
    }
    28% {
        opacity: 1;
        transform: scale(1.0);
    }
    95% {
        opacity: 1;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

/* Right */

.banner-background .casino-table {
    width: 45.69%;
    right: -5.5%;
    transform-origin: bottom left;
    animation: casinoTable 10s ease infinite;
}

@keyframes casinoTable {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    4% {
        opacity: 0;
        transform: scale(0.5);
    }
    18% {
        opacity: 1;
        transform: scale(1.0);
    }
    95% {
        opacity: 1;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.banner-background .dealer-04 {
    width: 13.59%;
    right: 1.5%;
    animation: dealer04 10s ease infinite;
}

@keyframes dealer04 {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }
    12% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.banner-background .dealer-03 {
    width: 18.3%;
    right: 13.4%;
    animation: dealer03 10s ease infinite;
}

@keyframes dealer03 {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }
    12% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.banner-background .casino-card {
    width: 39.65%;
    left: -21%;
    bottom: 16%;
    transform-origin: bottom right;
    animation: cardAnim 10s ease infinite;
}

@keyframes cardAnim {
    0% {
        opacity: 0;
        transform: rotate(45deg);
    }
    8% {
        opacity: 0;
        transform: rotate(45deg);
    }
    18% {
        opacity: 1;
        transform: rotate(0deg);
    }
    95% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: rotate(0deg);
    }
}

.banner-background .club {
    width: 38.93%;
    left: -10%;
    bottom: auto;
    top: 20%;
    transform-origin: bottom right;
    animation: clubAnim 10s ease infinite;
}

@keyframes clubAnim {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    8% {
        opacity: 0;
        transform: scale(0);
    }
    16% {
        opacity: 1;
        transform: scale(1.1);
    }
    26% {
        opacity: 1;
        transform: scale(1.0);
    }
    95% {
        opacity: 1;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.banner-background .chips {
    width: 18.17%;
    right: 2%;
    bottom: -6%;
    animation: chipsAnim 10s ease infinite;
}

@keyframes chipsAnim {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }
    12% {
        opacity: 0;
        transform: translateY(25%);
    }
    18% {
        opacity: 1;
        transform: translateY(-15%);
    }
    28% {
        opacity: 1;
        transform: translateY(0);
    }
    95% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}



/* Header Section */

.header-section {
    width: 100%;
    height: 130px;
    background-image: url(../img/bg/header-bg.jpg);
    background-size: 1920px 100%;
    background-repeat: repeat-x;
    background-position: center;
    border-top: solid 1px var(--bs-main);
    border-bottom: solid 1px var(--bs-main2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 -10px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 99;
}

.affix .header-section {
    position: fixed;
    top: 0;
    left: 0;
}

.main-menu li {
    padding: 0 5px;
}

.main-menu li:first-child {
    padding-left: 0;
}

.main-menu li a {
    width: 95px;
    height: 45px;
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
    border-radius: 15px;
	border: 1px solid var(--bs-main);
}

.main-menu li a i {
    color: var(--yellow);
    margin-right: 8px;
}

.main-menu li a:hover i {
    animation: mainMenuIcon 0.8s ease 1 forwards;
}

@keyframes mainMenuIcon {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


/* Before After Login */

.before-login {
    display: none;
}

.before-login.active {
    display: block;
}

.before-login .input-panel {
    width: 180px;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 1), 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-left: 5px;
}

.before-login .input-panel .icon-panel {
    width: 40px;
    height: 100%;
    color: var(--white-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.before-login .input-panel input {
    width: calc(100% - 40px);
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    color: #ffffff;
}

.before-login .input-panel input::-webkit-input-placeholder{
    color:#94a38d;
}

.before-login a, .before-login button {
    width: 100px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    margin-left: 5px;
}

.bal-container .mobile {
    padding: 0 2px;
}

.bal-container .mobile a {
    width: calc(50% - 6px);
    margin: 0 3px;
}

.bal-container .mobile a i {
    margin-right: 5px;
}


/* After Login */

.after-login {
    display: none;
    position: relative;
}

.after-login.active {
    display: block;
}

.after-login button, .after-login a {
    width: 110px;
    height: 40px;
    line-height: 28px;
    margin-left: 5px;
}

.after-login .nav-btn {
    width: 50px;
    height: 40px;
    font-size: 16px;
    margin: 0 3px;
}

.after-login .nav-btn:hover {
    color: rgba(0, 0, 0, 0.75);
}

.after-login .active .nav-btn:before {
    opacity: 1;
}

.after-login .message-btn .count {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color:#bf3535;
    color: #ffffff;
    font-size: 8px;
    position: absolute;
    right: -8px;
    top: -2px;
    text-shadow: none;
}


/* Dropdown */

.drop-down {
    position: relative;
    transition: 0.3s;
}

.drop-down .toggle-btn {
    transition: 0s;
}

.drop-down .toggle-btn .icon{
    position: relative;
    top: 0;
    transition: 0.3s;
}

.drop-down.active .toggle-btn .icon{
    top: -5px;
}

.drop-down:hover .toggle-btn .icon{
    top: -5px;
}

.drop-down .toggle-btn .arrow-icon {
    font-size: 12px;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: 0.3s;
}

.drop-down.active .toggle-btn .arrow-icon {
    opacity: 1;
    bottom: 2px;
    transform: rotate(180deg);
}

.drop-down:hover .toggle-btn .arrow-icon {
    opacity: 1;
    bottom: 2px;
}

.drop-down-menu {
    width: 260px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 75%;
    background-color: var(--bs-main-d2);;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
    border: solid 1px var(--bs-main-d);
    padding: 10px 10px 0;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

.drop-down.active .drop-down-menu {
    top: calc( 100% + 10px );
    opacity: 1;
    pointer-events: auto;
}

.drop-down-menu a {
    white-space: nowrap;
    border-bottom: solid 1px rgba(255, 255, 255, 0.03);
    padding: 0 10px;
}

.drop-down-menu a:last-child {
    border-bottom: none;
}


/* Account Info */

.after-login .account-info {
    padding: 0;
}

.after-login .account-info .row {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    cursor: pointer;
    margin: 0 0 2px
}

.after-login .account-info .labels{
    text-align:left;
    min-width:100px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    font-size: 12px;
    padding: 0 0 0 8px;
    color: #ccc;
}

.after-login .account-info .labels .icon{
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color: rgba(0, 0, 0, 0.75);
    background-image: linear-gradient(var(--bs-main), var(--bs-main2));
    margin-right: 10px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.after-login .account-info .information{
    text-align:left;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #ffffff;
    font-size: 14px;
    padding: 0 0 0 10px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1), 0 0 12px rgba(255, 255, 255, 0.25);
}

.after-login .account-info .information .symbol{
    color: var(--yellow);
    margin-left:3px;
}


/* Progress Bar */

.after-login .account-info .progressbar{
    background-color: transparent;
    height: 50px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.15);
    margin: 0 0 5px;
    border-radius: 0;
    box-shadow: none;
}

.after-login .account-info .progressbar .labels{
    min-width: auto;
    padding: 0;
}

.after-login .account-info .progressbar .labels .icon{
    width:24px;
    height:24px;
    background-image: none;
    background-color: transparent;
    border: none;
}

.progress-panel {
    width: calc(100% - 34px);
    height: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 1.0), 0 1px 2px rgba(0, 0, 0, 1.0);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-panel .percent {
    /*width: 75%;*/
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.75);
    font-size: 12px;

    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
    position: absolute;
    left: 0;
    top: 0;
}

.progress-panel .percent:before {
    width: 200%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, #fffd00, #ffdc00, #fffd00, #ffdc00, #fffd00);
    animation: percentAnim 0.5s linear infinite;
}

@keyframes percentAnim {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

.after-login .drop-down .mypage-link{
    width:100%;
    height:36px;
    margin: 5px 0;
    border:none;
    font-size: 12px;
    border-radius: 18px;
}

.after-login .drop-down .message-btn{
    width:100%;
    height:40px;
    margin: 10px 0 0;
    border:none;
    color:#fff;
    font-size: 12px;
    position: relative;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}

.after-login .drop-down .message-btn .count{
    width: 18px;
    height: 18px;
    position: relative;
    color: #ffffff;
    border-radius: 50%;
    background-image: none;
    background-color: #c63700;
    font-size: 10px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
    display: inline-block;
    padding: 1px 0 0;
    left: 0;
    right: 0;
    top: 0;
    margin-left: 5px;
}


/* Page Content */

.page-content {
    background-color: #000000;
    background-position: top center;
    background-repeat: repeat-x;
    background-image: url(../img/bg/main-bg.png);
    padding: 20px 0 5px;
}

.toggle-section:before {
    width: 1px;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.toggle-btn {
    width: 50%;
    max-width: 420px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    flex-wrap: nowrap;
    margin: 0 30px;
}

.toggle-btn:first-child {
    margin-left: 0;
}

.toggle-btn:last-child {
    margin-right: 0;
}

.toggle-btn .icon-panel {
    width: 200px;
    transform: skew(-20deg);
    padding-right: 5px;
}

.toggle-btn:last-child .icon-panel {
    transform: skew(20deg);
    padding-right: 0;
    padding-left: 5px;
}

.toggle-btn .icon-panel:before {
    width: 2px;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1.0));
    right: 0;
    top: 0;
    z-index: 2;
}

.toggle-btn:last-child .icon-panel:before {
    left: 0;
    right: auto;
}

.toggle-btn .icon-panel .img-panel {
    overflow: hidden;
}

.toggle-btn .icon-panel .img-panel .icon-img {
    transform: skew(20deg) translateX(30%);
    transition: 0.3s;
}

.toggle-btn:last-child .icon-panel .img-panel .icon-img {
    transform: skew(-20deg) translateX(-30%);
}

.toggle-btn .text-panel {
    padding-left: 30px;
    color: #ffffff;
    font-size: 24px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 1.0);
    height: 100%;
}

.toggle-btn:last-child .text-panel {
    padding-left: 0;
    padding-right: 30px;
}

.toggle-btn .text-panel:before,
.toggle-btn .text-panel:after {
    width: 100%;
    height: 80%;
    top: 0;
    bottom: 0;
    left: 2%;
    margin: auto 0;
    transition: 0.3s;
    transform: skew(-20deg);
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
}

.toggle-btn .text-panel:before {
    border-top: solid 1px rgba(255, 255, 255, 0.25);
    border-bottom: solid 1px rgba(255, 255, 255, 0.25);
}

.toggle-btn.active .text-panel:before {
    background-color: rgba(210, 159, 0, 0.5);
    border-top: solid 1px var(--yellow);
    border-bottom: solid 1px var(--yellow);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
}

.toggle-btn:last-child.active .text-panel:before {
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
}

.toggle-btn .text-panel:after {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.toggle-btn:hover .text-panel:after {
    opacity: 1;
}

.toggle-btn.active:hover .text-panel:after {
    opacity: 0;
}

.toggle-btn:last-child .text-panel:before,
.toggle-btn:last-child .text-panel:after {
    left: auto;
    right: 2%;
    transform: skew(20deg);
    -webkit-mask-image: linear-gradient(to left,rgba(0, 0, 0, 0.25) ,rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to left,rgba(0, 0, 0, 0.25),rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
}

.toggle-btn .text-panel span {
    width: 100%;
    display: inline-block;
}

.toggle-btn .text-panel .kr-text {

}

.toggle-btn .text-panel .en-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 4px;
}

.toggle-btn:hover .text-panel .en-text {
    color: var(--green);
}

.toggle-btn.active .text-panel .en-text {
    color: #50cb0d;
}

.toggle-btn.active .text-panel .kr-text {
    color: var(--yellow);
}


/* Providers Section */

.providers-section {
    margin: 35px 0 0;
}

.providers-panel {
    width: calc(100% + 18px);
    margin: 0 -9px;
    display: none;
}

.providers-panel.active {
    display: block;
}

.sc-btn {
    width: calc(16.66% - 18px);
    margin: 0 9px 45px;
    cursor: default;
}

.sc-btn .g-container {
    width: 100%;
    position: relative;
    border-radius: 50%;
    padding: 2px;
    background-image: linear-gradient(#999999, #ffffff, #666666, #999999);
    animation: scbtnAnim 0.8s ease backwards;
}

@keyframes scbtnAnim {
    0% {
        opacity: 0;
        transform: rotate(45deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.sc-btn .g-container:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    transition: 0.3s;
    background-image: linear-gradient(var(--bs-main2), var(--bs-main), var(--bs-main2));
    opacity: 0;
}

.sc-btn:hover .g-container:before {
    opacity: 1;
}

.sc-btn .g-panel {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-image: linear-gradient(var(--bs-main2), var(--bs-main), var(--bs-main2));
}

.sc-btn .g-panel:before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sc-btn:hover .g-panel:before {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 1.0);
}

.sc-btn .g-panel .g-bg {
    width: 100%;
    margin: 0 -2px;
    transition: 0.3s;
}

.sc-btn:hover .g-panel .g-bg {
    opacity: 0;
}

.sc-btn .g-img {
    width: calc(100% - 4px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    margin: 0 auto;
    z-index: 2;
    animation: scBtnGImgAnim 0.8s ease 0.5s backwards;
}

.sc-btn.no-anim .g-img {
    animation: none;
}

@keyframes scBtnGImgAnim {
    0% {
        opacity: 0;
        transform: translateY(-5%);
    }
    100% {
        opacity: 1;
        transform:translateY(0);
    }
}

.sc-btn:hover .g-img {
    animation: scBtnImg 0.8s ease 1 backwards;
}

@keyframes scBtnImg {
    0% {
        opacity: 0;
        transform: translateY(-2%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sc-btn .logo-panel {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    animation: scBtnLogoPanel 0.8s ease 0.5s backwards;
}

@keyframes scBtnLogoPanel {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform:translateY(0);
    }
}

.sc-btn .logo-panel .g-logo {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    bottom: 38px;
    z-index: 3;
    transition: 0.3s;
}

.sc-btn:hover .logo-panel .g-logo {
    background-color: rgba(0, 0, 0, 0.75);
}

.sc-btn .g-footer {
    width: 100%;
    max-width: 150px;
    height: 40px;
    border-radius: 20px;
    background-image: linear-gradient(var(--bs-main), var(--bs-main2));
    color: rgba(0, 0, 0, 0.75);
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 3;
    overflow: hidden;
    animation: scBtnFooter 0.8s ease 0.5s backwards;
}

@keyframes scBtnFooter {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }
    100% {
        opacity: 1;
        transform:translateY(0);
    }
}

.sc-btn:hover .g-footer {
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}

.sc-btn .g-footer:before{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: 0.3s;
    background-image: linear-gradient(var(--bs-main-d), var(--bs-main-d2));
    opacity: 0;
}

.sc-btn:hover .g-footer:before {
    opacity: 1;
}

.sc-btn .play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 30px;
    top: 0;
    margin: auto;
    border: none;
    background-image: linear-gradient(var(--bs-main), var(--bs-main2));
    font-size: 20px;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
    transform: scale(0);
    opacity: 0;
}

.sc-btn:hover .play-btn {
    transform: scale(1);
    opacity: 1;
}


/* Board Section */

.board-section {
    background-color: #000000;
    background-image: url(../img/bg/board-bg.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 30px 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 1.0), 0 5px 20px rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.board-section:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../img/bg/board-bg-top.png);
    background-repeat: no-repeat;
    background-position: top center;
}

.board-section:after {
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, rgba(98, 135, 59, 0), rgba(98, 135, 59, 1.0), rgba(98, 135, 59, 0));
}

.board-panel {
    width: calc(33.33% - 30px);
    margin: 10px 0;
    min-height: 310px;
}

.board-panel .header {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    color: var(--bs-text);
    font-size: 18px;
    border-radius: 8px;
    background-image: linear-gradient(var(--bs-main), var(--bs-main2));
    border: solid 1px #30371a;
}

.board-panel .header .icon-panel {
    margin-right: 10px;
}

.board-panel .header .more-btn {
    height: 20px;
    padding: 0 15px;
    border-radius: 10px;
    background-color: #e03f01;
    border: none;
    color: #ffffff;
    font-size: 12px;
}

.board-panel .header .more-btn:hover {
    background-color: #fd8400;
}

.board-panel .content {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    margin: 6px 0 0;
}

.board-panel table {
    border-collapse: separate;
    border-spacing: 0 4px;
}

.board-panel table tr td {
    height: 46px;
    background-color: rgba(34, 34, 34, 0.5);
    cursor: pointer;
}

.board-panel table tr:hover td {
    background-color: rgba(34, 34, 34, 0.75);
}

.board-panel table tr td:first-child {
    border-radius: 5px 0 0 5px;
    padding-left: 10px;
}

.board-panel table tr td:last-child {
    border-radius: 0 5px 5px 0;
    padding-right: 10px;
}

.board-panel table tr td a {
    color: #ffffff;
}

.board-panel table tr td a:hover {
    color: var(--yellow);
}

.board-panel table tr .date-td {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.new-icon{
    min-width:14px;
    height:14px;
    display:inline-block;
    vertical-align: top;
    color:#fff;
    font-size:10px;
    border-radius:3px;
    background-color: var(--bs-main-d);
    background-image: linear-gradient(var(--bs-main-d), var(--bs-main-d2));
    line-height: 14px;
    text-align:center;
    margin-left:3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);;
    position: relative;
    top: 3px;
}


/* Realtime Board */

.realtime-board {
    width: 33.33%;
    margin: 10px 30px;
}

.realtime-board .realtime-nav {
    width: 100%;
    height: 54px;
    margin: 0 0 5px;
    padding: 0 1px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 1.0), 0 1px 0 rgba(255, 255, 255, 0.05);
}

.realtime-board .realtime-nav button {
    width: calc(50% - 4px);
    height: calc(100% - 6px);
    border-radius: 6px;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 1.0);
    font-size: 18px;

    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
    margin: auto 2px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.realtime-board .realtime-nav button:hover {
    color: var(--yellow);
    background-color: rgba(255, 255, 255, 0.1);
}

.realtime-board .realtime-nav button.active {
    background-color: var(--bs-main);
    background-image: url(../img/bg/grass-btn.jpg);
    background-repeat: repeat-x;
    background-position: center;
}

.realtime-board .realtime-nav button i {
    margin-right: 5px;
}

.realtime-board .realtime-nav button.active i {
    color: var(--yellow);
}

.realtime-board .content {
    min-height: 272px;
    width: 100%;
    background-color: rgba(34, 34, 34, 0.5);
    border: solid 1px rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    padding: 10px 15px;
}

.rolling-realtime {
    width: 100%;
    margin: 0 auto;
    display: none;
    animation: realtimeAnim 0.5s ease 1 forwards;
}

@keyframes realtimeAnim {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.rolling-realtime.active {
    display: block;
}

.rolling-realtime ul {
    width: 100%;
    float: left;
}

.rolling-realtime ul li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.rolling-realtime ul li div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #ffffff;
    font-size: 15px;
    transition: 0.3s;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.rolling-realtime ul li:hover div {
    background-color: rgba(255, 255, 255, 0.05);
}

.rolling-realtime ul li div.user {
    width: 35%;
    justify-content: flex-start;
}

.rolling-realtime ul li div.amount {
    color: var(--bs-main);

    font-size: 18px;
    width: 35%;
    padding-right: 3%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
}

.rolling-realtime ul li div.date {
    color: rgba(255, 255, 255, 0.5);
    width: 30%;
    text-align: right;
    padding-right: 5px;
}

.rolling-realtime ul li .crown-icon {
    margin: 4px -2px 0 -2px;
}


/* Footer Section */

.footer-section {
    background-color: #111111;
    /*background-image: url(../img/bg/footer-bg.png);
    background-repeat: no-repeat;
    background-position: bottom center;*/
    padding: 0 0 30px;
}

.footer-section .footer-providers {
    padding: 20px 0 30px;
}

.footer-section .footer-providers img {
    margin: 10px 10px;
}

.footer-section .footer-copyright {
    padding: 40px 0 0;
}

.footer-section .footer-copyright:before {
    width: 100%;
    max-width: 1500px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}

.footer-section .logo {
    width: 130px;
    margin: 0 0 15px;
}

.footer-section .copyright-text {
    width: 100%;
    display: inline-block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
    letter-spacing: 2px;
}


/* Scroll To Top */

.scroll-top {
    width:78px;
    height:78px;
    background-color: var(--bs-main);
    background-image: linear-gradient(var(--bs-main), var(--bs-main2));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
    text-shadow:0 2px 0 rgba(255,255,255,0.5);
    border:none;
    border-radius:50%;
    position:fixed;
    bottom:20px;
    right:30px;
    color: rgba(0, 0, 0, 0.75);
    font-size:30px;
    z-index:10;
    padding:0;
}

.scroll-top:hover {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 1.0), 0 0 25px rgba(255, 221, 118, 0.4);
}

.scroll-top .hover {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #ffffff;
    transform: translateY(-50%);
    padding: 0 0 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 1.0);
    transition: 0.3s;
    opacity: 0;
}

.scroll-top:hover .hover {
    transform: translateY(-100%);
    opacity: 1;
}

.scroll-top .hover i {
    position: relative;
    top: 4px;
}

.scroll-top .hover span {
    width: 100%;
    display: inline-block;
}


/*=========================================================== M O D A L ===============================================================*/


.modal-backdrop {
    background-color: #000000;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal {
    padding: 0 !important;
    overflow-y: auto;
}

.modal::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
}

.modal::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.modal *::-webkit-scrollbar {
    width: 10px;
    background: #000000;
    border-radius: 5px;
}

.modal *::-webkit-scrollbar-thumb {
    background: linear-gradient(#888888, #666666);
    border: solid 2px #000000;
    border-radius: 5px;
}

.modal-dialog {
    max-width: 1300px;
    padding: 0 !important;
}

.gameListModal .modal-dialog {
    max-width: 1400px;
}

.loginModal .modal-dialog {
    max-width: 500px;
}

.modal-content {
    min-height: 787px;
    flex-wrap: nowrap;
    align-content: stretch;
    align-items: stretch;
    flex-direction: row;
    overflow: visible;
    background-color: transparent;
    border-radius: 0;
    border: none;
}


/* Modal Close Btn */

.modal-close-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    z-index: 9;
    position: absolute;
    border-radius: 50%;
    right: 0;
    top: 0;
}

.modal-close-btn:before,
.modal-close-btn:after{
    width:2px;
    height:60%;
    background-color: #676767;
    left:0;
    right:5px;
    top:-2px;
    bottom:0;
    margin:auto;
    transform:rotate(45deg);
    transition:0.5s;
}

.modal-close-btn:after{
    transform:rotate(-45deg);
}

.modal-close-btn:hover:before{
    transform:rotate(135deg);
    background-color: var(--yellow);
}

.modal-close-btn:hover:after{
    transform:rotate(-135deg);
    background-color: var(--yellow);
}

.modal .mob-menu-btn {
    position: absolute;
    left: 10px;
    top: 6px;
    display: none;
}


/* Modal Sidebar */

.modal-sidebar {
    width: 280px;
    background-color: #232826;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    border: solid 1px rgba(255, 255, 255, 0.1);
}

.modal-sidebar .header {
    width: 100%;
    height: 50px;
    margin: 0 0 10px;
    background-image: linear-gradient(var(--bs-main), var(--bs-main2), var(--bs-main-d));
    border-top: solid 1px var(--bs-main);
    border-bottom: solid 1px var(--bs-main2);
    border-radius: 8px;
    font-size: 16px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
    padding: 0 15px;
}


/* Modal Menu */

.modal-menu {
    width: 100%;
    display: block;
    padding: 0 5px;
    height: 700px;
    overflow-y: scroll;
}

.modal-menu li {
    width: 100%;
    display: block;
    padding: 2px 0;
}

.modal-menu li a {
    width: 100%;
    height: 50px;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border-left: solid 2px rgba(0, 0, 0, 0);
}

.modal-menu li a:hover {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.35);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
    border-color: var(--bs-main);
}

.modal-menu li a.active {
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0), 0 0 10px rgba(255, 255, 255, 0.25);
    background-color: rgba(0, 0, 0, 0.5);
    border-color: var(--bs-main);
}

.modal-menu li a .center {
    min-width: 140px;
}

.modal-menu li a span {
    transition: 0s;
}

.modal-menu li a .icon-panel {
    width: 40px;
    margin-right: 10px;
    font-size: 18px;
}

.modal-menu li a:hover .icon-panel {
    color: var(--bs-main);
}

.modal-menu li a.active .icon-panel {
    color: var(--bs-main);
}

.modal-menu li a .icon-panel img {
    max-width: 26px;
    max-height: 26px;
    transform-origin: bottom right;
}

.modal-menu li a:hover .icon-panel img {
    animation: mainMenuIcon 1s ease 1 forwards;
}

.modal-menu li a.active:hover .icon-panel img {
    animation: none;
}


/* Modal Panel */

.modal-panel {
    width: calc(100% - 290px);
    margin-left: auto;
    background-color: #2c2f28;
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.no-sidebar .modal-panel {
    border-radius: 10px;

}


/* Modal Title */

.modal-title {
    height: 50px;
    width: calc(100% - 140px);
    max-width: 500px;
    background-color: var(--bs-main);
    background-image: linear-gradient(var(--bs-main), var(--bs-main2), var(--bs-main-d));
    border-radius: 10px;
    border-top: solid 1px var(--bs-main);
    border-bottom: solid 1px var(--bs-main2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 -10px 15px rgba(0, 0, 0, 0.25);
    margin: -15px auto 0;
}

.no-sidebar .modal-title {
    height: 50px;
    width: calc(100% - 140px);
    max-width: 500px;
    background-color: var(--bs-main);
    background-image: linear-gradient(var(--bs-main), var(--bs-main2), var(--bs-main-d));
    border-radius: 10px;
    border-top: solid 1px var(--bs-main);
    border-bottom: solid 1px var(--bs-main2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 -10px 15px rgba(0, 0, 0, 0.25);
    margin: -15px auto 0;
}

.modal-title .icon {
    margin-right: 12px;
}

.modal-title i {
    color: var(--yellow);
    font-size: 24px;
    margin-right: 12px;
}

.modal-title .title{
    color:#ffffff;
    font-size: 24px;
    white-space: nowrap;
    margin: 0;
}


/* Modal Body */

.modal-body {
    padding: 30px 30px 20px;
}


/* Modal Info */

.modal-info {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 30px;
    padding: 0 15px;
    background-color: #17220e;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.modal-info:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../img/bg/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    opacity: 0.5;
}
.modal-info button {
    width: 120px;
    height: 30px;
    border-radius: 15px;
    font-size: 12px;

}


/* Form Container */

.form-container {
    width: 100%;
    max-width: 700px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.form-container .form-group {
    width: 100%;
    display: inline-block;
    margin: 0 0 15px;
}

.form-container .form-group:last-child {
    margin: 0 0;
}

.form-container .labels {
    width: 100%;
    text-align: left;
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
    position: relative;
    display: flex;
    align-items: center;
    padding:0 0 0 5px;
}

.form-container .infos {
    width: 100%;
    display: flex;
    align-items: center;
}

.form-container .form-group .input-container {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form-container .w-btn .input-container {
    width: calc(100% - 125px);
}

.form-container .form-group input {
    width: 100%;
    height: 45px;
    float: left;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.02);
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: 0.3s;
    padding: 0 15px;
}

.customerModal .form-container .form-group input {
    height: 70px;
    font-size: 18px;
}

.form-container .w-icon input {
    padding: 0 0 0 50px;
}

.form-container .form-group input:read-only {
    color: var(--bs-main);

    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
}

.form-container .form-group input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-container .form-group .input-container .icon-panel{
    width: 50px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.5);
}

.form-container .form-group .select-input {
    width: 100%;
    height: 45px;
    float: left;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.02);
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.form-container .form-group .select-input select {
    width: 100%;
    height: 100%;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
    -webkit-appearance: none;
    padding: 0 15px;
    cursor: pointer;
}

.form-container .form-group select option {
    background-color: #1f0a0a;
    color: #fff;
}

.form-container .form-group .select-input i {
    font-size: 18px;
    position: absolute;
    right: 15px;
}

.form-container .form-group textarea {
    width: 100%;
    height: 200px;
    float: left;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: 0.3s;
    padding: 20px 18px;
    resize: none;
}

.form-container .form-group textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-container .form-group .form-btn {
    width: 120px;
    height: 44px;
    border: none;
    float: right;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
    margin: 0 0 0 5px;
    border-radius: 8px;
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
}


/* Form Btn Group */

.form-container .form-group .infos .btn-grp {
    width: 100%;
    float: left;
}

.form-container .form-group .infos .btn-grp button {
    width: 16.66%;
    width: calc(16.66% - 4px);
    height: 38px;
    float: left;
    margin: 0 2px;
    background-color: #666666;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 12px;
    transition: 0.3s;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-container .form-group .infos .btn-grp button:hover {
    background-color: #888888;
}

.form-container .form-group .infos .btn-grp button:first-child {
    margin-left: 0;
    width: calc(16.66% - 2px);
}

.form-container .form-group .infos .btn-grp button:last-child {
    width: calc(16.66% - 2px);
    margin-right: 0;
    background-color: #5c7f34;
}

.form-container .form-group .infos .btn-grp button:last-child:hover {
    background-color: #62b107;
}


/* Form Footer */

.form-footer {
    width: 100%;
    margin: 50px 0 0;
    flex-wrap: nowrap;
}

.form-footer button, .form-footer a {
    width: 160px;
    height: 48px;
    line-height: 48px;
    margin: 0 5px;
}

.form-footer .btn-transparent {
    box-shadow: none;
}


/* Pagination */

.pagination {
    margin: -15px 0 0;
}

.pagination li {
    float: left;
}

.pagination>li>a {
    width: 28px;
    height: 28px;
    color: #ffffff;
    text-decoration: none;
    background-color: #444444;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    overflow: hidden;
}

.pagination .turn-pg a {
    font-size: 12px;
    margin: 0 13px;
    background-color: #606060;
}

.pagination>li>a:hover {
    background-color: #808080;
}

.pagination .active {
    background-color: var(--bs-main-d);
    background-image: linear-gradient(var(--bs-main-d), var(--bs-main-d2));
}

.pagination .active:hover {
    background-color: #df4c25;
}


/* BS Table */

.bs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
}

.bs-table.with-depth {
    border-spacing: 0 2px;
}

.bs-table thead th {
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.bs-table thead th:first-child {
    border-radius: 5px 0 0 5px;
}

.bs-table thead th:last-child {
    border-radius: 0 5px 5px 0;
}

.with-depth thead th {
    border-radius: 5px !important;
}

.bs-table tr {
    cursor: pointer;
}

.bs-table tr td {
    height: 50px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 1px;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.03);
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.bs-table tr td:first-child {
    border-radius: 5px 0 0 5px;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
}

.bs-table tr td:last-child {
    border-radius: 0 5px 5px 0;
    border-right: solid 1px rgba(255, 255, 255, 0.1);
}

.bs-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.1);
}

.bs-table tr td a {
    color: #fff;
    font-size: 12px;
    transition: 0.3s;
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.bs-table tr td a:hover {
    color: var(--yellow);
}

.bs-table tr.active .title-td {
    color: var(--yellow);
}

.bs-table tr.active td a {
    color: var(--yellow);
}

.bs-table tr .count-td {
    width: 60px;
}

.bs-table tr .count-tag {
    width: 22px;
    height: 22px;
    border-radius: 2px;
    padding: 1px 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffffff;

    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
    background-image: linear-gradient(#7c9b49, #496625);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.bs-table tr .title-td {
    text-align: left;
    padding-left: 15px;
    max-width: 590px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bs-table tr .date-td {
    width: 20%;
    color: #cccccc;
}

.bs-table tr .nav-td {
    width: 40px;
}

.bs-table tr td .delete-btn {
    background-color: transparent;
    border: none;
    color: #cccccc;
    font-size: 14px;
    transition: 0.3s;
}

.bs-table tr td .delete-btn:hover {
    color: #ff9200;
}

.bs-table tr td .nav-btn {
    background-color: transparent;
    border: none;
    position: relative;
}

.bs-table tr td .nav-btn i {
    position: relative;
    color: #fff;
    font-size: 10px;
    transition: 0.3s;
    transform: rotate(0deg);
}

.bs-table tr td .nav-btn:hover i {
    color: #ffca5f;
}

.bs-table tr.active td .nav-btn i {
    transform: rotate(180deg);
    top: 5px;
}

.bs-table tr td .plus-btn {
    width: 16px;
    height: 16px;
    background-color: var(--yellow);
    border: none;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.75);
    font-size: 12px;
    padding: 0 0 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.bs-table tr td .plus-btn:hover {
    background-color: #ff9200;
}

.bs-table tr td .plus-btn:before,
.bs-table tr td .plus-btn:after {
    content: '';
    width: 2px;
    height: 50%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    transition: 0.3s;
}

.bs-table tr td .plus-btn:after {
    transform: rotate(90deg);
}

.bs-table tr.active td .plus-btn:before {
    height: 0;
}

.bs-table tr td .plus-btn:hover:before,
.bs-table tr td .plus-btn:hover:after {
    background-color: #ffffff;
}


/* With Depth */

.with-depth tr:nth-last-child(2) td:first-child {
    border-radius: 0 0 0 10px;
}

.with-depth tr:nth-last-child(2) td:last-child {
    border-radius: 0 0 10px 0;
}

.with-depth .message-content {
    display: none;
    height: 300px;
    margin: 2px 0 5px;
}

.with-depth tr.depth-click, tr.depth-click-basic, tr.depth-click-finance, tr.depth-click-game {
    cursor: pointer;
}

.with-depth tr.dropdown,
tr.dropdown-basic,
tr.dropdown-finance,
tr.dropdown-game{
    background-color: transparent;
}

.with-depth tr.dropdown td,
tr.dropdown-basic td,
tr.dropdown-finance td,
tr.dropdown-game td {
    padding: 0;
    border: none;
    height: auto;
    box-shadow: none;
}

.with-depth .dropdown td,
tr.dropdown-basic td,
tr.dropdown-finance td,
tr.dropdown-game td {
    background-color: transparent;
    border: none;
}

.with-depth tr.dropdown:hover td,
tr.dropdown-basic:hover td,
tr.dropdown-finance:hover td,
tr.dropdown-game:hover td {
    background-color: transparent;
    border: none;
}


/* Message Content */

.message-content {
    width: 100%;
    height: 400px;
    background-color: #111111;
    margin: 5px 0 0;
    padding: 10px;
    border-radius: 5px;
}

.message-content .inner-container {
    width: 100%;
    height: 100%;
    float: left;
    color: #fff;
    white-space: nowrap;
    text-align: left;
    overflow-y: scroll;
    padding: 5px 10px;
}


/* Modal List */

.modal-list {
    margin: 0 0 20px;
    flex-wrap: nowrap;
    border-radius: 8px;
    overflow: hidden;
}

.modal-list .bs-ul li {
    width: 100%;
}

.modal-list a {
    width: 100%;
    height: 50px;
    border: none;
    background-color: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.modal-list a:hover {
    color: rgba(255, 255, 255, 1.0);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0), 0 0 15px rgba(255, 255, 255, 0.4);
}

.modal-list a.active {
    color: rgba(255, 255, 255, 1.0);
    border-color: var(--yellow);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0), 0 0 15px rgba(255, 255, 255, 0.4);
}

.modal-list a i {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 8px;
    transition: 0.3s;
}

.modal-list a:hover i {
    color: var(--yellow);
}

.modal-list a.active i {
    color: var(--yellow);
}


/* Modal Tab */

.modal-tab {
    width: 100%;
    display: none;
    margin: 0 auto;
    animation: modalTabAnim 0.5s ease 1 forwards;
}

@keyframes modalTabAnim {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-tab.active {
    display: block;
}


/* Level Information */

.bs-table td .level-icon {
    margin-right: 8px;
}

.bs-table td .level-txt {
    display: inline-block;
    width: 45px;
    text-align: left;
}

.level-information .bs-ul {
    width:calc(100% - 310px);
}

.level-information .bs-ul li {
    width:calc(50% - 10px);
    height: 40px;
    margin-right: 10px;
    background-color: rgba(0, 0, 0, 0.25);
    border: solid 1px rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
}

.level-information .bs-ul li .labels {
    margin-right: 10px;
}

.level-information .point-form{
    width:310px;
    height:100%;
    position:relative;
}

.level-information .point-form input{
    width:calc( 100% - 115px);
    height:38px;
    border-radius:3px;
    padding:0 5px;
    color:#000;
    font-size:12px;
    background-color:#ffffff;
    border:none;
    margin-right: auto;
}

.level-information .point-form input::-webkit-input-placeholder{
    color:#333333;
}

.level-information .points-btn{
    width:110px;
    height:38px;
    border-radius: 5px;
    white-space:nowrap;
}


/* Login Modal */

.loginModal .modal-panel {
    background-image: url(../img/bg/grass-bg.png);
    background-repeat: no-repeat;
    background-position: top -10px center;
    background-size: 100% 230px;
}

.loginModal .form-container {
    max-width: 400px;
}

.modal-banner .logo {
    width: 50%;
    max-width: 200px;
    margin: 40px 0 0;
}


/* Gamelist Modal */

.gameListModal .modal-sidebar {
    width: 250px;
}

.gameListModal .modal-list {
    display: none !important;
}

.gameListModal .modal-panel {
    width: calc(100% - 255px);
}

.game-list-container {
    width: 100%;
    margin: 0 auto;
}

.game-list-container .scroll-panel {
    width: calc(100% + 7px);
    height: 700px;
    margin: 0 0 0 -7px;
    overflow-y: scroll;
    padding: 0 8px 0 0;
}

.game-btn {
    width: calc(16.66% - 14px);
    display: inline-block;
    margin: 0 7px 14px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #333333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: scBtnAnim 1s ease 1 backwards;
    padding: 2px;
}

.game-btn:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(106, 148, 52, 0.25);
}

.game-btn:before {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(#baf064, #6a9434);
    top: 0;
    left: 0;
    opacity: 0;
}

.game-btn:hover:before {
    opacity: 1;
}

.game-btn .g-panel {
    width: 100%;
    position: relative;
    background-color: #000000;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block !important;
}

.game-btn .g-panel:before {
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.game-btn .g-panel .g-img {
    transition: 0.5s;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.game-btn:hover .g-panel .g-img {
    opacity: 0.5;
    transform: scale(1.1);
}

.game-btn .g-panel .g-footer {
    width: 100%;
    height: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    position: absolute;
    padding: 0 4px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 1);

    z-index: 2;
}

.game-btn:hover .g-panel .g-footer {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    box-shadow: none;
}

.game-btn .g-panel .g-footer .name-text {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    font-size: 12px;
    max-width: 96%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 1), 0 0 15px rgba(255, 255, 255, 0.5);
}

.game-btn .g-panel .play-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    border-radius: 50%;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.75);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    font-size: 22px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
    opacity: 0;
    transition: 0.3s;
    padding: 0 0 0 2px;
    background: linear-gradient(#baf064, #6a9434);
}

.game-btn .g-panel .play-btn:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    transition: 0.3s;
    background: linear-gradient(#fffd00, #db8812);
    opacity: 0;
}

.game-btn:hover .g-panel .play-btn {
    animation: gamePlayAnim 0.8s ease 1 forwards;
}

.game-btn .g-panel .play-btn:hover:before {
    opacity: 1;
}

@keyframes gamePlayAnim {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    40% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
 
.game-btn .loading {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
}

/* Hovers */

@media (min-width: 1141px) {
    .main-menu li a:hover {
        text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0), 0 0 10px rgba(255, 255, 255, 0.5);
        background-color: rgba(0, 0, 0, 0.5);
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 1), 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .toggle-btn:hover .icon-panel .img-panel .icon-img {
        transform: skew(20deg) translateX(20%);
    }

    .toggle-btn:last-child:hover .icon-panel .img-panel .icon-img {
        transform: skew(-20deg) translateX(-20%);
    }
}

.form-container .cdb-form .select-input {
    margin: 0 2px;
}

.form-container .cdb-form .select-input:first-child {
    margin-left: 0;
}

.form-container .cdb-form .select-input:last-child {
    margin-right: 0;
}

.form-container .cdb-form .select-input.year {
    max-width: 145px;
}

.form-container .cdb-form .select-input.date-month {
    max-width: 95px;
}

.form-container .form-group .checkbox-input {
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-left: 10px;
}

.form-container .form-group .checkbox-input input {
    margin-right: 5px;
    cursor: pointer;
}