@charset "UTF-8";
/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus, :active {
    outline: none;
}

a:focus, a:active {
    outline: none;
}

nav, footer, header, aside {
    display: block;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input, button, textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a {
    color: inherit;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

/*--------------------*/
@font-face {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-display: swap;
    src: url("../fonts/BebasNeuePro-SemiExpXBold.woff2") format("woff2"), url("../fonts/BebasNeuePro-SemiExpXBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: Jost;
    font-display: swap;
    src: url("../fonts/Jost-SemiBold.woff2") format("woff2"), url("../fonts/Jost-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: Jost;
    font-display: swap;
    src: url("../fonts/Jost-Regular.woff2") format("woff2"), url("../fonts/Jost-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: Jost;
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    color: #000;
    background-color: rgb(255, 255, 255);
}

body.hidden {
    overflow: hidden;
    height: 100vh;
}

main.top {
    padding-top: 136px;
}

@media (max-width: 1087px) {
    main.top {
        padding-top: 160px;
    }
}

.wrapper {
    overflow-x: hidden;
    min-height: 100%;
}

.wrapper.nohidden {
    overflow-x: inherit;
}

.container {
    max-width: 1490px;
    margin: 0 auto;
    padding: 0 55px;
}

@media (max-width: 1087px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 479.98px) {
    .container {
        padding: 0 16px;
    }
}

@keyframes xxx {
    12.5% {
        clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 0, 0 0, 50% 50%, 50% 50%);
    }
    25% {
        clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 50%, 0 50%, 50% 50%, 50% 50%);
    }
    37.5% {
        clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%, 0 100%, 50% 50%, 50% 50%);
    }
    50% {
        clip-path: polygon(50% 0%, 100% 0, 100% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 50%, 50% 50%);
    }
    62.5% {
        clip-path: polygon(50% 0%, 100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 50%, 50% 50%);
    }
    75% {
        clip-path: polygon(50% 0%, 100% 0, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 50% 50%, 50% 50%);
    }
    87.5% {
        clip-path: polygon(50% 0%, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0, 50% 50%, 50% 50%);
    }
    100% {
        clip-path: polygon(50% 0%, 50% 0, 50% 0, 50% 0, 50% 0, 50% 0, 50% 0, 50% 50%, 50% 50%);
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.personal__tabs {
    margin: 40px 0;
    max-width: 820px;
    height: 40px;
    padding: 1px;
    border-radius: 12px;
    border: 1px solid #EFEFF0;
    background: #F7F8F9;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

@media (max-width: 1087px) {
    .personal__tabs {
        margin: 0 0 24px;
        display: flex;
        align-items: center;
        max-width: 564px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        scrollbar-color: transparent transparent;
    }

    .personal__tabs::-webkit-scrollbar {
        width: 0px;
        height: 0;
    }

    .personal__tabs::-webkit-scrollbar-track {
        background: transparent;
    }

    .personal__tabs::-webkit-scrollbar-thumb {
        background-color: transparent;
    }
}

.personal__tabs > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    padding: 10px 16px;
    border-radius: 10px;
    white-space: nowrap;
}

@media (max-width: 1087px) {
    .personal__tabs > * {
        width: auto;
        font-size: 14px;
        padding: 10px 24px;
    }
}

.personal__tabs > *.active {
    background: #FFF;
    box-shadow: 8px 0px 64px 0px rgba(0, 0, 0, 0.08);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    width: 216px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 145%;
    display: none;
}

.select::-ms-expand {
    display: none;
}

.select__arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    transition: all 0.3s;
    transform: rotate(0);
}

.select__arrow.active {
    transition: all 0.3s;
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
    width: 400px;
}

@media (max-width: 720px) {
    .dropdown {
        width: 100%;
    }
}

.dropdown__button {
    width: 100%;
    height: 56px;
    cursor: pointer;
    background: transparent;
    font-size: 16px;
    line-height: 128%;
    color: #808183;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 16px 16px;
    text-align: start;
    text-decoration: none;
    z-index: 1;
    position: relative;
}

.dropdown__list {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 11;
    border-radius: 12px;
    overflow: hidden;
    background: #FFF;
    border: 1px solid #DCDDE0;
    display: none;
}

.dropdown__list.dropdown__list-visible {
    display: block;
}

.dropdown__list-item {
    padding: 8px 12px;
    cursor: pointer;
    position: relative;
    width: 100%;
    white-space: nowrap;
    font-size: 14px;
    line-height: 120%;
    background: #FFF;
    transition: all 0.3s ease-in-out;
    height: 33px;
}

.dropdown__list-item:hover {
    background: #F7F8F9;
}

.btn {
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #9A2B0B;
    transition: background 0.3s;
    font-size: 18px;
    border-radius: 12px;
    color: #FFF;
}

.btn:hover {
    background: #8b270a;
}

.btn.disabled,
.btn:disabled {
    pointer-events: none;
    background: #EFEFF0;
    color: #BBBCBF;
    cursor: auto;
}

.btn__transparent {
    display: inline-flex;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    color: #9A2B0B;
    transition: all 0.3s ease-in;
}

.btn__transparent:hover {
    border-color: #9A2B0B;
}

.modal {
    width: 100%;
    height: 100%;
    height: 100dvh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1088px) {
    .modal.active .modal__body {
        transform: translateY(-50%);
        position: relative;
    }
}

@media (max-width: 1087px) {
    .modal.active .modal__body.bottom {
        bottom: 0;
    }
}

@media (max-width: 1087px) {
    .modal.active .modal__body.center {
        transform: translateY(-50%);
    }
}

@media (max-width: 650px) {
    .modal.active .modal__body.center {
        bottom: 0;
        transform: translateY(0);
    }
}

@media (min-width: 1088px) {
    .modal__body {
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-10%);
        transition: all 0.3s ease-in-out;
    }
}

@media (max-width: 1087px) {
    .modal__body.bottom {
        position: absolute;
        width: 100%;
        bottom: -100%;
        left: 0;
        transition: all 0.3s ease-in-out;
        border-radius: 20px 20px 0 0;
    }
}

@media (max-width: 1087px) {
    .modal__body.full {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

@media (max-width: 1087px) {
    .modal__body.center {
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-10%);
        transition: all 0.3s ease-in-out;
    }
}

@media (max-width: 650px) {
    .modal__body.center {
        position: absolute;
        width: 100%;
        bottom: -100%;
        left: 0;
        transition: all 0.3s ease-in-out;
        border-radius: 20px 20px 0 0;
        top: auto;
    }
}

.modal__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: -44px;
}

@media (max-width: 1087px) {
    .modal__close.bottom {
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        top: -48px;
    }
}

@media (max-width: 1087px) {
    .modal__close.center {
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        top: -48px;
    }
}

@media (max-width: 1087px) {
    .modal__close.desctop {
        display: none;
    }
}

.modal__close.tablet {
    display: none;
}

@media (max-width: 1087px) {
    .modal__close.tablet {
        display: block;
        position: fixed;
        z-index: 20;
        top: 12px;
        right: 24px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #FFF;
        box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.1);
    }
}

.city__body {
    width: 728px;
    background: #FFF;
    padding: 40px;
    border-radius: 20px;
}

@media (max-width: 1087px) {
    .city__body {
        overflow-y: hidden;
        padding: 24px;
    }
}

.city__body .city__row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
}

@media (max-width: 1087px) {
    .city__body .city__logo {
        width: 28px;
        height: 28px;
    }

    .city__body .city__logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.city__body .city__title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
}

@media (max-width: 1087px) {
    .city__body .city__title {
        font-size: 30px;
    }
}

.city__body .city__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 20px;
}

.city__body .city__list li {
    transition: all 0.3s ease-in-out;
}

.city__body .city__list li.active {
    color: #9A2B0B;
}

.city__body .city__list li:hover {
    color: #9A2B0B;
}

@media (max-width: 1087px) {
    .city__body .city__list {
        grid-template-columns: 1fr;
        row-gap: 24px;
        overflow-y: auto;
        max-height: calc(100vh - 190px);
        padding-bottom: 60px;
    }
}

.city__body .modal__close.start-page {
    display: none;
}

@media (max-width: 1087px) {
    .city__body .modal__close.start-page {
        display: flex;
        right: 0;
        top: -3px;
    }
}

.city__body .field__input {
    display: none;
}

@media (max-width: 1087px) {
    .city__body .field__input {
        display: block;
        position: relative;
        margin-bottom: 16px;
    }

    .city__body .field__input .clear {
        display: none;
    }

    .city__body .field__input .clear.visible {
        display: block;
        position: absolute;
        top: 0px;
        right: 48px;
        cursor: pointer;
    }

    .city__body .field__input input {
        width: 100%;
        height: 40px;
        border-radius: 12px;
        border: 1px solid #DCDDE0;
        padding: 12px 16px 12px 44px;
        font-size: 16px;
        transition: all 0.3s ease-in-out;
    }

    .city__body .field__input input:focus {
        border-color: #9A2B0B;
    }
}

.city__body svg {
    position: absolute;
    top: 8px;
    left: 12px;
}

.adress__body {
    width: 1040px;
    height: fit-content;
    position: relative;
    background: #FFF;
    border-radius: 20px;
}

@media (max-width: 1087px) {
    .adress__body {
        height: 100%;
    }
}

.adress__body .card__body-wrapper {
    display: block;
}

.adress__body .card__body-wrapper .card__body-btn__tablet {
    display: none;
}

@media (max-width: 1087px) {
    .adress__body .card__body-wrapper .card__body-btn__tablet {
        display: block;
        margin: 24px 16px;
        position: relative;
    }

    .adress__body .card__body-wrapper .card__body-btn__tablet .btn {
        width: 100%;
        height: 48px;
    }

    .adress__body .card__body-wrapper .card__body-btn__tablet .btn svg {
        margin-left: 4px;
    }

    .adress__body .card__body-wrapper .card__body-btn__tablet::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 56px;
        left: 0;
        top: -80px;
        background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
    }
}

.adress__body .adress__body-row {
    padding: 24px;

}

@media (max-width: 1087px) {
    .adress__body .adress__body-row {
        height: 100vh;
        overflow-y: auto;
        padding-top: 0;
        overflow-x: hidden;
    }

    @supports (height: 100svh) {
        .adress__body .adress__body-row {
            height: 100svh;
        }
    }
}

@media (max-width: 650px) {
    .adress__body .adress__body-row {
        padding: 0 16px 16px 16px;
        background: white;
    }
}

.adress__body .tabs_titles {
    border-radius: 12px;
    border: 1px solid #EFEFF0;
    background: #F7F8F9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 352px;
    height: 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.adress__body .tabs_titles::before {
    background: #FFF;
    border-radius: 10px;
    box-shadow: 8px 0px 64px 0px rgba(0, 0, 0, 0.08);
    color: #000;
    content: "";
    display: block;
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 2px;
    transform: translateX(calc((100% + 4px) * (var(--options-active) - 1)));
    transition: transform cubic-bezier(0.8, 0.34, 0.28, 1.15) 0.35s;
    width: calc((100% - var(--options) * 2px * 2) / var(--options));
}

.adress__body .tabs_titles > * {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 14px;
    line-height: 120%;
    height: 36px;
    width: 172px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1px;
    margin-left: 1px;
    z-index: 1;
    position: relative;
}

@media (max-width: 1087px) {
    .adress__body .tabs_titles > * {
        width: 100%;
    }
}

@media (max-width: 1087px) {
    .adress__body .tabs_titles {
        width: 100%;
    }
}

.adress__body .tab {
    display: none;
}

.adress__body .tab.active {
    display: block;
}

@media (max-width: 1087px) {
    .adress__body .tab.active {
        display: flex;
        flex-direction: column-reverse;
    }
}

.adress__body .adress__form.height {
    height: 100%;
}

@media (max-width: 1087px) {
    .adress__body .adress__form.height {
        height: auto;
    }
}

@media (max-width: 1087px) {
    .adress__body .adress__form {
        height: auto;
        margin-bottom: 20px;
    }
}

.adress__body .adress__form-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 352px;
}

@media (max-width: 1087px) {
    .adress__body .adress__form-block {
        width: 100%;
    }
}

