.ns-order-modals :where(h1, h2, h3, h4, h5, h6, p, img, ul, li, dl, dt, dd) {
    margin: 0;
    padding: 0;
}

/* MODAL */
.ns-order-modals {
    --ns-order-modals-padding-x: 40px;
    --ns-order-modals-padding-top: 36px;
    --ns-order-modals-padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(58,63,68, .7);
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    inset: 0;
    z-index: 30;
    padding: calc(var(--ns-header-height, 0) + 48px) 0 48px;
    transition-property: opacity;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    box-sizing: border-box;
}

.ns-order-modals.ns-order-modals--opened {
    opacity: 1;
    pointer-events: auto;
}

.ns-order-modals__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    width: 603px;
    min-height: 500px;
    max-height: calc(100% - 160px);
    background-color: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #EBEDF1;
    color: #1F2023;
    padding: var(--ns-order-modals-padding-top) 0 0;
    overflow: hidden;
    box-shadow: 0 10px 10px -5px rgba(0,0,0, .04);
    position: relative;
    box-sizing: border-box;
    margin-bottom: var(--ns-modal-offset-bottom, 0);
    box-sizing: border-box;
}

.ns-order-modals__close {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3E%3Cpath stroke='%236A6F75' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m15 25 10-10m-10 0 10 10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 1;
    cursor: pointer;
}

.ns-order-modals__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 32px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.ns-order-modals__content-head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    padding: 0 var(--ns-order-modals-padding-x);
    box-sizing: border-box;
}

.ns-order-modals__content-head-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.19;
}

.ns-order-modals__content-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    height: 100%;
    overflow: hidden auto;
    padding: 0 var(--ns-order-modals-padding-x) var(--ns-order-modals-padding-bottom);
    box-sizing: border-box;
}

.ns-order-modals__content-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    height: 100%;
}

.ns-order-modals__content-step:not(.ns-order-modals__content-step--selected) {
    display: none !important;
}

.ns-order-modals__content-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% + var(--ns-order-modals-padding-x) * 2);
    gap: 12px;
    background-color: #fff;
    border-top: 2px solid #ebedf1;
    padding: 24px var(--ns-order-modals-padding-x);
    margin: auto calc(var(--ns-order-modals-padding-x) * -1) calc(var(--ns-order-modals-padding-bottom) * -1);
    position: sticky;
    bottom: calc(var(--ns-order-modals-padding-bottom) * -1);
    box-sizing: border-box;
    z-index: 1;
}

.ns-order-modals__content-footer--column {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

/* TABS */
.ns-order-modals__tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 4px;
    border-radius: 14px;
    background-color: #eeeff1;
    padding: 4px;
    box-sizing: border-box;
}

.ns-order-modals__tabs-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    border-radius: 12px;
    position: relative;
    padding: 0 24px;
    position: relative;
    box-sizing: border-box;
    user-select: none;
    cursor: pointer;
}

.ns-order-modals__tabs-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ns-order-modals__tabs-item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.ns-order-modals__tabs-item-extra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: auto;
    height: 22px;
    border-radius: 6px;
    border: 1px solid #ebedf1;
    background-color: #fff;
    font-weight: 500;
    font-size: 11px;
    line-height: 164%;
    text-align: center;
    color: #9299a5;
    padding: 0 6px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.ns-order-modals__tabs-item-extra svg {
    display: block;
    width: 16px;
    height: 16px;
}

.ns-order-modals__tabs-item.ns-order-modals__tabs-item--selected {
    background-color: #fff;
}

.ns-order-modals__tabs-item.ns-order-modals__tabs-item--selected .ns-order-modals__tabs-item-extra {
    background-color: #51b515;
    border-color: transparent;
    color: #fff;
}

/* ADDRESS */
.ns-order-modals__addresses {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
}

.ns-order-modals__addresses-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
}

.ns-order-modals__addresses-item--border {
    border: 2px solid #ebedf1;
}

.ns-order-modals__addresses-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

/* ADDRESS ITEM CHECKBOX */
.ns-order-modals__addresses-info-checkbox {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d2d6dc;
    box-sizing: border-box;
    margin-top: 3px;
    margin-right: 8px;
}

.ns-order-modals__addresses-info-checkbox::before {
    content: '';
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d2d6dc;
}

/* ADDRESS ITEM TEXT */
.ns-order-modals__addresses-info-text,
.ns-order-modals__addresses-info-title {
    width: 100%;
}

.ns-order-modals__addresses-info-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 4px;
}

