@charset "UTF-8";
body.drawer-open {
  overflow: hidden;
}
body.drawer-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  backdrop-filter: blur(1px);
}

.nav-left-side {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 10px;
}
@media (max-width: 470px) {
  .nav-left-side {
    margin-top: 0;
  }
}

/* Бургер */
.burger-icon {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 1100;
}
@media (max-width: 1200px) {
  .burger-icon {
    display: flex;
  }
}
.burger-icon span {
  display: block;
  width: 100%;
  position: relative;
  height: 3px;
  border-radius: 50px;
  background: #000;
  border-radius: 2px;
  transition: all 0.25s;
}

/* Навигация */
.mobile-menu {
  --color-active: #c70d0d;
  position: fixed;
  inset: 0 0 0 -85%;
  width: 85%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  scrollbar-width: thin;
  transition: inset 0.35s ease;
  z-index: 1002;
  box-shadow: none;
}
.mobile-menu.open {
  inset: 0 15% 0 0;
  box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25);
}

.menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px 16px 4px;
}

.close-btn {
  font-size: 32px !important;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

/* Меню */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  transition: 0.2s ease all;
}

.menu-item-icon {
  margin: 0;
  padding: 0;
  position: relative;
  top: 1px;
  width: 16px;
  height: 16px;
  color: #929292;
  margin-right: 9px;
}

.menu-heading-wrapper {
  display: inline;
  width: 100%;
}

.menu-link, .menu-toggle {
  padding: 15px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #111;
  text-decoration: none !important;
  transition: 0.2s ease all;
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: transparent;
  border: none;
  text-align: left;
  flex-grow: 2;
  flex-direction: row;
  word-break: break-word;
  hyphens: auto;
}

.menu-toggle {
  align-items: flex-start;
  flex-grow: 1;
  font-family: inherit;
}

.submenu--1-level .menu-link, .submenu--1-level .menu-toggle, .submenu--2-level .menu-link, .submenu--2-level .menu-toggle {
  padding: 7px 20px;
  font-size: 0.9rem;
}

.arrow-wrapper {
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  position: relative;
  transition: transform 0.25s;
  transform: rotate(-90deg);
}

.menu-item.open > .menu-item-head .arrow-wrapper {
  transform: rotate(0deg);
}

.menu-list > .menu-item.open > .menu-item-head {
  background-color: black;
  color: white;
}
.menu-list > .menu-item.open > .menu-item-head .menu-toggle {
  color: white;
}
.menu-list > .menu-item.open > .menu-item-head .menu-item-icon {
  color: white;
}

.submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin-left: 1rem;
  margin: 0;
  margin-left: 1.7rem;
  position: relative;
}
.submenu::before {
  height: 92%;
  width: 1px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #d6d6d6;
}
.open > .submenu {
  display: block;
}/*# sourceMappingURL=mobile-nav.styles.css.map */