@charset "UTF-8";
.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;
    background: var(--main);
}

.btnN > span {
    font-size: 14px;
    margin-right: 3px;
}

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

.redB:hover {
    background-color: #4fcdff
}

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

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

#betLoading {
    color: white;
    z-index: 10000;
    position: fixed;
    background: #2525268a;
    text-align: center;
    padding: 0;
    font-size: 18px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-wrap {
    color: #413b3b;
    padding: 25px;
    /* font-size: 16px; */
    line-height: 28px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 2px 4px 5px 1px rgb(0 0 0 / 10%), inset 0 0 6px 1px #fff;
}
.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 #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(--main01);
    min-width: 110px;
}
.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: #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: -64px;
    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;
}

.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 {
    display: flex;
    align-items: center;
    flex: 1;
    line-height: normal;
}
.marquee img {
    margin-right: 5px;
}

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

.header .headerWrapper {
    margin: 0 auto;
    width: 100%;
    height: 70px;
    display: flex;
    padding: 0 2em;
    align-items: center;
    justify-content: space-between;
    background: white;
    filter: drop-shadow(2px 1px 2px #ddd);
}
.header .headerWrapper .home_notice {
    width: 70%;
}

.header .headerWrapper .rightZone {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header .headerWrapper .rightZone .login-link {
    background: #66a2ff;
    color: white;
}
.header .headerWrapper .rightZone .logout-link {
    background: #7a7a7a;
    color: white;
}
.header .moneyZone {
    display: flex;
    position: relative;
    margin-left: 14px;
    flex-wrap: wrap;
    /* flex-direction: column; */
}
.header .moneyZone .cashWrap {
    display: flex;
    border: 1px solid #ddd;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    gap: 5px;
    border-radius: 5px;
}
.header .moneyZone a {
    display: flex;
    align-items:center;
    gap: 4px;
}
.header .moneyZone button {
    background: var(--main);
    color: white;
    border-radius: 10px;
    padding: 3px 5px;
}
.header .moneyZone .money {
    font-size: 15px;
    color: var(--main);
    margin-right: 5px;
}
.header .moneyZone .money:before {
    margin-right: 5px
}

.header .moneyZone .cash {
    display: flex;
    align-items: center;
}

.header .moneyZone .refresh {
    cursor: pointer;
    margin-left: 10px;
    width: 20px;
}
.header .moneyZone .refresh:hover {
    transform: rotate(360deg);
    transition: transform 1s linear;
}
.header .moneyZone .icon {
    font-size: 20px;
    width: 20px
}
.header .memberZone {
    display: flex;
    align-items: center;
    padding-left: 16px
}

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

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

/* banner */
.banner video,
.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 button,
.banner .slick-dots button:hover {
    background-image: url(../images/common/button.png?v=1);
}
.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%;
    text-align: center;
}

.footer .sns_wrap {
    margin-top: 50px;
}

.footer .sns_wrap img {
    width: 215px;
    margin: 0 10px;
}

.footer .license {
    margin-top: 25px;
    font-size: 16px;
}

.footer .footer-logo {
    margin-top: 10px;
    width: 100%;
}

.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;
    padding: 20px 0;
}

.titlePic .titlePwrapper {
    width: 100%;
    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-logob {
    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/main/logo.png);
    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%)
}

#app_content {
    min-height:300px;
}
.noticeFrame .listZone {
    width: 100%;
    margin-top: 30px
}

.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: 2px solid var(--main01);
    border-radius: 12px;
    animation-name: fadeInUp;
}

.noticeFrame .listZone ul.imgList li .hintP {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    width: 15%;
    height: auto;
    padding-bottom: 5%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 11px;
    top: -4px;
    left: 3%;
    color: #ffffff;
    letter-spacing: -1px;
    font-size: .6vw;
    z-index: 1
}

.noticeFrame .listZone ul.imgList li .upZone {
    border-radius: 9px 9px 0 0;
    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
}

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

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

.noticeFrame .listZone ul.imgList li .bottomZone .btnP:hover {
    background-color: #4fcdff
}


.noticeFrame .listZone table {
    width: 100%
}

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

.noticeFrame .listZone table tr:hover {
    background-color: #dedede;
}

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

.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 {
    color: #474747;
    font-size: 14px;
    padding: 15px 10px;
    border-bottom: 1px solid #dadada;
    position: relative;
    vertical-align: middle;
}

