@font-face {
    font-family: 'MBC1961GulimM';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-01@1.0/MBC1961GulimM.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll !important;
}

html::-webkit-scrollbar {
    width: 0;
}

html::-webkit-scrollbar-thumb {
    background: none;
    border: none;
    border-radius: 0;
}

body {
    height: 100%;
    padding-right: 0 !important;
    text-align: center;
    background-color: #000000;
    color: #fff;
    font-size: 14px;
    font-family: 'GmarketSansMediumLight', sans-serif;
    transition: 0.3s;
}

body.active {
    overflow: hidden;
}

@media (min-width: 1921px) {
    body {
        background-size: cover;
    }
}

button, a, input, select, textarea {
    outline: none !important;
    transition: 0.3s;
}

button {
    padding: 0;
}

a, a:active, a:hover, a:visited {
		color:inherit;
    text-decoration: 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 {
    --yellow: #f7ef0f;
    --green: #c6fc6f;
}

.font-small {
    font-size: 10px;
}

.font-s-12 {
    font-size: 12px !important;
}

.font-light {
    font-family: GmarketSansLight !important;
}

.font-bold {
    font-family: GmarketSansBold !important;
}

.text-orange {
    color: #f86a33 !important;
}

.text-yellow {
    color: #ffea6b !important;
}

.text-gradient {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#ffe981, #ffcf48, #ff8a12, #a64b0a);
    background-size: 100% 100%;
}

.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;
}

