@charset "UTF-8";
.btnN {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font00);
    padding: 11px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 15px;
    white-space: nowrap;
    min-width: 110px;
    background: var(--main);
}

.btnN > span {
    font-size: 14px;
    margin-right: 3px;
}

.redB {
    background-color: var(--btn01);
    transition: .3s ease-out
}

.redB:hover {
    background-color: #4fcdff
}

.blueB {
    background-color: #f0ab05;
    transition: .3s ease-out
}

.blueB:hover {
    background-color: #ffcb52
}

#betLoading {
    color:white;
    z-index: 10;
    position: absolute;
    background: #2525268a;
    text-align: center;
    padding: 0 30px 21px;
    top: 50%;
    left: 50%;
    border-radius: 12px;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.info-wrap {
    color: #ffffff;
    padding: 25px;
    font-size: 1rem;
    line-height: 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg02);
    box-shadow: 2px 4px 5px 1px rgb(214 214 214 / 10%), inset 0 0 6px 1px var(--bg01);
}
.info-wrap.memo {
    color:#1eff00;
}
.info-wrap.memo .tit {
    color:#fff500;
    font-weight:600;
}
.info-wrap .tit{
    color: var(--main);
}
.info-wrap.cash {
    display: flex;
    flex-wrap: wrap;
}
.info-wrap.cash .desc {
    min-width: 100px;
    white-space: nowrap;
}
.info-wrap.letter {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.info-wrap.letter .desc {
    min-width: 120px;
}
.input-wrap {
    padding: 10px;
    font-size: 1rem;
    line-height: 28px;
    align-items: center;
}

.info-wrap.cash .input-wrap {
    display: flex;
    width: 50%;
    flex-wrap: wrap;
}

.input-wrap .desc{
    color: var(--main);
}

.input-wrap select {
    border: none;
    border-bottom: 1px solid #9e9e9e;
    color: black;
    background-color: #eeeeee;
}

.input-wrap option {
    color: #434343;
}

.button-wrap {
    display: flex;
    justify-content: center;
}
.money-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}
.money-wrap button.money {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    background: var(--btn01);
    min-width: 85px;
}
.tb_empty {
    text-align: center;
    padding: 30px;
    background: #b8b8b82b;
    color: var(--font01);
}
.tb_empty .pic {
    padding-bottom: 20px;
}

.tb_empty .pic img{
    width: 100%;
    max-width: 300px;
}

.wrapper_loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.loading-box {
    z-index: 1;
    background-color: #484848b8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    border-radius: 10px;
}
.loading-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}
.loading-box .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(32, 64, 120, 0.1019607843);
}
.loading-box .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    -webkit-transform-origin: 120px 120px;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}
.loading-box .loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #ffffff;
}
.loading-box .logo {
    width: 100%;
    height: auto;
    vertical-align: middle;
    text-align: center;
}
.loading-box .logo img {
    width: 64px;
    height: 64px;
}
.loading-box .jump {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: jump 0.5s linear alternate infinite;
            animation: jump 0.5s linear alternate infinite;
}
.loading-box h1.loader_sports {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: transparent;
    letter-spacing: 0.5em;
}
.loading-box h1.loader_sports span {
    display: inline-block;
    text-shadow: 0 0 2px white, 0 15px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(153, 111, 240, 0.45);
    -webkit-animation: heartbeat 4s infinite;
            animation: heartbeat 4s infinite;
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    font-size: 1.2em;
}

.switcher + .switchee {
    display: none;
}

.switcher.opened + .switchee {
    display: block;
}

.flow-list {
    position: relative;
    top: 0;
    animation: scroll 5s linear 1s infinite;
}
.flow-list.list-charge {
    animation-name: scroll-charge;
    animation-duration: var(--tl-charge-duration);
}

@keyframes scroll-charge {
    100% {
        top: var(--tl-charge-offset);
    }
}

marquee {
    padding:0.5em 0;
    overflow:hidden;
    position:relative;
    display:flex;
    width: 100%;
    align-items: center;
    color: #13bc42;
    line-height: normal;
}