.noticeFrame .listZone table tr td label {padding-left: 15px;}

.noticeFrame .listZone table tr td.back {
    color: var(--color-main)!important
}

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

.noticeFrame .listZone table tr td a {
    color: #474747;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block
}

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

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

.noticeFrame .listZone table tr td span.greyT {
    color: #969696
}

.noticeFrame .listZone table tr td span.greenT {
    color: #1fc05c
}

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

.noticeFrame .listZone table tr td .btnT {
    color: #ffffff;
    background-color: var(--color-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
}

.noticeFrame .listZone table tr td .btnT:hover {
    background-color: #4fcdff
}

.noticeFrame .listZone table tr:nth-child(even):hover {
    background-color: #f7f7f7;
}

.noticeFrame .listZone table tr:nth-child(even):hover .uLine {
    text-decoration: underline
}

.noticeFrame .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: #ffffff;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
}
.bet-list-wrap .bet-content.on {
    border: 1px solid #00a8ea;
}
.bet-list-wrap .league-wrap{
    display:flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.bet-list-wrap .sel-pick {
    background: var(--main01);
}

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

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

.bet-list-wrap .bet-result {
    display: flex;
    color: white;
    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:#00a8ea;

}
.bet-list-wrap .slip .btn-sel {
    display: flex;
    position: relative;
    left: 0;
    top: 0;
}

.bet-list-wrap .slip .btn-sel span{
    padding: 5px;
    margin: 0;
    font-size: 12px;
    color: #03a9f4;
}

.bet-list-wrap .bet-result button {
    background: #00a8ea;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

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

.bet-list-wrap .bet-result .info .sp-number {
    color: #00a8ea;
    font-size: 16px;
    font-weight: 600;
}

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

.bet-list-wrap td {
    border-left: 1px solid #dddbdb;
}
.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: #00BCD4;
}

.bet-list-wrap .slip {
    margin-bottom: 10px;
    /* background: linear-gradient(0deg, #cfcfcf, #d8d8d8); */
    border-radius: 7px;
    /* position: relative; */
}

.bet-list-wrap .slip.on {
    border: 1px solid #03a9f4;
}
.bet-list-wrap .slip .title{
    background: var(--main);
    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;
    /* line-height: 3; */
    border-bottom: 1px dotted #000000;
    color: black;
    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: #a237ab; */
    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: #deb100;
}

.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 #bdbdbd;
    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 .score-wrap {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bet-list-wrap .slip .content .ballZone .score-wrap .score {
    color: #deb100;
}
.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: black;
    font-size: 13px;
}

.bet-list-wrap .slip .content .resultZone .result{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
}

.bet-list-wrap .slip .content .resultZone .result .sp-number {
    font-size: 16px;
    color: #f44336;
    font-weight: 600;
}
.bet-list-wrap .slip .content .resultZone .button-wrap{
    border-top: 1px solid #aeaeae;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-top: 5px;
    gap:5px;
}
.bet-list-wrap .slip .content .resultZone .button-wrap button {
    padding: 7px 30px;
    border-radius: 5px;
    background: #f73759;
    color: white;
}
.bet-list-wrap .slip .content .resultZone .btn-cancel{
    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'
}

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

.paging_box ul {
    width: auto;
    display: inline-block;
    padding: 0
}

.paging_box ul li {
    background: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    margin-right: 4px!important
}

.paging_box ul .prev {
    margin-left: 0
}

.paging_box ul li a {
    font-size: 12px;
    color: #565656;
    border: 1px solid transparent;
    padding: 0 12px;
    border-radius: 3px;
    transition: .4s ease-out;
    text-decoration: none
}

.paging_box ul li a:hover {
    background: #f3f3f9;
    border: 1px solid #f3f3f9
}

.paging_box ul li.active,.paging_box ul li.on,.paging_box ul li:hover a {
    color: #ffffff;
    background: var(--color-main);
    border: 1px solid var(--color-main)
}

.paging_box ul .first,.paging_box ul .last {
    position: relative
}

.paging_box ul .first a,.paging_box ul .last a,.paging_box ul .next a,.paging_box ul .prev a {
    color: #999999
}

.paging_box ul .first span,.paging_box ul .last span {
    position: relative
}

.paging_box ul .first span:after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #999999!important;
    position: absolute;
    top: 50%;
    left: 57%;
    transform: translate(25px,-50%)
}

