body.body-modal {
    overflow: hidden;
}
.popup-wrap {
    position: fixed;
    width: 100%;
    height:100%;
    top:0;
    left:0;
    background-color:rgba(0, 0, 0, 0.5);
    display:none;
    z-index: 997;
}
.popup-wrap.show-popup {
    display: flex;
}
.popup-wrap .notification {
    display: none;
}
.popup-wrap .show-popup {
    display: block;
}
.popup-wrap .auth-popup {
    width: 460px;
    margin: auto;
    background-color: white;
    padding: 24px;
    border-radius: 8px;
}
.popup-wrap .auth-popup .auth-popup__header {
    width: 100%;

    display: flex;
    justify-content: space-between;
    font-size: 28px;
    color: #181D27;
    margin-bottom: 24px;
}

.auth-popup__header-title {
    display:none;
}
.auth-popup__header-title.opened {
    display:block;
}

.popup-wrap .auth-popup .auth-popup__header .auth-popup__header-close {
    opacity: 0.3;
    transition-duration: 300ms
}
.popup-wrap .auth-popup .auth-popup__header .auth-popup__header-close:hover {
    opacity:1;
    cursor: pointer;
}
.popup-wrap .auth-popup form {
    display:none;
}
.popup-wrap .auth-popup form.opened {
    display:block;
}
.popup-wrap .auth-popup .auth-popup__body .form-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 4px 0;
}
.popup-wrap .auth-popup .auth-popup__body .form-row.row-2-btns {
    justify-content: space-between;
    align-items: baseline;
}
.popup-wrap .auth-popup .auth-popup__body .form-row.form-row_left_align {
    justify-content: left;
}
fieldset {
    display:none;
}
fieldset.opened {
    display:block;
}
.success-message {
    font-size:16px;
}
.success-message div {
    display:inline-block;
}
.success-message svg {
    vertical-align: top;
}
.popup-wrap .auth-popup .auth-popup__body label {
    font-size: 12px;
    color: #888888;
    width: 100%;
}
.popup-wrap .auth-popup .auth-popup__body label input {
    border: 1px solid #888888;
    border-radius: 8px;
    height: 40px;
    background-color: white;
    padding-left: 8px;
    font-size: 14px;
}
.popup-wrap .auth-popup .auth-popup__body label input:focus,
.popup-wrap .auth-popup .auth-popup__body label input:focus-visible {
    border-color: #323232;
    outline-width: 0;
}
.popup-wrap .auth-popup .auth-popup__body label input:disabled,
.popup-wrap .auth-popup .auth-popup__body label input:read-only {
    background-color: #f7f7f7;
}
.popup-wrap .auth-popup .auth-popup__body .subtitle {
    font-size:20px;
    line-height:26px;
    color: #181D27;
    margin-top: 18px;
    margin-bottom: 18px;
}
.btn-popup {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    background: linear-gradient(24deg, rgba(255,107,0,1) 0%, rgba(254,185,7,1) 87%);

    white-space: nowrap;
    min-width: 140px;
    border-radius: 10px;
    user-select: none;
    margin-top: 12px;
    padding: 12px 24px;
}
.btn-popup:hover {
    background:white;
    color: #feb907;
    border: 3px solid #feb907;
    cursor:pointer;
}
.btn-popup.white-btn {
    background:white;
    color: #feb907;
    border: 3px solid #feb907;
    cursor: pointer;
    margin: unset;
}
.btn-popup.white-btn:hover {
    color: #fff;
    background: linear-gradient(24deg, rgba(255,107,0,1) 0%, rgba(254,185,7,1) 87%);
}
.btn-go-back {
    color:#feb907;
    font-size: 14px;
    margin-top: 24px;
}
.btn-go-back:hover {
    cursor:pointer;
    text-decoration: underline;
}

.red {
    color: #bd0000;
}
.green {
    color:green;
}
.popup-wrap .auth-popup .auth-popup__body label input.red-border {
    border-color: #bd0000;
}
.popup-wrap .auth-popup .auth-popup__body label input.green-border {
    border-color: #00cf00;
}
.popup-wrap .auth-popup .auth-popup__body label input.phone4show {
    border-color: #00cf00;
}
.confirm-code_label,
.password-label {
    position: relative;
}
.password-eye {
    position: absolute;
    top: 37px;
    right: 11px;
    opacity: 0.7;
}
.password-eye.open {

    right: 12px;
    top: 35px;
}
.notifications-block {
    position: absolute;
    top: 30px;
    right: 10px;
}
.notifications-block__text,
.notifications-block__btn,
.notifications-block__success {
    display: none;
}
.notifications-block__text.show-popup,
.notifications-block__btn.show-popup {
    display: block;
}
.notifications-block__btn {
    color: #feb907;
}
.notifications-block__btn:hover {
    cursor:pointer;
    text-decoration: underline;
}
.notifications-block__success.show-popup {
    display: flex;
    color: #07c907;
}
.password-label .notification {
    display:none;
    /*font-size: 11px;*/
}
.password-label .notification.show {
    display:block;
}
.password-label .notification.show-popup {
    display:block;
}
.password-eye .eye-closed {
    width: 15px;
}
.password-eye .eye-opened {
    width: 16px;
}
.password-eye.open .eye-opened,
.password-eye .eye-closed {
    display:none;
}
.password-eye .eye-opened,
.password-eye.open .eye-closed {
    display:block;
}
input[type="password"]::-ms-reveal {
    display: none;
}
.popup-wrap .redirect-notify {
    margin: 20px 0;
}