.popup-wrap.active {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7;
}

.popup-wrap:not(.active) {
    display: none;
}

.popup_block {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    padding: 30px;
    background: #fff;
}

.popup_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.popup_header .title {
    font-size: 24px;
    margin-bottom: unset;
}

.popup_header svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
}