@media (min-width: 1087px) {
    .adress__body .card__body-wrapper {
        display: flex;
        flex-direction: column;
    }

    .adress__body .adress__body-row {
        padding: 24px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .adress__body .adress__body-row .tabs {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .adress__body .adress__body-row .tabs .tab {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .adress__body .adress__body-row .adress__form {
        flex-grow: 1;
        height: 1px;
        overflow-y: auto;
    }
}

.adress__body .adress__title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 16px;
}

.adress__body .adress__title.bottom {
    margin-bottom: 20px;
}

.adress__body .field__form-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 1087px) {
    .adress__body .field__form-row {
        width: 100%;
    }
}

.adress__body .field__input {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}

@media (max-width: 1087px) {
    .adress__body .field__input {
        width: 100%;
    }
}

.adress__body .field__input .clear {
    display: none;
}

.adress__body .field__input .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.adress__body .field__input input {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.adress__body .field__input input:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.adress__body .field__input input:focus ~ label,
.adress__body .field__input input:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.adress__body .field__input input:not(:focus):valid {
    padding-top: 28px;
}

.adress__body .field__input .field__label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.adress__body .field__input .field__label.check::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 4px;
    background: #D92121;
    border-radius: 50%;
    z-index: 2;
}

.adress__body .field__form-textarea {
    position: relative;
}

.adress__body .field__form-textarea textarea {
    width: 100%;
    height: 104px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    resize: none;
}

.adress__body .field__form-textarea textarea:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.adress__body .field__form-textarea label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.adress__body .field__form-textarea textarea:focus ~ label,
.adress__body .field__form-textarea textarea:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.adress__body .field__form-textarea textarea:not(:focus):valid {
    padding-top: 28px;
}

.adress__body .field__form-textarea .clear {
    display: none;
}

.adress__body .field__form-textarea .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.adress__body .field__form-warning {
    padding: 4px 4px 6px 8px;
    border-radius: 12px;
    background: rgba(217, 33, 33, 0.08);
    font-size: 12px;
    line-height: 120%;
    color: #D92121;
    margin-top: -8px;
    margin-bottom: 16px;
    display: none;
}

.adress__body .field__form-warning.active {
    display: block;
}

.adress__body .field__form-bottom .btn {
    width: 100%;
    height: 48px;
}

.adress__body .field__form-bottom .btn.disabled {
    background: #EFEFF0;
    color: #BBBCBF;
    cursor: auto;
}

.adress__body .adress__pickup-bottom .btn {
    width: 100%;
    height: 48px;
    margin-top: 15px;
}

.adress__form-block > .tabs_titles {
    display: none;
}

@media (max-width: 1087px) {
    .adress__form-block > .tabs_titles {
        display: flex;
    }

    .adress__body .adress__pickup-bottom {
        margin-top: 15px;
    }

    .adress__body .adress__map {
        display: block !important;
        position: relative !important;
        height: 375px !important;
        width: calc(100% + 48px) !important;
        margin-left: -24px !important;
        margin-bottom: 16px !important;
        overflow: hidden;
    }

    .adress__body-row > .tabs_titles {
        display: none;
    }
}

.adress__body .adress__pickup-list > *:not(:last-child) {
    margin-bottom: 16px;
}

.adress__body .field__form-checkbox {
    margin-bottom: 16px;
    width: 100%;
}

.adress__body .field__form-checkbox input {
    display: none;
}

.adress__body .field__form-checkbox input:checked + label::after {
    display: block;
}

.adress__body .field__form-checkbox label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.adress__body .field__form-checkbox label a {
    color: #9A2B0B;
}

.adress__body .field__form-checkbox label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 6px;
    border: 2px solid #DCDDE0;
}

.adress__body .field__form-checkbox label::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("./../img/checkbox.svg");
    display: none;
}

.adress__body .adress__pickup-radio input {
    display: none;
}

.adress__body .adress__pickup-radio input:checked + .adress__pickup-label {
    border-color: #9A2B0B;
}

.adress__body .adress__pickup-radio .adress__pickup-label {
    border: 1px solid #DCDDE0;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.adress__body .adress__pickup-radio .adress__pickup-label .adress__pickup-title {
    margin-bottom: 4px;
}

.adress__body .adress__pickup-radio .adress__pickup-label .adress__pickup-time {
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.adress__body .adress__map-tablet {
    display: none;
}

@media (max-width: 1087px) {
    .adress__body .adress__map-tablet.active {
        display: block;
        position: relative;
        height: 375px;
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-bottom: 16px;
    }

    .adress__body .adress__map-tablet.active img {
        width: 100%;
        height: 375px;
        object-fit: cover;
    }

    .adress__body .adress__map-tablet.active .adress__location {
        position: absolute;
        z-index: 2;
        top: 196px;
        right: 307px;
        width: 70px;
        height: 80px;
    }

    .adress__body .adress__map-tablet.active .adress__location img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.adress__body .adress__map {
    position: absolute;
    top: 0;
    right: 0;
    width: 640px;
    height: 650px;
}

@media (max-width: 1087px) {
    .adress__body .adress__map {
        display: none;
    }
}

.adress__body .adress__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adress__body .adress__map .adress__location {
    position: absolute;
    z-index: 2;
    top: 196px;
    right: 307px;
    width: 70px;
    height: 80px;
}

.adress__body .adress__map .adress__location img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enter__body {
    width: 404px;
    padding: 40px;
    position: relative;
    background: #FFF;
    border-radius: 20px;
}

@media (max-width: 1087px) {
    .enter__body {
        padding: 24px;
    }
}

@media (max-width: 650px) {
    .enter__body {
        padding: 24px 16px;
    }
}

.enter__body .enter__body-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
}

@media (max-width: 1087px) {
    .enter__body .enter__body-title {
        margin-bottom: 8px;
        font-size: 30px;
    }
}

.enter__body .enter__body-text {
    color: #808183;
    margin-bottom: 24px;
    text-align: center;
}

@media (max-width: 1087px) {
    .enter__body .enter__body-text {
        margin-bottom: 16px;
    }
}

.enter__body .enter__body-text.black {
    color: #000;
}

.enter__body .enter__body-text.black span {
    font-weight: 600;
}

.enter__body .enter__body-text.black a {
    color: #9A2B0B;
}

@media (max-width: 650px) {
    .enter__body .enter__body-text br {
        display: none;
    }
}

.enter__body .enter__body-form.row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.enter__body .enter__body-form.row > * {
    width: 48px;
}

.enter__body .enter__body-form.row > *.error input {
    border: 2px solid #D92121;
    color: #D92121;
}

.enter__body .enter__body-form.row .base__input {
    display: none;
}

.enter__body .enter__body-form.row .otpCode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.enter__body .enter__body-form.row input {
    width: 48px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 8px 0px;
    font-size: 36px;
    text-align: center;
    font-family: BebasNeueProExpandedExtraBoldIt;
    transition: all 0.3s ease-in-out;
}

.enter__body .enter__body-form.row input:focus {
    border-color: #9A2B0B;
}

.enter__body .adress__form-error {
    text-align: center;
    margin-top: -8px;
    margin-bottom: 24px;
    color: #D92121;
    display: none;
}

.enter__body .field__form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    margin-top: -16px;
    display: none;
}

.enter__body .field__form-check svg {
    animation: rotation 5s linear infinite;
}

.enter__body .field__input {
    position: relative;
    margin-bottom: 8px;
}

.enter__body .field__input .clear {
    display: none;
}

.enter__body .field__input .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.enter__body .field__input input {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 28px 16px 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.enter__body .field__input input:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.enter__body .field__input input:focus ~ label,
.enter__body .field__input input:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.enter__body .field__input input:not(:focus):valid {
    padding-top: 28px;
}

.enter__body .field__input .field__label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.enter__body .field__input .field__label.check::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 4px;
    background: #D92121;
    border-radius: 50%;
    z-index: 2;
}

.enter__body .field__form-bottom {
    margin-bottom: 16px;
}

.enter__body .field__form-bottom .btn {
    width: 100%;
    height: 48px;
}

.enter__body .field__form-bottom .btn.disabled {
    background: #EFEFF0;
    color: #BBBCBF;
    cursor: auto;
}

.enter__body .enter__body-personal {
    font-size: 12px;
    line-height: 120%;
    color: #808183;
    text-align: center;
}

.enter__body .enter__body-personal a {
    color: #9A2B0B;
    text-decoration: underline;
}

.card__body {
    width: 800px;
    height: 484px;
    background: #FFF;
    border-radius: 20px;
}

.card__body.height {
    height: 600px;
    width: 776px;
}

@media (max-width: 1087px) {
    .card__body.height {
        height: 100%;
        width: 100%;
    }
}

.card__body.height .card__body-img {
    height: 600px;
    width: 400px;
}

@media (max-width: 1087px) {
    .card__body.height .card__body-img {
        height: 350px;
        border-radius: 0;
        width: 100%;
    }
}

.card__body.constructor {
    width: 808px;
    height: 600px;
}

@media (max-width: 1087px) {
    .card__body.constructor {
        width: 100%;
        height: 100%;
    }
}

/*.card__body.constructor .card__body-content {*/
/*  grid-template-columns: 488px 320px;*/
/*}*/
@media (max-width: 1087px) {
    .card__body.constructor .card__body-content {
        grid-template-columns: 1fr;
    }
}

.card__body.constructor .card__body-content .card__body-left {
    height: 552px;
    overflow-y: auto;
    padding-top: 0;
    margin-top: 24px;
    scrollbar-width: thin;
    scrollbar-color: #FFF #FFF;
}

.card__body.constructor .card__body-content .card__body-left > *:not(:last-child) {
    margin-bottom: 20px;
}

.card__body.constructor .card__body-content .card__body-left::-webkit-scrollbar {
    width: 4px;
}

.card__body.constructor .card__body-content .card__body-left::-webkit-scrollbar-track {
    background: #FFF;
}

.card__body.constructor .card__body-content .card__body-left::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 10px;
}

.card__body.constructor .card__body-content .card__body-left .card__body-image-mobile {
    display: none;
    height: 180px;
}

@media (max-width: 1087px) {
    .card__body.constructor .card__body-content .card__body-left .card__body-image-mobile {
        display: block;
        margin-top: 30px;
        margin-bottom: 50px;
        text-align: center;
    }
}

@media (max-width: 1087px) {
    .card__body.constructor .card__body-content .card__body-left {
        height: auto;
        overflow-y: visible;
    }

    .card__body.constructor .card__body-content .card__body-left .card__supplements-list {
        padding-bottom: 0;
    }
}

