/*레이어팝업*/
#layer_pop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000001;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    overflow: scroll;
}
#layer_pop::-webkit-scrollbar {
    display: none;
}
#layer_pop-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* width: 750px; */
    width: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.layer_pop-slider {
    /* width: 600px; */
    width: 550px;
    overflow: hidden;
    /* height: 840px; */
    height: 770px;
}
.layer_pop-slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.layer_pop-slider-pagination {
    flex-wrap: wrap;
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 150px !important;
    /* height: 840px; */
    height: 770px;
    background: #000;
}
.layer_pop-slider-pagination .swiper-pagination-bullet {
    width: 100%; 
    height: 14.285714%;
    /* height: 12.5%; */
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-width: 0 0 1px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    margin: 0 !important;
    opacity: 1;
    padding: 0 10px;
    transition: var(--transition);
}
.layer_pop-slider-pagination .swiper-pagination-bullet span {
    color: #fff;
    text-align: center;
    margin: 0 !important;
    font-size: 15px;
    letter-spacing: -0.5px;
} 
.layer_pop-slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
}
.layer_pop-slider-pagination .swiper-pagination-bullet:hover {
    background: var(--color-primary);
}

#layer_pop-closed {
    width: 100%;
    height: 50px;
    background: #000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px 15px;
}
#layer_pop-closed .single input[type=checkbox] {
    display: none;
}
#layer_pop-closed .single input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-left: 25px;
    font-size: 15px;
    line-height: 18px;
    color: #fff;
}
#layer_pop-closed .single input[type=checkbox] + label:before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius:100000000px;
    border: 1px solid #fff;
    box-sizing: border-box;
    overflow: hidden;
    background-color: transparent;
    content: '';
}
#layer_pop-closed .single input[type=checkbox]:checked + label:before {
    background-size: 60%;
    background-image: url("/public/images/icon-check.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
#layer_pop-closed button {
    border: 0;
    background-color: transparent;
}
@media all and (max-width:1200px) {
    #layer_pop-cont {
        width: 530px;
    }
    .layer_pop-slider {
        width: 380px;
        height: 537px;
    }
    .layer_pop-slider-pagination {
        width: 100px;
        height: 537px;
    }
    .layer_pop-slider-pagination div span {
        font-size: 13px;
    }
}
@media all and (max-width:1000px) {
    #layer_pop-cont {
        width: 60%;
    }
    .layer_pop-slider {
        width: 100%;
        height: auto;
    }
    .layer_pop-slider-pagination {
        position: relative;
        top: auto;
        bottom: auto !important;
        right: auto;
        width: 100% !important;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }
    .layer_pop-slider-pagination .swiper-pagination-bullet {
        width: 25%;
        height: 40px;
        padding: 0 5px;
    }
    .layer_pop-slider-pagination .swiper-pagination-bullet span {
        line-height: 1.2;
        font-size: 12px;
    }
}
@media all and (max-width:640px) {
    #layer_pop-cont {
        width: 80%;
        top: 5%;
        transform: translate(-50%, 0);
        box-shadow: none;
        border-radius: 15px;
    }
    .layer_pop-slider {
        width: 100%;
        height: auto;
    }
    .layer_pop-slider-pagination {
        position: relative;
        top: auto;
        bottom: auto !important;
        right: auto;
        width: 100% !important;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }
    .layer_pop-slider-pagination .swiper-pagination-bullet {
        width: 25%;
        border-right: 1px solid rgba(255,255,255,0.3);
        border-width: 0 1px 1px 0;
    }
    .layer_pop-slider-pagination .swiper-pagination-bullet span {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        /* word-break: normal; */
        font-size: 11px;
    }
    .layer_pop-slider-pagination .swiper-pagination-bullet :nth-of-type(4),
    .layer_pop-slider-pagination .swiper-pagination-bullet:nth-of-type(8) {
        border-right: 0;
    }
    #layer_pop-closed {
        height: 40px;
    }
    #layer_pop-closed .single input[type=checkbox] + label {
        font-size: 12px;
        line-height: 8px;
        padding-left: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    #layer_pop-closed .single input[type=checkbox] + label:before {
        width: 15px;
        height: 15px;
    }
    .single input[type=checkbox] + label {
        padding-left: 23px;
        font-size: 14px;
        line-height: 15px;
    }
    .single input[type=checkbox] + label:before {
        width: 15px;
        height: 15px;
    }
    #layer_pop-closed button {
        width: 15px;
    }
}