.ns-order-modals__addresses-info-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.75;
    color: #1f2023;
}

.ns-order-modals__addresses-info-description {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    color: #9299a5;
}

/* ADDRESS ITEM PRICE */
.ns-order-modals__addresses-info-price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 57px;
    height: 26px;
    border-radius: 50px;
    background-color: #f6f7f9;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #000;
    padding: 0 8px;
    white-space: nowrap;
    box-sizing: border-box;
}

/* ADDRESS ITEM ACTIONS */
.ns-order-modals__addresses-info-actions {
    flex-shrink: 0;
    display: block;
    user-select: none;
    position: relative;
}

.ns-order-modals__addresses-info-actions-toggle {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%239299a5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: background-color .2s ease;
    cursor: pointer;
}

.ns-order-modals__addresses-info-actions-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 120px;
    border-radius: 12px;
    background-color: #fff;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.45;
    color: #5a616c;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 8px 0;
    box-shadow: 0 4px 12px 0 rgba(0,0,0, .08);
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 999;
}

.ns-order-modals__addresses-info-actions-item {
    display: block;
    width: 100%;
    padding: 6px 16px;
    box-sizing: border-box;
    cursor: pointer;
}

.ns-order-modals__addresses-info-actions--opened .ns-order-modals__addresses-info-actions-list {
    opacity: 1;
    pointer-events: all;
    transform: translateY(16px);
}

/* ADDRESS EDIT */
.ns-order-modals__addresses-edit {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
}

/* ADDRESS EDIT GRID */
.ns-order-modals__addresses-edit-select.ns-order-modals__addresses-edit-select--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.ns-order-modals__addresses-edit-select.ns-order-modals__addresses-edit-select--grid .ns-order-modals__addresses-edit-select-item.ns-order-modals__addresses-edit-select-item--calendar {
    grid-column: span 2;
}

/* ADDRESS EDIT SELECT */
.ns-order-modals__addresses-edit-select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.ns-order-modals__addresses-edit-select-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: auto !important;
    height: 44px;
    border-radius: 10px;
    border: 2px solid transparent;
    background-color: #f6f7f9;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    color: #5a616c;
    white-space: nowrap;
    padding: 0 16px;
    box-sizing: border-box;
    transition: 
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease;
    cursor: pointer;
}

.ns-order-modals__addresses-edit-select-item > span {
    color: #9299a5;
}

.ns-order-modals__addresses-edit-select-item--calendar::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%235a616c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6.667 5.833V2.5m6.666 3.333V2.5m-7.5 6.667h8.334m-10 8.333h11.666c.92 0 1.667-.746 1.667-1.667v-10c0-.92-.746-1.666-1.667-1.666H4.167c-.92 0-1.667.746-1.667 1.666v10c0 .92.746 1.667 1.667 1.667'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.ns-order-modals__addresses-edit-select-item:not(.ns-order-modals__addresses-edit-select-item--selected):hover {
    background-color: #eeeff1;
}

.ns-order-modals__addresses-edit-select-item.ns-order-modals__addresses-edit-select-item--selected {
    background-color: #fff;
    border-color: #1f2023;
    font-weight: 600;
    color: #1f2023;
}

.ns-order-modals__addresses-edit-select-button {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none' viewBox='0 0 36 36'%3E%3Cpath stroke='%238a8a8a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.334 23.334 20.667 18l-5.333-5.333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    box-shadow: 0 0 12px 0 rgba(0,0,0, .08);
    position: absolute;
    top: 50%;
    transition: 
        background-color .2s ease,
        opacity .2s ease;
    cursor: pointer;
    z-index: 10;
}

.ns-order-modals__addresses-edit-select-button.ns-order-modals__addresses-edit-select-button--prev {
    left: 0;
    transform: translate(-50%, -50%) scaleX(-1);
}

.ns-order-modals__addresses-edit-select-button.ns-order-modals__addresses-edit-select-button--next {
    right: 0;
    transform: translate(50%, -50%);
}

.ns-order-modals__addresses-edit-select-button.ns-basket-item__additional-slider-button--disabled {
    opacity: 0;
    pointer-events: none;
}

.ns-order-modals__addresses-edit-select-button:hover {
    background-color: #eaecf0;
}

.ns-order-modals__addresses-edit-select:has(.swiper) {
    position: relative;
}

.ns-order-modals__addresses-edit-select:has(.swiper) .swiper {
    display: block;
    width: 100%;
}

.ns-order-modals__addresses-edit-select-button--disabled {
    opacity: 0;
    pointer-events: none;
}

