/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* Цвета */
/* Breakpoints */
/* Шрифты */
/* Base heading style */
/* Кнопки */
/* Контейнер */
/* header */
/* footer */
/* Popup */
/* form checkbox */
/* input checkbox */
/* form tags */
@keyframes button-loading {
  0% {
    background-color: #a0a0a0;
    border-color: #a0a0a0;
  }
  50% {
    background-color: #666;
    border-color: #666;
  }
  100% {
    background-color: #a0a0a0;
    border-color: #a0a0a0;
  }
}
.nav-panel {
  display: none;
}
@media (max-width: 1024px) {
  .nav-panel {
    display: block;
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  }
}
.nav-panel__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  justify-items: center;
  max-width: 100%;
  overflow: hidden;
  padding: 9px 0 15px;
}
.nav-panel__item {
  color: #9D9D9D;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  min-height: 40px;
  width: 100%;
}
.nav-panel__item-home:before,
.nav-panel__item-menu:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(100%) contrast(103%);
  margin: 0 auto 3px;
}
.nav-panel__item-home:before {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/interskol/icons/nav-panel-home.svg');
  background-size: contain;
  background-position: center;
}
.nav-panel__item-menu:before {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/interskol/icons/nav-panel-catalog.svg');
  background-size: contain;
  background-position: center;
}
.nav-panel__item .wishlist__wrapper,
.nav-panel__item .login__wrapper,
.nav-panel__item .cart__wrapper {
  height: 100%;
  max-width: 70px;
}
.nav-panel__item .wishlist__icon,
.nav-panel__item .login__icon,
.nav-panel__item .cart__icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(0, auto);
  position: relative;
  margin: 0;
  text-decoration: none;
}
.nav-panel__item .wishlist__icon-icon,
.nav-panel__item .login__icon-icon,
.nav-panel__item .cart__icon-icon {
  display: block;
  grid-column: 1 / span 2;
  grid-row: 1;
  width: 24px;
  height: 24px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(100%) contrast(103%);
  margin: 0 auto 3px;
}
.nav-panel__item .wishlist__icon-caption,
.nav-panel__item .login__icon-caption,
.nav-panel__item .cart__icon-caption {
  display: block;
  grid-column: 1 / span 2;
  grid-row: 2;
  color: #9D9D9D;
  font-size: 11px;
  line-height: 13px;
}
.nav-panel__item .wishlist__icon-count,
.nav-panel__item .login__icon-count,
.nav-panel__item .cart__icon-count {
  display: none;
  position: relative;
  right: -5px;
  top: -5px;
  grid-column: 2;
  grid-row: 1;
  width: 19px;
  height: 19px;
  background-color: #dc1735;
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.nav-panel__item .wishlist__icon-icon {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/interskol/icons/star-outline.svg');
  background-size: contain;
  background-position-y: top;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(100%) contrast(103%);
  background-position: center;
}
.nav-panel__item .wishlist__icon .header-body__wishlist-count_active {
  display: block;
}
.nav-panel__item .login__icon-icon {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/interskol/icons/nav-panel-user.svg');
  background-size: contain;
  background-position-y: top;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(100%) contrast(103%);
  background-position: center;
}
.nav-panel__item .cart__icon-icon {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/interskol/icons/nav-panel-cart.svg');
  background-size: contain;
  background-position-y: top;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(100%) contrast(103%);
  background-position: center;
}
.nav-panel__item .cart__icon.not-empty .cart__icon-count {
  display: block;
}
.nav-panel__link {
  text-decoration: none;
  color: #9D9D9D;
}

