.header-mobile {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  padding-block: 24px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile__burger .burger-button {
  height: 22px;
}
.header-mobile__burger .burger-button span {
  top: 50%;
  background-color: #ff7100;
}
.header-mobile__logo {
  margin-left: 17px;
  flex: 1;
  max-width: 150px;
  width: 100%;
}
@media (max-width: 375px) {
  .header-mobile__logo {
    margin-left: 10px;
    max-width: 120px;
  }
}
.header-mobile__logo span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile__logo span svg {
  max-height: 17px;
}
.header-mobile__buttons {
  margin-left: auto;
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: repeat(3, 24px);
}
@media (max-width: 375px) {
  .header-mobile__buttons {
    gap: 10px;
  }
}
.header-mobile__button {
  padding: 0;
}
.header-mobile__button:hover span svg {
  color: #ff7100;
}
.header-mobile__button span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile__button span svg {
  width: 21px;
  height: 21px;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}

.header-mobile-modal-wrap {
  position: fixed;
  overflow-y: auto;
  height: 100%;
  max-height: 100vh;
  width: 100%;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}

.header-mobile-sidebar {
  top: 0;
  left: 0;
  z-index: 15;
  transform: translateX(-100%);
}
.header-mobile-sidebar.active {
  transform: translateX(0);
}
.header-mobile-sidebar__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.header-mobile-sidebar__header {
  padding-block: 24px;
}
.header-mobile-sidebar__header_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-mobile-sidebar__logo {
  flex: 1;
  max-width: 200px;
  width: 100%;
}
.header-mobile-sidebar__logo span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-sidebar__logo span svg {
  max-height: 21px;
}
.header-mobile-sidebar__close span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.header-mobile-sidebar__close span svg {
  width: 24px;
  height: 24px;
}
.header-mobile-sidebar__content {
  flex: 1;
}
.header-mobile-sidebar__user a,
.header-mobile-sidebar__user button {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background-color: #f6f6f6;
  width: 100%;
}
.header-mobile-sidebar__user a:hover p,
.header-mobile-sidebar__user button:hover p {
  color: #ff7100;
}
.header-mobile-sidebar__user a:hover .icon-user svg,
.header-mobile-sidebar__user button:hover .icon-user svg {
  color: #ff7100;
}
.header-mobile-sidebar__user a span,
.header-mobile-sidebar__user button span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-sidebar__user a .icon-arrow,
.header-mobile-sidebar__user button .icon-arrow {
  margin-left: auto;
}
.header-mobile-sidebar__user a p,
.header-mobile-sidebar__user button p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #3f4041;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.header-mobile-sidebar__user_button {
  padding: 17px 20px;
}
.header-mobile-sidebar__user_button .icon-user svg {
  width: 20px;
  height: 20px;
  color: #3f4041;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.header-mobile-sidebar__user_button .icon-arrow {
  height: 14px;
  width: 14px;
}
.header-mobile-sidebar__user_button .icon-arrow svg {
  width: 14px;
  height: 9px;
  color: #262627;
  transform: rotate(-90deg);
}
.header-mobile-sidebar__catalog-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #262627;
  padding-block: 17px;
  padding-inline: 20px;
}
.header-mobile-sidebar__catalog-button span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-sidebar__catalog-button span svg {
  width: 14px;
  height: 9px;
  color: #262627;
  transform: rotate(-90deg);
}
.header-mobile-sidebar__footer {
  margin-top: 40px;
  padding: 40px 15px 100px 15px;
  background-color: #f6f6f6;
}
.header-mobile-sidebar__footer_body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.header-mobile-sidebar__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: max-content;
}
.header-mobile-sidebar__contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header-mobile-sidebar__contacts_mail {
  padding-block: 5px;
  color: #ff7100;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.36;
}
.header-mobile-sidebar__contacts_mail span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-sidebar__contacts_mail span svg {
  width: 20px;
  height: 20px;
}
.header-mobile-sidebar__contacts_phone {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #000;
}
.header-mobile-sidebar__docs {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
.header-mobile-sidebar__doc {
  flex: 1;
  max-width: 170px;
  width: 100%;
  position: relative;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.header-mobile-sidebar__doc_header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-mobile-sidebar__doc_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-sidebar__doc_icon svg {
  width: 20px;
  height: 20px;
}
.header-mobile-sidebar__doc_info {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.header-mobile-sidebar__doc_info span {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.24;
  color: #3f4041;
  opacity: 0.6;
}
.header-mobile-sidebar__doc_name {
  display: block;
  margin-top: auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.36;
  color: #3f4041;
  max-width: 100px;
}
.header-mobile-sidebar__doc_link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.header-mobile-sidebar__accordion {
  padding-inline: 20px;
}
.header-mobile-sidebar__accordion .nav-accordion__category {
  color: #3f4041;
  border-bottom: 1px solid #eaeaea;
}
.header-mobile-sidebar__accordion .nav-accordion__category span {
  padding: 2px;
}
.header-mobile-sidebar__accordion .nav-accordion__category svg {
  color: #262627;
}
.header-mobile-sidebar__accordion .nav-accordion__list li {
  color: #3f4041;
  opacity: 1;
}
.header-mobile-sidebar__lk {
  position: relative;
  padding: 24px 15px;
}
.header-mobile-sidebar__lk .lk-sidebar {
  position: relative;
  top: auto;
}
.header-mobile-sidebar__lk .lk-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.header-mobile-sidebar__lk .lk-sidebar__header_about {
  color: #262627;
}

.header-mobile-catalog {
  top: 0;
  right: 0;
  z-index: 16;
  transform: translateX(100%);
}
.header-mobile-catalog.active {
  transform: translateX(0);
}
.header-mobile-catalog__close {
  position: absolute;
  top: 20px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 2px;
}
.header-mobile-catalog__close svg {
  width: 100%;
  height: 100%;
}
.header-mobile-catalog__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding-block: 22px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fff;
}
.header-mobile-catalog__header_back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.header-mobile-catalog__header_back svg {
  width: 24px;
  height: 24px;
  color: #3f4041;
}
.header-mobile-catalog__header_title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #262627;
}
.header-mobile-catalog__body {
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 70px;
  padding-bottom: 40px;
  padding-inline: 20px;
  height: 100%;
}
.header-mobile-catalog__list_item_link {
  padding-block: 12px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.36;
  color: #3f4041;
  cursor: pointer;
}

.header-mobile-search {
  bottom: 0;
  left: 0;
  z-index: 15;
  transform: translateY(100%);
}
.header-mobile-search.active {
  transform: translateY(0);
}
.header-mobile-search .search-field .search-field__header {
  padding-block: 15px;
}
.header-mobile-search .search-field .search-field__results {
  position: relative;
  top: auto;
  right: auto;
  border-radius: 0;
  height: 100%;
  max-height: none;
}
.header-mobile-search .search-field .search-field__results.active {
  max-height: max-content;
}
.header-mobile-search .search-field .search-field__results_body {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.header-mobile-search .search-field .search-field__results_list {
  margin: 0;
  max-height: calc(100vh - 155px);
  padding-bottom: 70px;
}
.header-mobile-search .search-field .search-field__results_footer {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 2;
}

.header-mobile-user {
  top: 0;
  right: 0;
  z-index: 16;
  overflow: hidden;
  transform: translateX(100%);
}
.header-mobile-user.active {
  transform: translateX(0);
}
.header-mobile-user .container, .header-mobile-user .header-mobile-user__content, .header-mobile-user .login-register-block, .header-mobile-user .login-register-block__body, .header-mobile-user .login-register-block__content {
  height: 100%;
}
.header-mobile-user__close {
  position: absolute;
  top: 20px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 2px;
}
.header-mobile-user__close svg {
  width: 100%;
  height: 100%;
}
.header-mobile-user__content .login-register-block__tabs {
  padding-block: 24px;
}
.header-mobile-user__content .login-register-block__content {
  overflow-y: auto;
  max-height: calc(100vh - 50px);
  padding-bottom: 150px;
  margin-right: -15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .header-mobile-user__content .login-register-block__content {
    overflow-y: hidden;
    max-height: none;
    margin-right: 0;
    padding-right: 0;
  }
}

.header-mobile-confirm {
  bottom: 0;
  left: 0;
  z-index: 16;
  transform: translateY(100%);
}
.header-mobile-confirm.active {
  transform: translateY(0);
}