@charset "UTF-8";
/* @import"https://fonts.googleapis.com/css2?family=Noto%20Sans%20KR:wght@400;500;700;900&amp;family=Noto%20Sans%20SC:wght@400;500;700;900&amp;display=swap"; */

/* common */
.redTxt {
    color: #f20f2a!important
}

.btnN {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 11px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 15px;
    white-space: nowrap;
    min-width: 110px
}

.btn_p {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 11px 15px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s ease-out;
    min-width: 110px
}

.btn_p:hover {
    background-color: var(--main);
    border: 1px solid var(--main)
}

.redB {
    background-color: var(--main01);
    transition: .3s ease-out
}

 .redB:hover {
    background-color: var(--main);
}

 .redB:hover span, .blueB:hover span {
    margin-right: 7px!important
}

 .blueB {
    background-color: #f0ab05;
    transition: .3s ease-out
}

 .blueB:hover {
    background-color: #ffcb52
}

.btnN.goUnmember {
    width: 36%
}

.btnN.loginIcon,.btnN.signupIcon {
    min-width: 104px;
    width: auto
}

.fundHoverFrame {
    pointer-events: none
}

#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 {
    background: #2e3135;
    color: #d8d8d8;
    padding: 25px;
    font-size: 16px;
    line-height: 28px;
    border-radius: 10px;
}
.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: 16px;
    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 input{

}
.input-wrap select {
    border: none;
    border-bottom: 1px solid #ddd;
    color: white;
    background-color: #2e3135;
}

.input-wrap option {
    color: white;
}

.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: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    background: var(--main01);
    min-width: 110px;
}
.tb_empty {
    text-align: center;
    padding: 30px;
    background: #212121a3;
    color: var(--main);
}
.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;
    min-height: 300px;
}
.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);
    margin-left: -50px;
    margin-top: -50px;
}
.loading-box .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 100px;
    margin-left: -50px;
    margin-top: -62px;
    overflow: hidden;
    -webkit-transform-origin: 120px 120px;
    transform-origin: 50px 50px;
    -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: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px white;
}
.loading-box .logo {
    width: 100%;
    height: auto;
    margin-top: -15px;
    margin-bottom: 15px;
    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;
    width: 100%;
 }
.marquee p:after {
    content:"";
    white-space:nowrap;
    padding-right:50px;
}
.marquee p {
    margin:0;
    padding-left:100%;
    display:inline-block;
    white-space:nowrap;
      -webkit-animation-name:marquee;
      -webkit-animation-timing-function:linear;
      -webkit-animation-duration:10s;
      -webkit-animation-iteration-count:infinite;
      -moz-animation-name:marquee;
      -moz-animation-timing-function:linear;
      -moz-animation-duration:10s;
      -moz-animation-iteration-count:infinite;
      -ms-animation-name:marquee;
      -ms-animation-timing-function:linear;
      -ms-animation-duration:10s;
      -ms-animation-iteration-count:infinite;
      -o-animation-name:marquee;
      -o-animation-timing-function:linear;
      -o-animation-duration:10s;
      -o-animation-iteration-count:infinite;
      animation-name:marquee;
      animation-timing-function:linear;
      animation-duration:20s;
      animation-iteration-count:infinite;
  }
  @-webkit-keyframes marquee {
    from   { -webkit-transform: translate(0%);}
    99%,to { -webkit-transform: translate(-100%);}
  }
  @-moz-keyframes marquee {
    from   { -moz-transform: translate(0%);}
    99%,to { -moz-transform: translate(-100%);}
  }
  @-ms-keyframes marquee {
    from   { -ms-transform: translate(0%);}
    99%,to { -ms-transform: translate(-100%);}
  }
  @-o-keyframes marquee {
    from   { -o-transform: translate(0%);}
    99%,to { -o-transform: translate(-100%);}
  }
  @keyframes marquee {
    from   { transform: translate(0%);}
    99%,to { transform: translate(-100%);}
  }

/* header */
.header {
    height: 70px;
    z-index: 5;
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: #000000;
    width: calc(100% - 250px)!important;
}


.header .headerWrapper {
    margin: 0 auto;
    width: 100%;
    height: 70px;
    display: flex;
    padding: 0 2em;
    align-items: center;
    justify-content: space-between
}
.header .headerWrapper .home_notice {
    width: 100%;
}
.header .headerWrapper .home_notice .notice_wrap {
    display: flex;
    align-items: center
}

.header .headerWrapper .home_notice .notice_wrap .noticeIcon {
    margin-right: 10px
}

.header .headerWrapper .home_notice .notice_wrap .noticeIcon img {
    width: 29px
}

.header .headerWrapper .home_notice .notice_wrap .notice_text {
    color: #ffffff;
    font-size: 13px;
    width: 100%;
}

.header .headerWrapper .rightZone {
    display: flex;
    justify-content: flex-end;
    width:600px
}

.header .headerWrapper .rightZone .btn_p span {
    font-size: 22px;
    margin-right: 5px;
    transition: .3s ease-out;
    color: #ffffff
}

.header .headerWrapper .rightZone .moneyZone {
    display: flex;
    align-items: center;
    padding-right: 16px;
    position: relative;
    margin-left: 14px;
    width:280px;
}
.header .headerWrapper .rightZone .moneyZone .money {
    font-size: 20px;
    color: var(--main);
    margin-left: 15px;
}

.header .headerWrapper .rightZone .moneyZone .money:before {
    margin-right:5px;
    color:#e5e5e5
}

.header .headerWrapper .rightZone .moneyZone .refresh {
    cursor: pointer;
}

.header .headerWrapper .rightZone .moneyZone .refresh img {
    width: 30px;
}
.header .headerWrapper .rightZone .memberZone {
    display: flex;
    align-items: center;
    padding-left: 16px
}

.header .headerWrapper .rightZone .memberZone span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
    white-space: nowrap;
}

 .header .headerWrapper .rightZone .btnN span {
    font-size: 19px;
    margin-right: 5px;
    transition: .3s ease-out
}

@media (max-width: 1900px) {
    .header {
        width:calc(100% - 80px)!important
    }
}

/* banner */

.banner {
    /* margin-top: 70px; */
}

.banner img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.banner .slick-slide {
    height: unset;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    overflow: hidden;
}
.banner .slick-slide[tabindex="-1"] {
    transition: 0s all !important;
    -webkit-transform: scale(0.8) !important;
            transform: scale(0.8) !important;
}
.banner .slick-slide.slick-active {
    transition: 1s all !important;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
}
.banner .slick-slide:not(.slick-active):not([tabindex="-1"]) {
    transition: 1s all !important;
    -webkit-transform: scale(1.5) !important;
            transform: scale(1.5) !important;
}
.banner:hover .slick-arrow {
    display: inline-block !important;
    cursor: pointer;
}
.banner .slick-list {
    max-height: 100%;
}
.banner .slick-arrow {
    display: none !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 39px;
    height: 80px;
    opacity: 0.5;
    background-color: #596077;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    text-indent: -9999px;
}
.banner .slick-arrow.slick-prev {
    left: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAADIBAMAAAD/xRkGAAAAMFBMVEWJiYkAAAD8/Pz19fWtra2Pj4+GhoaPj4+fn5/5+fno6Oj+/v79/f3x8fHm5ub////HgfL/AAAAD3RSTlMaAMWTIgsTEAizWfPYg11YKk3WAAAA00lEQVRo3u3aPRIBURBF4auMnxJ5gbKMEQtlMhKxRM4OLMEOBHZIiGmmrKBPYoL75a+OMkkHV+Vrp4RD+6J9dlTK6PfsrKRx+2ymtG1RG8vnVAQUzQWcNBXQ00bAQHsBQ5mZmZmZmVmn3JYC1hEXpVV1xFtpq4h4oVg8USzuKBYNisUCxR6OOeZYKpZ0RbEJi/VBDDzDP5L/JfwDVLVzzjn3n1wDjyd4qsHDEJ6h8OiFJ7aZmZmZmZl1Apu4wUEdnO/RsWARAIeQcHbJRp54UgoHrB/sGBG2XXNafQAAAABJRU5ErkJggg==);
}
.banner .slick-arrow.slick-next {
    right: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAADICAMAAAA6NfQHAAAAM1BMVEWJiYkAAAD19fWtra37+/uPj4+fn5/5+fno6OiGhoaPj4/+/v79/f39/f3x8fHm5ub///9PQzy4AAAAEHRSTlMaAJMixAsIs1kTEPPYzINdOr41PgAAAVlJREFUeNrt3F1qAkEQReHOmPkzMen9rzZB0TtNgS9SFyzO2cCHQ6vT9VDt49G8t6T2+SY8sHNL7XzAlpbecsfmZmi+YUuztFyx5ir3bESs2bKcDmF7s/XsKYKBgYGBxcDAwMDAYmBgYGBgMTAwMDCwGBgYGBhYDCwJ26Zpc2Fr/289WbCffu3z5MC+u7R07KtLS8cuXVo69tuDloe16QVNmEETZtCEGTRhBk2YQRNm0IQZNGEGTZhBE2bQhBk0YQZNmEETZtCEGTRhDk3Y69qaiEVty8OiNtXCjo+x0gEZjn6hL/VgFfohHqxCf56DVeiFZ7AKvaQOVqGLxWAVugwOVqEL/GBVGrpcDlatQZlGgNWGm/exbcGBdOG5PhjYITAwMDCwGBgYGBhYDAwMDAwsBgYGBgYWAwMDe8uFaHN72hsvsXOu5zN+NOtKReeySOcaTPOCT+vq0j8IXCOHqhsmFAAAAABJRU5ErkJggg==);
}
.banner .slick-arrow img {
    max-height: 100%;
}
.banner .slick-dots {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    gap: 30px;
}
.banner .slick-dots .slick-active [role=tab],
.banner .slick-dots [role=tab]:hover {
    background-image: url(../images/common/button.png);
}
.banner .slick-dots [role=presentation] {
    position: relative;
}
.banner .slick-dots [role=tab] {
    width: 20px;
    height: 20px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAmCAMAAACf4xmcAAAA+VBMVEUAAAD8///9/v7+///9//78/f/9///8/v/7/vz+///8///9///+///////9///////8/v719/n+///+//75/fv9///3+//9/v/+///////5/v////+pq7qorL2orLqprLb9///////8/f+nqLqmqrumqbnl5u6mqbyoq7anqbaqrbyrrrn5/f/3+v/q6/Tq7PGsrr62uL6usLqmq7mqrLOoqrP8///4+/6jpbalp7OjpbP09/jc3+fFyNGoqb6lqrjy9vzt8Pjm6O3g5Ojf4uXT1t7O0duztsOoq8D5/Pjr7fXZ29/Lz9TAw87AxMi7vci5usKwtLmgo6u8rSxCAAAAHHRSTlMAQib65NC2hEDqqw/3jo5mZj8gCwv39+erICAPSj5xLAAAAV1JREFUOMvl09dygkAUgGEVFbsmmr7ALrDSpQgIWGI3vb3/w2QZM7kQMeXW//qb3TmzZzNHXK5YzP2Iqg0KQqpRPayaZWSsRvzgonUAlQoImrYbvnURLJykoNOKr0/HjqPJmvM8Q3rleg9q02fIf9I8LcIB5qJobRjndCcxX57Xl67LcYAkYIyDzQjy+d2Zs3Bov28VYaQAWK9TPbvLkOnIRH0xSRIkwJmDBBvMtZCIbzYRhHCRZHyXAwzDsgxJFEVJkrDS41MYs2Wxw7dKD6WyuH5fFHEaA5O7vzFAziWTyD2Ycum/mJlk/nzL+iyrqjGTZc+EpV12P3z5UC1GIKeoFgCWoob2EJUSTw/hwgEBESRLVbTNyED5xLp36BrU12rEkWRF0VYGrNHtfWt5CfWHccw8bzzzjcpV6pJD3rQ91+4iRJY8vVaZR8tHHpabmYPd1CmEqHr1d9/5ePsElaZAughqfI4AAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 100% 100%;
    transition: 0.2s;
    color: transparent;
    opacity: 1;
    cursor: pointer;
    text-indent: -9999px;
}
.banner .slick-dots [role=tab] + img {
    position: absolute;
    z-index: 11;
    max-width: unset;
    height: 100px;
    bottom: 25px;
    left: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 6px;
    box-shadow: var(--shadow-primary);
}

