@charset "UTF-8";
.btnN {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 15px;
    white-space: nowrap;
    min-width: 120px;
    background: var(--main);
    color: white;
}

.btnN > span {
    font-size: 14px;
    margin-right: 3px;
}

.redB {
    background-color: var(--main03);
    transition: .3s ease-out
}

.redB:hover {
    background-color: var(--main04);
}

.blueB {
    /* background-color: #f0ab05; */
    transition: .3s ease-out
}

.blueB:hover {
    /* background-color: #ffcb52 */
}

.loginIcon {
    display: flex;
    border-radius: 5px;
    padding: 7px 15px;
    align-items: center;
    white-space: nowrap;
    cursor:pointer;
    justify-content: center;
    margin-left: 5px;
    background: white;
    color: var(--font01);
    min-width: 100px;
}

.loginIcon span {
    margin-right:5px;  
}

.loginIcon:hover {
    background: #818181;
    color:white;
}

#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 {
    padding: 25px;
    line-height: 28px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: var(--bg-01);
    box-shadow: 2px 4px 5px 1px rgb(146 146 146 / 10%), inset 0 0 6px 1px var(--bg-01);
}
.info-wrap .tit{
    color: var(--font01);
}
.info-wrap.cash {
    display: flex;
    flex-wrap: wrap;
}
.info-wrap.cash .desc {
    min-width: 100px;
    white-space: nowrap;
}
.info-wrap.letter {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.info-wrap.letter .desc {
    min-width: 120px;
}
.input-wrap {
    padding: 10px;
    font-size: 1rem;
    line-height: 28px;
    align-items: center;
}

.info-wrap.cash .input-wrap {
    display: flex;
    width: 50%;
    flex-wrap: wrap;
}

.input-wrap .desc{
    color: var(--font01);
}

.input-wrap select {
    border: none;
    border-bottom: 1px solid #9e9e9e;
    color: black;
    background-color: #eeeeee;
}

.input-wrap option {
    color: #434343;
}

.button-wrap {
    display: flex;
    justify-content: center;
}
.money-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}
.money-wrap button.money {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    background: var(--main04);
    min-width: 100px;
}
.tb_empty {
    text-align: center;
    padding: 30px;
    background: #edededa3;
    color: #00a8ea;
}
.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: #d5d5d5b8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 10px;
}
.loading-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}
.loading-box .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(32, 64, 120, 0.1019607843);
    margin-left: -120px;
    margin-top: -120px;
}
.loading-box .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    margin-left: -80px;
    margin-top: -80px;
    overflow: hidden;
    -webkit-transform-origin: 120px 120px;
    transform-origin: 80px 80px;
    -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: 160px;
    height: 160px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px white;
}
.loading-box .logo {
    width: 100%;
    height: auto;
    vertical-align: middle;
    text-align: center;
}
.loading-box .logo img {
    width: 120px;
}
.loading-box .game-loading-message {
    display: none;
    margin-top: 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.loading-box .game-loading-message.is-visible {
    display: block;
}
.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);
    }
}

.flow-list.list-winner {
    animation-name: scroll-winner;
    animation-duration: var(--tl-winner-duration);
}
@keyframes scroll-winner {
    100% {
        top: var(--tl-winner-offset);
    }
}

/* header */
.header {
    z-index: 15;
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: var(--main01);
    width: 100%;
}
.header .headerWrapper {
    margin: 0 auto;
}

.header .headerWrapper .topZone{display: flex;justify-content: space-between;width: 100%;max-width: min(1440px, calc(100% - 100px));margin: 0 auto;position: relative;left: 50px;height: 50px;align-items: center;padding: 0px;box-sizing: border-box;}
.header .headerWrapper .topZone .leftZone ul{display: flex;_margin-left: 100px;font-size: 16px;font-weight: 500;gap: 35px;}
.header .headerWrapper .downZone {background: white;height: 70px;}
.header .headerWrapper .downZoneInner {display: flex;align-items: center;justify-content: space-between;width: 100%;max-width: min(1440px, calc(100% - 100px));margin: 0 auto;position: relative;left: 50px;height: 70px;box-sizing: border-box;}
.header .headerWrapper .downZone img.logo {height: 55px;padding: 2px 0;}

