.popup-show body::after {
    opacity: 1;
    pointer-events: auto;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 16px;
    -webkit-transition: visibility 0.8s ease 0s;
    -o-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
    opacity: 1;
}

.popup_show .popup__content {
    visibility: visible;
    opacity: 1;
}

.popup__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__content {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
    width: 100%;
    max-width: 630px;
    border-radius: 20px;
}

.lock .popup__content {
    visibility: visible;
}

.popup__close {
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    color: #8b8b8b;
}

.popup__close img,
.popup__close svg {
    width: 100%;
    height: 100%;
}

.white-content .popup__close {
    position: fixed;
    top: 60px;
    right: 60px;
    width: 60px;
    height: 60px;
}

.white-content:before {
    content: "";
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}

.popup__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 80px;
    text-align: center;
}

.popup__body {
    border-radius: 44px;
    border: 2px solid #eee;
    padding: 58px;
}

.popup__form-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.popup__form-title span {
    display: inline-block;
}

._double-stroke {
    line-height: 36px;
}

.popup__form-wrapper {
    margin-top: 40px;
}

.popup__submit {
    width: 100%;
    margin-top: 60px;
}

.popup__submit._red {
    background-color: #ff3243;
    color: #fff;
}

.popup__submit._purple {
    color: #fff;
    background-color: #721a82;
}

.popup__submit._purple:hover {
    background-color: #4f115a;
}

.popup__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.popup__controls-title {
    color: #8b8b8b;
    font-size: 16px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: color 0.2s ease-out 0s;
    -o-transition: color 0.2s ease-out 0s;
    transition: color 0.2s ease-out 0s;
}

.popup__controls-title img,
.popup__controls-title svg {
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

.fixed-law-info {
    opacity: 0;
    position: fixed;
    width: 100%;
    z-index: 50;
    bottom: 84px;
    right: 20px;
    background-color: #fff;
    width: 480px;
    padding: 40px;
    -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06), 0px 8px 16px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06), 0px 8px 16px rgba(0, 0, 0, 0.06);
    border-radius: 44px;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

.fixed-law-info.show {
    opacity: 1;
    pointer-events: auto;
}

.fixed-law-info__text {
    color: #595959;
    font-size: 16px;
    line-height: 24px;
}

.fixed-law-info__text strong {
    font-weight: 700;
    color: #000;
}

.fixed-law-info__btn {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 157px;
    height: 52px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    background-color: #ffce1a;
    border-radius: 26px;
    cursor: pointer;
    -webkit-transition: color 0.2s ease-out, background 0.2s ease-out;
    -o-transition: color 0.2s ease-out, background 0.2s ease-out;
    transition: color 0.2s ease-out, background 0.2s ease-out;
}

@media (max-width: 767px) {
    .fixed-law-info {
        bottom: 72px;
        right: 16px;
        width: calc(100% - 32px);
        border-radius: 24px;
        padding: 20px;
    }

    .fixed-law-info__text {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
    }

    .fixed-law-info__btn {
        margin-left: auto;
        margin-right: auto;
        margin-top: 16px;
        width: 112px;
        height: 36px;
        font-size: 12px;
        line-height: 12px;
    }
}

@media (any-hover: hover) {
    .fixed-law-info__btn:hover {
        background-color: #000;
        color: #fff;
    }
}

.loading-btn-yellow {
    position: relative;
    background: transparent !important;
    cursor: default !important;
    color: transparent !important;
    pointer-events: none;
}

.loading-btn-yellow * {
    opacity: 0 !important;
    visibility: hidden !important;
}

.loading-btn-yellow:before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    z-index: 2;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    background-image: url("../img/icons/preloader-yelow.b4dba1f60384.svg");
    background-position: center;
    background-size: contain;
    -webkit-animation: around 1s linear infinite;
    animation: around 1s linear infinite;
}