/* Header */
.logo {
  display: flex;
  width: 100%;
  max-height: 100%;
}

.logo a {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
}

.logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.location {
  display: inline-block;
  vertical-align: top;
  position: relative;
  white-space: nowrap;
  font-size: 12px;
  line-height: 15px;
}

.location__btn {
  display: flex;
  align-items: center;
  column-gap: 7px;
  border: none;
  padding: 5px 0;
  background: none;
}

.location__btn-icon {
  width: 15px;
  height: 15px;
  color: var(--accent-color);
}

.location__btn-text {
}

.location__btn-arrow {
  width: 10px;
  height: 10px;
  margin-left: 8px;
}

.location.is-open .location__btn-arrow {
  transform: rotate(180deg);
}

.location__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  box-shadow: var(--box-shadow);
  z-index: 1;
  background: var(--white-color);
  margin-top: 5px;
  overflow: hidden;
  display: none;
}

.location.is-open .location__dropdown {
  display: block;
}

.location__dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.location__dropdown li {
}

.location__dropdown a {
  display: block;
  padding: 6px 22px;
}

.location__dropdown a:hover {
  background-color: var(--light-grey-bg);
  color: var(--secondary-color);
}

.header-phone {
  display: inline-block;
  vertical-align: top;
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 19px;
}

