:root {
    --font: "Helvetica neue", sans-serif;
    --font-title: "Helvetica neue", sans-serif;
    --bg-color: #fff;
    --font-color: #222;
    --black: #222;
    --white: #fff;
    --red: #a42e22;
    --light-red: #c9382c;
    --grey: #616060;
    --grey-hover: #b8bbc1;
    --grey-active: #797f89;
    --grey-focus: #797f89;
    --grey-disabled: #eaebef;
}
html {
    font-size: 10px;
}
.x-container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 4rem;
}

.x-main {
    flex: 1;
    padding-top: var(--header-height);
    margin-top: 0 !important;
}
.x-mobile-nav.have-filter .x-mobile-nav__inner{
    padding-top: 138px;
}
.x-user-nav.have-filter .x-user-nav__inner{
    padding-top: 136px;
}
.x-burger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 22px;
    min-width: 22px;
    line-height: 1;
    gap: 4px;
    transition: color 0.5s ease;
}
.x-burger.is-active .x-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    width: 22px;
}
.x-burger.is-active .x-burger__line:nth-child(2) {
    opacity: 0;
}
.x-burger.is-active .x-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
    width: 22px;
}
.x-burger__line {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--black);
    transition: all 0.5s ease;
}
.x-burger__line:first-child {
    width: 11px;
}
.x-burger__line:last-child {
    width: 15px;
}

.x-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    height: 60px;
    min-width: 220px;
    padding: 5px 15px;
    border-radius: 0;
    color: var(--white);
    background: var(--red);
    box-shadow: none;
    transition: all 0.5s ease;
}
@media (max-width: 991.98px) {
    .x-button {
        font-size: 16px;
        height: 50px;
        min-width: 200px;
    }
}
@media (max-width: 767.98px) {
    .x-button {
        font-size: 14px;
    }
}
.x-button:hover,
.x-button:active,
.x-button:focus-visible {
    outline: none;
    color: var(--white);
    background: var(--light-red);
}
.x-button:disabled {
    background: var(--grey-disabled) !important;
    border-color: var(--grey-disabled) !important;
    color: var(--grey) !important;
    cursor: not-allowed;
}
.x-button--outline {
    border: 1px solid var(--red);
    background: none;
    color: var(--red);
}
.x-button--outline:hover,
.x-button--outline:active,
.x-button--outline:focus-visible {
    color: var(--white);
    background: var(--red);
}

.x-input {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 0;
    background: var(--white);
    border: 1px solid #d4d4d4;
    padding: 5px 15px;
    box-shadow: none;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 300;
    outline: none;
    appearance: none;
    transition: all 0.5s ease;
}
@media (max-width: 991.98px) {
    .x-input {
        font-size: 14px;
    }
}
.x-input:hover,
.x-input:focus {
    border-color: var(--black);
}
.x-input::placeholder {
    color: #a4a4a4;
    font-weight: 300;
}
.x-input:read-only {
    color: var(--grey);
}
.x-input:read-only:hover,
.x-input:read-only:focus {
    border-color: var(--grey);
}
.x-input::-webkit-contacts-auto-fill-button,
.x-input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}
.x-input--grey {
    background: #f5f5f5;
}


.x-phone {
    font-style: normal;
}
.x-phone__link {
    font-size: 22px;
    font-weight: 300;
    color: var(--black);
    transition: color 0.5s ease;
}
@media (max-width: 991.98px) {
    .x-phone__link {
        font-size: 18px;
    }
}
.x-phone__link:hover,
.x-phone__link:active,
.x-phone__link:focus-visible {
    color: var(--red);
}
.x-phone__text {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    color: #333333;
}
@media (max-width: 991.98px) {
    .x-phone__text {
        font-size: 12px;
    }
}
.x-payment__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (max-width: 991.98px) {
    .x-payment__list {
        gap: 5px 10px;
    }
}

