.popupWrap {
    position: absolute;
    top: 150px;
    left: 0px;
    transition: all 1s;
    z-index: 9;
    display: flex;
    flex-flow: row wrap;
    transform: translateX(-100%);
}

.popupWrap.active {
    transform: translateX(0%);

}

.popupWrap .contWrap {
    /* flex:1 1; */
    display:flex;
    /* flex-flow: row wrap; */
    /* float: left; */
    position: relative;
    opacity: 1;
    transition: all 1s;
}

.popupWrap.active .contWrap {
    opacity: 1;
}

.popupWrap .contWrap>div {
    /* flex:1 1; */
    /* float: left; */
    /* position: relative; */
}

.popupWrap .btnsWrap {
    float: left;
    display: block;
    width: 50px;
    height: 100%;
    background-color: #ABA197;
    top: 0px;
    right: -50px;
    position: absolute;
    cursor: pointer;
}

.popupWrap .btnsWrap p {
    color: #fff;
    font-size: 18px;
    font-family: 'NotoKrR';
    position: absolute;
    top: 20px;
    left: 70%;
    font-weight: bold;
    transform-origin: 0 0;
    transform: rotate(90deg);
}

.popupWrap .btnsWrap span {
    position: absolute;
    display: block;
    width: 100%;
    height: 70px;
    bottom: 0;
    left: 0;
    background: url(../images/common/img_popup_btn.png) no-repeat center center/20px;
    transition: all .3s;
}

.popupWrap.active .btnsWrap span {
    background: url(../images/common/img_popup_close_btn.png) no-repeat center center/25px;
}

.popupWrap .btnsWrap::after {
    width: 20px;
    height: 4px;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 17px;
    left: 15px;
    transform: rotate(135deg);
    content: "";
    transition: all .5s;
    z-index: 1
}

.popupWrap .btnsWrap::before {
    width: 20px;
    height: 4px;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 29px;
    left: 15px;
    transform: rotate(-135deg);
    content: "";
    transition: all .5s;
    z-index: 1
}

.popupWrap.active .btnsWrap::after {
    width: 30px;
    height: 4px;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 30px;
    left: 10px;
    transform: rotate(-45deg);
    content: "";
    z-index: 1
}

.popupWrap.active .btnsWrap::before {
    width: 30px;
    height: 4px;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 30px;
    left: 10px;
    transform: rotate(45deg);
    content: "";
    z-index: 1
}

.popupWrap {
    /* width: 100%; */
    /* max-width: calc(330px * 1) */
}

.popupWrap .contWrap>div img {
    width: 100%;
}

.centerPopWrap {
    position: absolute;
    top: 150px;
    left: 50%;
    width: 1px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0 10px;
}

.centerPopWrap .contWrap {
    display: flex;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .3);
}

.centerPopWrap .contWrap .popup_box {
    display: flex;
    flex-flow: column;
    width: 340px;
}

.centerPopWrap .contWrap .popup_box:not(:last-child) {
    border-right: 1px solid #000;
}

.centerPopWrap .contWrap .popup_box .imageWrap {
    width: 100%;
}

.centerPopWrap .contWrap .popup_box .btnsWrap {
    background-color: #ABA197;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding:0 15px;
    color: #fff;
    font-size: 16px;
}

.centerPopWrap .closeBtn {
    font-size: 50px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
    margin-top: -9px;
}