

/* Start:/personal/profile_new/style.css?178697666536902*/
.profile-new,
.profile-new * {
    box-sizing: border-box;
}

.profile-new {
    width: 100%;
    font-family: Montserrat, Arial, sans-serif;
}

.profile-new__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

.profile-new-card {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: 9px;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.profile-new-card:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(29, 27, 25, 0.13);
}

.profile-new-card:focus-visible {
    outline: 2px solid #171717;
    outline-offset: 4px;
}

.profile-new-card__title {
    position: relative;
    z-index: 3;
    display: block;
    padding: 29px 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.profile-new-card__image {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    display: block;
    max-width: none;
    pointer-events: none;
    user-select: none;
}

.profile-new-card--bonus,
.profile-new-card--orders {
    grid-column: span 3;
}

.profile-new-card--private,
.profile-new-card--basket,
.profile-new-card--help {
    grid-column: span 2;
}

.profile-new-card--bonus {
    background: #191919;
}

.profile-new-card--bonus::before,
.profile-new-card--bonus::after,
.profile-new-card__bonus-circle {
    position: absolute;
    z-index: 1;
    content: '';
    pointer-events: none;
}

.profile-new-card--bonus::before {
    top: 31px;
    right: 174px;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
}

.profile-new-card--bonus::after {
    top: 124px;
    right: -49px;
    width: 343px;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    transform: rotate(-45deg);
    transform-origin: center;
}

.profile-new-card__bonus-circle {
    right: 40px;
    bottom: -34px;
    width: 113px;
    height: 113px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
}

.profile-new-card--orders {
    background: linear-gradient(100deg, #b9afa8 0%, #c7bfb9 47%, #d5cdc8 100%);
}

.profile-new-card__image--orders {
    width: 57%;
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
}

.profile-new-card--private {
    background: linear-gradient(100deg, #aaa098 0%, #c9c0ba 55%, #dad3ce 100%);
}

.profile-new-card__image--private {
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.profile-new-card--basket {
    background: #b9c8b2;
}

.profile-new-card__basket-circle {
    position: absolute;
    z-index: 1;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    pointer-events: none;
}

.profile-new-card__basket-circle--large {
    right: -104px;
    bottom: -167px;
    width: 340px;
    height: 340px;
}

.profile-new-card__basket-circle--small {
    right: 102px;
    bottom: -87px;
    width: 184px;
    height: 184px;
}

.profile-new-card--help {
    color: #171717;
    border: 1px solid #171717;
    background: #fff;
}

.profile-new-card--help:hover {
    color: #171717;
}

.profile-new-card__help-lines,
.profile-new-card__help-lines::before,
.profile-new-card__help-lines::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    content: '';
    pointer-events: none;
}

.profile-new-card__help-lines {
    width: 176px;
    height: 176px;
    border-left: 1px solid #171717;
    background: linear-gradient(45deg, transparent 49.7%, #171717 49.9%, #171717 50.1%, transparent 50.3%);
}

.profile-new-card__help-lines::before {
    width: 88px;
    height: 88px;
    border-top: 1px solid #171717;
    border-left: 1px solid #171717;
}

.profile-new-card__help-lines::after {
    right: 43px;
    width: 1px;
    height: 126px;
    background: #171717;
    transform: rotate(-45deg);
    transform-origin: bottom;
}

body:has(.profile-new) .intec-template .intec-template-layout-page-wrapper {
    box-sizing: border-box;
    width: calc(100% - 100px);
    max-width: 1340px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 80px;
    margin-left: auto;
}

body:has(.profile-new) .intec-template .intec-template-breadcrumb {
    margin-top: 28px;
    margin-bottom: 17px;
}

body:has(.profile-new) .intec-template .intec-template-title {
    margin-top: 0;
    margin-bottom: 28px;
}

body:has(.profile-new) .intec-template .intec-template-title h1 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .profile-new__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
        gap: 16px;
    }

    .profile-new-card--bonus,
    .profile-new-card--orders,
    .profile-new-card--private,
    .profile-new-card--basket {
        grid-column: span 1;
    }

    .profile-new-card--help {
        grid-column: span 2;
    }

    .profile-new-card__title {
        padding: 24px;
        font-size: 18px;
    }
}

@media (max-width: 620px) {
    body:has(.profile-new) .intec-template .intec-template-layout-page-wrapper {
        width: 100%;
        margin-bottom: 48px;
        padding-right: 16px;
        padding-left: 16px;
    }

    body:has(.profile-new) .intec-template .intec-template-breadcrumb {
        margin-top: 18px;
        margin-bottom: 12px;
    }

    body:has(.profile-new) .intec-template .intec-template-title {
        margin-bottom: 24px;
    }

    body:has(.profile-new) .intec-template .intec-template-title h1 {
        font-size: 24px;
    }

    .profile-new__grid {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }

    .profile-new-card--bonus,
    .profile-new-card--orders,
    .profile-new-card--private,
    .profile-new-card--basket,
    .profile-new-card--help {
        grid-column: span 1;
    }

    .profile-new-card__title {
        padding: 22px;
        font-size: 17px;
    }

    .profile-new-card--bonus::before {
        top: 24px;
        right: 102px;
        width: 88px;
        height: 88px;
    }

    .profile-new-card--bonus::after {
        top: 91px;
        right: -71px;
        width: 292px;
    }

    .profile-new-card__bonus-circle {
        right: 21px;
        bottom: -41px;
        width: 98px;
        height: 98px;
    }

    .profile-new-card__image--orders {
        width: 59%;
    }

    .profile-new-card__image--private {
        width: 63%;
    }

    .profile-new-card__help-lines {
        width: 142px;
        height: 142px;
    }

    .profile-new-card__help-lines::before {
        width: 71px;
        height: 71px;
    }

    .profile-new-card__help-lines::after {
        right: 35px;
        height: 101px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .profile-new-card {
        transition: none;
    }
}

.profile-new-private,
.profile-new-private * {
    box-sizing: border-box;
}

.profile-new-private {
    width: 100%;
    padding-top: 29px;
    padding-bottom: 78px;
    font-family: Montserrat, Arial, sans-serif;
    color: #171717;
}

body:has(.profile-new-private) .intec-template .intec-template-layout-page-wrapper {
    box-sizing: border-box;
    width: calc(100% - 100px);
    max-width: 1340px;
    margin: 0 auto;
}

body:has(.profile-new-private) .intec-template .intec-template-breadcrumb,
body:has(.profile-new-private) .intec-template .intec-template-title {
    display: none;
}

.profile-new-private__breadcrumb {
    display: flex;
    gap: 5px;
    margin-bottom: 27px;
    overflow: hidden;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #c4c4c4;
    white-space: nowrap;
}

.profile-new-private__breadcrumb a,
.profile-new-private__breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.profile-new-private__layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 660px);
    column-gap: 205px;
    align-items: start;
}

.profile-new-private__content {
    min-width: 0;
    width: 100%;
    max-width: none;
    justify-self: stretch;
}

.profile-new-navigation {
    min-width: 0;
}

.profile-new-navigation--desktop {
    display: flex;
    flex-direction: column;
}

.profile-new-navigation--mobile {
    display: none;
}

.profile-new-navigation__item {
    display: flex;
    min-height: 32px;
    margin-top: -1px;
    padding: 3px 10px;
    align-items: center;
    border: 1px solid #c9c9c9;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.15;
    color: #b8b8b8;
    background: #fff;
    text-decoration: none;
    transition: color 160ms ease, border-color 160ms ease;
}

.profile-new-navigation__item:first-child {
    margin-top: 0;
}

.profile-new-navigation__item:hover,
.profile-new-navigation__item:focus-visible {
    color: #171717;
    text-decoration: none;
}

.profile-new-navigation__item:focus-visible {
    position: relative;
    z-index: 2;
    outline: 1px solid #171717;
    outline-offset: 2px;
}

.profile-new-navigation__item.is-active {
    border-color: #c9c9c9;
    color: #171717;
}

.profile-new-bonus .profile-new-private__layout {
    grid-template-columns: 250px minmax(0, 890px);
    column-gap: 60px;
}

.profile-new-bonus__content {
    width: 100%;
}

.profile-new-bonus__title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    color: #171717;
    white-space: nowrap;
}