.x-social {
    font-style: normal;
}
.x-social__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.x-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    line-height: 1;
    color: var(--white);
    background: var(--black);
    border-radius: 50%;
    transition: all 0.5s ease;
}
.x-user-nav__title a{
    color: #ffff;
}
@media (max-width: 991.98px) {
    .x-social__link {
        width: 32px;
        height: 32px;
    }
}
.x-social__link:hover,
.x-social__link:active,
.x-social__link:focus-visible {
    background: var(--red);
    color: var(--white);
}
@media (max-width: 991.98px) {
    .x-social__icon {
        width: 16px;
        height: 16px;
    }
}

.x-header__filter-row {
    display: none;
    padding: 15px 0;
    border-top: 1px solid #eaeaea;
}
@media (max-width: 767.98px) {
    .x-header__filter-row {
        display: block;
    }
}
.x-footer {
    background: var(--white);
}
.x-footer__container {
    padding: 24px 4rem;
}
.x-footer__row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 12px;
}
@media (max-width: 991.98px) {
    .x-footer__row {
        grid-template-columns: repeat(12, 1fr);
        gap: 44px 12px;
    }
}
@media (max-width: 767.98px) {
    .x-footer__row {
        gap: 32px 0;
    }

    .x-footer__container {
        padding: 30px 15px;
    }
}
.x-footer__col {
    grid-column: 2 span;
}
@media (max-width: 991.98px) {
    .x-footer__col {
        grid-column: 4 span;
    }
}
@media (max-width: 767.98px) {
    .x-footer__col:not(:last-child) {
        grid-column: 6 span;
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 32px;
    }
}
@media (max-width: 767.98px) {
    .x-footer__col:last-child {
        grid-column: 12 span;
    }
}
.x-footer__title {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}
@media (max-width: 991.98px) {
    .x-footer__title {
        font-size: 16px;
        margin-bottom: 16px;
    }
}
.x-footer-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.x-footer-menu__item:not(:last-child) {
    margin-bottom: 15px;
}
.x-footer-menu__link {
    font-size: 16px;
    color: var(--black);
    transition: color 0.5s ease;
}
@media (max-width: 991.98px) {
    .x-footer-menu__link {
        font-size: 14px;
    }
}
.x-footer-menu__link:hover,
.x-footer-menu__link:active,
.x-footer-menu__link:focus-visible {
    color: var(--red);
}
.x-footer__phone,
.x-footer__social {
    margin-bottom: 25px;
}
.x-footer__copyright {
    padding: 24px 15px;
    border-top: 1px solid #eaeaea;
    font-size: 16px;
    color: #656565;
    text-align: center;
}
@media (max-width: 991.98px) {
    .x-footer__copyright {
        font-size: 14px;
        padding: 20px 15px;
    }
}
@media (max-width: 767.98px) {
    .x-footer__copyright {
        font-size: 12px;
    }
}
.x-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: calc(var(--vh) * 100);
    outline: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}