.card__body.constructor .card__body-right {
    padding: 24px;
    padding-left: 0;
    padding-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1087px) {
    .card__body.constructor .card__body-right {
        padding: 24px;
        padding-top: 0;
    }
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-image {
    text-align: center;
    margin-top: 24px;
    padding-bottom: 32px;
    height: 220px;
    overflow: hidden;
}

.card__body.constructor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1087px) {
    .card__body.constructor .card__body-right .card__body-right__top .card__body-image {
        display: none;
    }
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-empty {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: #808183;
    display: none;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-empty.active {
    display: block;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components {
    max-height: 217px;
    overflow-y: auto;
    scrollbar-width: none;
    scrollbar-color: #FFF #FFF;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components > *:not(:last-child) {
    margin-bottom: 8px;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components > *:last-child {
    margin-bottom: 14px;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components::-webkit-scrollbar {
    width: 0px;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components::-webkit-scrollbar-track {
    background: #FFF;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 10px;
}

@media (max-width: 1087px) {
    .card__body.constructor .card__body-right .card__body-right__top .card__body-components {
        height: auto;
        overflow-y: visible;
    }
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components .card__components-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components .card__components-item .card__components-type {
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components .card__components-item .card__components-price {
    color: #9A2B0B;
}

.card__body.constructor .card__body-right .card__body-right__top .card__body-components .card__components-item .card__components-weight {
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.card__body.constructor .card__body-right .card__body-right__btn {
    width: 100%;
    position: relative;
}

.card__body.constructor .card__body-right .card__body-right__btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 56px;
    left: 0;
    top: -56px;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}

.card__body.constructor .card__body-right .card__body-right__btn .btn {
    width: 100%;
    height: 48px;
}

@media (max-width: 1087px) {
    .card__body.constructor .card__body-right .card__body-right__btn {
        display: none;
    }
}

.card__body .card__body-wrapper {
    display: block;
}

.card__body .card__body-wrapper .card__body-btn__tablet {
    display: none;
}

@media (max-width: 1087px) {
    .card__body .card__body-wrapper .card__body-btn__tablet {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100
    }

    .card__body .card__body-wrapper .card__body-btn__tablet .card__body-btn__wrapper_tablet {
        padding: 24px 16px;
        background: #ffffff;
        position: relative;
    }


    .card__body .card__body-wrapper .card__body-btn__tablet .btn {
        width: 100%;
        height: 48px;
    }

    .card__body .card__body-wrapper .card__body-btn__tablet .btn svg {
        margin-left: 4px;
    }

    .card__body .card__body-wrapper .card__body-btn__tablet::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 56px;
        left: 0;
        top: -56px;
        background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }
}

.card__body .card__body-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1087px) {
    .card__body .card__body-content {
        grid-template-columns: 1fr;
        flex-grow: 1;
        padding-bottom: 96px;
        overflow-y: auto;
    }
}

.card__body .card__body-img {
    background: #F8F6F3;
    width: 100%;
    height: 484px;
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 1087px) {
    .card__body .card__body-img {
        height: 350px;
        border-radius: 0;
    }
}

.card__body .card__body-img .order__tag {
    top: 12px;
    left: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    width: 42px;
    height: 20px;
}

.card__body .card__body-img img {
    width: 360px;
    height: 360px;
    object-fit: cover;
}

.card__body .card__body-block {
    padding: 24px;
}

@media (max-width: 1087px) {
    .card__body .card__body-block {
        height: 100%;
        padding: 24px 16px;
    }
}

.card__body .card__body-block .card__body-column {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.card__body .card__body-block .card__body-column .card__body-btn {
    width: 100%;
    position: relative;
}

.card__body .card__body-block .card__body-column .card__body-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 56px;
    left: 0;
    top: -56px;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}

.card__body .card__body-block .card__body-column .card__body-btn .btn {
    width: 100%;
    height: 48px;
}

.card__body .card__body-block .card__body-column .card__body-btn .btn svg {
    margin-left: 4px;
}

.card__body .card__body-block .card__body-info {
    height: 490px;
    overflow-y: auto;
    scrollbar-width: none;
    scrollbar-color: #FFF #FFF;
}

.card__body .card__body-block .card__body-info > *:not(:last-child) {
    margin-bottom: 20px;
}

.card__body .card__body-block .card__body-info.small {
    height: 100%;
}

.card__body .card__body-block .card__body-info::-webkit-scrollbar {
    width: 0px;
}

.card__body .card__body-block .card__body-info::-webkit-scrollbar-track {
    background: #FFF;
}

.card__body .card__body-block .card__body-info::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 10px;
}

@media (max-width: 1087px) {
    .card__body .card__body-block .card__body-info {
        height: auto;
        overflow: visible;
    }
}

.card__body .card__body-block .card__body-title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 8px;
}

@media (max-width: 1087px) {
    .card__body .card__body-block .card__body-title {
        font-size: 20px;
    }
}

.card__body .card__body-block .card__body-weight {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.card__body .card__body-block .card__body-structure {
    font-size: 14px;
    line-height: 120%;
}

.card__body .card__body-block .card__body-center .card__body-smalltext {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.card__body .card__body-block .card__body-center .card__body-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.card__body .card__body-block .card__body-size {
    display: grid;
    grid-template-columns: repeat(var(--options), 1fr);
    border-radius: 12px;
    border: 1px solid #EFEFF0;
    background: #F7F8F9;
    padding: 2px;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.card__body .card__body-block .card__body-size::before {
    background: #FFF;
    border-radius: 10px;
    box-shadow: 8px 0px 64px 0px rgba(0, 0, 0, 0.08);
    color: #000;
    content: "";
    display: block;
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 2px;
    transform: translateX(calc((100% + 4px) * (var(--options-active) - 1)));
    transition: transform cubic-bezier(0.8, 0.34, 0.28, 1.15) 0.35s;
    width: calc((100% - var(--options) * 2px * 2) / var(--options));
}

.card__body .card__body-block .card__body-size > * {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.card__body .card__body-block .card__body-size > * label {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 120%;
    z-index: 1;
    position: relative;
}

.card__body .card__body-block .card__body-size > * input {
    display: none;
}

.card__body .card__body-block .card__body-supplements .card__supplements-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card__body .card__body-block .card__body-supplements .card__supplements-right {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.card__body .card__body-block .card__body-supplements .card__supplements-info {
    cursor: pointer;
}

.card__body .card__body-block .card__body-supplements .card__supplements-info svg {
    margin-bottom: -4px;
}

.card__body .card__body-block .card__body-supplements .card__supplements-info:hover + .card__supplements-popup {
    display: block !important;
}

.card__body .card__body-block .card__body-supplements .card__supplements-popup {
    display: none;
    position: absolute;
    right: -11px;
    top: 24px;
    font-size: 12px;
    line-height: 120%;
    width: 160px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(154, 43, 11, 0.9);
    color: #FFF;
    z-index: 3;
}

.card__body .card__body-block .card__body-supplements .card__supplements-popup:hover {
    display: block;
}

.card__body .card__body-block .card__body-supplements .card__supplements-popup::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 16px;
    width: 9px;
    height: 6px;
    background-image: url(./../img/arrow-card-modal.svg);
}

.card__body .card__body-block .card__body-supplements .card__supplements-list {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    gap: 8px;
    padding-bottom: 56px;
}

@media (max-width: 1087px) {
    .card__body .card__body-block .card__body-supplements .card__supplements-list {
        grid-template-columns: repeat(6, 104px);
    }
}

@media (max-width: 1087px) {
    .card__body .card__body-block .card__body-supplements .card__supplements-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 700px) {
    .card__body .card__body-block .card__body-supplements .card__supplements-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 615px) {
    .card__body .card__body-block .card__body-supplements .card__supplements-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 479.98px) {
    .card__body .card__body-block .card__body-supplements .card__supplements-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input input {
    display: none;
}

.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input input:checked + .supplements__label {
    border-color: #9A2B0B;
    transition: all 0.3s ease-in-out;
}

.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input input:checked + .supplements__label::after {
    background-image: url(./../img/card-modal-check.svg);
    transition: all 0.3s ease-in-out;
}

.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    background: #F8F6F3;
    border: 1px solid #F8F6F3;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 10px 10px 10px 39px;
    align-items: flex-start;
    height: 100%;
}

.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label .supplements__label-name {
    font-size: 12px;
    line-height: 120%;
    text-align: left;
    margin-bottom: 4px;
}

.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label .supplements__label-price {
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    text-align: left;
}

.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label::after {
    content: "";
    width: 24px;
    height: 24px;
    right: 8px;
    top: 8px;
    left: 9px;
    position: absolute;
    z-index: 2;
    background-image: url("./../img/card-modal-non-check.svg");
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.stop__body,
.noopen__body {
    width: 472px;
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 1087px) {
    .stop__body,
    .noopen__body {
        padding: 24px;
    }
}

@media (max-width: 650px) {
    .stop__body,
    .noopen__body {
        padding: 24px 16px;
    }
}

.stop__body .stop__body-img,
.noopen__body .stop__body-img {
    text-align: center;
    margin-bottom: 24px;
}

.stop__body .stop__body-title,
.noopen__body .stop__body-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-weight: 800;
    font-size: 36px;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
}

@media (max-width: 1087px) {
    .stop__body .stop__body-title,
    .noopen__body .stop__body-title {
        font-size: 30px;
    }
}

.stop__body .stop__body-text,
.noopen__body .stop__body-text {
    text-align: center;
    margin-bottom: 24px;
    color: #808183;
}

@media (max-width: 1087px) {
    .stop__body .stop__body-text,
    .noopen__body .stop__body-text {
        font-size: 14px;
        line-height: 120%;
    }
}

.stop__body .stop__body-btn .btn,
.noopen__body .stop__body-btn .btn {
    width: 100%;
    height: 48px;
}

.sale__body {
    width: 800px;
    background: #FFF;
    border-radius: 20px;
}

.sale__body .sale__body-img {
    width: 100%;
    height: 264px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1087px) {
    .sale__body .sale__body-img {
        height: 320px;
    }
}

@media (max-width: 800px) {
    .sale__body .sale__body-img {
        height: 256px;
    }
}

@media (max-width: 650px) {
    .sale__body .sale__body-img {
        height: 200px;
    }
}

@media (max-width: 550px) {
    .sale__body .sale__body-img {
        height: 170px;
    }
}

@media (max-width: 479.98px) {
    .sale__body .sale__body-img {
        height: 140px;
    }
}

.sale__body .sale__body-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale__body .sale__body-block {
    padding: 24px;
}

@media (max-width: 1087px) {
    .sale__body .sale__body-block {
        padding: 16px 16px 24px 16px;
    }
}

.sale__body .sale__body-block .sale__body-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 104%;
    margin-bottom: 16px;
}

@media (max-width: 1087px) {
    .sale__body .sale__body-block .sale__body-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

.sale__body .sale__body-block .sale__body-text {
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .sale__body .sale__body-block .sale__body-text {
        font-size: 14px;
        line-height: 120%;
        margin-bottom: 16px;
    }
}

.sale__body .sale__body-block .sale__body-btn .btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
}

.adress__delete-body {
    width: 480px;
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 1087px) {
    .adress__delete-body {
        padding: 24px;
    }
}

@media (max-width: 650px) {
    .adress__delete-body {
        padding: 24px 16px;
    }
}

.adress__delete-body .adress__delete-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .adress__delete-body .adress__delete-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

.adress__delete-body .adress__delete-btn {
    margin-bottom: 8px;
}

.adress__delete-body .adress__delete-btn .btn {
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.adress__delete-body .adress__delete-cancel .btn__cancel {
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(154, 43, 11, 0.12);
    transition: all 0.3s ease-in-out;
    color: #9A2B0B;
}

.adress__delete-body .adress__delete-cancel .btn__cancel:hover {
    background: rgba(154, 43, 11, 0.16);
}

.feedback__body {
    width: 616px;
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 1087px) {
    .feedback__body {
        padding: 24px;
    }
}

.feedback__body .feedback__form-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .feedback__body .feedback__form-title {
        font-size: 30px;
    }
}

.feedback__body .feedback__form-rating__row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 370px) {
    .feedback__body .feedback__form-rating__row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

.feedback__body .feedback__form-rating__row .feedback__form-rating__text {
    font-size: 18px;
    line-height: 110%;
}

@media (max-width: 1087px) {
    .feedback__body .feedback__form-rating__row .feedback__form-rating__text {
        font-size: 16px;
    }
}

.feedback__body .feedback__form-rating__row .rating-area {
    overflow: hidden;
}

.feedback__body .feedback__form-rating__row .rating-area:not(:checked) > input {
    display: none;
}

.feedback__body .feedback__form-rating__row .rating-area:not(:checked) > label {
    float: right;
    width: 40px;
    padding: 0;
    cursor: pointer;
    font-size: 50px;
}

.feedback__body .feedback__form-rating__row .rating-area:not(:checked) > label svg {
    fill: #EFEFF0;
    stroke: #EFEFF0;
}

@media (max-width: 650px) {
    .feedback__body .feedback__form-rating__row .rating-area:not(:checked) > label svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 650px) {
    .feedback__body .feedback__form-rating__row .rating-area:not(:checked) > label {
        width: 30px;
    }
}

.feedback__body .feedback__form-rating__row .rating-area > input:checked ~ label svg {
    fill: #FDA010;
    stroke: #FDA010;
}

.feedback__body .feedback__form-rating__row .rating-area:not(:checked) > label:hover svg,
.feedback__body .feedback__form-rating__row .rating-area:not(:checked) > label:hover ~ label svg {
    fill: #FDA010;
    stroke: #FDA010;
}

.feedback__body .feedback__form-rating__row .rating-area > input:checked + label:hover,
.feedback__body .feedback__form-rating__row .rating-area > input:checked + label:hover ~ label,
.feedback__body .feedback__form-rating__row .rating-area > input:checked ~ label:hover,
.feedback__body .feedback__form-rating__row .rating-area > input:checked ~ label:hover ~ label,
.feedback__body .feedback__form-rating__row .rating-area > label:hover ~ input:checked ~ label {
    color: #FDA010;
}

.feedback__body .feedback__form-rating__row .rate-area > label:active {
    position: relative;
}

.feedback__body .feedback__form-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 1087px) {
    .feedback__body .feedback__form-inputs {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.feedback__body .field__input {
    position: relative;
    margin-bottom: 16px;
}

.feedback__body .field__input .clear {
    display: none;
}

.feedback__body .field__input .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.feedback__body .field__input input {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.feedback__body .field__input input:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.feedback__body .field__input input:focus ~ label,
.feedback__body .field__input input:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.feedback__body .field__input input:not(:focus):valid {
    padding-top: 28px;
}

.feedback__body .field__input .field__label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.feedback__body .field__input .field__label.check::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 4px;
    background: #D92121;
    border-radius: 50%;
    z-index: 2;
}

.feedback__body .field__form-textarea {
    position: relative;
}

.feedback__body .field__form-textarea textarea {
    width: 100%;
    height: 104px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 24px;
    resize: none;
}

.feedback__body .field__form-textarea textarea:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.feedback__body .field__form-textarea label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.feedback__body .field__form-textarea textarea:focus ~ label,
.feedback__body .field__form-textarea textarea:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.feedback__body .field__form-textarea textarea:not(:focus):valid {
    padding-top: 28px;
}

.feedback__body .field__form-textarea .clear {
    display: none;
}

.feedback__body .field__form-textarea .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.feedback__body .switch__row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.feedback__body .switch__row .switch__btn {
    display: inline-block;
    width: 40px;
    height: 20px;
    border-radius: 50px;
    border: 2px solid #DCDDE0;
    z-index: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}

.feedback__body .switch__row .switch__btn::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #DCDDE0;
    position: absolute;
    top: 1px;
    left: 2px;
    z-index: 1;
    transition-duration: 300ms;
}

.feedback__body .switch__row .switch-on {
    border-color: #9A2B0B;
}

.feedback__body .switch__row .switch-on::after {
    left: 20px;
    background: #9A2B0B;
}

.feedback__body .feedback__form-btn .btn {
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.choice__body {
    width: 615px;
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 1087px) {
    .choice__body {
        padding: 24px;
    }
}

@media (max-width: 650px) {
    .choice__body {
        padding: 24px 16px;
    }
}

.choice__body .choice__body-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 1087px) {
    .choice__body .choice__body-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

.choice__body .adress__list {
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .choice__body .adress__list {
        margin-bottom: 16px;
    }
}

.choice__body .adress__item {
    cursor: pointer;
}

.choice__body .adress__item.active {
    border-color: #9A2B0B;
}

.choice__body .choice__body-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.choice__body .choice__body-btns > * {
    width: 100%;
    height: 56px;
}

.choice__body .choice__body-btns .choice__body-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(154, 43, 11, 0.12);
    color: #9A2B0B;
    transition: all 0.3s ease-in-out;
}

.choice__body .choice__body-btns .choice__body-btn:hover {
    background: rgba(154, 43, 11, 0.16);
}

.choice__city-body {
    width: 480px;
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 1087px) {
    .choice__city-body {
        padding: 24px;
    }
}

@media (max-width: 650px) {
    .choice__city-body {
        padding: 24px 16px;
    }
}

.choice__city-body .choice__city-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
}

@media (max-width: 1087px) {
    .choice__city-body .choice__city-title {
        font-size: 30px;
    }
}

.choice__city-body .choice__city-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.choice__city-body .choice__city-btns > * {
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.choice__city-body .choice__city-btns .choice__city-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(154, 43, 11, 0.12);
    transition: all 0.3s ease-in-out;
    color: #9A2B0B;
}

.choice__city-body .choice__city-btns .choice__city-btn:hover {
    background: rgba(154, 43, 11, 0.16);
}

.time__body {
    width: 440px;
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 1087px) {
    .time__body {
        padding: 24px;
    }
}

@media (max-width: 650px) {
    .time__body {
        padding: 24px 16px;
    }
}

.time__body .time__body-title {
    margin-bottom: 24px;
    text-align: center;
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
}

@media (max-width: 1087px) {
    .time__body .time__body-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

.time__body .time__body-picker {
    position: relative;
    width: 280px;
    overflow: hidden;
    margin: 0 auto 24px;
    background-color: #fff;
    color: #252525;
}

.time__body .swiper {
    height: 210px;
    float: left;
}

.time__body .swiper.date {
    width: 120px;
    margin-right: 56px;
}

.time__body .swiper.hours {
    width: 32px;
    margin-right: 32px;
}

.time__body .swiper.minutes {
    width: 32px;
}

.time__body .swiper-slide {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 104%;
    /* Center slide text vertically */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    opacity: 0.25;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.time__body .swiper-slide-active {
    color: #9A2B0B;
    opacity: 1;
}

.time__body .vizor {
    height: 70px;
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 104%;
}

.time__body .vizor:after {
    content: ":";
    display: inline-block;
    line-height: inherit;
    height: 100%;
    position: absolute;
    top: 21px;
    transform: translateX(-50%);
    color: #9A2B0B;
}

.time__body .vizor:after {
    left: 210px;
}

.time__body .time__body-btn .btn {
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.header {
    padding: 12px 0;
}

.header.hide {
    position: fixed;
    top: -130px;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.header.hide .header__top {
    display: none;
}

.header.hide .header__top-mobile {
    display: none;
}

.header.hide .header__bottom {
    padding-top: 0;
}

@media (max-width: 1087px) {
    .header.hide .header__bottom {
        display: flex;
    }
}

.header.fixed {
    top: 0;
    transition: all 0.3s;
    z-index: 100;
}

.header__top-mobile {
    display: none;
}

@media (max-width: 1087px) {
    .header__top-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        border-bottom: 1px solid #EFEFF0;
        margin-bottom: 8px;
    }
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 12px;
}

@media (max-width: 1087px) {
    .header__top {
        gap: 8px;
    }
}

.header__logo {
    margin-right: 16px;
}

@media (max-width: 1087px) {
    .header__logo.desctop {
        display: none;
    }
}

.header__city {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease-in-out;
}

.header__city:hover {
    color: #9A2B0B;
}

.header__city svg {
    margin-bottom: -1px;
}

@media (max-width: 1087px) {
    .header__city {
        display: none;
    }
}

.header__adress {
    width: 100%;
    position: relative;
}

.header__adress input {
    padding: 12px 46px;
    height: 44px;
    border-radius: 16px;
    background: #F7F8F9;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 1087px) {
    .header__adress input {
        height: 40px;
    }
}

.header__adress input::placeholder {
    color: #808183;
}

.header__adress-icon {
    position: absolute;
    top: 10px;
    left: 16px;
}

.header__tel-block {
    text-align: end;
}

@media (max-width: 1087px) {
    .header__tel-block {
        display: none;
    }
}

.header__tel {
    white-space: nowrap;
    font-weight: 600;
    margin-bottom: 2px;
}

.header__tel-info {
    white-space: nowrap;
    font-size: 12px;
    line-height: 120%;
}

.header__tel-info span {
    color: #808183;
}

.header__btn.enter {
    display: none;
}

.header__btn .btn__transparent {
    width: 80px;
}

@media (max-width: 1087px) {
    .header__btn .btn__transparent {
        height: 40px;
    }
}

.header .mobile__bar {
    display: none;
    width: 24px;
}

@media (max-width: 1087px) {
    .header .mobile__bar {
        display: block;
        position: relative;
        cursor: pointer;
    }

    .header .mobile__bar svg {
        margin-bottom: -6px;
    }
}

.header__enter {
    align-items: center;
    gap: 8px;
    display: none;
}

.header__enter.active {
    display: flex;
}

.header__enter .header__enter-img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F6F3;
    border-radius: 50%;
    position: relative;
}

@media (max-width: 1087px) {
    .header__enter .header__enter-text {
        display: none;
    }
}

.header__bottom {
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 1087px) {
    .header__bottom {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .header__nav {
        width: 650px;
        overflow-x: auto;
        scrollbar-width: none;
        scrollbar-color: #FFF #FFF;
    }

    .header__nav::-webkit-scrollbar {
        width: 0px;
    }

    .header__nav::-webkit-scrollbar-track {
        background: #FFF;
    }

    .header__nav::-webkit-scrollbar-thumb {
        background-color: #FFF;
        border-radius: 10px;
    }
}

.header__list {
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    margin-left: -32px;
    transition: all 0.3s;
}

@media (max-width: 1087px) {
    .header__list {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .header__list {
        width: 650px;
        overflow-x: auto;
    }
}

.header__list .logo {
    display: none;
}

.header__list.fixed {
    margin-left: 0;
}

.header__list.fixed .logo {
    display: block;
}

@media (max-width: 767.98px) {
    .header__list.fixed .logo {
        margin-right: 4px;
    }
}

.header__list li {
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

@media (max-width: 1087px) {
    .header__list li {
        font-size: 14px;
    }
}

.header__list li:hover {
    color: #9A2B0B;
}

.header__cart-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__cart-row .header__cart-scores {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    line-height: 110%;
}

@media (max-width: 1087px) {
    .header__cart-row .header__cart-scores {
        display: none;
    }
}

.header__cart {
    margin-bottom: -24px;
    padding-bottom: 24px;
}

@media (max-width: 1087px) {
    .header__cart {
        display: none;
    }
}

.header__cart .btn {
    width: auto;
    padding: 0 16px;
    cursor: pointer;
}

.header .headercart__list-block {
    margin-top: -100px;
    position: absolute;
    top: 64px;
    right: 0;
    z-index: 10;
    border-radius: 20px;
    background: #FFF;
    width: 424px;
    box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.1);
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(0.5) translateX(40%) translateY(-20%);
    padding: 0;
}

.header .headercart__list-block.active {
    margin-top: unset;
    height: auto;
    opacity: 1;
    transform: scale(1) translateX(0%) translateY(0%);
    transition: all 0.3s ease-in-out;
    overflow: visible;
    padding: 16px;
}

.header .headercart__list-block.active::after {
    content: "";
    position: absolute;
    top: -12px;
    right: 40px;
    width: 18px;
    height: 12px;
    background-image: url(./../img/arrow-cart.svg);
}

.header .headercart__list-block .headercart__list {
    max-height: 264px;
}

.header .headercart__list-block .headercart__list.padding {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #BBBCBF #F7F8F9;
}

.header .headercart__list-block .headercart__list.padding > * {
    padding-right: 16px;
}

.header .headercart__list-block .headercart__list::-webkit-scrollbar {
    width: 4px;
}

.header .headercart__list-block .headercart__list::-webkit-scrollbar-track {
    background: #F7F8F9;
}

.header .headercart__list-block .headercart__list::-webkit-scrollbar-thumb {
    background-color: #BBBCBF;
    border-radius: 10px;
}

.header .headercart__list-block .headercart__list > .headercart__item {
    margin-bottom: 16px;
}

.header .headercart__list-block .headercart__list .headercart__item {
    align-items: flex-start;
    gap: 16px;
    display: none;
}

.header .headercart__list-block .headercart__list .headercart__item.active {
    display: flex;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-img {
    background: #F7F8F9;
    border-radius: 12px;
    width: 72px;
    height: 72px;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-row {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left {
    height: 71px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left .card__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    width: 96px;
    height: 36px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #EFEFF0;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left .card__cart input {
    width: 24px;
    font-size: 16px;
    background: transparent;
    text-align: center;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left .card__cart input::-webkit-outer-spin-button,
.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left .card__cart input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left .card__cart input[type=number] {
    -moz-appearance: textfield;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left .card__cart .button__minus,
.header .headercart__list-block .headercart__list .headercart__item .headercart__item-left .card__cart .button__plus {
    cursor: pointer;
    margin-bottom: -4px;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-right {
    height: 71px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
}

.header .headercart__list-block .headercart__list .headercart__item .headercart__item-right .headercart__item-delete {
    cursor: pointer;
}

.header .headercart__list-block .headercart__list .headercart__empty {
    padding: 24px;
    display: none;
}

.header .headercart__list-block .headercart__list .headercart__empty.active {
    display: block;
}

.header .headercart__list-block .headercart__list .headercart__empty .headercart__empty-img {
    text-align: center;
    margin-bottom: 24px;
}

.header .headercart__list-block .headercart__list .headercart__empty .headercart__empty-title {
    font-size: 20px;
    line-height: 124%;
    text-align: center;
    margin-bottom: 8px;
}

.header .headercart__list-block .headercart__list .headercart__empty .headercart__empty-text {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: #808183;
}

.header .headercart__list-block .headercart__list-btn {
    display: none;
}

.header .headercart__list-block .headercart__list-btn.active {
    display: block;
}

.header .headercart__list-block .headercart__list-btn .btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
}

.header .headercart__list-block .headercart__list-btn .btn svg {
    margin-left: 4px;
    transition: all 0.3s ease-in-out;
}

.header .headercart__list-block .headercart__list-btn:hover .btn svg {
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}

.menu__burger {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 12px;
    background: #FFF;
    z-index: 50;
    transition: all 0.3s ease-in-out;
}

.menu__burger.burger__active {
    right: 0;
}

.menu__burger .menu__burger-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #EFEFF0;
}

.menu__burger .menu__burger-mobile .menu__burger-close {
    cursor: pointer;
}

.menu__burger .header__top {
    padding-bottom: 8px;
}

.menu__burger .menu__burger-city {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid #EFEFF0;
    margin-bottom: 40px;
}

.menu__burger .menu__burger-city .header__city {
    display: flex;
}

.menu__burger .menu__burger-city .menu__burger-city__edit {
    color: #9A2B0B;
    cursor: pointer;
}

.menu__burger .menu__burger-nav {
    padding-bottom: 40px;
    border-bottom: 1px solid #EFEFF0;
    padding-left: 32px;
}

.menu__burger .menu__burger-nav > *:not(:last-child) {
    margin-bottom: 24px;
}

.menu__burger .menu__burger-tel-block {
    padding: 24px 32px;
}

.menu__burger .menu__burger-links {
    padding-left: 32px;
}

.headliner {
    margin-top: 40px;
}

@media (max-width: 1087px) {
    .headliner {
        margin-top: 0;
    }
}

.headliner .headliner__navigation {
    position: relative;
}

.headliner .headliner__navigation .swiper-headliner__prev {
    position: absolute;
    top: -230px;
    left: 40px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #DCDDE0;
    transition: all 0.3s;
}

.headliner .headliner__navigation .swiper-headliner__prev:hover {
    border-color: #9A2B0B;
}

@media (max-width: 1400px) {
    .headliner .headliner__navigation .swiper-headliner__prev {
        top: -200px;
        left: 80px;
    }
}

@media (max-width: 1200px) {
    .headliner .headliner__navigation .swiper-headliner__prev {
        top: -180px;
    }
}

@media (max-width: 1087px) {
    .headliner .headliner__navigation .swiper-headliner__prev {
        display: none;
    }
}

.headliner .headliner__navigation .swiper-headliner__next {
    position: absolute;
    top: -230px;
    right: 40px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #DCDDE0;
    transition: all 0.3s;
}

.headliner .headliner__navigation .swiper-headliner__next:hover {
    border-color: #9A2B0B;
}

@media (max-width: 1400px) {
    .headliner .headliner__navigation .swiper-headliner__next {
        top: -200px;
        right: 80px;
    }
}

@media (max-width: 1200px) {
    .headliner .headliner__navigation .swiper-headliner__next {
        top: -180px;
    }
}

@media (max-width: 1087px) {
    .headliner .headliner__navigation .swiper-headliner__next {
        display: none;
    }
}

.headliner .headliner__navigation .swiper-headliner-pagination {
    text-align: center;
}

@media (max-width: 650px) {
    .headliner .headliner__navigation .swiper-headliner-pagination {
        margin-top: -66px;
        margin-bottom: 26px;
        position: relative;
        z-index: 10;
    }
}

.headliner .headliner__navigation .swiper-headliner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #DCDDE0;
    margin: 0 8px;
}

.headliner .headliner__navigation .swiper-headliner-pagination .swiper-pagination-bullet-active {
    position: relative;
    width: 16px;
    height: 16px;
    margin-bottom: -3px;
    background: #9A2B0B;
    animation: xxx 5s linear reverse;
}

.headliner .headliner__navigation .swiper-headliner-pagination .swiper-pagination-bullet-active::before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 2px;
    left: 2px;
    background: #FFF;
    border-radius: 50%;
}

.headliner .swiper__headliner {
    margin-bottom: 24px;
    max-height: 400px;
    position: relative;
}

@media (max-width: 650px) {
    .headliner .swiper__headliner {
        margin-bottom: 0;
    }

    .headliner .swiper__headliner.desctop {
        display: none;
    }
}

.headliner .swiper__headliner.mobile {
    display: none;
}

@media (max-width: 650px) {
    .headliner .swiper__headliner.mobile {
        display: block;
    }
}

.headliner .swiper__headliner .swiper-slide {
    width: 1380px;
    height: 376px;
    position: relative;
}

@media (max-width: 650px) {
    .headliner .swiper__headliner .swiper-slide::after {
        content: "";
        width: 100%;
        height: 160px;
        bottom: 0;
        left: 0;
        right: 0;
        position: absolute;
        z-index: 9;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    }
}

@media (max-width: 1400px) {
    .headliner .swiper__headliner .swiper-slide {
        width: 1170px;
        height: 319px;
    }
}

@media (max-width: 1200px) {
    .headliner .swiper__headliner .swiper-slide {
        width: 1000px;
        height: 272px;
    }
}

@media (max-width: 1087px) {
    .headliner .swiper__headliner .swiper-slide {
        width: 720px;
        height: 196px;
    }
}

@media (max-width: 650px) {
    .headliner .swiper__headliner .swiper-slide {
        width: 100%;
        height: 400px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.headliner .swiper__headliner .swiper-slide img {
    width: 1380px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    overflow: hidden;
}

@media (max-width: 1400px) {
    .headliner .swiper__headliner .swiper-slide img {
        width: 1170px;
    }
}

@media (max-width: 1200px) {
    .headliner .swiper__headliner .swiper-slide img {
        width: 1000px;
    }
}

@media (max-width: 1087px) {
    .headliner .swiper__headliner .swiper-slide img {
        width: 720px;
    }
}

@media (max-width: 650px) {
    .headliner .swiper__headliner .swiper-slide img {
        width: 100%;
    }
}

.headliner .swiper__headliner .swiper-slide a {
    display: block;
}

@media (max-width: 650px) {
    .order {
        margin-top: -10px;
        padding-top: 20px;
        position: relative;
        z-index: 31;
        background: #FFF;
        border-radius: 24px 24px 0px 0px;
    }
}

.order__menu {
    display: none;
}

@media (max-width: 1087px) {
    .order__menu {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-top: 40px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        scrollbar-color: #FFF #FFF;
    }

    .order__menu::-webkit-scrollbar {
        width: 0px;
    }

    .order__menu::-webkit-scrollbar-track {
        background: #FFF;
    }

    .order__menu::-webkit-scrollbar-thumb {
        background-color: #FFF;
        border-radius: 10px;
    }

    .order__menu > * {
        font-size: 14px;
        line-height: 120%;
        transition: all 0.3s ease-in-out;
        white-space: nowrap;
    }

    .order__menu > *:hover {
        color: #9A2B0B;
    }
}

@media (max-width: 650px) {
    .order__menu {
        margin-top: 0;
    }
}

.order .order__swiper {
    overflow: visible;
}

.order .order__swiper .swiper-slide {
    width: 260px;
    border-radius: 20px;
    background: #F8F6F3;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.order__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
}

@media (max-width: 1087px) {
    .order__row {
        margin-bottom: 24px;
    }
}

.order__title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
}

@media (max-width: 1087px) {
    .order__title {
        font-size: 24px;
    }
}

.order__navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1087px) {
    .order__navigation {
        display: none;
    }
}

.order__navigation > * {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DCDDE0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.order__navigation > * svg {
    stroke: #9A2B0B;
}

.order__navigation > *.swiper-button-disabled svg {
    stroke: #DCDDE0;
}

.order__navigation > *.swiper-button-disabled:hover {
    border-color: #DCDDE0;
}

.order__navigation > *:hover {
    border-color: #9A2B0B;
}

.order__img-block {
    position: relative;
}

.order__img-block.active .order__quantity {
    position: absolute;
    width: 88px;
    height: 88px;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.24);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-weight: 800;
    font-size: 36px;
    line-height: 112%;
    color: #FFF;
    text-transform: uppercase;
}

.order__img {
    width: 88px;
    height: 88px;
}

.order__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order__tag {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    padding-bottom: 2px;
    height: 12px;
}

.order__tag.new {
    width: 27px;
    background: #FDA010;
}

.order__tag.sale-tag {
    width: 32px;
    background: #000;
    color: #FFF;
}

.order__quantity {
    display: none;
}

.order__info {
    height: 88px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
}

.order__price-block {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    height: 32px;
    padding-left: 12px;
    padding-right: 4px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.order__price-block:hover {
    border-color: #9A2B0B;
}

.order__price-block.active {
    background: #9A2B0B;
    border: none;
}

.order__price-block.active .order__price-old {
    display: none;
}

.order__price-block.active .order__button-plus svg {
    stroke: #FFF;
}

.order__price-block.active .order__button-minus {
    display: block;
}

.order__price-block.active .order__button-minus svg {
    stroke: #FFF;
}

.order__price-block.active .order__price-new {
    color: #FFF;
}

.order__price-block.active .order__price-new span {
    display: none;
}

.order__button-minus {
    display: none;
    cursor: pointer;
}

.order__button-minus.visible {
    display: block;
}

.order__button-minus svg {
    stroke: #FFF;
    margin-bottom: -4px;
}

.order__price-new {
    font-size: 14px;
    color: #9A2B0B;
}

.order__button-plus {
    cursor: pointer;
}

.order__button-plus svg {
    margin-bottom: -4px;
    stroke: #9A2B0B;
}

.order__price-old {
    font-size: 14px;
    color: #BBBCBF;
    text-decoration: line-through;
}

.catalog {
    padding-top: 72px;
}

@media (max-width: 1087px) {
    .catalog {
        padding-top: 40px;
    }
}

.catalog.bottom {
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .catalog.bottom {
        margin-bottom: 40px;
    }
}

.catalog__title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 48px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

@media (max-width: 1087px) {
    .catalog__title {
        font-size: 30px;
        margin-bottom: 24px;
    }
}

.catalog__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: dense;
    column-gap: 20px;
    row-gap: 40px;
}

.catalog__list .big {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 1400px) {
    .catalog__list {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1087px) {
    .catalog__list {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 20px;
    }
}

@media (max-width: 610px) {
    .catalog__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1087px) {
    .catalog__item {
        order: 2;
    }
}

.catalog__item .order__img-block {
    width: 100%;
    height: auto;
    max-height: 260px;
    max-width: 260px;
    background: #F7F8F9;
    border-radius: 20px;
    margin-bottom: 8px;
    cursor: pointer;
}

.catalog__item .order__img-block.active .order__quantity {
    width: 100%;
    height: 100%;
    font-size: 48px;
}

.catalog__item .order__img-block .order__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.catalog__item .order__img-block .order__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.catalog__item .order__img-block .order__tag {
    top: 10px;
    left: 10px;
    font-size: 12px;
    height: 18px;
    padding-bottom: 0;
}

.catalog__item .order__img-block .order__tag.new {
    width: 42px;
}

.catalog__item .order__img-block .order__tag.sale-tag {
    width: 41px;
}

.catalog__item .order__info {
    height: 85px;
}

.catalog__item .order__info .order__info-title {
    margin-bottom: 4px;
}

@media (max-width: 1087px) {
    .catalog__item .order__info .order__info-title {
        font-size: 14px;
    }
}

.catalog__item .order__info .order__info-weight {
    font-size: 14px;
    color: #808183;
    line-height: 120%;
}

@media (max-width: 1087px) {
    .catalog__item .order__info .order__info-weight {
        font-size: 12px;
    }
}

.catalog__item.big {
    background: #F7F8F9;
    border-radius: 20px;
}

@media (max-width: 1087px) {
    .catalog__item.big {
        order: 1;
    }
}

.catalog__item.big .order__img-block {
    width: 100%;
    height: auto;
    max-width: 560px;
    max-height: 560px;
    background: transparent;
}

.catalog__item.big .order__img-block.active .order__quantity {
    font-size: 64px;
}

@media (max-width: 1087px) {
    .catalog__item.big .order__img-block.active .order__quantity {
        font-size: 48px;
    }
}

.catalog__item.big .order__img-block .order__tag {
    top: 32px;
    left: 32px;
}

.catalog__item.big .order__img-block .order__tag.hit {
    width: 78px;
    height: 20px;
    background: #9A2B0B;
    color: #FFF;
    font-size: 14px;
    padding-bottom: 2px;
}

.catalog__item.big .order__info {
    padding: 20px 32px 32px 32px;
    height: 186px;
}

@media (max-width: 1087px) {
    .catalog__item.big .order__info {
        padding: 20px;
    }
}

.catalog__item.big .order__info-weight {
    margin-bottom: 8px;
}

.catalog__item.big .order__info-text {
    font-size: 14px;
    color: #808183;
    line-height: 120%;
}

@media (max-width: 1087px) {
    .catalog__item.big .order__info-text {
        font-size: 12px;
    }
}

.profile {
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .profile {
        margin-bottom: 40px;
    }
}

.profile__content .switch__row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 72px;
}

@media (max-width: 1087px) {
    .profile__content .switch__row {
        margin-bottom: 40px;
    }
}

.profile__content .switch__row .switch__btn {
    display: inline-block;
    width: 40px;
    height: 20px;
    border-radius: 50px;
    border: 2px solid #DCDDE0;
    z-index: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}

.profile__content .switch__row .switch__btn::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #DCDDE0;
    position: absolute;
    top: 1px;
    left: 2px;
    z-index: 1;
    transition-duration: 300ms;
}

.profile__content .switch__row .switch-on {
    border-color: #9A2B0B;
}

.profile__content .switch__row .switch-on::after {
    left: 20px;
    background: #9A2B0B;
}

.profile__title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .profile__title {
        font-size: 20px;
    }
}

.profile__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 818px;
}

@media (max-width: 720px) {
    .profile__row {
        flex-direction: column-reverse;
        gap: 24px;
    }
}

.profile__row-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 24px;
    width: 540px;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .profile__row-inputs {
        grid-template-columns: 1fr;
        row-gap: 0;
        margin-bottom: 0px;
        width: 504px;
    }
}

@media (max-width: 720px) {
    .profile__row-inputs {
        width: 100%;
    }
}

.profile__row-inputs .field__input {
    position: relative;
    margin-bottom: 16px;
}

.profile__row-inputs .field__input .clear {
    display: none;
}

.profile__row-inputs .field__input .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.profile__row-inputs .field__input input[type=date] {
    padding: 12px 16px;
}

.profile__row-inputs .field__input input[type=date]:focus + .calendar {
    display: none;
}

.field__input input[type=date]::-webkit-inner-spin-button,
.field__input input[type=date]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.profile__row-inputs .field__input .calendar {
    position: absolute;
    right: 16px;
    top: 16px;
}

.profile__row-inputs .field__input input {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.profile__row-inputs .field__input input:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.profile__row-inputs .field__input input:focus ~ label,
.profile__row-inputs .field__input input:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.profile__row-inputs .field__input input:not(:focus):valid {
    padding-top: 28px;
}

.profile__row-inputs .field__input .date:not(:focus):valid {
    padding-top: 12px;
}

.profile__row-inputs .field__input .field__label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.profile__row-inputs .field__input .field__label.check::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 4px;
    background: #D92121;
    border-radius: 50%;
    z-index: 2;
}

.profile__row-img {
    position: relative;
}

.profile__img {
    width: 136px;
    height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #F8F6F3;
}

.profile__edit-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #9A2B0B;
}

.profile__exit {
    width: 82px;
}

.profile__exit .btn__transparent {
    width: 100%;
    height: 40px;
}

.history {
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .history {
        margin-bottom: 40px;
    }
}

.history__title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 24px;
}

.history__list {
    max-width: 820px;
    margin-bottom: 40px;
}

.history__list > *:not(:last-child) {
    margin-bottom: 24px;
}

@media (max-width: 550px) {
    .history__list > *:not(:last-child) {
        margin-bottom: 48px;
    }
}

.history__item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.history__item-images {
    display: grid;
    grid-template-columns: 40px 40px;
    grid-template-rows: 40px 40px;
    gap: 2px;
}

.history__item-img {
    width: 100%;
    height: 100%;
    background: #F8F6F3;
    border-radius: 8px;
    position: relative;
}

.history__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history__item-img .history__item-more {
    display: none;
}

.history__item-img.background .history__item-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #FFF;
}

.history__item-right {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.history__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

@media (max-width: 1087px) {
    .history__item-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.history__item-number {
    font-size: 18px;
    line-height: 110%;
    flex-shrink: 0;
}

.history__item-tags {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
}

.history__item-tag {
    height: 18px;
    padding: 0 8px;
    border-radius: 50px;
    border: 1px solid #BBBCBF;
    font-size: 14px;
    line-height: 120%;
    color: #BBBCBF;
    white-space: nowrap;
    width: fit-content !important;
}

@media (max-width: 1087px) {
    .history__item-tag {
        font-size: 12px;
    }
}

.history__item-tag.green {
    border-color: #2E9C08;
    color: #2E9C08;
}

.history__item-tag.grey {
    color: #000;
}

.history__item-info {
    margin-bottom: 8px;
}

.history__item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 550px) {
    .history__item-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.history__item-adress span {
    color: #808183;
}

@media (max-width: 1087px) {
    .history__item-adress {
        font-size: 14px;
    }
}

.history__item-detailed {
    color: #9A2B0B;
    transition: all 0.3s ease-in-out;
}

.history__item-detailed:hover {
    color: #8b270a;
}

@media (max-width: 1087px) {
    .history__item-detailed {
        position: absolute;
        top: 0;
        right: 0;
    }
}

@media (max-width: 550px) {
    .history__item-detailed {
        position: relative;
    }
}

.history__none {
    display: block;
}

.history__none.none {
    display: none;
}

.history__none .history__none-text {
    font-size: 18px;
    line-height: 110%;
    color: #808183;
    margin-bottom: 24px;
}

.history__none .history__none-btn .btn {
    width: 171px;
    height: 48px;
    font-size: 16px;
    line-height: 128%;
}

.navigation__row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navigation__prev {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1px solid #DCDDE0;
    transition: all 0.3s ease-in-out;
}

.navigation__prev:hover {
    border-color: #9A2B0B;
}

.navigation__prev.none {
    display: none;
}

.navigation__pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navigation__number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
}

.navigation__number:hover {
    background: #F7F8F9;
}

.navigation__number.active {
    color: #9A2B0B;
}

.navigation__number.active:hover {
    background: transparent;
    cursor: auto;
}

.navigation__next {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1px solid #DCDDE0;
    transition: all 0.3s ease-in-out;
}

.navigation__next:hover {
    border-color: #9A2B0B;
}

.navigation__next.none {
    display: none;
}

.bonus__content {
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .bonus__content {
        margin-bottom: 40px;
    }
}

.bonus__title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .bonus__title {
        font-size: 20px;
    }
}

.bonus__scores {
    margin-bottom: 24px;
}

.bonus__scores-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    color: #9A2B0B;
}

@media (max-width: 1087px) {
    .bonus__scores-title {
        font-size: 16px;
    }
}

.bonus__scores-list {
    margin-bottom: 16px;
}

.bonus__scores-list > *:not(:last-child) {
    margin-bottom: 8px;
}

.bonus__scores-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bonus__scores-item__title {
    color: #808183;
}

.bonus__scores-item__title span {
    color: #000;
}

.bonus__scores-info {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9A2B0B;
}

@media (max-width: 1087px) {
    .bonus__scores-info {
        font-size: 14px;
    }
}

.bonus__progress {
    margin-bottom: 40px;
}

.bonus__progress-title {
    font-size: 18px;
    line-height: 110%;
    margin-bottom: 16px;
}

.bonus__progress-row {
    padding: 16px;
    border-radius: 20px;
    background: #F8F6F3;
    max-width: 820px;
}

.bonus__progress-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 16px;
}

.bonus__progress-top > * {
    text-align: center;
}

.bonus__progress-level {
    font-size: 18px;
    line-height: 110%;
}

.bonus__progress-level span {
    font-weight: 600;
    line-height: 124%;
    color: #9A2B0B;
}

@media (max-width: 1087px) {
    .bonus__progress-level {
        font-size: 16px;
    }
}

.bonus__progress-line {
    position: relative;
    border-radius: 45px;
    border: 2px solid #9A2B0B;
    background: #FFF;
    width: 100%;
    height: 16px;
    margin-bottom: 16px;
}

/*.bonus__progress-line > div::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -2px;*/
/*  left: -2px;*/
/*  width: 0%;*/
/*  height: 16px;*/
/*  border-radius: 45px;*/
/*  border: 2px solid #9A2B0B;*/
/*  background: #FDA010;*/
/*}*/
.bonus__progress-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.bonus__progress-bottom > * {
    text-align: center;
}

@media (max-width: 1087px) {
    .bonus__progress-summ {
        font-size: 14px;
    }
}

.bonus__history {
    margin-bottom: 40px;
    max-width: 820px;
}

.bonus__history-title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 8px;
}

@media (max-width: 1087px) {
    .bonus__history-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.bonus__history-subtitle {
    color: #808183;
    margin-bottom: 24px;
}

.bonus__history-list > *:not(:last-child) {
    margin-bottom: 32px;
}

.bonus__order {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 550px) {
    .bonus__order {
        flex-direction: column;
        gap: 8px;
    }
}

.bonus__order-title {
    margin-bottom: 4px;
}

.bonus__order-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus__order-date {
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.bonus__order-summ {
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.bonus__order-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

@media (max-width: 550px) {
    .bonus__order-right {
        align-items: center;
        flex-direction: row;
    }
}

.bonus__order-scores {
    color: #9A2B0B;
}

.bonus__order-term {
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.bonus__order-term span {
    font-weight: 600;
}

.bonus__info {
    max-width: 820px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 550px) {
    .bonus__info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.bonus__info-title {
    font-size: 18px;
    line-height: 110%;
    margin-bottom: 8px;
}

@media (max-width: 1087px) {
    .bonus__info-title {
        font-size: 16px;
    }
}

.bonus__info-text {
    color: #808183;
}

@media (max-width: 1087px) {
    .bonus__info-text {
        font-size: 14px;
    }
}

.bonus__none.none {
    display: none;
}

.bonus__none .bonus__none-text {
    font-size: 18px;
    line-height: 110%;
    color: #808183;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .bonus__none .bonus__none-text {
        font-size: 16px;
    }
}

.bonus__none .bonus__none-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.bonus__none .bonus__none-row .bonus__none-item {
    width: 260px;
}

.bonus__none .bonus__none-row .bonus__none-title {
    font-size: 20px;
    line-height: 124%;
    color: #9A2B0B;
    margin-bottom: 8px;
}

.bonus__none .bonus__none-btn .btn {
    width: 171px;
    height: 48px;
    font-size: 16px;
}

.adress__content {
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .adress__content {
        margin-bottom: 40px;
    }
}

.adress__title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .adress__title {
        font-size: 20px;
    }
}

.adress__none.none {
    display: none;
}

.adress__none-text {
    font-size: 18px;
    line-height: 110%;
    color: #808183;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .adress__none-text {
        font-size: 16px;
    }
}

.adress__none-btn .btn {
    width: 171px;
    height: 48px;
    font-size: 16px;
}

.adress__list > *:not(:last-child) {
    margin-bottom: 8px;
}

.adress__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 818px;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #DCDDE0;
    gap: 24px;
}

.adress__item.none {
    display: none;
}

@media (max-width: 1087px) {
    .adress__item {
        align-items: flex-start;
    }
}

.adress__item-left {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.adress__item-title {
    margin-bottom: 4px;
}

.adress__item-subtitle {
    font-size: 14px;
    line-height: 120%;
    color: #808183;
}

.adress__item-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.adress__item-edit {
    cursor: pointer;
}

.adress__item-delete {
    cursor: pointer;
}

.adress__item-create {
    display: inline-block;
    margin-top: 16px;
    color: #9A2B0B;
}

.adress__item-create_is-mobile {
    margin-top: 0;
    margin-bottom: 16px;
}

.delivery {
    margin-top: 40px;
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .delivery {
        margin-top: 0px;
    }
}

@media (max-width: 720px) {
    .delivery {
        margin-bottom: 40px;
    }
}

.delivery__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.delivery__row .article-content p {
    margin: 15px 0;
}

.delivery__row .article-content h1 {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 600;
}

.delivery__row .article-content h2 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 600;
}

.delivery__row .article-content h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 600;
}

.delivery__row .article-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.delivery__row .article-content ul li {
    list-style: initial;
}

@media (max-width: 1087px) {
    .delivery__row {
        gap: 20px;
    }
}

@media (max-width: 720px) {
    .delivery__row {
        flex-direction: column;
        gap: 24px;
    }
}

.delivery__left {
    min-width: 400px;
}

.delivery__left > *:not(:last-child) {
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .delivery__left {
        min-width: 350px;
    }
}

.delivery__title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 48px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
}

@media (max-width: 1087px) {
    .delivery__title {
        font-size: 30px;
    }
}

.delivery__time > *:not(:last-child) {
    margin-bottom: 16px;
}

.delivery__time-title {
    font-size: 24px;
    line-height: 104%;
}

@media (max-width: 1087px) {
    .delivery__time-title {
        font-size: 20px;
    }
}

.delivery__time-text {
    font-size: 18px;
    line-height: 110%;
    color: #808183;
    line-height: 128%;
}

.delivery__time-text br {
    display: none;
}

@media (max-width: 1087px) {
    .delivery__time-text br {
        display: block;
    }
}

.delivery__time-text span {
    color: #000;
}

@media (max-width: 1087px) {
    .delivery__time-text {
        font-size: 16px;
    }
}

.delivery__condition > *:not(:last-child) {
    margin-bottom: 16px;
}

.delivery__condition-title {
    font-size: 24px;
    line-height: 104%;
}

@media (max-width: 1087px) {
    .delivery__condition-title {
        font-size: 20px;
    }
}

.delivery__condition-list > *:not(:last-child) {
    margin-bottom: 16px;
}

.delivery__condition-item {
    border-radius: 20px;
    padding: 16px;
    background: #F8F6F3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.delivery__condition-color {
    width: 76px;
    height: 76px;
    border-radius: 8px;
}

@media (max-width: 1087px) {
    .delivery__condition-color {
        width: 64px;
        height: 64px;
    }
}

.delivery__condition-color.orange {
    background: #FDA010;
}

.delivery__condition-color.red {
    background: #D92121;
}

.delivery__condition-right > *:not(:last-child) {
    margin-bottom: 4px;
}

@media (max-width: 1087px) {
    .delivery__condition-info {
        font-size: 14px;
        line-height: 120%;
    }
}

.delivery__pay-title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 16px;
}

