
/*팝업슬라이드 css*/
.pop-layer{
    position: absolute;
    top: 300px;
    right: 200px;
    z-index: 999;
    display: none;
}
.pop-layer.dragged{
    right: unset;
}
.pop_list{
    width: 400px;
    height: 400px;
    overflow: hidden;
}
.pop_list .slick-slide{
    width: 100%;
}
.pop_list .slick-slide div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pop-head{
    cursor: grab;
    display: flex;
    justify-content: flex-end;
    color: #fff;
    padding: 10px;
    align-items: center;
    font-size: 13px;
    background-color: #0397ff;
    border-radius: 20px 20px 0 0;
}
.ui-draggable-dragging .pop-head{
    cursor: grabbing;
}
.pop-head img{
    height: 18px;
    margin-right: 5px;
}
.pop-layer button{
    background-color: transparent;
    border: none;
}
.pop-layer .pop-footer{
    display: flex;
    align-items: center;
    background-color: #0397ff;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}
.pop-layer .pop-play-pause-btn{
    padding: 10px;
    display: flex;
    width: 40%;
    padding: 10px;
}
.pop-layer .pop-play-pause-btn .btn-play{
    display: none;
}
.pop-layer .pop-play-pause-btn .paging{
    color: #fff;
    margin-right: 10px;
}
.pop-layer .pop-play-pause-btn .paging p{
    font-size: 13px;
    padding-left: 5px;
}
.pop-layer .pop-play-pause-btn .paging span{
    font-weight: 700;
}
.pop-layer .pp-btn img{
    height: 13px;
}
.pop-layer .closeBox{
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
}
.pop-layer .closeBox button{
    font-size: 13px;
    color: #fff;
}
.pop-layer .closeBox button img{
    height: 12px;
}
.pop-layer .slick-prev,
.pop-layer .slick-next{
    z-index: 5;
    width: 30px;
    height: 30px;
}
.pop-layer .slick-prev{
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.pop-layer .slick-next{
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.pop-layer .slick-prev::after,
.pop-layer .slick-next::after{
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
}
.pop-layer .slick-prev:hover,
.pop-layer .slick-next:hover{
    background-color: rgba(0, 0, 0, 0.4);
}
.pop-layer .slick-prev::after{
    background-image: url(../images/popup/arr-prev.png);
}
.pop-layer .slick-next::after{
    background-image: url(../images/popup/arr-nxt.png);
}
/* max-width: 768px */
@media screen and (max-width: 768px) {
    .pop-layer{
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
    }
    .pop-layer{
        width: calc(100vw - 40px);
    }
    .pop_list{
        width: 100%;
        height: auto;
    }
    .pop-layer .slick-slide{
        height: calc(100vw - 40px);
    }
}