.profile-new-bonus__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.profile-new-bonus__status-card,
.profile-new-bonus__qr-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 1.732 / 1;
    border-radius: 8px;
}

.profile-new-bonus__status-card {
    background: #c8c8c8;
}

.profile-new-bonus__card-number {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 29px;
    max-width: calc(100% - 58px);
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-new-bonus__card {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-new-bonus__qr-card {
    color: #fff;
    background: #181818;
}

.profile-new-bonus__qr-heading {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 29px;
    right: 27px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}

.profile-new-bonus__qr-decoration,
.profile-new-bonus__qr-decoration::before,
.profile-new-bonus__qr-decoration::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.profile-new-bonus__qr-decoration {
    z-index: 1;
    top: -69%;
    left: -2%;
    width: 98%;
    height: 166%;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    transform: rotate(18deg);
}

.profile-new-bonus__qr-decoration::before {
    top: 57%;
    left: 4%;
    width: 95%;
    height: 1px;
    background: rgba(255, 255, 255, 0.72);
    transform: rotate(-15deg);
}

.profile-new-bonus__qr-decoration::after {
    top: 48%;
    left: 25%;
    width: 61%;
    height: 43%;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
}

.profile-new-bonus__qr-box {
    position: absolute;
    z-index: 2;
    right: 27px;
    bottom: 28px;
    display: flex;
    width: 146px;
    height: 146px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.profile-new-bonus__qr {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-new-bonus__program {
    width: 100%;
    min-height: 200px;
    margin-top: 20px;
    padding: 29px 30px 24px;
    border: 1px solid #171717;
    border-radius: 8px;
    background: #fff;
}

.profile-new-bonus__program-heading {
    display: flex;
    gap: 24px;
    align-items: baseline;
    justify-content: space-between;
}

.profile-new-bonus__program-heading h2,
.profile-new-bonus__purchase-sum {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    color: #171717;
}

.profile-new-bonus__program-link {
    flex: none;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3;
    color: #a8a8a8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.profile-new-bonus__purchase-sum {
    margin-top: 24px;
}

.profile-new-bonus__scale {
    margin-top: 28px;
}

.profile-new-bonus__scale-values,
.profile-new-bonus__scale-statuses {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 12px;
    font-weight: 300;
    line-height: 1.25;
    color: #9f9f9f;
}

.profile-new-bonus__scale-values span:first-child {
    justify-self: start;
}

.profile-new-bonus__scale-values span:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.profile-new-bonus__scale-values span:last-child {
    justify-self: end;
    grid-column: 2;
}

.profile-new-bonus__scale-line {
    position: relative;
    height: 2px;
    margin-top: 8px;
    background: #d5d5d5;
}

.profile-new-bonus__scale-line::after {
    position: absolute;
    z-index: 2;
    top: -3px;
    left: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid #9f9f9f;
    border-radius: 50%;
    background: #fff;
    content: '';
    transform: translateX(-50%);
}

.profile-new-bonus__scale-line span {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: var(--profile-new-bonus-progress);
    height: 2px;
    background: #171717;
}

.profile-new-bonus__scale-statuses {
    margin-top: 11px;
}

.profile-new-bonus__scale-statuses span:first-child {
    justify-self: center;
    margin-left: 50%;
}

.profile-new-bonus__scale-statuses span:last-child {
    justify-self: end;
}

.profile-new-data-form {
    display: block;
    width: 100%;
}

.profile-new-data-form__title {
    margin: -4px 0 38px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    color: #171717;
}

.profile-new-data-form__section-title {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #171717;
}

.profile-new-data-form__section--contacts {
    margin-top: 40px;
}

.profile-new-data-form__fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.profile-new-data-form__field {
    display: block;
    min-width: 0;
    margin: 0;
}

.profile-new-data-form__label {
    display: block;
    margin-bottom: 4px;
    overflow: hidden;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.25;
    color: #bdbdbd;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-new-data-form__input {
    display: block;
    width: 100%;
    height: 27px;
    margin: 0;
    padding: 0 0 5px;
    border: 0;
    border-bottom: 1px solid #c7c7c7;
    border-radius: 0;
    outline: 0;
    font: 400 13px/1.3 Montserrat, Arial, sans-serif;
    color: #3a3a3a;
    background: transparent;
    box-shadow: none;
    transition: border-color 160ms ease;
}

.profile-new-data-form__input::placeholder {
    color: #c8c8c8;
}

.profile-new-data-form__input:hover,
.profile-new-data-form__input:focus {
    border-bottom-color: #171717;
}

.profile-new-data-form__actions {
    display: flex;
    min-height: 38px;
    margin-top: 26px;
    gap: 16px;
    align-items: center;
}

.profile-new-data-form__message {
    max-width: 390px;
    font-size: 12px;
    line-height: 1.4;
}

.profile-new-data-form__message--error {
    color: #a22525;
}

.profile-new-data-form__message--success {
    color: #487047;
}

.profile-new-data-form__submit {
    min-width: 138px;
    min-height: 34px;
    margin-left: auto;
    padding: 7px 20px;
    border: 1px solid #171717;
    border-radius: 0;
    font: 400 12px/1.2 Montserrat, Arial, sans-serif;
    color: #fff;
    background: #171717;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.profile-new-data-form[data-dirty='true'] .profile-new-data-form__submit,
.profile-new-data-form[data-has-error='true'] .profile-new-data-form__submit {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-new-data-form__submit:hover,
.profile-new-data-form__submit:focus-visible {
    color: #171717;
    background: #fff;
}

.profile-new-data-account-actions {
    display: flex;
    margin-top: 22px;
    justify-content: flex-end;
}

.profile-new-data-account-actions__delete {
    display: inline-flex;
    min-width: 138px;
    min-height: 34px;
    padding: 7px 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid #171717;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #171717;
    background: #fff;
    text-align: center;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.profile-new-data-account-actions__delete:hover,
.profile-new-data-account-actions__delete:focus-visible {
    color: #fff;
    background: #171717;
    text-decoration: none;
}

.profile-new-data-account-actions__delete:focus-visible {
    outline: 1px solid #171717;
    outline-offset: 2px;
}

.profile-new-orders .profile-new-private__layout {
    grid-template-columns: 250px minmax(0, 1fr);
    column-gap: clamp(40px, 4vw, 60px);
}

.profile-new-orders-list {
    width: 100%;
    min-width: 0;
}

.profile-new-orders-list__title {
    margin: -4px 0 37px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    color: #171717;
}

.profile-new-orders-list__tabs {
    display: flex;
    width: 100%;
    min-height: 36px;
    border-bottom: 1px solid #c9c9c9;
}

.profile-new-orders-list__tab {
    position: relative;
    display: flex;
    min-width: 190px;
    padding: 0 0 8px;
    align-items: flex-end;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.15;
    color: #171717;
    text-decoration: none;
}

.profile-new-orders-list__tab + .profile-new-orders-list__tab {
    margin-left: 20px;
}

.profile-new-orders-list__tab::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 3px;
    background: transparent;
    content: '';
}

.profile-new-orders-list__tab:hover,
.profile-new-orders-list__tab:focus-visible {
    color: #171717;
    text-decoration: none;
}

.profile-new-orders-list__tab.is-active::after {
    background: #171717;
}

.profile-new-orders-list__table {
    width: 100%;
}

.profile-new-orders-list--history .profile-new-orders-list__table {
    padding: 12px 18px 0;
}

.profile-new-orders-list__mobile-controls {
    display: none;
}

.profile-new-orders-list__row {
    display: grid;
    grid-template-columns: 115px minmax(200px, 1fr) 100px 95px 115px 180px;
    min-height: 55px;
    column-gap: 0;
    align-items: center;
    border-bottom: 1px solid #c9c9c9;
}

.profile-new-orders-list__row--head {
    min-height: 54px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.5px;
    color: rgba(79, 79, 79, 0.4);
}

.profile-new-orders-list__header,
.profile-new-orders-list__cell--number,
.profile-new-orders-list__cell--date,
.profile-new-orders-list__cell--price,
.profile-new-orders-list__cell--status {
    white-space: nowrap;
}

.profile-new-orders-list__header--products {
    min-width: 0;
}

.profile-new-orders-list__product-search {
    display: flex;
    width: 100%;
    min-width: 0;
    margin: 0;
    align-items: center;
}

.profile-new-orders-list__product-search-title {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: text;
}

.profile-new-orders-list__product-search-input {
    width: 0;
    height: 28px;
    min-width: 0;
    padding: 0;
    opacity: 0;
    border: 0;
    border-bottom: 1px solid #1d1d1d;
    border-radius: 0;
    outline: 0;
    font: inherit;
    color: #1d1d1d;
    background: transparent;
    pointer-events: none;
    transition: width 160ms ease, opacity 120ms ease;
}

.profile-new-orders-list__product-search-input::placeholder {
    color: rgba(79, 79, 79, 0.55);
}

.profile-new-orders-list__product-search-button,
.profile-new-orders-list__product-search-clear {
    display: inline-flex;
    width: 22px;
    height: 28px;
    padding: 0;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: inherit;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.profile-new-orders-list__product-search-button svg {
    width: 16px;
    height: 16px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
}

.profile-new-orders-list__product-search-clear {
    font-size: 19px;
    line-height: 1;
    color: #1d1d1d;
}

.profile-new-orders-list__product-search-clear:hover,
.profile-new-orders-list__product-search-clear:focus-visible {
    color: #1d1d1d;
    text-decoration: none;
}

.profile-new-orders-list__product-search.is-open .profile-new-orders-list__product-search-title,
.profile-new-orders-list__product-search.is-active .profile-new-orders-list__product-search-title {
    display: none;
}

.profile-new-orders-list__product-search.is-open .profile-new-orders-list__product-search-input,
.profile-new-orders-list__product-search.is-active .profile-new-orders-list__product-search-input {
    width: calc(100% - 22px);
    opacity: 1;
    pointer-events: auto;
}

.profile-new-orders-list__product-search.is-active .profile-new-orders-list__product-search-input {
    width: calc(100% - 44px);
}

.profile-new-orders-list__product-search.is-open,
.profile-new-orders-list__product-search.is-active {
    color: #1d1d1d;
}

.profile-new-orders-list__sort {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.profile-new-orders-list__sort::after {
    min-width: 9px;
    font-size: 10px;
    line-height: 1;
    color: rgba(29, 29, 29, 0.35);
    content: '↕';
}

.profile-new-orders-list__sort.is-asc::after {
    color: #1d1d1d;
    content: '↑';
}

.profile-new-orders-list__sort.is-desc::after {
    color: #1d1d1d;
    content: '↓';
}

.profile-new-orders-list__sort:hover,
.profile-new-orders-list__sort:focus-visible {
    color: #1d1d1d;
    text-decoration: none;
}

.profile-new-orders-list__number-label--mobile {
    display: none;
}

.profile-new-orders-list__status-form,
.profile-new-orders-list__mobile-status-form {
    margin: 0;
}

.profile-new-orders-list__status-form {
    width: 100%;
}

.profile-new-orders-list__status-label,
.profile-new-orders-list__filter-submit {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.profile-new-orders-list__status-select {
    width: 100%;
    min-width: 0;
    padding: 3px 20px 3px 0;
    border: 0;
    border-radius: 0;
    outline-offset: 2px;
    font: inherit;
    color: #1d1d1d;
    background-color: transparent;
    cursor: pointer;
}

.profile-new-orders-list__cell {
    min-width: 0;
    padding-right: 12px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #1d1d1d;
    text-overflow: ellipsis;
}

.profile-new-orders-list--history .profile-new-orders-list__cell--products,
.profile-new-orders-list--offline .profile-new-orders-list__cell--products {
    padding-top: 12px;
    padding-bottom: 12px;
}

.profile-new-orders-list__number-link {
    display: inline-flex;
    max-width: 100%;
    color: inherit;
    white-space: nowrap;
    text-decoration: none;
}

.profile-new-orders-list__number-link:hover,
.profile-new-orders-list__number-link:focus-visible {
    color: inherit;
    text-decoration: underline;
}

.profile-new-orders-list__number-link:focus-visible,
.profile-new-orders-list__order-link:focus-visible {
    outline: 1px solid #171717;
    outline-offset: 2px;
}

.profile-new-orders-list__order-link {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    min-width: 0;
    align-items: center;
    color: #1d1d1d;
    text-decoration: none;
}

.profile-new-orders-list__order-link + .profile-new-orders-list__order-link {
    margin-top: 6px;
}

.profile-new-orders-list__order-link:hover,
.profile-new-orders-list__order-link:focus-visible {
    text-decoration: underline;
}

.profile-new-orders-list__product-image {
    display: flex;
    width: 36px;
    height: 46px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.profile-new-orders-list__product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-new-orders-list__product-name {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-new-orders-list__cell--action {
    padding-right: 0;
    overflow: visible;
}

.profile-new-orders-list__details {
    display: inline-flex;
    box-sizing: border-box;
    width: 180px;
    max-width: 100%;
    min-height: 40px;
    padding: 8px 14px;
    align-items: center;
    justify-content: center;
    border: 2px solid #232526;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    background: #232526;
    text-align: center;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.profile-new-orders-list__details:hover,
.profile-new-orders-list__details:focus-visible {
    color: #171717;
    background: #fff;
    text-decoration: none;
}

.profile-new-orders-list__empty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    min-height: 55px;
    align-items: center;
    border-bottom: 1px solid #c9c9c9;
    font-size: 14px;
    font-weight: 400;
    color: rgba(79, 79, 79, 0.4);
}

.profile-new-orders-list__errors {
    margin-bottom: 20px;
    padding: 10px 12px;
    border: 1px solid #a22525;
    font-size: 12px;
    line-height: 1.4;
    color: #a22525;
}

.profile-new-orders-list__pagination {
    margin-top: 24px;
}

@media (max-width: 1260px) {
    .profile-new-private__layout {
        grid-template-columns: 230px minmax(0, 660px);
        column-gap: clamp(60px, 11vw, 150px);
    }

    .profile-new-orders .profile-new-private__layout {
        grid-template-columns: 230px minmax(0, 1fr);
        column-gap: clamp(32px, 4vw, 50px);
    }

    .profile-new-bonus .profile-new-private__layout {
        grid-template-columns: 230px minmax(0, 1fr);
        column-gap: clamp(32px, 4vw, 50px);
    }

    .profile-new-orders-list__row {
        grid-template-columns: 90px minmax(150px, 1fr) 78px 80px 90px 128px;
    }

    .profile-new-orders-list__details {
        width: 128px;
    }

    .profile-new-orders-list__empty {
        grid-template-columns: minmax(0, 1fr) 128px;
    }
}

@media (max-width: 1000px) {
    .profile-new-private__layout {
        grid-template-columns: 210px minmax(0, 1fr);
        column-gap: 50px;
    }

    .profile-new-orders .profile-new-private__layout {
        grid-template-columns: 210px minmax(0, 1fr);
        column-gap: 32px;
    }

    .profile-new-bonus .profile-new-private__layout {
        grid-template-columns: 210px minmax(0, 1fr);
        column-gap: 32px;
    }

    .profile-new-bonus__card-number {
        top: 17px;
        left: 20px;
        max-width: calc(100% - 40px);
        font-size: 12px;
    }

    .profile-new-bonus__qr-heading {
        top: 16px;
        left: 20px;
        right: 20px;
        font-size: 14px;
    }

    .profile-new-bonus__qr-box {
        right: 20px;
        bottom: 20px;
        width: min(42%, 126px);
        height: auto;
        aspect-ratio: 1;
    }

    .profile-new-navigation__item {
        font-size: 17px;
    }

    .profile-new-orders-list__row {
        grid-template-columns: 90px minmax(150px, 1fr) 78px 80px 90px 128px;
    }

    .profile-new-orders-list__details {
        width: 128px;
    }

    .profile-new-orders-list__empty {
        grid-template-columns: minmax(0, 1fr) 128px;
    }
}

@media (max-width: 720px) {
    body:has(.profile-new-private) .intec-template .intec-template-layout-page-wrapper {
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }

    .profile-new-private {
        padding-top: 17px;
        padding-bottom: 0;
    }

    .profile-new-private__breadcrumb {
        gap: 3px;
        margin-bottom: 12px;
        font-size: 10px;
    }

    .profile-new-private__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .profile-new-orders .profile-new-private__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .profile-new-bonus .profile-new-private__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .profile-new-private__content {
        order: 1;
    }

    .profile-new-navigation--desktop {
        display: none;
    }

    .profile-new-navigation--mobile {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        order: 2;
        margin-top: 26px;
        margin-bottom: 24px;
    }

    .profile-new-navigation--mobile .profile-new-navigation__item {
        min-height: 26px;
        margin: 0 -1px -1px 0;
        padding: 3px 8px;
        font-size: 11px;
        line-height: 1.15;
    }

    .profile-new-data-form__title {
        margin: 0 0 18px;
        font-size: 18px;
    }

    .profile-new-bonus__title {
        position: static;
        width: auto;
        height: auto;
        margin: 0 0 20px;
        overflow: visible;
        clip: auto;
        clip-path: none;
        white-space: normal;
        font-size: 20px;
    }

    .profile-new-bonus__cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .profile-new-bonus__status-card,
    .profile-new-bonus__qr-card {
        aspect-ratio: 1.732 / 1;
    }

    .profile-new-bonus__card-number {
        top: 18px;
        left: 22px;
        max-width: calc(100% - 44px);
        font-size: 12px;
    }

    .profile-new-bonus__qr-heading {
        top: 17px;
        left: 22px;
        right: 22px;
        font-size: 14px;
    }

    .profile-new-bonus__qr-box {
        right: 22px;
        bottom: 18px;
        width: 36%;
        max-width: 110px;
    }

    .profile-new-bonus__program {
        min-height: 190px;
        margin-top: 12px;
        padding: 19px 18px 20px;
        border-radius: 7px;
    }

    .profile-new-bonus__program-heading {
        gap: 12px;
        align-items: flex-start;
    }

    .profile-new-bonus__program-heading h2,
    .profile-new-bonus__purchase-sum {
        font-size: 12px;
    }

    .profile-new-bonus__program-link {
        font-size: 9px;
        text-align: right;
    }

    .profile-new-bonus__purchase-sum {
        margin-top: 20px;
    }

    .profile-new-bonus__scale {
        margin-top: 27px;
    }

    .profile-new-bonus__scale-values,
    .profile-new-bonus__scale-statuses {
        font-size: 9px;
    }

    .profile-new-bonus__scale-statuses span:first-child {
        margin-left: 44%;
    }

    .profile-new-data-form__section-title {
        font-size: 13px;
    }

    .profile-new-data-form__section--contacts {
        margin-top: 24px;
    }

    .profile-new-data-form__fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px;
        margin-top: 10px;
    }

    .profile-new-data-form__field--birthday {
        grid-column: 1;
    }

    .profile-new-data-form__label {
        margin-bottom: 2px;
        font-size: 10px;
    }

    .profile-new-data-form__input {
        height: 24px;
        padding-bottom: 4px;
        font-size: 11px;
    }

    .profile-new-data-form__actions {
        min-height: 34px;
        margin-top: 16px;
        gap: 10px;
    }

    .profile-new-data-form__message {
        font-size: 10px;
    }

    .profile-new-data-form__submit {
        min-width: 112px;
        min-height: 30px;
        padding: 6px 14px;
        font-size: 10px;
    }

    .profile-new-orders-list__title {
        margin: 0 0 24px;
        font-size: 20px;
    }

    .profile-new-orders-list__tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 28px;
    }

    .profile-new-orders-list__tab {
        min-width: 0;
        width: 100%;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 6px;
        font-size: 10px;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .profile-new-orders-list__tab + .profile-new-orders-list__tab {
        margin-left: 0;
    }

    .profile-new-orders-list__mobile-controls {
        display: flex;
        gap: 8px 12px;
        padding: 12px 0 9px;
        flex-wrap: wrap;
        align-items: center;
        border-bottom: 1px solid #c9c9c9;
        font-size: 10px;
        color: rgba(79, 79, 79, 0.65);
    }

    .profile-new-orders-list__mobile-controls-label {
        color: #1d1d1d;
    }

    .profile-new-orders-list__mobile-sort {
        color: rgba(79, 79, 79, 0.65);
        text-decoration: none;
    }

    .profile-new-orders-list__mobile-sort.is-active,
    .profile-new-orders-list__mobile-sort:hover,
    .profile-new-orders-list__mobile-sort:focus-visible {
        color: #1d1d1d;
        text-decoration: none;
    }

    .profile-new-orders-list__mobile-status-form {
        width: 100%;
    }

    .profile-new-orders-list__mobile-status-form .profile-new-orders-list__status-select {
        height: 29px;
        padding: 4px 24px 4px 8px;
        border: 1px solid #c9c9c9;
        font-size: 10px;
        color: #1d1d1d;
        background-color: #fff;
    }

    .profile-new-orders-list--history .profile-new-orders-list__table {
        padding: 8px 10px 0;
    }

    .profile-new-orders-list__row {
        grid-template-columns: 66px minmax(0, 1fr) 104px;
        min-height: 44px;
    }

    .profile-new-orders-list--offline .profile-new-orders-list__row {
        grid-template-columns: 100px minmax(0, 1fr) 92px;
    }

    .profile-new-orders-list__row--head {
        min-height: 29px;
        font-size: 10px;
    }

    .profile-new-orders-list__header,
    .profile-new-orders-list__cell--date,
    .profile-new-orders-list__cell--price,
    .profile-new-orders-list__cell--status {
        display: none;
    }

    .profile-new-orders-list__header--number,
    .profile-new-orders-list__header--products {
        display: block;
    }

    .profile-new-orders-list__number-label--desktop {
        display: none;
    }

    .profile-new-orders-list__number-label--mobile {
        display: inline;
    }

    .profile-new-orders-list__cell--number {
        display: block;
    }

    .profile-new-orders-list--offline .profile-new-orders-list__cell--number {
        padding-right: 4px;
    }

    .profile-new-orders-list__cell {
        padding-right: 8px;
        font-size: 11px;
    }

    .profile-new-orders-list__order-link {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 6px;
    }

    .profile-new-orders-list__product-image {
        width: 28px;
        height: 36px;
    }

    .profile-new-orders-list__cell--action {
        grid-column: 3;
    }

    .profile-new-orders-list__details {
        width: 104px;
        min-height: 29px;
        padding: 5px 7px;
        font-size: 10px;
    }

    .profile-new-orders-list--offline .profile-new-orders-list__details {
        width: 92px;
    }

    .profile-new-orders-list__empty {
        grid-template-columns: minmax(0, 1fr) 154px;
        min-height: 44px;
        font-size: 10px;
    }

    .profile-new-orders-list__empty .profile-new-orders-list__details {
        width: 154px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .profile-new-orders-list__errors {
        margin-bottom: 14px;
        padding: 8px 10px;
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-new-navigation__item,
    .profile-new-data-form__input,
    .profile-new-data-form__submit,
    .profile-new-orders-list__details {
        transition: none;
    }
}

/* End */


/* Start:/help/style.css?17869748024270*/
.profile-new-help .profile-new-private__layout {
    grid-template-columns: minmax(0, 660px);
    column-gap: 0;
}

.profile-new-help .profile-new-private__content {
    grid-column: 1;
}

.profile-new-help__content {
    width: 100%;
    min-height: 475px;
}

.profile-new-help__title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.profile-new-help__lead {
    max-width: 660px;
    margin: 2px 0 0;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.48;
    letter-spacing: -0.025em;
    color: #171717;
}

.profile-new-help__lead a {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.profile-new-help__manager {
    display: flex;
    width: 323px;
    min-height: 40px;
    margin-top: 23px;
    padding: 8px 18px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    background: #171717;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease;
}

.profile-new-help__manager:hover,
.profile-new-help__manager:focus-visible {
    color: #fff;
    background: #333;
    text-decoration: none;
}

.profile-new-help__manager:focus-visible,
.profile-new-help__links a:focus-visible,
.profile-new-help__mobile-navigation a:focus-visible {
    outline: 1px solid #171717;
    outline-offset: 2px;
}

.profile-new-help__qr {
    display: flex;
    width: 323px;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
}

.profile-new-help__qr img {
    display: block;
    width: 150px;
    height: 150px;
}

.profile-new-help__qr span {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: #777;
}

.profile-new-help__links {
    display: grid;
    width: 323px;
    margin-top: 69px;
    gap: 10px;
}

.profile-new-help__links a {
    display: flex;
    min-height: 40px;
    padding: 7px 16px;
    align-items: center;
    justify-content: center;
    border: 1px solid #171717;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: #171717;
    background: #fff;
    text-align: center;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.profile-new-help__links a:hover,
.profile-new-help__links a:focus-visible {
    color: #fff;
    background: #171717;
    text-decoration: none;
}

.profile-new-help__mobile-navigation {
    display: none;
}

@media (max-width: 1260px) {
    .profile-new-help .profile-new-private__layout {
        grid-template-columns: minmax(0, 660px);
        column-gap: 0;
    }
}

@media (max-width: 1000px) {
    .profile-new-help .profile-new-private__layout {
        grid-template-columns: minmax(0, 660px);
        column-gap: 0;
    }

    .profile-new-help__lead {
        font-size: clamp(22px, 3vw, 28px);
    }
}

@media (max-width: 720px) {
    .profile-new-help .profile-new-private__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .profile-new-help .profile-new-private__content {
        grid-column: 1;
    }

    .profile-new-help__content {
        min-height: 0;
    }

    .profile-new-help__lead {
        max-width: 315px;
        margin-top: 0;
        font-size: 16px;
        line-height: 1.38;
        letter-spacing: -0.02em;
    }

    .profile-new-help__desktop-break {
        display: none;
    }

    .profile-new-help__manager {
        width: 200px;
        min-height: 32px;
        margin-top: 22px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .profile-new-help__qr,
    .profile-new-help__links {
        display: none;
    }

    .profile-new-help__mobile-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        order: 2;
        margin-top: 28px;
        margin-bottom: 24px;
    }

    .profile-new-help__mobile-navigation .profile-new-navigation__item {
        min-height: 26px;
        margin: 0 -1px -1px 0;
        padding: 3px 8px;
        font-size: 11px;
        font-weight: 300;
        line-height: 1.15;
    }
}

/* End */
/* /personal/profile_new/style.css?178697666536902 */
/* /help/style.css?17869748024270 */
