@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.menu__top {
  display: flex;
  align-items: center;
}
.menu__top > ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-column-gap: 3em;
       column-gap: 3em;
}
@media (max-width: 1599.98px) {
  .menu__top > ul {
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
.menu__top > ul > li {
  position: relative;
  display: flex;
  font-size: 16px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
}
@media (max-width: 1222px) {
  .menu__top > ul > li {
    font-size: 1vw;
  }
}
@media (max-width: 1222px) and (max-width: 1200px) {
  .menu__top > ul > li {
    font-size: 12px;
  }
}
@media (max-width: 1222px) and (min-width: 1600px) {
  .menu__top > ul > li {
    font-size: 16px;
  }
}
.menu__top > ul > li a {
  text-decoration: none;
}
.menu__top > ul > li a:hover {
  color: #E44315;
}
.menu__top > ul > li a:hover + i svg {
  color: #E44315;
}
.menu__top > ul > li.active a {
  color: #E44315;
}
.menu__top > ul > li.parent {
  padding-right: 20px;
  overflow: initial;
}
.menu__top > ul > li.parent:after {
  content: "";
  position: absolute;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 17 17'%3e%3cg clip-path='url(%23chevron_svg__a)'%3e%3cpath d='m15.506 4.94-7.24 7-7.132-6.795' stroke='%23B4B4B4'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='chevron_svg__a'%3e%3cpath fill='white' transform='translate(.333 .5)' d='M0 0h16v16H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") center no-repeat;
  width: 12px;
  height: 12px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.menu__top > ul > li.parent:hover .menu__top--sublevel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.menu__top > ul > li.parent:hover:after {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 17 17'%3e%3cg clip-path='url(%23chevron_svg__a)'%3e%3cpath d='m15.506 4.94-7.24 7-7.132-6.795' stroke='%23E44315'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='chevron_svg__a'%3e%3cpath fill='white' transform='translate(.333 .5)' d='M0 0h16v16H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") center no-repeat;
  transform: rotate(180deg) translateY(50%);
}
.menu__top--sublevel {
  position: absolute;
  display: flex;
  flex-direction: column;
  list-style: none;
  background-color: #111111;
  top: 150%;
  right: 0;
  z-index: 10;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1215686275);
  max-width: 360px;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #222222;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
}
.menu__top--sublevel > li:not(:last-of-type) {
  border-bottom: 1px solid #222222;
}
.menu__top--sublevel > li:hover {
  background-color: #222222;
}
.menu__top--sublevel > li:hover:first-of-type {
  border-radius: 12px 12px 0 0;
}
.menu__top--sublevel > li:hover:last-of-type {
  border-radius: 0 0 12px 12px;
}
.menu__top--sublevel > li a {
  display: block;
  padding: 18px 20px;
  color: #fff !important;
}
.menu__top--sublevel > li.active a {
  color: #E44315 !important;
}
@media (max-width: 991.98px) {
  .menu__top {
    display: none;
  }
}
