@charset "UTF-8";

.btn {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
  outline: 0;
  width: 100%;
}

.btn:focus,
.btn:hover {
  outline: 0;
}

.btn--light {
  font-weight: 700;
  font-size: 17px;
  color: #282828;
  background-color: #e9e9e9;
  height: 52px;
  border-radius: 3px;
}

.btn--light:focus,
.btn--light:hover {
  opacity: 0.9;
}

.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img__wrap {
  position: relative;
  overflow: hidden;
}

.input {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  outline: 0;
  overflow: hidden;
  border: 1px solid #ece9f2;
  width: 100%;
  border-radius: 3px;
  background-color: transparent;
  padding: 2px 25px 2px 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.link {
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  line-height: 1.2;
  cursor: pointer;
}

.link:focus,
.link:hover {
  outline: 0;
}

.link-abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 320px;
  min-height: 100vh;
  max-height: 100%;
  overflow-y: auto;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.menu.is-active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.menu__close-btn {
  position: absolute;
  top: 29px;
  right: 29px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.menu__close-btn-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 32px;
  height: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.menu__close-btn-line:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu__close-btn-line:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 48px 30px;
  min-height: 100vh;
}

@media all and (max-width: 700px) {
  .menu__wrap {
    padding: 32px 30px;
  }

  .menu__close-btn {
    top: 26px;
    right: 19px;
  }
}

.page {
  position: relative;
  min-width: 320px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  overflow-x: hidden;
  color: #fff;
}

.page__blackout {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}

.page__blackout.is-active {
  width: 100%;
  z-index: 8;
  opacity: 1;
}

.nav-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  z-index: 8;
  right: 9px;
  top: 33.8%;
  width: 79px;
}

.nav-block > div {
  position: relative;
  width: 78px;
  height: 78px;
  text-align: center;
  background-image: url(../img/cart.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px 24px;
  color: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 0 4px 0 #fffffff2;
  box-shadow: 0 0 4px 0 #fffffff2;
  border-radius: 3px;
  cursor: pointer;
}

.nav-block > div:focus,
.nav-block > div:hover {
  opacity: 0.9;
}

.nav-block > div + div {
  margin-top: 10px;
  background-image: url(../img/like.png);
  background-size: 23px 20px;
}

.nav-block .count {
  left: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  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;
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  -webkit-box-shadow: 0 0 2px 0 #111111f2;
  box-shadow: 0 0 2px 0 #111111f2;
}

.container {
  max-width: 1220px;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .nav-block {
    width: 61px;
  }

  .nav-block > div {
    width: 60px;
    height: 60px;
  }
}

@media all and (max-width: 1050px) {
  .container {
    padding: 0 30px;
  }
}

@media all and (max-width: 550px) {
  .container {
    padding: 0 16px;
  }

  .nav-block {
    width: 51px;
  }

  .nav-block > div {
    width: 50px;
    height: 50px;
  }

  .nav-block .count {
    left: -10px;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 14px;
  }
}

.title {
  font-weight: 700;
  line-height: 1.2;
}

.title--l1 {
  font-size: 27px;
}

.title--l2 {
  font-size: 17px;
}

.title--border {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  text-align: center;
  color: #282828;
}

.title--border:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  border-bottom: 1px solid #ece9f2;
}

.title--border:after {
  position: absolute;
  content: "";
  left: 49.6%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -33px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(135deg) translateX(-50%);
  -ms-transform: rotate(135deg) translateX(-50%);
  transform: rotate(135deg) translateX(-50%);
  width: 7px;
  height: 7px;
}

.title--border span {
  padding: 0 30px;
  background-color: #fff;
}

@media all and (max-width: 550px) {
  .title--l1 {
    font-size: 24px;
  }

  .title--border span {
    padding: 0 20px;
  }
}

