.popup-container {
    width: 100%;
    height: 100%;
    z-index: 2002;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-container:before {
    content: "<div></div>";
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: black;
    opacity: 0.5;
}

.popup-wrap {
    position: relative;
    left: 0;
    top: 0;
}

.help-popup {
    padding: 20px;
}

.popup-white {
    z-index: 99;
    position: relative;
    background-color: white;
    font-size: 14px;
    color: #4d4e56;
    width: 540px;
    border-radius: 4px;
}

.popup-white div.title {
    padding: 25px 30px 0 30px;
    font-size: 24px;
    font-weight: 600;
}

.popup-white .content {
    padding: 25px 30px;
}

.popup-wrap .popup-close,
.popup-white .popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.popup-wrap .popup-close img {
    width: 30px;
    height: 30px;
}

.popup-wrap.xs {
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 0;
    background-color: white;
    overflow-y: scroll;
    overflow-x: hidden;
}

@media (max-width: 767px) {

    .popup-container:before {
        display: none;
    }

    .popup-wrap,
    .popup-white {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        border-radius: 0;
        background-color: white;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .popup-white .content {
        padding: 25px 30px 25px 25px;
    }
}