
.left-menu {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  transition: all 0.1s ease-in-out;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  visibility: visible;
  display: none;
}
@media (max-width: 1024px) {
  .left-menu {
    display: block;
  }
}

.left-menu__container {
  overflow: hidden;
  height: calc(100vh);
  width: 100%;
  max-width: 320px;
  background-color: var(--main-background-color);
  transition: all 0.1s ease-in-out;
  transform: translateX(-200%);
  z-index: 999;
}

.left-menu.left-menu_active {
  visibility: visible;
  z-index: 9999999;
  left: 0;
  opacity: 1;
}

.left-menu__container_active {
  transform: translateX(0);
}
.left-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.left-menu__header .header__logo {
  width: auto;
  height: 25px;
  margin: 0;
}
.left-menu__header .left-menu__header-cart svg {
  width: 20px;
  height: 20px;
}

.left-menu__close {
  width: 30px;
  height: 30px;
  font-size: 25px;
  line-height: 1;
  fill: var(--main-text-color);
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-menu__close svg {
  width: 22px;
  height: 22px;
}

.left-menu__close:hover {
  fill: var(--accent-color);
}
.left-menu .header__account-wrapper,
.left-menu .favorites_link-container {
  padding: 0;
}

.left-menu .header__account,
.left-menu .favorites_link,
.left-menu .compare,
.left-menu__categories-btn,
.left-menu__pages-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 400;
  color: var(--main-text-color);
}

.left-menu .favorites_link {
  justify-content: flex-start;
}
.left-menu__categories-btn svg,
.left-menu__pages-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--main-text-color);
  stroke: var(--main-text-color);
}

.left-menu .header__account-container,
.left-menu .header__account-text,
.left-menu .header__account-wrapper {
  width: 100%;
  border-radius: 0;
  right: 0;
}
.left-menu .header__account-container {
  border-left: none;
  border-right: none;
}


.left-menu .header__account-text {
  justify-content: space-between;
}

.left-menu .compare .compare__container {
  margin-left: 0;
}
.left-menu .header__account ,
.left-menu .favorites_link-container ,
.left-menu .compare {
  justify-content: flex-start;
}

.left-menu .header__account svg,
.left-menu .favorites_link-container svg,
.left-menu .compare svg {
  margin-right: 7px;
}

.left-menu .header__account {
  border-bottom: 1px solid var(--border-color);
}

.left-menu-header__footer {
  width: 100%;
  margin-top: auto;
}

.left-menu__container .footer__social-items {
  justify-content: center;
}

.left-menu__adress {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  color: var(--main-text-color);
  align-items: center;
  padding: 15px 20px;
}
.left-menu__adress svg {
  margin: 0 5.5px 0 1px;
  width: 18px;
  height: 18px;
  position: relative;
  top: 1px;
}
.left-menu__adress-text {
  color: var(--main-text-color);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 1px;
}

.left-menu .footer__social svg {
  fill: var(--main-text-color);
}
.left-menu .footer__social i {
  color: var(--main-text-color);
}

.left-menu .footer__social-item {
  background: none;
}

.left-menu .c-cart__small--price {
  display: none;
}
.left-menu .header__account-text {
  display: flex;
}
.left-menu .favorites_link span,
.left-menu .compare .c-compare__link--text {
  display: block;
}

.left-menu .lang .dropdown__current .dropdown__wrapper,
.left-menu .currency-header .dropdown__current .dropdown__wrapper {
  width: 100%;
  justify-content: space-between;
}
.left-menu .lang .dropdown__current,
.left-menu .currency-header .dropdown__current {
  width: 100%;
  padding: 15px 20px;
}

.left-menu .dropdown__items {
  padding: 0;
}
.left-menu .dropdown__container {
  width: 100%;
  box-shadow: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  padding: 20px;
}
.left-menu .lang,
.left-menu .currency-header.dropdown {
  border-bottom: 1px solid var(--border-color);
  margin: 0;
}

.left-menu .dropdown__item {
  justify-content: flex-start;
}


.left-menu .dropdown .dropdown__container {
  display: none;
}
