/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/menu/style.scss ***!
  \*******************************************************************************************************************************************************************************************/
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__dropdown {
  display: none;
}
.menu__item {
  margin: 0 5px;
}
.menu__item--simple {
  margin: 0 2px;
}
.menu__dropdown {
  position: absolute;
  padding-top: 20px;
  z-index: 100;
}
.menu__dropdown:hover {
  display: block;
}
.menu__dropdown-inner {
  padding: 10px;
  background: #212121;
  border-radius: 10px;
}
@media (max-width: 1280px) {
  .search__dropdown .menu__dropdown-inner {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.menu__dropdown-inner .menu__dropdown-item + .menu__dropdown-item {
  margin-top: 8px;
}
.menu__dropdown-inner .menu__dropdown-item .menu__link-text {
  color: #fff;
  display: block;
  width: calc(100% - 30px);
}
.search__dropdown .menu__dropdown-inner .menu__dropdown-item .menu__link-text:not(._no-cut) {
  width: 100%;
  display: inline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
}
.menu__dropdown-inner .menu__dropdown-item .menu__link-text p {
  margin: 0;
  font-size: inherit;
}
.menu__dropdown-inner .menu__dropdown-item .menu__link {
  background: #1A1819;
}
.menu__dropdown-inner .menu__dropdown-item .menu__link:hover {
  background: #2D2412;
}
.menu__dropdown-inner .menu__dropdown-item .menu__link:hover .menu__link-text {
  color: #FFD475;
}
.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  padding: 9px 34px 9px 10px;
  color: #FFD475;
  position: relative;
  border-radius: 5px;
  background-color: #1A1819;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1281px) {
  .menu__link {
    font-size: 14px;
  }
}
.search__dropdown .menu__link {
  padding-right: 9px;
}
.menu__link:hover {
  background-color: #353334;
}
@media (min-width: 1281px) {
  .menu__link:hover ~ .menu__dropdown {
    display: block;
  }
}
.menu__link.opened ~ .menu__dropdown {
  display: block;
  position: absolute;
}
.menu__link--simple {
  background-color: transparent;
  padding-right: 5px;
  color: #fff;
  padding-left: 5px;
}
.menu__link--simple .menu__item-icon {
  margin-right: 5px;
}
.menu__link_active {
  color: #000000;
  background-color: #FFD475;
}
.menu__link_active:hover {
  background-color: #E7BA5B;
}
.menu__link-text {
  white-space: nowrap;
}
.menu__link-text._no-cut {
  white-space: normal;
}
.menu__item-arrow {
  position: absolute;
  width: 16px;
  height: 19px;
  top: calc(50% - 11px);
  right: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu__link_active .menu__item-arrow svg path {
  stroke: #000000;
}
.menu__item-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  color: inherit;
}
.menu__item-icon svg {
  width: 100%;
  height: 100%;
}
.menu__link_active .menu__item-icon svg path {
  fill: #000000;
}
.menu__item-image {
  width: 75px;
  height: 75px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.menu__item-image img {
  height: 90%;
}