@media (min-width: 1200px) {
    .x-mobile-nav {
        display: none;
    }

}
.x-mobile-nav.is-visible {
    opacity: 1;
    visibility: visible;
}
.x-mobile-nav.is-visible .x-mobile-nav__sidebar {
    visibility: visible;
    transform: translateZ(0);
}
.x-mobile-nav__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 360px;
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
    background: var(--white);
    transition: all 0.25s ease;
}
.x-mobile-nav__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: var(--header-scrolling-height, --header-height) 0 30px;
    overflow-y: auto;
    padding-top: 88px;
}
.x-mobile-nav-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.x-mobile-nav-menu__item {
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.x-mobile-nav-menu__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
    transition: color 0.5s ease;
}
.x-mobile-nav-menu__link:hover,
.x-mobile-nav-menu__link:active,
.x-mobile-nav-menu__link:focus-visible {
    color: var(--red);
}
.x-mobile-nav-menu__link.is-active {
    color: var(--red);
}
.x-mobile-nav-menu__arrow {
    margin-left: auto;
    color: var(--red);
    transition: transform 0.5s ease;
}
.x-mobile-nav-menu__sub {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(var(--vh) * 100);
    width: 100%;
    background: var(--white);
    padding: var(--header-scrolling-height, --header-height) 0 0;
    z-index: 1;
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
    transition: all 0.25s ease;
}
.x-mobile-nav-menu__sub.is-visible {
    visibility: visible;
    transform: translateZ(0);
}
.x-mobile-nav-menu__sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.x-filter-toggle{
    transition: color 0.5s ease;
    border: 0;
    background: initial;
}
.x-menu__item .menu__arrow{
    position: relative;
    top: -2px;
}
.x-menu__item.is-active .menu__arrow {
    transform: rotateX(180deg);
}
.x-mobile-nav-menu__sub-item {
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
}
.x-mobile-nav-menu__sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
    transition: color 0.5s ease;
}
.x-mobile-nav-menu__sub-link:hover,
.x-mobile-nav-menu__sub-link:active,
.x-mobile-nav-menu__sub-link:focus-visible {
    color: var(--red);
}
.x-mobile-nav-menu__sub-link.is-active,
.x-mobile-nav-menu__sub-arrow {
    color: var(--red);
}

.x-logo {
    font-size: 0;
    line-height: 1;
}
.x-logo__link {
    display: inline-flex;
    color: var(--red);
    transition: color 0.5s ease;
}
.x-logo__link:hover,
.x-logo__link:active {
    color: var(--red);
}
.x-logo__link:focus-visible {
    color: var(--light-red);
}
.x-logo__img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 767.98px) {
    .x-logo__img--desktop {
        display: none;
    }
}
.x-logo__img--mobile {
    display: none;
}
@media (max-width: 767.98px) {
    .x-logo__img--mobile {
        display: block;
    }
}

.x-actions__list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.x-actions__item {
    position: relative;
    min-width: 108px;
}
@media (max-width: 1199.98px) {
    .x-actions__item {
        min-width: 60px;
    }
}
@media (max-width: 991.98px) {
    .x-actions__item {
        min-width: 0;
    }
}
.x-actions__item:not(:last-child):before {
    position: absolute;
    top: 50%;
    right: -12px;
    margin-top: -9px;
    width: 1px;
    height: 18px;
    background: #e9e9e9;
    content: "";
}

@media (max-width: 991.98px) {
    .x-actions__item--visible-lg {
        display: block;
    }

}

@media (max-width: 991.98px) {
    .x-actions__item--hidden-lg {
        display: none;
    }
}
.x-actions__item--visible-md {
    display: none;
}