/* footer */

.footer {
    width: 100%;
    float: left;
    background: #111111;
    padding: 0 2em;

}

.footer .footerWrapper {
    padding: 0 0 23px;
    width: 100%;
    margin: 0 auto
}

.footer .footerWrapper .leftZone {
    display: -moz-box;
    display: -ms-flexbox;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    width: 30%;
}

.footer .footerWrapper .logos img {
    margin-bottom: 20px;
    width: 183px
}

.footer .footerWrapper .txt {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.8;
}

.footer .footerWrapper .topZone {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 36px 0;
    margin: 0;
    justify-content: space-between;
}

.footer .footerWrapper .chatZone .chat {
    display: flex
}

.footer .footerWrapper .chatZone .chat .chat01 {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-right: 26px
}

.footer .footerWrapper .chatZone .chat .chat01 img {
    width: 28px;
    margin-right: 10px
}

.footer .footerWrapper .chatZone .chat .chat01 span {
    transition: .4s ease-out;
    cursor: pointer;
    color: #939393
}

.footer .footerWrapper .chatZone .chat .chat01 span:hover {
    color: #a4a4a4
}

.footer .footerWrapper .partner {
    display: none
}

.footer .footerWrapper .partner .partner01 img {
    margin-right: 15px;
    cursor: pointer;
    transition: .4s ease-out;
    height: .7vw
}

.footer .footerWrapper .partner .partner01 img:hover {
    opacity: .7
}

.footRframe {
    flex: 1;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: self-start;
    -moz-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 60px;
}

.footer .footerWrapper .centerZone .title {
    color: #828282;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px
}

.footer .footerWrapper .centerZone .title span {
    color: var(--main);
}

.footer .footerWrapper .centerZone .content ul {
    display: flex;
    align-items: flex-start
}

.footer .footerWrapper .centerZone .content ul li {
    background-color: #2e3135;
    border: 1px solid #304059;
    border-radius: 10px;
    cursor: pointer;
    -o-transition: .4s;
    -moz-transition: .4s;
    margin-right: 10px;
    padding: 23px 20px;
}

.footer .footerWrapper .centerZone .content ul li a {
    text-align: center;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}

.footer .footerWrapper .centerZone .content ul li.iconTG a {
    width: 63px
}

.footer .footerWrapper .centerZone .content ul li a span {
    color: #015686;
    font-size: 1.7vw;
    display: block;
    transition: .4s ease-out;
    margin-bottom: 10px;
}