.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-transparent.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, .btn-gray, .btn-brown {
    color: #ffffff;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: solid 1px #c07010;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}


.btn-yellow {
    background-color: #fec72e;
    background-image: linear-gradient(to right, #a64b0a, #fec72e);
    box-shadow: 0 2px 0 #721500;
}

.btn-gray {
    background-color: #666666;
    background-image: linear-gradient(to right, #333333, #666666);
    border-color: #4f4f4f;
    box-shadow: 0 2px 0 #2a2a2a;
}

.btn-brown {
    background-color: #7f4737;
    background-image: linear-gradient(#7f4737, #411e14);
    border-color: #6b3c2e;
    color: #ffe993;
}

.btn-yellow span,
.btn-brown span,
.btn-gray span {
    transition: 0s;
}

.btn-yellow:before,
.btn-brown: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(to right, #ff6b00, #c53105);
}

.btn-gray:before {
    background-image: linear-gradient(to right, #b1b1b1, #777777);
}

.btn-brown:before {
    background-image: linear-gradient(#a56733, #6d3a10);
}


@media(min-width:1201px){ 

    .btn-yellow:hover:before,
    .btn-brown:hover:before,
    .btn-gray:hover:before {
        opacity: 1;
    }

    .btn-yellow:hover {
        border-color: #ff7939;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 41, 0, 0.75);
    }

    .btn-gray:hover {
        border-color: #b1b1b1;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.25);
    }

    .btn-brown:hover {
        color: #ffe993;
        border-color: #a56733;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(122, 28, 0, 0.5);
    }

}


/* Banner Section */

.banner-section {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.banner-section:before,
.banner-section:after {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}

.banner-section:before {
    background-image: url(../img/bg/banner-bg.jpg);
    animation: bannerBgSide 14s ease infinite;
}

@keyframes bannerBgSide {
    0% { transform: scale(1.04); }
    50% { transform: scale(1.0); }
    100% { transform: scale(1.04); }
}

.banner-section:after {
    background-image: url(../img/bg/banner-bg.png);
    animation: bannerBgMid 14s ease infinite;
}

@keyframes bannerBgMid {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1.0); }
}

.banner-section .overlay {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25));
    z-index: 5;
}


/* Logo */

.logo {
    width: 300px;
    display: inline-block;
    position: relative;
    margin-bottom: 5px;
    z-index: 90;
}

.logo img,
.logo div {
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
}

.logo .logo-img,
.logo div .d-img {
    width: 100%;
    position: relative;
}

.logo .logo-img {
    opacity: 0;
}

.logo .panel {
    width: 100%;
    bottom: 0;
    animation: lgPanelAnim 9s ease infinite;
}

@keyframes lgPanelAnim {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    8% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    95% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.logo .bldg-left {
    width: 33.61%;
    top: 15%;
    left: 14%;
    right: auto;
    margin: 0;
    animation: lgBldgLeftAnim 9s ease infinite;
}

@keyframes lgBldgLeftAnim {
    0% {
        opacity: 0;
        transform: translateY(40%);
    }
    4% {
        opacity: 0;
        transform: translateY(40%);
    }
    14% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.logo .bldg-right {
    width: 26.64%;
    top: 10.75%;
    right: 14.75%;
    left: auto;
    margin: 0;
    animation: lgBldgRightAnim 9s ease infinite;
}

@keyframes lgBldgRightAnim {
    0% {
        opacity: 0;
        transform: translateY(30%);
    }
    6% {
        opacity: 0;
        transform: translateY(30%);
    }
    16% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.logo .bldg-mid {
    width: 41.39%;
    top: 0;
    left: 9%;
    animation: lgBldgMidAnim 9s ease infinite;
}

@keyframes lgBldgMidAnim {
    0% {
        opacity: 0;
        transform: translateY(30%);
    }
    2% {
        opacity: 0;
        transform: translateY(30%);
    }
    12% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.logo .bell-mid {
    width: 60%;
    top:10%;
    left:0;
    animation: lgBldgMidAnim 9s ease infinite;
}

@keyframes lgBldgMidAnim {
    0% {
        opacity: 0;
        transform: translateY(30%);
    }
    2% {
        opacity: 0;
        transform: translateY(30%);
    }
    12% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.logo .gangnam {
    width: 86%;
    bottom: 24%;
    animation: lgGangnamAnim 9s ease infinite;
}

@keyframes lgGangnamAnim {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    10% {
        opacity: 0;
        transform: scale(1.2);
    }
    20% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    95% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.logo .slot {
    width: 34.43%;
    bottom: 7%;
    right: 1%;
    animation: lgSlotAnim 9s ease infinite;
}

@keyframes lgSlotAnim {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }
    12% {
        opacity: 0;
        transform: scale(1.25);
    }
    22% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    95% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.logo .bell {
    width: 17.62%;
    bottom: 3.75%;
    right: 13%;
    left: auto;
    margin: 0;
    animation: lgBellAnim 9s ease infinite;
}

@keyframes lgBellAnim {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    16% {
        opacity: 0;
        transform: translateY(-100%);
    }
    22% {
        opacity: 1.0;
        transform: translateY(10%);
    }
    27% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.logo .bell .d-img {
    animation: lgBellImgAnim 2s ease infinite;
}

@keyframes lgBellImgAnim {
    0% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(20deg);
    }
    30% {
        transform: rotate(-15deg);
    }
    45% {
        transform: rotate(5deg);
    }
    60% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


/* Banner Carousel */

.banner-carousel {
    margin: 0 0 20px;
    position: relative;
    z-index: 20;
}

.banner-carousel .carousel-item {
    padding: 0 0 10px;
}

.banner-carousel h1,
.banner-carousel h2  {
    margin: 0 0 -1.5%;
    font-family: MBC1961GulimM;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
}

.banner-carousel h1 {
    font-size: 47px;
}

.banner-carousel h2 {
    font-size: 30px;
}

.banner-carousel .m-b-1 {
    margin: 0 0 0.5% !important;
}

.banner-carousel .carousel-item * {
    animation: carouselAnim 1s ease 1 backwards;
}

@keyframes carouselAnim {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }
    100% {
        opacity: 1.0;
        transform: translateY(0);
    }
}

.banner-carousel .carousel-item *:nth-child(2) {
    animation-delay: 0.2s;
}

.banner-carousel .carousel-item *:nth-child(3) {
    animation-delay: 0.4s;
}

.banner-carousel .indicator-panel {
    width: 100%;
}

.carousel-indicators {
    margin: 0 auto;
    bottom: 0;
    padding: 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 4px 5px;
    border-radius: 12px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: #ffffff;
    border:none;
    opacity: 1;
    transition: 0.3s;
}

.carousel-indicators li:hover {
    background-color: rgba(255, 255, 255, 1);
}

.carousel-indicators li.active {
    background-color: #fdc62d;
    background-image: linear-gradient(#fdc62d, #fdc62d, #a74c0a);
}


/* Banner Background */

.banner-background {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 10;
}

.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 .char-left {
    width: 28.82%;
    left: -3.25%;
    bottom: -16.5%;
    animation: charLeftAnim 11s ease infinite;
}

@keyframes charLeftAnim {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }
    15% {
        opacity: 1.0;
        transform: translateX(0);
    }
    95% {
        opacity: 1.0;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.banner-background .bldg-left {
    width: 70.53%;
    right: -20.5%;
    bottom: 9.25%;
    animation: bldgLeftAnim 11s ease infinite;
}

@keyframes bldgLeftAnim {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }
    10% {
        opacity: 0;
        transform: translateY(50%);
    }
    20% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.banner-background .puppet {
    width: 45.36%;
    right: -29.75%;
    bottom: 6%;
    z-index: 10;
    animation: puppetAnim 11s ease infinite;
}

@keyframes puppetAnim {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }
    16% {
        opacity: 0;
        transform: translateY(-25%);
    }
    26% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.banner-background .fireworks-01 {
    width: 22.68%;
    left: 2%;
    bottom: auto;
    top: -1%;
    animation: fireworksAnim 11s ease infinite;
}

@keyframes fireworksAnim {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 0;
    }
    20% {
        opacity: 1.0;
    }
    95% {
        opacity: 1.0;
    }
    100% {
        opacity: 0;
    }
}

.banner-background .fireworks-01 .d-img {
    animation: fireworksImgAnim 4s ease infinite;
}

@keyframes fireworksImgAnim {
    0% {
        opacity: 0;
        transform: translateY(200%) scale(0.1);
    }
    25% {
        opacity: 1.0;
        transform: translateY(0) scale(0.1);
    }
    30% {
        opacity: 1.0;
        transform: translateY(0) scale(1.0);
    }
    100% {
        opacity: 0;
        transform: translateY(25%) scale(1.0);
    }
}

.banner-background .char-right {
    width: 32%;
    right: 2.25%;
    z-index: 10;
    animation: charRightAnim 11s ease infinite;
}

@keyframes charRightAnim {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }
    15% {
        opacity: 1.0;
        transform: translateX(0);
    }
    95% {
        opacity: 1.0;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.banner-background .cyborg {
    width: 30.76%;
    left: -9%;
    bottom: -9%;
    animation: cyborgAnim 11s ease infinite;
}

@keyframes cyborgAnim {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }
    18% {
        opacity: 0;
        transform: translateY(-25%);
    }
    28% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.banner-background .bldg-right {
    width: 75.01%;
    right: -16%;
    bottom: 0.5%;
    animation: bldgRightAnim 11s ease infinite;
}

@keyframes bldgRightAnim {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }
    12% {
        opacity: 0;
        transform: translateY(50%);
    }
    22% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.banner-background .bldg-left .d-img,
.banner-background .bldg-right .d-img {
    animation: bldgImgAnim 0.5s ease infinite;
}

@keyframes bldgImgAnim {
    0% { filter: brightness(100%); }
    50% { filter: brightness(125%); }
    100% { filter: brightness(100%); }
}

.banner-background .fireworks-02 {
    width: 50.01%;
    right: -18.75%;
    bottom: auto;
    top: 11%;
    animation: fireworksAnim 11s ease infinite;
}

.banner-background .fireworks-02 .d-img {
    transform-origin: bottom center;
    animation: fireworksImg02Anim 4s ease infinite;
}

@keyframes fireworksImg02Anim {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    15% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.banner-background .coins {
    width: 112.35%;
    left: 47.75%;
    transform: translate(-50%,0);
    z-index: 5;
    overflow: hidden;
}

.banner-background .coins .d-img {
    animation: banCoinsAnim 11s ease infinite;
}

@keyframes banCoinsAnim {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }
    5% {
        opacity: 0;
        transform: translateY(25%);
    }
    20% {
        opacity: 1.0;
        transform: translateY(0);
    }
    95% {
        opacity: 1.0;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}


/* Header Section */

.header-section {
    width: 100%;
    height: 80px;
    position: sticky;
		top:0;
    /*margin: -80px 0 0;*/
    z-index: 99;
    background-color:#000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 1.0);
}

.affix .header-section {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 1.0);
}

.header-section:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(#222222, #1a1a1a);
    transition: 0.3s;
    opacity: 0;
}

.affix .header-section:before {
    opacity: 1.0;
}

.header-section:after {
    width: 80%;
    height: 1px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.affix .header-section:after {
    bottom: 0;
    top: auto;
}

.main-menu li {
    padding: 0 10px;
}

.main-menu li:first-child {
    padding-left: 0;
}

.main-menu li:last-child {
    padding-right: 0;
}

.main-menu li a {
    height: 30px;
		padding:0 20px;
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
    border: solid 1px rgba(75, 36, 24, 0);
    border-radius: 15px;
}

.main-menu li a i {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#ffe773, #fec72e, #ff8a12);
    background-size: 100% 100%;
    margin-right: 8px;
    text-shadow: none;
    font-size: 18px;
}

.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: 44px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.75);
    border: solid 1px rgba(255, 255, 255, 0.15);
    margin-left: 5px;
}

.before-login .input-panel .icon-panel {
    width: 40px;
    height: 100%;
    color: #ffefb1;
    text-shadow: 0 0 10px rgba(255, 139, 40, 1.0);
}

.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: #666666;
}

.before-login button {
    width: 100px;
    height: 40px;
    margin-left: 8px;
}

.bal-container .mobile {
    padding: 0 2px;
}

.bal-container .mobile button {
    width: calc(50% - 6px);
    margin: 0 3px;
}

.bal-container .mobile button i {
    margin-right: 5px;
}


/* After Login */

.after-login {
    display: none;
    position: relative;
}

.after-login.active {
    display: block;
}

.after-login button {
    width: 110px;
    height: 40px;
    margin-left: 5px;
}

.after-login .nav-btn {
    width: 50px;
    height: 40px;
    font-size: 16px;
    margin: 0 3px;
}

.after-login .nav-btn:hover {

}

.after-login .active .nav-btn:before {
    opacity: 1;
}

.after-login .message-btn .count {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #d90000;
    color: #ffffff;
    font-size: 9px;
    position: absolute;
    right: -10px;
    top: -4px;
    text-shadow: none;
    padding: 2px 0 0;
}


/* 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: #333333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
    border: solid 1px #555555;
    padding: 10px 10px;
    border-radius: 20px;
    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;
    height: 40px;
    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: 15px;
    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: 34px;
    height: 34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: #1a0701;
    border: solid 1px #4b2418;
    margin-right: 10px;
    font-size: 14px;
}

.after-login .account-info .labels .icon i {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#ffe773, #fec72e, #ff8a12);
    background-size: 100% 100%;
}

.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: #ffe773;
    margin-left:3px;
}

.after-login .account-info i{
    color: #ffe773;
    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 {
    padding: 40px 0 5px;
    background-color: #292525;
}

.page-content:before {
    width: 100%;
    min-height: 409px;
    left: 0;
    top: 0;
    background-image: url(../img/bg/main-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}


/* Providers Section */
.main-tit {margin:20px 0 40px 0;}

.providers-panel {
    width: calc(100% + 20px);
    margin: 0 -10px;
}

.sc-btn {
    width: calc(16.66% - 20px);
    max-width: 233px;
    margin: 0 10px 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border: solid 1px #ffffff;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-family: GmarketSansMedium;
}

.sc-btn:hover {
    background-color: #c32906;
    border-color: #ffa433;
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.75);
}

.sc-btn:after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    left: -1px;
    bottom: -1px;
    border-radius: 25px;
    border: solid 1px #fdc52d;
    background-color: rgba(158, 73, 12, 1.0);
    z-index: 10;
    transition: 0.3s;
    -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1.0));
    mask-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1.0));
}

.sc-btn:hover:after {
    height: 0;
    opacity: 0;
}

.sc-btn .bg {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
    background-color: #0a0a0a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
    transition: 0.3s;
}

.sc-btn:hover .bg {
    background-color: #250900;
}

.sc-btn .bg:before {
    width: 80%;
    height: 100%;
    left: 0;
    right: 0;
    top: -100%;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.7);
}

.sc-btn:hover .bg:before {
    box-shadow: 0 0 100px rgba(255, 147, 42, 1.0);
}

.sc-btn .g-panel {
    position: relative;
    z-index: 5;
}

.sc-btn .g-img {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.sc-btn:hover .g-img {
    bottom: 5%;
}

.sc-btn .g-logo {
    width: 70px;
    height: 70px;
    position: absolute;
    right: -4px;
    top: -4px;
    background-color: #0a0a0a;
    border-radius: 5px 25px 5px 40px;
    box-shadow: inset 2px -2px 5px rgba(0, 0, 0, 1.0), inset 1px -1px 0 rgba(255, 255, 255, 0.4), 1px -1px 0 rgba(255, 255, 255, 0.25);
    transition: 0.3s;
    display: none !important;!i;!;
}

.sc-btn:hover .g-logo {
    top: -8px;
    right: -8px;
    background-color: #250900;
    box-shadow: inset 2px -2px 5px rgba(0, 0, 0, 0.5), inset 1px -1px 0 #79311b, 1px -1px 0 rgba(255, 255, 255, 0.25);
}

.sc-btn .g-footer {
    width: 100%;
    max-width: 210px;
    height: 48px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -16px;
    margin: 0 auto;
    z-index: 15;
    background-color: #1a1a1a;
    border: solid 1px #3b3737;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.75);
    border-radius: 25px;
}

.sc-btn:hover .g-footer {
    background-color: #250900;
    border-color: #79311b;
}

.sc-btn .play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.sc-btn .play-btn i {
    font-size: 30px;
    position: relative;
    left: 5%;
    transition: 0.3s;
}

.sc-btn:hover .play-btn i {
    transform: rotate(180deg);
    opacity: 0;
}

.sc-btn .play-btn .text {
    position: absolute;
    opacity: 0;
    transform: rotate(-180deg);
    transition: 0.3s;
    display: inline-block;
    font-size: 11px;
}

.sc-btn:hover .play-btn .text {
    position: absolute;
    opacity: 1.0;
    transform: rotate(0deg);
}

.sc-btn .g-footer .g-title {
    width: calc(100% - 46px);
    display: inline-block;
    margin-left: auto;
    padding: 1% 4% 0 0;
    transition: 0s;
}


/* Board Section */

.board-section {
    background-color: #050505;
    padding: 40px 0 50px;
    z-index: 2;
}

.board-section:before {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-image: url(../img/bg/board-bg.png);
    background-position: bottom 1px center;
    background-repeat: no-repeat;
}

.board-panel {
    width: calc(50% - 30px);
		margin:10px 15px;
		/* width: calc(33.33% - 30px); 
    margin: 10px 0;
		*/
}

.board-panel .header {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-size: 20px;
    font-family: GmarketSansBold;
    border-radius: 10px;
    background-color: rgba(160, 160, 160, 0.25);
    border: solid 1px #4a4a4a;
}

.board-panel .header .icon-panel {
    margin-right: 10px;
}

.board-panel .header .title {
    top: 2px;
    position: relative;
}

.board-panel .header .more-btn {
    height: 20px;
    padding: 0 15px;
    border-radius: 10px;
    background-color: #d13000;
    border: none;
    color: #ffffff;
    font-size: 11px;
    font-family: GmarketSansLight;
}

.board-panel .header .more-btn:hover {
    background-color: #a71700;
}

.board-panel .content {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    margin: 6px 0 0;
}

.board-panel table tr td {
    height: 50px;
    cursor: pointer;
    border-bottom: dashed 1px rgba(255, 255, 255, 0.1);
}

.board-panel table tr:hover td {
    background-color: rgba(34, 34, 34, 0.75);
}

.board-panel table tr td:first-child {
    padding-left: 10px;
}

.board-panel table tr td:last-child {
    padding-right: 10px;
}

.board-panel table tr td a {
    color: #ffffff;
}

.board-panel table tr td a:hover {
    color: #ffe47b;
}

.board-panel table tr .date-td {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.new-icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    background-color: #ff4100;
    background-image: linear-gradient(#ff4100, #bd0e0e);
    text-align: center;
    margin-left: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);;
    position: relative;
}


/* Realtime Board */

.realtime-board {
		display:none;
    width: 33.33%;
    margin: 10px 30px;
    border-radius: 25px;
    padding: 10px 30px;
    border: solid 1px #444444;
    background-image: linear-gradient(rgba(140, 140, 140, 0.25), rgba(160, 160, 160, 0.25));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0), inset 0 0 10px rgba(0, 0, 0, 1.0);
}

.realtime-board:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.realtime-board .header{
    position: relative;
    font-family: GmarketSansBold;
}

.realtime-board .header .icon-img {
    position: absolute;
    left: 10px;
    bottom: 0;
}

.realtime-board .header .title-panel {
    width: 100%;
    text-align: left;
    padding-left: 125px;
    font-size: 24px;
}

.realtime-board .header .title-panel .sub {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    letter-spacing: 2px;
}

.realtime-board .realtime-nav {
    width: 100%;
    height: 50px;
    background-color: #1a0701;
    border: solid 1px #4b2418;
    margin: 0 0 5px;
    padding: 0 6px 0 120px;
    border-radius: 15px;
}

.realtime-board .realtime-nav button {
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    max-height: 40px;
    border-radius: 25px;
    border: none;
    background-color: transparent;
    color: #a5847a;
    font-size: 16px;
    font-family: GmarketSansMedium;
    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: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.realtime-board .realtime-nav button.active {
    color: #ffffff;
    background-image: linear-gradient(to right, #a64b0a, #fec72e);
    border: solid 1px #c07010;
    box-shadow: 0 2px 0 #721500;
}

.realtime-board .realtime-nav button i {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}

.realtime-board .realtime-nav button.active i {
    color: var(--yellow);
}

.realtime-board .content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.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 {
    font-family: GmarketSansBold;
    font-size: 16px;
    width: 35%;
    padding-right: 3%;
    text-shadow: 0 1px 1px 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;
}

.footer-section .footer-providers {
    padding: 25px 0 30px;
}

.footer-section .footer-providers img {
    max-width: 100px;
    max-height: 30px;
    margin: 10px 20px;
}

.footer-section .footer-copyright {
    padding: 30px 0 40px;
}

.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: 200px;
    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;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
    text-shadow:0 1px 0 rgba(255,255,255,0.25);
    border:none;
    border-radius:50%;
    position:fixed;
    bottom:20px;
    right:30px;
    color: rgba(0, 0, 0, 0.75);
    font-size:34px;
    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;
    background-color: #292525;
    background-color: #0f0f0f;
    background-image: url(../img/bg/board-bg.png);
    background-position: bottom 1px center;
    background-repeat: no-repeat;
}

.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;
}

#login-modal .modal-dialog {
    max-width:400px;
}

.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: 300px;
    overflow: hidden;
    padding: 0 30px 0 0;
    border-right: solid 1px rgba(255, 255, 255, 0.1);
}

