@charset "utf-8";
.bgPopup{
    display: none;
}
body.isPopupOn .bgPopup{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 100;
    display: block;
}
.cmnPopup{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 110;
    width: 80rem;
    display: none;
    opacity: 0;
    transition:opacity 0.2s ease-out;
}
.cmnPopup.isShow{
    opacity: 1;
}
.cmnPopup .boxBorder{
    border: solid 0.5rem var(--textColor);
    border-radius: 1.5rem;
    overflow: hidden;
    background: #FFF;
}
.cmnPopup .popupClose{
    width: 3.9rem;
    height: 3.9rem;
    background-color: var(--textColor);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    border-radius: 0 1rem 0 1rem;
    font-size: 0;
    cursor: pointer;
}
.cmnPopup .popupClose::before,
.cmnPopup .popupClose::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.1rem;
    height: 1.5rem;
    background: #fff;
}
.cmnPopup .popupClose::before{
    transform: translate(-50%,-50%) rotate(45deg);
}
.cmnPopup .popupClose::after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
@media only screen and (max-width:1215px){
    .cmnPopup{
        width: 92%;
    }
}