.blur {
    -webkit-backdrop-filter: blur(.3rem);
    backdrop-filter: blur(.3rem);
    background: rgba(12, 11, 14, .3);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity .3s ease, visibility 0s ease .3s;
    visibility: hidden;
    width: 100%;
    z-index: 998
}

.show-blur {
    opacity: 1;
    visibility: visible
}

.popup {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .2);
    left: 50%;
    max-height: 100%;
    max-width: 45rem;
    overflow-y: auto;
    position: fixed;
    top: -100%;
    transform: translate(-50%, -50%);
    transition: top .5s ease;
    width: 100%;
    z-index: 1000
}

.popup__title {
    color: #004a99;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center
}

.popup__wrapper {
    padding: 4rem 2rem 2rem
}

.popup__content {
    border: .2rem dashed #f2f2fa;
    border-radius: .5rem;
    padding: 2rem 1rem
}

.popup__close-button {
    align-items: center;
    background-color: #c04b1e;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 2rem;
    justify-content: center;
    padding: 1rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: transform .3s ease-in-out;
    width: 2rem
}

.popup__close-button:hover {
    transform: rotate(-90deg)
}

.show-popup {
    top: 50%
}
