@charset "UTF-8";


.el_popup_detailBox {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

.el_popup_detailBox.active {
    display: block;
}

.el_popup_detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 430px;
    margin: 0;
    z-index: 1002;
}

.el_popup_detail_xmarkWrap {
    font-size: 35px;
    color: #fff;
    text-align: right;
}

.el_popup_detail_xmark {
    display: inline-block;
    cursor: pointer;
}

.el_popup_detail_content {
    max-width: 430px;
    margin: 0;
    overflow-y: auto;
}

@media screen and (max-width: 500px) {
    .el_popup_detail {
        width: 100%;
        padding: 10%;
    }

    .el_popup_detail_xmarkWrap {
        font-size: 30px;
    }

    .el_popup_detail_content {
        width: 100%;
    }
}