.nd-modal-auth-capsule[data-status="new"] {
    display: none;
}
.nd-modal-auth-capsule[data-status="created"] {
    display: flex;
}
.nd-modal-auth-capsule {
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999 ;
}
.nd-modal-auth-capsule[data-status="password"] {
    background-color: rgba(255, 255, 255, 0.6); /* Полупрозрачный фон для лучшего эффекта */
    -webkit-backdrop-filter: blur(7px); /* Для Safari и старых версий Chrome/Edge */
    backdrop-filter: blur(7px); /* Стандартное объявление */
}
@supports not (backdrop-filter: blur(7px)) {
    .nd-modal-auth-capsule {
        /* position: relative; */
        overflow: hidden;
    }
    .nd-modal-auth-capsule::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.5); /* Аналог полупрозрачного фона */
        filter: blur(7px); /* Имитация размытия */
        z-index: -1;
      }
}

.nd-modal-auth-capsule[data-status="password"].nd-modal-auth-capsule--show,
.nd-modal-auth-capsule[data-status="new"].nd-modal-auth-capsule--show {
    display: flex;
}

.nd-modal-auth-capsule .inner {
    position: relative;
    display: flex;
    max-width: 800px;
    max-height: 531px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 8px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border-radius: 15px;
    box-shadow: 0px 67px 19px 0px rgba(0, 0, 0, 0.00),
                0px 43px 17px 0px rgba(0, 0, 0, 0.01),
                0px 24px 14px 0px rgba(0, 0, 0, 0.03),
                0px 11px 11px 0px rgba(0, 0, 0, 0.05),
                0px 3px 6px 0px rgba(0, 0, 0, 0.06);
}


.nd-auth-back-step {
    position: absolute;
    top: 0;
    left: 11px;

    display: flex;
    align-items: center;
    gap: 0px;

    color: var(--gray, #B7BDCE);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */

}
.nd-modal-auth-capsule i.nd-icon__close {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 1;
}
.nd-modal-auth-capsule i {
    display: inline;
    width: 32px;
    height: 32px;
    cursor: pointer
}
.nd-modal-auth-capsule i::before {
    background-color: #b7bdce;
}


.nd-modal-auth-capsule i:hover::before,
.nd-modal-auth-capsule i:hover:focus{
    background-color: #d1d2d5;
}



.nd-modal-auth-capsule .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.nd-modal-auth-capsule .close:hover,
.nd-modal-auth-capsule .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.nd-modal-auth-capsule .top-illustration, .nd-modal-auth-capsule .bottom-illustration {
    position: absolute;
    max-width: 100%;
    height: auto;
    width: max-content;
}
.nd-modal-auth-capsule .top-illustration {
    top: 50px;
    left: 0;
}
.nd-modal-auth-capsule .bottom-illustration {
    bottom: 50px;
    right: 0;
}

.nd-modal-auth-capsule .inner-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
    max-width: 391px;
    width: 100%;
    background-color: #eafaf6;
    border-radius: 8px;
    overflow: hidden;
}
.nd-modal-auth-capsule .inner-left .center-logo {
    width: 209px;
    height: 50px;
}
.nd-modal-auth-capsule .inner-right{
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    max-height: 531px;
    height: 100%;
    padding: 52px 35px 52px;
    background: #FFF;
}
.nd-modal-auth-capsule .inner[data-step_visible="5"] {
    padding-bottom: 0;
}

.nd-modal-auth-capsule .inner[data-step_visible="4"] .nd-auth-input-error{
    white-space: nowrap;
}

