.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%;
}