@media (min-width: 1200px) {
    .x-menu__link{
        font-weight: 400;
    }
}
@media (max-width: 1200px) {
    .x-actions__item--visible-md {
        display: block;
    }
    .x-actions__item--hidden-lg{
        display: none;
    }
    .x-actions__item--visible-md.x-actions__item--visible-xs{
        display: block;
    }
}
@media (max-width: 767.98px) {
    .x-actions__item--hidden-md {
        display: none;
    }
    .x-actions__item--visible-md{
        display: none;
    }
}
.x-actions__link {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--black);
    white-space: nowrap;
    transition: color 0.5s ease;
}
.x-actions__link:hover,
.x-actions__link:active,
.x-actions__link:focus-visible {
    color: var(--light-red);
}
.x-actions__link.is-active .x-actions__icon {
    color: var(--red);
}
.x-actions__pic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
@media (max-width: 991.98px) {
    .x-actions__pic {
        width: 26px;
        height: 26px;
    }
}
.x-actions__icon {
    color: var(--black);
    transition: color 0.5s ease;
}
.x-actions__count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    line-height: 16px;
}
.x-actions__title {
    line-height: 1;
}
@media (max-width: 1199.98px) {
    .x-actions__title {
        display: none;
    }
}
.x-search {
    position: relative;
    width: 100%;
}
@media (max-width: 767.98px) {
    .x-search {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0 15px 12px;
        background: var(--white);
        border-bottom: 1px solid #eaeaea;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
    }
    .x-search.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.x-search-toggle {
    display: flex;
    transition: color 0.5s ease;
    border: 0;
    background: initial;
}
.x-search-toggle.is-active {
    color: var(--red);
}
@media (max-width: 767.98px) {
    .x-search-toggle {
        display: flex;
    }
    .x-filter-toggle{
        padding: 0;
    }
}
.x-search-form__group {
    display: flex;
}
.x-search-form__input {
    height: 40px;
    border: 1px solid #a4a4a4;
    border-right: none;
}
.x-search-form__button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 5px;
}
.x-search-result {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 700px;
    z-index: 1;
    background: var(--white);
    max-height: 214px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 4px 12px #00000014;
    transition: all 0.25s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--black) #ededed;
}
.x-search-result::-webkit-scrollbar {
    width: 3px;
}
.x-search-result::-webkit-scrollbar-track {
    background: #ededed;
    border-radius: 3px;
}
.x-search-result::-webkit-scrollbar-thumb {
    border: none;
    background-color: var(--black);
    border-radius: 3px;
}
@media (max-width: 991.98px) {
    .x-search-result {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }
}
.x-search-result.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.x-search-result__left {
    grid-column: 4 span;
    background: #f6f6f6;
    padding: 14px;
}
@media (max-width: 991.98px) {
    .x-search-result__left {
        grid-column: 5 span;
    }
}
.x-search-result__right {
    grid-column: 8 span;
    padding: 14px;
}
@media (max-width: 991.98px) {
    .x-search-result__right {
        grid-column: 7 span;
    }
}
.x-search-result__list {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.36;
}
.x-search-result__item:not(:last-child) {
    margin-bottom: 14px;
}
.x-search-result__link {
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    transition: color 0.5s ease;
}
@media (max-width: 1199.98px) {
    .x-search-result__link {
        font-size: 14px;
    }
}
.x-search-result__link:hover,
.x-search-result__link:active,
.x-search-result__link:focus-visible {
    color: var(--red);
}
.x-search-result__title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 300;
}
.x-search-result__products {
    margin: 0;
    padding: 0;
    list-style: none;
}
.x-search-result__products-item:not(:last-child) {
    margin-bottom: 14px;
}
.x-search-card {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--black);
    transition: color 0.5s ease;
}
@media (max-width: 767.98px) {
    .x-search-card {
        align-items: flex-start;
        gap: 10px;
    }
}
.x-search-card:hover,
.x-search-card:active,
.x-search-card:focus-visible {
    color: var(--red);
}
.x-search-card__picture {
    display: flex;
    width: 70px;
    min-width: 70px;
    height: 70px;
}
@media (max-width: 767.98px) {
    .x-search-card__picture {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
}
.x-search-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.x-search-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}
@media (max-width: 1199.98px) {
    .x-search-card__title {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    .x-search-card__title {
        font-size: 12px;
    }
}
.x-search-card__title:not(:last-child) {
    margin-bottom: 12px;
}
@media (max-width: 767.98px) {
    .x-search-card__title:not(:last-child) {
        margin-bottom: 4px;
    }
}
.x-search-card__descr {
    margin: 0;
    font-size: 14px;
    color: #7c7c7c;
}
@media (max-width: 767.98px) {
    .x-search-card__descr {
        font-size: 12px;
    }
}

.x-menu {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
@media (max-width: 1200px) {
    .x-menu {
        display: none;
    }
}
.x-menu__list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    margin: 0 auto;
    max-width: 1180px;
    list-style: none;
    line-height: 1;
}
.x-menu__item {
    position: relative;
}
.x-menu__item.is-active .x-menu__link {
    color: var(--red);
}
.x-menu__item.is-active .x-menu__arrow {
    transform: rotateX(180deg);
}
.x-menu__item.is-active .x-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.x-menu__link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 15px 0;
    gap: 12px;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #333;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.5s ease;
}
.x-menu__link:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--red);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    content: "";
}
@media (max-width: 1589.98px) {
    .x-menu__link {
        font-size: 14px;
    }
}
@media (max-width: 1199.98px) {
    .x-menu__link {
        font-size: 12px;
    }
}
.x-menu__link:hover,
.x-menu__link:active,
.x-menu__link:focus-visible {
    color: var(--red);
}
.x-menu__link.is-active:before {
    opacity: 1;
    visibility: visible;
}
.x-menu__sub {
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: calc(100% + 30px);
    background: var(--white);
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border: 1px solid #eaeaea;
    transition: all 0.25s ease;
    z-index: 1;
}
.x-menu__sub-item:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
}
.x-menu__sub-link {
    display: block;
    font-size: 16px;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
    padding: 23px 15px;
    transition: color 0.5s ease;
}
@media (max-width: 1589.98px) {
    .x-menu__sub-link {
        font-size: 14px;
    }
}
@media (max-width: 1199.98px) {
    .x-menu__sub-link {
        font-size: 12px;
        padding: 15px;
    }
}
.x-menu__sub-link:hover,
.x-menu__sub-link:active,
.x-menu__sub-link:focus-visible {
    color: var(--red);
}
.x-menu__arrow {
    transition: transform 0.5s ease;
}