.modal-sidebar .header {
    width: 100%;
    height: 50px;
    margin: 0 0 10px;
    background-color: #291c0c;
    border: solid 1px #8f7230;
    border-radius: 10px;
    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;
}

.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(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: solid 2px rgba(0, 0, 0, 0);
}

.modal-menu li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 1.0);
}

.modal-menu li a.active {
    color: #ffffff;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    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);
    border-color: #ffdc30;
}

.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;
    text-shadow: none;
}

.modal-menu li a:hover .icon-panel i {
    color: #fff0a6;
}

.modal-menu li a.active .icon-panel i {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#ffe773, #fec72e, #ff8a12);
    background-size: 100% 100%;

}

.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% - 300px);
    margin-left: auto;
    border-radius: 10px;
}

.no-sidebar .modal-panel {
    border-radius: 10px;

}


/* Modal Title */

.modal-title {
    width: 100%;
    padding: 15px 0;
    overflow: hidden;
}

.modal-title:before {
    width: 50%;
    height: 1px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.modal-title:after {
    width: 50%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: -100%;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
}

.modal-title .icon {
    margin-right: 12px;
}

.modal-title i {
    font-size: 30px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    top: -2px;
    position: relative;
}

.modal-title .title{
    color:#ffffff;
    font-size: 24px;
    white-space: nowrap;
    margin: 0;
}


/* Modal Body */

.modal-body {
    padding: 10px 30px 40px;
}


/* Modal Info */

.modal-info {
    width: 100%;
    height: 60px;
    border-radius: 15px;
    margin: 0 0 30px;
    padding: 0 15px 0 100px;
    background-color: #1a0701;
    border: solid 1px #4b2418;
}

.modal-info.no-icon {
    padding: 0 15px;
}

.modal-info .icon-img {
    width: 80px;
    position: absolute;
    left: 10px;
    bottom: 0;
}

.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.1);
    border: solid 1px rgba(255, 255, 255, 0.15);
    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: #ffea6b;
    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.1);
    border: solid 1px rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    position: relative;
}

