.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.76);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease,visibility .2s ease
}

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

.popup.--show .popup__content {
    transform: scale(1)
}

.popup__container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 20px
}

.popup__content {
    position: relative;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    min-height: 280px;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    color: #000;
    transform: scale(.7);
    transition: transform .2s ease
}

.popup__cross {
    position: absolute;
    right: 23px;
    top: 23px;
    background: 0 0;
    outline: 0;
    border: 0;
    font-size: 20px
}

.popup__title {
    margin-bottom: 8px;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.24;
    text-align: center
}

.popup__subtitle {
    max-width: 840px;
    width: 100%;
    margin: 0 auto 28px;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.24;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #8a8a8a
}

.popup__text {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.24;
    text-align: center
}

.popup__link {
    max-width: 307px;
    width: 100%;
    margin: 0 auto;
    border-radius: 9px;
    padding: 10px 20px;
    height: 74px;
    background: #004ebc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    border: 1px solid #004ebc;
    transition: .3s ease
}

.popup__link:hover {
    color: #004ebc;
    background: #fff
}
