@charset "UTF-8";

.new_layer_pop {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    top: 100px;
    position: relative;
    align-items: flex-start;
}
.main-layerpop {
	position:absolute;
    background-color: #fff;
    border: 1px solid #e1e4eb;
    margin-right: 20px;
    z-index: 1000;
}
.txt-area {
    width: 550px;
    height: auto;
    background-color: #1d316c;
    padding: 30px;
    color: #fff;
    font-size: 22px;
    box-sizing: border-box;
}
@media all and (max-width: 768px) {
    .main-layerpop {
        top: 100px;
        left: 10px;
        max-width: calc(100% - 20px);
        margin: 0 0 10px 10px;
    }
    .txt-area {
        width: 100%;
    }
}
.main-layerpop .img-area > img {
    max-width: 600px;
    max-height: 600px;
    display: block;
}
.main-layerpop .control-wrap {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #e1e4eb;
}

/* 메인 레이어팝업 */
.wrap_popup,.wrap_popup:before{top:0;left:0;width:100vw;height:100vh;z-index:100;}
.wrap_popup{overflow:hidden;display:none;position:fixed;}
.wrap_popup:before{position:absolute;content:'';display:block;background:rgba(0,0,0,.3);}
/* 메인 레이어팝업 끝 */