.paging_box ul .last span:after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #999999;
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(-22px,-50%)
}

.paging_box ul li.first:hover a,.paging_box ul li.prev:hover a,.paging_box ul li.next:hover a {
    color: #ffffff;
    background: var(--color-main);
    border: 1px solid var(--color-main)
}

.noticeFrame {
    width: 100%;
    height: auto;
    padding-bottom: 22px;
    margin-top: 10px;
}

.noticeFrame .title {
    color: #161616;
    font-size: 26px;
    font-weight: 600
}

.noticeFrame .title span {
    /* color: #0f9e48; */
    font-size: 14px;
    margin-left: 7px
}

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

.noticeFrame .tabZone ul li {
    height: 58px;
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s ease-out;
    position: relative;
    border: 1px solid var(--border);
    padding: 10px 2px;
}

.noticeFrame .tabZone ul li.active,.noticeFrame.tabZone ul li:hover {
    background: linear-gradient(358deg,var(--main02) 2.47%,var(--main01) 40.06%,var(--main) 76.13%);
    /* color: white; */
}

.noticeFrame .tabZone ul li span {
    color: #b27b46;
    background: linear-gradient(353.95deg, rgb(0 0 0) 0%, rgb(0 0 0 / 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 {
    font-size: 14px;
    transition: .4s ease-out;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.noticeFrame .tabZone ul li.active span {
    color: #ffffff
}

.noticeFrame .searchZone {position: relative;width: 300px;margin-right: 15px;}
.noticeFrame .searchZone input {color: #030303;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: #040404;font-size: 14px}
.noticeFrame .searchZone .searchIcon {position: absolute;right: 0px;top: 9px}
.noticeFrame .searchZone .searchIcon span {color: #2c2c2c;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;}

.reply-list table tr{border:0;}
.reply-list table tr{border-bottom: 1px solid #f1f1f1;}
.reply-edit {margin: 5px 0;display: flex;gap: 5px;}
.reply-edit .reply-content {height: 36px;flex: 1;background: white;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: #ffffff;vertical-align: top;padding: 10px 0;}
.reply-list table tr td {border-radius: 0;color: #161616;border-right: 1px solid;border: 0;border-color: #505050;padding: 10px;vertical-align: middle;}
.reply-list table tr td button {height: 30px; line-height: 30px;}

.comp_rate {color: white;}
.comp_rate h2{color: black;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: var(--main04);min-width: 100px;text-align: center;cursor: pointer;color: black;}
.comp_rate .main_tap li.on{color: #ffffff;background: var(--main01);}
.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: #ebebeb;cursor: pointer;color: black;}
.comp_rate .sub_tap li.on{background: var(--main03);}

.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;color: black;}
.comp_rate .comp_panel .comp_list li .comp_rate{color:black}

.contentZone {
    margin-top: 20px
}

.contentZone .time {
    color: #161616;
    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: #4a00ea;
    font-size: 14px;
    transition: .3s ease-out;
    cursor: pointer
}

.contentZone .time .pageBack a:hover {
    color: #4fcdff
}

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

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

.contentZone .time span.timeR {
    color: #474747;
    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: #f2f2f2;
}

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

.contentZone .txt p {
    font-size: 12px;
    color: #474747;
    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(--color-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: #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: #cbcbcb8c;
    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: #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;
    /* 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 .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);
}
.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-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;
}
.edit_popup {
    width:300px;
    height: auto;
    min-height:unset;
    padding: 20px 5px 5px;
    background: #ffffff;
    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;
}

.v_deep_home {
    margin-top:70px;
}
.v_deep_home .home_content {
    padding:0 30px
}
.v_deep_home .gameZone {
    margin-top: 0;
    padding-bottom: 30px;
    width: 100%;
    display: block;
    border-bottom: 1px solid #eaeaea;
}

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

.v_deep_home .gameZone .title span {
    margin-right: 5px;
    font-size: 30px;
}

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

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

.v_deep_home .gameZone .game-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    gap: 12px;
}

.v_deep_home .gameZone.virtual .model {
    width: 100%;
    height: 100%;
    left: 10px;
    bottom: 0px;
}

.v_deep_home .gameZone.slot .model {
    width: 127%;
    height: 133%;
    top: 0;
    left: -8%;
}


.v_deep_home .gameZone.mini .model {
    width: 100%;
    height: 80%;
    bottom: 0px;
    left: 0px;
}

.v_deep_home .gameZone.sports .model {
    width: 100%;
    height: 87%;
    bottom: 0px;
    left: 0px;
}

.v_deep_home .gameZone.touch .model {
    width: 100%;
    height: 80%;
    bottom: -8px;
    left: 0px;
}
.v_deep_home .slotZone {
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

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

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

.v_deep_home .slotZone .leftZone {
    width: 56%;
    border-radius: 10px;
    /* border: 1px solid #eaeaea; */
    /* background: linear-gradient(180deg,#ffffff 0%,#e9e9e9 100%); */
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .4s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v_deep_home .slotZone .centerZone .downZone a {
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    transition: .4s ease-out
}

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

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

.v_deep_home .slotZone .rightZone ul li {
    width: 100%;
    /* border: 1px solid #eaeaea; */
    border-radius: 10px;
    margin-bottom: 10px;
    /* background: linear-gradient(180deg,#ffffff 0%,#e9e9e9 100%); */
    position: relative;
    cursor: pointer;
    /* overflow: hidden; */
    transition: .4s ease-out;
    filter: drop-shadow(0px 0px 3px var(--main));
}

.v_deep_home .slotZone .rightZone ul li:before {
    content: "";
    /* background-image: linear-gradient(0deg,var(--main03),var(--main04)); */
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    opacity: 0;
    transition: .4s ease-out
}

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

.v_deep_home .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 .slotZone .rightZone ul li:hover .pic {
    /* transform: rotate(5deg) scale(1.2) */
    scale: 1.05
}

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

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

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

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

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

.v_deep_home .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 .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 .slotZone .rightZone ul li:hover .mask,
.v_deep_home .slotZone .rightZone ul li:hover .mask .inner {
    opacity: 1
}

.v_deep_home .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;
    display: none;
}

.v_deep_home .slotZone .rightZone ul li:hover .txt {
    left: 18%;
    opacity: 1
}
.v_deep_home .infoZone {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.v_deep_home .infoZone .info01 {
    width: 100%;
    border: 1px solid #d5d5d5;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 23px;
    margin-top: 25px;
}
.v_deep_home .infoZone .info01 .title {
    color: #828282;
    font-size: 18px;
    font-weight: 700;
    margin-left: 10px;
}

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

.v_deep_home .infoZone .info01 .listFrame {
    margin-top: 20px;
    height: 230px;
    overflow: hidden;
}

.v_deep_home .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 .infoZone .info01 .list:hover {
    animation-play-state: paused
}

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

.v_deep_home .infoZone .info01 .list a:hover {
    background-color: var(--color-main)
}

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

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

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

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

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

.v_deep_home .aniModel {
    -webkit-animation: aniModel-8c6ca05e 1s infinite;
    animation: aniModel-8c6ca05e 1s infinite
}
.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;
}
.service-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.service-container .service-box {
    text-align: center;
    width: 50%;
    padding: 20px;
    background: #fafafa;
    border-radius: 20px;
    /* box-shadow: 0 0 10px var(--main02); */
    color: #181818;
    /* filter: grayscale(1); */
}
.service-container .service-box img {
    width: 50px
}
.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;
}
@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
    }
}

.pop_wrap {
    width: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    border-radius: 10px;
    padding: 33px 54px;
    color: var(--main);
}

.pop_wrap .icon-x-modal {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    transition: .2s ease-out;
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
    color: black;
}

.pop_wrap .icon-x-modal:hover {
    transform: rotate(360deg)
}

.pop_wrap .title {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #b1b1b1;
}

.pop_wrap .title img {
    height: 70px;
}

.pop_wrap .title h2 {
    font-weight: 700;
    font-size: 24px;
    margin-top: 10px;
    color: black;
}

.pop_wrap .inputFrame {
    display: flex;
    position: relative;
}

.pop_wrap .inputFrame .info {
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 30%;
    height: 35px;
}

.pop_wrap .inputFrame .info span.ficon {
    font-size: 15px;
    margin-right: 5px
}

.pop_wrap .inputFrame .input_content {
    border-radius: 5px;
    color: #272727;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 100%;
    gap: 3px;
    padding-bottom: 5px;
}

.pop_wrap .inputFrame .input_content input {
    padding-left: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 35px;
    margin-bottom: 0;
    border-radius: 5px;
    background: white;
    border: 1px solid #bbbbbb!important;
    flex: 1;
}

.pop_wrap .inputFrame .input_content input::placeholder {
    color: #c1b8b8;
    font-size: 14px
}
.pop_wrap .inputFrame .input_content select {
    display: block;
    padding: 0;
    height: 35px;
    padding-left: 10px;
    border: 1px solid #bbbbbb!important;
    flex: 1;
}
.pop_wrap .inputFrame .input_content select:focus {
    outline: 0px
}
.pop_wrap .inputFrame .input_content textarea {
    padding: 10px;
    border-radius: 5px;
    border: solid 1px #929292;
    resize: vertical;
    height: auto;
    min-height: 120px;
}

.pop_wrap .inputFrame .check_content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    width: 100%;
    justify-items: start;
    border: 1px solid #bbbbbb!important;
    border-radius: 5px;
    padding: 5px;
    gap: 5px 0;
}

.pop_wrap .inputFrame button {
    height: 35px;
    font-size: 14px;
    border-radius: 3px;
    padding: 0 8px;
    font-weight: 700;
    background: var(--main);
    color: #ffffff;
    cursor: pointer;
    border: 0px;
    transition: .4s ease-out;
    white-space: nowrap;
}
.pop_wrap .inputFrame .msg-wrap {
    text-align:left;
    font-size: 10px;
    margin-top: 3px;
    font-weight: 500;
    color: #f03737;
    width: 100%;
}
.pop_wrap .inputFrame .msg-wrap li:before {
    content: '\e98a';
    font-family: 'icomoon';
    margin-right: 5px;
}
.pop_wrap .btnFrame {
    margin-top:20px;
}
.pop_wrap .btnFrame button {
    text-align: center;
    transition: .2s ease-out;
    cursor: pointer;
    padding: 12px;
    border-radius: 20px;
    width: 100%;
    background: #e5b224;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: 0px;
    margin-left: 0;
    margin-bottom: 16px;
}
.pop_wrap .btnFrame button.join-link {
    background: #66a2ff;
}
.pop_wrap .btnFrame p {
    color: #b8b8b8;
    font-size: 12px;
    cursor:pointer;
    transition: .4s ease-out
}

.pop_wrap .btnFrame p span {
    color: var(--main);
    transition: .4s ease-out;
    text-decoration: underline;
    margin-left: 5px;
}
#ask_pop .pop_wrap {
    width: 500px;
    padding: 20px 30px;
}
#ask_pop .pop_wrap .inputFrame {
    display: block;
    text-align: left;
}
#ask_pop .pop_wrap .inputFrame .txt {
    margin-bottom: 5px;
    margin-left: 5px;
}
#join_pop .pop_wrap.referee {
    width: 350px;
    height: auto;
    padding: 50px 35px 20px;
}

#login_pop .pop_wrap {
    padding: 0;
    display: flex;
    background: url(../images/common/bg-frm.png?v=1) no-repeat bottom white;
}

#login_pop .pop_wrap .leftImg {
    width: 50%;
    position: relative
}