/* header */
.header {background: black;}
.header .headerWrapper {display: flex;justify-content: space-between;max-width: var(--max-width);margin: auto;}
.header .headerWrapper .logo {display: flex;align-items: center;justify-content: center;}
.header .headerWrapper .logo img {height:60px}
.header .headerWrapper .topZone{display: flex;width: 100%;align-items: center;padding: 15px 0;justify-content: flex-end;}
.header .headerWrapper .topZone li {cursor:pointer;padding: 0 10px;border-left: 1px solid #6e6b6b;display: flex;align-items: center;color: white;gap: 5px;}
.header .headerWrapper .topZone li:first-child{border-left:none}
.header .headerWrapper .topZone li .txt b {color:#f8d700; margin-left:5px}

.header .headerWrapper .downZone {display: flex;align-items: center;justify-content: center;gap: 30px;padding-bottom: 10px;font-size: 18px;font-weight: 600;}
.header .headerWrapper .downZone li a {text-align:center;cursor: pointer;}
.header .headerWrapper .downZone li a .sub {color:#bc8506;margin-top: 6px;display: none;}
.header .headerWrapper .downZone li a .txt {font-family:'Jalnan' !important;font-weight:400}
.header .headerWrapper li:active a,
.header .headerWrapper li:hover a{color:#ee6e73}

.header .headerWrapper .rightZone {width: 88%;}
.header .notice_wrap {border-bottom: solid 1px #232323;/* background: #1b1b1b; */}
.header .notice_wrap .notice {margin: auto;max-width: var(--max-width);display: flex;align-items: center;background: #1b1b1b;}
.header .notice_wrap .icon-bell {white-space:nowrap;padding: 6px 12px;border-radius: 5px;background: linear-gradient(0deg, #a5a5a5 0%, white 51%, #909090 100%);color: #000000;font-weight: 600;text-shadow: 1px 1px 1px rgb(255 255 255 / 88%);}
.header .notice_wrap .time {color:white;white-space:nowrap;padding: 6px 10px;}

.header .game_wrap {background: #292929;}
.header .game_wrap .mini_list {max-width: var(--max-width);margin: auto;position: relative;display: none;overflow: hidden;}
.header .game_wrap .mini_list.active {height: unset;visibility: visible;}
.header .game_wrap .mini_list .arrow {background: #1d1d1d;width: 35px;height: 80px;position: absolute;cursor:pointer;z-index: 9;color: white;display: flex;font-size: 20px;align-items: center;justify-content: center;top: 0;}
.header .game_wrap .mini_list .arrow.left {left:0}
.header .game_wrap .mini_list .arrow.right {right:0}
.header .game_wrap .mini_list ul {display: -webkit-inline-box;padding: 0 40px;}
.header .game_wrap .mini_list ul li{width: 75px;height: 75px;position: relative;border-radius: 15px;overflow: hidden;border: 1px solid #666666;margin: 3px 0;margin-right: 3px;cursor: pointer;}
.header .game_wrap ul li .bg{width: 100%;height: 100%;background: no-repeat center #535353;background-size: cover;}
.header .game_wrap ul li .title {position: absolute;background: linear-gradient(0deg, #00000069, #838383ad);width: 100%;height: 100%;top: 0;text-align: center;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.header .game_wrap ul li:hover .title {background: linear-gradient(0deg, #393939cf, #3d3d3dcf);}
.header .game_wrap ul li .title .txt {color: white;font-size: 13px;filter: drop-shadow(2px 2px 2px black);}
.header .game_wrap ul li .title .sub {color: #face1f;font-size: 13px;filter: drop-shadow(2px 2px 2px black);margin-top: 3px;}

/* banner */
.skitter-large {width: 100% !important;max-width: unset;}
.label_skitter {bottom: 24%;left: 2%;width:auto;text-align:center;background: no-repeat;}
.label_skitter p {letter-spacing: 1px;font-size: 2rem;line-height: 3.5rem;font-family: 'S-Core',sans-serif;font-weight: 600;filter: drop-shadow(2px 3px 1px black);}
.skitter .info_slide {visibility:hidden;}
.skitter:hover .info_slide {visibility:visible;}

/* footer */
.footer {width: 100%;float: left;background: #151515;color: #c6c6c6;text-align: center;font-size: 10px;line-height: 26px;}
.footer img.footer-logo {height:60px;margin-top:10px}
.footer ul {display:flex;justify-content: center;gap: 30px;font-size: 30px;margin: 20px;color: #607d8b;}
.footer .copyright {text-align: center;margin: 25px 0;}
.footer .copyright img {width: 180px;margin: 0 50px;filter: grayscale(1);}
.footer .copyright .license {margin-top: 25px;font-size: 16px;color: #8d8d8d;}
.footer_notice {animation: downIn-1547b184 .4s;animation-fill-mode: forwards;opacity: 0;}

@keyframes downIn-1547b184 {
    0% {
        -webkit-transform: translateY(50%);
        -moz-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.aniFrame {
    animation: leftIn-1547b184 .4s;
    animation-fill-mode: forwards;
    opacity: 0
}

@keyframes leftIn-1547b184 {
    0% {
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -o-transform: translateX(50%);
        transform: translate(50%);
        opacity: 0
    }

    to {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translate(0);
        opacity: 1
    }
}

.titleLine {
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    padding: 20px 0;
}

.titleLine .titleWrap {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.titleLine .titleWrap .leftZone {
    color: #828282;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: start;
    transform: translateZ(0);
    margin-right: 15px
}

.titleLine .titleWrap .leftZone span.icon-logob {
    font-size: 2.3vw;
    margin-right: 4px
}

.titleLine .titleWrap .leftZone h4 {
    font-size: 1.4vw;
    margin-right: .5vw
}

.titleLine .titleWrap .leftZone span {
    color: var(--main);
    font-size: 1.7rem;
    white-space: nowrap
}

.titleLine .titleWrap .leftZone span.Logo {
    width: 146px;
    height: auto;
    aspect-ratio: 300/67;
    background-image: url(../images/main/logo.png);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 5px
}

.titleLine .titleWrap .line {
    height: 2px;
    width: 100%;
    background-color: var(--main);
    position: relative
}

.titleLine .titleWrap .line:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--main);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%,-50%)
}

.main_content_wrap_notice {
    margin-top: 10px!important;
}

.main_content_wrap_notice .listZone ul.imgList {
    display: grid;
    grid-template-columns: var(--pc-thumb-cnt);
    gap: 10px;
}

.main_content_wrap_notice .listZone ul.imgList li {
    background: var(--bg02);
    min-width: 0;
    width: 100%;
    transition: .4s ease-out;
    position: relative;
    border: 1px solid #484848;
    border-radius: 12px;
    animation-name: fadeInUp;
    overflow: hidden;
}

.main_content_wrap_notice .listZone ul.imgList li .hintP {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    width: 15%;
    height: auto;
    padding-bottom: 5%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 11px;
    top: -4px;
    left: 3%;
    color: #ffffff;
    letter-spacing: -1px;
    font-size: .6vw;
    z-index: 1
}

.main_content_wrap_notice .listZone ul.imgList li .upZone {
    border-radius: 9px 9px 0 0;
    overflow: hidden;
    cursor: pointer
}

.main_content_wrap_notice .listZone ul.imgList li .upZone img {
    width: 100%;
    height: auto;
    transition: .4s ease-out
}

.main_content_wrap_notice .listZone ul.imgList li:hover .upZone img {
    transform: scale(1.1)
}

.main_content_wrap_notice .listZone ul.imgList li .bottomZone {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.main_content_wrap_notice .listZone ul.imgList li .bottomZone h3 {
    color: #d5d5d5;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main_content_wrap_notice .listZone ul.imgList li .bottomZone .btnP {
    color: #ffffff;
    padding: 8px 10px;
    text-decoration: none;
    background-color: #666666;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s ease-out;
}

.main_content_wrap_notice .listZone ul.imgList li .bottomZone .btnP:hover {
    background-color: #787878;
}


.main_content_wrap_notice .listZone table {
    width: 100%;
    margin-top: 10px;
}

.main_content_wrap_notice .listZone table tr {
    transition: .4s ease-out
}

.main_content_wrap_notice .listZone table tr:hover {
    background-color: var(--bg01);
}

.main_content_wrap_notice .listZone table tr th {
    padding: 10px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    background-color: var(--main03);
    border-radius: 0;
    vertical-align: middle;
}

.main_content_wrap_notice .listZone table tr td {
    color: white;
    font-size: 1rem;
    padding: 10px;
    border-bottom: 1px solid var(--main03);
    position: relative;
    vertical-align: middle;
}

.main_content_wrap_notice .listZone table tr td label {
    padding-left: 15px;
}

.main_content_wrap_notice .listZone table tr td.back {
    color: #00a8ea!important
}

.main_content_wrap_notice .listZone table tr td a {
    color: var(--font00);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main_content_wrap_notice .listZone table tr td a.goResult {
    color: #ffffff;
    font-size: 14px;
    display: block;
    background-color: #00a8ea;
    padding: 12px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: .4s all ease-out
}

.main_content_wrap_notice .listZone table tr td a.goResult:hover {
    background-color: #4fcdff
}

.main_content_wrap_notice .listZone table tr td img.logo {
    width: 77px;
    margin-right: 6px
}

.main_content_wrap_notice .listZone table tr td h5 {
    display: none
}

.main_content_wrap_notice .listZone table tr td .btnFrame {
    display: flex;
    align-items: center
}

.main_content_wrap_notice .listZone table tr td .btnT {
    color: #ffffff;
    background-color: #00a8ea;
    width: 121px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: .4s ease-out;
    margin-left: 6px;
    border: 0px
}

.main_content_wrap_notice .listZone table tr td .btnT:hover {
    background-color: #4fcdff
}

.main_content_wrap_notice .listZone table tr:nth-child(even):hover .uLine {
    text-decoration: underline
}

.main_content_wrap_notice .listZone table tr:nth-child(even):hover .frame01 {
    border: 1px solid #6a7391
}
.btn-wrap {
    margin-top: 15px;
}
.btn-wrap > button {
    background-image: linear-gradient(135deg, #d9d9d9 0%, #a6a6a6 25%, #d9d9d9 50%, #a6a6a6 75%, #d9d9d9 100%);
    color: black;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
}
.bet-list-wrap.listZone {
    margin-top: 5px;
}
.bet-list-wrap .bet-content{
    padding: 5px;
    margin: 0;
    background: #202326;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
}
.bet-list-wrap .bet-content.on {
    border: 1px solid #00a8ea;
}
.bet-list-wrap .league-wrap{
    display:flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.bet-list-wrap .sel-pick {
    background: #810707;
}

.bet-list-wrap .team-info-wrap img{
     width: 10px;
}

.bet-list-wrap .status{
    padding: 3px 10px;
    border-radius: 5px;
    white-space: nowrap;
    color: white;
}

.bet-list-wrap .bet-result {
    display: flex;
    color: white;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}

.bet-list-wrap .bet-result.sports {
    justify-content: space-between;
}

.bet-list-wrap .chk-wrap [type=checkbox]+label:before
{
    background:white
}

.bet-list-wrap .chk-wrap [type=checkbox]:checked+label:before
{
    background:none;
    border-right-color: white;
    border-bottom-color: white;
}

.bet-list-wrap .btn-sel {
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    left: 16px;
    top: 16px;
}
.bet-list-wrap .btn-sel.icon-state:before {
    content:'\e97b';
    color:white;
    font-size: 14px;
}

.bet-list-wrap .on .btn-sel.icon-state:before {
    content:'\e97b';
    color:#00a8ea;

}
.bet-list-wrap .slip .btn-sel {
    display: flex;
    position: relative;
    left: 0;
    top: 0;
}

.bet-list-wrap .slip .btn-sel span{
    padding: 5px;
    margin: 0;
    font-size: 12px;
    color: #03a9f4;
}

.bet-list-wrap .bet-result button {
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    background-image: linear-gradient(135deg, #d9d9d9 0%, #a6a6a6 25%, #d9d9d9 50%, #a6a6a6 75%, #d9d9d9 100%);
    color: black;
}

.bet-list-wrap .bet-result .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bet-list-wrap .bet-result .info .sp-number {
    color: #00a8ea;
    font-size: 16px;
    font-weight: 600;
}

.bet-list-wrap th {
    border-left: 1px solid #858585;
}

.bet-list-wrap td {
    border-left: 1px solid #606060;
}
.bet-list-wrap .away-handi-mark,
.bet-list-wrap .icon-arrow-up {
    color: #F44336;
    margin: 0 2px;
}

.bet-list-wrap .home-handi-mark,
.bet-list-wrap .icon-arrow-down {
    color: #03A9F4;
    margin: 0 2px;
}
.bet-list-wrap .rate {
    color: #ffca2c;
}

.bet-list-wrap .slip {
    margin-bottom: 10px;
    background: linear-gradient(0deg, black, #272626);
    border-radius: 7px;
}

.bet-list-wrap .slip.on {
    border: 1px solid #03a9f4;
}
.bet-list-wrap .slip .title{
    background: #03A9F4;
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    border-radius: 5px 5px 0px 0px;
}
.bet-list-wrap .slip .title .time {
    font-size: 12px;
    font-family: ko-bold!important
}

.bet-list-wrap .slip .title .txt {
    font-size: 14px;
    font-family: ko-bold!important;
    color: white;
}

.bet-list-wrap .slip .content {
    padding: 1px 8px 6px;
    position: relative
}

.bet-list-wrap .slip .content .ballZone {
    font-size: 12px;
    border-bottom: 1px dotted #cac5c5;
    color: white;
    padding: 10px 5px;
}

.bet-list-wrap .slip .content .ballZone .team-wrap{
    display: flex;
    padding-bottom: 10px;
    align-items: center;
}

.bet-list-wrap .slip .content .ballZone .team-wrap .team{
    color: #66d4ff;
    display: flex;
    align-items: center;
}

.bet-list-wrap .slip .content .ballZone .team-wrap .team img{
    margin-right: 5px;
}

.bet-list-wrap .slip .content .ballZone .time-wrap {
    display:flex;
    align-items: center;
    margin-bottom: 8px;
}
.bet-list-wrap .slip .content .ballZone .time-wrap .time{
    font-size: 11px;
    margin-right: 6px;
}

.bet-list-wrap .slip .content .ballZone .time-wrap .mark{
    color: #8cd4f5;
}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap {
    display: flex;
    border-radius: 5px;
    justify-content: space-between;
    height: 30px;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
}
.bet-list-wrap .slip .content .ballZone .bet-pick-wrap > div{
    border: 1px solid #8c8c8c;
    padding: 7px 5px;
    text-align: center;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .home-pick {width: 100%;height: 100%;}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .base-line {height: 100%;}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .away-pick {width: 100%;height: 100%;}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .team-name {
    font-size: 10px;
}
.bet-list-wrap .slip .content .ballZone .score-wrap {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bet-list-wrap .slip .content .ballZone .score-wrap .score {
    color: #4fcdff;
}
.bet-list-wrap .slip .content .status{
    padding: 5px 10px;
    border-radius: 5px;
    background: #0088ff;
    white-space: nowrap;
}

.bet-list-wrap .slip .content .resultZone {
    margin-top: 7px;
    align-items: center;
    width: 100%;
    align-items: end;
    color: white;
    font-size: 13px;
}

.bet-list-wrap .slip .content .resultZone .result{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
}

.bet-list-wrap .slip .content .resultZone .result .sp-number {
    font-size: 16px;
    color: #32dbff;
    font-weight: 600;
}
.bet-list-wrap .slip .content .resultZone .button-wrap{
    border-top: 1px solid #5d5c5c;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-top: 5px;
    gap:5px;
}
.bet-list-wrap .slip .content .resultZone .button-wrap button {
    padding: 7px 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #d9d9d9 0%, #a6a6a6 25%, #d9d9d9 50%, #a6a6a6 75%, #d9d9d9 100%);
    color: black;
}
.bet-list-wrap td .icon-check:before{
    content:'\ebb7';
    font-size: 21px;
    cursor: pointer;
}

.bet-list-wrap td.on .icon-check:before{
    content:'\ebb6'
}

.paging_box {
    text-align: center;
    width: 100%;
    margin-top: 42px
}

.paging_box ul {
    width: auto;
    display: inline-block;
    padding: 0
}

.paging_box ul li {
    background: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    margin-right: 4px!important
}

.paging_box ul .prev {
    margin-left: 0
}

.paging_box ul li a {
    font-size: 12px;
    color: #565656;
    border: 1px solid transparent;
    padding: 0 12px;
    border-radius: 3px;
    transition: .4s ease-out;
    text-decoration: none
}

.paging_box ul li a:hover {
    background: #f3f3f9;
    border: 1px solid #f3f3f9
}

.paging_box ul li.active,.paging_box ul li.on,.paging_box ul li:hover a {
    color: #ffffff;
    background: var(--main03);
    border: 1px solid var(--main);
}

.paging_box ul .first,.paging_box ul .last {
    position: relative
}

.paging_box ul .first a,.paging_box ul .last a,.paging_box ul .next a,.paging_box ul .prev a {
    color: #999999
}

.paging_box ul .first span,.paging_box ul .last span {
    position: relative
}

.paging_box ul .first span:after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #999999!important;
    position: absolute;
    top: 50%;
    left: 57%;
    transform: translate(25px,-50%)
}

.paging_box ul .last span:after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #999999;
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(-22px,-50%)
}

.paging_box ul li.first:hover a,.paging_box ul li.prev:hover a,.paging_box ul li.next:hover a {
    color: #ffffff;
    background: #00a8ea;
    border: 1px solid #00a8ea
}

.noticeFrame {
    width: 100%;
    height: auto;
    padding-bottom: 22px
}

.noticeFrame .title {
    color: #161616;
    font-size: 26px;
    font-weight: 600
}

.noticeFrame .title span {
    color: #0f9e48;
    font-size: 14px;
    margin-left: 7px
}

.noticeFrame .tabZone ul {
    display: flex;
    overflow: scroll;
}

.noticeFrame .tabZone ul li {
    height: 58px;
    width: 100%;
    max-width: 200px;
    box-shadow: inset 0 4px var(--main03);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s ease-out;
    position: relative;
    border: 1px solid #304059;
    padding: 10px;
    background-image: linear-gradient(135deg, #d9d9d9 0%, #a6a6a6 25%, #d9d9d9 50%, #a6a6a6 75%, #d9d9d9 100%);
}

.noticeFrame .tabZone ul li span {
    color: #b27b46;
    background: linear-gradient(353.95deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.75) 97.43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #404040;
    font-size: 25px;
    transition: .3s ease-out;
    margin-right: 5px
}

.noticeFrame .tabZone ul li.active span,noticeFrame.tabZone ul li:hover span {
    color: #b27b46;
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit
}

.noticeFrame .tabZone ul li h4 {
    color: #000000;
    font-size: 18px;
    transition: .4s ease-out;
    cursor: pointer;
    white-space: nowrap;
}

.noticeFrame .tabZone ul li.active h4 {
    color: #fff0c2;
    filter: drop-shadow(1px 3px 1px black);
}
.noticeFrame .tabZone ul li.active span,noticeFrame.tabZone ul li.active h4,noticeFrame.tabZone ul li:hover h4,noticeFrame.tabZone ul li:hover span {
    color: #fff0c2;
    filter: drop-shadow(1px 3px 1px black);
}

.noticeFrame .searchZone {position: relative;width: 300px;margin-right: 15px;}
.noticeFrame .searchZone input {background-color: #0b0b11;border-radius: 6px;padding-left: 14px;-o-text-overflow: ellipsis;text-overflow: ellipsis;white-space: nowrap;height: 35px;margin-bottom: 0;}
.noticeFrame .searchZone input:placeholder-shown + .searchIcon .icon-search{display: block;}
.noticeFrame .searchZone input:placeholder-shown + .searchIcon .icon-delet{display: none;}
.noticeFrame .searchZone input:not(:placeholder-shown) + .searchIcon .icon-search{display: none;}
.noticeFrame .searchZone input:not(:placeholder-shown) + .searchIcon .icon-delet{display: block;}
.noticeFrame .searchZone input::placeholder {color: #b6b6b6;font-size: 14px}
.noticeFrame .searchZone .searchIcon {position: absolute;right: 0px;top: 9px}
.noticeFrame .searchZone .searchIcon span {color: #b4b4b4;font-size: 13px;padding: 2px;cursor: pointer;}

.noticeFrame .bet{color: white;background: red;padding: 1px 5px;border-radius: 3px;font-size: 8px;}
.noticeFrame .topZone {display:flex;justify-content: space-between;}
.noticeFrame .upVotes {cursor: pointer;}
.noticeFrame .upVotes.on i{color: red;}

.reply-edit {margin: 5px 0;display: flex;gap: 5px;}
.reply-edit .reply-content {height: 36px;flex: 1;}
.reply-edit .btn-write {background: #1e88e5;}
.reply-list .btn-edit {background: #1e88e5;}
.reply-list .btn-delete {background: #ff0000;}
.reply-list table tr th {background: #383838;vertical-align: top;}
.reply-list table tr td {background: #272727;border-radius: 0;color: white;border-right: 1px solid;border: 0;border-color: #505050;padding: 10px;vertical-align: middle;}
.reply-list table tr td button {height: 30px; line-height: 30px;}

.comp_rate {color: white;}
.comp_rate h2{color: #ffffff;font-size: 16px;padding: 10px;background: #2e3135;border-radius: 5px;margin: 10px 0;}
.comp_rate .main_tap {display: flex;gap: 1px;overflow: scroll;}
.comp_rate .main_tap li{padding: 10px 15px;background-image: linear-gradient(135deg, #d9d9d9 0%, #a6a6a6 25%, #d9d9d9 50%, #a6a6a6 75%, #d9d9d9 100%);min-width: 100px;text-align: center;cursor: pointer;color: black;}
.comp_rate .main_tap li.on{color: #ffe16b;text-shadow: 2px 1px black;}
.comp_rate .sub_tap{display: grid;grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));gap: 1px;margin-top: 1px;}
.comp_rate .sub_tap li{text-align: center;padding: 10px 0;background: #494949;cursor: pointer;font-size: 13px;}
.comp_rate .sub_tap li.on{color: #face1f;text-shadow: 1px 1px black;}

.comp_rate .comp_panel .comp_list{display: grid;grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));gap: 5px;flex-wrap: wrap;margin-top: 9px;}
.comp_rate .comp_panel .comp_list li{display: flex;padding: 10px;min-width: 150px;justify-content: space-between;border-radius: 5px;border: 1px solid #626262;background: #2f2f2f;}

.contentZone {
    margin-top: 20px
}

.contentZone .time {
    color: #ffffff;
    font-size: 14px;
    padding: 6px 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    margin: 0 auto
}

.contentZone .time .pageBack {
    display: flex;
    align-items: center
}

.contentZone .time .pageBack a {
    color: #4fcdff;
    font-size: 14px;
    transition: .3s ease-out;
    cursor: pointer
}

.contentZone .time .pageBack a:hover {
    color: #4fcdff
}

.contentZone .time .pageBack .crossLine {
    width: 1px;
    height: 13px;
    background-color: #00a8ea;
    margin: 0 10px
}

.contentZone .time .title {
    color: #a4e3ff;
    font-size: 20px;
    margin: 0 auto
}

.contentZone .time span.timeR {
    font-size: 14px;
    margin-left: 4px;
    display: flex
}

.contentZone .time span.timeR .name {
    margin-right: 26px;
    position: relative
}

.contentZone .time span.timeR .name:after {
    content: "";
    width: 1px;
    height: 13px;
    background-color: #e5e5e5;
    position: absolute;
    right: -12px
}

.contentZone .txt {
    padding: 20px;
    border-top: 1px solid var(--border);
    background-color: var(--bg01);
}

.contentZone .txt h2 {
    font-size: 20px;
    color: #00a8ea
}

.contentZone .txt p {
    font-size: 12px;
    color: #a4e3ff;
    margin-top: 12px;
    line-height: 1.6;
    text-align: justify
}

.contentZone .txt .adPic {
    margin-top: 20px
}

.contentZone .txt .adPic img {
    height: 213px
}

.contentZone .btnFrame {
    width: 100%;
    display: flex;
    justify-content: center
}

.contentZone .btnP {
    height: 40px;
    padding: 0 47px;
    color: #ffffff;
    background-color: #00a8ea;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    float: right;
    margin-top: 23px;
    cursor: pointer;
    border: 0px;
    transition: .2s ease-out
}

.contentZone .btnP:hover {
    background-color: #4fcdff
}

.blocker{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(0,0,0,0.75);
    text-align: center;
}

.blocker::after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}

.modalX {
    width: 694px;
    max-width: 1200px;
    min-height: 500px;
    border-radius: 8px;
    position: relative;
    background: #1f1f1f;
    z-index: 99999;
    vertical-align: middle;
}
.modalX .icon-x-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

.content-view {
    padding: 24px;
}
.content-view .container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-size: 1em;
    gap: initial;
    width: 95%;
}
.content-view .container .main-title {
    font-weight: 700;
    font-size: 24px;
    color: #efecec;
    text-align: left;
}
.content-view .container .top {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin-top: 1em;
}
.content-view .container .top .title {
    margin-right: auto;
    font-weight: 700;
    font-size: 18px;
    color: #d0d0d0;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.content-view .container .top .from {
    color: #8E8C94;
}
.content-view .container .top .time {
    color: #8E8C94;
}
.content-view .container .bottom {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 1em;
    padding: 2em 0.5em;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: #d0d0d0;
}
.content-view .container .bottom .content {
    width: 100%;
    min-height: 200px;
    word-break: break-all;
    white-space: pre-wrap;
    text-align: left;
}
.content-view .container .bottom .content::-webkit-scrollbar-thumb {
    height: 30%;
    background: #b0b8c1;
    border-radius: 10px;
}
.content-view .container .bottom .content::-webkit-scrollbar-track {
    background: #e0e3e8;
}
.content-view .container .bottom .content::-webkit-scrollbar {
    width: 8px;
}

.edit_popup {
    width:300px;
    height: auto;
    min-height:unset;
    padding: 20px 5px 5px;
    background: #1f1f1f;
    border-radius: 8px;
    position:relative
}
.edit_popup .icon-x-modal {
    position:absolute;
    color:white;
    font-size:20px;
    right:0;
    top: 0;
    padding: 10px;
    cursor: pointer;
}
.edit_popup h3 {
    font-size: 20px;
    color: white;
}
.edit_popup .content {
    margin-top: 30px;
}
.edit_popup input {
    color:white;
    text-align:center
}
.edit_popup button {
    margin-top:20px;
    padding: 8px 15px;
    border-radius: 5px;
    background: #03A9F4;
    color: white;
    margin-bottom: 10px;
}
.main_content_home .game_wrap ul{
    display: flex;
    margin-top: 15px;
    gap: 5px;
}

.main_content_home .game_wrap ul li{
    position: relative;
    overflow: hidden;
}

.main_content_home .game_wrap ul li img{
    width:100%;
    
}

.main_content_home .game_wrap ul li .txt{
    width:100%;
    position: absolute;
    left: 0;
    top: 0px;
    background: #00000075;
    height: 100%;
    color: white;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_content_home .game_wrap ul li:hover .txt {
    animation:slideup 0.3s forwards
}

.main_content_home .infoZone {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    background: var(--bg02);
}

.main_content_home .infoZone .info01 {
    border-radius: 10px;
    width: 100%;
}

.main_content_home .infoZone .info01:before {
    position: absolute;
    top: 0px;
    width: 420px;
    height: 31px;
    left: 0px
}

.main_content_home .infoZone .info01 .title {
    color: #fa2525;
    font-size: 18px;
    padding: 15px;
}

.main_content_home .infoZone .info01 .listFrame {
    /* margin-top: 20px; */
    height: 230px;
    overflow: hidden;
    background: rgb(0 0 0 / 10%) url(../images/common/patten_login_bg.png);
}

.main_content_home .infoZone .info01 .list {
    animation-duration: 1s;
    background-position: -15px -13px;
    animation-iteration-count: infinite;
    animation-timing-function: step-start;
    animation-play-state: running
}

.main_content_home .infoZone .info01 .list:hover {
    animation-play-state: paused
}

.main_content_home .infoZone .info01 .list a {
    width: 100%;
    display: flex;
    height: 45px;
    align-items: center;
    border-bottom: 1px solid var(--bg01);
    cursor: pointer;
    justify-content: space-between;
    transition: .4s ease-out;
    padding: 0 9px;
}

.main_content_home .infoZone .info01 .list.listC a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.main_content_home .infoZone .info01 .list a:hover {
    background-color: var(--bg01);
}

.main_content_home .infoZone .info01 .list a .no {
    color: #c9d8c2;
    font-size: 13px;
    width: 10%;
    padding-left: 1%
}

.main_content_home .infoZone .info01 .list a .no .outer {
    display: flex;
    clip-path: polygon(25% 0%,75% 0%,100% 50%,75% 100%,25% 100%,0% 50%);
    width: 25px;
    height: 21px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: #0f543e
}

.main_content_home .infoZone .info01 .list a .no .outer span {
    display: flex;
    clip-path: polygon(25% 0%,75% 0%,100% 50%,75% 100%,25% 100%,0% 50%);
    width: 20px;
    height: 17px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: #a5cb2d;
    background: linear-gradient(0deg,#114f3c 0%,#a8cd2d 100%);
    color: #c9d8c2
}

.main_content_home .infoZone .info01 .list a .time {
    font-size: 12px;
    text-align: left;
    color: #a4e3ff;
    transition: .4s ease-out
}

.main_content_home .infoZone .info01 .list a .message {
    font-size: 12px;
    text-align: left;
    transition: .4s ease-out;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 286px
}

.main_content_home .infoZone .info01 .list a:hover .message {
    font-size: 12px;
    padding-right: 4%;
    color: #ffffff;
    transition: .4s ease-out
}

.main_content_home .infoZone .info01 .list a:hover .time {
    font-size: 12px;
    color: #ffffff
}

.pop_wrap {
    width: 580px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #2e3135;
    border-radius: 10px;
    padding: 35px 50px;
    color: var(--main);
}

.pop_wrap .icon-x-modal {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    transition: .2s ease-out;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    padding: 10px;
}

.pop_wrap .title {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.pop_wrap .title img {
    height: 60px;
}
.pop_wrap .inputFrame {
    position: relative;
    padding-bottom: 5px;
}

.pop_wrap .inputFrame .input_wrap {
    width:100%;
    margin-bottom: 5px;
}
.pop_wrap .inputFrame .input_content {
    border-radius: 5px;
    color: #b4b4b4;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 3px;
}

.pop_wrap .inputFrame .input_content input {
    padding-left: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 35px;
    margin-bottom: 0;
    border-radius: 5px;
    background: rgb(32 32 32);
    border: solid 1px #929292;
}

.pop_wrap .inputFrame .input_content input::placeholder {
    color: #c1b8b8;
    font-size: 14px
}
.pop_wrap .inputFrame .input_content select {
    display: block;
    padding: 0;
    height: 35px;
    padding-left: 10px;
    border: solid 1px #929292;
}
.pop_wrap .inputFrame .input_content select:focus {
    outline: 0px
}
.pop_wrap .inputFrame .input_content textarea {
    padding: 10px;
    border-radius: 5px;
    background: rgb(32 32 32);
    border: solid 1px #929292;
    resize: vertical;
    height: auto;
    min-height: 120px;
}

.pop_wrap .inputFrame .check_content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    width: 100%;
    justify-items: start;
}

.pop_wrap .inputFrame button {
    height: 35px;
    font-size: 14px;
    border-radius: 3px;
    padding: 0 8px;
    font-weight: 700;
    background: var(--main03);
    color: #ffffff;
    cursor: pointer;
    border: 0px;
    transition: .4s ease-out;
    white-space: nowrap;
}
.pop_wrap .inputFrame .msg-wrap:not(:empty) {
    text-align:left;
    font-size: 10px;
    margin-top: 3px;
    font-weight: 500;
    color: #f03737;
}
.pop_wrap .inputFrame .msg-wrap li:before {
    content: '\e98a';
    font-family: 'icomoon';
    margin-right: 5px;
}
.pop_wrap .btnFrame {
    margin-top:20px;
}
.pop_wrap .btnFrame button {
    padding: 10px 0;
    width: 100%;
    margin-left: 0;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(170, 170, 170, 1) 23%, rgba(239, 239, 239, 1) 49%, rgba(201, 201, 201, 1) 73%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid #ffffff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #000000;
    text-shadow: 0px 1px #ffffff;
    -webkit-transition: all 0.7s;
}

.pop_wrap .btnFrame p {
    color: #b8b8b8;
    font-size: 12px;
    cursor:pointer;
    transition: .4s ease-out
}

.pop_wrap .btnFrame p span {
    color: var(--main);
    transition: .4s ease-out;
    text-decoration: underline;
    margin-left: 5px;
}
#join_pop .pop_wrap.referee {
    width: 350px;
    height: auto;
    padding: 50px 35px 20px;
}
#login_pop .pop_wrap {
    padding: 0;
}
#login_pop .pop_wrap .title {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
}
#login_pop .pop_wrap .title img {
    height: 110px;
}
#login_pop .pop_wrap .title a {
    font-size: 20px;
}
#login_pop .pop_wrap .title a img {
    height: 80px;
}
#login_pop .pop_wrap .content {
    margin: 0 auto;
    padding: 30px;
}
#login_pop .pop_wrap .content form {
    display :flex;
    gap: 10px;
}
#login_pop .pop_wrap .inputFrame {
    display: block;
    padding: 0;
    flex: 1;
}
#login_pop .pop_wrap .input_content input {
    text-align: center;
    height: 42px;
}

#login_pop .pop_wrap .captcha img {
    height: 42px;
    max-width: 50%;
    border-radius: 5px;
}
#login_pop .pop_wrap .btnFrame {
    display: flex;
    margin: 0;
    margin-bottom: 5px;
    flex: 1;
    gap: 10px;
}
#login_pop .pop_wrap .btnFrame button {
    margin: 0;
    min-height: 80px;
}
#login_pop .pop_wrap .content .sns_wrap {
    margin-top: 5px;
    display: flex;
    gap: 3px;
    justify-content: center;
}
#login_pop .pop_wrap .content .sns_wrap img {
    max-width: 100%;
}
.rightContent {
    height: auto;
    overflow: hidden;
    animation: leftIn .5s;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
}

.rightContent .contents {
    height: auto;
    float: right;
    position: relative;
    width: 100%
}

.webp {
    margin:auto;
}
.rightZone>.txt>h2 {
    color: var(--main01);
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: ko-bold!important
}

.rightZone .maintain {
    display: none;
    border: none;
    position: absolute;
    z-index: 2;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: default;
    width: 100%;
    height: 100%
}

.rightZone .maintain span {
    font-size: 3vw
}

.rightZone .maintain h4 {
    font-size: 1vw;
    margin-top: 6%
}
.contents {
    max-width:var(--max-width);
    width: 100%;
    margin:auto;
    padding-bottom: 50px;
}
.LeftContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 180px;
    z-index: 0;
    top: 150px;
    float: left;
    bottom: 0px;
    position: sticky;
    transition: .25s ease-out;
    box-shadow: rgba(0,0,0,0.3) 0 0 0.6em;
}

.scrollFrame {
    width: 100%;
    margin: 0 auto;
    overflow-y: auto
}

.scrollFrame::-webkit-scrollbar-track {
    background-color: #2e3135
}

.scrollFrame::-webkit-scrollbar {
    width: 0px
}

.scrollFrame::-webkit-scrollbar-thumb {
    background-color: #2e3135
}

.LeftContent .leftMenu {
    width: 82%;
    border-radius: 10px;
    padding: 17px;
    margin: 0 auto 19px;
    background: linear-gradient(to bottom right,var(--bg01) 20%,var(--bg02));
    border: 1px solid var(--border);
    box-shadow: 0 0 10px var(--main01), 0 0 2px var(--main);
}

.LeftContent .leftMenu ul {
    width: 89%;
    margin: 0 auto
}

.LeftContent .leftMenu ul li {
    padding: 10px 3px;
    border-bottom: 1px solid #504f4a;
    position: relative
}

.LeftContent .leftMenu ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    flex-direction: column;
}

.LeftContent .leftMenu ul li a span {
    background: linear-gradient(353.95deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.75) 97.43%);
    -webkit-background-clip: text;
    color: #face1f;
    font-size: 14px;
    transition: .2s ease-out
}

.LeftContent .leftMenu01 ul li a:hover span,.LeftContent .leftMenu01 ul li a.active span {
    background: linear-gradient(353.95deg,var(--main03) 0%,var(--main02) 50.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--main);
    opacity: 1!important;
    scale:1.2;
}

.LeftContent .leftMenu ul li a .txt {
    color: #ffffff;
    font-size: 13px;
    /* font-weight: 600; */
    transition: .3s ease-out;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-top: 11px;
}

.LeftContent .leftMenu ul li a:hover .txt,.LeftContent .leftMenu ul li a.active .txt {
    color: var(--main);
}

.LeftContent .leftMenu ul li a .txt b {
    color: #f20f2a;
}
.LeftContent ul.leftMenu01 li {
    border:none;
    padding: 10px;
    margin-bottom:5px;
    border-radius: 5px;
    background: linear-gradient(90deg, #fff1c1, #eac95a);
}
.LeftContent ul.leftMenu01 li span {
    color: #8f7826 !important;
    font-size: 20px !important;
}
.LeftContent ul.leftMenu01 li .txt {
    color: black !important;
}
.LeftContent .sns_wrap {
    width: 89%;
    margin: 10px auto;
}
.LeftContent .sns_wrap a {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    margin-bottom: 7px;
    padding: 6px 8px;
    border-radius: 7px;
}
.LeftContent .sns_wrap span {
    margin-right: 7px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}
.LeftContent .sns_wrap a .icon-service {
    background-image: linear-gradient(#ff6335,#ff35a2);
}
.LeftContent .sns_wrap .icon-telegram {
    background-image: linear-gradient(#16d3fb,#00d2ff);
}
.LeftContent .sns_wrap .icon-kakao1 {
    background-image: linear-gradient(#ffea30,#ffdc00);
}
.LeftContent .sns_wrap .icon-sphere {
    background-image: linear-gradient(#ffacac, #ff0b74);
}
.LeftContent .sns_wrap a.full {
    padding: 0;
}
.LeftContent .sns_wrap a.full img {
    width: 100%
}

.main-slide{display: flex;margin-top: 30px;}
.main-slide .link_ul li{width: 80px;display: flex;height: 25%;border: 1px solid rgba(0, 0, 0, 0.4);background: linear-gradient(to bottom, #353535, #363636);box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);justify-content: center;align-items: center;cursor: pointer;}

.link_bar {position: absolute;float: left;z-index: 999;display: none;}
.link_bar li{width: 80px;padding: 8px;display: flex;border: 1px solid rgba(0, 0, 0, 0.4);background: linear-gradient(to bottom, #353535, #363636);box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);justify-content: center;align-items: center;cursor: pointer;}
.link_bar.on {/* display: block; */}
.link_bar.on ~ .rightContent {/* margin-left:90px; */}
.bank_req {background-color: #292929;margin-top: 10px;padding: 15px;border-radius: 10px;position: relative;color: white;line-height: normal;}
.bank_req::after {content: "";display: block;position: absolute;width: 1em;height: 1em;top: -0.5em;left: 46.5%;z-index: 0;background: inherit;box-shadow: inherit;-webkit-transform: rotate(45deg);transform: rotate(45deg);}
.bank_req:empty {display: none;}


#btn_top{
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    background: url(../images/common/scroll-top.svg) no-repeat center #212121;
    background-size: 70%;
    z-index: 999;
    border: 2px solid #0081b0;
    cursor: pointer;
}

.skiptranslate {
	display: none !important;
}
.langs  {
	width: 120px !important;
	display: inline-block;
	position: absolute;
	bottom: 10px;
	right: 0;
}
.langs .dynamic-select {
	color: white;
}
.langs .dynamic-select .dynamic-select-header {
	justify-content: center;
    border: 1px solid #d9b85a;
}
.langs .dynamic-select .dynamic-select-options {
	background: #100f0f;
}
.langs .dynamic-select .dynamic-select-option:hover {
	background-color: #424242;
}

body.gate {
    background: fixed no-repeat center;
    background-size: cover;
    background-image: var(--gate-bg);
}
body.gate video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
body.gate .blocker:has(#login_pop) {
    background: transparent;
}

body.gate .NAV_log .pupop_content .popWrapper {
    background:none
}

body.gate .NAV_log .pupop_content .popWrapper .telegram-wrap a {
    display:flex;
    justify-content: center;
    font-size: 20px;
    gap: 10px;
    border: 1px solid;
    padding: 10px;
}
@keyframes slideup
{0% {bottom:0;} 100% {top:80px;color:#FF9800;}} 