@media (max-width: 1087px) {
    .delivery__pay-title {
        font-size: 20px;
    }
}

.delivery__pay-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.delivery__right {
    max-width: 940px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
}

.delivery__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 550px) {
    .delivery__right {
        height: 280px;
    }
}

.sale {
    margin-top: 40px;
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .sale {
        margin-top: 0;
        margin-bottom: 40px;
    }
}

.sale__title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 48px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

@media (max-width: 1087px) {
    .sale__title {
        font-size: 30px;
        margin-bottom: 24px;
    }
}

.sale__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 40px;
}

@media (max-width: 1087px) {
    .sale__list {
        grid-template-columns: 1fr 1fr;
        row-gap: 24px;
    }
}

@media (max-width: 650px) {
    .sale__list {
        grid-template-columns: 1fr;
    }
}

.sale__item-img {
    margin-bottom: 16px;
    width: 100%;
    height: 192px;
    overflow: hidden;
    border-radius: 20px;
}

.sale__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1300px) {
    .sale__item-img {
        height: 152px;
    }
}

@media (max-width: 800px) {
    .sale__item-img {
        height: 140px;
    }
}

.sale__item-title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 12px;
}

@media (max-width: 1087px) {
    .sale__item-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

.sale__item-text {
    color: #808183;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .sale__item-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

.sale__item-btn {
    cursor: pointer;
    width: 138px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(154, 43, 11, 0.12);
    color: #9A2B0B;
    transition: all 0.3s ease-in-out;
}

.sale__item-btn:hover {
    background: rgba(154, 43, 11, 0.16);
}

.vacancy {
    margin-top: 40px;
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .vacancy {
        margin-top: 0;
        margin-bottom: 40px;
    }
}

.vacancy__content > *:not(:last-child) {
    margin-bottom: 40px;
}

.vacancy__title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 48px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
}

@media (max-width: 1087px) {
    .vacancy__title {
        font-size: 30px;
        margin-bottom: 24px !important;
    }
}

.vacancy__text {
    max-width: 1100px;
    font-size: 20px;
    line-height: 124%;
}

@media (max-width: 1087px) {
    .vacancy__text {
        font-size: 16px;
        line-height: 128%;
    }
}

.vacancy__advantages-title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 104%;
}