/* ADDRESS ITEM HOVER */
.ns-order-modals__addresses-info-actions-toggle:hover {
    background-color: #f6f7f9;
}

.ns-order-modals__addresses-item:not(.ns-order-modals__addresses-item--selected) {
    transition: background-color .2s ease;
    cursor: pointer;
}

.ns-order-modals__addresses-item:not(.ns-order-modals__addresses-item--selected):hover {
    background-color: #f6f7f9;
}

.ns-order-modals__addresses-item:not(.ns-order-modals__addresses-item--selected):hover .ns-order-modals__addresses-info-checkbox::before {
    display: block;
}
    

.ns-order-modals__addresses-item:not(.ns-order-modals__addresses-item--selected) .ns-order-modals__addresses-edit {
    display: none;
}

/* ADDRESS ITEM SELECTED */
.ns-order-modals__addresses-item.ns-order-modals__addresses-item--selected .ns-order-modals__addresses-info-checkbox {
    border-width: 5px;
    border-color: #f02d39;
}

/* CHECKBOX */
.ns-order-modals__checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.ns-order-modals__checkbox input {
    display: none;
}

.ns-order-modals__checkbox-switch {
    flex-shrink: 0;
    display: block;
    width: 36px;
    height: 20px;
    border-radius: 99px;
    background-color: #c3c7cb;
    position: relative;
    transition: background-color .3s ease;
    cursor: pointer;
}

.ns-order-modals__checkbox-switch::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: left .3s ease;
}

.ns-order-modals__checkbox input:checked + .ns-order-modals__checkbox-switch {
    background-color: #e00e1a;
}

.ns-order-modals__checkbox input:checked + .ns-order-modals__checkbox-switch::before {
    left: calc(100% - 16px - 2px);
}

.ns-order-modals__checkbox-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
}

.ns-order-modals__checkbox-label > span {
    color: #9299a5;
}

.ns-order-modals__checkbox-label > img {
    display: inline-block;
    width: auto;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin: 0;
}

/* BUTTONS */
.ns-order-modals__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    gap: 8px;
    background-color: #e00e1a;
    border-radius: 13px;
    font: inherit;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    padding: 0 24px;
    transition: background-color .2s ease, color .2s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.ns-order-modals__button:hover {
    background-color: #f01622;
}

.ns-order-modals__button.ns-order-modals__button--secondary {
    background-color: #ffe7e7;
    color: #e00e1a;
}

.ns-order-modals__button.ns-order-modals__button--secondary:hover {
    background-color: #ffd9d9;
    color: #e00e1a;
}

.ns-order-modals__button.ns-order-modals__button--disabled {
    background-color: #f3f4f6;
    color: #1f2023;
    cursor: not-allowed;
}

.ns-order-modals__input-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
}

/* INPUT */
.ns-order-modals__input {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    position: relative;
}

.ns-order-modals__input-label {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #5a616c;
}

.ns-order-modals__input input {
    display: block;
    width: 100%;
    height: 52px;
    border-radius: 10px;
    border: 2px solid #ebedf1;
    background-color: #fff;
    font: inherit;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #1f2023;
    padding: 0 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease, color .2s ease;
}

.ns-order-modals__input input::placeholder {
    color: #9299a5;
    opacity: 1;
}

.ns-order-modals__input input:hover {
    border-color: #d2d6dc;
}

.ns-order-modals__input input:focus {
    border-color: #111827;
}

.ns-order-modals__input-error {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #e00e1a;
}

/* SELECT */
.ns-order-modals__select {
    display: block;
    position: relative;
}

