/*! nouislider - 14.5.0 - 5/11/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.sidebar-catalog {
  margin-bottom: 40px; }
  .sidebar-catalog__list {
    list-style: none;
    margin: 0;
    padding: 0; }
  .sidebar-catalog__item span {
    color: #8e8e8e;
    font-size: 13px; }
  .sidebar-catalog__link {
    color: #333333;
    background-color: #F8F8F8;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #F8F8F8;
    transition: .3s; }
    .sidebar-catalog__link:hover {
      border: 1px solid #D2D2D2;
      background-color: #D2D2D2; }
    .sidebar-catalog__link_active {
      border-color: #8e8e8e;
      background-color: #8e8e8e;
      color: #ffffff; }
      .sidebar-catalog__link_active:hover {
        border-color: #8e8e8e;
        background-color: #8e8e8e; }
      .sidebar-catalog__link_active span {
        color: #ffffff; }

.filter {
  position: relative; }
  .filter__item {
    margin-bottom: 15px; }
  .filter__header {
    position: relative;
    background-color: #F8F8F8;
    border: 1px solid #F8F8F8;
    transition: .3s; }
    .filter__header:hover {
      border: 1px solid #D2D2D2; }
  .filter__title {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    cursor: pointer; }
  .filter__icon {
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .3s;
    transform: rotate(0deg); }
    .filter__icon-active {
      transform: rotate(180deg); }
  .filter__content {
    display: flex;
    flex-wrap: wrap;
    max-height: 750px;
    padding: 20px 0;
    visibility: visible;
    opacity: 1;
    transition: .3s; }
    .filter__content-full {
      max-height: 100%; }
    .filter__content-closed {
      padding: 0;
      max-height: 0;
      visibility: hidden;
      opacity: 0; }
  .filter__inbox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: .3s; }
    .filter__inbox-active {
      visibility: visible;
      opacity: 1;
      max-height: 2000px;
      overflow: auto; }
  .filter__checkbox {
    margin-bottom: 10px;
    margin-right: 10px;
    position: relative; }
    .filter__checkbox-input {
      position: absolute;
      margin: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer; }
      .filter__checkbox-input:hover ~ .filter__checkbox-label {
        background-color: #D2D2D2; }
      .filter__checkbox-input:checked ~ .filter__checkbox-label {
        background-color: #8e8e8e;
        border-color: #8e8e8e;
        color: #ffffff; }
    .filter__checkbox-label {
      border: 1px solid #D2D2D2;
      padding: 11px 16px;
      font-size: 16px;
      line-height: 24px;
      display: block;
      transition: .3s; }
  .filter__ranges {
    width: 100%; }
  .filter__range {
    width: 120px;
    padding: 11px 15px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #D2D2D2;
    text-align: center; }
  .filter__separator {
    margin: 0 10px;
    fill: #D2D2D2; }
  .filter__show {
    margin-top: 15px;
    cursor: pointer; }
  .filter__btn {
    margin-bottom: 15px;
    margin-right: 15px; }

.range {
  width: 100%;
  margin-bottom: 30px; }

.noUi-target {
  box-shadow: none;
  border: none;
  background-color: #D2D2D2; }

.noUi-connect {
  background: #f44336; }

.noUi-handle {
  background: #f44336;
  border-radius: 100%;
  position: relative;
  box-shadow: none;
  border: none; }

.noUi-handle-lower {
  left: 34px; }

.noUi-handle-upper {
  right: -10px !important; }

.noUi-handle::before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 12px;
  width: 12px;
  background: #ffffff;
  border-radius: 100%; }

.noUi-handle::after {
  display: none; }

.noUi-horizontal {
  height: 6px; }

.noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  top: -9px; }

.lds-ring {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  display: none; }

.lds-ring--active {
  display: inline-block; }

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #f44336 transparent transparent transparent; }

.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s; }

.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }

.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s; }

@-webkit-keyframes lds-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes lds-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@font-face {
  font-family: 'lato-grid';
  font-display: swap;
  src: url("/frontend/_meb96/dist/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: normal; }

@font-face {
  font-family: 'lato-grid';
  font-display: swap;
  src: url("/frontend/_meb96/dist/fonts/Lato-Semibold.woff2") format("woff2");
  font-weight: 600; }

* {
  box-sizing: border-box;
  outline: none; }
  *:before, *:after {
    box-sizing: border-box; }

/*html {
	height: 100%;
}*/
body {
  margin: 0;
  font-size: 14px;
  position: relative;
  line-height: 1.75;
  font-family: lato-grid, sans-serif;
  opacity: 1;
  color: #333333; }

h1, .h1 {
  font-size: 28px;
  font-weight: 600; }

h2, .h2 {
  font-size: 21px;
  font-weight: 600; }

h3, .h3 {
  font-size: 18px;
  font-weight: 600; }

a {
  color: #f44336;
  text-decoration: none;
  cursor: pointer; }

img {
  transition: opacity 1s; }

img.lazy {
  opacity: 0; }

img.loaded {
  opacity: 1; }

input {
  border: none;
  outline: none; }

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

button {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  cursor: pointer; }

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #8e8e8e;
  font-size: 16px;
  height: 48px;
  padding: 0 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: .3s; }
  .button:hover {
    background-color: #333333; }
  .button:disabled {
    pointer-events: none;
    opacity: .5;
    transition: .3s; }
  .button-mini {
    font-size: 14px;
    height: 32px;
    padding: 0 16px; }
  .button-link {
    background-color: #ffffff;
    border: 1px dashed #8e8e8e;
    color: #8e8e8e; }
    .button-link:hover {
      border-color: #333333;
      background-color: #ffffff;
      color: #333333; }
  .button-blue {
    color: #1888e6;
    border: 1px solid #1888e6;
    background: none; }
    .button-blue:hover {
      background-color: #1888e6;
      color: #ffffff; }
  .button-icon {
    background: none;
    padding: 10px;
    line-height: 0; }
    .button-icon svg {
      fill: #f44336; }
    .button-icon:hover {
      background-color: #F8F8F8; }
  .button-clicktrack {
    background: none;
    margin-left: 5px;
    transition: .3s; }
    .button-clicktrack svg {
      fill: #8e8e8e; }
    .button-clicktrack:hover svg {
      fill: #333333; }
  .button-accent {
    background-color: #f44336; }

.container {
  min-width: 1200px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px; }

.mb48 {
  margin-bottom: 48px; }

.section-light {
  background-color: #F8F8F8; }

.section-dark {
  background-color: #333333; }

.invisible {
  display: none !important; }

.img-responsive, img {
  display: block;
  max-width: 100%;
  height: auto; }

.text-center {
  text-align: center; }

.grid {
  display: grid; }

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.flex-start {
  justify-content: flex-start; }

.lock {
  overflow: hidden; }

.loading {
  display: none; }
  .loading_active {
    display: block; }

.agreement {
  margin-bottom: 10px;
  opacity: 0.7;
  transition: .3s; }
  .agreement svg {
    vertical-align: middle; }

.dropdown {
  position: relative; }
  .dropdown-content {
    visibility: hidden;
    position: absolute;
    background-color: #ffffff;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 15;
    opacity: 0;
    transition: .3s; }
  .dropdown:hover svg.rotate-180 {
    transform: rotate(180deg); }
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible; }

.swiper-container {
  width: 100%; }

.swiper-nav {
  position: absolute;
  z-index: 9;
  background-color: #F8F8F8;
  opacity: 0.6;
  padding: 20px;
  line-height: 0;
  cursor: pointer;
  top: calc(50% - 32px);
  transition: .3s; }
  .swiper-nav:hover {
    opacity: 1; }
  .swiper-nav.swiper-button-disabled {
    opacity: .2; }
  .swiper-nav_prev {
    left: 0; }
  .swiper-nav_next {
    right: 0; }

.swiper-lazy-preloader {
  border: 4px solid #f44336;
  border-top: 4px solid #ffffff; }

.fade-enter-active, .fade-leave-active {
  transition: opacity .3s; }

.fade-enter, .fade-leave-to {
  opacity: 0; }

.fade-in {
  -webkit-animation: fadeIn ease 1s;
          animation: fadeIn ease 1s; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

[v-cloak] {
  display: none; }

.breadcrumbs {
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0; }
  .breadcrumbs__item {
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap; }
    .breadcrumbs__item > .top-menu__link {
      padding: 0; }
  .breadcrumbs__separator {
    font-size: 14px;
    line-height: 24px;
    padding: 0 10px; }

.top-menu {
  list-style: none;
  margin: 0;
  padding: 0; }
  .top-menu__item {
    display: inline-block; }
  .top-menu__link {
    color: #333333;
    display: block;
    padding: 10px 15px;
    transition: color .5s;
    position: relative;
    white-space: nowrap; }
    .top-menu__link_dark {
      color: #333333; }
    .top-menu__link svg {
      vertical-align: text-bottom;
      fill: #8e8e8e;
      transition: .3s; }
    .top-menu__link:hover {
      color: #f44336; }
      .top-menu__link:hover svg {
        fill: #f44336; }
      .top-menu__link:hover::after {
        width: 100%; }
    .top-menu__link::after {
      background-color: #f44336;
      content: '';
      height: 1px;
      width: 0%;
      left: 50%;
      bottom: 0;
      position: absolute;
      transition: width .3s ease-in-out;
      transform: translateX(-50%); }
  .top-menu__link.header__location svg {
    margin-right: 10px; }

.header-top .dropdown {
  z-index: 10; }

.header-middle {
  padding: 25px 15px; }

.icon-block {
  margin-right: 45px; }
  .icon-block:last-child {
    margin-right: 0; }
  .icon-block__svg {
    border-radius: 50%;
    /*background-color: rgb(255, 255, 255);
		box-shadow: 0px 0px 14.4px 1.6px rgba(0, 0, 0, 0.06);*/
    border: 1px solid #D2D2D2;
    width: 46px;
    height: 46px;
    justify-content: center;
    position: relative; }
    .icon-block__svg svg {
      fill: #f44336; }
  .icon-block__count {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    background: #f44336;
    justify-content: center;
    color: #ffffff;
    font-size: 12px; }
  .icon-block__info {
    margin-left: 20px; }
  .icon-block__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600; }
    .icon-block__title a {
      color: #333333; }
    .icon-block__title svg {
      fill: #4d4d4d; }
  .icon-block__text {
    margin: 0; }

.header-bottom__menu {
  background: #f44336; }
  .header-bottom__menu svg {
    fill: #ffffff; }
  .header-bottom__menu > li > a {
    font-size: 16px;
    color: #ffffff; }
    .header-bottom__menu > li > a:hover {
      color: #ffffff; }
      .header-bottom__menu > li > a:hover svg {
        fill: #ffffff; }

#search {
  flex: 1;
  height: 48px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2; }

.header-form {
  flex: 1;
  position: relative;
  margin: 0; }
  .header-form__input {
    flex: 1;
    margin: 0;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 26px;
    border-top: 1px solid #D2D2D2;
    border-bottom: 1px solid #D2D2D2;
    transition: .3s; }
    .header-form__input::-moz-placeholder {
      color: #8e8e8e;
      opacity: .6;
      -moz-transition: .3s;
      transition: .3s; }
    .header-form__input:-ms-input-placeholder {
      color: #8e8e8e;
      opacity: .6;
      -ms-transition: .3s;
      transition: .3s; }
    .header-form__input::placeholder {
      color: #8e8e8e;
      opacity: .6;
      transition: .3s; }
    .header-form__input:hover {
      border-color: #8e8e8e; }
    .header-form__input:focus::-moz-placeholder {
      opacity: .2; }
    .header-form__input:focus:-ms-input-placeholder {
      opacity: .2; }
    .header-form__input:focus::placeholder {
      opacity: .2; }
  .header-form__submit {
    width: 48px;
    height: 48px;
    background: #f44336; }
    .header-form__submit svg {
      fill: #ffffff; }

.search-result {
  position: absolute;
  top: 48px;
  left: 0;
  background-color: #ffffff;
  /*min-width: 100%;*/
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 15; }
  .search-result a {
    color: #333333; }
  .search-result__box {
    padding: 40px; }
  .search-result__close {
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #F8F8F8;
    transition: .3s; }
    .search-result__close svg {
      fill: #8e8e8e; }
    .search-result__close:hover {
      background-color: #8e8e8e; }
      .search-result__close:hover svg {
        fill: #ffffff; }
  .search-result__list {
    margin-bottom: 10px; }
  .search-result__item {
    padding: 5px; }
    .search-result__item:hover {
      background-color: #F8F8F8; }
  .search-result__imgbox {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    overflow: hidden; }
  .search-result__img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }
  .search-result__title {
    margin-right: 20px; }
  .search-result__price {
    flex-grow: 1;
    text-align: right; }

#favorite {
  width: 48px;
  height: 48px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  border-right: 1px solid #D2D2D2; }

#cartbox {
  width: 48px;
  height: 48px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  border-right: 1px solid #D2D2D2; }

.header-view {
  justify-content: center;
  width: 48px;
  height: 48px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  border-right: 1px solid #D2D2D2;
  transition: .3s; }
  .header-view:hover {
    background-color: #F8F8F8; }
  .header-view svg {
    transition: 1s; }
  .header-view__count {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    background: #f44336;
    justify-content: center;
    color: #ffffff;
    font-size: 12px; }
  .header-view .dropdown-content {
    top: 48px;
    right: 0; }
  .header-view__box {
    padding: 40px; }
    .header-view__box .h2 {
      margin-bottom: 10px; }
  .header-view__list {
    margin-bottom: 20px; }
  .header-view__item {
    margin-bottom: 20px; }
  .header-view__title {
    width: 240px;
    margin-right: 20px;
    color: #333333; }
  .header-view__price {
    white-space: nowrap;
    color: #333333; }
  .header-view__imgbox {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    overflow: hidden; }
  .header-view__img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }
  .header-view__text {
    width: 360px; }
  .header-view__close {
    margin-left: 20px; }

.footer-top {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  padding: 25px 0;
  color: #ffffff; }
  .footer-top__title {
    font-size: 21px;
    position: relative;
    margin-bottom: 15px; }
    .footer-top__title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 48px;
      height: 1px;
      background: #f44336; }
  .footer-top__subtitle {
    color: #8e8e8e; }
  .footer-top__ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .footer-top__ul li {
      padding-bottom: 5px; }
  .footer-top__link {
    color: #8e8e8e; }
    .footer-top__link:hover {
      color: #ffffff;
      transition: .3s; }
  .footer-top__link2 {
    font-size: 18px;
    color: #ffffff; }
    .footer-top__link2 .button-clicktrack svg {
      fill: #8e8e8e; }
    .footer-top__link2 .button-clicktrack:hover svg {
      fill: #ffffff; }

.pay-block {
  flex-wrap: wrap;
  justify-content: left; }
  .pay-block__link svg {
    fill: #333333;
    transition: .3s; }
  .pay-block__link:hover svg {
    fill: #f44336; }
  .pay-block__item {
    justify-content: center;
    background-color: #F8F8F8;
    margin-right: 15px;
    margin-bottom: 15px;
    width: 80px;
    height: 64px; }

.footer-bottom {
  padding: 25px 0;
  color: #8e8e8e; }
  .footer-bottom__link {
    color: #8e8e8e;
    transition: .3s; }
    .footer-bottom__link:first-child {
      margin-right: 20px; }
    .footer-bottom__link:hover {
      color: #ffffff; }

.location {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center; }
  .location__cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
  .location__box {
    padding: 60px;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
    width: 660px; }
  .location__content {
    height: 486px;
    overflow-y: scroll; }
  .location__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 20px; }
  .location__item {
    margin-bottom: 24px;
    position: relative;
    height: 48px;
    transition: .3s; }
  .location__input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 25px;
    font-size: 16px;
    line-height: 16px;
    border: 1px solid #D2D2D2;
    transition: .3s; }
    .location__input::-moz-placeholder {
      color: #8e8e8e;
      opacity: .6; }
    .location__input:-ms-input-placeholder {
      color: #8e8e8e;
      opacity: .6; }
    .location__input::placeholder {
      color: #8e8e8e;
      opacity: .6; }
    .location__input:hover {
      border-color: #333333; }
    .location__input:focus {
      border-color: #333333; }
      .location__input:focus::-moz-placeholder {
        opacity: .2; }
      .location__input:focus:-ms-input-placeholder {
        opacity: .2; }
      .location__input:focus::placeholder {
        opacity: .2; }
  .location__svg {
    opacity: 0.5;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    transition: .3s; }
  .location__cities {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 2860px; }
  .location__city {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 20px;
    transition: .3s;
    color: #333333; }
    .location__city:hover {
      color: #f44336;
      transition: .3s; }
  .location__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #F8F8F8;
    transition: .3s; }
    .location__close svg {
      fill: #8e8e8e; }
    .location__close:hover {
      background-color: #8e8e8e; }
      .location__close:hover svg {
        fill: #ffffff; }

.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center; }
  .modal__cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
  .modal__box {
    padding: 60px;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2); }
  .modal__content {
    width: 440px;
    text-align: center; }
  .modal__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 20px; }
  .modal__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px; }
  .modal__item {
    margin-bottom: 24px;
    position: relative;
    height: 48px;
    transition: .3s; }
  .modal__input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 25px;
    font-size: 16px;
    line-height: 16px;
    border: 1px solid #D2D2D2;
    transition: .3s; }
    .modal__input::-moz-placeholder {
      color: #8e8e8e;
      opacity: .6; }
    .modal__input:-ms-input-placeholder {
      color: #8e8e8e;
      opacity: .6; }
    .modal__input::placeholder {
      color: #8e8e8e;
      opacity: .6; }
    .modal__input:hover {
      border-color: #333333; }
    .modal__input:focus {
      border-color: #333333; }
      .modal__input:focus::-moz-placeholder {
        opacity: .2; }
      .modal__input:focus:-ms-input-placeholder {
        opacity: .2; }
      .modal__input:focus::placeholder {
        opacity: .2; }
    .modal__input--error {
      border-color: #f44336; }
  .modal__svg {
    opacity: 0.5;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    transition: .3s; }
  .modal__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #F8F8F8;
    transition: .3s; }
    .modal__close svg {
      fill: #8e8e8e; }
    .modal__close:hover {
      background-color: #8e8e8e; }
      .modal__close:hover svg {
        fill: #ffffff; }

/*.modal--active .modal__cover {
	pointer-events: none;
}*/
/*.modal--active .modal__content {
	pointer-events: none;
	opacity: .5;
}*/
.goods-item {
  flex-direction: column;
  align-items: stretch;
  height: auto;
  padding: 40px;
  border: 1px solid #ffffff;
  position: relative;
  transition: .3s; }
  .goods-item--3 {
    width: calc(100%/3); }
  .goods-item--4 {
    width: calc(100%/4); }
  .goods-item:hover {
    /*border-color: $light2;*/ }
    .goods-item:hover .goods-item__img {
      transform: scale(1.05); }
  .goods-item__imgbox {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
    justify-content: center;
    position: relative; }
  .goods-item__img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transition: .3s; }
    .goods-item__img.loaded ~ .goods-item__cover {
      visibility: hidden;
      opacity: 0; }
  .goods-item__cover {
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: .3s;
    z-index: -1; }
  .goods-item__noimg {
    justify-content: center;
    opacity: 0.2; }
  .goods-item__badges {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex; }
  .goods-item__badge {
    background-color: #f44336;
    color: #ffffff;
    padding: 0px 10px;
    line-height: 28px;
    margin-right: 8px; }
    .goods-item__badge--secondary {
      background-color: #f48f36; }
  .goods-item__title {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
    max-height: 86px;
    overflow: hidden;
    transition: .3s; }
  .goods-item__footer {
    margin-top: 10px; }
  .goods-item__key {
    color: #8e8e8e; }
  .goods-item__value {
    color: #333333; }
  .goods-item__buyblock {
    margin-top: 20px; }
  .goods-item__prices {
    margin-top: 0; }
  .goods-item__priceold {
    font-size: 18px;
    line-height: 24px;
    text-decoration: line-through; }
  .goods-item__price {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600; }
  .goods-item__icons {
    margin-top: 0; }
  .goods-item__available {
    color: #f44336; }

.button-shape {
  position: relative;
  background: none;
  line-height: 0; }
  .button-shape svg {
    pointer-events: none; }
  .button-shape__icon {
    fill: #8e8e8e;
    transition: .3s; }
    .button-shape__icon-active {
      fill: #f44336;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: .3s; }
  .button-shape--favorite {
    position: absolute;
    top: 20px;
    right: 20px; }
  .button-shape--favorite:hover .button-shape__icon {
    fill: #f44336; }
  .button-shape--favorite_active .button-shape__icon {
    opacity: 0; }
  .button-shape--favorite_active .button-shape__icon-active {
    opacity: 1; }
  .button-shape--cart {
    border: 1px solid #f44336;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    width: 110px;
    height: 48px;
    justify-content: center;
    transition: .3s; }
    .button-shape--cart:hover {
      background-color: #f44336;
      color: #ffffff; }
    .button-shape--cart_active {
      background-color: #f44336;
      color: #ffffff; }
      .button-shape--cart_active:hover {
        background-color: #f44336; }
    .button-shape--cart_text {
      pointer-events: none; }
  .button-shape--cart:hover .button-shape__icon {
    fill: #333333; }
  .button-shape--cart_active .button-shape__icon {
    opacity: 0; }
  .button-shape--cart .button-shape__icon-active {
    top: 10px;
    left: 20px; }
  .button-shape--cart_active .button-shape__icon-active {
    opacity: 1; }
  .button-shape__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    .button-shape__link--hidden {
      display: none; }

.pagination {
  /*grid-column-start: 1;
	grid-column-end: 4;*/
  width: 100%;
  display: flex;
  margin: 40px 0; }
  .pagination__list {
    list-style: none;
    margin: 0;
    padding: 0; }
  .pagination__item {
    padding: 0 5px; }
  .pagination__link {
    color: #8e8e8e;
    padding: 5px 10px;
    display: inline-block;
    height: 32px;
    transition: .3s; }
    .pagination__link:hover {
      background-color: #8e8e8e;
      color: #ffffff; }
    .pagination__link_active {
      background-color: #333333;
      color: #ffffff; }
    .pagination__link_disable {
      color: #8e8e8e;
      padding: 5px 10px;
      display: inline-block;
      height: 32px;
      cursor: default; }

.sort__content {
  justify-content: flex-start;
  flex-wrap: wrap; }

.sort__header {
  font-size: 18px;
  margin-right: 20px;
  margin-bottom: 10px; }

.sort__item {
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #D2D2D2;
  font-size: 14px;
  height: 32px;
  padding: 5px 25px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  transition: .3s; }
  .sort__item:hover {
    background-color: #D2D2D2; }
  .sort__item--active {
    color: #ffffff;
    background-color: #8e8e8e;
    border-color: #8e8e8e; }
    .sort__item--active:hover {
      background-color: #8e8e8e;
      cursor: default; }
  .sort__item--hidden {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    border: none; }

.sort__show {
  color: #ffffff;
  background-color: #8e8e8e;
  border-color: #8e8e8e;
  cursor: pointer; }
  .sort__show:hover {
    background-color: #333333;
    border-color: #333333; }

.goods {
  padding: 20px 0; }
  .goods__sort {
    width: 100%; }
  .goods__block {
    grid-template-columns: 1fr 3fr;
    grid-gap: 40px; }
    .goods__block-nobar {
      grid-template-columns: 1fr; }
  .goods__list {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start; }
  .goods__description {
    grid-column-start: 1;
    grid-column-end: 4; }
  .goods__change-cat {
    display: flex;
    line-height: 48px;
    font-size: 21px; }
    .goods__change-cat svg {
      margin-right: 16px; }
    @media only screen and (max-width: 1350px) {
  .goods-item--3 {
    width: calc(100%/2); }
  .goods-item--4 {
    width: calc(100%/3); } }