@font-face {
  font-family: Montserrat;
  src: local("Montserrat-Regular"),
    url(../fonts/Montserrat-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: local("Montserrat-SemiBold"),
    url(../fonts/Montserrat-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: local("Montserrat-Bold"),
    url(../fonts/Montserrat-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.bold {
  font-weight: 700;
}

.normal {
  font-weight: 400;
}

.nowrap {
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

.scroll-stop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

details,
main {
  display: block;
}

h1 {
  font-size: 2em;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 700;
}

address {
  font-style: normal;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  max-width: 100%;
}

button {
  background-color: transparent;
  border: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.2;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  padding: 0;
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  padding: 0;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: 0 !important;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
  position: absolute;
  display: block;
  top: 0;
}

.irs-line-left {
  left: 0;
  width: 11%;
}

.irs-line-mid {
  left: 9%;
  width: 82%;
}

.irs-line-right {
  right: 0;
  width: 11%;
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}

.irs-bar-edge {
  position: absolute;
  display: block;
  left: 0;
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}

.irs-slider {
  position: absolute;
  display: block;
  z-index: 1;
}

.irs-slider.type_last {
  z-index: 2;
}

.irs-min {
  position: absolute;
  left: 0;
  cursor: default;
}

.irs-max {
  position: absolute;
  right: 0;
  cursor: default;
}

.irs-from,
.irs-single,
.irs-to {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
  display: none;
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
}

.irs-grid-text {
  position: absolute;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  cursor: not-allowed;
}

.irs-disabled {
  opacity: 0.4;
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: 0 !important;
  z-index: -9999 !important;
  background: 0 0 !important;
  border-style: solid !important;
  border-color: transparent !important;
}

.irs {
  height: 55px;
}

.irs-with-grid {
  height: 75px;
}

.irs-line {
  height: 8px;
  top: 33px;
  background: #eee;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
  height: 8px;
}

.irs-bar {
  height: 8px;
  top: 33px;
}

.irs-bar-edge {
  height: 8px;
  top: 33px;
  width: 14px;
  border: 1px solid #428bca;
  border-right: 0;
  background: #428bca;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#428bca),
    to(#7fc3e8)
  );
  background: -o-linear-gradient(bottom, #428bca 0, #7fc3e8 100%);
  background: linear-gradient(to top, #428bca 0, #7fc3e8 100%);
  border-radius: 16px 0 0 16px;
  -moz-border-radius: 16px 0 0 16px;
}

.irs-shadow {
  height: 2px;
  top: 38px;
  background: #000;
  opacity: 0.3;
  border-radius: 5px;
  -moz-border-radius: 5px;
}

.irs-slider {
  top: 28px;
  width: 19px;
  height: 19px;
  border: 1px solid #aaa;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-box-shadow 0.2s;
  -o-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  cursor: pointer;
}

.irs-slider.state_hover,
.irs-slider:hover {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.irs-max,
.irs-min {
  display: none;
  color: #333;
  font-size: 12px;
  line-height: 1.333;
  text-shadow: none;
  top: 0;
  padding: 1px 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  -moz-border-radius: 3px;
}

.lt-ie9 .irs-max,
.lt-ie9 .irs-min {
  background: #ccc;
}

.irs-from,
.irs-single,
.irs-to {
  color: #fff;
  font-size: 14px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background: #428bca;
  border-radius: 3px;
  -moz-border-radius: 3px;
}

.lt-ie9 .irs-from,
.lt-ie9 .irs-single,
.lt-ie9 .irs-to {
  background: #999;
}

.irs-grid {
  height: 27px;
}

.irs-grid-pol {
  opacity: 0.5;
  background: #428bca;
}

.irs-grid-pol.small {
  height: 4px;
  background: #999;
}

.irs-grid-text {
  bottom: 5px;
  color: #99a4ac;
}

.slick-next,
.slick-prev {
  position: absolute;
  display: block;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: 0 0;
  color: transparent;
  padding: 0;
  border: none;
  outline: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  outline: 0;
  color: transparent;
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled,
.slick-prev.slick-disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.slick-next:before,
.slick-prev:before {
  font-family: slick;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
}

@font-face {
  font-family: slick;
  font-weight: 400;
  font-style: normal;
}

.slick-prev {
  z-index: 1;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: 40px;
}

.slick-prev:before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

[dir="rtl"] .slick-next {
  left: 40px;
  right: auto;
}

.slick-next:before {
  position: absolute;
  right: 15px;
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 1;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 10px;
  height: 10px;
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  left: 78px;
  bottom: -95px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.slick-dots li + li {
  margin-left: 39px;
}

.slick-dots li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 8px;
  width: 8px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  position: relative;
  border: 0;
  background: 0 0;
  display: block;
  height: 8px;
  width: 8px;
  outline: 0;
  color: transparent;
  padding: 4px;
  cursor: pointer;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: 0;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
  opacity: 0.8;
}

.slick-dots li button:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #333;
  opacity: 1;
  width: 8px;
  height: 8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50%;
}

.slick-dots li.slick-active button,
.slick-dots li.slick-active button:before {
  width: 18px;
  height: 18px;
}

.slick-dots li.slick-active button:focus:before,
.slick-dots li.slick-active button:hover:before {
  opacity: 1;
}

@media (max-width: 850px) {
  .slick-dots {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    right: initial;
    left: 0;
    bottom: -60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider .slick-slide + .slick-slide {
  display: none;
}

.slick-slider.slick-initialized .slick-slide + .slick-slide {
  display: block;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  outline: 0;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev {
  left: 81px;
}

.slick-prev:before {
  left: 52%;
  top: 50%;
  -webkit-transform: translate(-33%, -50%) rotate(45deg);
  -ms-transform: translate(-33%, -50%) rotate(45deg);
  transform: translate(-33%, -50%) rotate(45deg);
}

.slick-next {
  right: 91px;
}

.slick-next:before {
  top: 50%;
  left: 49%;
  -webkit-transform: translate(-74%, -50%) rotate(-135deg);
  -ms-transform: translate(-74%, -50%) rotate(-135deg);
  transform: translate(-74%, -50%) rotate(-135deg);
}

.slick-next,
.slick-prev {
  top: 134px;
  height: 43px;
  width: 43px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.slick-next:hover,
.slick-prev:hover {
  background-color: #fff;
}

.catalog {
  color: #282828;
}

.catalog .breadcrumbs {
  border: none;
}

.catalog__title {
  margin-top: -10px;
}

.catalog__title:after {
  display: none;
}

.catalog__find-title {
  text-align: center;
  margin-top: 39px;
}

.catalog__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 48px;
}

.catalog__filter-open-btn {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  height: 51px;
  color: #fff;
  max-width: 150px;
}

.catalog__col-1 {
  width: 23.034%;
}

.catalog__filter-list {
  border-radius: 3px;
  border: 1px solid #ece9f2;
}

.catalog__filter-item {
  overflow: hidden;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-bottom: 1px solid #fff;
}

.catalog__filter-item.is-active .catalog__filter-heading:after {
  right: 18px;
  top: 22px;
  -webkit-transform: rotate(-45deg) translateX(-50%);
  -ms-transform: rotate(-45deg) translateX(-50%);
  transform: rotate(-45deg) translateX(-50%);
}

.catalog__filter-item:last-child {
  border: none;
}

.catalog__filter-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  background-color: #ece9f2;
  padding: 15px 18px 14px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.catalog__filter-heading:focus,
.catalog__filter-heading:hover {
  background-color: #ece9f29e;
}

.catalog__filter-heading:after {
  position: absolute;
  content: "";
  border-top: 2px solid;
  border-right: 2px solid;
  right: 23px;
  top: 23px;
  -webkit-transform: rotate(135deg) translateX(-50%);
  -ms-transform: rotate(135deg) translateX(-50%);
  transform: rotate(135deg) translateX(-50%);
  width: 8px;
  height: 8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.catalog__fields-list {
  background-color: #fff;
  padding: 24px 15px 24px 54px;
}

.catalog__fields-item + .catalog__fields-item {
  margin-top: 11px;
}

.catalog__fields-checkbox {
  display: none;
  width: 0;
  height: 0;
}

.catalog__fields-checkbox:checked + .catalog__fields-label {
  font-weight: 600;
}

.catalog__fields-checkbox:checked + .catalog__fields-label:before {
  border-color: transparent;
  background-image: url(../img/checked.png);
}

.catalog__fields-label {
  position: relative;
  font-size: 17px;
  letter-spacing: -1.2px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.catalog__fields-label:focus:before,
.catalog__fields-label:hover:before {
  border-color: transparent;
}

.catalog__fields-label:before {
  position: absolute;
  left: -38px;
  top: -1px;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #ece9f2;
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.catalog__cost-wrapper {
  padding: 0 19px;
}

.catalog__form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 46px;
  margin-top: 15px;
}

.catalog__input {
  font-size: 17px;
  height: 51px;
  color: #282828;
  font-weight: 700;
  padding: 5px 17px;
}

.catalog__input + .catalog__input {
  margin-left: 18px;
}

.catalog__filter-btn {
  margin-top: 26px;
  border-radius: 3px;
}

.catalog__filter-btn + .catalog__filter-btn {
  color: #282828;
  margin-top: 15px;
}

.catalog__col-2 {
  width: 74.3%;
  margin-left: 2.7%;
}

.catalog__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog__select-wrap {
  position: relative;
  max-width: 302px;
  width: 100%;
}

.catalog__select-wrap:before {
  position: absolute;
  z-index: 2;
  content: "";
  right: 23px;
  top: 28px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  border-width: 5px 5px 0;
  border-radius: 2px 2px 12px;
  border-color: #282828 transparent transparent;
  border-style: solid;
  width: 7px;
  height: 7px;
  pointer-events: none;
}

.catalog__select {
  height: 51px;
  max-width: 100%;
  color: #282828;
  padding-left: 19px;
  cursor: pointer;
}

.catalog__types-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -4px;
}

.catalog__types-item {
  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;
  border: 1px solid #ece9f2;
  cursor: pointer;
  border-radius: 3px;
  width: 32px;
  height: 32px;
}

.catalog__types-item .a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.catalog__types-item.active {
  background-color: #ece9f2;
}

.catalog__types-item + .catalog__types-item {
  margin-left: 16px;
}

.catalog__products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 52px;
}

.catalog__products-list.list .catalog__products-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  min-height: auto;
  padding-bottom: 20px;
}

.catalog__products-list.list .catalog__products-item.hit:after,
.catalog__products-list.list .catalog__products-item.new:after {
  top: 21px;
}

.catalog__products-list.list .catalog__products-item:focus,
.catalog__products-list.list .catalog__products-item:hover {
  padding: 20px 32px;
}

.catalog__products-list.list .catalog__products-item:focus::before,
.catalog__products-list.list .catalog__products-item:hover::before {
  width: 100%;
  height: 100%;
}

.catalog__products-list.list .catalog__products-item:focus .catalog__content,
.catalog__products-list.list .catalog__products-item:focus .catalog__img-wrap,
.catalog__products-list.list .catalog__products-item:hover .catalog__content,
.catalog__products-list.list .catalog__products-item:hover .catalog__img-wrap {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.catalog__products-list.list .catalog__products-item .catalog__like-btn {
  top: 21px;
}

.catalog__products-list.list .catalog__products-item .catalog__content {
  margin-right: 250px;
  max-width: 400px;
  margin-left: 20px;
}

.catalog__products-list.list .catalog__products-item .catalog__img-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.catalog__products-list.list .catalog__products-item .catalog__desc {
  display: block;
  margin-top: 20px;
}

.catalog__products-list.list .catalog__products-item .catalog__price {
  position: absolute;
  right: 35px;
  top: 50px;
  margin-top: 0;
}

.catalog__products-list.list .catalog__products-item .catalog__bottom {
  opacity: 1;
  width: 100%;
  right: 32px;
  left: initial;
  top: 100px;
  bottom: initial;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  max-width: 190px;
  padding: 0;
  background-color: transparent;
}

.catalog__products-list.list .catalog__products-item .catalog__btn {
  font-size: 15px;
}

.catalog__products-list.list .catalog__products-item .catalog__counter {
  padding: 0 10px;
}

.catalog__products-list.list .catalog__products-item + .catalog__products-item {
  margin-left: 0;
  margin-top: 2.5%;
}

.catalog__products-item {
  width: 31%;
}

.catalog__products-item + .catalog__products-item {
  margin-left: 3.5%;
}

.catalog__products-item:nth-child(3n + 4) {
  margin-left: 0;
}

.catalog__products-item:nth-child(n + 4) {
  margin-top: 3.5%;
}

.catalog__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 21px;
}

.catalog__nav-desc {
  font-weight: 600;
}

.catalog__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 9px;
}

.catalog__nav-link {
  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;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: underline;
  width: 52px;
  height: 52px;
  border-radius: 3px;
}

.catalog__nav-link:focus,
.catalog__nav-link:hover {
  border-color: #dfdfdf;
}

.catalog__nav-link.active {
  border-color: #ece9f2;
  text-decoration: none;
  color: #282828;
}

.catalog .recommend-block__link {
  margin-top: 0;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 1050px) {
  .catalog__col-1 {
    width: 27.034%;
  }

  .catalog__fields-list {
    padding: 16px 15px 18px 46px;
  }

  .catalog__col-2 {
    width: 70.3%;
  }

  .catalog__products-item {
    width: 48.2%;
  }

  .catalog__products-item + .catalog__products-item {
    margin-left: 3.5%;
  }

  .catalog__products-item:nth-child(2n + 3) {
    margin-left: 0;
  }

  .catalog__products-item:nth-child(n + 3) {
    margin-top: 3.5%;
  }
}

@media (max-width: 950px) {
  .catalog__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .catalog__filter-open-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .catalog__col-1 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: fixed;
    z-index: 8;
    left: 0;
    top: 0;
    padding: 90px 20px 40px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: #fff;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    overflow: auto;
    height: 100vh;
  }

  .catalog__col-1.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .catalog__filter-close .nav__close-btn-line {
    background-color: #282828;
  }

  .catalog__select-wrap:before {
    top: 22px;
  }

  .catalog__select {
    font-size: 12px;
    height: 40px;
  }

  .catalog__filter-list {
    margin-top: 20px;
  }

  .catalog__filter-item.is-active .catalog__filter-heading:after {
    top: 16px;
  }

  .catalog__filter-heading {
    font-size: 12px;
    padding: 13px 18px;
  }

  .catalog__filter-heading:after {
    top: 17px;
  }

  .catalog__fields-list {
    padding: 20px 15px 20px 34px;
  }

  .catalog__fields-label {
    font-size: 14px;
  }

  .catalog__fields-label:before {
    top: 0;
    left: -27px;
    width: 17px;
    height: 17px;
  }

  .catalog__form-wrap {
    padding-bottom: 20px;
  }

  .catalog__input {
    font-size: 14px;
  }

  .catalog__col-2 {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .catalog__products-list.list .catalog__products-item .catalog__price {
    right: 35px;
    top: 50px;
    margin-top: 0;
  }

  .catalog__products-item {
    width: 31%;
  }

  .catalog__products-item + .catalog__products-item {
    margin-left: 3.5%;
  }

  .catalog__products-item:nth-child(3n + 4) {
    margin-left: 0;
  }

  .catalog__products-item:nth-child(n + 3) {
    margin-top: 0;
  }

  .catalog__products-item:nth-child(n + 4) {
    margin-top: 3.5%;
  }
}

@media (max-width: 800px) {
  .catalog__products-list {
    margin-top: 40px;
  }

  .catalog__products-item {
    width: 48.68%;
  }

  .catalog__products-item + .catalog__products-item {
    margin-left: 2.62%;
  }

  .catalog__products-item:nth-child(2n + 3) {
    margin-left: 0;
  }

  .catalog__products-item:nth-child(n + 3) {
    margin-top: 2.62%;
  }
}

@media (max-width: 767px) {
  .catalog__products-list.list .catalog__products-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: initial;
    padding: 15px 16px;
  }

  .catalog__products-list.list .catalog__products-item.hit:after,
  .catalog__products-list.list .catalog__products-item.new:after {
    top: 12px;
  }

  .catalog__products-list.list .catalog__products-item:focus,
  .catalog__products-list.list .catalog__products-item:hover {
    padding: 15px 16px;
  }

  .catalog__products-list.list .catalog__products-item:focus::before,
  .catalog__products-list.list .catalog__products-item:hover::before {
    width: 100%;
    height: 100%;
  }

  .catalog__products-list.list .catalog__products-item:focus .catalog__content,
  .catalog__products-list.list .catalog__products-item:focus .catalog__img-wrap,
  .catalog__products-list.list .catalog__products-item:hover .catalog__content,
  .catalog__products-list.list
    .catalog__products-item:hover
    .catalog__img-wrap {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .catalog__products-list.list .catalog__products-item .catalog__content {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    text-align: center;
  }

  .catalog__products-list.list .catalog__products-item .catalog__like-btn {
    top: 12px;
    left: 12px;
  }

  .catalog__products-list.list .catalog__products-item .catalog__img-wrap {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .catalog__products-list.list .catalog__products-item .catalog__price {
    position: relative;
    right: initial;
    top: initial;
    margin-top: 15px;
  }

  .catalog__products-list.list .catalog__products-item .catalog__bottom {
    position: relative;
    top: initial;
    right: initial;
    margin-top: 15px;
  }

  .catalog__products-list.list .catalog__products-item .catalog__counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .catalog__products-list.list .catalog__products-item .catalog__btn {
    font-size: 12px;
  }
}

@media (max-width: 550px) {
  .catalog__title {
    margin-top: 20px;
  }

  .catalog__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .catalog__filter-open-btn {
    max-width: 100%;
  }

  .catalog__nav-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .catalog__nav-wrap .recommend-block__link {
    width: 100%;
    margin-top: 20px;
  }

  .catalog__nav-link {
    width: 40px;
    height: 40px;
  }

  .catalog__products-list {
    margin-top: 20px;
  }
}

.breadcrumbs {
  padding: 22px 16px 0 0;
  border-bottom: 1px solid #ece9f2;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: auto;
  padding-right: 0;
  padding-bottom: 22px;
}

.breadcrumbs__item {
  position: relative;
}

.breadcrumbs__item + .breadcrumbs__item {
  margin-left: 42px;
}

.breadcrumbs__item + .breadcrumbs__item:before {
  position: absolute;
  z-index: 1;
  content: "/";
  font-size: 17px;
  left: -25px;
  top: -3px;
  color: #282828;
}

.breadcrumbs__item:last-child .breadcrumbs__link {
  pointer-events: none;
}

.breadcrumbs__link {
  text-transform: lowercase;
  color: #282828;
}

.breadcrumbs__link:focus,
.breadcrumbs__link:hover {
  opacity: 0.8;
}

.footer {
  margin-top: 52px;
}

.footer__form-block-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 53px;
}

.footer__col-1 {
  width: 45.702%;
  margin-left: 32px;
  margin-top: -5px;
}

.footer__form-desc {
  margin-top: 15px;
}

.footer__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #fff;
  margin-top: 31px;
  max-width: 455px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.footer__form:focus,
.footer__form:hover {
  border-color: #aaa;
}

.footer__form.success {
  border-color: transparent;
}

.footer__form.success:before {
  position: absolute;
  content: "Заявка отправлена!";
  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;
  font-size: 20px;
  font-weight: 700;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.footer__form.success .footer__btn,
.footer__form.success .footer__input {
  opacity: 0;
}

.footer__input {
  height: 51px;
  border-radius: 0;
  border: none;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #fff;
}

.footer__btn {
  max-width: 178px;
}

.footer__success {
  position: absolute;
  bottom: -40px;
  left: 50%;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  -webkit-transform: translateX(-50%) translateY(-30px);
  -ms-transform: translateX(-50%) translateY(-30px);
  transform: translateX(-50%) translateY(-30px);
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  visibility: hidden;
}

.footer__success.success {
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.footer__form-img-wrap {
  width: 48.7%;
  margin-left: 2.7%;
  padding-bottom: 23%;
}

.footer__wrap {
  margin-top: 78px;
}

.footer__slider .slick-list {
  margin: 0 -20px;
}

.footer__slide {
  margin: 0 20px;
}

.footer__slide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__slide-img {
  position: relative;
}

.footer__slide-content {
  margin-left: 40px;
  margin-top: 17px;
}

.footer__slide-desc {
  color: #282828;
  margin-top: 17px;
}

.footer__subtitle {
  color: #282828;
  margin-top: 159px;
}

.footer__desc {
  color: #282828;
  margin-top: 17px;
}

.footer__logo-banner {
  margin-top: 64px;
}

.footer__logo-banner-wrap {
  padding-top: 56px;
  padding-bottom: 59px;
}

.footer__logo {
  text-align: center;
}

.footer__logo-desc {
  text-align: center;
  margin-top: 14px;
}

.footer__bottom {
  margin-top: 25px;
  padding-bottom: 29px;
}

.footer__links-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__links-item {
  position: relative;
}

.footer__links-item:before {
  position: absolute;
  content: "";
  left: -14px;
  top: 0;
  height: 15px;
  width: 1px;
  opacity: 0;
}

.footer__links-item + .footer__links-item {
  margin-left: 26px;
}

.footer__links-item + .footer__links-item:before {
  opacity: 1;
}

.footer__links-link:focus,
.footer__links-link:hover {
  opacity: 0.8;
}

.footer__copyright {
  text-align: center;
  color: #282828;
  margin-top: 16px;
}

@media (max-width: 950px) {
  .footer__form-block-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__col-1 {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
  }

  .footer__form {
    max-width: 650px;
    margin: 40px auto 0;
  }

  .footer__form-img-wrap {
    width: 100%;
    max-width: 650px;
    margin: 40px auto 0;
    padding-bottom: 250px;
  }
}

@media (max-width: 900px) {
  .footer__links-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__links-item {
    margin-bottom: 10px;
  }
}

@media (max-width: 550px) {
  .footer__wrap {
    margin-top: 40px;
  }

  .footer__slider .slick-list {
    margin: 0 -10px;
  }

  .footer__slide {
    margin: 0 10px;
  }

  .footer .slick-dots {
    bottom: -50px;
  }

  .footer__subtitle {
    margin-top: 120px;
  }
}

@media (max-width: 450px) {
  .footer__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__input {
    text-align: center;
  }

  .footer__btn {
    max-width: 100%;
  }
}

.header__banner-wrap {
  padding-top: 17px;
  padding-bottom: 15px;
  background-repeat: no-repeat;
  background-size: 360px 150px;
  background-position: 94.1% -67px;
  background-image: url(../img/vans.png);
  max-width: 1026px;
}

.header__banner-title {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.7px;
}

.header__banner-desc {
  padding: 2px 13px;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  margin-top: 3px;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 12px;
}

.header__logo-wrap {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 246px;
  width: 100%;
  margin-top: 4px;
}

.header__logo-img {
  height: 50px;
}

.header__logo-text {
  margin-left: 10px;
}

.header__logo {
  line-height: 0.7;
  font-weight: 700;
  font-size: 20px;
}

.header__desc {
  display: block;
  font-size: 13px;
  color: #5c5c5c;
  margin-top: 7px;
  line-height: 1;
}

.header__desc.header__link {
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
}

.header__desc.header__link--mob {
  display: none;
}

.header__search-form {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin-left: 30px;
}

.header__search-input {
  height: 52px;
  padding: 4px 60px 4px 10px;
}

.title-search-input_fixed {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 460px;
  display: block;
}

.header__search-btn {
  position: absolute;
  right: 28px;
  top: 15px;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.header__search-btn:focus,
.header__search-btn:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.header__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: auto;
  max-width: 350px;
  width: 100%;
  margin-top: 5px;
}

.header__link-wrap {
  position: relative;
  padding-left: 19px;
}

.header__link-wrap:nth-child(1) img {
  width: 20px;
  height: 20px;
}

.header__link-wrap .header__desc {
  margin-top: 0;
}

.header__link-wrap + .header__link-wrap {
  margin-left: 20px;
}

.header__link {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.header__link img {
  position: absolute;
  top: 9px;
  left: -35px;
  width: 23px;
  height: 22px;
}

.header__link:focus,
.header__link:hover {
  opacity: 0.8;
}

.header__link .header__desc {
  text-transform: initial;
  font-size: 14px;
  font-weight: 400;
}

.header__menu-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header__menu-btn-line {
  width: 25px;
  height: 3px;
}

.header__menu-btn-line + .header__menu-btn-line {
  margin-top: 5px;
}

.header__nav {
  height: 77px;
}

@media (max-width: 1200px) {
  .header__info-block {
    margin-left: 30px;
  }

  .header__search-form {
    margin-left: 25px;
  }
}

@media (max-width: 1023px) {
  .header__banner-wrap {
    background-size: contain;
    background-position: top right;
  }

  .header__search-form {
    max-width: 300px;
  }
}

@media (max-width: 950px) {
  .header__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__logo-wrap {
    margin-left: auto;
    margin-right: auto;
    /* text-align: center; */
    -webkit-transform: translateX(37px);
    -ms-transform: translateX(37px);
    transform: translateX(37px);
    max-width: 270px;
  }

  .header__logo-wrap .header__desc {
    font-size: 12px;
  }

  .header__logo {
    font-size: 20px;
  }

  .header__search-form {
    width: 25px;
    height: 25px;
  }

  .header__search-form .header__search-input {
    position: absolute;
    right: 0;
    top: -16px;
    width: 0;
    color: transparent;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
    visibility: hidden;
    background-color: #fff;
    padding: 0;
  }

  .header__search-form .header__search-input.active {
    width: calc(100vw - 188px);
    padding: 4px 60px 4px 10px;
    color: #000;
    pointer-events: initial;
    visibility: visible;
    padding-left: 10px;
    color: #333;
  }

  .title-search-input_fixed {
    top: 37px;
    max-width: initial;
    transform: none;
    width: calc(100vw - 190px);
    right: 0;
    left: initial;
  }

  .header__search-btn {
    top: 0;
    right: 10px;
  }

  .header__info-block {
    max-width: 70px;
    margin-left: 15px;
    height: 25px;
    margin-top: -5px;
  }

  .header__link-wrap {
    padding-left: 0;
  }

  .header__link-wrap + .header__link-wrap {
    margin-left: 0;
  }

  .header__link {
    display: block;
    max-width: 25px;
    overflow: hidden;
    height: 25px;
  }

  .header__link.main-c {
    color: transparent;
  }

  .header__link.header__desc {
    display: none;
    left: -22px;
    bottom: -21px;
    max-width: initial;
    height: initial;
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .header__link--mob {
    display: initial;
  }

  .header__link .header__desc {
    color: transparent;
  }

  .header__link img {
    left: 2px;
    top: 3px;
  }

  .header__nav {
    height: 60px;
  }
}

@media (max-width: 700px) {
  .header__banner-wrap {
    background-image: none;
  }

  .header__banner-title {
    font-size: 12px;
  }
}

@media (max-width: 550px) {
  .header__logo-wrap {
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    transform: translateX(16px);
    max-width: 188px;
  }

  .header__logo-wrap .header__desc {
    display: none;
  }

  .header__logo-img {
    height: 30px;
  }

  .header__logo {
    line-height: 1;
    font-size: 18px;
  }

  .header__search-form {
    margin-top: 2px;
  }

  .header__search-input .header__search-input {
    top: -12px;
    height: 45px;
  }

  .header__search-form .header__search-input.active {
    width: calc(100vw - 130px);
    padding-right: 34px;
    visibility: visible;
    pointer-events: initial;
    padding-left: 10px;
    color: #333;
  }

  .title-search-input_fixed {
    top: 35px;
    width: calc(100vw - 130px);
  }

  .header__search-btn {
    top: 2px;
    width: 17px;
    height: 17px;
  }

  .header__search-btn:focus,
  .header__search-btn:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .header__info-block {
    max-width: 55px;
    margin-left: 3px;
    margin-top: 0;
  }

  .header__link img,
  .header__link-wrap:nth-child(1) img {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 340px) {
  .header__logo {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

.nav {
  position: relative;
}

.nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.nav__dropdown-wrap {
  height: 100%;
  width: 100%;
  max-width: 254px;
}

.nav__dropdown-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  height: 100%;
  padding-right: 44px;
  padding-left: 66px;
  padding-top: 3px;
}

.nav__dropdown-link:before {
  position: absolute;
  content: "";
  right: 59px;
  top: 34px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 7px;
  height: 7px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.nav__dropdown-link:focus:before,
.nav__dropdown-link:hover:before {
  -webkit-transform: rotate(135deg) translate(3px, -3px);
  -ms-transform: rotate(135deg) translate(3px, -3px);
  transform: rotate(135deg) translate(3px, -3px);
}

.nav__dropdown-link:focus .nav__dropdown-burger:after,
.nav__dropdown-link:focus .nav__dropdown-burger:before,
.nav__dropdown-link:hover .nav__dropdown-burger:after,
.nav__dropdown-link:hover .nav__dropdown-burger:before {
  left: 6px;
}

.nav__dropdown-link:focus + .nav__dropdown-menu,
.nav__dropdown-link:hover + .nav__dropdown-menu {
  z-index: 5;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  padding-top: 41px;
}

.nav__dropdown-burger {
  position: absolute;
  left: 0;
}

.nav__dropdown-burger:after,
.nav__dropdown-burger:before {
  position: absolute;
  content: "";
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-color: #fff;
  width: 28px;
  height: 10px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.nav__dropdown-burger:before {
  left: 0;
  border-top: 3px solid;
}

.nav__dropdown-burger:after {
  left: 12px;
  border-bottom: 3px solid;
}

.nav__dropdown-menu {
  position: absolute;
  z-index: -1;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding-bottom: 47px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.nav__dropdown-menu:hover {
  z-index: 5;
  opacity: 1;
  visibility: visible;
  padding-top: 41px;
}

.nav__dropdown-nav-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: -20px;
  padding-right: 10px;
}

.nav__dropdown-nav-item {
  /* width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; */
  margin-right: 30px;
  margin-bottom: 20px;
}

.nav__dropdown-nav-item.other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 10px;
}

.nav__dropdown-nav-item.other .nav__dropdown-nav-link {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 0.3;
  height: 10px;
}

.nav__dropdown-nav-item.other .nav__dropdown-nav-link:focus,
.nav__dropdown-nav-item.other .nav__dropdown-nav-link:hover {
  border-bottom: 1px solid transparent;
  opacity: 0.8;
}

.nav__dropdown-nav-link {
  /* display: block; */
  position: relative;
  font-size: 17px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-bottom: 1px solid transparent;
}

.nav__dropdown-nav-link:before {
  position: absolute;
  content: "";
  left: 39%;
  bottom: 0;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(135deg) translateX(-50%);
  -ms-transform: rotate(135deg) translateX(-50%);
  transform: rotate(135deg) translateX(-50%);
  width: 7px;
  height: 7px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.nav__dropdown-nav-link:focus,
.nav__dropdown-nav-link:hover {
  border-bottom: 1px solid;
}

.nav__dropdown-nav-link.active {
  border-bottom: 1px solid transparent;
}

.nav__dropdown-nav-link.active:before {
  opacity: 1;
  bottom: -16px;
}

.nav__dropdown-nav-link.active + .nav__dropdown-submenus {
  margin-top: 20px;
}

.nav__dropdown-submenu {
  display: none;
}

.nav__dropdown-submenu.active {
  display: block;
}

.nav__dropdown-sumbenu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.nav__dropdown-sumbenu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* width: 24.6%; */
}

.nav__dropdown-sumbenu-item--rubric {
  width: 20%;
  padding-top: 37px;
}

.nav__dropdown-sumbenu-item--rubric .nav__dropdown-sumbenu-link {
  font-size: 17px;
}

.nav__dropdown-sumbenu-item--rubric .nav__dropdown-sumbenu-link--show-more {
  font-size: 14px;
}

.nav__dropdown-sumbenu-item--rubric
  .nav__dropdown-sumbenu-link
  + .nav__dropdown-sumbenu-link {
  margin-top: 21px;
}

.nav__dropdown-sumbenu-item--rubric
  .nav__dropdown-sumbenu-link
  + .nav__dropdown-sumbenu-link--show-more {
  margin-top: auto;
}

.nav__dropdown-sumbenu-item + .nav__dropdown-sumbenu-item {
  margin-left: 1%;
}

.nav__dropdown-sumbenu-title {
  margin-bottom: 20px;
}

.nav__dropdown-sumbenu-link {
  display: block;
  /*  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; */
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  /* border-bottom: 1px solid transparent; */
}

.nav__dropdown-sumbenu-link--show-more {
  font-size: 14px;
  padding-top: 33px;
}

.nav__dropdown-sumbenu-link--sub {
  margin-left: 20px;
}

.nav__dropdown-sumbenu-link + .nav__dropdown-sumbenu-link {
  margin-top: 7px;
}

.nav__dropdown-sumbenu-link + .nav__dropdown-sumbenu-link--show-more {
  margin-top: auto;
}

.nav__dropdown-sumbenu-link:focus,
.nav__dropdown-sumbenu-link:hover {
  text-decoration: underline;
}

.nav__menu {
  max-width: 828px;
  width: 100%;
}

.nav__close-btn {
  display: none;
  position: absolute;
  top: 26px;
  right: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.nav__close-btn-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}

.nav__close-btn-line:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav__close-btn-line:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.nav__item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.nav__item + .nav__item {
  margin-left: 7%;
}

.nav__link {
  font-size: 17px;
  color: #fff;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.nav__link:focus,
.nav__link:hover {
  border-bottom: 1px solid;
}

@media (max-width: 1200px) {
  .nav__item + .nav__item {
    margin-left: 5%;
  }

  .nav__dropdown-nav-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .nav__dropdown-wrap {
    max-width: 230px;
  }

  .nav__dropdown-link {
    padding-right: 30px;
  }

  .nav__dropdown-sumbenu-item + .nav__dropdown-sumbenu-item {
    margin-left: 3%;
  }

  .nav__dropdown-sumbenu-item--rubric .nav__dropdown-sumbenu-link {
    font-size: 15px;
  }

  .nav__item + .nav__item {
    margin-left: 4%;
  }
}

@media (max-width: 950px) {
  .nav__dropdown-wrap {
    max-width: 254px;
  }

  .nav__dropdown-link {
    font-size: 14px;
  }

  .nav__dropdown-link:before {
    right: 76px;
    top: 25px;
  }

  .nav__dropdown-link:focus .nav__dropdown-burger:after,
  .nav__dropdown-link:focus .nav__dropdown-burger:before,
  .nav__dropdown-link:hover .nav__dropdown-burger:after,
  .nav__dropdown-link:hover .nav__dropdown-burger:before {
    left: 0;
  }

  .nav__dropdown-link:focus + .nav__dropdown-menu,
  .nav__dropdown-link:hover + .nav__dropdown-menu,
  .nav__dropdown-menu:focus,
  .nav__dropdown-menu:hover {
    padding-top: 21px;
  }

  .nav__dropdown-burger:after,
  .nav__dropdown-burger:before {
    height: 12px;
    width: 25px;
  }

  .nav__dropdown-nav-list {
    grid-template-columns: repeat(3, 1fr);
    padding-right: 15px;
  }

  .nav__dropdown-nav-item {
    margin-right: 15px;
  }

  .nav__dropdown-nav-link {
    font-size: 15px;
  }

  .nav__dropdown-sumbenu-title {
    font-size: 15px;
  }

  .nav__menu {
    position: fixed;
    z-index: 15;
    left: 0;
    top: 0;
    width: 320px;
    min-height: 100vh;
    max-height: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-top: 0;
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 50px;
  }

  .nav__menu.is-active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 100px;
  }

  .nav__item + .nav__item {
    margin-top: 25px;
    margin-left: 0;
  }

  .nav__link {
    font-size: 18px;
    font-weight: 600;
  }

  .nav .header__link.header__desc {
    position: relative;
    bottom: initial;
    left: initial;
    display: block;
    text-align: center;
    font-size: 17px;
    color: #fff;
    margin: 100px auto 0;
    border-bottom: 1px solid;
    padding-bottom: 2px;
  }

  .nav__close-btn {
    display: block;
  }
}

@media (max-width: 850px) {
  .nav__dropdown-nav-link.active:before {
    display: none;
  }

  .nav__dropdown-nav-item {
    margin-bottom: 15px;
    margin-right: 15px;
  }

  .nav__dropdown-nav-list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: -15px;
  }

  .nav__dropdown-sumbenu-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nav__dropdown-sumbenu-item {
    /* width: 45%; */
    /* margin-bottom: 30px; */
    padding-right: 0;
  }

  .nav__dropdown-sumbenu-item + .nav__dropdown-sumbenu-item {
    margin-left: 5%;
  }

  .nav__dropdown-sumbenu-item:nth-child(2n + 3) {
    margin-left: 0;
  }

  .nav__dropdown-sumbenu-item--rubric .nav__dropdown-sumbenu-link {
    font-size: 14px;
    width: auto;
  }

  .nav__dropdown-sumbenu-link--show-more {
    padding-top: 20px;
    padding-bottom: 1px;
    border-bottom: 1px solid;
  }
}

@media (max-width: 576px) {
  .nav__dropdown-nav-list {
    grid-template-columns: auto;
  }

  /* .nav__dropdown-nav-list {
        display: flex;
        align-items: flex-start;
        flex-wrap: nowrap;
        overflow: auto;
        white-space: nowrap;
        margin-bottom: 0;
        height: 42px;
    } */

  /* .nav__dropdown-nav-item{
        margin-bottom: 0;
        margin-right: 20px;
    } */
}

.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  border-radius: 3px;
  padding: 20px 32px 54px;
  height: 100%;
  max-height: 452px;
  min-height: 452px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.products__item:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid #ece9f2;
  border-radius: 3px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.products__item.hit:after,
.products__item.new:after {
  position: absolute;
  top: 21px;
  right: 22px;
  padding: 1px 7px;
  text-transform: uppercase;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.products__item.hit:after {
}

.products__item.new:after {
  content: "new";
  background-color: #bb2c3b;
  padding: 1px 3px;
}

.products__item:focus,
.products__item:hover {
  padding-left: 24px;
  padding-right: 24px;
}

.products__item:focus.hit:after,
.products__item:focus.new:after,
.products__item:hover.hit:after,
.products__item:hover.new:after {
  top: 13px;
}

.products__item:focus:before,
.products__item:hover:before {
  z-index: 2;
  border-width: 2px;
  -webkit-box-shadow: 0 2px 8px 2px #e2e1e3;
  box-shadow: 0 2px 8px 2px #e2e1e3;
  width: 111%;
  height: 106.7%;
}

.products__item:focus .products__like-btn,
.products__item:hover .products__like-btn {
  opacity: 1;
}

.products__item:focus .products__bottom,
.products__item:hover .products__bottom {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.products__item:focus .products__img-wrap,
.products__item:hover .products__img-wrap {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.products__item:focus .products__content,
.products__item:hover .products__content {
  -webkit-transform: translateY(-41px);
  -ms-transform: translateY(-41px);
  transform: translateY(-41px);
}

.products__item .link-abs {
  z-index: 2;
}

.products__like-btn {
  position: absolute;
  left: 22px;
  top: 10px;
  z-index: 3;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  width: 24px;
  height: 22px;
  opacity: 0;
}

.products__like-btn:focus,
.products__like-btn:hover {
  outline: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.products__like-btn .full,
.products__like-btn.is-fav .empty {
  display: none;
}

.products__like-btn.is-fav .full {
  display: initial;
}

.products__img-wrap {
  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;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.products__img {
  max-height: 267px;
  -o-object-fit: contain;
  object-fit: contain;
}

.products__content {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.products__type {
  font-size: 14px;
  color: #5c5c5c;
}

.products__name {
  color: #282828;
}

.products__desc {
  color: #5c5c5c;
  display: none;
}

.products__price {
  font-size: 14px;
  color: #5c5c5c;
  margin-top: 19px;
}

.products__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 109%;
  left: -4.4%;
  bottom: -2.6%;
  opacity: 0;
  padding: 17px 14px;
  background-color: #ece9f2;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.products__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 17px;
  height: 51px;
  padding: 0 16px;
  border: 1px solid;
}

.products__count-btn {
  font-size: 17px;
  font-weight: 600;
  color: #282828;
  margin-right: 6px;
  margin-top: -2px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.products__count-btn:focus,
.products__count-btn:hover {
  outline: 0;
  opacity: 0.8;
}

.products__count {
  width: 30px;
  text-align: center;
  font-weight: 600;
  color: #282828;
}

.products__count + .products__count-btn {
  margin-right: 0;
  margin-left: 6px;
  margin-top: 0;
}

.products__btn {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  height: 51px;
}

.products__btn:focus,
.products__btn:hover {
  outline: 0;
  opacity: 0.8;
}

@media (max-width: 550px) {
  .products__item {
    padding: 16px 16px 34px;
    max-height: initial;
    min-height: 380px;
  }

  .products__item.hit:after,
  .products__item.new:after {
    top: 12px;
    right: 12px;
  }

  .products__item:focus,
  .products__item:hover {
    padding-left: 12px;
    padding-right: 12px;
  }

  .products__item:focus:before,
  .products__item:hover:before {
    width: 106%;
    height: 101.7%;
  }

  .products__item:focus.hit:after,
  .products__item:focus.new:after,
  .products__item:hover.hit:after,
  .products__item:hover.new:after {
    top: 12px;
  }

  .products__item:focus .products__img-wrap,
  .products__item:hover .products__img-wrap {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .products__item:focus .products__bottom,
  .products__item:hover .products__bottom {
    padding: 10px;
    border-radius: 0 0 1px 1px;
    width: 103.6%;
    left: -1.8%;
    bottom: -0.4%;
  }

  .products__like-btn {
    left: 6px;
  }

  .products__img {
    max-height: 200px;
  }

  .products__type {
    font-size: 13px;
  }

  .products__name {
    font-size: 15px;
  }

  .products__price {
    margin-top: 10px;
  }

  .products__price b {
    font-size: 18px;
  }

  .products__counter {
    font-size: 15px;
    height: 45px;
    padding: 0 12px;
  }

  .products__btn {
    font-size: 12px;
    height: 45px;
  }
}

@media (max-width: 400px) {
  .products__counter {
    display: none;
  }
}

@media (max-width: 370px) {
  .products__img {
    max-height: 180px;
  }
}

.categories-block {
  margin-top: 87px;
  margin-bottom: 79px;
}

.categories-block__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 67px;
}

.categories-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #ece9f2;
  padding: 25px 20px;
  width: 100%;
  border-radius: 3px;
  height: 78px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.categories-block__item--small {
  width: 18.08%;
}

.categories-block__item:focus,
.categories-block__item:hover {
  -webkit-box-shadow: 0 0 4px 0 #a9a9a9;
  box-shadow: 0 0 4px 0 #a9a9a9;
}

.categories-block__item-title {
  font-size: 12px;
  color: #282828;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 160px;
}

.categories-block__link {
  display: block;
  text-align: center;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 34px;
}

.categories-block__link:focus,
.categories-block__link:hover {
  opacity: 0.8;
}

@media (max-width: 950px) {
  .categories-block__list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px 15px;
  }

  .categories-block__item {
    width: 100%;
    padding: 25px 11px;
  }

  .categories-block__item-title {
    text-shadow: 1px 1px 2px #fff;
  }
}

@media (max-width: 550px) {
  .categories-block {
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .categories-block__list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }

  .categories-block__item {
    width: 100%;
    padding: 25px 20px;
  }
}

@media (max-width: 360px) {
  .categories-block__list {
    display: block;
    grid-gap: initial;
  }

  .categories-block__item {
    width: 100%;
  }

  .categories-block__item + .categories-block__item {
    margin-left: 0;
    margin-top: 15px;
  }
}

.recommend-block {
  margin-bottom: 39px;
}

.recommend-block--second {
  margin-top: 86px;
  margin-bottom: 0;
}

.recommend-block__heading-list {
  position: relative;
  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;
}

.recommend-block__heading-list:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  border-bottom: 1px solid #ece9f2;
}

.recommend-block__heading-item {
  background-color: #fff;
  padding: 0 15px;
}

.recommend-block__heading-item + .recommend-block__heading-item {
  padding-left: 0;
}

.recommend-block__heading-btn {
  position: relative;
  color: #282828;
  cursor: pointer;
  padding: 15px 15px 16px;
  border-radius: 3px;
  min-width: 168px;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.recommend-block__heading-btn:not(.active) {
  background-color: transparent;
}

.recommend-block__heading-btn:after {
  position: absolute;
  content: "";
  left: 47.6%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -17px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(135deg) translateX(-50%);
  -ms-transform: rotate(135deg) translateX(-50%);
  transform: rotate(135deg) translateX(-50%);
  width: 7px;
  height: 7px;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.recommend-block__heading-btn:focus,
.recommend-block__heading-btn:hover {
  outline: 0;
  opacity: 0.9;
}

.recommend-block__heading-btn.active {
  color: #fff;
  opacity: 1;
}

.recommend-block__heading-btn:not(.active):after {
  opacity: 1;
  -webkit-transform: rotate(135deg) translateX(-50%);
  -ms-transform: rotate(135deg) translateX(-50%);
  transform: rotate(135deg) translateX(-50%);
  border-color: #282828;
}

.recommend-block__products-list {
  display: none;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 80px;
}

.recommend-block__name a:hover {
  text-decoration: underline;
}

.recommend-block__products-list.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recommend-block__products-item {
  width: 23.034%;
}

.recommend-block__products-item + .recommend-block__products-item {
  margin-left: 2.62%;
}

.recommend-block__products-item:nth-child(4n + 5) {
  margin-left: 0;
}

.recommend-block__products-item:nth-child(n + 5) {
  margin-top: 2.62%;
}

.recommend-block__link {
  margin-top: 43px;
  text-align: right;
  margin-right: 47px;
}

@media (max-width: 950px) {
  .recommend-block__heading-item {
    padding: 0 10px;
  }

  .recommend-block__heading-btn {
    font-size: 14px;
    padding: 10px;
    min-width: 120px;
  }

  .recommend-block__products-list {
    margin-top: 60px;
  }

  .recommend-block__products-item {
    width: 31.58%;
  }

  .recommend-block__products-item + .recommend-block__products-item {
    margin-left: 2.62%;
  }

  .recommend-block__products-item:nth-child(3n + 4) {
    margin-left: 0;
  }

  .recommend-block__products-item:nth-child(n + 4) {
    margin-top: 2.62%;
  }
}

@media (max-width: 800px) {
  .recommend-block__products-item {
    width: 48.68%;
  }

  .recommend-block__products-item + .recommend-block__products-item {
    margin-left: 2.62%;
  }

  .recommend-block__products-item:nth-child(2n + 3) {
    margin-left: 0;
  }

  .recommend-block__products-item:nth-child(n + 3) {
    margin-top: 2.62%;
  }
}

@media (max-width: 550px) {
  .recommend-block__heading-item {
    padding: 0 7px;
  }

  .recommend-block__heading-btn {
    font-size: 12px;
    padding: 7px;
    min-width: 100px;
  }

  .recommend-block__link {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .recommend-block__heading-item {
    padding: 0 10px;
  }

  .recommend-block__heading-btn {
    font-size: 10px;
    padding: 5px;
    min-width: initial;
  }
}

.slider-block {
  background-color: #ece9f2;
}

.slider-block--second .slider-block__slide {
  min-height: 260px;
}

.slider-block--second .slider-block__slide-img {
  width: 100%;
  min-height: 260px;
}

.slider-block--second .slider-block__content {
  padding: 23px 0;
  max-width: 450px;
  margin-right: 6%;
}

.slider-block--second .slider-block__subtitle {
  font-weight: 600;
}

.slider-block--second .slider-block__title {
  background-color: #2c2c2c;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 35px;
  margin-top: 22px;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.slider-block__wrap {
  padding-top: 55px;
  padding-bottom: 53px;
}

.slider-block__slider .slick-list {
  margin: 0 -10px;
}

.slider-block__slider .slick-initialized .slick-slide + .slick-slide {
  display: block;
}

.slider-block__slide {
  border-radius: 3px;
  min-height: 330px;
  margin: 0 10px;
}

.slider-block__slide + .slider-block__slide {
  display: none;
}

.slider-block__slide-img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 330px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.slider-block__content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  max-width: 582px;
  padding-top: 38px;
  padding-bottom: 33px;
  margin-right: 6.4%;
}

.slider-block__title {
  font-size: 47px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
}

.slider-block__main-desc {
  margin-top: 12px;
}

.slider-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
  margin-left: 6px;
  max-width: 522px;
  width: 100%;
}

.slider-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider-block__desc {
  font-size: 17px;
  max-width: 150px;
  margin-left: 30px;
}

.slider-block__btn {
  max-width: 168px;
  margin-top: 25px;
}

@media (max-width: 1100px) {
  .slider-block__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .slider-block__subtitle,
  .slider-block__title {
    text-shadow: 1px 1px 3px #585858;
  }

  .slider-block__desc,
  .slider-block__main-desc {
    text-shadow: 1px 1px 4px #1b1b1b;
  }
}

@media (max-width: 850px) {
  .slider-block__content {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }

  .slider-block__title {
    font-size: 35px;
  }

  .slider-block__subtitle {
    font-size: 24px;
    margin-top: 10px;
  }

  .slider-block__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .slider-block__item img {
    max-width: 23%;
  }

  .slider-block__desc {
    margin-left: 15px;
    font-size: 14px;
  }
}

@media (max-width: 550px) {
  .slider-block__wrap {
    padding: 16px;
  }

  .slider-block--second .slider-block__title {
    font-size: 24px;
  }

  .slider-block--second .slider-block__subtitle {
    margin-top: 0;
  }

  .slider-block--second .slider-block__content {
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 0;
  }

  .slider-block--second .slider-block__slide-img {
    -o-object-position: -291px;
    object-position: -291px;
  }

  .slider-block__desc,
  .slider-block__main-desc,
  .slider-block__subtitle,
  .slider-block__title {
    text-shadow: 1px 1px 3px #fff;
  }

  .slider-block__slide:before {
    position: absolute;
    z-index: 1;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #838383;
    opacity: 0.5;
  }

  .slider-block__slide-img {
    /* -o-object-position: -70px;
    object-position: -70px; */
    min-height: initial;
  }

  .slider-block__title {
    font-size: 25px;
  }

  .slider-block__subtitle {
    font-size: 18px;
  }

  .slider-block__slide {
    min-height: 250px;
  }

  .slider-block__content {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .slider-block__img {
    min-height: 250px;
  }
}

@media (max-width: 380px) {
  .slider-block--second .slider-block__title {
    font-size: 18px;
  }

  .slider-block__title {
    font-size: 21px;
  }

  .slider-block__subtitle {
    font-size: 16px;
  }
}

.product {
  color: #282828;
}

.product__wrap {
  margin-top: 38px;
}

.product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product__col-1 {
  width: 39.5%;
}

.product__img-wrap {
  display: block;
  padding-bottom: 100%;
}

.product__img {
  -o-object-fit: contain;
  object-fit: contain;
}

.product__images-list {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
  grid-gap: 3% 1.25%;
  padding-bottom: 10px;
  transition: 0.3s;
} /* 

@supports (-moz-appearance: none) {
  .product__images-list {
    scrollbar-width: thin;
    scrollbar-color: #000 #f1f1f1;
  }
}

.product__images-list::-webkit-scrollbar {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background-color: #f1f1f1;
}

.product__images-list::-webkit-scrollbar-thumb {
  border: 9px solid transparent;
  border-radius: 2px;
  background-color: #000;
  cursor: pointer;
} */

.product__images-item {
  flex-shrink: 0;
  padding-bottom: 95.3%;
  border: 2px solid transparent;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 3px;
}

.product__images-item a {
  display: none;
}

.product__images-item-img {
  object-fit: contain;
  padding: 5px;
}

.product__images-item.active,
.product__images-item:hover {
  border-color: #000;
}

.product__col-2 {
  width: 31.5%;
  margin-left: 3.2%;
}

.product__name {
  margin-top: 5px;
}

.product__available {
  position: relative;
  margin-top: 39px;
  margin-left: 41px;
}

.product__available:after,
.product__available:before {
  position: absolute;
  content: "";
  height: 3px;
}

.product__available:before {
  top: 8px;
  left: -36px;
  width: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.product__available:after {
  top: 6.3px;
  left: -31.5px;
  width: 15px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.product__subtitle {
  margin-top: 54px;
}

.product__characters-list {
  margin-top: 29px;
}

.product__characters-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product__characters-item + .product__characters-item {
  margin-top: 17px;
}

.product__characters-name {
  width: 40%;
}

.product__characters-name--images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 10px 10px;
  width: 100%;
}

@media (max-width: 767px) {
  .product__characters-name--images {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .product__characters-name--images {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .product__characters-name.product__characters-name--images {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .product__characters-name.product__characters-name--images {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.product__characters-value {
  font-weight: 700;
  width: 58%;
  margin-left: 2%;
}

.product__characters-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 90px;
  font-size: 0;
}

.product__characters-link img {
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
}

.product__col-3 {
  width: 22.8%;
  margin-left: 2.8%;
}

.product__like-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5c5c5c;
  position: relative;
  opacity: 1;
  width: 100%;
  left: 0;
  top: 0;
  margin-left: 22px;
  margin-top: -2px;
}

.product__like-btn img {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  width: 22px;
  height: 20px;
  margin-right: 20px;
}

.product__like-btn:focus,
.product__like-btn:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.product__like-btn:focus img,
.product__like-btn:hover img {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.product__col-3-wrap {
  margin-top: 40px;
  padding: 66px 20px 23px;
  background-color: #ece9f2;
}

.product__bottom {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin-top: 42px;
  border-radius: 5px;
  padding: 0;
}

.product__bottom .products__counter {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.product__bottom .products__btn {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.product__price-title {
  margin-left: 19px;
}

.product__price {
  margin-left: 19px;
  margin-top: 5px;
}

.product__desc {
  border-radius: 5px;
  border: 1px solid #ece9f2;
  padding: 25px 29px 31px;
  max-width: 848px;
  line-height: 1.7;
  margin-top: 57px;
}

.product__desc.about__desc {
  border: none;
  max-width: 100%;
  padding-left: 0;
}

.product__desc.about__desc a {
  color: var(--main-c);
}

.product__desc .product__subtitle {
  margin-bottom: 23px;
  margin-top: 0;
}

.product__bottom-title {
  margin-top: 105px;
}

.product__seems-wrap {
  padding-bottom: 83px;
}

.product__seems-slider {
  margin-top: 64px;
}

.product__seems-slider .slick-list {
  margin: 0 -13px;
}

.product__seems-slider .slick-dots {
  bottom: -60px;
}

.product__seems-slide {
  margin: 0 13px;
  height: 265px;
  border-radius: 5px;
  border: 1px solid #ece9f2;
}

.product__seems-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 25px;
  padding-right: 6px;
  height: 100%;
}

.product__seems-col-1 .products__price {
  margin-top: 55px;
}

.product__seems-img {
  max-width: 46%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: -20px;
  object-position: -20px;
  height: 100%;
  max-height: 250px;
}

@media (max-width: 1200px) {
  .product__col-1 {
    width: 34.5%;
  }

  .product__col-3 {
    width: 27.8%;
  }
}

@media (max-width: 950px) {
  .product__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .product__col-1 {
    width: 46.8%;
  }

  .product__img-wrap {
    padding-bottom: 53%;
  }

  .product__col-2 {
    width: 50%;
  }

  .product__name {
    font-size: 24px;
  }

  .product__available {
    margin-top: 20px;
  }

  .product__col-3-wrap,
  .product__subtitle {
    margin-top: 30px;
  }

  .product__col-3 {
    width: 100%;
    max-width: 350px;
    margin-left: 0;
    margin-top: 40px;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .product__img-wrap {
    padding-bottom: 63%;
  }

  .product__characters-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product__characters-name {
    width: 100%;
  }

  .product__characters-value {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 550px) {
  .product__col-1 {
    width: 100%;
  }

  .product__img-wrap {
    padding-bottom: 70%;
  }

  .product__images-list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3% 1.33%;
  }

  .product__col-2 {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .product__name {
    font-size: 21px;
  }

  .product__characters-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .product__characters-name {
    width: 40%;
  }

  .product__characters-value {
    width: 55%;
    margin-left: 5%;
  }

  .product__col-3 {
    margin: 40px auto 0;
    max-width: 100%;
  }

  .product__col-3-wrap {
    padding: 30px 15px 15px;
  }

  .product__like-btn {
    margin-left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product__price b {
    font-size: 27px;
  }

  .product__bottom {
    margin-top: 20px;
  }

  .product .products__counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 17px;
    width: 50%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product .recommend-block__btn {
    width: 50%;
  }

  .product__desc {
    padding: 20px 16px;
    margin-top: 40px;
  }

  .product__bottom-title {
    margin-top: 50px;
  }

  .product__seems-wrap {
    padding-bottom: 60px;
  }

  .product__seems-slider .slick-list {
    margin: 0 -7px;
  }

  .product__seems-slide {
    margin: 0 7px;
  }

  .product__seems-content {
    padding-left: 16px;
  }

  .product__seems-img {
    max-width: 40%;
    max-height: 180px;
  }
}

.user-cabinet__popup {
  position: absolute;
  visibility: hidden;
  z-index: 9;
  top: 131px;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  padding: 20px 20px 62px;
  background-color: #fff;
}

.user-cabinet__popup.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.user-cabinet__popup--callback {
  position: fixed;
  z-index: 8;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 500px;
  border-radius: 4px;
  overflow: hidden;
  width: calc(100% - 30px);
}

.user-cabinet__popup--callback.active {
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
}

.user-cabinet__popup-close {
  position: absolute;
  top: 29px;
  right: 36px;
  width: 29px;
  height: 29px;
  cursor: pointer;
}

.user-cabinet__popup-close:focus:after,
.user-cabinet__popup-close:focus:before,
.user-cabinet__popup-close:hover:after,
.user-cabinet__popup-close:hover:before {
  background-color: #37393b;
}

.user-cabinet__popup-close:after,
.user-cabinet__popup-close:before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #b1b1b1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.user-cabinet__popup-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.user-cabinet__popup-close:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.user-cabinet__popup-heading {
  background-color: gold;
  padding: 5px 21px 9px;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
}

.user-cabinet__popup-row-1 {
  margin-top: 25px;
  padding-left: 20px;
  padding-bottom: 21px;
  border-bottom: 1px solid #353535;
}

.user-cabinet__popup-price {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.user-cabinet__popup-characters {
  display: inline-block;
  font-weight: 400;
  color: #8c95a1;
  margin-top: 16px;
}

.user-cabinet__popup-characters img {
  margin: 0 5px;
}

.user-cabinet__popup-characters b {
  color: #272a2e;
}

.user-cabinet__popup-characters + .user-cabinet__popup-characters {
  margin-left: 30px;
}

.user-cabinet__popup-row-2 {
  padding-left: 20px;
  margin-top: 13px;
}

.user-cabinet__popup-row-2 .user-cabinet__user-email {
  margin-top: -2px;
}

.user-cabinet__popup-row-2 .user-cabinet__item-status {
  margin-top: 27px;
}

.user-cabinet__popup-name {
  font-size: 17px;
  margin-top: 14px;
}

.user-cabinet__popup .header__search-input {
  margin-top: 30px;
}

.user-cabinet__popup .header__search-input + .header__search-input {
  margin-top: 20px;
}

.footer__form-title {
  text-align: center;
}

.footer__callback-form {
  margin-top: 10px;
}

.footer__callback-form:before {
  position: absolute;
  z-index: 3;
  content: "Заявка отправлена!";
  font-size: 22px;
  font-weight: 600;
  top: 50%;
  left: 50%;
  color: #b1b1b1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}

.footer__callback-form.success:before {
  opacity: 1;
  visibility: visible;
}

.user-cabinet__popup--callback .recommend-block__btn {
  max-width: 200px;
  margin: 30px auto 0;
}

@media (max-width: 767px) {
  .user-cabinet__popup {
    padding: 15px 15px;
  }

  .user-cabinet__popup--callback {
    padding-bottom: 50px;
  }

  .user-cabinet__popup-close {
    top: 25px;
    right: 18px;
  }

  .user-cabinet__popup-heading {
    font-size: 28px;
  }

  .user-cabinet__popup-row-1 {
    margin-top: 10px;
    padding-left: 10px;
  }

  .user-cabinet__popup-price {
    font-size: 21px;
  }

  .user-cabinet__popup-characters {
    display: block;
  }

  .user-cabinet__popup-characters + .user-cabinet__popup-characters {
    margin-left: 0;
    margin-top: 15px;
  }

  .user-cabinet__popup-row-2 {
    padding-left: 10px;
  }
}

.page__wpp-link {
  position: fixed;
  z-index: 8;
  right: 14px;
  bottom: 130px;
  display: block;
  width: 68px;
  height: 68px;
  margin-left: auto;
  margin-top: 27px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/whatsapp-big.svg);
  -webkit-box-shadow: 0 0 10px #b8fb89;
  box-shadow: 0 0 10px #b8fb89;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50%;
}

.page__wpp-link:focus,
.page__wpp-link:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

@media all and (max-width: 1200px) {
  .page__wpp-link {
    width: 58px;
    height: 58px;
    right: 12px;
  }
}

@media all and (max-width: 1200px) {
  .page__wpp-link {
    bottom: 100px;
    width: 50px;
    height: 50px;
  }
}