@media (max-width: 1087px) {
    .vacancy__advantages-title {
        font-size: 20px;
    }
}

.vacancy__advantages-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 991.98px) {
    .vacancy__advantages-row {
        grid-template-columns: 1fr 1fr;
    }


    .card__body .card__body-wrapper {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .modal-card .card__body .card__body-block .card__body-column .card__body-btn {
        display: none;
    }

    .modal-card .card__body .card__body-img {
        height: 360px;
    }
}

.vacancy__advantages-item {
    height: 120px;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: #F8F6F3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 1300px) {
    .vacancy__advantages-item {
        height: 140px;
    }
}

@media (max-width: 1250px) {
    .vacancy__advantages-item {
        height: 160px;
    }
}

@media (max-width: 991.98px) {
    .vacancy__advantages-item {
        height: 105px;
    }

    .vacancy__advantages-item:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 550px) {
    .vacancy__advantages-item {
        height: 140px;
    }

    .vacancy__advantages-item:last-child {
        height: 122px;
    }
}

@media (max-width: 1087px) {
    .vacancy__advantages-text {
        font-size: 14px;
    }
}

.vacancy__form-title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 104%;
}

@media (max-width: 1087px) {
    .vacancy__form-title {
        font-size: 20px;
    }
}

.vacancy__form-row {
    max-width: 960px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 720px) {
    .vacancy__form-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 8px;
    }
}

