.popup__wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px;

    background: rgb(0 0 0 / 60%);
    backdrop-filter: blur(10px);
}

.popup {
    position: relative;
    z-index: 160;

    margin: auto;
    max-width: 340px;
    border-radius: 12px;
    padding: 24px;

    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.4);
    background: var(--white);
}

.popup__title {
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
}

.popup__text {
    text-align: center;
}

@media (min-width: 450px) {
    .popup {
        max-width: 420px;
    }
}
@media (min-width: 1200px) {
    .popup {
        max-width: 520px;
    }
}