.x-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 3;
}
@media (max-width: 991.98px) {
    .x-header {
        position: fixed;
        box-shadow: 0 0 0 1px #eaeaea;
    }
}
.x-header--fixed {
    position: fixed;
}
@media (max-width: 991.98px) {
    .x-header.is-scroll .x-header__sales {
        grid-template-rows: 0fr;
    }
}
.x-header__sales {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.5s;
    background: var(--black);
    color: var(--white);
    font-size: 14px!important;
    line-height: 1.5;
    text-align: center;
    padding: 0 15px;
}
.x-header__sales a,
.x-header__sales p{
    line-height: 1.5!important;
    font-size: 14px!important;
}
@media (max-width: 991.98px) {
    .x-header__sales {
        font-size: 12px;
    }
}
@media (max-width: 767.98px) {
    .x-header__sales {
        line-height: 1.42;
    }
}
.x-header__sales-inner {
    overflow: hidden;
}
.x-header__sales p {
    padding: 6px 0;
    margin: 0;
}
.x-header__sales a {
    color: var(--white);
    text-decoration: underline;
}
.x-header__sales a:hover,
.x-header__sales a:active,
.x-header__sales a:focus-visible {
    color: var(--white);
    text-decoration: underline;
}
.x-header__container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 40px;
    padding-right: 4rem;
    padding-left: 4rem;
}
.x-menu__container{
    padding-right: 4rem;
    padding-left: 4rem;
}
@media (max-width: 991.98px) {
    .x-header__container {
        gap: 24px;
    }
}

.x-header__logo {
    min-width: 115px;
}
@media (max-width: 767.98px) {
    .x-header__logo {
        min-width: 0;
        width: auto;
        margin-right: auto;
    }
}
.x-header__actions {
    margin-left: 40px;
}
@media (max-width: 1589.98px) {
    .x-header__actions {
        margin-left: 0;
    }
}
.x-header__burger {
    display: none;
    border: 0;
    padding: 0;
    background: initial;
}
@media (max-width: 991.98px) {

    .x-header__container {
        padding: 15px 2.6rem;
    }
    .x-footer__container{
        padding-right: 2.6rem;
        padding-left: 2.6rem;
    }
}
@media (max-width: 1200px) {
    .x-header__burger {
        display: flex;
    }
    .x-header__container {
        padding-right: 2.6rem;
        padding-left: 2.6rem;
    }
    .x-menu__container{
        padding-right: 2.6rem;
        padding-left: 2.6rem;
    }
    .x-footer__container{
        padding-right: 2.6rem;
        padding-left: 2.6rem;
    }
}
@media (max-width: 767.98px) {
    .x-header__container {
        gap: 18px;
        padding: 12px 1.6rem;
    }
    .x-footer__container{
        padding-right: 1.6rem;
        padding-left: 1.6rem;
    }
}
.x-user-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: calc(var(--vh) * 100);
    outline: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}