.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 .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 .checkbox-input {
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-left: 10px;
}

.form-container .form-group .checkbox-input input {
    width: 13px;
    height: 13px;
}

.form-container .form-group .checkbox-input input {
    margin-right: 5px;
    cursor: pointer;
}

.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: #cf2e0a;
}

.form-container .form-group .infos .btn-grp button:last-child:hover {
    background-color: #ff2f00;
}


/* Form Footer */

.form-footer {
    width: 100%;
    margin: 50px 0 0;
    flex-wrap: nowrap;
}

.form-footer button {
    width: 160px;
    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: 5px;
    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: #fec72e;
    background-image: linear-gradient(#fec72e, #8f3e04);
}

.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;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
}

.bs-table thead th:first-child {
    border-radius: 10px 0 0 10px;
}

.bs-table thead th:last-child {
    border-radius: 0 10px 10px 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: 10px 0 0 10px;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
}

.bs-table tr td:last-child {
    border-radius: 0 10px 10px 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: #ffea6b;
}

.bs-table tr.active .title-td {
    color: #ffea6b;
}

.bs-table tr.active td a {
    color: #ffea6b;
}

.bs-table tr .count-td {
    width: 60px;
}

.bs-table tr .count-tag {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    padding: 1px 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffebb6;
    background-color: #1a0701;
    border: solid 1px #432a23;
}

