
/*popup*/


.popup-wr {
    overflow: auto;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
}

.popup-wr .popup {
    position: relative;
    max-width: 800px;
    min-height: 100px;
    max-height: 533px;
    margin: 100px auto 25px;
    text-align: center;
}
.popup-wr .popup-close {
    cursor: pointer;
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 22px;
    line-height: 25px;
    color: #a3a3a3;
    z-index: 100;
    border-radius: 20px;
    width: 25px;
    height: 25px;
    display: block;
    text-align: center;
    padding-left: 1px;
}
.popup-wr .popup-close:hover{
    background-color: rgba(255, 255, 255, 0.8);
}
.popup-wr .popup .popup__content, .popup-wr .popup .popup__content a {
    display: inline-block;
    position: relative;
}
@media (max-width: 820px) {

    .popup-wr .popup {
        width: calc(100% - 30px);
    }
}

@media (max-width: 767px) {
    .popup-wr .popup {
        width: calc(100% - 40px);
        min-height: auto;
        margin-top: 120px;
        padding: 40px 0 0;
        border-width: 3px;
    }
}