.vacancy__form-selects {
    width: 400px;
}

.vacancy__form-selects > *:not(:last-child) {
    margin-bottom: 16px;
}

@media (max-width: 720px) {
    .vacancy__form-selects {
        width: 100%;
    }
}

.vacancy__form-inputs {
    width: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

@media (max-width: 1087px) {
    .vacancy__form-inputs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .vacancy__form-inputs {
        width: 100%;
    }
}

.vacancy__form-inputs .field__input {
    position: relative;
    margin-bottom: 16px;
}

.vacancy__form-inputs .field__input .clear {
    display: none;
}

.vacancy__form-inputs .field__input .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.vacancy__form-inputs .field__input input[type=date]:focus {
    padding-top: 28px;
}

.vacancy__form-inputs .field__input input[type=date]:focus + .calendar {
    display: none;
}

.vacancy__form-inputs .field__input .calendar {
    position: absolute;
    right: 16px;
    top: 16px;
}

.vacancy__form-inputs .field__input input {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.vacancy__form-inputs .field__input input:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.vacancy__form-inputs .field__input input:focus ~ label,
.vacancy__form-inputs .field__input input:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.vacancy__form-inputs .field__input input {
    padding-top: 28px;
}

.vacancy__form-inputs .field__input .date:not(:focus):valid {
    padding-top: 12px;
}

.vacancy__form-inputs .field__input .field__label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.vacancy__form-inputs .field__input .field__label.check::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 4px;
    background: #D92121;
    border-radius: 50%;
    z-index: 2;
}

.vacancy__form-checkbox {
    margin-bottom: 16px;
}

.vacancy__form-checkbox input {
    display: none;
}

.vacancy__form-checkbox input:checked + label::after {
    display: block;
}

.vacancy__form-checkbox label {
    font-size: 12px;
    line-height: 120%;
    color: #808183;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.vacancy__form-checkbox label a {
    color: #9A2B0B;
}

.vacancy__form-checkbox label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 6px;
    border: 2px solid #DCDDE0;
}