.nd-modal-auth-capsule .inner-right  h3 {
    color: var(--Black, #444);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    /* H4 reg */
    font-family: "Source Serif Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 125% */
    margin-bottom: 16px;
}
.nd-modal-auth-capsule .inner-right .nd-auth-step {
    display: none;
    flex-direction: column;
    height: 100%;
}
.nd-modal-auth-capsule .inner-right .nd-auth-step.nd-auth-step--active {
    display: flex;
}

.nd-modal-auth-capsule .inner-right .nd-auth-step > p {
    color: var(--Black, #444);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    z-index: 1;
}
.nd-modal-auth-capsule .inner-right .nd-auth-step .nd-auth-inputs {
    margin-top: 24px;
    margin-bottom: 24px;
    position: relative;
}
.nd-modal-auth-capsule .inner-right .nd-auth-step .nd-auth-button-next {
    margin-top: auto;
    text-align: center;
    justify-content: center;

}
.nd-modal-auth-capsule .inner-right .nd-auth-step[data-step="1"] .nd-auth-button-next {
    color: var(--white, #FFF);

}


.nd-auth-step[data-step="2"] strong{
    position: relative;
}
.nd-auth-step strong.line::after{
    position: absolute;
    content: "";
    background-image: url(/wp-content/plugins/nasledie-capsuleapi/public/content/img/registration/line.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;

    height: 10px;
    bottom: -9px;
    left: 0;
}

.nd-auth-step[data-step="2"] .nd-auth-inputs {
    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    margin-top: 46px !important;
}
/* .nd-auth-step[data-step="2"] .nd-auth-inputs .nd-input-wrap__without-label input{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 47px;
    padding: 14px 10px;
    border-radius: 8px;
    border: 1px solid rgba(183, 189, 206, 0.70);
    background: #FFF;
    text-align: center;

    color: var(--black, #444);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

} */
.nd-auth-step[data-step="2"] .nd-button-empty {
    color: var(--gray, #B7BDCE);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}

.nd-auth-step[data-step="3"] .nd-auth-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nd-auth-step[data-step="3"] .nd-auth-inputs .nd-auth-input__wrapp.nd-auth-input--error {
    margin-bottom: 16px;
}
.nd-auth-step[data-step="3"] .nd-auth-inputs .nd-auth-input-error {
    /* position: relative;
    top: 0;
    display: none; */
    /* margin-bottom: 16px; */
}








.nd-auth-error {
    margin-top: 8px;
    color: var(--red, #E24242);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Descriptor small */
    font-family: "Proxima Nova";
    font-size: 12px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 116.667% */
}



.code-count {
    margin-top: auto;
    margin-bottom: 16px;

    color: var(--Black, #444);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    /* Descriptor small */
    font-family: "Proxima Nova";
    font-size: 12px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 14px !important;
}


.check-list {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin-top: auto;
    margin-bottom: 16px;
}
.check-list .nd-check-wrap {
    display: flex;
    align-items: center;
}
.check-list .nd-check-wrap .nd-icon {
    flex: 0 0 auto;
}
.check-list .nd-check-wrap .nd-checkbox-label {
    color: var(--Black, #444);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Descriptor small */
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 116.667% */
}
.check-list .nd-check-wrap .nd-checkbox-label a {
    color: var(--green, #326E5B);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Descriptor small */
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}
.check-list .nd-check-wrap .nd-icon {
    width: 16px;
    height: 16px;
}
.nd-auth-button-start {
}

.nd-input-wrap__custom {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nd-input-wrap__custom span.domen {
    color: var(--Black, #444);
    /* button text */
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
strong.line {
    position: relative;
}
/* .nd-auth-input-false > div,
.nd-auth-input-done > div,
.nd-auth-input-empty > div {
    position: relative;
}
.nd-auth-input-false > div::before {
    background-image: url("/wp-content/plugins/nasledie-capsuleapi/public/content/img/registration/radiobtn-false.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    right: 15px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}
.nd-auth-input-done > div::before {
    background-image: url("/wp-content/plugins/nasledie-capsuleapi/public/content/img/registration/radiobtn-done.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    right: 15px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}
.nd-auth-input-empty > div::before {
    background-image: url("/wp-content/plugins/nasledie-capsuleapi/public/content/img/registration/radiobtn-empty.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    right: 15px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
} */


.nd-modal-auth-capsule .inner-right .nd-auth-step .progress_wrap ~ p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; /* 150% */
}
.progress_wrap {
    display: flex;
    flex-flow: row wrap;
    gap: 6px;
    align-items: center;
    border-radius: 40px;
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 36px;
}
.process_create {
    width: 100%;
    height: 30px;
    padding: 2px;
    border-radius: 100px;
    border: 1px solid #e2e2e2;
    background: rgba(255, 255, 255, 0.10);
}
.progress_words {
    color: #2AB78A;
    text-align: right;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: auto;
}
.progress_bar {
    border-radius: 100px !important;
    background: var(--Gradient, linear-gradient(86deg, #258E6D 0%, #28B78A 48.22%, #37BB91 92.42%));
    height: 100% !important;
    display: flex;
    align-items: center;
    position: relative;
}

.process_create .ui-widget.ui-widget-content {
    border-radius: 100px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
}


.process_create .ui-widget-header {
    border-radius: 100px;
    background: var(--Gradient, linear-gradient(86deg, #258E6D 0%, #28B78A 48.22%, #37BB91 92.42%));

    border: 1px solid #e2e2e2;
    position: relative;

}

.progress_persent {
    /* margin-right: 16px;
    margin-left: auto;
    font-weight: 600; */
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);

    color: #FFF;

    text-align: right;
    font-family: "Montserrat";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.nd-auth-step[data-step="4"] {
    /* position: relative; */
}

.nd-auth-step[data-step="4"] .recommendation {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--Black, #444);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
}
.nd-auth-step[data-step="4"] .recommendation .recommendation__title {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nd-auth-step[data-step="4"] .recommendation .recommendation__title i {
    width: 16px;
    height: 16px;
}



.nd-auth-step[data-step="5"] img,
[data-status="created"] .nd-auth-step[data-step="2"] > img{
    position: absolute;
    left: 50%;
    transform: translateX(-55%);
    bottom: 0;
    width: 100%;
    z-index: 0;
}


.h3-last-step {
    display: none;
}
.nd-auth-step {
    display: none;
}



[data-step_visible="1"] .nd-auth-back-step,
[data-step_visible="5"] .nd-auth-back-step {
    display: none;
}

[data-step_visible="5"] .h3-steps {
    display: none;
}
[data-step_visible="5"] .h3-last-step {
    display: block;
}


.nd-auth-info-repeat-code {
    display: none;
    padding: 12px 16px;
    align-items: flex-start;
    gap: 6px;
    border-radius: 16px;
    background: rgba(183, 189, 206, 0.08);
    margin-top: auto;
}
.nd-auth-info-repeat-code {
    color: var(--black, #444);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 15px */
}

.nd-auth-button-repeat-code {
    /* display: none; */
}
.nd-auth-button-new-code {
    display: none;
    justify-content: baseline;
    align-items: center;
}






.nd-auth-input__wrapp {
    position: relative;
}
.nd-auth-input__wrapp::before {
}


input[type="text"].nd-auth-input {
    display: flex;
    max-width: 320px;
    padding: 14px 10px;
    align-items: center;
    gap: 8px;

    border-radius: 8px;
    border: 1px solid rgba(183, 189, 206, 0.70);
    background: #FFF;


    color: var(--black, #444);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

input[type="text"].nd-auth-input::placeholder {
    color: var(--gray, #B7BDCE);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.nd-auth-input__wrapp.nd-auth-input--error input[type="text"].nd-auth-input{
    border: 1px solid #E24242;
    background: #FFF;
}
.nd-auth-input__wrapp.nd-auth-input--success input[type="text"].nd-auth-input {
    border: 1px solid #258E6D;
    background: #FFF;
}

.nd-auth-input__wrapp.nd-auth-input--error::before {
    background-image: url("/wp-content/plugins/nasledie-capsuleapi/public/content/img/registration/radiobtn-false.svg");
    position: absolute;
    content: "";
    right: 15px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
}

.nd-auth-input__wrapp.nd-auth-input--success::before {
    background-image: url("/wp-content/plugins/nasledie-capsuleapi/public/content/img/registration/radiobtn-done.svg");
    position: absolute;
    content: "";
    right: 15px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;

}
.nd-auth-input__wrapp.nd-auth-input--empty::before {
    background-image: url("/wp-content/plugins/nasledie-capsuleapi/public/content/img/registration/radiobtn-empty.svg");
    position: absolute;
    content: "";
    right: 15px;
    top:50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
}


.nd-auth-input-error {
    position: absolute;
    top: calc(100% + 4px);
    color: var(--red, #E24242);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    width: 100%;
    /* white-space: nowrap; */
}
[data-status="new"] .nd-auth-step[data-step="2"] .nd-auth-input__wrapp,
[data-status="created"] .nd-auth-step[data-step="2"] .nd-auth-input__wrapp {
    width: max-content;
    margin: 0 auto;
}

[data-status="new"] .nd-auth-step[data-step="2"] .nd-auth-input__wrapp input,
[data-status="created"] .nd-auth-step[data-step="2"] .nd-auth-input__wrapp input{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 47px;
    padding: 14px 10px;
    border-radius: 8px;
    border: 1px solid rgba(183, 189, 206, 0.70);
    background: #FFF;
    text-align: center;

    color: var(--black, #444);
    /* button text */
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}
[data-status="new"] .nd-auth-step[data-step="2"] .nd-auth-input__wrapp.nd-auth-input--success::before,
[data-status="created"] .nd-auth-step[data-step="2"] .nd-auth-input__wrapp.nd-auth-input--success::before {
    right: -25px;
}

.nd-auth-step .nd-auth-input__wrapp {

    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}


.offers-list {
    /* display: none; */
    margin-top: 15px;
}
.offers-list span {
    color: var(--green, #326E5B);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: pointer;
}

.auth-success-top {
    display: flex;
    padding: 16px 0px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    background: var(--grey-bg, #FAFAFA);
    margin-bottom: 24px;
}
[data-status="created"] .nd-auth-step[data-step="1"] .nd-auth-inputs {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 34px !important;
}

[data-status="created"] .nd-auth-step[data-step="1"] .nd-auth-inputs label{
    display: flex;

    flex: 1 0 auto;
    color: var(--Black, #444);
    font-feature-settings: 'liga' off, 'clig' off;

    padding-left: 25px;
    /* longread */
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}
[data-status="created"] .nd-auth-step[data-step="1"] .nd-auth-inputs .nd-radio-wrap {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    gap: 8px;
}
[data-status="created"] .nd-auth-step[data-step="1"] .nd-auth-inputs .nd-radio-wrap i {
    width: 18px;
    height: 18px;
}
[data-status="created"] .nd-auth-step[data-step="1"] .nd-auth-inputs .nd-radio-wrap svg {
    width: 16px;
    height: 16px;
}
[data-status="created"] .nd-auth-step[data-step="1"] input[name="code"] {
    display: flex;
    width: 37px;
    height: 47px;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(183, 189, 206, 0.70);
    background: #FFF;

    color: var(--black, #444);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;


}

[data-status="created"] .nd-auth-step[data-step="1"] .nd-auth-input__wrapp.password-code {
    display: none;
    margin-top: 24px;
    margin: 24px auto;
}

.help-data-tooltip {
    display: flex;
    align-items: center;
    justify-content: center;
}
.help-data-tooltip__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.help-data-tooltip__text {
    position: absolute;
    bottom: 30px;
    display: flex;
    max-width: 373px;
    width: max-content;
    padding: 12px 16px;

    overflow: hidden;
    opacity: 0;
    z-index: -1;
    background: #FFF;
    fill: #D9D9D9;
    filter: drop-shadow(0px 2px 12px rgba(0, 0, 0, 0.12));
    backdrop-filter: blur(7.5px);
    border-radius: 5px;

    color: var(--Black, #444);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */

}
.help-data-tooltip .help-data-tooltip__icon:hover ~ .help-data-tooltip__text {
    opacity: 1;
    overflow: unset;
    z-index: 1;
}

.help-data-tooltip__text svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    fill: #FFF;
}
.help-data-tooltip__text svg path {
    fill: #FFF;
}


.capsule-name {
    color: #F28912;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.nd-modal-auth-capsule[data-status="created"] .h3-steps {
    margin: 0;
}

.nd-modal-auth-capsule[data-status="created"] .h3-steps ~ p {

}


[data-status="created"] .nd-auth-telegram {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 1;

    border-radius: 16px;
    background: rgba(209, 239, 233, 0.20);
    padding: 16px 16px 0 16px;
}
[data-status="created"]  .nd-auth-telegram img{

    width: 110px;
    height: 110px;
}
[data-status="created"] .nd-auth-telegram a{
    color: var(--green, #326E5B);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Descriptor small */
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 116.667% */
    border-bottom: 1px dashed var(--green, #326E5B);
}

[data-status="created"] .h3-open,
[data-status="created"] .h3-close {
    display: none;
}



.auth-success-password {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;

    color: var(--green, #326E5B);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    /* H4 reg */
    font-family: "Source Serif Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 125% */
}
.auth-success-password h3.h3-steps {

    color: var(--green, #326E5B);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    /* H4 reg */
    font-family: "Source Serif Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 125% */
}

.show-password {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 35px;
    color: var(--green, #326E5B);
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.show-password-text {
    letter-spacing: 8px;
}
[data-status="created"] .nd-auth-step[data-step="3"] .nd-auth-telegram {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 320px;
    width: 100%;
}

[data-status="created"] .nd-auth-step[data-step="3"] .nd-auth-telegram p {
    color: var(--Black, #444);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 15px;
}

.nd-auth-back-step__mobile {
    display: none;
}


.nd-auth-step[data-step="1"] .nd-pesron-loading,
.nd-auth-step[data-step="3"] .nd-pesron-loading {
    color: #fff;
    justify-content: center;

}
.nd-auth-step[data-step="1"] .nd-pesron-loading svg,
.nd-auth-step[data-step="3"] .nd-pesron-loading svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    display: block;
    animation: rotation 1s infinite linear
}
.nd-auth-step[data-step="2"] .nd-pesron-loading  {

    justify-content: center;
    font-size: 11px;
}

.nd-auth-step[data-step="2"]  .nd-pesron-loading i {
    width: 16px;
    height: 16px;
    margin-right: 6px;

}

/* .nd-modal-auth-capsule .nd-pesron-loading i path:nth-child(1){
    fill: #fff;
}

.nd-modal-auth-capsule .nd-pesron-loading i path:nth-child(1){
    fill: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.60) 100%);

} */
.nd-modal-auth-capsule[data-status="password"] .inner-right h3 {
    max-width: 300px;
}
.nd-modal-auth-capsule[data-status="password"] p.recover-password {
    color: var(--green, #326E5B);
    font-feature-settings: 'liga' off, 'clig' off;
    /* longread */
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    border-bottom: 1px dashed var(--green, #326E5B);
    width: max-content;
    margin: 0 auto;
    cursor: pointer;
}
.nd-modal-auth-capsule[data-status="password"]  .inner-right .nd-auth-step  {
    height: auto;
}
.nd-modal-auth-capsule[data-status="password"]  .inner-right .nd-auth-step .send-capsule-password{
    margin-bottom: 16px;
}
.nd-modal-auth-capsule[data-status="password"] .inner-right {
    justify-content: center;
    padding: 52px 40px 52px;
}

.nd-modal-auth-capsule[data-status="password"] .inner-right .nd-auth-step .nd-auth-inputs {
    margin-bottom: 0;
}
.nd-modal-auth-capsule[data-status="password"] .inner-right .nd-auth-step .nd-auth-error {
    margin-bottom: 12px;

}
.nd-modal-auth-capsule[data-status="password"] .nd-auth-step .nd-auth-input__wrapp {
    width: 100%;
}

.nd-modal-auth-capsule[data-status="password"] .nd-auth-step[data-step="1"] .nd-auth-input__wrapp {
    justify-content: center;
}
.nd-modal-auth-capsule[data-status="password"] .nd-auth-step[data-step="1"] .nd-auth-input__wrapp input {
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 47px;
    padding: 14px 10px;
    border-radius: 8px;
    border: 1px solid rgba(183, 189, 206, 0.70);
    background: #FFF;
    text-align: center;
    color: var(--black, #444);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.nd-modal-auth-capsule[data-status="password"] [data-step_visible="1"] .nd-auth-back-step {
    display: none !important;
}
.nd-modal-auth-capsule[data-status="password"] .recommendation {
    margin-top: 35px;
    margin-bottom: 15px;


}
.nd-modal-auth-capsule[data-status="password"] .recommendation__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--Black, #444);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.nd-modal-auth-capsule[data-status="password"] .recommendation__text {
    color: var(--Black, #444);
    font-feature-settings: 'liga' off, 'clig' off;

    /* Descriptor small */
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 116.667% */
}
.nd-modal-auth-capsule[data-status="password"] .auth-success-password {
    color: var(--Black, #444);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}
.nd-modal-auth-capsule[data-status="password"] .auth-success-password .h3-steps {

    margin-bottom: 0;
}

@media (max-width: 650px) {
    .nd-modal-auth-capsule {
        position: fixed;
        justify-content: center;
        align-items: center;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 9999;
    }

    .nd-auth-back-step.nd-auth-back-step__mobile {
        display: flex ;
        z-index: 1;
        top: 8px;
        left: 8px;
        color: var(--black, #444);
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Proxima Nova";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px; /* 128.571% */
    }
    [data-step_visible="1"] .nd-auth-back-step.nd-auth-back-step__mobile,
    [data-step_visible="5"] .nd-auth-back-step.nd-auth-back-step__mobile {
        display: none;
    }

    .nd-modal-auth-capsule .inner {
        max-width: 100%;
        max-height: calc( 100svh - 20px );
        padding: 8px;
        flex-direction: column;
        margin-top: auto;
        border-radius: 15px 15px 0 0;
        justify-content: unset;
        overflow-y: auto;
    }


    .nd-modal-auth-capsule .inner-left {
        max-height: 120px;
        width: 100%;
        max-width: 100%;
    }
    .nd-modal-auth-capsule .top-illustration, .nd-modal-auth-capsule .bottom-illustration {
        height: auto;
    }

    .nd-modal-auth-capsule .top-illustration {
        top: 50px;
        left: 0;
        height: 40%;
        width: max-content;
    }
    .nd-modal-auth-capsule .bottom-illustration {
        bottom: 0%;
        right: 0;
        height: 90%;
        transform: rotate(-20deg);
        width: max-content;
    }

    .nd-modal-auth-capsule .inner-right {
        padding: 24px 18px 40px;
        max-height: 100%;
    }

    .nd-modal-auth-capsule .inner-right h3 {
        right: 15px;
        top: 15px;
        width: 100%;
    }
    input[type="text"].nd-auth-input {
        max-width: 100%;
    }

    .nd-modal-auth-capsule i::before {
        background-color: #444444;
    }
    .nd-auth-back-step:not(.nd-auth-back-step__mobile) {
        display: none;
    }
    .nd-auth-back-step.nd-auth-back-step__mobile {
        display: flex !important;
        z-index: 1;
        left: 15px;
        top: 15px;
    }

    .nd-auth-step[data-step="5"] img,
    [data-status="created"] .nd-auth-step[data-step="2"] > img{
        bottom: 0;
    }

    .nd-auth-telegram-qr {
        display: none;
    }

    .nd-modal-auth-capsule[data-status="password"] .inner-right .nd-auth-back-step {
        display: none !important;
    }
}