@media (min-width: 992px) {
    .x-user-nav {
        display: none;
    }
}
.x-user-nav.is-visible {
    opacity: 1;
    visibility: visible;
}
.x-user-nav.is-visible .x-user-nav__sidebar {
    visibility: visible;
    transform: translateZ(0);
}
.x-user-nav__sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 360px;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    background: var(--white);
    transition: all 0.25s ease;
}
.x-user-nav__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: var(--header-scrolling-height, --header-height) 0 30px;
    overflow-y: auto;
}
.x-user-nav__header {
    background: #555;
    padding: 15px;
}
.x-user-nav__title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}
.x-user-nav__title span {
    display: block;
    font-size: 22px;
}
.x-user-nav__block {
    padding: 15px 15px 0;
}
.x-user-nav__block:not(:last-child) {
    border-bottom: 3px solid #eaeaea;
}
.x-user-nav__sub-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 400;
}
.x-user-nav__text {
    margin: 0 0 15px;
}
.x-user-nav-menu {
    margin: 0 -15px;
}
.x-user-nav-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.x-user-nav-menu__item:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
}
.x-user-nav-menu__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
    transition: color 0.5s ease;
}
.x-user-nav-menu__link:hover,
.x-user-nav-menu__link:active,
.x-user-nav-menu__link:focus-visible {
    color: var(--red);
}
.x-user-nav-menu__link.is-active {
    color: var(--red);
}
/*footer form*/
.discount-section {
    padding: 40px 0;
    background: var(--black);
}
.discount-section__container {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 60px;
}
.discount-section__col {
    grid-column: 6 span;
}
.discount-section__title {
    margin: 0;
    font-size: 36px;
    color: var(--white);
    text-align: center;
}
.discount-section__offer-form {
    margin-bottom: 14px;
}
.offer-form__group {
    width: 100%;
}
.offer-form .offer-form__button.button {
    width: 220px;
    font-weight: 700;
}
.offer-form .offer-form__input--white.input {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    color: var(--white);
}
.offer-form .offer-form__input.input {
    height: 60px;
    padding-left: 20px;
    background: rgba(255,255,255,.1);
    border-right: none;
}
.offer-form {
    display: flex;
    width: 100%;
}

.offer-form .input {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 0;
    background: rgba(255,255,255,.1);;
    border: 1px solid #D4D4D4;
    padding: 5px 15px;
    box-shadow: none;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 300;
    outline: none;
    appearance: none;
    transition: all .5s ease;
}
.discount-section__info {
    margin: 0;
    font-size: 12px;
    color: #bababa;
}
.offer-form .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    height: 60px;
    min-width: 220px;
    padding: 5px 15px;
    border-radius: 0;
    color: var(--white);
    background: var(--red);
    box-shadow: none;
    transition: all .5s ease;
}

@media (max-width: 992px) {
    .discount-section__col {
        grid-column: 12 span;
    }
    .x-mobile-nav__inner{
        padding-top: 105px;
    }
}
.x-actions__item--visible-xs{
    display: none;
}
@media (max-width: 767px) {
    .offer-form{
        display: block;
    }
    .x-actions__item--visible-xs{
        display: block;
    }
    .x-mobile-nav__inner{
        padding-top: 87px;
    }
    .discount-section__title{
        margin-bottom: 25px;
    }
    .discount-section__info{
        text-align: center;
    }
    .discount-section__container{
        display: block;
    }
    .offer-form .offer-form__button.button {
        width: 100%;
        margin-top: 15px;
    }
    .offer-form .offer-form__input.input {
        border-right: 1px solid #D4D4D4;
    }
}
@media (max-width: 500px){
    .discount-section__title{
        font-size: 30px;
    }
}
@media (max-width: 400px){
    .discount-section__title{
        font-size: 27px;
    }
}