.header-phone__icon {
  flex-shrink: 0;
  color: var(--secondary-color);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-phone__icon .icon {
  width: 100%;
  height: 100%;
}

.header-phone__text {
  line-height: 40px;
  padding-left: 19px;
  border-left: 1px solid var(--border-color);
}

.social-links {
  display: inline-block;
  vertical-align: top;
}

.social-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.social-links li {
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  color: var(--accent-color);
}

.social-links a:hover {
  background-color: var(--grey-bg);
}

.social-links .icon {
  height: 20px;
  width: 20px;
}

.header-callback-btn {
  font-weight: normal;
  text-transform: none;
  padding: 5px 13px;
  margin-top: 9px;
}

.header-schedule {
  border-left: 1px solid var(--border-color);
  padding-left: 19px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}

.header-schedule strong {
  font-weight: inherit;
  color: var(--accent-color);
}

.header-address {
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  border-left: 1px solid var(--border-color);
  padding-left: 19px;
}

.languages {
  display: inline-block;
  vertical-align: top;
  position: relative;
  white-space: nowrap;
  font-size: 12px;
  line-height: 14px;
}

.languages__btn {
  display: flex;
  align-items: center;
  column-gap: 6px;
  border: none;
  padding: 3px 10px;
  background: var(--grey-bg);
  cursor: pointer;
  border-radius: 10px;
}

.languages__btn-content {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.languages__flag {
  flex-shrink: 0;
  width: 19px;
  height: 11px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.languages__flag_ru {
  background-image: url("../../../assets/images/flag-ru.svg");
}

.languages__flag_en {
  background-image: url("../../../assets/images/flag-en.svg");
}

.languages__arrow {
  width: 10px;
  height: 10px;
}

.languages.is-open .languages__arrow {
  transform: rotate(180deg);
}

.languages__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  box-shadow: var(--box-shadow);
  z-index: 1;
  background: var(--white-color);
  margin-top: 5px;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.languages.is-open .languages__dropdown {
  display: block;
}

.languages__dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.languages__dropdown li {
}

.languages__link {
  display: flex;
  column-gap: 6px;
  padding: 6px 10px;
}

.languages__link:hover {
  background-color: var(--light-grey-bg);
}

.languages__link.is-active {
  background-color: var(--light-grey-bg);
}

.header-buttons {
  --gap: 32px;
}

.header-buttons__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  column-gap: var(--gap);
  position: relative;
}

.header-buttons__search {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}

html.is-search-open .header-buttons__search {
  opacity: 1;
  visibility: visible;
}

html.is-search-open .header-button {
  opacity: 0;
  visibility: hidden;
}

.header-buttons__search-inner {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.header-button {
  border: none;
  padding: 0;
  background: none;
  display: flex;
  align-items: flex-start;
  text-align: center;
  font-size: 13px;
  line-height: 16px;
  color: var(--main-color);
  white-space: nowrap;
}

.header-button__content {
  display: block;
}

.header-button__icon-wrapper {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  position: relative;
}

.header-button__icon {
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: 20px;
}

.header-button:hover .header-button__icon {
  color: var(--accent-color);
}

.header-button__count {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 4px;
  width: 20px;
  height: 20px;
  background: var(--grey-bg);
  color: var(--main-color);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-button.is-active .header-button__count {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.header-button__title {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  line-height: 12px;
}

.header-button__header {
  display: flex;
}

.header-button__header .header-button__count {
  position: static;
  margin: 0;
}

.header-button__text {
  border-left: 1px solid var(--border-color);
  margin-left: 8px;
  padding-left: 8px;
  font-weight: 600;
  line-height: 20px;
}

.header-buttons._inline .header-button {
  align-items: center;
}

.header-buttons._inline .header-button__content {
  display: flex;
  align-items: center;
}

.header-buttons._inline .header-button__count {
  position: static;
  vertical-align: middle;
  margin-left: 7px;
}

.header-buttons._inline .header-button__title {
  display: none;
  margin: 0 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: inherit;
}

.header-buttons._inline .header-button__header {
  margin: 0;
}

.search {
  flex-grow: 1;
  min-width: 1px;
}

.search__form {
  position: relative;
}

.search__input {
  background-color: var(--grey-bg);
  border-color: var(--grey-bg);
  border-radius: 0;
  height: 44px;
  padding: 11px 19px;
  line-height: 20px;
  padding-right: 40px;
}

.search label.error {
  display: none !important;
}

.search__btn {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  padding: 0;
  background: none;
  color: var(--main-color);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search__btn .icon {
  width: 20px;
  height: 20px;
}

.search-block {
  flex-grow: 1;
  min-width: 1px;
}

.search-block__form {
  position: relative;
  padding: 3px;
  border: 1px solid var(--grey-bg);
  border-radius: 3px;
  display: flex;
}

.search-block__form:has(.search-block__input.error) {
  border-color: var(--error-color);
}

.search-block__select-wrapper {
  flex-shrink: 0;
}

.search-block__select {
  height: 36px;
  font-weight: normal;
  background-color: var(--grey-bg);
  border-color: var(--grey-bg);
  border-radius: 2px;
  color: var(--main-color);
}

.search-block__select,
.search-block__select .jq-selectbox__select,
.search-block__select .jq-selectbox__dropdown li {
  padding: 7px 11px 8px;
}

.search-block__select,
.search-block__select .jq-selectbox__select {
  padding-right: 30px;
}

.search-block__select .jq-selectbox__dropdown {
  border-color: var(--grey-bg);
}

.search-block__input-wrapper {
  flex-grow: 1;
  min-width: 1px;
}

.search-block__input {
  flex-grow: 1;
  background: none;
  border: none;
  border: 0;
  padding: 7px 20px 6px;
  line-height: 23px;
  height: auto;
  box-shadow: none !important;
}

.search-block__input:-ms-input-placeholder {
  color: var(--main-color);
}

.search-block__input::placeholder {
  color: var(--main-color);
}

.search-block label.error {
  display: none !important;
}

.search-block__btn {
  flex-shrink: 0;
  border: none;
  padding: 0;
  background: none;
  color: var(--main-color);
  width: 50px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-block__btn .icon {
  width: 20px;
  height: 20px;
}

.menu {
  font-weight: 600;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  column-gap: 8px;
}

.menu a > span {
  flex-grow: 1;
  min-width: 1px;
}

.menu a > span.menu__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  overflow: hidden;
}

.menu a:hover > span.menu__icon {
  border-color: var(--accent-color);
}

.menu a > span.menu__icon img {
  display: block;
  width: 24px;
  height: 24px;
  margin: -1px;
  border-radius: 50%;
  max-width: none;
}

.menu__toggle-btn {
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 0;
  transition: none;
}

.menu__toggle-btn .icon {
  width: 10px;
  height: 10px;
}

html.is-catalog-menu-open .js-catalog-menu-btn .menu__toggle-btn .icon {
  transform: rotate(180deg);
}

.header,
.mobile-header {
  background-color: var(--white-color);
  position: relative;
  z-index: 1002;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid var(--border-color);
}

.header:has(~ .header-catalog-row),
.header:has(.header__primary-menu._bg:last-child),
.mobile-header:has(~ .mobile-catalog-row) {
  border-bottom: none;
}

.header__main {
}

.header__main-inner {
  display: flex;
  height: 140px;
}

.header__main-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 25%;
  padding: 15px 0;
  padding-right: 20px;
}

.header__main-center {
  flex-grow: 1;
  min-width: 1px;
  position: relative;
  display: flex;
  align-items: center;
}

.header__main-right {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 16px;
}

.header__phone-row {
  display: flex;
  vertical-align: top;
  align-items: center;
  column-gap: 24px;
}

.header__location {
  position: absolute;
  left: 0;
  top: 7px;
}

.header__contacts {
}

.header__languages {
  position: absolute;
  right: 0;
  top: 9px;
}

.header__buttons {
}

.header__search {
  width: 100%;
}

.header__top,
.mobile-header__top {
  border-bottom: 1px solid var(--border-color);
}

.header__top-inner {
  display: flex;
  align-items: center;
}

.header__top-search {
  flex-grow: 1;
  min-width: 1px;
  padding: 8px 0;
}

.header__top-menu {
  flex-grow: 1;
  min-width: 1px;
}

.header__top-search .search__input {
  background-color: var(--grey-bg);
  border-color: var(--grey-bg);
  height: 44px;
  padding: 11px 14px;
  padding-right: 44px;
}

.header__top-search .search__input:focus-visible {
  border-color: var(--accent-color);
}

.header__top-search .search__btn {
  width: 44px;
  height: 44px;
}

.header__primary-menu {
  border: 1px solid var(--border-color);
  border-width: 1px 0 0;
  background-color: var(--white-color);
}

.header__primary-menu._sticky {
  z-index: 1001;
}

.header__primary-menu._sticky.is_stuck {
  border-width: 0 0 1px;
}

.header__primary-menu._bg {
  border: none;
}

.header__primary-menu-inner {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.header__primary-menu-left {
  flex-grow: 1;
  min-width: 1px;
}

.header__primary-menu .menu > ul {
  justify-content: center;
}

.header-catalog-row,
.header__primary-menu._bg,
.mobile-catalog-row {
  border: 1px solid var(--border-color);
  border-width: 1px 0;
  background-color: var(--white-color);
}

.header-catalog-row,
.mobile-catalog-row {
  position: sticky;
  z-index: 1001;
  left: 0;
  right: 0;
  top: 0;
}

.header-catalog-row__inner {
  margin: -1px 0;
  display: flex;
  align-items: center;
}

.header-catalog-row__left {
  flex-shrink: 0;
}

.header-catalog-row__center {
  flex-grow: 1;
  min-width: 1px;
}

.header-catalog-row__right {
  flex: 0 0 auto;
  width: 36.2%;
  text-align: right;
}

.header-catalog-row
  .header-buttons._inline
  .header-button_account
  .header-button__title {
  display: block;
}

.header-catalog-row .header-button,
.header__primary-menu._bg .header-button {
  color: inherit;
}

.header-catalog-row__center .search {
  margin: 0 40px 0 10px;
}

.header-catalog-row .menu {
  font-weight: bold;
}

.header-catalog-row__center .menu {
  margin: 0 40px;
}

.header__top .menu > ul {
  justify-content: center;
}

.header__top-search + .header__top-menu .menu > ul {
  justify-content: flex-end;
}

.header-catalog-row__right .search__input {
  background-color: var(--white-color);
  border-color: var(--border-color);
  height: 60px;
  padding: 19px;
  padding-right: 50px;
}

.header-catalog-row__right .search__input:focus-visible,
.header-catalog-row__right .search__input.valid {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px inset var(--accent-color);
}

.header-catalog-row__right .search__btn {
  width: 60px;
  height: 60px;
}

.header-marquee {
  background-color: var(--main-color);
  color: var(--white-color);
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  padding: 5px 0;
}

.header-marquee > .container {
  max-width: none;
}

@media (min-width: 1200px) {
  .mobile-menu,
  .mobile-header,
  .mobile-catalog-row,
  .mobile-footer-buttons {
    display: none;
  }

  .menu > ul {
    display: flex;
    column-gap: 64px;
  }

  .menu > ul > li {
    position: relative;
  }

  .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -1px;
    min-width: 100%;
    box-shadow: var(--box-shadow);
    z-index: 1;
    background: #fff;
    color: var(--main-color);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    text-transform: none;
  }

  .menu > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .menu > ul > li > a {
    height: 60px;
  }

  .menu > ul > li > ul a {
    padding: 8px 16px;
  }

  .menu > ul > li > ul a:hover {
    background-color: var(--grey-bg);
  }

  .menu > ul > li:hover > a {
    color: var(--accent-color);
  }
}
/* ! Header */

/* Header 2 */
.header_2 .header__phone-block {
  position: relative;
  border-left: 1px solid var(--input-border-color);
  padding-left: 28px;
}

.header_2 .header__main-center,
.header_2 .header__main-right {
  padding-top: 28px;
}

.header_2 .header__main-left {
  padding-right: 80px;
  width: 28%;
}

.header_2 .header__main-right {
  width: 30%;
}

.header_2 .header__location {
  left: 27px;
}

.header_2 .header__primary-menu {
  border-width: 0;
}

.header_2 .header__phone-block .header-phone__icon {
  position: absolute;
  left: -54px;
  top: 50%;
  margin-top: -12px;
}

.header_2 .header__phone-block .header-phone__text {
  padding-left: 0;
  border-left: none;
}
/* ! Header 2 */

/* Header 3 */
.header__center-inner {
  display: flex;
  height: 139px;
}

.header__center-center {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.header__center-left {
  flex: 0 0 auto;
  width: calc(50% - 100px);
  position: relative;
  display: flex;
  align-items: center;
}

.header__center-right {
  flex: 0 0 auto;
  width: calc(50% - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 6px;
}

.header__contacts-field {
  display: flex;
  align-items: center;
}

.header__contacts-field-phone {
}

.header__contacts-field-aside {
  padding-left: 19px;
}

.header__center .logo a {
  margin: 0 auto;
  justify-content: center;
}

.header__center .header-phone__text {
  padding-left: 0;
  border-left: none;
}

.header__contacts-field .search__input {
  background-color: var(--grey-bg);
  border-color: var(--grey-bg);
}

.header__contacts-field .search__input:focus-visible {
  border-color: var(--accent-color);
}

.header__menu .menu {
  font-size: 13px;
  line-height: 22px;
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
}

.header__menu .menu > ul {
  flex-wrap: wrap;
  column-gap: 27px;
}

.header__menu .menu > ul > li > a {
  height: 30px;
}

.header_3-7 .header__center-right {
  justify-content: space-between;
  column-gap: 36px;
  padding-top: 0;
  padding-left: 20px;
}

.header_3-7 .header__phone-block {
  margin-bottom: -6px;
}

.header_3-7 .header__phone-block .header__phone-row {
  column-gap: 10px;
}

.header_3-7 .header__phone-block .header-phone {
  font-size: 20px;
  line-height: 1.2;
}

.header_3-7 .header__phone-block .header-phone__text {
  line-height: inherit;
}

.header_3-7 .header__phone-block .header-phone__icon {
  display: none;
}

.header_3-7 .header__phone-block .social-links a {
  width: 30px;
  height: 30px;
}

.header_3-7 .header__phone-block .social-links .icon {
  width: 16px;
  height: 16px;
}

.header_3-7 .header__phone-block .header-callback-btn {
  color: var(--accent-color);
  font-size: 13px;
  line-height: 20px;
  margin: 0 0 0 5px;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.header_3-7 .header__phone-block .header-callback-btn:hover {
  color: var(--main-color);
}

.header_3-7 .header-buttons._inline {
  --gap: 20px;
}

.header_3-7 .header-buttons._inline .header-button__count {
  margin-left: 7px;
}

@media (max-width: 1399.98px) {
  .header_3-7 .header__menu .menu > ul {
    column-gap: 15px;
  }

  .header_3-7 .header__center-right {
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-end;
    padding-left: 0;
    column-gap: 15px;
    row-gap: 5px;
  }

  .header_3-7 .header__phone-block {
    margin-bottom: 0;
  }

  .header_3-7 .header__phone-block .header__phone-row {
    column-gap: 5px;
  }

  .header_3-7 .header__phone-block .header-phone {
    font-size: 18px;
  }

  .header_3-7 .header__phone-block .social-links a {
    width: 26px;
    height: 26px;
  }

  .header_3-7 .header__phone-block .social-links .icon {
    width: 14px;
    height: 14px;
  }

  .header_3-7 .header-buttons._inline {
    --gap: 16px;
  }
}
/* ! Header 3 */

/* Header 4 */
.header_4 .header__main-inner {
  height: 90px;
  column-gap: 48px;
}

.header_4 .header__main-left {
  width: auto;
  padding: 0;
}

.header_4 .header__main-right {
  width: auto;
  padding: 0;
}

.header_4 .header__main-center {
  flex-grow: 1;
  min-width: 1px;
  padding: 0;
}

.header_4 .logo {
  max-width: 145px;
}

.header_4 .header__menu {
  width: 100%;
}

.header_4 .header__menu .menu > ul {
  column-gap: 20px;
  justify-content: space-between;
}

.header_4 .header-phone {
  font-size: 20px;
  line-height: 1;
}

.header_4 .header-phone a {
  column-gap: 10px;
}

.header_4 .header-phone__icon {
  width: 20px;
  height: 20px;
}

.header_4 .header-phone__text {
  line-height: inherit;
  padding: 0;
  border: none;
}

@media (max-width: 1399.98px) {
  .header_4 .header__main-inner {
    column-gap: 30px;
  }
}
/* ! Header 4 */

/* Header full width */
.header-cell-item {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}

.header-cell-item > .icon {
  color: var(--accent-color);
  width: 16px;
  height: 16px;
}

.header-logo-cell {
  display: flex;
  max-height: 100%;
  padding: 5px 0;
  min-width: 150px;
}

.header-location-cell .location__btn-icon {
  display: none;
}

.header-location-cell .location__dropdown a {
  padding-left: 15px;
  padding-right: 15px;
}

.header-contacts-cell a {
  color: inherit;
  text-decoration: none;
}

.header-contacts-cell__phone {
  font-size: 14px;
  font-weight: bold;
}

.header-schedule-cell {
  white-space: nowrap;
}

.header-schedule-cell strong {
  font-weight: inherit;
}

.header-address-cell {
  max-width: 440px;
}

.header-languages-cell .languages__link {
  border-radius: 3px;
}

.header_full-width .header__main-inner {
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  height: 70px;
  font-size: 13px;
  line-height: 18px;
}

.header_full-width .header__primary-menu .menu {
  font-size: 14px;
  line-height: 16px;
}

.header_full-width .header__primary-menu .menu > ul {
  justify-content: flex-start;
  column-gap: 50px;
}

.header_full-width .header__primary-menu .menu > ul > li > a {
  height: 60px;
}

@media (min-width: 1900px) {
  .header_full-width .header__primary-menu .header-buttons._inline {
    --gap: 50px;
  }
}

@media (max-width: 1599.98px) {
  .header_full-width .header__primary-menu .menu > ul {
    column-gap: 30px;
  }
}

@media (max-width: 1399.98px) {
  .header_full-width .header__primary-menu .header-buttons._inline {
    --gap: 20px;
  }

  .header_full-width .header__primary-menu .menu > ul {
    column-gap: 20px;
  }
}
/* ! Header full width */

/* Marketplace Header */
.marketplace-header {
  border-bottom: 1px solid var(--border-color);
}

.marketplace-header__top .menu {
  font-size: 13px;
  line-height: 21px;
}

.marketplace-header__top .menu > ul {
  column-gap: 10px;
  justify-content: space-between;
}

.marketplace-header__top .menu > ul > li > a {
  height: 56px;
}

.marketplace-header__menu {
  padding-top: 5px;
}

.marketplace-header__menu .menu {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}

.marketplace-header__menu .menu > ul {
  height: 60px;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 10px;
}

.marketplace-header__menu .menu > ul > li > a {
  height: 60px;
  column-gap: 10px;
}

.marketplace-header__main {
  background: #fff;
  position: relative;
  z-index: 1001;
}

.marketplace-header__main.is_stuck {
  box-shadow: 0 1px 0 0 var(--border-color);
}

.marketplace-header__main-inner {
  display: flex;
  align-items: center;
}

.marketplace-header__logo {
  flex-shrink: 0;
  height: 47px;
  margin-right: 29px;
  max-width: 200px;
}

.marketplace-header__search-row {
  flex-grow: 1;
  min-width: 1px;
  padding: 8px 0;
}

.marketplace-header__search-row-inner {
  display: flex;
  column-gap: 15px;
}

.marketplace-header__menu-btn-col {
  flex-shrink: 0;
}

.marketplace-header .catalog-menu-btn {
  height: 44px;
}

.marketplace-header__search-col {
  flex-grow: 1;
  min-width: 1px;
}

.marketplace-header__buttons {
  margin-left: 30px;
}

.marketplace-header .header-buttons__wrapper {
  column-gap: 36px;
}

.marketplace-header__search-row.is_stuck {
  position: static !important;
  width: auto !important;
  box-shadow: none !important;
}

.marketplace-header__search-row.is_stuck + div {
  display: none !important;
}
/* ! Marketplace Header */

/* Mobile Header */
@media (max-width: 1199.98px) {
  .mobile-menu__bg {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 90001;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: 0.25s ease-in-out;
  }

  html.is-menu-open .mobile-menu__bg {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__inner {
    position: fixed;
    z-index: 90002;
    top: 0;
    bottom: 0;
    left: -280px;
    width: 280px;
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: 0.25s ease-in-out;
  }

  html.is-menu-open .mobile-menu__inner {
    transform: translateX(100%);
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu__close {
    display: none;
    position: absolute;
    right: -35px;
    top: 5px;
    z-index: 1;
    background-color: var(--grey-bg);
  }

  html.is-menu-open .mobile-menu__close {
    display: block;
  }

  .mobile-menu__content {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .menu > ul {
    display: block;
  }

  .menu__toggle-btn {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey-bg);
  }

  .menu__toggle-btn .icon {
    width: 14px;
    height: 8px;
  }

  .menu li.is-mob-open > a .menu__toggle-btn .icon {
    transform: rotate(180deg);
  }

  .js-catalog-menu-btn .menu__toggle-btn .icon {
    transform: rotate(-90deg) !important;
  }

  .menu a {
    height: auto;
    min-height: 40px;
    padding: 5px 15px;
  }

  .menu a:active {
    background-color: var(--grey-bg);
  }

  .menu li li a {
    padding-left: 25px;
  }

  .menu li > ul {
    display: none;
  }

  .menu li.is-mob-open > ul {
    display: block;
  }

  .header,
  .header-catalog-row,
  .marketplace-header {
    display: none;
  }

  .mobile-header {
    font-size: 12px;
    line-height: 18px;
  }

  .mobile-header__top {
    --space: 3px;
    padding: var(--space) 0;
  }

  .mobile-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
  }

  .mobile-header__top .location__dropdown {
    margin-top: var(--space);
  }

  .mobile-header__top-left {
    margin-right: auto;
  }

  .mobile-header__top-right {
    margin-left: auto;
  }

  .mobile-header__main {
    --space: 15px;
    padding: var(--space) 0;
  }

  .mobile-header__main-inner {
    display: flex;
    align-items: center;
    column-gap: 8px;
  }

  .mobile-header__main-left {
    max-width: 45%;
    max-height: 80px;
    margin-right: auto;
    display: flex;
  }

  .mobile-header__main-right {
    max-width: 55%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    --space: 8px;
    row-gap: var(--space);
  }

  .mobile-header__main-left:last-child,
  .mobile-header__main-right:first-child {
    max-width: 100%;
    margin-right: 0;
    flex-grow: 1;
    min-width: 1px;
    align-items: center;
    text-align: center;
  }

  .mobile-header__main-left:last-child .logo {
    justify-content: center;
  }

  .mobile-catalog-row__inner {
    display: flex;
    align-items: center;
    height: 60px;
    column-gap: 8px;
  }

  .mobile-catalog-row__left {
    flex-shrink: 0;
  }

  .mobile-catalog-row__right,
  .mobile-catalog-row__left:last-child {
    flex-grow: 1;
    min-width: 1px;
  }

  .mobile-catalog-row__right,
  .mobile-catalog-row__left:last-child .catalog-menu-btn {
    width: 100%;
    justify-content: center;
  }

  .location,
  .languages {
    font-size: inherit;
    line-height: inherit;
  }

  .header-phone {
    font-size: 16px;
    line-height: 20px;
  }

  .header-phone a {
    column-gap: 8px;
  }

  .header-phone__icon {
    width: 16px;
    height: 16px;
  }

  .header-phone__text {
    line-height: inherit;
    padding-left: 0;
    border-left: none;
  }

  .header-callback-btn {
    font-size: inherit;
    line-height: inherit;
    padding: 3px 11px;
    margin: 0;
  }

  .header-schedule,
  .header-address {
    border: none;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
  }

  .mobile-footer-buttons {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1010;
    background-color: var(--accent-color);
    color: var(--white-color);
  }

  .header-buttons__wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    column-gap: 0 !important;
  }

  .header-button {
    height: 60px;
    flex-grow: 1;
    justify-content: center;
    padding-top: 8px;
    font-size: 14px;
    color: var(--white-color);
  }

  .header-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--white-color);
  }

  .header-button:hover .header-button__icon {
    color: inherit;
  }

  .header-button__title {
    margin-top: 5px;
  }

  .header-button__count {
    background-color: var(--white-color);
    color: var(--accent-color);
  }

  .header-button:not(.is-active) .header-button__count {
    display: none;
  }

  .header-button.is-active .header-button__count {
    background-color: var(--white-color);
    color: var(--accent-color);
  }
}
/* ! Mobile Header */