.ns-order-modals__select-field {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.ns-order-modals__select-input {
    display: block;
    border-radius: 10px;
    padding: 0 16px;
    width: 100%;
    height: 52px;
    border: none;
    background-color: #f6f7f9;
    font: inherit;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #1f2023;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
    cursor: pointer;
}

.ns-order-modals__select-arrow {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%239299a5' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px;
    position: absolute;
    right: 16px;
    z-index: 1;
    transition: transform .2s ease;
}

.ns-order-modals__select-input:hover {
    background-color: #eaecf0;
}

.ns-order-modals__select-input:focus,
.ns-order-modals__select--dropped .ns-order-modals__select-input {
    background-color: #eaecf0;
}

.ns-order-modals__select-drop {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    border: 1px solid #ebedf1;
    background-color: #fff;
    border-radius: 10px;
    padding: 8px 0px;
    overflow: hidden auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    opacity: 0;
    transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease;
    box-sizing: border-box;
    pointer-events: none;
}

.ns-order-modals__select-drop-item {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2023;
    padding: 9px 16px;
    box-sizing: border-box;
    transition: background-color .2s ease;
    cursor: pointer;
    user-select: none;
}

.ns-order-modals__select-drop-item:hover {
    background-color: #f6f7f9;
}

.ns-order-modals__select-drop-item.ns-order-modals__select-drop-item--selected {
    background-color: #f6f7f9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%239299a5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px top 8px;
    background-size: 24px;
    padding-right: 48px;
    cursor: default;
}

.ns-order-modals__select--dropped .ns-order-modals__select-drop {
    opacity: 1;
    transform: translateY(8px);
    pointer-events: all;
}

.ns-order-modals__select--dropped .ns-order-modals__select-arrow {
    transform: rotate(180deg);
}

/* FORM */
.ns-order-modals__form-variant {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
}

.ns-order-modals__form-variant:not(.ns-order-modals__form-variant--selected) {
    display: none !important;
}

.ns-order-modals__form-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.14;
    color: #1f2023;
}

/* INPUT GRID */
.ns-order-modals__input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ns-order-modals__input-grid.ns-order-modals__input-grid--card .ns-order-modals__input:nth-child(1),
.ns-order-modals__input-grid.ns-order-modals__input-grid--card .ns-order-modals__input:nth-child(2) {
    grid-column: span 2;
}

.ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(1),
.ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(8) {
    grid-column: span 2;
}

/* SUPPORT CARD */
.ns-order-modals__support-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

.ns-order-modals__support-card img {
    display: block;
    width: auto;
    height: 35px;
    object-fit: contain;
}

/* ADAPTIVE */

@media (max-width: 991px) {
    /* MODAL */

    .ns-order-modals {
        --ns-order-modals-padding-x: 24px;
        --ns-order-modals-padding-top: 32px;
        --ns-order-modals-padding-bottom: 24px;

        padding: 0;
        align-items: flex-end;
        z-index: 9999;
    }

    .ns-order-modals__inner {
        width: 100%;
        border-radius: 16px 16px 0 0;
        gap: 10px;
        transform: translateY(100%);
        transition: transform 0.6s ease;
        overflow: hidden auto;
    }

    .ns-order-modals--opened .ns-order-modals__inner {
        transform: translateY(0);
    }

    .ns-order-modals__close {
        width: 56px;
        height: 4px;
        background-color: #E0E0E0;
        background-image: none;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
    }

    .ns-order-modals__close::before {
        content: "";
        display: block;
        width: 150%;
        height: 40px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* CONTENT */
    .ns-order-modals__content {
        gap: 32px;
    }

    .ns-order-modals__step-head {
        gap: 16px;
    }

    .ns-order-modals__step-head-title {
        font-size: 24px;
        line-height: 1.57;
    }

    .ns-order-modals__content-footer {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 12px;
    }

    /* TABS */
    .ns-order-modals__tabs {
        gap: 8px;
        border-radius: 14px;
    }

    .ns-order-modals__tabs-item {
        min-height: 40px;
        border-radius: 12px;
        padding: 8px 16px;
    }

    .ns-order-modals__tabs-item-title {
        font-size: 12px;
    }

    .ns-order-modals__tabs-item-extra {
        font-size: 9px;
    }

    .ns-order-modals__tabs-item-extra > svg {
        width: 16px;
        height: 16px;
    }

    /* INPUT */
    .ns-order-modals__input input {
        font-size: 14px;
    }

    .ns-order-modals__input-label,
    .ns-order-modals__input-error {
        font-size: 12px;
    }

    /* BUTTON */
    .ns-order-modals__button {
        border-radius: 12px;
        height: 48px;
        font-size: 16px;
    }

    /* ADDRESS EDIT GRID MOBILE */
    .ns-order-modals__addresses-edit-select.ns-order-modals__addresses-edit-select--grid-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ns-order-modals__addresses-edit-select.ns-order-modals__addresses-edit-select--grid-mobile .ns-order-modals__addresses-edit-select-item.ns-order-modals__addresses-edit-select-item--calendar {
        grid-column: span 2;
    }

    /* INPUT GRID */
    .ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(1),
    .ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(2),
    .ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(3),
    .ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(6),
    .ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(7),
    .ns-order-modals__input-grid.ns-order-modals__input-grid--account .ns-order-modals__input:nth-child(8) {
        grid-column: span 2;
    }
}