#login_pop .pop_wrap .leftImg img {
    position: absolute;
    bottom: 0px;
    right: 0;
}

#login_pop .pop_wrap .content {
    width: 45%;
    margin: 0 auto;
    padding: 30px 26px 23px 0;
}

#login_pop .pop_wrap .inputFrame {
    display: block;
    margin-bottom:10px;
}
#login_pop .pop_wrap .inputFrame .txt {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px
}

#login_pop .pop_wrap .input_content input {
    text-align:center;
}
#login_pop .pop_wrap .captcha img {
    height: 40px;
    max-width: 50%;
    border-radius: 5px;
}
#login_pop .pop_wrap .content .sns_wrap {
    display: flex;
    gap: 3px;
    justify-content: center;
}
#login_pop .pop_wrap .content .sns_wrap img {
    max-width: 100%;
}
.main_content {
    float: left;
    width: 100%;
    padding: 0 30px;
    height: auto;
    padding-bottom: 85px;
    margin-top: 70px;
}
.main_content img.banner {
    max-width: 100%;
    width: 0%;
    margin-bottom: 6px;
}
.rightContent {
    height: auto;
    overflow: hidden;
    padding-left: 250px;
    animation: leftIn .5s;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: white;
    background-size: 100%;
}

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

.rightZone>.txt>h2 {
    color: var(--main01);
    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(--main01)
}

.LeftContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
    z-index: 14;
    top: 0px;
    bottom: 0px;
    padding: 29px 0 0;
    position: fixed;
    transition: .25s ease-out;
    background: white;
    box-shadow: rgba(0,0,0,0.3) 0 0 0.6em;
}

.LeftContent .logoWrap img.logo1 {
    width: 100%;
    padding: 5px 30px;
    display: block;
}

.LeftContent .logoWrap img.logo2 {
    width: 100%;
    padding:10px;
    display:none;
}

.scrollFrame {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-y: auto
}

.scrollFrame::-webkit-scrollbar {
    width: 0px
}

.LeftContent .leftMenu {
    width: 82%;
    border-radius: 10px;
    padding: 17px;
    margin: 0 auto 19px;
    border: 1px solid #ddd;
}

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

.LeftContent .leftMenu ul li {
    padding: 9px 3px;
    border-bottom: 1px solid #f3f3f3;
    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;
   /* color: var(--main);*/
	color: #e5851e;
    font-size: 24px;
    margin-right: 25px;
    transition: .2s ease-out
}

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

.LeftContent .leftMenu ul li a img {
    width: 25px;
    margin-right: 10px

}
.LeftContent .sns_wrap {
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
}
.LeftContent .sns_wrap img {
    width: 100%;
    padding: 1px 20px;
}
.LeftContent .leftMenu ul li a:hover span,.LeftContent .leftMenu ul li a.active span {
    opacity:0
}