.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: 200px;
    margin: 2px 0 5px;
}

.with-depth tr.depth-click {
    cursor: pointer;
}

.with-depth tr.dropdown {
    background-color: transparent;
}

.with-depth tr.dropdown td {
    padding: 0;
    border: none;
    height: auto;
    box-shadow: none;
}

.with-depth tr.dropdown td {
    background-color: transparent;
    border: none;
}

.with-depth tr.dropdown: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: pre-wrap;*/
    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: #f7c50f;
    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: #fff0a6;
}

.modal-list a.active i {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#ffe773, #fec72e, #ff8a12);
    background-size: 100% 100%;
    text-shadow: none;
}


/* 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 {
    padding: 0 15px;
}

.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: 10px;
    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:10px;
    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: 10px;
    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: 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: 705px;
    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(#fec72e, #a64b0a);
    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;
}

.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;
}

.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;
    border-radius: 50%;
    overflow: hidden;
    font-size: 22px;
    opacity: 0;
    transition: 0.3s;
    padding: 0 0 0 2px;
}

.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, 0.5), 0 0 5px rgba(255, 255, 255, 0.75);
        background-color: #250e08;
        border-color: #693a2b;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .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%);
    }
}


/* Zino Link */

.zino-link {
    width: 260px;
    height: 46px;
    background-image: linear-gradient(#197b99, #0ea0ca, #00c6ff, #00c6ff, #02aee7, #0b78aa);
    border-radius: 5px;
    border: solid 1px #66ccff;
    color: #000000;
    font-size: 21px;
    font-family: MBC1961GulimM;
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.zino-link:hover {
    border-color: #ffc214;
    color: #672b00;
}

.zino-link:before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: linear-gradient(#fff038, #ffc214, #df5d00);
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.zino-link:hover:before {
    opacity: 1.0;
}

.zino-link .icon-panel {
    min-width: 42px;
    height: 38px;
    background-color: #1b1a1a;
    border-radius: 5px;
    margin-right: 4%;
    transition: 0.3s;
}

.zino-link .icon-panel {
    background-color: rgba(0, 0, 0, 0.75);
}

.page-content {min-height:400px;}

.board-container {width:100%;padding:20px;min-height:400px;background:rgba(0,0,0,0.4)}
.board-container .list-table {width:100%;border-collapse:collapse;}
.board-container .list-table thead th {font-weight:500;background:#b6954f;height:36px;line-height:36px;text-align:center}
.board-container .list-table tbody td {padding:10px;border-bottom:1px solid #222;text-align:left;background:#000}

.board-container .view-table {width:100%;border-collapse:collapse;}
.board-container .view-table tbody td {padding:0 10px;border:1px solid #222;text-align:left;background:#000}
.board-container .view-table tbody td.tit {height:50px;line-height:50px}
.board-container .view-table tbody td.cont {padding:10px}

.board-container .btn-wrap {width:100%;padding:20px 0;display:flex}
.board-container .page-wrap {width:100%;padding:20px 0;display:flex;justify-content:center;align-items:center;gap:6px;font-size:14px}
.board-container .page-wrap a {display:inline-block;padding:6px;border:1px solid #222}
.board-container .page-wrap a.active {color:#b6954f}

.board-container>.item {width:100%;margin-bottom:20px;padding:10px;border:1px solid #333;border-radius:6px;text-align:left;background:#000}
.board-container>.item .item-title {width:100%;font-size:18px;padding:6px 0;border-bottom:2px solid #333;}
.board-container>.item .item-content {width:100%;font-size:16px;padding:6px 0;font-weight:400;}
.board-container>.item input {border-radius: 8px;border: 1px solid #e2e8f0;background-color: #fff;font-size: 14px;width: 100%;padding: 6px;}

.popup-container {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;background:rgba(0, 0, 0, .5);z-index:9999;}
.popup-wrap {width:1440px;margin:0 auto;display:flex;flex-wrap:wrap;align-items:flex-start;gap:10px}
.popup-container .popup-wrap .popup-box {display:inline-block;margin-top:68px;width:calc(25% - 10px);margin-right:10px;overflow:hidden;background:#fff;color:#000;border:1px solid #fff;animation:opacityIn .3s;transition:opacity .3s;}
.popup-container .popup-wrap .popup-box .popup-contents-box {min-height:400px;padding:0}
.popup-container .popup-wrap .popup-box .popup-contents-box img {display:block;width:100%;max-height:calc(100vh - 150px);}
.popup-container .popup-wrap .popup-box .popup-footer {height:24px;background-color:#D5D5D5;color:#000;display:flex;justify-content:flex-end;align-items:center;padding-right:10px;}
.popup-container .popup-wrap .popup-box .popup-footer a {display:inline-block;font-weight:700;color:inherit;margin-left:20px}

.btnwrap {width:100%;margin-top:10px;display:flex;flex-wrap:wrap;justify-content:space-between;row-gap:4px;}
.btnwrap button {width:calc(10% - 2px);cursor:pointer;padding:8px 12px;font-size:14px;font-weight:500;color:#fff;border:1px solid #111;background:linear-gradient(to bottom, rgba(80, 80, 80, 1) 1%, rgba(33, 33, 33, 1) 100%);}

.btn-mid {display:inline-block;text-align:center;color:#fff;cursor:pointer;padding:8px 30px;font-size:14px;border-radius:0}
.btn-gray {border:1px solid #111;background:linear-gradient(to bottom, rgba(80, 80, 80, 1) 1%, rgba(33, 33, 33, 1) 100%);}
.btn-gold {border:1px solid #956628;background:linear-gradient(180deg, #fffaa5 0, #956628);}

.search-wrap {position: relative;display:flex;padding:10px}
.search-wrap input[type=text] {border: 1px solid #e2e8f0;background-color: #fff;font-size:14px;width:100%;padding:8px}
.search-wrap .icon-search {display: block;width: 20px;height: 20px;position: absolute;left: 12px;top: 50%;transform: translateY(-50%);}

@media only screen and (max-width:768px) {
	.board-container {padding:4px}
	.board-container .list-table {font-size:14px;}
	.board-container .list-table thead th {height:30px;line-height:30px;}
	.board-container .list-table tbody td {padding:10px 6px;}
	.board-container .view-table {font-size:14px;}
	
	.popup-wrap {width:100%;flex-wrap:wrap;justify-content:center}
	.popup-container .popup-wrap .popup-box {margin-top:40px;width:calc(90% - 10px);}
	
	.btnwrap button {width: calc(20% - 2px);padding:8px 8px;font-size:12px}
	
	
	.btn-mid {padding:4px 10px;font-size:12px}
}