.vacancy__form-checkbox label::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("./../img/checkbox.svg");
    display: none;
}

.vacancy__form-btn .btn {
    width: 400px;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1087px) {
    .vacancy__form-btn .btn {
        width: 100%;
    }
}

.feedback {
    margin-top: 40px;
    margin-bottom: 112px;
}

@media (max-width: 1087px) {
    .feedback {
        margin-top: 0;
        margin-bottom: 16px;
    }
}

.feedback__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media (max-width: 1087px) {
    .feedback__row {
        margin-bottom: 24px;
    }
}

.feedback__title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 48px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
}

@media (max-width: 1087px) {
    .feedback__title {
        font-size: 30px;
    }
}

.feedback__create-feedback {
    width: 160px;
    height: 48px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 1087px) {
    .feedback__create-feedback.desctop {
        display: none;
    }
}

.feedback__create-feedback.mobile {
    display: none;
}

@media (max-width: 1087px) {
    .feedback__create-feedback.mobile {
        display: flex;
        margin-top: 56px;
        width: 100%;
    }

    .feedback__create-feedback.mobile .btn {
        width: 100%;
    }
}

.feedback__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 40px;
}

@media (max-width: 1087px) {
    .feedback__list {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }
}

.feedback__item {
    padding: 24px;
    border-radius: 20px;
    background: #F8F6F3;
}

@media (max-width: 1087px) {
    .feedback__item {
        padding: 16px;
    }
}

.feedback__item-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feedback__item-rowtop {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.feedback__item-img {
    width: 40px;
    height: 40px;
    min-height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #9A2B0B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback__item-img.yellow {
    background: #FDA010;
}

.feedback__item-name {
    font-size: 20px;
    line-height: 124%;
}

@media (max-width: 1087px) {
    .feedback__item-name {
        font-size: 16px;
    }
}

.feedback__item-stars > *:not(:last-child) {
    margin-right: -5px;
}

@media (max-width: 1087px) {
    .feedback__item-stars svg {
        width: 16px;
        height: 16px;
    }
}

.feedback__item-text {
    margin-bottom: 16px;
}

.feedback__item-date {
    color: #808183;
}

.feedback__item-answer {
    margin-top: 24px;
}

.feedback__item-answer .feedback__item-name {
    margin-top: 8px;
    margin-bottom: 16px;
}

.cart__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    gap: 80px;
}

@media (max-width: 1250px) {
    .cart__row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 1087px) {
    .cart__row {
        margin-top: 12px;
    }
}

.cart__row .cart__left {
    width: 100%;
}

.cart__row .cart__right {
    width: 400px;
    min-width: 400px;
    margin-top: 94px;
    position: sticky;
    top: 94px;
    margin-bottom: 112px;
}

@media (max-width: 1400px) {
    .cart__row .cart__right {
        width: 370px;
        min-width: 370px;
    }
}

@media (max-width: 1250px) {
    .cart__row .cart__right {
        position: relative;
        width: 100%;
        min-width: 260px;
        margin-top: 0;
        top: 0;
    }
}

@media (max-width: 1087px) {
    .cart__row .cart__right {
        margin-bottom: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
    }
}

@media (max-width: 479.98px) {
    .cart__row .cart__right {
        width: calc(100% + 32px);
        margin-left: -16px;
    }
}

.cart {
    margin-bottom: 112px;
}

@media (max-width: 1400px) {
    .cart {
        width: 720px;
    }
}

@media (max-width: 1250px) {
    .cart {
        margin-bottom: 40px;
        width: 100%;
    }
}

.cart__back {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    color: #9A2B0B;
}

@media (max-width: 1087px) {
    .cart__back {
        margin-bottom: 16px;
    }
}

.cart__title {
    margin-bottom: 40px;
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 48px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
}

@media (max-width: 1087px) {
    .cart__title {
        font-size: 30px;
        margin-bottom: 24px;
    }
}

.cart__list {
    margin-bottom: 40px;
    width: 820px;
}

@media (max-width: 1400px) {
    .cart__list {
        width: 720px;
    }
}

@media (max-width: 1250px) {
    .cart__list {
        width: 100%;
    }
}

.cart__list > *:not(:last-child) {
    margin-bottom: 32px;
}

.cart__list-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.cart__list-title {
    font-size: 24px;
    line-height: 104%;
}

@media (max-width: 1087px) {
    .cart__list-title {
        font-size: 20px;
    }
}

.cart__list-title.bottom {
    margin-bottom: 24px;
}

.cart__list-clear {
    cursor: pointer;
    color: #808183;
}

.cart__list-item {
    align-items: center;
    gap: 24px;
    display: none;
    position: relative;
}

.cart__list-item.active {
    display: flex;
}

@media (max-width: 1087px) {
    .cart__list-item {
        padding-bottom: 52px;
    }

    .cart__list-item.detail {
        padding-bottom: 0;
    }
}

.cart__item-img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    background-color: #F7F8F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart__item-info {
    width: 100%;
}

.cart__item-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 1087px) {
    .cart__item-row.detail {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart__item-row.detail .cart__item-right {
        flex-direction: row-reverse;
    }

    .cart__item-row.detail .cart__item-summ {
        position: relative;
        bottom: 0;
        width: auto;
    }
}

.cart__item-left > *:not(:last-child) {
    margin-bottom: 8px;
}

.cart__item-option {
    font-size: 12px;
    line-height: 120%;
    color: #808183;
}

.cart__item-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cart__item-right .card__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    width: 96px;
    height: 36px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #EFEFF0;
}

@media (max-width: 1087px) {
    .cart__item-right .card__cart {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

.cart__item-right .card__cart input {
    width: 24px;
    font-size: 16px;
    background: transparent;
    text-align: center;
}

.cart__item-right .card__cart input::-webkit-outer-spin-button,
.cart__item-right .card__cart input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart__item-right .card__cart input[type=number] {
    -moz-appearance: textfield;
}

.cart__item-right .card__cart .button__minus,
.cart__item-right .card__cart .button__plus {
    cursor: pointer;
    margin-bottom: -4px;
}

.cart__item-edit {
    color: #9A2B0B;
    cursor: pointer;
}

@media (max-width: 1087px) {
    .cart__item-edit {
        position: absolute;
        right: 120px;
        bottom: 8px;
    }
}

.cart__item-summ {
    width: 78px;
}

@media (max-width: 1087px) {
    .cart__item-summ {
        position: absolute;
        bottom: 8px;
        left: 0;
    }
}

.cart__item-summ.right {
    text-align: end;
    font-size: 18px;
    line-height: 110%;
}

.cart__item-quantity {
    font-size: 18px;
    line-height: 110%;
}

.cart__item-delete {
    cursor: pointer;
}

.cart__method {
    width: 540px;
    margin-bottom: 40px;
}

@media (max-width: 1087px) {
    .cart__method {
        width: 100%;
    }
}

.cart__method .tabs_titles {
    border-radius: 12px;
    border: 1px solid #EFEFF0;
    background: #F7F8F9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.cart__method .tabs_titles::before {
    background: #FFF;
    border-radius: 10px;
    box-shadow: 8px 0px 64px 0px rgba(0, 0, 0, 0.08);
    color: #000;
    content: "";
    display: block;
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 2px;
    transform: translateX(calc((100% + 4px) * (var(--options-active) - 1)));
    transition: transform cubic-bezier(0.8, 0.34, 0.28, 1.15) 0.35s;
    width: calc((100% - var(--options) * 2px * 2) / var(--options));
}

.cart__method .tabs_titles > * {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 14px;
    line-height: 120%;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1px;
    margin-left: 1px;
    z-index: 1;
    position: relative;
}

.cart__method .tab__method {
    display: none;
}

.cart__method .tab__method.active {
    display: block;
}

.cart__method .adress__list {
    margin-bottom: 16px;
}

.cart__method .adress__item {
    border-color: #9A2B0B;
}

@media (max-width: 1087px) {
    .cart__method .adress__item {
        max-width: 100%;
    }
}

.cart__method .adress__create {
    color: #9A2B0B;
    cursor: pointer;
}

.cart__time {
    margin-bottom: 40px;
}

.cart__time.none {
    display: none;
}

.cart__time-radios > *:not(:last-child) {
    margin-bottom: 16px;
}

.cart__time-radio input {
    display: none;
}

.cart__time-radio input:checked + label::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    background: #9A2B0B;
}

.cart__time-radio input:checked + label::before {
    border-color: #9A2B0B;
}

.cart__time-radio label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.cart__time-radio label::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #DCDDE0;
    flex: none;
}

.cart__time-text {
    margin-top: 3px;
}

.cart__time-radio label .cart__time-edit__btn {
    margin-left: 16px;
    cursor: pointer;
}

.cart__time-radio label .cart__time-edit__btn svg {
    margin-bottom: -5px;
}

.cart__sale {
    margin-bottom: 40px;
}

.cart__sale-radios > *:not(:last-child) {
    margin-bottom: 16px;
}

.cart__sale-radio .cart__sale-input {
    display: none;
}

.cart__sale-radio .cart__sale-input:checked + label::before {
    border-color: #9A2B0B;
}

.cart__sale-radio .cart__sale-input:checked + label::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    background: #9A2B0B;
}


.cart__sale-radio .cart__sale-label {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    margin-bottom: 16px;
}

.cart__sale-radio .cart__sale-label::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #DCDDE0;
}
.cart__sale-radio .cart__sale-label .cart__time-edit__btn {
    margin-left: 16px;
    cursor: pointer;
}

.cart__sale-radio .cart__sale-label .cart__time-edit__btn svg {
    margin-bottom: -5px;
}

.cart__sale-radio .adress__form-block {
    display: none;
}

.cart__sale-radio .adress__form-block.active {
    display: block;
}

.cart__sale-radio .adress__form-block .adress__form-input__row {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1087px) {
    .cart__sale-radio .adress__form-block .adress__form-input__row {
        gap: 8px;
    }
}

.cart__sale-radio .adress__form-block .field__input {
    position: relative;
    width: 260px;
}

@media (max-width: 1087px) {
    .cart__sale-radio .adress__form-block .field__input {
        width: 100%;
    }
}

.cart__sale-radio .adress__form-block .field__input .clear {
    display: none;
}

.cart__sale-radio .adress__form-block .field__input .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.cart__sale-radio .adress__form-block .field__input input {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.cart__sale-radio .adress__form-block .field__input input:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.cart__sale-radio .adress__form-block .field__input input:focus ~ label,
.cart__sale-radio .adress__form-block .field__input input:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.cart__sale-radio .adress__form-block .field__input input:not(:focus):valid {
    padding-top: 28px;
}

.cart__sale-radio .adress__form-block .field__input .field__label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.cart__sale-radio .adress__form-block .field__input .field__label.check::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 4px;
    background: #D92121;
    border-radius: 50%;
    z-index: 2;
}

.cart__sale-radio .adress__form-block .cart__sale-btn {
    width: 131px;
    min-width: 131px;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.cart__sale-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9A2B0B;
    margin-bottom: 16px;
}

.cart__payment {
    margin-bottom: 56px;
}

.cart__payment-radios > *:not(:last-child) {
    margin-bottom: 16px;
}

.cart__payment-radio .cart__payment-input {
    display: none;
}

.cart__payment-radio .cart__payment-input:checked + label::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    background: #9A2B0B;
}

.cart__payment-radio .cart__payment-input:checked + label::before {
    border-color: #9A2B0B;
}

.cart__payment-radio .cart__payment-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    cursor: pointer;
    margin-bottom: 16px;
}

.cart__payment-text {
    margin-top: 3px;
}

.cart__payment-radio .cart__payment-label::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #DCDDE0;
    flex: none;
}

.cart__payment-radio .cart__payment-label .cart__time-edit__btn {
    margin-left: 16px;
    cursor: pointer;
}

.cart__payment-radio .cart__payment-label .cart__time-edit__btn svg {
    margin-bottom: -5px;
}

.cart__payment-radio .adress__form-block {
    display: none;
}

.cart__payment-radio .adress__form-block.active {
    display: block;
}

.cart__payment-radio .adress__form-block .adress__form-input__row {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1087px) {
    .cart__payment-radio .adress__form-block .adress__form-input__row {
        gap: 8px;
    }
}

.cart__payment-radio .adress__form-block .field__input {
    position: relative;
    width: 260px;
}

@media (max-width: 1087px) {
    .cart__payment-radio .adress__form-block .field__input {
        width: 100%;
    }
}

.cart__payment-radio .adress__form-block .field__input .clear {
    display: none;
}

.cart__payment-radio .adress__form-block .field__input .clear.visible {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
}

.cart__payment-radio .adress__form-block .field__input input {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.cart__payment-radio .adress__form-block .field__input input:focus {
    border-color: #9A2B0B;
    padding-top: 28px;
}

.cart__payment-radio .adress__form-block .field__input input:focus ~ label,
.cart__payment-radio .adress__form-block .field__input input:not(:placeholder-shown) ~ label {
    font-size: 12px;
    top: 8px;
}

.cart__payment-radio .adress__form-block .field__input input:not(:focus):valid {
    padding-top: 28px;
}

.cart__payment-radio .adress__form-block .field__input .field__label {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808183;
    pointer-events: none;
    cursor: text;
    transition: 0.3s;
}

.cart__payment-radio .adress__form-block .field__input .field__label.check::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 4px;
    background: #D92121;
    border-radius: 50%;
    z-index: 2;
}

.cart__payment-radio .adress__form-block .switch__row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart__payment-radio .adress__form-block .switch__row .switch__title {
    white-space: nowrap;
}