.LeftContent .leftMenu ul li a:hover .hovePic,.LeftContent .leftMenu ul li a.active .hovePic {
    display:block;
}

.LeftContent .leftMenu01 ul li a:hover span,.LeftContent .leftMenu01 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: var(--color-main);
    opacity: 1!important;
    transform: rotate(-30deg) translateZ(0);
    font-size: 32px;
    margin: -4px 21px -4px -4px
}

.LeftContent .leftMenu ul li a .txt {
    color: #474747;
    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 b {
    color: #f20f2a;
}

#open-cart {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    position: fixed;
    font-size: 12px;
    border: 1px solid #dddddd;
    background: #f2f2f2;
    -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: #606060;
    -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: #c365e9;
    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;
    }
    .LeftContent.zoomIN + .rightContent .header {
        width:calc(100% - 80px)!important
    }
    .zoomIN .leftMenu ul li a .txt {
        display: none
    }

    .zoomIN .leftMenu {
        border: 1px solid #ddd;
        box-shadow: none;
        padding: 17px 23px 3px 16px;
        margin-top: 0;
        margin-bottom: 0
    }

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

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

    .zoomOUT {
        width: 250px!important
    }

    .zoomOUT .leftMenu ul li a .txt {
        display: flex!important
    }

    .zoomOUT .leftMenu {
        width: 82%!important;
        background-color: #ffffff!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 #f2f2f2!important;
        position: relative!important;
    }

    .zoomOUT .leftMenu01 {
        width: 82%!important;
        background-color: #ffffff!important;
        border-radius: 10px!important;
        padding: 17px!important;
        margin: 0 auto 19px!important
    }

    .zoomOUT .leftMenu01:after {
        display: none!important
    }

    .zoomOUT .logoWrap img {
        animation: menuLOGO .4s;
        animation-delay: .05s;
        animation-fill-mode: forwards;
        opacity: 0
    }
}

.zoomIN.LeftContent .logoWrap img.logo1 {
    display:none;
}
.zoomIN.LeftContent .logoWrap img.logo2 {
    display:block;
}
.zoomOUT.LeftContent .logoWrap img.logo1 {
    display:block;
}
.zoomOUT.LeftContent .logoWrap img.logo2 {
    display:none;
}
@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 .logoWrap img.logo1 {
        display:none;
    }
    .LeftContent .logoWrap img.logo2 {
        display:block;
    }

    .LeftContent .leftMenu {
        box-shadow: none;
        padding: 17px 23px 3px 16px;
        margin-top: 0;
        margin-bottom: 0
    }

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

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

    .rightContent {
        padding-left: 80px
    }
}

