.ui-popup {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.ui-popup.active {
    display: flex;
}

.ui-popup__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 25px;
    max-width: 602px;
    width: 100%;
    margin: 0 10px;
    position: relative;
    background: #FFFFFF;
    border: 2px solid rgba(43, 62, 66, 0.15);
    border-radius: 30px;
    padding: 40px;
}

.ui-popup__close {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 20px;
    height: 20px;
}

.ui-popup__close::after,
.ui-popup__close::before {
    position: absolute;
    top: 10px;
    content: "";
    width: 20px;
    height: 2px;
    background: #000000;
    border-radius: 2px;
}

.ui-popup__close::after {
    transform: rotate(45deg);
}

.ui-popup__close::before {
    transform: rotate(-45deg);
}

.ui-popup__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;

    color: #000000;
}

.ui-popup__illustration {
    max-width: 140px;
    max-height: 140px;
    border-radius: 50%;
}

@media (max-width: 750px) {
    .ui-popup__body {
        flex-direction: column;
        row-gap: 10px;
        padding: 20px;
    }

    .ui-popup__title {
        text-align: center;
    }

    .ui-popup__title br {
        display: none;
    }
}