.footer .footerWrapper .centerZone .content ul li a span.icon-iiconService {
    background: rgb(255,99,53);
    background: linear-gradient(180deg,rgb(255,99,53) 0%,rgb(255,53,162) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.footer .footerWrapper .centerZone .content ul li a span.icon-icconAPP {
    background: rgb(0,242,254);
    background: linear-gradient(180deg,rgb(0,242,254) 0%,rgb(79,172,254) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.footer .footerWrapper .centerZone .content ul li a span.icon-icconCooperation {
    background: rgb(250,209,38);
    background: linear-gradient(180deg,rgb(250,209,38) 0%,rgb(255,84,79) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.footer .footerWrapper .centerZone .content ul li a span.icon-icconTELEGRAM {
    background: rgb(255,255,255);
    background: linear-gradient(180deg,rgb(255,255,255) 0%,rgb(22 211 251) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.footer .footerWrapper .centerZone .content ul li a span.icon-kakao {
    background: rgb(255,255,255);
    background: linear-gradient(180deg,rgb(255,255,255) 0%,rgb(255,221,11) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.footer .footerWrapper .centerZone .content ul li:hover {
    box-shadow: 0 0 15px var(--main);
}

.footer .footerWrapper .centerZone .content ul li:hover a span {
    color: var(--main);
}

.footer .footerWrapper .rightZone01 {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.footer .footerWrapper .rightZone01 .links .title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13px
}

.footer .footerWrapper .rightZone01 .links .content {
    display: flex
}

.footer .footerWrapper .rightZone01 .links .content .left01,.footer .footerWrapper .rightZone01 .links .content .right01 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .footerWrapper .rightZone01 .links .content a {
    color: #ffffff;
    white-space: nowrap;
    font-size: 13px;
    cursor: pointer;
    transition: .4s ease-out
}

.footer .footerWrapper .rightZone01 .links .content a:hover {
    color: var(--main)
}

.footer .footerWrapper .downZone {
    padding-top: 29px
}
.footer .footerWrapper .downZone img {
    height:50px;
    margin-right:20px;
}

@media (max-width: 1591px) {
    .footer .footerWrapper .centerZone .content ul li a {
        padding:0
    }

    .footer .footerWrapper .centerZone .content ul li.iconTG a {
        width: 55px
    }
}

@media (max-width: 1200px) {
    .footer .footerWrapper .centerZone .content ul li {
        padding-bottom:26%
    }
}

.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
    }
}

.homePage {
    animation: none!important
}

.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
    }
}

.titlePic {
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.titlePic .titlePwrapper {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.titlePic .titlePwrapper .leftZone {
    color: #828282;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: start;
    transform: translateZ(0);
    margin-right: 15px
}

.titlePic .titlePwrapper .leftZone span.icon-iiconLogoB {
    font-size: 2.3vw;
    margin-right: 4px
}

.titlePic .titlePwrapper .leftZone h4 {
    font-size: 1.4vw;
    margin-right: .5vw
}

.titlePic .titlePwrapper .leftZone span {
    color: var(--main);
    font-size: 18px;
    white-space: nowrap
}

.titlePic .titlePwrapper .leftZone span.Logo {
    width: 146px;
    height: auto;
    aspect-ratio: 300/67;
    background-image: url("../images/common/logoed98.png?var(--ver)");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 5px
}

.titlePic .titlePwrapper .line {
    height: 2px;
    width: 100%;
    background-color: var(--main);
    position: relative
}

.titlePic .titlePwrapper .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 {
    width: 95%!important;
    margin-top: 20px!important
}

.main_content_wrap_notice .listZone {
    width: 100%;
    margin-top: 30px;
}

.main_content_wrap_notice .listZone ul.imgList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 15px;
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion {
    width: 100%;
    transition: .4s ease-out;
    position: relative;
    border: 1px solid #485160;
    background-color: #000000;
    border-radius: 12px;
    animation-name: fadeInUp;
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion .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.goPromotion .upZone {
    border-radius: 9px 9px 0 0;
    overflow: hidden;
    cursor: pointer
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion .upZone img {
    width: 100%;
    height: auto;
    transition: .4s ease-out
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion:hover .upZone img {
    transform: scale(1.1)
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion .bottomZone {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion .bottomZone h3 {
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion .bottomZone h2 {
    color: #ffffff;
    font-size: .8vw;
    margin-bottom: 15px;
    display: none
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion .bottomZone .btnP {
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    background-color: var(--main);
    border-radius: 20px;
    cursor: pointer;
    transition: .3s ease-out
}

.main_content_wrap_notice .listZone ul.imgList li.goPromotion .bottomZone .btnP:hover {
    background-color: var(--main)
}


.main_content_wrap_notice .listZone table {
    width: 100%
}

.main_content_wrap_notice .listZone table tr {
    transition: .4s ease-out
}

.main_content_wrap_notice .listZone table tr:hover {
    background-color: #2e3135
}

.main_content_wrap_notice .listZone table tr th {
    padding: 10px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    background-color: var(--main01);
    border-radius: 0;
    vertical-align: middle;
}

.main_content_wrap_notice .listZone table tr th:first-child:before {
    width: 1px;
    height: 21px;
    background-color: #b4b9e6;
    position: absolute;
    left: 0px;
    bottom: 0px
}

.main_content_wrap_notice .listZone table tr th:after {
    width: 1px;
    height: 21px;
    background-color: #b4b9e6;
    position: absolute;
    right: 0px;
    bottom: 0px
}

.main_content_wrap_notice .listZone table tr th.number {
    width: 9%
}

.main_content_wrap_notice .listZone table tr th.name {
    width: 16%
}

.main_content_wrap_notice .listZone table tr th.date {
    width: 14%
}

.main_content_wrap_notice .listZone table tr td {
    color: #ffffff;
    font-size: 14px;
    padding: 10px 5px;
    border-bottom: 1px solid #304059;
    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: var(--main)!important
}

.main_content_wrap_notice .listZone table tr td .btnM1 {
    padding: 13px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s ease-out
}

.main_content_wrap_notice .listZone table tr td a {
    color: #ffffff;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main_content_wrap_notice .listZone table tr td a.goResult {
    color: #ffffff;
    font-size: 14px;
    display: block;
    background-color: var(--main);
    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: var(--main)
}

.main_content_wrap_notice .listZone table tr td span.textOver {
    color: #ffffff;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 166px;
    font-weight: 100;
    display: block
}

.main_content_wrap_notice .listZone table tr td span.done {
    color: var(--main)
}

.main_content_wrap_notice .listZone table tr td span.cancel {
    color: #f20f2a!important
}

.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: var(--main);
    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: var(--main)
}

.main_content_wrap_notice .listZone table tr:nth-child(even):hover {
    background-color: #2e3135
}

.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: #ce0000;
    color: white;
    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 var(--main);
}
.bet-list-wrap .league-wrap{
    display:flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.bet-list-wrap .sel-pick {
    background: #00315c;
}

.bet-list-wrap .team-info-wrap img{
     width: 10px;
}

.bet-list-wrap .status{
    padding: 3px 10px;
    border-radius: 5px;
    white-space: nowrap;
}

.bet-list-wrap .bet-result {
    display: flex;
    color: white;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 10px;
    align-items: 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: var(--main);

}
.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 {
    background: #ce0000;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.bet-list-wrap .bet-result .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bet-list-wrap .bet-result .info .sp-number {
    color: var(--main);
    font-size: 16px;
    font-weight: 600;
}

.bet-list-wrap th {
    border-left: 1px solid #0096da;
}

.bet-list-wrap td {
    border-left: 1px solid #302e2e;
}
.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, #8c8c8c);
    border-radius: 7px;
}

.bet-list-wrap .slip.on {
    border: 1px solid #03a9f4;
}
.bet-list-wrap .slip .title{
    background: var(--main01);
    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 0px;
}

.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: var(--main);
}

.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 .sel-pick {}
.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 .bet-pick-wrap .score {white-space:nowrap}
.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: var(--main);
}
.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: 12px;
}

.bet-list-wrap .slip .content .resultZone .result{
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    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 20px;
    border-radius: 5px;
    background: #f73759;
}

.bet-list-wrap td .icon-check:before{
    content:'\ebb7';
    font-size: 21px;
    cursor: pointer;
}

.bet-list-wrap td.on .icon-check:before{
    content:'\ebb6'
}

.bet-content-mob {
    font-size: 0.75em;
    margin-bottom: 20px;
    border: 1px solid var(--color-info);
    background: linear-gradient(0deg, black, #373737);
    color: white;
}
.bet-content-mob .bet-time {
    background-color: #00a7ed;
    padding-left: 10px;
    border-top: 1px solid var(--color-primary);
    color: var(--fg-primary);
}
.bet-content-mob .league-info {
    padding-left: 15px;
    /* background-color: #8d8d8db3; */
    color: white;
    font-size: 1.1em;
}
.bet-content-mob li {
    height: 36px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    font-size: 1.2em;
}

.bet-content-mob .bet-pick-wrap .under-mark { 
    position: absolute; 
    right: 5px; 
    width: 10px; 
    height: 11px; 
    margin-top: 13px;
}
.bet-content-mob .bet-pick-wrap .over-mark { 
    position: absolute; 
    left: 5px; 
    width: 10px; 
    height: 11px; 
    margin-top: 13px;
}
.bet-content-mob .bet-title div{
    text-align: center;
    padding: 0px 5px;
    height: 100%;
    display: inline-block;
    line-height: 38px;
    font-size: 11px;
    cursor: pointer;
    position: relative;
    border-right: 1px solid #d0d0d0;
}
.bet-content-mob .bet-title .time {
    width: 33%
}
.bet-content-mob .bet-title .market-name {
    width: 55%
}
.bet-content-mob .bet-title .result { 
    width: 12%;
    text-align: center;
}
.bet-content-mob .status {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 2px 5px;
    background-color: var(--color-primary);
    color: #fff;
    /* height: 22px; */
    font-size: 12px;
    font-weight: 400;
}

.bet-content-mob .bet-pick-wrap div {
    text-align: center; 
    padding: 0px 5px;
    height: 100%;
    display: inline-block;
    line-height: 38px;
    font-size: 11px;
    cursor: pointer;
    position: relative;
    border-right: 1px solid #d0d0d0;
}
.bet-content-mob .bet-pick-wrap .home-pick {
    width: 45%;
}
.bet-content-mob .bet-pick-wrap .base-line {
    width: 10%;
}
.bet-content-mob .bet-pick-wrap .away-pick {
    width: 45%;
}
.bet-content-mob .bet-pick-wrap .home-pick .team-name { 
    width: 65%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    text-align: left;
}
.bet-content-mob .bet-pick-wrap .away-pick .team-name { 
    width: 65%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: right;
    text-align: right;
    padding-right: 5px;
}
.bet-content-mob .bet-pick-wrap .home-pick .handi-mark {
    position: absolute;
    right: 8px;
    width: 10px;
    height: 11px;
    color: #00ff01;
}
.bet-content-mob .bet-pick-wrap .away-pick .handi-mark {
    position: absolute;
    left: 2px;
    width: 10px;
    height: 11px;
    color: #00ff01;
}
.bet-content-mob .bet-pick-wrap .home-pick .odd-mark {
    position: absolute;
    right: 8px;
    width: 10px;
    height: 11px;
    color: #7e19ff;
    font-weight: bold;
}
.bet-content-mob .bet-pick-wrap .away-pick .even-mark {
    position: absolute; 
    left: 2px; 
    width: 10px; 
    height: 11px; 
    color: red; 
    font-weight: bold;
}
.bet-content-mob .bet-pick-wrap .single-pick {
    width: 100%;
}
.bet-content-mob .bet-pick-wrap .single-pick .team-name {
    width: 80%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}
.bet-content-mob .sel-pick {
    background-color: var(--main);
    color: white;
}
.bet-content-mob .bet-info1, .bet-content-mob .bet-info2 {
    text-align: center;
    height: 100%;
    line-height: 33px;
    cursor: pointer;
    position: relative;
    border-right: 1px solid #d0d0d0;
}
.bet-content-mob .bet-info1 .folder-info {
    width: 30%;
}

.bet-content-mob .bet-info1 .folder-info span:first-child {
    float: left;
    left: 10px;
    position: relative;
}
.bet-content-mob .bet-info1 .total-rate-info {
    width: 53%;
}
.bet-content-mob .bet-info1 .total-rate-info span:first-child {
    float: left;
    left: 30px;
    position: relative;
}
.bet-content-mob .bet-info1 .cancel-btn {
    width: 17%;
    background: #9fff9f;
    font-size: 0.8em;
    border-radius: 5px;
}
.bet-content-mob .bet-info1 .cancel-btn.disabled{
    background: #525252;
}
.bet-content-mob .bet-info1 .cancel-btn a {
    color: #272727;
}

.bet-content-mob .bet-info2 {
    border-bottom: 1px solid var(--color-info);
}
.bet-content-mob .bet-info2 .bet-cash-info {
    width: 30%;
}
.bet-content-mob .bet-info2 .bet-cash-info span:first-child {
    float: left;
    left: 3px;
    position: relative;
}
.bet-content-mob .bet-info2 .bet-cash-info .cash-bet {
    color: var(--main);
}
.bet-content-mob .bet-info2 .exp-bet-cash-info {
    width: 55%;
}
.bet-content-mob .bet-info2 .exp-bet-cash-info .cash {
    color: var(--main);
}
.bet-content-mob .bet-info2 .exp-bet-cash-info span:first-child {
    float: left;
    left: 30px;
    position: relative;
}
.bet-content-mob .bet-info2 .final-result {
    width: 15%;
    text-align: right;
    position: relative;
}

.paging_box {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.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: #ffffff;
    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(--main);
    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,.pager_block ul li.last:hover a {
    color: #ffffff;
    background: var(--main);
    border: 1px solid var(--main)
}

.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 {
}

.noticeFrame .tabZone ul {
    display: flex;
    overflow: scroll;
}

.noticeFrame .tabZone ul li {
    height: 58px;
    width: 100%;
    max-width: 200px;
    background: linear-gradient(180deg,#21273a 0%,#0b0f11 100%);
    box-shadow: inset 0 4px var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s ease-out;
    position: relative;
    border: 1px solid #304059;
    margin-left: -1px;
    padding: 10px;
}

.noticeFrame .tabZone ul li.active,noticeFrame.tabZone ul li:hover {
    background: linear-gradient(107.82deg,var(--main) 2.47%,var(--main01) 40.06%,var(--main01) 76.13%);
}

.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: transparent;
    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: #ffffff;
    font-size: 14px;
    transition: .4s ease-out;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.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: #ffffff
}

.noticeFrame .searchZone {position: relative;width: 300px;margin-right: 15px;}
.noticeFrame .searchZone input {color: #a4e3ff;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: 0px 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;}

.main_content_wrap_notice .reply-list table tr th {background: #010e28;vertical-align: top;padding: 10px;}
.main_content_wrap_notice .reply-list table tr td {border-radius: 0;/* background: #383838; */color: white;height: 60px;border-right: 1px solid;border: 0;border-color: #505050;}

.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: linear-gradient(0deg, #424242, #6c6c6c);min-width: 100px;text-align: center;cursor: pointer;}
.comp_rate .main_tap li.on{color: #ffffff;background: linear-gradient(0deg, #0079a8, #0abbff);}
.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;background: #2e3135;cursor: pointer;}
.comp_rate .sub_tap li.on{background: #038dc2;}

.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 #979797;}

.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: var(--main);
    font-size: 14px;
    transition: .3s ease-out;
    cursor: pointer
}

.contentZone .time .pageBack a:hover {
    color: var(--main)
}

.contentZone .time .pageBack .crossLine {
    width: 1px;
    height: 13px;
    background-color: var(--main);
    margin: 0 10px
}

.contentZone .time .title {
    color: #ffffff;
    font-size: 20px;
    margin: 0 auto
}

.contentZone .time span.timeR {
    color: #ffffff;
    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 #304059;
    background-color: #2e3135
}

.contentZone .txt h2 {
    font-size: 20px;
    color: var(--main)
}

.contentZone .txt p {
    font-size: 12px;
    color: #ffffff;
    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: var(--main);
    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: var(--main)
}

.main-content{
    min-height: 100vh
}

#attendance .main-content .calendar-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
    gap: 0.2em;
}
#attendance .main-content .calendar-wrap .head {
    margin-top: 1em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    font-size: 1em;
}
#attendance .main-content .calendar-wrap .head .left-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
}
#attendance .main-content .calendar-wrap .head .left-wrap select {
    box-shadow: var(--shadow-secondary);
    font-weight: 700;
    font-size: 1.2em;
    padding: 0.75em;
    padding-right: 2em;
    color: #d5d5d5;
    width: 115px;
}
#attendance .main-content .calendar-wrap .head .left-wrap option {
    color: #d5d5d5;
}
#attendance .main-content .calendar-wrap .head .left-wrap select.month {
    margin-left: 0.2em;
}
#attendance .main-content .calendar-wrap .head .right-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 1.2em;
    background: var(--main);
    box-shadow: var(--shadow-primary);
    padding: 0 1em;
    border-radius: 1em;
    color: #ffffff;
}
#attendance .main-content .calendar-wrap .head .right-wrap .ac_cnt {
    font-weight: 700;
    padding: 0 1em;
}
#attendance .main-content .calendar-wrap .calendar {
    margin-top: 1em;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}
#attendance .main-content .calendar-wrap .calendar .cols {
    display: grid;
    -webkit-justify-content: center;
            justify-content: center;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--main);
}
#attendance .main-content .calendar-wrap .calendar .cols .cell {
    height: 3em;
    color: white;
    font-size: 1.5em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
}
#attendance .main-content .calendar-wrap .calendar .rows {
    display: grid;
    -webkit-justify-content: center;
            justify-content: center;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    font-family: "Pretendard";
    font-size: 1.25em;
}
#attendance .main-content .calendar-wrap .calendar .rows .cell {
    height: 7em;
    color: var(--font-third);
    font-weight: 700;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
}
#attendance .main-content .calendar-wrap .calendar .rows .cell:nth-child(7n+1) {
    color: var(--color-error);
}
#attendance .main-content .calendar-wrap .calendar .rows .cell:nth-child(7n) {
    color: var(--blue-04);
}
#attendance .main-content .calendar-wrap .calendar .rows .cell.today {
    color: var(--fg-primary);
}
#attendance .main-content .calendar-wrap .calendar .rows .cell.day {
    font-weight: 700;
    padding-top: 0.5em;
    background: linear-gradient(0deg, #3f3f3f, #3c3c3c);
    border: 1px solid #060606;
}
#attendance .main-content .calendar-wrap .calendar .rows .cell.day .image {
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
    -webkit-flex-grow: 1;
            flex-grow: 1;
    margin: 0.25em;
    background: url(../images/common/att2.png) no-repeat center;
    background-size: contain;
}
#attendance .main-content .calendar-wrap .calendar .rows .cell.day .image.consec {
    background-image: url(../images/common/att1.png);
}

#attendance .attendance-reward-wrap {
    
}

#attendance .attendance-reward-wrap .attendance-reward-btn {
    width: 100px;
    height: 35px;
}