.bank_req {
    background-color: #eeeeee;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    color: black;
    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;
}
.alarm_comp {
    position: fixed;
    display: flex;
    align-items: center;
    background: #f8f8f8;
    height: 30px;
    padding: 10px 10px 10px 0px;
    border-radius: 17px;
    color: black;
    animation: linear infinite;
    animation-name: run;
    animation-duration: 50s;
    white-space: nowrap;
    bottom: 10%;
    z-index: 30;

}
.alarm_comp:hover {
    animation-play-state:paused;
}
@keyframes run {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 300px);
  }
  100% {
    left: 0;
  }
}
.alarm_comp img {width: 40px;margin-right: 10px;}
.alarm_comp b {color: var(--main);margin-left: 5px}
.alarm_comp .icon-delet {background: black;padding: 5px;border-radius: 20px;color: white;margin: 3px;font-size: 11px;display:none;}
.skiptranslate {
    display: none !important;
}
.langs  {
    width: 120px !important;
    display: inline-block !important;
    vertical-align: middle;
    margin-left: 10px;
}
.langs .dynamic-select .dynamic-select-header {
    justify-content: center;
    border: 1px solid #a7a7a7;
}

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;
}
<style>
    <!--
    /* customizable snowflake styling */
    .snowflake {
      color: #f5d54f;
      font-size: 2em;
      font-family: Arial, sans-serif;
      text-shadow: 0 0 2px #000;
    }

    @-webkit-keyframes snowflakes-fall {
      0% {
        top: -10%
      }

      100% {
        top: 100%
      }
    }

    @-webkit-keyframes snowflakes-shake {

      0%,
      100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
      }

      50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px)
      }
    }

    @keyframes snowflakes-fall {
      0% {
        top: -10%
      }

      100% {
        top: 100%
      }
    }

    @keyframes snowflakes-shake {

      0%,
      100% {
        transform: translateX(0)
      }

      50% {
        transform: translateX(80px)
      }
    }

    .snowflake {
      position: fixed;
      top: -10%;
      z-index: 9999;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: default;
      -webkit-animation-name: snowflakes-fall, snowflakes-shake;
      -webkit-animation-duration: 10s, 3s;
      -webkit-animation-timing-function: linear, ease-in-out;
      -webkit-animation-iteration-count: infinite, infinite;
      -webkit-animation-play-state: running, running;
      animation-name: snowflakes-fall, snowflakes-shake;
      animation-duration: 10s, 3s;
      animation-timing-function: linear, ease-in-out;
      animation-iteration-count: infinite, infinite;
      animation-play-state: running, running
    }

    .snowflake:nth-of-type(0) {
      left: 1%;
      -webkit-animation-delay: 0s, 0s;
      animation-delay: 0s, 0s
    }

    .snowflake:nth-of-type(1) {
      left: 10%;
      -webkit-animation-delay: 1s, 1s;
      animation-delay: 1s, 1s
    }

    .snowflake:nth-of-type(2) {
      left: 20%;
      -webkit-animation-delay: 6s, .5s;
      animation-delay: 6s, .5s
    }

    .snowflake:nth-of-type(3) {
      left: 30%;
      -webkit-animation-delay: 4s, 2s;
      animation-delay: 4s, 2s
    }

    .snowflake:nth-of-type(4) {
      left: 40%;
      -webkit-animation-delay: 2s, 2s;
      animation-delay: 2s, 2s
    }

    .snowflake:nth-of-type(5) {
      left: 50%;
      -webkit-animation-delay: 8s, 3s;
      animation-delay: 8s, 3s
    }

    .snowflake:nth-of-type(6) {
      left: 60%;
      -webkit-animation-delay: 6s, 2s;
      animation-delay: 6s, 2s
    }

    .snowflake:nth-of-type(7) {
      left: 70%;
      -webkit-animation-delay: 2.5s, 1s;
      animation-delay: 2.5s, 1s
    }

    .snowflake:nth-of-type(8) {
      left: 80%;
      -webkit-animation-delay: 1s, 0s;
      animation-delay: 1s, 0s
    }

    .snowflake:nth-of-type(9) {
      left: 90%;
      -webkit-animation-delay: 3s, 1.5s;
      animation-delay: 3s, 1.5s
    }

    .snowflake:nth-of-type(10) {
      left: 25%;
      -webkit-animation-delay: 2s, 0s;
      animation-delay: 2s, 0s
    }

    .snowflake:nth-of-type(11) {
      left: 65%;
      -webkit-animation-delay: 4s, 2.5s;
      animation-delay: 4s, 2.5s
    }
    -->
  </style>
