.exit-popup-cover {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 10000;
    cursor: pointer
}

.exit-popup {
    display: none
}

.exit-popup .exit-bnr {
    position: fixed;
    width: 90%;
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10001
}

.exit-popup .exit-bnr .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -35px;
    right: 0;
    cursor: pointer
}

.exit-popup .exit-bnr .close:before,
.exit-popup .exit-bnr .close::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 30px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.exit-popup .exit-bnr .close::before {
    transform: rotate(45deg)
}

.exit-popup .exit-bnr .close::after {
    transform: rotate(-45deg)
}

.exit-popup .exit-bnr .content {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
}

.exit-popup .exit-bnr .content img {
    width: 100%
}

.exit-popup .exit-bnr .content .btn-area {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    align-items: center;
    padding: 15px 0 25px
}

.exit-popup .exit-bnr .content .btn-area p {
    position: relative;
    color: #f23071;
    margin: auto;
    font-size: 3.5vw;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: center
}

.exit-popup .exit-bnr .content .btn-area p::before,
.exit-popup .exit-bnr .content .btn-area p::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #f23071;
    bottom: 0
}

.exit-popup .exit-bnr .content .btn-area p::before {
    transform: rotate(30deg);
    right: -3vw
}

.exit-popup .exit-bnr .content .btn-area p::after {
    transform: rotate(-30deg);
    left: -3vw
}

.exit-popup .exit-bnr .content .btn-area .btn {
    position: relative;
    background-color: #f23071;
    color: #fff;
    border-radius: 8px;
    width: 90%;
    text-align: center;
    font-size: 4vw;
    padding: 4vw 0;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 4px 0 #b22455
}

.exit-popup .exit-bnr .content .btn-area .btn .arrow {
    position: absolute;
    width: 4vw;
    height: 4vw;
    background-color: #fff;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto
}

.exit-popup .exit-bnr .content .btn-area .btn .arrow::after {
    position: absolute;
    content: "";
    width: 1vw;
    height: 1vw;
    border-top: 2px solid #f23071;
    border-right: 2px solid #f23071;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    left: 1.3vw;
    margin: auto
}