#roulette .main-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
}
#roulette .main-content .roulette-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#roulette .main-content .roulette-container .roulette {
    max-width: 500px;
    position: relative;
    display: block;
    z-index: 1;
}
#roulette .main-content .roulette-container .roulette .wheel {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    width: 90%;
    top: 3.8%;
    left: 5%;
    transition: transform 6.5s cubic-bezier(0, 0, 0.3, var(--pt-bezier)), -webkit-transform 6.5s cubic-bezier(0, 0, 0.3, var(--pt-bezier));
}
#roulette .main-content .roulette-container .roulette .wheel.waiting {
    transition-duration: 60s;
}
#roulette .main-content .roulette-container .roulette .wheel .roulete_img {
    will-change: transform;
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
    width: 100%;
}
#roulette .wheel-slice {
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 7%;
    font-weight: 900;
    text-align: center;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    padding-left: 10%;
    -webkit-transform: translateY(-50%) rotate(136deg);
            transform: translateY(-50%) rotate(136deg);
    color: white;
}
#roulette .wheel-slice:nth-child(1) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 0));
            transform: translateY(-50%) rotate(calc(30deg * 0));
}
#roulette .wheel-slice:nth-child(2) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 1));
            transform: translateY(-50%) rotate(calc(30deg * 1));
}
#roulette .wheel-slice:nth-child(3) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 2));
            transform: translateY(-50%) rotate(calc(30deg * 2));
}
#roulette .wheel-slice:nth-child(4) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 3));
            transform: translateY(-50%) rotate(calc(30deg * 3));
}
#roulette .wheel-slice:nth-child(5) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 4));
            transform: translateY(-50%) rotate(calc(30deg * 4));
}
#roulette .wheel-slice:nth-child(6) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 5));
            transform: translateY(-50%) rotate(calc(30deg * 5));
}
#roulette .wheel-slice:nth-child(7) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 6));
            transform: translateY(-50%) rotate(calc(30deg * 6));
}
#roulette .wheel-slice:nth-child(8) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 7));
            transform: translateY(-50%) rotate(calc(30deg * 7));
}
#roulette .wheel-slice:nth-child(9) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 8));
            transform: translateY(-50%) rotate(calc(30deg * 8));
}
#roulette .wheel-slice:nth-child(10) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 9));
            transform: translateY(-50%) rotate(calc(30deg * 9));
}
#roulette .wheel-slice:nth-child(11) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 10));
            transform: translateY(-50%) rotate(calc(30deg * 10));
}
#roulette .wheel-slice:nth-child(12) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 11));
            transform: translateY(-50%) rotate(calc(30deg * 11));
}
#roulette .wheel-slice:nth-child(even) {
    color: #d20000;
}
#roulette .wheel-slice .coupon {
    width: 40%;
}

#roulette .main-content .roulette-container .roulette .outside {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}
#roulette .main-content .roulette-container .roulette .outside img {
    width: 100%;
    height: auto;
}
#roulette .main-content .roulette-container .roulette .roulette-btn {
    z-index: 103;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 37.5%;
    left: 50.3%;
}
#roulette .main-content .roulette-container .roulette .start-btn {
    background: url(../images/roulette/start.png) center no-repeat;
    background-size: contain;
    width: 100px;
    height: 120px;
    border-radius: 100px;
    border-style: none;
    transition: all 0.3s;
    -webkit-transform-origin: 50% 60%;
            transform-origin: 50% 60%;
}
#roulette .main-content .roulette-container .roulette .start-btn::after {
    content: "";
    position: absolute;
    display: block;
    top: 53%;
    left: 49%;
    width: 45%;
    height: 22%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 12px;
    background: rgba(59, 23, 1, 0.85);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    box-shadow: 0 0 1px 1px rgba(59, 23, 1, 0.85);
    opacity: 0;
    transition: all 0.2s;
}
#roulette .main-content .roulette-container .roulette .start-btn.disabled {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}
#roulette .main-content .roulette-container .roulette .start-btn.disabled::after {
    opacity: 1;
}
#roulette .main-content .roulette-container .roulette .start-btn:hover:not(:active) {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
#roulette .main-content .roulette-info {
    position: relative;
    background: #fffae4;
    padding: 1em;
    top: 0;
    width: 500px;
    box-shadow: 13px 0px 20px 0px rgba(0, 0, 0, 0.49);
    z-index: -1;
    height: 600px;
}
#roulette .main-content .roulette-info::after {
    content: "";
    -webkit-mask-image: linear-gradient(102deg, black, transparent 60%);
    mask-image: linear-gradient(102deg, black, transparent 60%);
    background: url(../images/roulette/card-trail.png) left center no-repeat;
    background-size: 100% 100%;
    -webkit-filter: drop-shadow(5px 4px 6px rgba(0, 0, 0, 0.4901960784));
    filter: drop-shadow(5px 4px 6px rgba(0, 0, 0, 0.4901960784));
    position: absolute;
    display: block;
    height: 100%;
    top: 0;
    left: 100%;
    width: 26em;
    opacity: 0.8;
}
#roulette .main-content .roulette-info .count-wrap {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    /* height: 70%; */
}
#roulette .main-content .roulette-info .count-wrap h2.title {
    font-size: 1.4em;
    color: #825000;
    font-weight: 700;
    padding: 1em 0;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
    text-align: center;
}
#roulette .main-content .roulette-info .count-wrap .content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    height: 100%;
    margin-top: 20%;
}
#roulette .main-content .roulette-info .count-wrap .content .count-label {
    margin-right: 1em;
}
#roulette .main-content .roulette-info .count-wrap .content .coupon {
    font-size: 1.5em;
    width: 6em;
    height: 6em;
    border-radius: 50%;
    background: #f0ac19;
    color: #fff;
    border: 1px solid #825000;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}
#roulette .main-content .roulette-info .count-wrap .content .coupon .coupon-cnt {
    font-size: 1em;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    margin-right: 0.2em;
}
#roulette .main-content .roulette-info .count-wrap .content .coupon span {
    font-size: 0.9em;
}
#roulette .main-content .roulette-container {
    padding: 15px;
}


.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;
}
#sms_popup.modalX {
    width:300px;
    height: auto;
    min-height:unset;
}
#sms_popup.modalX .content {
    margin-top: 30px;
}
#sms_popup.modalX button {
    margin-top:20px;
    padding: 8px 15px;
    border-radius: 5px;
    background: #03A9F4;
    color: white;
    margin-bottom: 10px;
}
.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: var(--font-primary);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.content-view .container .top .from {
    color: var(--gray-06);
}
.content-view .container .top .time {
    color: var(--gray-06);
}
.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: var(--font-primary);
}
.content-view .container .bottom .content {
    width: 100%;
    min-height: 200px;
    word-break: break-all;
    overflow-y: auto;
    white-space: pre-wrap;
    text-align: left;
}
.content-view .container .bottom .content::-webkit-scrollbar-thumb {
    height: 30%;
    background: var(--scroll-fg-secondary);
    border-radius: 10px;
}
.content-view .container .bottom .content::-webkit-scrollbar-track {
    background: var(--scroll-bg-secondary);
}
.content-view .container .bottom .content::-webkit-scrollbar {
    width: 8px;
}

.main_content_continer{
    margin-top: 70px;
}
.v_deep_home .main_content_wrap .casinoZone {
    margin-top: 20px;
    padding-bottom: 0;
    width: 100%
}

.v_deep_home .main_content_wrap .casinoZone .title {
    color: #828282;
    font-size: 24px;
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 24px
}

.v_deep_home .main_content_wrap .casinoZone .title span {
    margin-right: 5px;
    color: var(--main);
}

.v_deep_home .main_content_wrap .casinoZone .title .txt {
    display: flex;
    font-family: arial;
    font-size: 24px
}

.v_deep_home .main_content_wrap .casinoZone .title h3 {
    color: var(--main);
    margin-left: 4px
}

.v_deep_home .main_content_wrap .casinoZone .content ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(24.5%, 24.5%));
    justify-content: start;
    gap: 10px;
}