.header .headerWrapper .downZone ul{
    width: auto;
    display: flex;
    font-size: 16px;
    justify-content: flex-end;
    margin-left: auto;
    gap: 40px;
}
.header .headerWrapper .downZone .tabZone li a{
    white-space: nowrap;
    display: flex;
    border-bottom: 2px solid #0000;
    align-items: center;
    height: 70px;
}
.header .headerWrapper .downZone .tabZone li:hover a,
.header .headerWrapper .downZone .tabZone li.active a,
.header .headerWrapper .downZone .tabZone li a.active{
    color: var(--main);
    border-bottom: 2px solid;
}
.header .headerWrapper .downZone .tabZone li a span {
    font-size:22px;
    margin-right:5px
}
.header .headerWrapper .rightZone {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .headerWrapper .moneyZone {
    display: flex;
    position: relative;
    margin-left: 14px;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.header .headerWrapper .moneyZone .money {
    font-size: 18px;
    margin-right: 5px;
}
.header .headerWrapper .moneyZone .money:before {
    margin-right: 5px
}

.header .headerWrapper .moneyZone .cash {
    display: flex;
    align-items: center;
}

.header .headerWrapper .moneyZone .refresh {
    cursor: pointer;
}
.header .headerWrapper .moneyZone .refresh.on,
.welcomeWrap .btn-refresh-cash.on {
    pointer-events: none;
    animation: balance-refresh-spin 1s linear infinite;
}
@keyframes balance-refresh-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.header .headerWrapper .moneyZone .cash img {
    width: 30px;
    margin-right: 10px
}
.header .headerWrapper .memberZone {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.header .headerWrapper .rightZone .memberZone span {
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
    white-space: nowrap;
}

/* banner */
.banner video,
.banner img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: fill;
    min-height: 180px;
}
.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 button,
.banner .slick-dots button:hover {
    background-image: url(../images/common/button.png);
}
.banner .slick-dots [role=presentation] {
    position: relative;
}
.banner .slick-dots button {
    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 button + 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: #dbdbdb;
}

.footer .footerWrapper {
    width: 100%;
    margin: 0 auto;
}

.footer .footerWrapper .footerLogo {
    padding: 10px 0;
    text-align: center;
    width: 100%;
    display: flex;
}
.footer .footerWrapper .footerLogo .slick-list > div {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer .footerWrapper .footerLogo .slick-list > div img {
    max-height: 32px;
}

.footer .footerWrapper .copyright {
    text-align: center;
    margin: 20px 0;
}

.footer .footerWrapper .copyright img {
    width: 180px;
    margin: 0 50px;
    filter: grayscale(1) contrast(0.2);
}

.footer .footerWrapper .copyright .license {
    margin-top: 20px;
    font-size: 14px;
    color: #8d8d8d;
}

.titlePic {
    color: white;
    text-align: center;
    width: 130px;
    height: 130px;
    margin: 20px auto;
    border-radius: 50%;
    display: flex;
    border: 1px solid #ddd;
    overflow: hidden;
    animation: topIn .4s;
}
.titlePic .titleWrap {
    background: var(--main03);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titlePic .titleWrap .icon {
    font-size: 40px;
}

.titlePic .titleWrap .txt{
    margin: 5px 0;
}

.titleLine {
    width: 100%;
    max-width: 1440px;
    margin: 20px auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.titleLine .txt {
    color: #828282;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: start;
    transform: translateZ(0);
    margin-right: 15px;
    white-space: nowrap;
    color: var(--main03);
    font-size: 1.7rem;
}

.titleLine .line {
    height: 2px;
    width: 100%;
    background-color: var(--main03);
    position: relative
}

.titleLine .line:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--main03);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%,-50%)
}

.noticeFrame {
    height: auto;
    max-width: 1440px;
    margin: 0px auto 70px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    min-height: 500px;
    animation: downIn .4s;
}

.noticeFrame .title {
    font-size: 26px;
    font-weight: 600
}

.noticeFrame .title span {
    color: #0f9e48;
    font-size: 14px;
    margin-left: 7px
}

.noticeFrame ul.tabZone {
    display: flex;
}

.noticeFrame ul.tabZone li {
    height: 50px;
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s ease-out;
    position: relative;
    border: 1px solid var(--border);
}

.noticeFrame ul.tabZone li.active {
    background: #d1d1d1;
    color: var(--font01);
}

.noticeFrame ul.tabZone li span {
    font-size: 24px;
    margin-right: 5px;
}

.noticeFrame ul.tabZone li.active span {
    color: #b27b46;
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit
}

.noticeFrame ul.tabZone li h4 {
    font-size: 14px;
    transition: .4s ease-out;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.noticeFrame .searchZone {position: relative;width: 300px;margin-right: 15px;}
.noticeFrame .searchZone input {border-radius: 6px;padding-left: 14px;text-overflow: ellipsis;white-space: nowrap;height: 35px;margin-bottom: 0;}
.noticeFrame .searchZone input:placeholder-shown + .searchIcon .icon-search{display: block;}
.noticeFrame .searchZone input:placeholder-shown + .searchIcon .icon-delet{display: none;}
.noticeFrame .searchZone input:not(:placeholder-shown) + .searchIcon .icon-search{display: none;}
.noticeFrame .searchZone input:not(:placeholder-shown) + .searchIcon .icon-delet{display: block;}
.noticeFrame .searchZone input::placeholder {color: #b6b6b6;font-size: 14px}
.noticeFrame .searchZone .searchIcon {position: absolute;right: 0px;top: 9px}
.noticeFrame .searchZone .searchIcon span {color: #b4b4b4;font-size: 13px;padding: 2px;cursor: pointer;}

.noticeFrame .bet{color: white;background: red;padding: 1px 5px;border-radius: 3px;font-size: 8px;}
.noticeFrame .topZone {display:flex;justify-content: space-between;}
.noticeFrame .upVotes {cursor: pointer;}
.noticeFrame .upVotes.on i{color: red;}

.noticeFrame .listZone {
    margin-top: 20px;
}

.noticeFrame .listZone ul.imgList {
    display: grid;
    grid-template-columns: var(--pc-thumb-cnt);
    gap: 15px;
}

.noticeFrame .listZone ul.imgList li {
    min-width: 0;
    width: 100%;
    transition: .4s ease-out;
    position: relative;
    border-radius: 12px;
    animation-name: fadeInUp;
}

.noticeFrame .listZone ul.imgList li .upZone {
    overflow: hidden;
    cursor: pointer
}

.noticeFrame .listZone ul.imgList li .upZone img {
    width: 100%;
    height: auto;
    transition: .4s ease-out
}

.noticeFrame .listZone ul.imgList li:hover .upZone img {
    transform: scale(1.1)
}

.noticeFrame .listZone ul.imgList li .bottomZone {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f6f6;
    border-radius: 0 0 10px 10px;
}

.noticeFrame .listZone ul.imgList li .bottomZone h3 {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.noticeFrame .listZone ul.imgList li .bottomZone .btnP {
    color: var(--font01);
    padding: 8px 10px;
    text-decoration: none;
    background-color: var(--main02);
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 11px;
}

.noticeFrame .listZone ul.imgList li .bottomZone .btnP:hover {
    background-color: var(--main02);
}


.noticeFrame .listZone table {
    width: 100%
}

.noticeFrame .listZone table tr {
    transition: .4s ease-out
}

.noticeFrame .listZone table tr:hover {
    background-color: var(--bg-01);
}

.noticeFrame .listZone table tr th {
    padding: 10px 0;
    color: var(--font01);
    font-weight: 700;
    position: relative;
    background-color: var(--main02);
    border-left: 1px solid var(--border);
}

.noticeFrame .listZone table tr th:first-child:before {
    width: 1px;
    height: 21px;
    background-color: #b4b9e6;
    position: absolute;
    left: 0px;
    bottom: 0px
}

.noticeFrame .listZone table tr th:after {
    width: 1px;
    height: 21px;
    background-color: #b4b9e6;
    position: absolute;
    right: 0px;
    bottom: 0px
}

.noticeFrame .listZone table tr th.number {
    width: 9%
}

.noticeFrame .listZone table tr th.name {
    width: 16%
}

.noticeFrame .listZone table tr th.date {
    width: 14%
}

.noticeFrame .listZone table tr td {
    font-size: 1rem;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    vertical-align: middle;
    padding: 10px;
}

.noticeFrame .listZone table tr td label {
    padding-left: 15px;
}

.noticeFrame .listZone table tr td.back {
    color: #00a8ea!important
}

/*.noticeFrame .listZone table tr td a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}*/

.noticeFrame .listZone table tr td img.logo {
    width: 77px;
    margin-right: 6px
}

.noticeFrame .listZone table tr td h5 {
    display: none
}

.noticeFrame .listZone table tr td .btnFrame {
    display: flex;
    align-items: center
}

.reply-edit {margin: 5px 0;display: flex;gap: 5px;}
.reply-edit .reply-content {height: 36px;flex: 1;border: 1px solid #ddd;}
.reply-edit .btn-write {background: #1e88e5;}
.reply-list .btn-edit {background: #1e88e5;}
.reply-list .btn-delete {background: #ff0000;}
.reply-list table tr th {background: #f4f4f4;vertical-align: top;padding: 10px;border: none;}
.reply-list table tr td {border-radius: 0;border-right: 1px solid;border: 0;border-color: #505050;padding: 10px;vertical-align: middle;}
.reply-list table tr td button {height: 30px; line-height: 30px;}

.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;
    position: relative;
}

.bet-list-wrap .sel-pick {
    background: var(--main03);
    color: white;
}

.bet-list-wrap .team-info-wrap img{
     width: 10px;
}

.bet-list-wrap .status{
    padding: 3px 10px;
    border-radius: 5px;
    white-space: nowrap;
    color: white;
}

.bet-list-wrap .bet-result {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.bet-list-wrap .bet-result.sports {
    justify-content: space-between;
    padding: 12px 0;
}


.bet-list-wrap .bet-result button {
    background: #a80a1d;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.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: 10px;
    top: 8px;
}
.bet-list-wrap .btn-sel.icon-state:before {
    content:'\e97b';
    color:white;
    font-size: 14px;
}

.bet-list-wrap .on .btn-sel.icon-state:before {
    content:'\e97b';
    color:#00a8ea;

}
.bet-list-wrap .slip .btn-sel {
    display: flex;
    position: relative;
    left: 0;
    top: 0;
}

.bet-list-wrap .slip .btn-sel span{
    padding: 5px;
    margin: 0;
    font-size: 12px;
    color: #03a9f4;
}

.bet-list-wrap .bet-result .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bet-list-wrap .bet-result .info .sp-number {
    color: #00a8ea;
    font-size: 16px;
    font-weight: 600;
}

.bet-list-wrap .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, #dedede, #ffffff);
    border-radius: 7px;
}

.bet-list-wrap .slip.on {
    border: 1px solid #03a9f4;
}
.bet-list-wrap .slip .title{
    background: var(--main03);
    padding: 7px;
    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;
    padding: 10px 5px;
}

.bet-list-wrap .slip .content .ballZone .team-wrap{
    display: flex;
    padding-bottom: 10px;
    align-items: center;
}

.bet-list-wrap .slip .content .ballZone .team-wrap .team{
    color: #005c81;
    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: #caba00;
}

.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 #c1c1c1;
    padding: 7px 5px;
    text-align: center;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .home-pick {width: 100%;height: 100%;}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .base-line {height: 100%;}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .away-pick {width: 100%;height: 100%;}

.bet-list-wrap .slip .content .ballZone .bet-pick-wrap .team-name {
    font-size: 10px;
}
.bet-list-wrap .slip .content .ballZone .score-wrap {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bet-list-wrap .slip .content .ballZone .score-wrap .score {
    color: #ff4f4f;
}
.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;
    width: 100%;
    font-size: 12px;
}

.bet-list-wrap .slip .content .resultZone .result{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
}

.bet-list-wrap .slip .content .resultZone .result .sp-number {
    font-size: 16px;
    color: #c33889;
    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: #bd0000;
    color: white;
}

.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_result .sportZone .cubeZone .cube .listS .rightZone .chooseBtn {
 padding-right: 76px;
}

#bet_result .sportZone .cubeZone .cube .listS .rightZone .more {
    width: 70px;
}

.comp_rate h2{font-size: 16px;padding: 10px;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(var(--main01), var(--main02));min-width: 100px;text-align: center;cursor: pointer;}
.comp_rate .main_tap li.on{color: #ffffff;background: var(--main);}
.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;color: white;}
.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 {
    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 {
    font-size: 14px;
    transition: .3s ease-out;
    cursor: pointer
}

.contentZone .time .pageBack a:hover {
    color: var(--font01);
}

.contentZone .time .pageBack .crossLine {
    width: 1px;
    height: 13px;
    background-color: #000000;
    margin: 0 10px
}

.contentZone .time .title {
    font-size: 20px;
    margin: 0 auto
}

.contentZone .time span.timeR {
    font-size: 14px;
    margin-left: 4px;
    display: flex
}

.contentZone .time span.timeR .name {
    margin-right: 26px;
    position: relative
}

.contentZone .time span.timeR .name:after {
    content: "";
    width: 1px;
    height: 13px;
    background-color: #e5e5e5;
    position: absolute;
    right: -12px
}

.contentZone .txt {
    padding: 20px;
    border-top: 1px solid #efefef;
    background-color: #f4f4f4;
}

.contentZone .txt h2 {
    font-size: 20px;
    color: #00a8ea
}

.contentZone .txt p {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.6;
    text-align: justify
}

.contentZone .btnFrame {
    width: 100%;
    display: flex;
    justify-content: center
}

.contentZone .btnP {
    height: 40px;
    padding: 0 47px;
    color: #ffffff;
    background-color: var(--main03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    float: right;
    margin-top: 23px;
    cursor: pointer;
    border: 0px;
    transition: .2s ease-out
}

.contentZone .btnP:hover {
    background-color: #4fcdff
}

.blocker{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(204 204 204 / 75%);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    text-align: center;
}

.blocker::after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}

.swal2-container {
    z-index: 10001;
    padding: 0.625em;
}
/*body.swal2-toast-shown .swal2-container.swal2-modal-toastr > .swal2-popup*/
body.swal2-toast-shown .swal2-container > .swal2-popup {
    width: 25em !important;
}

.notice_popup_area {
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    display: block;
    position: fixed;
    overflow: auto;
    overscroll-behavior: contain;
}
.popup_wrapper {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: max-content;
    min-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 40px 0;
    box-sizing: border-box;
    z-index: 100;
}
.popup_wrapper .notice_popup {
    position: relative;
    z-index: 1;
    margin: 10px;
    min-width: 250px;
    flex: 0 0 auto;
    display: flex;
    flex-flow: column;
    border-radius: 10px;
    overflow: hidden;
}
.popup_wrapper .notice_popup .pop_box img {
    max-width: 100%;
    display: block;
    height: auto;
}
.popup_wrapper .notice_popup .no-padding p {
    margin-bottom: 0;
}
.popup_wrapper .notice_popup > .pop_box {
    background-color: #d0d0d0;
}
.popup_wrapper .notice_popup > .pop_box .notice_popup_font2 {
    width: 100%;
    font-size: 16px;
    letter-spacing: -1px;
    font-weight: 400;
    color: #4f4f4f;
    line-height: 28px;
}
.popup_wrapper .notice_popup > .pop_footer {
    background: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_wrapper .notice_popup > .pop_footer button {
    padding: 15px 0;
    font-size: 12px;
    cursor: pointer;
    flex: 1;
    background: no-repeat;
}
.popup_wrapper .notice_popup > .pop_footer button:hover{
    background:#ddd;
}

.modalX {
    width: 694px;
    max-width: 1200px;
    min-height: 500px;
    border-radius: 8px;
    position: relative;
    background: #ffffff;
    z-index: 99999;
    vertical-align: middle;
}
.modalX .icon-x-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    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;
    text-align: left;
}
.content-view .container .top {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin-top: 1em;
}
.content-view .container .top .title {
    margin-right: auto;
    font-weight: 700;
    font-size: 18px;
    color: #d0d0d0;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-view .container .bottom {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
    padding: 2em 0.5em;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.content-view .container .bottom .content {
    width: 100%;
    min-height: 200px;
    word-break: break-all;
    white-space: pre-wrap;
    text-align: left;
}
.content-view .container .bottom .content::-webkit-scrollbar-thumb {
    height: 30%;
    background: var(--scroll-fg);
    border-radius: 10px;
}
.content-view .container .bottom .content::-webkit-scrollbar-track {
    background: var(--scroll-bg);
}
.content-view .container .bottom .content::-webkit-scrollbar {
    width: 8px;
}
.edit_popup {
    width:300px;
    height: auto;
    min-height:unset;
    padding: 20px 5px 5px;
    background: white;
    border-radius: 8px;
    position:relative
}
.edit_popup .icon-x-modal {
    position:absolute;
    font-size:20px;
    right:0;
    top: 0;
    padding: 10px;
    cursor: pointer;
}
.edit_popup h3 {
    font-size: 20px;
}
.edit_popup .content {
    margin-top: 30px;
}
.edit_popup input {
    text-align:center
}
.edit_popup button {
    margin-top:20px;
    padding: 8px 15px;
    border-radius: 5px;
    background: #03A9F4;
    color: white;
    margin-bottom: 10px;
}
.home_content {
    max-width: 1440px;
    margin: auto;
}
.home_content .marquee {
    display: flex;
    align-items: center;
    padding: 0 5px;
    background: #ececec;
    font-size: 14px;
    margin: 5px;
    line-height: normal;
}
.home_content .gameZone {
    width: 100%;
    margin-top: 30px;
    position: relative;
}
.home_content .game-tit {
    color: var(--font01);
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
}
.home_content .game-tit span{font-size: 24px;margin-right: 6px;}
.home_content .gameZone .content {
    overflow: hidden;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    margin-right: 34px;
}

.home_content .gameZone .content .game-type {
    margin-right:20px;
}
.home_content .gameZone .content::-webkit-scrollbar {
    display:none;
}
.home_content .gameZone .title {
    color: #828282;
    font-size: 24px;
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 24px
}

.home_content .gameZone .title span {
    margin-right: 5px;
    font-size: 30px;
}

.home_content .gameZone .title .txt {
    display: flex;
    font-family: arial;
    font-size: 24px
}

.home_content .gameZone .title h3 {
    color: #00bcd4;
    margin-left: 4px
}

.home_content .topGameZone {
    padding-top: 34px;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
}

.home_content .topGameZone .leftZone {
    width: 340px;
    flex: 0 0 340px;
}

.home_content .topGameZone .leftZone ul li{
    margin-bottom: 15px;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 10px;
    background: url(../images/common/mini_bg.png) #d8d8d8 no-repeat;
    background-size: 100% 100%;
    box-shadow: 1px 1px 3px #767676;
    position: relative;
    overflow: hidden;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.home_content .topGameZone .leftZone ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    position: relative;
    z-index: 1;
}
.home_content .topGameZone .leftZone ul li .txt {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}
.home_content .topGameZone .leftZone ul li .sub {
    font-weight: 500;
    font-size: 12px;
}
.home_content .topGameZone .leftZone ul li img.ico {
    flex: 0 0 auto;
}
.home_content .topGameZone .leftZone ul li img.bg {
    position:absolute;
    right: 0;
    bottom: 0;
    width: 132px;
    filter: grayscale(1);
    transform: scale(0.85);
    transform-origin: right bottom;
    transition: filter 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}
.home_content .topGameZone .leftZone ul li.on {
    background-color: var(--main02);
}
.home_content .topGameZone .leftZone ul li.on .title {
    color: var(--font01);
}
.home_content .topGameZone .leftZone ul li.on img.bg {
    filter:grayscale(0);
    transform: scale(1);
}
.home_content .topGameZone .leftZone ul li.full {
    background: unset;
    box-shadow: unset;
}
.home_content .topGameZone .leftZone ul li.full img.bg {
    width: 100%;
    filter: unset;
}
.home_content .topGameZone .leftZone ul li.full.on img.bg {
    width: 100%;
}
.home_content .topGameZone .rightZone {
    text-align:center;
    flex: 1 1 0;
    min-width: 0;
    min-height: 390px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home_content .topGameZone .rightZone .pic {
    visibility: hidden;
    opacity:0;
    height:100%;
    width: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}
.home_content .topGameZone .rightZone .pic.on {
    visibility: visible;
    opacity:1;
    height:100%;
}
.home_content .topGameZone .rightZone img {
    width: 70%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.home_content .infoZone {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
}

.home_content .infoZone .info01 {
    flex: 1;
}

.home_content .infoZone .info01 .title {
    color: var(--font01);
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.home_content .infoZone .info01 .title span {
    font-size: 24px;
    margin-right: 6px;
}
.home_content .infoZone .info01 .list {
    height: 200px;
    overflow: hidden;
    background: #ebebeb;
    border-radius: 10px;
    padding: 0 10px;
}

.home_content .infoZone .info01 .list:hover .flow-list{
    animation-play-state: paused;
}

.home_content .infoZone .info01 a {
    display: flex;
    height: 40px;
    align-items: center;
    border-bottom: 1px solid #cfcfcf;
    cursor: pointer;
    justify-content: space-between;
    transition: .4s ease-out;
    padding: 0px 10px;
    font-weight: 500;
}
.home_content .infoZone .info01 .list a:last-child {
    border:none;
}
.home_content .infoZone .info01 .list a:hover {
    background-color: var(--main01);
}
.home_content .infoZone .info01 .list a .time {
    font-size: 12px;
    text-align: left;
}

.home_content .infoZone .info01 .list a .message {
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home_content .infoZone .info01.cash .list a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.home_content .infoZone .info01.winner {
    flex: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.home_content .infoZone .info01 .list-title {
    display: flex;
    width: 100%;
    background: var(--main01);
    height: 40px;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 10px;
    padding: 0 10px;
}
.home_content .infoZone .info01 .list-title > div {
    text-align: center;
    width: 100%;
}

.home_content .serviceZone {
    margin-top: 70px;
    margin-bottom: 30px;
}

.home_content .serviceZone .high-title {
    text-align: center;
    color: #090909;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 15px;
}
.home_content .serviceZone .high-title:after {
    content:'';
    background: url(../images/common/title_bg.png) no-repeat;
    background-size: contain;
    height: 10px;
    width: 100%;
    display: block;
    transform: scalex(-1);
}
.home_content .serviceZone .high-title:before {
    content:'';
    background: url(../images/common/title_bg.png) no-repeat;
    background-size: contain;
    height: 10px;
    width: 100%;
    display: block;
}
.home_content .serviceZone .high-title span {
    font-size: 6rem;
    color: white;
}
.home_content .serviceZone .high-title .tit {
    font-size: 24px;
    font-weight: 600;
}
.home_content .serviceZone .high-title .sub {
    font-size: 14px;
    margin-top: 7px;
}

.pop_auth {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-01);
    border-radius: 10px;
}
.pop_auth .pop_wrap {
    position:relative;
    min-width: 750px;
    min-height: 580px;
}
.pop_auth .icon-x-modal {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    padding: 12px;
    cursor: pointer;
}
.pop_auth .pop_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.pop_auth .pop_wrap img.leftImg {
    width: 100%;
    height: 100%;
    border-radius: 10px 0px 0 10px;
    object-fit: cover;
}

.pop_auth .content {
    width: 100%;
    padding: 50px 30px;
    font-size: 14px;
}
.pop_auth .content .title {
    text-align:left;
    margin-bottom: 10px;
    margin-left: 5px;
    font-size: 16px;
}
.pop_auth .content .inputFrame {
    margin-bottom: 10px;
}

.pop_auth .content .inputFrame .input_content {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pop_auth .content .inputFrame .captcha img {
    height: 35px;
    max-width: 50%;
    border-radius: 5px;
}
.pop_auth .content .inputFrame .msg-wrap:not(:empty) {
    text-align:left;
    font-size: 10px;
    color: #aa0000;
    margin-top: 5px;
}
.pop_auth .content .inputFrame .msg-wrap li:before {
    content: '\e98a';
    font-family: 'icomoon';
    margin-right: 5px;
}
.pop_auth .content .inputFrame select,
.pop_auth .content .inputFrame input {
    background-color: #e7e7e7;
    color: #000;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    height: 35px;
    font-size: 14px;
    padding: 5px;
}
.pop_auth .content .inputFrame textarea {
    background-color: #e7e7e7;
    color: #000;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
    resize: vertical;
    min-height: 300px;
}

.pop_auth .content .inputFrame button {
    white-space: nowrap;
    background: var(--main03);
    height: 35px;
    padding: 0 10px;
    border-radius: 4px;
    color: white;
}
.pop_auth .content .inputFrame .check_content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    width: 100%;
    justify-items: start;
}
.pop_auth .content .btnFrame button {
    font-size: 16px;
    background: var(--main03);
    height: 40px;
    width: 100%;
    color: white;
    border-radius: 5px;
    margin-top: 5px;
}
.pop_auth .content .btnFrame p {
    display:block;
    margin-top:10px;
    text-align: left;
    cursor: pointer;
}
.pop_auth .content .btnFrame p span {
    margin-left: 5px;
    color: var(--font01);
}
.pop_auth .content .sns_wrap {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 20px;
}
.pop_auth .content .sns_wrap img {
    max-width: 100%;
}
.rightContent {
    width: 100%;
    height: auto;
    flex: 1 0 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 120px;
    padding-left: 100px;
}

#app .allContent > .contents {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

#app .allContent > .contents > .footer.footer_notice.pc {
    flex: 0 0 auto;
    float: none;
    max-width: 100%;
}

.rightContent .contents {
    height: auto;
    float: right;
    position: relative;
    width: 100%
}

@media screen and (max-width: 990px) {
    .rightContent {
        padding-top: 50px;
        padding-left: 0;
        width: 100%;
        max-width: 100%;
    }
}

.rightZone>.txt>h2 {
    color: var(--main);
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: ko-bold!important
}

.LeftContent {
    width: 100px;
    position: fixed;
    background: var(--bg-01);
    box-shadow: rgb(0 0 0 / 16%) 0 0 0.5em;
    z-index: 10;
    overflow: scroll;
    bottom: 0;
    top: 120px;
}

.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 {
    border-radius: 10px;
    padding: 8px;
    margin: 10px;
    background: #959595;
}

.LeftContent .leftMenu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.LeftContent .leftMenu ul li {
    position: relative
}
.LeftContent .leftMenu ul li:last-child{
    border-bottom:none;
}

.LeftContent .leftMenu ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    flex-direction: column;
    background: linear-gradient(180deg,#f5f5f5,silver);
    border-radius: 10px;
    padding: 10px 0;
}

.LeftContent .leftMenu ul li a span {
    background: linear-gradient(353.95deg,var(--main) 0%,var(--main03) 97.43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    transition: .2s ease-out
}

.LeftContent .leftMenu01 ul li a:hover span,
.LeftContent .leftMenu01 ul li a.active span {
    background-image: linear-gradient(353.95deg,var(--main03) 0%,var(--main02) 50.24%);
    scale:1.2;
}

.LeftContent .leftMenu ul li a .txt {
    font-size: 12px;
    white-space: nowrap;
    margin-top: 5px;
    font-weight: 500;
}

.LeftContent .leftMenu ul li a:hover .txt,
.LeftContent .leftMenu ul li a.active .txt {
    color: var(--font01);
}

.LeftContent .leftMenu ul li a .txt b {
    color: #f20f2a;
}
.LeftContent .sns_wrap a img {
    width: 36px;
}
.LeftContent .sns_wrap .icon-service {
    background-image: linear-gradient(#ff6335,#ff35a2);
}
.LeftContent .sns_wrap .icon-telegram {
    background-image: linear-gradient(#16d3fb,#00d2ff);
}
.LeftContent .sns_wrap .icon-kakao1 {
    background-image: linear-gradient(#fffbd3,#ffdc00);
}
.kakao-modal-open {
    overflow: hidden;
}
.kakao-id-modal[hidden] {
    display: none;
}
.kakao-id-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.68);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
}
.kakao-id-modal__panel {
    position: relative;
    width: min(360px, 100%);
    padding: 36px 24px 32px;
    border: 1px solid rgba(255, 220, 0, 0.55);
    border-radius: 14px;
    background: #171717;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    text-align: center;
}
.kakao-id-modal__close {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: none !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #aaa;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.kakao-id-modal__close::before,
.kakao-id-modal__close::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    content: none !important;
    background: none !important;
}
.kakao-id-modal__close:hover,
.kakao-id-modal__close:focus-visible {
    color: #fff;
}
.kakao-id-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ffdc00;
    color: #251d00;
    font-size: 52px;
}
.kakao-id-modal__panel h2 {
    margin: 0 0 12px;
    color: #ddd;
    font-size: 16px;
    font-weight: 500;
}
.kakao-id-modal__id {
    display: block;
    overflow-wrap: anywhere;
    color: #ffdc00;
    font-size: 25px;
    line-height: 1.35;
}
.LeftContent .sns_wrap .icon-sphere {
    background-image: linear-gradient(#ffacac, #ff0b74);
}
.LeftContent .sns_wrap li:not(:has(a)) {
    display: none;
}

.LeftContent .serviceZone {
    display: none;
    width: 85%;
    padding-bottom: 92%;
    border-radius: 10px;
    background-image: url(./adl04-ee03bab9.png);
    background-size: cover;
    position: relative;
    margin: 0 auto
}

.LeftContent .serviceZone .txt01 {
    position: absolute;
    left: 13px;
    top: 18px;
    color: #a4e3ff;
    font-weight: 700;
    font-size: 18px
}

@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
    }
}

.slick-slider { min-width: 100%; width: 0; }

/* MPRO home — aligned with the v2 login visual language */
:root {
    --mpro-home-navy: #091d45;
    --mpro-home-blue: #0c5bf3;
    --mpro-home-ink: #121826;
    --mpro-home-muted: #748095;
    --mpro-home-line: #dce3ef;
    --mpro-home-surface: #f5f8fc;
}
.main-slide {
    background: var(--mpro-home-navy);
}
.banner .mpro-hero-slide {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(390px, 28.65vw, 550px);
    overflow: hidden;
    color: #fff;
}
.banner .mpro-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 17, 42, .18) 0%, rgba(5, 17, 42, 0) 62%);
    pointer-events: none;
}
.banner .mpro-hero-slide > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}
.mpro-hero-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(5vw, calc((100vw - 1440px) / 2));
    display: flex;
    width: min(540px, 42vw);
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-50%);
}
.mpro-hero-kicker {
    margin-bottom: 18px;
    color: #82b1ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
}
.mpro-hero-copy strong {
    color: #fff;
    font-size: clamp(34px, 3.15vw, 58px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.045em;
    text-shadow: 0 5px 24px rgba(0, 0, 0, .18);
}
.mpro-hero-description {
    margin-top: 20px;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 1.65;
}
.mpro-hero-action {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-width: 188px;
    height: 48px;
    margin-top: 28px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 7px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.mpro-hero-slide:hover .mpro-hero-action {
    border-color: var(--mpro-home-blue);
    background: var(--mpro-home-blue);
    transform: translateY(-2px);
}
.banner .slick-dots {
    bottom: 24px;
    gap: 9px;
}
.banner .slick-dots button {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    background-image: none;
}
.banner .slick-dots .slick-active button,
.banner .slick-dots button:hover {
    background: #fff;
    background-image: none;
}
.home_content {
    padding: 0 20px 80px;
}
.home_content .mpro-notice-bar {
    min-height: 48px;
    margin: 22px 0 0;
    padding: 0 18px;
    border: 1px solid var(--mpro-home-line);
    border-radius: 8px;
    color: #4f5b6f;
    background: #fff;
    box-shadow: 0 8px 26px rgba(9, 29, 69, .05);
}
.mpro-notice-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 18px;
    color: var(--mpro-home-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}
.mpro-notice-label img {
    width: 18px;
    height: 18px;
}
.mpro-home-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 58px 2px 24px;
}
.mpro-section-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--mpro-home-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .17em;
}
.mpro-home-intro h2 {
    margin: 0;
    color: var(--mpro-home-ink);
    font-size: clamp(25px, 2.2vw, 34px);
    font-weight: 900;
    letter-spacing: -.04em;
}
.mpro-home-intro > p {
    max-width: 500px;
    margin: 0;
    color: var(--mpro-home-muted);
    font-size: 13px;
    line-height: 1.7;
    text-align: right;
}
.mpro-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}
.mpro-category-card {
    position: relative;
    display: flex;
    min-height: 160px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--mpro-home-line);
    border-radius: 10px;
    color: var(--mpro-home-ink);
    background: #fff;
    box-shadow: 0 10px 34px rgba(9, 29, 69, .05);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease;
}
.mpro-category-card::before {
    content: "";
    position: absolute;
    top: -48px;
    right: -48px;
    width: 110px;
    height: 110px;
    border: 22px solid rgba(12, 91, 243, .045);
    border-radius: 50%;
}
.mpro-category-model {
    position: absolute;
    right: -8px;
    bottom: 0;
    z-index: 1;
    width: min(54%, 145px);
    height: 145px;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
    filter: drop-shadow(-6px 5px 8px rgba(9, 29, 69, .12));
    transition: transform .25s ease;
}
.mpro-category-card > :not(.mpro-category-model) {
    z-index: 2;
}
.mpro-category-card:hover {
    border-color: var(--mpro-home-navy);
    color: #fff;
    background: var(--mpro-home-navy);
    box-shadow: 0 18px 40px rgba(9, 29, 69, .1);
    transform: translateY(-4px);
}
.mpro-category-card:hover small {
    color: #82b1ff;
}
.mpro-category-card:hover > i {
    color: #fff;
}
.mpro-category-card:hover .mpro-category-icon {
    background: rgba(255, 255, 255, .14);
}
.mpro-category-card:hover .mpro-category-model {
    transform: translateX(-3px) scale(1.035);
}
.mpro-category-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: var(--mpro-home-surface);
}
.mpro-category-icon img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}
.mpro-category-card strong,
.mpro-category-card small {
    display: block;
}
.mpro-category-card strong {
    margin-top: 18px;
    font-size: 15px;
}
.mpro-category-card small {
    margin-top: 4px;
    color: #8993a3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}
.mpro-category-card > i {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: var(--mpro-home-blue);
    font-style: normal;
}

@media (max-width: 960px) {
    .banner .mpro-hero-slide {
        height: 400px;
    }
    .banner .mpro-hero-slide::after {
        background: linear-gradient(90deg, rgba(5, 17, 42, .94) 0%, rgba(5, 17, 42, .65) 55%, rgba(5, 17, 42, .15) 100%);
    }
    .banner .mpro-hero-slide > img {
        object-position: 68% center;
    }
    .mpro-hero-copy {
        left: 28px;
        width: min(78vw, 430px);
    }
    .mpro-hero-copy strong {
        font-size: clamp(29px, 7.5vw, 42px);
    }
    .mpro-hero-description {
        max-width: 330px;
        font-size: 13px;
    }
    .mpro-home-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-top: 42px;
    }
    .mpro-home-intro > p {
        text-align: left;
    }
    .mpro-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .home_content {
        padding-right: 14px;
        padding-left: 14px;
    }
    .home_content .mpro-notice-bar {
        margin-top: 14px;
    }
    .mpro-notice-label {
        margin-right: 10px;
    }
    .mpro-hero-kicker {
        margin-bottom: 13px;
        font-size: 10px;
    }
    .mpro-hero-action {
        min-width: 168px;
        height: 44px;
        margin-top: 22px;
    }
    .mpro-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }
    .mpro-category-card {
        min-height: 128px;
        padding: 16px;
    }
    .mpro-category-model {
        width: min(55%, 112px);
        height: 118px;
    }
}

/* Casino and slot launch interaction */
.mpro-launch-grid .game-list a {
    isolation: isolate;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .22s ease;
}
.mpro-launch-grid .game-bg {
    transition: box-shadow .22s ease;
}
.mpro-launch-grid .game-list .btnPlay {
    min-width: 112px;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    color: transparent;
    background: var(--mpro-home-blue);
    box-shadow: 0 12px 30px rgba(5, 17, 42, .28);
    font-size: 0;
    font-weight: 800;
    letter-spacing: -.02em;
    transform: translate(-50%, 12px) scale(.94);
    transition: opacity .22s ease, transform .22s ease, background-color .22s ease;
}
.mpro-launch-grid .game-list .btnPlay::before {
    content: "게임시작";
    color: #fff;
    font-size: 14px;
}
.mpro-launch-grid .game-list .btnPlay::after {
    margin-left: 7px;
    color: #fff;
    font-size: 12px;
}
.mpro-launch-grid .game-list a:hover,
.mpro-launch-grid .game-list a:focus-visible {
    transform: translateY(-4px);
}
.mpro-launch-grid .game-list a:hover .game-bg,
.mpro-launch-grid .game-list a:focus-visible .game-bg {
    box-shadow: 0 14px 28px rgba(9, 29, 69, .18);
}
.mpro-launch-grid .game-list a:hover .btnPlay,
.mpro-launch-grid .game-list a:focus-visible .btnPlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.mpro-launch-grid .game-list a:focus-visible {
    outline: 3px solid rgba(12, 91, 243, .35);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .mpro-launch-grid .game-list a,
    .mpro-launch-grid .game-bg,
    .mpro-launch-grid .game-list .btnPlay {
        transition: none;
    }
}


.service-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.service-container .service-box {
    text-align: center;
    width: 50%;
    padding: 20px;
    background: linear-gradient(#f3f3f3,#a7a7a7);
    border-radius: 20px;
    box-shadow: 0 0 10px var(--main02);
    color: #181818;
    filter: grayscale(1);
}
.service-container .service-box .title-box {
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.service-container .service-box .title-ko {
    font-size: 22px;
    font-weight: 600;
}

.service-container .service-box .title-en {
    font-size: 15px;
    color: #0a437f;
    margin-top: 5px;
}

.service-container .service-box .service-desc {
    line-height: 30px;
    color: #343434;
    font-size: 16px;
    margin-top: 20px;
}

.bank_req {
    background-color: #292929;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    color: white;
    line-height: normal;
}

.bank_req::after {
    content: "";
    display: block;
    position: absolute;
    width: 1em;
    height: 1em;
    top: -0.5em;
    left: 46.5%;
    z-index: 0;
    background: inherit;
    box-shadow: inherit;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bank_req:empty {
    display: none;
}
.skiptranslate {
    display: none !important;
}
.langs  {
    width: 120px;
    margin-left: 5px;
}
.langs .dynamic-select .dynamic-select-header {
    background: white;
}

body.gate {
    background: fixed no-repeat center;
    background-size: cover;
    background-image: var(--gate-bg);
}
body.gate video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
body.gate .blocker:has(#login_pop) {
    background: transparent;
}