.cart__payment-radio .adress__form-block .switch__row .switch__btn {
    display: inline-block;
    width: 40px;
    height: 20px;
    border-radius: 50px;
    border: 2px solid #DCDDE0;
    z-index: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}

.cart__payment-radio .adress__form-block .switch__row .switch__btn::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #DCDDE0;
    position: absolute;
    top: 1px;
    left: 2px;
    z-index: 1;
    transition-duration: 300ms;
}

.cart__payment-radio .adress__form-block .switch__row .switch-on {
    border-color: #9A2B0B;
}

.cart__payment-radio .adress__form-block .switch__row .switch-on::after {
    left: 20px;
    background: #9A2B0B;
}

.cart__recommend-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.cart__recommend-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cart__detail {
    padding: 24px;
    border-radius: 20px;
    background: #F8F6F3;
}

.cart__detail .history__item-tags {
    margin-bottom: 20px;
}

@media (max-width: 1087px) {
    .cart__detail {
        border-radius: 20px 20px 0px 0px;
    }
}

.cart__detail-title {
    font-size: 24px;
    line-height: 104%;
    margin-bottom: 24px;
}

@media (max-width: 1087px) {
    .cart__detail-title {
        font-size: 20px;
    }
}

.cart__detail-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
}

.cart__detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart__detail-left {
    font-size: 18px;
    line-height: 110%;
}

.cart__detail-left.grey {
    color: #808183;
}

@media (max-width: 1087px) {
    .cart__detail-left {
        font-size: 16px;
    }
}

.cart__detail-right {
    font-size: 18px;
    line-height: 110%;
}

@media (max-width: 1087px) {
    .cart__detail-right {
        font-size: 16px;
    }
}

.cart__detail-right.red {
    color: #9A2B0B;
}

.cart__detail-right.summ {
    font-size: 24px;
    line-height: 104%;
}

@media (max-width: 1087px) {
    .cart__detail-right.summ {
        font-size: 20px;
    }
}

.cart__detail-btn {
    margin-top: 24px;
    margin-bottom: 16px;
    width: 100%;
}

.cart__detail-btn .btn {
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.cart__detail-btn.bottom0 {
    margin-bottom: 0;
}

.cart__detail-personal {
    text-align: center;
    font-size: 12px;
    line-height: 120%;
    color: #808183;
}

.cart__detail-personal a {
    color: #9A2B0B;
}

.error__page {
    margin-top: 128px;
    margin-bottom: 112px;
}

.error__page .error__page-img {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 1087px) {
    .error__page .error__page-img {
        width: 303px;
        margin: 0 auto 24px;
    }

    .error__page .error__page-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.error__page .error__page-title {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 48px;
    font-weight: 800;
    line-height: 112%;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 1087px) {
    .error__page .error__page-title {
        font-size: 30px;
        max-width: 303px;
        margin: 0 auto 16px;
    }
}

.error__page .error__page-btn {
    text-align: center;
}

.error__page .error__page-btn .btn {
    width: 199px;
    height: 48px;
    font-size: 16px;
}

.start__page {
    margin-top: 72px;
    text-align: center;
}

.start__page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background: #F7F8F9;
    padding: 64px 0 40px;
}

@media (max-width: 1087px) {
    .footer {
        padding: 40px 0 24px;
    }
}

.footer__top {
    margin-bottom: 64px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 1087px) {
    .footer__top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
}

.footer__lists {
    display: grid;
    grid-template-columns: repeat(3, 204px);
    gap: 30px;
}

@media (max-width: 1300px) {
    .footer__lists {
        column-gap: 16px;
        row-gap: 24px;
        grid-template-columns: repeat(3, 184px);
    }
}

@media (max-width: 1200px) {
    .footer__lists {
        grid-template-columns: repeat(3, 154px);
    }
}

@media (max-width: 1087px) {
    .footer__lists {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 720px) {
    .footer__lists {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 550px) {
    .footer__lists {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer__links {
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

@media (max-width: 1087px) {
    .footer__links {
        height: 96px;
        align-items: flex-start;
    }
}

@media (max-width: 550px) {
    .footer__links {
        height: auto;
    }
}

.footer__links-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 550px) {
    .footer__links-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 40px;
    }
}

.footer__links-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 720px) {
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 24px;
        gap: 30px;
    }
}

.footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 550px) {
    .footer__bottom-left {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer__bottom-copyright {
    font-size: 14px;
    color: #808183;
    line-height: 120%;
}

.footer__bottom-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__bottom-list li:last-child {
    margin-bottom: -4px;
}

.footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #808183;
    line-height: 120%;
}


/* Новые стили */
.header__menu {
    overflow-x: auto;
    scrollbar-width: none;
    position: relative;
    width: calc(100% - 130px);
}

.header__menu::-webkit-scrollbar {
    display: none;
}

.header__menu:hover:after {
    opacity: 0;
    z-index: -1;
}

.header__menu::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.26) 16.16%, rgba(255, 255, 255, 0) 100%);
}

.header__menu.none::after {
    display: none;
}

.header__list li {
    padding: 4px 0;
}

.swiper__headliner-small {
    margin-bottom: 24px;
    max-height: 400px;
    position: relative;
    display: none !important;
}

@media (max-width: 650px) {
    .swiper__headliner-small {
        margin-bottom: 0;
        display: block !important;
    }
}

.swiper__headliner-small .swiper-slide {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper__headliner-small .swiper-slide::after {
    content: "";
    width: 100%;
    height: 160px;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 9;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

@media (max-width: 650px) {
    .swiper__headliner-small .swiper-slide {
        width: 100%;
        height: 400px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.swiper__headliner-small .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    overflow: hidden;
}

.swiper__headliner-small .swiper-slide a {
    display: block;
}

@media (max-width: 650px) {
    .swiper-headliner-pagination {
        display: none;
    }
}

.swiper-headliner-mobile-pagination {
    text-align: center;
    display: none;
}

@media (max-width: 650px) {
    .swiper-headliner-mobile-pagination {
        margin-top: -66px;
        margin-bottom: 26px;
        position: relative;
        z-index: 10;
        display: block;
    }
}

.swiper-headliner-mobile-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #DCDDE0;
    margin: 0 8px;
}

.swiper-headliner-mobile-pagination .swiper-pagination-bullet-active {
    position: relative;
    width: 16px;
    height: 16px;
    margin-bottom: -3px !important;
    background: #9A2B0B;
    animation: xxx 5s linear reverse;
}

.swiper-headliner-mobile-pagination .swiper-pagination-bullet-active::before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 2px;
    left: 2px;
    background: #FFF;
    border-radius: 50%;
}

.header__menu .swiper-wrapper {
    align-items: center;
}


.footer__links-bottom.socials > a {
    background: #DCDDE0;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer__links-bottom.socials > a img {
    width: 16px;
    height: 16px;
}

.menu__burger-wrapper {
    overflow: scroll;
    height: 70vh;
}


.address-add-view {
    min-height: 615px;
    overflow: hidden;
    overflow-y: auto;
}

.address-add-view .card__body-wrapper {
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
}

.address-add-view .adress__form {
    padding: 24px;
}


@media (max-width: 650px) {
    .address-add-view .adress__form {
        padding: 0 16px 16px 16px;
    }
}


.history__item-tags-swiper {
    width: 100%;
}


.ymaps-2-1-79-controls-pane {
    top: 9px !important;
    left: 16px !important;
}


.header__enter a {
    overflow: hidden;
}

.header__enter a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal.active > .adress__body {
    height: 650px;
}


.order__menu.header__nav {
    display: flex;
    gap: 20px;
}


.order__menu.header__nav li {
    display: flex;
    align-items: center;
}

.sale__item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sale__item .sale__item-img {
    height: 100%;
}

.sale__item .sale__item-block {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}


.link_header_vacancy a {
    background: #9A2B0B1F;
    color: #9A2B0B;
    border-radius: 8px;
    padding: 0 8px 0 8px;
    font-size: 16px;
    font-weight: 400;
    height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
}

.link_header_vacancy_line {
    height: 20px;
    width: 1px;
    background: #DCDDE0;
}


.receiving_list {
    max-height: 300px;
    overflow: hidden;
    display: grid;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: auto;
}

.nearestDeliveryDate {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 196px;
    height: 40px;
    align-items: center;
    border: 1px solid #9A2B0B;
    border-radius: 12px 0 0 12px;
    margin-right: -10px;
    padding: 12px 16px 12px 16px;
}

.nearestDeliveryDate span {
    font-size: 12px;
    font-weight: 600;
    line-height: 16.32px;
    text-align: right;
    color: #9A2B0B;
}

.nearestDeliveryDate p {
    white-space: nowrap;
}

.nearestDeliveryDate svg {
    width: 24px;
    height: 24px;
}

.modal_stopped_delivery.enter__body {
    max-width: 442px;
    width: 100%;
}


.modal_stopped_delivery .enter__body-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.modal_stopped_delivery h1 {
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 36px;
    font-weight: 800;
    line-height: 40.32px;
    text-align: center;

}

.modal_stopped_delivery p {
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.48px;
    text-align: center;

}


.badge {
    background: #505050;
    padding: 5px 10px;
    border-radius: 12px;
    color: white;
}

.badge.ok {
    background: #00d95a;
}

.badge.error {
    background: red;
}


.header .headercart__list-block {
    z-index: -1;
}

.header .headercart__list-block.active {
    z-index: 10;
}

.card__page.card__body {
    width: auto;
    height: auto;
    margin-bottom: 112px;
}

.card__page.card__body .card__body-img {
    border-radius: 20px;
    width: 484px;
    max-width: 484px;
}

@media (max-width: 860px) {
    .card__page.card__body .card__body-img {
        width: 280px;
        height: 280px;
        max-width: 280px;
    }
}

@media (max-width: 750px) {
    .card__page.card__body .card__body-img {
        width: 343px;
        max-width: 343px;
        height: 343px;
        text-align: center;
    }
}

.card__page.card__body .card__body-block {
    padding: 0;
}

.card__page.card__body .card__body-content {
    display: flex;
    align-items: flex-start;
    gap: 56px;
}

.card__page.card__body .card__body-block .card__body-info {
    height: auto;
    overflow-y: visible;
}

.card__page.card__body .card__body-block .card__body-supplements .card__supplements-list {
    padding-bottom: 40px;
}

.card__body-center, .card__body-size, .card__body-btn {
    max-width: 400px;
}

.card__body-content {
    margin-bottom: 72px;
}

.card__page.card__body .card__btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 128%;
    color: #9A2B0B;
    margin-bottom: 24px;
}

.card__page.card__body .card__btn.none {
    display: none;
}

.card__page.card__body .card__body-block .card__body-supplements .card__supplements-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-bottom: 56px;
}

.card__page.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    background: #F8F6F3;
    width: 100%;
    height: 69px;
    border: 1px solid #F8F6F3;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 10px 10px 10px 39px;
    align-items: flex-start;
}

.card__page.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label::after {
    content: "";
    width: 24px;
    height: 24px;
    right: 8px;
    top: 8px;
    left: 9px;
    position: absolute;
    z-index: 2;
    background-image: url("../img/card-modal-non-check.svg");
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.card__page.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input input:checked + .supplements__label::after {
    background-image: url("../img/card-modal-check.svg");
    transition: all 0.3s ease-in-out;
}

.card__page.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label .supplements__label-name {
    font-size: 12px;
    line-height: 120%;
    text-align: left;
    margin-bottom: 4px;
}

.card__page.card__body .card__body-block .card__body-supplements .card__supplements-list .card__supplements-input .supplements__label .supplements__label-price {
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    text-align: left;
}

@media (max-width: 1087px) {
    .card__page.card__body .card__body-content {
        grid-template-columns: 1fr;
        height: auto;
        overflow-y: visible;
    }

    .card__page.card__body .card__body-block .card__body-column .card__body-btn {
        display: block;
    }
}

@media (max-width: 750px) {
    .card__page.card__body .card__body-content {
        gap: 24px;
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .card__page .cart__recommend .order__price-old {
        display: none;
    }
}

.card__body-content {
    margin-bottom: unset;
}


.card__body .card__body-block .card__body-column .card__body-btn {
    margin-top: 20px;
}

.product_detail_page .card__body-img {
    overflow: hidden;
}

.product_detail_page .card__body-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_detail_page .empty_block {
    display: none;
}

.product_detail_page .card__body-btn__tablet {
    display: none;
}


@media (max-width: 992px) {
    .product_detail_page .cart__recommend {
        margin-top: 80px;
    }

    .modal.active > .adress__body {
        height: 100% !important;
    }

    .modal.active > .card__body  {
        border-radius: unset;
    }


}

@media (max-width: 750px) {
    .product_detail_page .card__body-img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        text-align: center;
    }
}

.v-toast__item {
    margin: 18px !important;
    border-radius: 15px !important;
}

.v-toast__item .v-toast__text {
    padding: .5em 1em !important;
}


.breadcrumbs > *{
    cursor: pointer;
}


.empty-cart-view{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    height: 54vh;
    justify-content: center;
}


.empty-cart-view h1{
    font-family: BebasNeueProExpandedExtraBoldIt;
    font-size: 30px;
    font-weight: 800;
    line-height: 33.6px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.newsList-date{
    color: #9A2B0B;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.profile__row-inputs .field__input select {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #DCDDE0;
    padding: 12px 16px;
    font-size: 16px;
    appearance: none;
}

.v-popper--theme-tooltip .v-popper__inner {
    background: #9A2B0BE5 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px !important;
}

.v-popper--theme-tooltip .v-popper__arrow-outer {
    border-top-color: #9A2B0BE5 !important;
}