.v_deep_home .main_content_wrap .casinoZone .content ul li {
    width: 100%;
    height: 240px;
    border: 2px solid #304059;
    border-radius: 10px;
    background: #21273a;
    background: linear-gradient(180deg,#21273a 0%,#0b0f11 100%);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: .4s
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .ppPro {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .ppPro img {
    width: 6vw
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .logo {
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    right: 3%;
    top: 4%;
    z-index: 3
}

.v_deep_home .main_content_wrap .casinoZone .content ul li:hover {
    border: 2px solid var(--main);
    filter: drop-shadow(0px 0px 20px var(--main));
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .logoA {
    width: 30%;
    padding-bottom: 11.1%;
    transition: .3s ease-out;
    background-size: contain;
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .model {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 0px;
    transition: .3s ease-out;
    position: absolute;
    z-index: 2;
    margin: 0 auto;
    padding-bottom: 45%;
    top: 5%;
}

.v_deep_home .main_content_wrap .casinoZone .content ul li.casino01 .modelA {
    padding-bottom: 55%;
    top: 5%;
    left: -7%
}

.v_deep_home .main_content_wrap .casinoZone .content ul li:hover .model {
    background-position-y: 5px
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: absolute;
    bottom: 18px
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .txt h2 {
    font-size: 1.3vw;
    color: var(--main);
    transition: .4s
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .txt span {
    font-size: .8vw;
    color: var(--main);
    transition: .4s
}

.v_deep_home .main_content_wrap .casinoZone .content ul li:hover .txt h2,.v_deep_home .main_content_wrap .casinoZone .content ul li:hover .txt span {
    color: #ffffff
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .mask {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease-out;
    opacity: 0;
    background-size: cover
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .mask .inner {
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    border-radius: 8px;
    z-index: 1;
    display: none;
    transition: .4s ease-out;
    opacity: 0
}

.v_deep_home .main_content_wrap .casinoZone .content ul .maintainGo .maintain {
    display: flex
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .maintain {
    display: none;
    background-image: linear-gradient(0deg,rgba(0,168,234,.75),rgba(0,168,234,.75));
    border-radius: 8px;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .maintain span {
    font-size: 6vw;
    color: #ffffff
}

.v_deep_home .main_content_wrap .casinoZone .content ul li .maintain h4 {
    color: #ffffff;
    font-size: 1vw;
    font-weight: 700;
    margin-top: 3%
}

.v_deep_home .main_content_wrap .casinoZone .content ul li:hover .mask,.v_deep_home .main_content_wrap .casinoZone .content ul li:hover .inner {
    opacity: 1
}

.v_deep_home .main_content_wrap .slotZone {
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

.v_deep_home .main_content_wrap .slotZone .leftFrame {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.v_deep_home .slotShow {
    display: flex!important
}

.v_deep_home .slotHide {
    display: none!important
}

.v_deep_home .main_content_wrap .slotZone .slotLeft {
    width: 78%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.v_deep_home .main_content_wrap .slotZone .leftZone {
    width: 56%;
    border-radius: 10px;
    background: #21273a;
    background: linear-gradient(180deg,#21273a 0%,#0b0f11 100%);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .4s ease-out
}

.v_deep_home .main_content_wrap .slotZone .leftZone .pic {
    background-size: cover;
    width: 100%;
    padding-bottom: 54%;
    transition: .4s ease-out;
    position: relative
}

.v_deep_home .webp .main_content_wrap .slotZone .casino .leftZone .pic {
    background: url(../images/main/adL_casino.png) no-repeat center;
    background-size: contain;
}

.v_deep_home .webp .main_content_wrap .slotZone .slot .leftZone .pic {
    background: url(../images/main/adL_slot.png) no-repeat center;
    background-size: contain;
}

.v_deep_home .webp .main_content_wrap .slotZone .mini .leftZone .pic {
    background: url(../images/main/adL_mini.png) no-repeat center;
    background-size: contain;
}

.v_deep_home .webp .main_content_wrap .slotZone .virtual .leftZone .pic {
    background: url(../images/main/adL_virtual.png) no-repeat center;
    background-size: contain;
}

.v_deep_home .webp .main_content_wrap .slotZone .sports .leftZone .pic {
    background: url(../images/main/adL_sports.png) no-repeat center;
    background-size: contain;
}

.v_deep_home .main_content_wrap .slotZone .leftZone:hover .pic {
    transform: rotate(5deg) scale(1.1)
}

.v_deep_home .main_content_wrap .slotZone .leftZone .ppPro {
    position: absolute;
    top: 0px;
    left: 0px
}

.v_deep_home .main_content_wrap .slotZone .leftZone .ppPro img {
    width: 8vw
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li .ppPro {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 8
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li .ppPro img {
    width: 2.78vw
}

.v_deep_home .main_content_wrap .slotZone .leftZone .pic .maintain {
    display: none;
    background-image: linear-gradient(0deg,rgba(0,168,234,.75),rgba(0,168,234,.75));
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.v_deep_home .main_content_wrap .slotZone .leftZone .pic .maintain span {
    font-size: 6vw;
    color: #ffffff
}

.v_deep_home .main_content_wrap .slotZone .leftZone .pic .maintain h4 {
    color: #ffffff;
    font-size: 1vw;
    font-weight: 700;
    margin-top: 3%
}

.v_deep_home .main_content_wrap .slotZone .leftZone .maintainGo .maintain {
    display: flex
}

.v_deep_home .main_content_wrap .slotZone .centerZone {
    width: 35%
}

.v_deep_home .main_content_wrap .slotZone .centerZone .upZone {
    padding-bottom: 20px;
    border-bottom: 1px solid #304059;
    margin-bottom: 20px
}

.v_deep_home .main_content_wrap .slotZone .centerZone .upZone h2 {
    color: var(--main);
    font-size: 2.1vw;
    margin-bottom: 20px
}

.v_deep_home .main_content_wrap .slotZone .centerZone .upZone p {
    color: #ffffff;
    line-height: 1.6;
    font-size: .8vw
}

.v_deep_home .main_content_wrap .slotZone .centerZone .downZone {
    display: flex;
    justify-content: space-between
}

.v_deep_home .main_content_wrap .slotZone .centerZone .downZone a {
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    font-size: 12px;
    padding: 22px 0;
    margin-bottom: 21px;
    box-shadow: none;
    background: #015686;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    transition: .4s ease-out
}

.v_deep_home .main_content_wrap .slotZone .centerZone .downZone a:hover {
    font-weight: 700;
    background: var(--main)
}

.v_deep_home .main_content_wrap .slotZone .rightZone {
    width: 15%
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li {
    width: 100%;
    border: 1px solid #304059;
    border-radius: 10px;
    margin-bottom: 21px;
    background: #21273a;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: .4s ease-out
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li:before {
    content: "";
    background-image: linear-gradient(0deg,rgba(0,168,234,.75),rgba(0,168,234,.75));
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    opacity: 0;
    transition: .4s ease-out
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li:hover:before {
    opacity: 1
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li .pic {
    background-size: cover;
    background-position: center;
    padding-bottom: 25%;
    width: 100%;
    z-index: 2;
    position: relative;
    transition: .4s ease-out
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li:hover .pic {
    transform: rotate(5deg) scale(1.2)
}

.v_deep_home .webp .main_content_wrap .slotZone .rightZone ul li.s01 .pic01 {
    background-image: url(../images/main/adr_casino.png);
}

.v_deep_home .webp .main_content_wrap .slotZone .rightZone ul li.s02 .pic02 {
    background-image: url(../images/main/adr_slot.png);
}

.v_deep_home .webp .main_content_wrap .slotZone .rightZone ul li.s03 .pic03 {
    background-image: url(../images/main/adr_mini.png);
}

.v_deep_home .webp .main_content_wrap .slotZone .rightZone ul li.s04 .pic04 {
    background-image: url(../images/main/adr_virtual.png);
}

.v_deep_home .webp .main_content_wrap .slotZone .rightZone ul li.s05 .pic05 {
    background-image: url(../images/main/adr_sports.png);
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li .mask {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #f2d09b;
    background: linear-gradient(180deg,#21273a 0%,#0b0f11 100%);
    border-radius: 8px;
    z-index: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: .4s ease-out;
    opacity: 0
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li .mask .inner {
    width: 98%;
    height: 98%;
    background: #ffeed3;
    background: linear-gradient(180deg,#21273a 0%,#0b0f11 100%);
    border-radius: 8px;
    z-index: 1;
    transition: .4s ease-out;
    opacity: 0
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li:hover .mask,.v_deep_home .main_content_wrap .slotZone .rightZone ul li:hover .mask .inner {
    opacity: 1
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li .txt {
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
    position: absolute;
    z-index: 3;
    float: left;
    left: 4%;
    top: 29%;
    transition: .4s ease-out;
    opacity: 0
}

.v_deep_home .main_content_wrap .slotZone .rightZone ul li:hover .txt {
    left: 18%;
    opacity: 1
}

.v_deep_home .main_content .main_content_wrap .infoZone {
    width: 100%;
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 {
    width: 100%;
    border: 1px solid #304059;
    background-color: #2e3135;
    border-radius: 10px;
    padding: 23px;
    margin-top: 25px;
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01:before {
    position: absolute;
    top: 0px;
    width: 420px;
    height: 31px;
    left: 0px
}

.v_deep_home .webp .main_content .main_content_wrap .infoZone .info01:before {
    background-image: url(data:image/webp;base64,UklGRigKAABXRUJQVlA4WAoAAAAQAAAAowEAHgAAQUxQSNwEAAAFkB1JkiQrs7sCYMgDIqHCjQqIBPIgwTuqOiszq+Yw27+IcOC2bSTN3jszrRw73eMJ2/bry8ftmbn8//Nt2/5+2p6dy7/Pv75uz8/ld9373OyM2zN0+cC2uzXSIzcJULCCr4IAZWW9SThgIsdVEXQCSl3IkLAC0C1Vtbc3tb0SgDLSQlBEL2QCjkaOC8CChbIqNaJWUgrnARBYHMmuDGEqeG5tizXUycYb7q7CnBYK45OoUBECragnHAj8Onkl1FVWvmgbiTn6OOPYCij2MbwqRGijtEChisMIKBQCCr4svPtGGYmZVwgQhGAmtjq0c2rloghalVMBEEOiwGA645l1dpyTvtDzAlScm+QVEYAZRADKfULU4po/vxA6fdt/w+k2fWiyVhZFTBZdRajPU1eFYdaJlvH+epf15FlQFLT86JqAWPCyZxmnPJdKab1DAEOBnWEGVQGtvGeZ0SCj+tw9o9FeHt4ufag/3DI0PVUCK4B6MvQR39nHq058USMlEUU1ehY1MPpwjykjh7r7ykcAI2UYgo8iNXpB2sLdEvaxQzUBgw14StOYRQlMaQNFGNisAhuVrxMUOCMSwrdiu2KtaXB2Pcg+a5epnSqhEN4dlt42IV0zJijuesNxXBESR9ztbX05xKRwmVJ7drkX59dgWzVzC6pNATpA9PJwY0spwBXzGQgSVxz7DdDFJkCZ3bZVcptBBzPQO88RJCIAZAJrOHMW0GOkRIgqX+ZJVMxlZlktitHJhL3k0p8GhjOVjaIAGsuEiUC5QYrltCGRcLmQHaK68fqDF2q4ysNIuJ2MwexMEMKhGvLMX2EK+QWwXwAg7Or9VMMq+2UPZoVTGBkV5eM8Fb9OYAZziaAITgU4ZQs4rXGMQZiGdw6laD0TQpEXNZpMi7U7mS4zrxMNLegiR44LxSXBNpcJz2eLqYJRzNbnOMdTZkhvrBjoWTwC9oXT8Z0w6RzwMOjI7DdifHdwC0+t4RHoUlRYQmBZ7NBlKDmcxyqJBJ7dGcqhpGic6vLF5ydTULy17Jbu+30KIoqAREhRUa+iztqCCeXmSIsv4fwSR2h6KPL7YdFLABBFLxyGRELKWLAUFi/RxCV0s383QIpTAq4JrBCNGHjdbBJNPzZDMH+qcsoyzUZZ6WR4wu2xVVVVtj2Lg1FC0hiOXVsQETL9rLHl7Qwb7UhuEXXLd1S2H4PUVvcW1RF9pr/aTI0C5xk0VshcwAlePd7BhvM9dH0yIiQxOjJGzx1t2MGUsF5mSELCgDwtQKi2yYb+3ADCZrURSngzYKTZqinPXARGNS/OGVRV9LBgKkgWioDaR8sUWeawVCwnyFCSGgaHVWzXizadhUKR9rE3UiMx5Go0+VRbOtb4JoxBb4g6zWU4LaQz2+a/7qTJTcSOMRE27rtKw6Inl+AO+VqnVnCOZz6q8d0RPAnncWXPzcVtn0Qcop+xsgO2zSRgVZlwEeNWfk7SrxDASoEFoP7tYytd+LvcB5/FY9mBfch7dO44KQkJKGMtmoOYO4RtMBBnCoq3hq6SjPWfh51pONHnHtRu1sAZ7+Gj4aIujZXxMFaf8tvMpO39LFxiVK45Ma2leC0yp/yye6pl2UJZRkSQQD+8yCX6+Maj+aUUAkfGYKGcerW4ppY/WWODyonyX0mvblZQOCAmBQAAMCMAnQEqpAEfAD5tLJBFpCKhmEzdOEAGxLM2DKXKfRm3oAdQnOftOmnO/1w/9+Ql/T3yv85/x/YBzZvTv/Ov996lf5P/dv1R9/nTAOe//cz4jf8l+IHtQZzdrRdM+zDzQLc3Y3gEWeUjmG1npu2nDyAaImxCRGwp2U7dZieUcFVPDTfsMEso4tNoihVzzpo3G8+VJfQCcTFUnv0cmlGfGUbK9f1A9pT381VGy3CfWLA85sfh7FxbCKfhkCWmmIN2XL80Jg+jv62DDFLvjJzjMtcRuErnM5rp2v0Oqnr6Uws2QXzgU7pSMJfa8eyfGQGGevX2z+gQh9oUgoZDbmzsXFI5dhSSakg+5VI8QozmFiq/J2X4fm/TSFzhv3EBUKTlAcAA/vPl9F3Hoaq5uTbO8b+Odt+4dUxACOpIjJQK37x4yXPzi/rH//1av/a88iKOKOJTBKp/u/0Xk4OX0O/I1Lk0NaRaED6aPeX6o2os9PWZSi7QOp8p5wiI9OkxI8v5HXNFtKgmQs242gc3rp8UBpOkwrq6L/vcpTljRVxKw1gY0tuQ8USZHHkt+lbx9A4bgUhxCAXWWKBRJz6nUZOLUybULvPN1cK3pzONHqqoyJ6R+FdN4iaU+ly2SivNeZ6EbeNH9Wud07Hxw0RKksD0q1/QsehFLEykJY1n4rOiwfwCbpG8XdURZrkslUaxtYhNqyOIP46zGClq4C+p0vF8CVwy5gd/sK+WWRh6o8nQyieVxl1kGp9bng0RPI6Fcb+IcYeqAaTYijJOQToiNJ8jdc0QaRzCmR6psrtP7ZO88O8eS1h9Xtxdm8usB1JMAwT4ufbEagBjvCT7yAaiFQNlIZFLNHOd5bnP2LebrSjJ5sI771+onZ/6bU/4P//+nXEA7Yqp1ggIjcUpMTHLcP+LyM53zocAy/MGU+dO4e6mXpMyrO37quuDNRnhj5ST8ZJqBnTM8SVroiXRI487RLaUIQJVYTbwIxMITo+Xb0XnvgTFc2l2AxbIxRm4EWfy35s91PZNmhhmQ4al/Kfhb5jCebTUeWxklUaI2YMi6OITSvsfOswsHf/LcZOv2+lbbXWFajJx6PbnnRJ8cOZqsoFvwssBFWdppd+LH8TDeUvkqqHxFtlpfZ9YVlVtSrUyB/1uBhM3C9gGCW7/OgZRpJVSR93GF2k1OkjqWmBdUfAkpAtgULFzaMTVf5+FozaQPJcCfP0jnFjtG2XeXfReHG8ScWz94wBhT1cWoOHrUDHAlr3fcCqanvdxzRBWNTGpa5K+kZ+xbat7sCbV088X6feYxqL3Uz5Q2TJBcMN1B8fkjG7JU4CFjT707n+4urqCQKmpDlNfmXC6knx8CkqWX87Kue5jropJ710CQvGswBA1ShzIOtsfLv0xsiXHNXd9x7NIcrBxD/6FcIMDNuMNxKBHVvEUBfiD8KO/+aDgXy47/j7QoaaxYOI+L9thmGrxoPDiksvdmMXMd0KjoS8qqMx1FPFyXQgOCtEi+MjWDd44iZ2+IU06Gli5zK6XMm33Xb3+H4A8PFzNEz4ftPT8qcrwRWZU60aE/fuuoI8EiYSNND7LlaoSxYd1diXLRe3xBRIuZmz19WVkycRvjem++hL0SQ/13zR5pATxBZ1RfvOl4w2BVvodQiLtkcEXwpwrz8sXUf/EBvmvvprcPk/Ged8zvQ+kihtFUmEds6Gr8HsACwMGK1JyX0hZlOA/+8l3ohhOsl/l5+iGE6xSwqFUYcja/2D/IAAAAA==)
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .title {
    color: #828282;
    font-size: 18px;
    font-weight: 700
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .title span {
    color: var(--main)
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .listFrame {
    margin-top: 14px;
    height: 200px;
    overflow: hidden;
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list {
    animation-duration: 1s;
    background-position: -15px -13px;
    animation-iteration-count: infinite;
    animation-timing-function: step-start;
    animation-play-state: running
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list:hover {
    animation-play-state: paused
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list a {
    width: 100%;
    display: flex;
    height: 40px;
    align-items: center;
    border-bottom: 1px solid #485160;
    cursor: pointer;
    justify-content: space-between;
    transition: .4s ease-out;
    padding: 0 9px;
    background-color: #2e3135
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list.listC a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list a:hover {
    background-color: #00a8ea7a
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list a .no {
    color: #c9d8c2;
    font-size: 13px;
    width: 10%;
    padding-left: 1%
}

.v_deep_home .main_content .main_content_wrap .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
}

.v_deep_home .main_content .main_content_wrap .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
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list a .time {
    font-size: 12px;
    text-align: left;
    color: #ffffff;
    transition: .4s ease-out
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list a .message {
    font-size: 12px;
    text-align: left;
    color: #ffffff;
    transition: .4s ease-out;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 286px
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list a:hover .message {
    font-size: 12px;
    padding-right: 4%;
    color: #ffffff;
    transition: .4s ease-out
}

.v_deep_home .main_content .main_content_wrap .infoZone .info01 .list a:hover .time {
    font-size: 12px;
    color: #ffffff
}

.v_deep_home .main_content .main_content_wrap .checkZone {
    width: 100%;
    height: 646px
}

.v_deep_home .main_content .main_content_wrap .checkZone .checkWrapper {
    width: 90%;
    margin: 0 auto;
    height: 646px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.v_deep_home .main_content .main_content_wrap .checkZone .checkWrapper span {
    color: var(--main);
    font-size: 324px;
    margin-bottom: 20px
}

.v_deep_home .main_content .main_content_wrap .checkZone .checkWrapper h4 {
    font-size: 30px;
    color: var(--main)
}

.v_deep_home .main_content .main_content_wrap .checkZone .checkWrapper h5 {
    font-size: 24px;
    color: var(--main);
    margin-top: 20px
}

.v_deep_home .pointFlow {
    background-color: var(--main);
    position: fixed;
    bottom: 50px;
    border-radius: 0 50px 50px 0;
    z-index: 14;
    cursor: pointer;
    right: 2vw;
    padding: 11px 37px 11px 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.v_deep_home .pointFlow img {
    height: 47px;
    position: absolute;
    top: 50%;
    left: -9%;
    transform: translateY(-50%)
}

.v_deep_home .pointFlow .txt {
    font-size: 14px;
    color: #ffffff
}

.v_deep_home .pointFlow .txt span {
    color: #fdc709
}

.v_deep_home .pointFlow .XX {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    top: 5px;
    right: 7px
}

.v_deep_home .pointFlow .XX span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700
}

.v_deep_home .aniPointFlow {
    -webkit-animation: aniPointFlow-8c6ca05e 15s infinite;
    animation: aniPointFlow-8c6ca05e 15s infinite
}

@keyframes aniPointFlow-8c6ca05e {
    0% {
        left: 120vw
    }

    to {
        left: -20vw
    }
}

.v_deep_home .luckyWheelFlow {
    position: fixed;
    bottom: 50px;
    cursor: pointer;
    left: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.v_deep_home .luckyWheelFlow .XX {
    background: #333333;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin-left: 20px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px
}

.v_deep_home .luckyWheelFlow .XX span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700
}

.v_deep_home .aniLucky {
    -webkit-animation: aniLucky-8c6ca05e 1s infinite;
    animation: aniLucky-8c6ca05e 1s infinite
}

@keyframes aniLucky-8c6ca05e {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(720deg)
    }
}

.v_deep_home .aniModel {
    -webkit-animation: aniModel-8c6ca05e 1s infinite;
    animation: aniModel-8c6ca05e 1s infinite
}

@keyframes aniModel-8c6ca05e {
    0% {
        background-position-y: 0px
    }

    50% {
        background-position-y: 5px
    }

    to {
        background-position-y: 0px
    }
}

.avoidFlicker{
    animation: defer_render-8c6ca05e 0s .1s forwards;
    opacity: 0
}

@keyframes defer_render-8c6ca05e {
    to {
        opacity: 1
    }
}

.NAV {
    display: none
}

.NAV_log {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #000000b3;
    z-index: 999
}

.NAV_log .pupop_content {
    width: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: #2e3135;
    border-radius: 15px;
    -o-background-size: contain;
    background-size: contain
}

.NAV_log .pupop_content .popWrapper {
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.NAV_log .pupop_content .popWrapper .leftZone {
    width: 50%;
    position: relative
}

.NAV_log .pupop_content .popWrapper .leftZone .pic {
    position: absolute;
    bottom: 0px
}

.NAV_log .pupop_content .popWrapper .leftZone .pic img {
    display: block
}

.NAV_log .pupop_content .popWrapper .rightZone .top {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px
}

.NAV_log .pupop_content .popWrapper .rightZone .top img {
    height: 52px
}

.NAV_log .pupop_content .popWrapper .XX {
    position: absolute;
    right: 20px;
    top: 17px;
    cursor: pointer;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    transition: .2s ease-out
}

.NAV_log .pupop_content .popWrapper .XX:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg)
}

.NAV_log .pupop_content .popWrapper .XX span {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700
}

.NAV_log .pupop_content .popWrapper .rightZone {
    width: 50%;
    margin: 0 auto;
    padding: 30px 26px 23px 0
}

.NAV_log .pupop_content .popWrapper .rightZone .title {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 22px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--main)
}

.NAV_log .pupop_content .popWrapper .rightZone .title h2 {
    font-family: arial;
    font-weight: 700;
    font-size: 24px;
    color: var(--main)
}

.NAV_log .pupop_content .popWrapper .rightZone .up {
    margin: 0 auto;
    width: 100%
}

.NAV_log .pupop_content .popWrapper .rightZone .bottom {
    margin-left: 34px;
    width: 664px;
    margin-top: 120px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .inputFrame {
    width: 95%;
    margin: 0 auto;
}
.NAV_log .pupop_content .popWrapper .rightZone .up .inputFrame .txtT {
    color: var(--main);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_content {
    position: relative;
    height: 40px;
    margin-bottom: 20px;
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone span.icon {
    background-image: url(../assets/images/shared/icon_account.html);
    width: 26px;
    height: 26px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone input {
    width: 100%;
    height: 42px;
    padding-left: 14px;
    background-repeat: no-repeat;
    margin-bottom: 8px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    color: #b4b4b4;
    background-color: #0b0b11;
    border: 1px solid #304059!important;
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* width: 95% */
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone input::-webkit-input-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone input:-moz-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone input::-moz-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone input:-ms-input-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone input::placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .check {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 24px;
    color: #ffffff;
    font-size: 24px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone input.mail {
    background-image: url(../assets/images/shared/icon_mail.html)
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .hint {
    padding: 8px 7px;
    margin-top: -4px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: #ffe0e0;
    border: 1px solid #f20f2a;
    border-radius: 5px;
    width: 95%
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .hint span {
    display: block;
    float: left;
    margin-right: 6px;
    color: #f20f2a;
    font-size: 12px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .input_content .hint .txt {
    color: #f20f2a;
    letter-spacing: 1px;
    font-size: 12px;
    float: left
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .input_content .iconInput {
    position: absolute;
    left: 3%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    color: #000000
}

.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .captcha_wrap {
    display: flex;
    margin-bottom: 8px;
}
.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .captcha_wrap input {
    margin-bottom: 0;
    flex-grow: 1;
}
.NAV_log .pupop_content .popWrapper .rightZone .up .input_zone .captcha_wrap img {
    height: 42px;
    max-width: 50%;
    border-radius: 5px;
}

.NAV_log .pupop_content .popWrapper .rightZone .rem_check {
    margin-bottom: 5px
}

.NAV_log .pupop_content .popWrapper .rightZone .rem_check label {
    padding-left: 25px;
    font-size: 12px;
    -webkit-column-rule: #a5a5a5;
    -moz-column-rule: #a5a5a5;
    column-rule: #a5a5a5;
    line-height: 20px
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btnZone .btnFrame {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btn_p {
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    transition: .2s ease-out;
    cursor: pointer;
    padding: 17px;
    border-radius: 50px;
    width: 48%;
    margin-bottom: 15px;
    float: left;
    background: var(--main);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none
}

.NAV_log .pupop_content .popWrapper .rightZone .up .goUnmember {
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    transition: .2s ease-out;
    cursor: pointer;
    padding: 17px;
    border-radius: 50px;
    width: 48%;
    margin-bottom: 15px;
    float: left;
    background: #f0ab05;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border: none
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btn_p:hover {
    background: var(--main)
}

.NAV_log .btn_p {
    text-decoration: none;
    font-size: 16px;
    color: #ffffff
}

.NAV_log .pupop_content .popWrapper .rightZone .up .goUnmember:hover {
    background: #ffcb52
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btn_p a {
    color: #ffffff
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btnZone .txtZone {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    width: 100%
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btnZone .txtZone a {
    color: #828282;
    font-size: 14px;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out;
    cursor: pointer
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btnZone .txtZone a:hover {
    color: #ffffff
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btnZone .txtZone a span {
    color: var(--main);
    text-decoration: underline;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out
}

.NAV_log .pupop_content .popWrapper .rightZone .up .btnZone .txtZone a span:hover {
    color: var(--main)
}

.NAV_reg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #000000b3;
    z-index: 999
}

.NAV_reg .pupop_content {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: #2e3135;
    border-radius: 5px;
    padding: 33px 54px;
    max-width: 600px;
}

.NAV_reg .pupop_content .XX {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    transition: .2s ease-out;
    width: 50px;
    height: 50px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%
}

.NAV_reg .pupop_content .XX:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg)
}

.NAV_reg .pupop_content .XX span {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700
}

.NAV_reg .pupop_content .reg {
    width: 100%;
    margin: 0 auto
}

.NAV_reg .pupop_content .reg .upFrame {
    z-index: 3;
    position: relative;
    width: 100%
}

.NAV_reg .pupop_content .reg .upFrame::-webkit-scrollbar-track {
    background-color: #f7f7f7
}

.NAV_reg .pupop_content .reg .upFrame::-webkit-scrollbar {
    width: 3px
}

.NAV_reg .pupop_content .reg .upFrame::-webkit-scrollbar-thumb {
    background-color: #cfd4e3
}

.NAV_reg .pupop_content .reg .topFrame {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    border-bottom: 2px solid var(--main);
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 13px;
    margin-bottom: 16px
}

.NAV_reg .pupop_content .reg .top {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.NAV_reg .pupop_content .reg .top img {
    height: 40px
}

.NAV_reg .pupop_content .reg .title {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px
}

.NAV_reg .pupop_content .reg .title h2 {
    font-family: arial;
    font-weight: 700;
    font-size: 29px;
    color: var(--main)
}

.NAV_reg .pupop_content .reg .up .s_title {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 22px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--main);
    font-family: arial;
    font-weight: 700;
    font-size: 24px;
    color: var(--main)
}

.NAV_reg .pupop_content .reg .up .input_zone {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.NAV_reg .pupop_content .reg .up .input_zone .lineUse .input-out-frame {
    position: relative;
    padding-bottom: 14px;
    margin-right: 3%;
    width: 50%
}

.NAV_reg .pupop_content .reg .up .input_zone {
    width: 100%;
    margin-right: 0vw
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-bottom: 5px;
}

.NAV_reg .pupop_content .reg .up .input_zone .lineUse .input-Out-all:after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #e5e5e5;
    position: absolute;
    bottom: -3px
}

.NAV_reg .pupop_content .reg .up .input_zone .lineUse .noLine:after {
    display: none
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .info {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30%;
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .info span.ficon {
    color: var(--main);
    font-size: 15px;
    margin-right: 5px
}

.NAV_reg .pupop_content .reg .downUse .input_zone .leftZone .inputFrame .info span.ficon {
    color: #ffffff
}

.NAV_reg .pupop_content .reg .downUse .input_zone .leftZone .inputFrame .info .txt {
    color: #333333!important
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .info .txt {
    color: var(--main);
    font-size: 14px;
    font-weight: 700
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content {
    background-repeat: no-repeat;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    color: #b4b4b4;
    background-color: #0b0b11;
    border: 1px solid #304059!important;
    font-size: 16px;
    position: relative;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .selectUse {
    padding-right: 34px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input {
    padding-left: 14px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 30px;
    margin-bottom: 0
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input:not(.browser-default):disabled {
    color: gray
}

.NAV_reg .pupop_content .reg .up .input_zone .gender .input_content input {
    cursor: default;
    color: #ffffff;
    z-index: -1
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse input {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-flex-grow: 3;
    -moz-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
    margin-bottom: 0
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse01 .checkUse,.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse01 .ko-KR-choose {
    right: 71px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse01 .zh-CN-choose {
    right: 69px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse01 .en-US-choose {
    right: 95px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse01 input {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse .checkUse {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-flex-grow: 2;
    -moz-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse .ko-KR-member {
    right: 72px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse .en-US-member {
    right: 148px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input:focus {
    border-bottom: none!important
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input::-webkit-input-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input:-moz-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input::-moz-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input:-ms-input-placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content input::placeholder {
    color: #4f4f4f;
    font-size: 14px
}

.NAV_reg .pupop_content .reg .up .input_zone .rightZone {
    margin-right: -10px!important
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content .hint {
    position: absolute;
    top: 40px;
    left: 0px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffe0e0;
    border: 1px solid #f20f2a;
    padding: 7px;
    border-radius: 5px;
    z-index: 1;
    width: 100%
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content .hint:after {
    content: "";
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAKCAMAAAC38k/IAAAAQlBMVEUAAAD4Q0P6Z2f5VVX4PDz4Ojr4Pj74PDz4PT34Q0P4Q0P4Q0P/4OD/5ub/3d3/2Nj+y8v9vr79ra38n5/7enr6ZmZKJ2S9AAAADHRSTlMACfLx28OvkXRXOybQV4qiAAAATUlEQVQI1z3KRxLAIAwEQUwOQiL+/6sWGDOn7aoVuxDE7dH6uXBjuH9HWYqM52Razs18Rz8JgKZfO6kKXFWJYXteyN0yEGGHyCA4kXgBkxADLXbuG+cAAAAASUVORK5CYII=);
    width: 12px;
    height: 10px;
    background-repeat: no-repeat;
    position: absolute;
    left: 16px;
    top: -8px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content .selHint {
    margin-top: 12px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content .hint span {
    display: block;
    float: left;
    margin-right: 6px;
    color: #f20f2a;
    font-size: 13px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content .hint .txt {
    color: #f20f2a;
    font-size: 12px;
    float: left;
    letter-spacing: 0px;
    line-height: 1.2;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 300px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content .checkUse {
    -webkit-flex-grow: .2;
    -moz-box-flex: .2;
    -ms-flex-positive: .2;
    flex-grow: .2;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.NAV_reg .pupop_content .reg .up .input_zone .verifiUse .input_content .checkUse {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.NAV_reg .pupop_content .reg .up .input_zone .verifiUse .input_content .ko-KR-mobile {
    right: 146px
}

.NAV_reg .pupop_content .reg .up .input_zone .verifiUse .input_content .zh-CN-mobile {
    right: 117px
}

.NAV_reg .pupop_content .reg .up .input_zone .verifiUse .input_content .en-US-mobile {
    right: 200px
}

.NAV_reg .pupop_content .reg .up .input_zone .checkOk .input_content .checkUse span {
    color: #ffffff
}

.NAV_reg .pupop_content .reg .up .input_zone .checkOk .input_content .checkUse span:after {
    background-color: var(--main)
}

.NAV_reg .pupop_content .reg .up .input_zone .input_content .checkUse span {
    color: #0b0b11;
    margin-right: 5px;
    position: relative;
    width: 16px;
    height: 16px
}

.NAV_reg .pupop_content .reg .up .input_zone .input_content .checkUse span:before {
    position: absolute;
    z-index: 1;
    left: 2px;
    top: -1px
}

.NAV_reg .pupop_content .reg .up .input_zone .input_content .checkUse span:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #b4b4b4;
    left: 0;
    top: 0;
    border-radius: 100px;
    z-index: 0
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content a.regBtn {
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 15px;
    position: absolute;
    right: 2px;
    border-radius: 3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 14px;
    font-weight: 700;
    background: #f0ab05;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content a.regBtn:hover {
    background: var(--main)
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame button.regBtn {
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 15px;
    border-radius: 3px;
    padding: 0 10px;
    font-weight: 700;
    background: var(--main);
    color: #ffffff;
    cursor: pointer;
    border: 0px;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-flex-grow: .2;
    -moz-box-flex: .2;
    -ms-flex-positive: .2;
    flex-grow: .2;
    white-space: nowrap;
    margin-left: 2px;
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame button.genderBtn01 {
    right: 79px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame button.genderBtn02 {
    right: 33px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .btnUse03 .checkUse {
    right: 10px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.sex {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    top: 18px;
    left: 3px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.sex input[type=radio] {
    width: auto;
    position: absolute;
    visibility: hidden
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.sex input[type=radio]:checked~label {
    background: var(--main);
    color: #ffffff
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.sex label {
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 15px;
    position: absolute;
    left: 78px;
    border-radius: 3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 30px;
    font-weight: 700;
    background: transparent;
    border: 1px solid var(--main);
    box-sizing: border-box;
    color: var(--main);
    cursor: pointer;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.eng li.female label {
    left: 97px!important
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.sex label:before,.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.sex label:after {
    width: auto;
    position: absolute;
    visibility: hidden
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame ul.sex li.male label {
    left: 0px
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame button.verifiBtn {
    display: none
}

.NAV_reg .pupop_content .reg .up .input_zone .verifiUse button.verifiBtn {
    display: block
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame button.regBtn:hover {
    background: var(--main)
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content select {
    display: block;
    border: none;
    background: none!important;
    padding: 0;
    height: 30px;
    padding-left: 15px;
}

.NAV_reg .pupop_content .reg .up .input_zone .inputFrame .input_content select:focus {
    outline: 0px
}

.NAV_reg .pupop_content .reg .btnFrame .btn_p {
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    transition: .2s ease-out;
    cursor: pointer;
    padding: 11px;
    border-radius: 50px;
    width: 100%;
    /* margin-bottom: 13px; */
    float: left;
    background-color: var(--main);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: 0px;
    margin-bottom: 16px;
}

.NAV_reg .pupop_content .reg .btnFrame .btn_p:hover {
    background: var(--main)
}

.NAV_reg .pupop_content .reg .btnFrame .btn_p a {
    text-decoration: none;
    font-size: 16px;
    color: #ffffff
}

.NAV_reg .pupop_content .reg .btnFrame .txtZone {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.NAV_reg .pupop_content .reg .btnFrame .txtZone a {
    color: #ffffff;
    font-size: 12px;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out
}

.NAV_reg .pupop_content .reg .btnFrame .txtZone a:hover {
    color: var(--main)
}

.NAV_reg .pupop_content .reg .btnFrame .txtZone a span {
    color: var(--main);
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    transition: .4s ease-out
}

.NAV_reg .pupop_content .reg .btnFrame .txtZone a span:hover {
    color: var(--main)
}


.telegram-wrap {
    display: flex;
    justify-content: center;
    font-size: 1.2em;
}

.telegram-wrap a {
    padding: 1em 1.6em;
    display: flex;
    align-items: center;
    background-color: var(--main);
    border-radius: 10px;
    cursor: pointer;
    margin: 0 0 0 10px;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.telegram-wrap a:first-of-type {
    margin: 0
}

.telegram-wrap a span {
    color: #015686;
    font-size: 1.5em;
    display: block;
    transition: .4s ease-out
}
.telegram-wrap a span:before {
    display: block
}

.telegram-wrap a span.icon-icconTELEGRAM {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255 255 255 / 50%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.telegram-wrap a:hover {
    box-shadow: 0 0 15px #00a3ff
}
.telegram-wrap a:hover span {
    color: var(--main);
}

.telegram-wrap a .txt {
    margin-left: .5em;
    font-size: 1em;
    color: #ffffff;
    transition: .4s ease-out;
    text-align: center;
}



.main_content {
    float: left;
    width: 100%;
    padding-bottom: 85px;
}

.main_content_wrap {
    /* width: 90%; */
    margin: 0 2%;
    height: auto
}

.rightContent {
    height: auto;
    overflow: hidden;
    padding-left: 250px;
    animation: leftIn .5s;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #1c1c1a;
    background: url(../images/common/bg.png) no-repeat;
    background-size: 100%;
}

.rightContent .contents {
    height: auto;
    float: right;
    position: relative;
    width: 100%
}

.sportFrame .chooseZone .cubeZone01 .cube01 .content .teams .hintFrame .hint,.sportFrame .chooseZone .sportZone .pageSport .cubeZone .cube .listS .leftZone .hintFrame .hint {
    width: 100px;
    height: 40px;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,42%);
    position: absolute;
    display: none;
    transition: .4s ease-out;
    z-index: 2
}

.sportFrame .chooseZone .cubeZone01 .cube01 .content .teams .hintFrame .hint:after,.sportFrame .chooseZone .sportZone .pageSport .cubeZone .cube .listS .leftZone .hintFrame .hint:after {
    content: "";
    position: absolute;
    top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px
}

.sportFrame .chooseZone .cubeZone01 .cube01 .content .teams .hintFrame .blueHint:after,.sportFrame .chooseZone .sportZone .pageSport .cubeZone .cube .listS .leftZone .hintFrame .blueHint:after,.sportFrame .chooseZone .sportZone .pageSport .cubeZone .cube .listS .leftZone .hintFrame .greenHint:after {
    border-color: transparent transparent var(--main) transparent
}

.rightZone>.txt>h2 {
    color: var(--font01);
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: ko-bold!important
}

.rightZone .casinoFrame {
    border-radius: 15px;
    overflow: hidden
}

.rightZone .casinoFrame h2 {
    color: #b6b6b6;
    transition: .3s all ease-out
}

.rightZone .casinoFrame:hover h2 {
    color: var(--font01)
}

.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 .maintainGo,.rightZone .casinoFrame.maintainGo:hover,.rightZone .maintainGo a {
    background: none
}

.rightZone .maintain span {
    font-size: 3vw
}

.rightZone .maintain h4 {
    font-size: 1vw;
    margin-top: 6%
}



.LeftContent {
    background-color: #0b0b11;
    box-shadow: #485160 .1em 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
    z-index: 14;
    top: 0px;
    float: left;
    bottom: 0px;
    padding: 29px 0 0;
    position: fixed;
    transition: .25s ease-out
}

.LeftContent .logo a {
    background-image: url("../images/common/logoed98.png?var(--ver)");
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    display: block;
    background-size: contain;
    background-position: center center;
    margin-top: -10px;
    margin-bottom: 10px;
}

.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%;
    background-color: #2e3135;
    border-radius: 10px;
    padding: 17px;
    margin: 0 auto 19px
}

.LeftContent .leftMenu ul {
    width: 89%;
    margin: 0 auto
}

.LeftContent .leftMenu ul li {
    padding: 9px 3px;
    border-bottom: 1px solid #485160;
    position: relative
}

.LeftContent .leftMenu ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer
}

.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;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    font-size: 24px;
    margin-right: 25px;
    transition: .2s ease-out
}

.LeftContent .leftMenu ul li a .hovePic {
    position: absolute;
    display: none;
    transition: .4s ease-out
}

.LeftContent .leftMenu ul li a:hover span,.LeftContent .leftMenu ul li a.active span {
    background: linear-gradient(353.95deg,rgba(16,148,223,0) 0%,var(--main) 50.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #152350;
    opacity: 1!important;
    transform: scale(1.3);
}

.LeftContent .leftMenu ul li a .txt {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    transition: .3s ease-out;
    white-space: nowrap;
    display: flex;
    align-items: center
}

.LeftContent .leftMenu ul li a:hover .txt,.LeftContent .leftMenu ul li a.active .txt {
    color: var(--main)
}

.LeftContent .leftMenu ul li a .txt span {
    font-size: 14px;
    margin: 0;
    color: #f20f2a;
    font-weight: 700;
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit
}

.LeftContent .fundZoneA {
    width: 85%;
    border: 1px solid #304059;
    background-color: #2e3135;
    border-radius: 10px;
    box-shadow: 2px 4px 5px 1px #a7b5cc59,inset 0 0 6px 1px #ffffffbf;
    padding: 0 0 23px;
    margin: 0 auto 19px;
    display: none
}

.LeftContent .fundZoneA .tabZone {
    width: 100%
}

.LeftContent .fundZoneA .tabZone ul {
    width: 100.7%;
    height: 40px
}

.LeftContent .fundZoneA .tabZone ul li {
    width: 50%;
    height: 40px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #427d8c;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease-out
}

.LeftContent .fundZoneA .tabZone ul li.active {
    background-color: #91cad9
}

.LeftContent .fundZoneA .tabZone ul li:first-child {
    border-radius: 9px 0 0
}

.LeftContent .fundZoneA .tabZone ul li:last-child {
    border-radius: 0 9px 0 0
}

.LeftContent .fundZoneA .tabZone ul li:hover {
    background-color: #91cad9
}

.LeftContent .fundZoneA .contentZone ul li table {
    width: 97%;
    margin: 15px auto 0
}

.LeftContent .fundZoneA .contentZone ul li table tr td {
    padding: 10px 3px;
    font-size: 12px;
    color: #ffffff
}

.LeftContent .fundZoneA .contentZone ul li table tr td span {
    color: var(--main)
}

.LeftContent .fundZoneA .contentZone ul li:nth-child(2) {
    display: none
}

.LeftContent .serviceZone {
    display: none;
    width: 85%;
    padding-bottom: 92%;
    border-radius: 10px;
    background-image: url(adl04-ee03bab9.html);
    background-size: cover;
    position: relative;
    margin: 0 auto
}

.LeftContent .serviceZone .txt01 {
    position: absolute;
    left: 13px;
    top: 18px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px
}

.LeftContent .serviceZone .txt02 {
    position: absolute;
    bottom: 29px;
    left: 13px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px
}


#open-cart {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    position: fixed;
    font-size: 12px;
    border: 2px solid var(--main01);
    background: #212121;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #bac8c3;
    -moz-animation: pulse 1s linear;
    -o-animation: pulse 1s linear;
    animation: pulse 1s linear infinite;
    -webkit-animation: pulse 1s linear infinite;
    box-shadow: 0 2px 2px #2a2a2a40;
    z-index: 999;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    right: 10px;
    bottom: 70px;
}

#open-cart span {
    text-align: center;
    line-height: 1;
    padding: 4px;
    font-size: 25px;
}

#open-cart span.odds {
    margin-top: 1px;
    padding-top: 5px;
    border-top: 1px solid var(--spborderColor04);
    width: 78%;
    color: var(--sptxtColor04);
    font-weight: 700;
    font-size: .83rem
}

#open-cart b {
    position: absolute;
    right: -1px;
    top: -3px;
    width: 20px;
    height: 20px;
    background: var(--main);
    color: #f3efef;
    font-size: .72rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#open-cart .pulse {
    position: fixed;
    height: 30vw;
    width: 30vw;
    border: 15px solid rgba(230,230,230,.4);
    border-radius: 50%;
    -webkit-animation: pulse2 1s ease-out;
    -moz-animation: pulse2 1s ease-out;
    -o-animation: pulse2 1s ease-out;
    animation: pulse2 1s ease-out;
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1
}

@-moz-keyframes pulse2 {
    0% {
        -moz-transform: scale(.1,.1);
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        -moz-transform: scale(1.1,1.1);
        transform: scale(1.1);
        opacity: 0
    }
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale(.1,.1);
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        -webkit-transform: scale(1.1,1.1);
        transform: scale(1.1);
        opacity: 0
    }
}

@-o-keyframes pulse2 {
    0% {
        -o-transform: scale(.1,.1);
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        -o-transform: scale(1.1,1.1);
        transform: scale(1.1);
        opacity: 0
    }
}

@-moz-keyframes pulse2 {
    0% {
        -webkit-transform: scale(.1,.1);
        -moz-transform: scale(.1,.1);
        -o-transform: scale(.1,.1);
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        -webkit-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        transform: scale(1.1);
        opacity: 0
    }
}

@keyframes pulse2 {
    0% {
        -webkit-transform: scale(.1,.1);
        -moz-transform: scale(.1,.1);
        -o-transform: scale(.1,.1);
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        -webkit-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        transform: scale(1.1);
        opacity: 0
    }
}

@media screen and (min-width: 991px) {
    .zoomIN {
        width: 80px
    }
    
    .LeftContent.zoomIN + .rightContent{
        padding-left: 80px;
    }
    
    .zoomIN .logo {
        margin-bottom: 0
    }
    
    .zoomIN .logo a {
        background-image: url("../images/common/logo02ed98.png?var(--ver)");
        background-repeat: no-repeat;
        width: 43px;
        height: 48px;
        display: block
    }
    
    .zoomIN .leftMenu ul li a .txt {
        display: none
    }
    
    .zoomIN .leftMenu {
        border: 0px;
        background-color: #2e3135;
        box-shadow: none;
        padding: 17px 23px 3px 16px;
        margin-top: 0;
        margin-bottom: 0
    }
    
    .zoomIN .leftMenu ul li {
        border-bottom: none
    }
    
    .zoomIN .fundZoneA,.zoomIN .serviceZone {
        display: none
    }
    
    .zoomIN .leftMenu01 {
        margin-top: 10px;
        position: relative
    }
    
    .zoomIN .leftMenu01:after {
        content: "";
        width: 38px;
        height: 1px;
        background-color: #304059;
        position: absolute;
        top: 0px
    }
    
    .zoomOUT {
        width: 250px!important;
    }
    
    .zoomOUT .leftMenu ul li a .txt {
        display: flex!important
    }
    
    .zoomOUT .leftMenu {
        width: 82%!important;
        background-color: #2e3135!important;
        border-radius: 10px!important;
        padding: 17px!important;
        margin: 0 auto 19px!important
    }
    
    .zoomOUT .leftMenu ul li {
        padding: 9px 3px!important;
        border-bottom: 1px solid #485160!important;
        position: relative!important
    }
    
    .zoomOUT .fundZoneA,.zoomOUT .serviceZone {
        display: none!important
    }
    
    .zoomOUT .leftMenu01 {
        width: 82%!important;
        background-color: #2e3135!important;
        border-radius: 10px!important;
        padding: 17px!important;
        margin: 0 auto 19px!important
    }
    
    .zoomOUT .leftMenu01:after {
        display: none!important
    }
    
    .zoomOUT .scrollFrame {
        width: 100%;
        margin: 0 auto;
        overflow-y: auto!important
    }
    
    .zoomOUT .logo a {
        background-image: url("../images/common/logoed98.png?var(--ver)") !important;
        background-repeat: no-repeat;
        width: 120px!important;
        height: 120px!important;
        display: block;
        animation: menuLOGO .4s;
        animation-delay: .05s;
        animation-fill-mode: forwards;
        opacity: 0
    }
}

@keyframes menuLOGO {
    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
    }
}

@media (max-width: 1900px) {
    .LeftContent {
        width:80px
    }

    .LeftContent .logo {
        margin-bottom: 15px;
    }

    .LeftContent .logo a {
        background-image: url("../images/common/logo02ed98.png?var(--ver)");
        background-repeat: no-repeat;
        width: 52px;
        height: 48px;
        display: block;
        background-size: 100%
    }

    .LeftContent .leftMenu ul li .newHint,.LeftContent .leftMenu ul li a .txt {
        display: none
    }

    .LeftContent .leftMenu {
        border: 0px;
        background-color: #2e3135;
        box-shadow: none;
        padding: 17px 23px 3px 16px;
        margin-top: 0;
        margin-bottom: 0
    }

    .LeftContent .leftMenu01 {
        margin-top: 10px;
        position: relative
    }

    .LeftContent .leftMenu01:after {
        content: "";
        width: 38px;
        height: 1px;
        background-color: #304059;
        position: absolute;
        top: 0px
    }

    .LeftContent .leftMenu ul li {
        border-bottom: none
    }

    .LeftContent .fundZoneA,.LeftContent .serviceZone {
        display: none
    }

    .rightContent {
        padding-left: 80px
    }
}

.bank-wrap {
    font-size: 1rem;
    background-color: #292929;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    display: flex;
    color: white;
}


.bank-wrap::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);
}

#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 var(--main01);
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {

}