@charset "UTF-8";
/* ================ Components ================

   [0] — General Styles
   [1] —
   [2] —
   [3] —
   [4] —
   [5] —
   [6] —
   [7] —
   [8] —
   [9] —
   [10] —
   [11] —
   [12] —
   [13] —
   [14] —
   [15] —

   ============================================ */
/* ============== General Styles ============== */
html,
body {
  font-family: "SF Pro Display";
}

html {
  height: 100%;
}

body {
  height: 100%;
  height: 100vh;
  min-height: 100%;
  min-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: normal;
  background: #f9f9f9;
  counter-reset: how_order form_counter;
  display: none;
}

a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.position-none {
  position: initial;
}

.jc-sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

/* ========= Preloader ========== */
.preloader {
  position: fixed;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
}

.preloader:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top: 4px solid #f8b439;
  border-radius: 100%;
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.header,
.footer {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header {
  z-index: 300;
}

.footer {
  z-index: 200;
}

main.main {
  min-height: 60vh;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  z-index: 50;
  /* overflow: hidden;*/
}
main.main.main--reverse .main__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
main.main.main--reverse .main__article {
  padding-left: 0;
  padding-right: 15px;
}

aside.main__aside {
  padding-left: 15px;
  padding-right: 15px;
  width: 340px;
}

article.main__article {
  padding-left: 15px;
  padding-right: 0;
  width: calc(100% - 340px);
}
article.main__article_manufacturer {
  width: 100%;
}
@media only screen and (max-width: 1440px) {
  aside.main__aside {
    width: 310px;
  }

  article.main__article {
    width: 100%;
  }
}
@media only screen and (max-width: 1299px) {
  aside.main__aside {
    width: 300px;
  }

  article.main__article {
    width: calc(100% - 300px);
  }
}
@media only screen and (max-width: 991px) {
  aside.main__aside {
    display: none;
  }

  article.main__article {
    padding: 0 !important;
    width: 100%;
  }
}
.btn-blick {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-blick:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.3))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 2;
}
.btn-blick:hover:after {
  -webkit-animation: blick 1s;
  animation: blick 1s;
}

@-webkit-keyframes blick {
  100% {
    left: 125%;
  }
}

@keyframes blick {
  100% {
    left: 125%;
  }
}
.btn-red {
  background: #f8b439;
  color: #fff;
  cursor: pointer;
}
.btn-red:hover,
.btn-red:active {
  background: #f8b439;
}

.btn-red-out {
  background: transparent;
  color: #f8b439;
  border: 2px solid #f8b439;
}
.btn-red-out:hover,
.btn-red-out:active {
  background: #f8b439;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #f8b439;
  cursor: pointer;
}
.btn-white:hover,
.btn-white:active {
  background: #460805;
  color: #fff;
}

.btn-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto 0 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #f8b439;
  cursor: pointer;
}
.btn-more:after {
  position: relative;
  top: 1px;
  margin: 0 0 0 0.5em;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.btn-more:hover,
.btn-more:active {
  -webkit-transform: translateX(7%);
  -ms-transform: translateX(7%);
  transform: translateX(7%);
}

.custom-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
  cursor: pointer;
}
.custom-checkbox input:checked ~ .custom-checkbox__checkmark {
  background: #f8b439;
  border-color: #f8b439;
}
.custom-checkbox input:checked ~ .custom-checkbox__checkmark:before {
  opacity: 1;
}
.custom-checkbox__checkmark {
  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;
  left: 0;
  height: 16px;
  width: 16px;
  margin: 0 10px 0 0;
  background: #fff;
  border: 1px solid #dcdce1;
  border-radius: 2px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 2;
}
.custom-checkbox__checkmark:before {
  content: "";
  display: block;
  position: absolute;
  color: #fff;
  font-size: 8px;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.custom-checkbox__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1;
  color: #737386;
}

.justselect-body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.justselect {
  display: none;
}

.justselect-wrapper {
  position: relative;
  width: 220px;
}

.justselect-title {
  background: white;
  border: 1px solid #ebebeb;
  text-align: left;
  padding: 0 15px;
  height: 40px;
  width: calc($selectMinWidth - 2 * $selectPadding);
  line-height: 40px;
  outline: none;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  background-size: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.justselect-list {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  list-style: none;
  padding: 0;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  -webkit-box-shdow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
}

.justselect-list li {
  line-height: 40px;
  cursor: pointer;
  text-align: left;
  padding: 0 15px;
  background: white;
}

.justselect-list li.selected {
  background: #ebebeb;
}

.justselect-list.active {
  display: block;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__radio > label {
  padding: 1em 0;
}
.form__radio > label:not(:last-child) {
  margin: 0 1.2em 0 0;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
.form__row:not(:last-child) {
  margin: 0 -10px 30px;
}
.form__row .form__group {
  padding: 0 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 0 !important;
}

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__group-submit {
  margin-top: auto;
}
.form__group:not(:last-child) {
  margin: 0 0 30px;
}
.form__group label {
  margin: 0 0 0.7em 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #909090;
}
.form__group input,
.form__group textarea {
  padding: 0.65em 0.9em;
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #515167;
  background: #f4f4f4;
  border: 2px solid #f4f4f4;
  border-radius: 5px;
  resize: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form__group input::-webkit-input-placeholder,
.form__group textarea::-webkit-input-placeholder {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #b0b0b0;
}
.form__group input::-moz-placeholder,
.form__group textarea::-moz-placeholder {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #b0b0b0;
}
.form__group input:-ms-input-placeholder,
.form__group textarea:-ms-input-placeholder {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #b0b0b0;
}
.form__group input::-ms-input-placeholder,
.form__group textarea::-ms-input-placeholder {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #b0b0b0;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #b0b0b0;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: #e4e4e4;
}
.form__group input:hover,
.form__group textarea:hover {
  background: #f5f5f5;
}

.form__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__select .justselect-wrapper {
  width: 100%;
}
.form__select .justselect-title {
  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;
  padding: 0.65em 0.9em;
  height: auto;
  font-weight: 400 !important;
  font-size: 15px;
  line-height: 1.4;
  background: #f4f4f4;
  border: 2px solid #f4f4f4;
  color: #b0b0b0;
  background-image: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form__select .justselect-title:hover {
  background: #f5f5f5;
}
.form__select .justselect-title:focus {
  border-color: #e4e4e4;
}
.form__select .justselect-title:after {
  margin: 0 0 0 0.8em;
  font-size: 1.1em;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.form__select .justselect-list {
  top: 44px;
  font-size: 15px;
  padding: 5px 0;
  background: #fff;
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.2);
}
.form__select .justselect-list li {
  color: #737386;
}
.form__select .justselect-list li:hover {
  background: #f9f9f9;
}
.form__select .justselect-list li.selected {
  background: #f5f5f5;
  color: #515167;
}

.form__submit {
  padding: 1em;
  font-weight: 700;
  border-radius: 5px;
}

@media only screen and (max-width: 1199px) {
  .form__row .form__group:not(:last-child) {
    margin: 0 0 30px !important;
  }

  .form__radio > label {
    padding: 1em 0 0;
  }
}
@media only screen and (max-width: 400px) {
  .form__group label {
    font-size: 13px;
  }
  .form__group input {
    font-size: 14px;
  }
  .form__group input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form__group input::-moz-placeholder {
    font-size: 14px;
  }
  .form__group input:-ms-input-placeholder {
    font-size: 14px;
  }
  .form__group input::-ms-input-placeholder {
    font-size: 14px;
  }
  .form__group input::placeholder {
    font-size: 14px;
  }

  .form__select .justselect-title,
  .form__select .justselect-list {
    font-size: 14px;
  }

  .form__submit {
    font-size: 14px;
  }

  .form__radio .custom-checkbox__label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .form__row:not(:last-child) {
    margin: 0 -10px 25px;
  }

  .form__row .form__group:not(:last-child) {
    margin: 0 0 25px !important;
  }

  .form__group:not(:last-child) {
    margin: 0 0 25px 0;
  }
  .form__group input {
    font-size: 13px;
  }
  .form__group input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .form__group input::-moz-placeholder {
    font-size: 13px;
  }
  .form__group input:-ms-input-placeholder {
    font-size: 13px;
  }
  .form__group input::-ms-input-placeholder {
    font-size: 13px;
  }
  .form__group input::placeholder {
    font-size: 13px;
  }

  .form__select .justselect-title,
  .form__select .justselect-list {
    font-size: 13px;
  }

  .form__radio .custom-checkbox__label {
    font-size: 13px;
  }
}
.slick-controls {
  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;
  margin-top: 30px;
}
.slick-controls .slick-controls__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slick-controls .slick-controls__arrows .slick-arrow {
  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-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  font-size: 0;
  background: #fff;
  color: #ababb7;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e1e1;
  border-radius: 5px !important;
}
.slick-controls .slick-controls__arrows .slick-arrow:before {
  font-size: 22px;
}
.slick-controls .slick-controls__arrows .slick-arrow:hover {
  background: #f8b439;
  color: #fff;
}
.slick-controls .slick-controls__arrows .slick-arrow:active {
  opacity: 0.5;
}
.slick-controls .slick-controls__arrows .slick-arrow.slick-disabled {
  opacity: 0.4 !important;
}
.slick-controls .slick-controls__arrows .slick-arrow.slick-prev:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.slick-controls .slick-controls__arrows .slick-arrow.slick-next:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.slick-controls .slick-controls__dots {
  position: absolute;
}
.slick-controls .slick-controls__dots .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick-controls .slick-controls__dots .slick-dots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.slick-controls .slick-controls__dots .slick-dots li:not(:last-child) {
  margin: 0 15px 0 0;
}
.slick-controls .slick-controls__dots .slick-dots li.slick-active button {
  width: 50px;
  background: #f8b439;
}
.slick-controls .slick-controls__dots .slick-dots li:hover button {
  background: #ababb7;
}
.slick-controls .slick-controls__dots .slick-dots button {
  height: 6px;
  width: 30px;
  background: #c5c5cc;
  padding: 0;
  font-size: 0;
  border-radius: 8px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

@media only screen and (max-width: 1440px) {
  .slick-controls .slick-controls__dots .slick-dots button {
    height: 6px;
    width: 34px;
  }
  .slick-controls .slick-controls__dots .slick-dots li.slick-active button {
    width: 55px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow {
    width: 46px;
    height: 46px;
  }
}
@media only screen and (max-width: 1299px) {
  .slick-controls .slick-controls__dots .slick-dots button {
    height: 5px;
    width: 30px;
  }
  .slick-controls .slick-controls__dots .slick-dots li.slick-active button {
    width: 50px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow {
    width: 42px;
    height: 42px;
  }
}
@media only screen and (max-width: 1199px) {
  .slick-controls {
    margin: 25px 0 0;
  }
  .slick-controls .slick-controls__arrows .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .slick-controls .slick-controls__dots .slick-dots li.slick-active button {
    width: 40px;
  }
  .slick-controls .slick-controls__dots .slick-dots button {
    width: 24px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow {
    width: 36px;
    height: 36px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow:before {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .slick-controls .slick-controls__dots .slick-dots li.slick-active button {
    width: 30px;
  }
  .slick-controls .slick-controls__dots .slick-dots button {
    width: 20px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow {
    width: 34px;
    height: 34px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow:before {
    font-size: 18px;
  }
}
@media only screen and (max-width: 360px) {
  .slick-controls .slick-controls__dots .slick-dots li:not(:last-child) {
    margin: 0 10px 0 0;
  }
  .slick-controls .slick-controls__dots .slick-dots li.slick-active button {
    width: 28px;
  }
  .slick-controls .slick-controls__dots .slick-dots button {
    width: 20px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .slick-controls .slick-controls__arrows .slick-arrow:before {
    font-size: 17px;
  }
}
.section {
  padding: 40px 0 42px;
}
.section:first-of-type:not(.empty-section) {
  padding-top: 0 !important;
}

article .section {
  padding: 0 0 42px;
}

.section__title {
  margin: 0 0 28px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #460805;
}

.section__title-2 {
  margin: 0 0 28px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: #460805;
}
.section__title-2 span {
  font-size: 1.15em;
}

.section__description {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: #737386;
}
.section__description:not(:last-child) {
  margin: 0 0 1.5em;
}

@media only screen and (max-width: 1440px) {
  .section {
    padding: 50px 0 60px;
  }

  article .section {
    padding: 0 0 42px;
  }

  .section__title-2 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1299px) {
  .section {
    padding: 40px 0 50px;
  }

  article .section {
    padding: 0 0 42px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__title-2 {
    font-size: 21px;
  }

  .section__description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .section {
    padding: 40px 0 50px;
  }

  .section__title {
    font-size: 27px;
  }
}
@media only screen and (max-width: 991px) {
  .section {
    padding: 35px 0 40px;
  }

  .section__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .section {
    padding: 35px 0 40px;
  }

  article .section {
    padding: 0 0 42px;
  }

  .section__title {
    font-size: 24px;
  }

  .section__title-2 {
    font-size: 21px;
  }
  .section__title-2 span {
    font-size: 1em;
  }
}
@media only screen and (max-width: 575px) {
  .section {
    padding: 35px 0 40px;
  }

  .section__title {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .section__title {
    margin: 0 0 28px;
    font-size: 22px;
  }

  .section__title-2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .section {
    padding: 40px 0 60px;
  }

  article .section {
    padding: 0 0 42px;
  }

  .section__title {
    font-size: 20px;
  }

  .section__title-2 {
    font-size: 19px;
  }

  .section__description {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  .section__title {
    font-size: 19px;
  }

  .section__title-2 {
    font-size: 17px;
  }
}
/* ============== Breadcrumbs ============== */
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0 0;
  margin: 0 0 42px;
}
.breadcrumbs__inner {
  width: 100%;
}
.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  background: transparent;
}
.breadcrumbs ol > li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0.3em 1em 0.3em 0;
  white-space: nowrap;
  color: #460805;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.breadcrumbs ol > li:last-child {
  font-weight: 600;
}
.breadcrumbs ol > li:not(:last-child) {
  opacity: 0.65;
}
.breadcrumbs ol > li:hover,
.breadcrumbs ol > li:active {
  opacity: 1;
}
.breadcrumbs ol > li:first-child:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin: 0 1em 0 0;
  font-size: 1em;
}
.breadcrumbs ol > li + li:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin: 0 1em 0 0;
  font-size: 1em;
}
.breadcrumbs ol > li a {
  color: #460805;
}

@media only screen and (max-width: 1199px) {
  .breadcrumbs {
    margin: 0 0 42px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumbs {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 20px 0 0;
    margin: 0 auto 42px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .breadcrumbs .container {
    margin: 0;
  }
  .breadcrumbs__inner {
    overflow: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
  }
  .breadcrumbs__inner::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .breadcrumbs__inner::-webkit-scrollbar:horizontal {
    height: 3px;
  }
  .breadcrumbs__inner::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  .breadcrumbs ol {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 10px;
  }
  .breadcrumbs__inner {
    max-width: 690px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    margin: 0 auto 42px;
  }
  .breadcrumbs ol li {
    font-size: 15px;
  }
  .breadcrumbs__inner {
    max-width: 510px;
  }
}
@media only screen and (max-width: 575px) {
  .breadcrumbs {
    width: 100%;
    padding: 20px 20px 0;
  }
  .breadcrumbs .container {
    padding: 0;
  }
  .breadcrumbs__inner {
    max-width: 100%;
  }
}

@media only screen and (max-width: 400px) {
  .breadcrumbs {
    padding: 15px 15px 0;
    margin: 0 auto 40px;
  }
  .breadcrumbs ol {
    margin: 0 0 7px;
  }
  .breadcrumbs ol li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 359px) {
  .breadcrumbs {
    margin: 0 auto 30px;
  }
  .breadcrumbs ol li {
    font-size: 13px;
  }
}
/* ============== Contacts Popup ============== */
body.callback-popup--active {
  overflow: hidden;
}
body.popup-popup--active {
  overflow: hidden;
}
body.ord-popup--active {
  overflow: hidden;
}
body.preord-popup--active {
  overflow: hidden;
}

body.getprice-popup--active {
  overflow: hidden;
}

body.callback-popup--active .callback-popup {
  visibility: visible;
  opacity: 1;
}
body.popup-popup--active .popup-popup {
  visibility: visible;
  opacity: 1;
}
body.ord-popup--active .ord-popup {
  visibility: visible;
  opacity: 1;
}
body.preord-popup--active .preord-popup {
  visibility: visible;
  opacity: 1;
}

body.getprice-popup--active .getprice-popup {
  visibility: visible;
  opacity: 1;
}

body.callback-popup--active .callback-popup .callback-popup__box {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
body.popup-popup--active .popup-popup .callback-popup__box {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
body.ord-popup--active .ord-popup .callback-popup__box {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
body.preord-popup--active .preord-popup .callback-popup__box {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

body.getprice-popup--active .getprice-popup .callback-popup__box {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.preord-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.preord-popup .callback-popup__title {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 32px;
}
.preord-popup .callback-popup__box {
  width: 100%;
  max-width: 450px;
}
.preord-popup .callback-popup__head {
  text-align: center;
}
.preord-popup .cart-item__total-price {
  color: #460805;
}
.preord-popup .cart-item__price {
  display: none;
}
.preord-popup .ord-form {
}
.preord-popup .ord-form > div {
}

.preord-popup .ord-form .infproduct {
}
.preord-popup .ord-form .infproduct img {
  max-width: 70px;
  display: inline-block;
  vertical-align: middle;
}
.preord-popup .ord-form .infproduct a {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 80px);
}
.preord-popup .ord-form .infproduct {
  margin: 15px 0;
}
.preord-popup #ord-popup__btn {
  width: 100%;
}
.preord-popup .callback-popup__head {
  margin: 0;
}
.preord-popup .ord-form .infproduct a:hover {
}
.preord-popup .ord-form .callback-popup__form2 {
  padding: 30px;
}

.getprice-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.getprice-popup .callback-popup__title {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 32px;
}
.getprice-popup .callback-popup__box {
  width: 100%;
  max-width: 450px;
}
.getprice-popup .callback-popup__head {
  text-align: center;
}
.getprice-popup .cart-item__total-price {
  color: #460805;
}
.getprice-popup .cart-item__price {
  display: none;
}
.getprice-popup .ord-form {
}
.getprice-popup .ord-form > div {
}

.getprice-popup .ord-form .infproduct {
}
.getprice-popup .ord-form .infproduct img {
  max-width: 70px;
  display: inline-block;
  vertical-align: middle;
}
.getprice-popup .ord-form .infproduct a {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 80px);
}
.getprice-popup .ord-form .infproduct {
  margin: 15px 0;
}
.getprice-popup #ord-popup__btn {
  width: 100%;
}
.getprice-popup .callback-popup__head {
  margin: 0;
}
.getprice-popup .ord-form .infproduct a:hover {
}
.getprice-popup .ord-form .callback-popup__form2 {
  padding: 30px;
}

.product-info__action-btn.disablesnat.btn-red {
  background: #f4f4f4;
  color: #999999;
  border: 2px solid #999;
}

.product-info__action-btn.disablesnat.btn-red:hover {
  border: 2px solid #999;
}
.product-info__action-btn1 {
  padding: 5px 9px;
  border-radius: 5px;
  margin-right: 5px;
}
@media (min-width: 1200px) {
  .product-info__action-btn1 {
    padding: 6px 9px;
  }
}

.ord-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.ord-popup .callback-popup__title {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 32px;
}
.ord-popup .callback-popup__box {
  width: 900px;
}
.ord-popup .callback-popup__head {
  text-align: center;
}
.ord-popup .cart-item__total-price {
  color: #460805;
}
.ord-popup .cart-item__price {
  display: none;
}
.ord-popup .ord-form {
  display: flex;
  flex-wrap: wrap;
}
.ord-popup .ord-form > div {
  width: 50%;
}
.ord-popup .ord-form .callback-popup__form2 {
  padding: 30px;
}

#ord-popup__btn {
  width: 80%;
  margin-top: 25px;
}
#ord-popup__btn.btn-success {
  background: #0db33c;
}
#ord-popup__btn.btn-success {
  margin-left: 10px;
}
.popup-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.popup-popup .callback-popup__title {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 32px;
}
.popup-popup .callback-popup__subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
}
.popup-popup .callback-popup__subtitle strong {
  font-weight: 700;
}
.popup-popup .popup-popup__group {
  background: #ffffff;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}
.popup-popup .popup__suc {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.popup-popup .popup__suc > a {
  background: rgba(192, 192, 192, 0.4);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 5px;
  width: 230px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #363636;
}
.popup-popup .popup__suc2 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #4f4f4f;
  margin-right: 35px;
  margin-top: 35px;
}
.popup-popup .popup__suc2 span {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: #d7000f;
  margin-left: 30px;
}
.popup-popup .popup__sucbtn {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 20px;
}
.popup-popup .popup__sucbtn > div {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}
.popup-popup .popup__suc svg {
  margin-left: 20px;
}
.popup-popup .popup__sucbtn svg {
  margin-right: 20px;
}
.popup-popup .popup__sucbtn > a {
  background: #d7000f;
  border-radius: 5px;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  width: 267px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.popup-popup .popup__sucbtn .popup__fastch {
  border: 2px solid #d7000f;
  box-sizing: border-box;
  border-radius: 5px;
  background: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #d7000f;
  cursor: pointer;
}
.popup-popup .popup__sucbtn .popup__fastch:hover {
  background: #f8b439;
  color: #fff;
}
.popup-popup .popup__sucbtn .popup__fastch:hover svg path {
  stroke: #fff;
}
.popup-popup .popup__sucbtn .popup__close {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  /* or 137% */

  /* Gray 3 */
  color: #828282;
}
.popup-popup .popup__sucbtn .popup__close:before {
  display: none;
}
.popup-popup .callback-popup__box {
  width: 900px;
}
.popup-popup .callback-popup__head {
  text-align: center;
}
.popup-popup .cart-item__total-price {
  color: #460805;
}
.popup-popup .cart-item__price {
  display: none;
}
.ord__close {
  position: absolute;
  display: block;
  top: 14px;
  right: 20px;
  font-size: 22px;
  color: #460805;
  z-index: 20;
  opacity: 0.5;
}
.ord__close:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
#ordModal .callback-popup__subtitle {
  text-align: center;
  margin-top: 40px;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 20px;
}
#ordModal .callback-popup__subtitle strong {
  font-weight: 700;
}
#ordModal .popup__suc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
#ordModal .popup__suc .ord__close {
  top: auto;
  right: auto;
  position: relative;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  /* or 137% */

  /* Gray 3 */
  color: #828282;
}
#ordModal .popup__suc .ord__close:before {
  display: none;
}
#ordModal .modal-body2 {
  background: #ffffff;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}
#ordModal .cart-item:not(:last-child) {
  border-bottom: 0px solid #e6e6e6;
}
#ordModal .popup__suc2 {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;

  /* identical to box height, or 122% */

  color: #4f4f4f;
}
#ordModal .popup__suc2 span {
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;

  /* identical to box height, or 133% */

  /* Красный */
  color: #d7000f;
  margin-left: 30px;
  margin-right: 30px;
}
.window_holder1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

@media only screen and (max-width: 991px) {
  .popup-popup .callback-popup__box {
    width: 720px;
  }
  .ord-popup .callback-popup__box {
    width: 720px;
  }
  #ord-popup__btn {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  #ordModal .ord-popup__suc {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
  }
  #ordModal .modal-body2 {
    background: #ffffff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    border-radius: 5px 5px 0px 0px;
  }
  #ordModal .callback-popup__subtitle {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    margin-top: 15px;
    color: #000000;
  }
  #ordModal .popup__suc {
    flex-direction: column-reverse;
    margin-top: 15px;
  }
  #ordModal .popup__suc2 {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
    /* or 167% */

    color: #000000;
  }
  #ordModal .popup__suc2 span {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    margin-right: 0;
    color: #d7000f;
  }
  .ord-popup .callback-popup__box {
    width: 280px;
  }
  .ord-popup .callback-popup__title {
    font-size: 14px;
  }
  .ord-popup .ord-form .callback-popup__form2 {
    padding: 0;
    margin-top: 15px;
  }
  .ord-popup .ord-form > div {
    width: 100%;
  }
  #ord-popup__btn {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .ord-popup .cart-item__total {
    margin: 0;
    padding: 0;
    font-size: 13px;
    width: auto;
    border: 0;
  }
  .popup-popup .callback-popup__box {
    width: 280px;
  }
  .popup-popup .cart-item__total {
    margin: 0;
    padding: 0;
    font-size: 13px;
    width: auto;
    border: 0;
  }
  .popup-popup .popup__suc {
    flex-wrap: wrap;
  }
  .popup-popup .popup__suc > a {
    width: 100%;
    height: 30px;
    background: #c0c0c0;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 5px 5px;
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;

    /* identical to box height, or 183% */

    color: #363636;
  }
  .popup-popup .popup__suc2 span {
    margin-left: 0;
  }
  .popup-popup .popup__suc2 {
    margin-right: 0px;
    margin-top: 15px;
    width: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .popup-popup .popup__sucbtn .popup__close {
    right: 0;
  }
  .popup-popup .popup__sucbtn .popup__fastch {
    margin-bottom: 10px;
  }
  .popup-popup .popup__sucbtn > div {
    margin-top: 0px;
  }
  .popup-popup .callback-popup__subtitle {
    font-size: 13px;
  }
}

.callback-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}

.callback-popup__wrap {
  display: table;
  vertical-align: middle;
  width: 100%;
  height: 100vh;
}

.callback-popup__container {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  padding: 50px 20px;
}

.callback-popup__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  width: 450px;
  height: auto;
  margin: 0 auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 7px;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.callback-popup__close {
  position: absolute;
  display: block;
  top: 14px;
  right: 20px;
  font-size: 22px;
  color: #460805;
  z-index: 20;
  opacity: 0.5;
}
.callback-popup__close:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.callback-popup__close:hover,
.callback-popup__close:active {
  opacity: 1;
}
.popup__close {
  position: absolute;
  display: block;
  top: 14px;
  right: 20px;
  font-size: 22px;
  color: #460805;
  z-index: 20;
  opacity: 0.5;
}
.popup__close:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.popup__close:hover,
.popup__close:active {
  opacity: 1;
}

.callback-popup__head {
  margin: 0 0 35px;
}

.callback-popup__title {
  margin: 0 0 0.5em;
  font-weight: 700;
  font-size: 24px;
  color: #460805;
}

.callback-popup__subtitle {
  font-weight: 400;
  line-height: 1.35;
  font-size: 16px;
  color: #737386;
}

.callback-popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.callback-popup__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.popup-popup__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.callback-popup__group:not(:last-child) {
  margin: 0 0 15px 0;
}

.callback-popup__input {
  position: relative;
  padding: 15px;
  width: 100%;
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 15px;
  border: none;
  background: #f5f5f5;
  color: #666;
  border: 2px solid #f5f5f5;
  -webkit-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  transition: 0.3s !important;
  border-radius: 5px;
  resize: none;
}
.callback-popup__input:not(:last-child) {
  margin: 0 0 15px 0;
}
.callback-popup__input::-webkit-input-placeholder {
  font-size: 15px;
  color: #828282;
  font-weight: 400;
}
.callback-popup__input::-moz-placeholder {
  font-size: 15px;
  color: #828282;
  font-weight: 400;
}
.callback-popup__input:-ms-input-placeholder {
  font-size: 15px;
  color: #828282;
  font-weight: 400;
}
.callback-popup__input::-ms-input-placeholder {
  font-size: 15px;
  color: #828282;
  font-weight: 400;
}
.callback-popup__input::placeholder {
  font-size: 15px;
  color: #828282;
  font-weight: 400;
}
.callback-popup__input:focus {
  border-color: #e4e4e4;
}

.callback-popup__btn {
  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: 100%;
  margin: 10px auto 0;
  padding: 1em 0;
  font-weight: 700;
  font-size: 16px;
  border-radius: 5px;
}

@media only screen and (max-width: 767px) {
  .callback-popup__box {
    padding: 35px 25px;
  }

  .callback-popup__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 520px) {
  .callback-popup__box {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .callback-popup__box {
    padding: 30px 20px;
  }

  .callback-popup__head {
    margin: 0px 0 25px;
  }

  .callback-popup__title {
    font-size: 19px;
  }

  .callback-popup__btn,
  .callback-popup__subtitle {
    font-size: 14px;
  }

  .callback-popup__close {
    top: 12px;
    right: 18px;
    font-size: 20px;
  }

  .callback-popup__input {
    padding: 12px;
    font-size: 14px;
  }
  .callback-popup__input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .callback-popup__input::-moz-placeholder {
    font-size: 14px;
  }
  .callback-popup__input:-ms-input-placeholder {
    font-size: 14px;
  }
  .callback-popup__input::-ms-input-placeholder {
    font-size: 14px;
  }
  .callback-popup__input::placeholder {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .callback-popup__container {
    padding: 40px 15px;
  }

  .callback-popup__box {
    padding: 25px 20px;
  }

  .callback-popup__head {
    margin: 0px 0 20px;
  }

  .callback-popup__title {
    font-size: 18px;
  }

  .callback-popup__btn,
  .callback-popup__subtitle {
    font-size: 13px;
  }

  .callback-popup__close {
    top: 10px;
    right: 14px;
    font-size: 18px;
  }

  .callback-popup__input {
    padding: 12px;
    font-size: 13px;
  }
  .callback-popup__input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .callback-popup__input::-moz-placeholder {
    font-size: 13px;
  }
  .callback-popup__input:-ms-input-placeholder {
    font-size: 13px;
  }
  .callback-popup__input::-ms-input-placeholder {
    font-size: 13px;
  }
  .callback-popup__input::placeholder {
    font-size: 13px;
  }
}
/* ============== Mobile Menu ============== */
.mobile-menu--hide {
  display: none;
}

body.mobile-menu--active {
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}
body.mobile-menu--active .mobile-menu__overlay {
  display: block;
}
body.mobile-menu--active .mobile-menu {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mobile-menu * {
  font-family: "SF Pro Display";
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 340px;
  z-index: 9998;
  -webkit-box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(-102%, 0, 0);
  -ms-transform: translate3d(-102%, 0, 0);
  transform: translate3d(-102%, 0, 0);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.mobile-menu__wrapper {
  width: 100%;
  height: 100%;
  background: #fff;
  transition: -webkit-transform 0.4s ease;
  -webkit-transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  z-index: 9998;
}

.mobile-menu__content {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100vh - 45px);
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: auto;
}

/* .mobile-menu__wrapper:after,
.mobile-menu__nav-wrapper:after {
  content: "";
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  -webkit-transition:
    visibility 0s ease 0.4s,
    opacity 0.4s ease;
  -o-transition:
    visibility 0s ease 0.4s,
    opacity 0.4s ease;
  transition:
    visibility 0s ease 0.4s,
    opacity 0.4s ease;
  visibility: hidden;
  opacity: 0;
} */
.mobile-menu__wrapper.open:after,
.mobile-menu__nav-wrapper.open:after {
  -webkit-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
  visibility: visible;
  opacity: 1;
}

.mobile-menu__nav-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 340px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  -webkit-transition:
    visibility 0s ease 0.4s,
    -webkit-transform 0.4s ease;
  transition:
    visibility 0s ease 0.4s,
    -webkit-transform 0.4s ease;
  -o-transition:
    visibility 0s ease 0.4s,
    transform 0.4s ease;
  transition:
    visibility 0s ease 0.4s,
    transform 0.4s ease;
  transition:
    visibility 0s ease 0.4s,
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  -webkit-box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.mobile-menu__nav-wrapper.active {
  visibility: visible;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  pointer-events: auto;
}

.mobile-menu__nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  max-height: calc(100vh - 35px);
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: auto;
}

.mobile-menu__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu__logo img,
.mobile-menu__logo picture {
  width: 180px;
}

.mobile-menu__nav li:not(.has-child) a span {
  width: 100%;
}
.mobile-menu__nav li a,
.mobile-menu__nav-link {
  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;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #460805;
}
.mobile-menu__nav-link {
  padding: 1.1em 1.25em;
  font-size: 13px;
  font-weight: 300;
}
.mobile-menu__nav li a span:hover,
.mobile-menu__nav li a span:active {
  color: #f8b439;
}
.mobile-menu__nav li.has-child > a:after,
li.has-child .mobile-menu__nav-link:after {
  margin: 0 0 0 30px;
  font-size: 1.2em;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.mobile-menu__nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 20px;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 700;
  color: #460805;
}

.mobile-menu__nav-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px 0;
  background: #f8b439;
  font-weight: 600;
  font-size: 17px;
  color: #fff !important;
}
.mobile-menu__nav-back:after {
  margin: 0 0 0 auto;
  font-size: 1.2em;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.mobile-menu__nav-back:hover,
.mobile-menu__nav-back:active {
  background: #d40c1e;
}

.mobile-menu__language li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu__language li a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 1em 1.25em;
}
.mobile-menu__language li a span {
  margin-right: auto;
}
.mobile-menu__language li a img,
.mobile-menu__language li a picture {
  margin: 0 15px 0 0;
  width: 26px;
}

.mobile-menu__catalog li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu__catalog li a {
  padding: 1.1em 1.25em;
}
.mobile-menu__catalog > li > a {
  background: #f8b439;
  color: #fff;
}
.mobile-menu__catalog > li > a:hover,
.mobile-menu__catalog > li > a:active {
  background: #d40c1e;
}
.mobile-menu .level_1-ico {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu .one-line {
  padding: 15px 20px;
}
.mobile-menu .one-line.ol-account {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
}
.mobile-menu .one-line.ol-account a {
  padding: 15px 0;
  position: relative;
}
.mobile-menu .one-line.ol-account a + a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 1px;
  background-color: #f2f2f2;
}
.mobile-menu .one-line + .one-line {
  border-top: 1px solid #f2f2f2;
}
.mobile-menu .one-line a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #4f4f4f;
}
.mobile-menu .one-line a:hover,
.mobile-menu .one-line a:active {
  color: #f8b439;
}

.mobile-menu .ol-title {
  font-size: 15px;
  font-weight: 500;
}
.mobile-menu .ol-subtitle {
  font-size: 15px;
  font-weight: 500;
}
.mobile-menu .ol-text {
  font-size: 14px;
  font-weight: 400;
  color: #4f4f4f;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mobile-menu .oc-contacts {
  margin-top: 20px;
}
.mobile-menu .oc-contacts li + li {
  margin-top: 16px;
}
.mobile-menu .oc-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}
.mobile-menu .oc-contacts a:hover,
.mobile-menu .oc-contacts a:active {
  color: #f8b439;
}

.mobile-menu .btn-ol {
  color: #fff !important;
  display: inline-block !important;
  border-radius: 5px;
  font-weight: 500;
  padding: 8px 24px;
}

.mobile-menu__menu {
  margin: 0 0 30px;
  border-bottom: 0 !important;
}
.mobile-menu__menu li a {
  padding: 0.8em 1.25em;
}
.mobile-menu__menu li:hover,
.mobile-menu__menu li:active {
  color: #f8b439;
  background: #f5f5f5;
}

.mobile-menu__contacts {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: auto 0 0;
  padding: 25px 20px 20px;
}
.mobile-menu__contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.7em 0;
  font-weight: 700;
  font-size: 16px;
  color: #460805;
}
.mobile-menu__contacts a:before {
  position: relative;
  margin: 0 0.7em 0 0;
  color: #f8b439;
}
.mobile-menu__contacts a.phone:before {
  top: 1px;
  font-size: 0.9em;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.mobile-menu__contacts a.email:before {
  top: 2px;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.mobile-menu__contacts a.callback {
  padding: 0;
  height: 1.5em;
  margin: 0 0 0.7em;
  color: #f8b439;
  border-bottom: 2px dashed #f8b439;
}
.mobile-menu__contacts a.callback:hover,
.mobile-menu__contacts a.callback:active {
  opacity: 0.6;
}
.mobile-menu__contacts a:hover,
.mobile-menu__contacts a:active {
  color: #f8b439;
}

.dropcontact2 {
  padding: 15px;
}
.dropcontact2 li a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #460805;
  font-weight: 500;
}
.dropcontact2 li a:hover {
  color: #f8b439;
}
.dropcontact2 li a img {
  max-width: 18px;
}
.dropcontact2 li a span {
  padding-left: 10px;
}
.dropcontact2 .grafic {
  font-size: 14px;
  color: #8b8b8b;
  line-height: 18px;
  padding: 8px 0;
}
.dropcontact2 .grafic b {
  display: block;

  color: #000;
}

.mobile-menu__close {
  position: absolute;
  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: 100%;
  height: 45px;
  bottom: 0;
  background: #460805;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.mobile-menu__close:hover,
.mobile-menu__close:active {
  background: #0a0b1f;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9995;
}

@media only screen and (max-width: 480px) {
  .mobile-menu,
  .mobile-menu__nav-wrapper {
    width: 320px;
  }

  .mobile-menu .mobile-menu__login a,
  .mobile-menu .mobile-menu__actions a,
  .mobile-menu .mobile-menu__nav li a,
  .mobile-menu .mobile-menu__contacts a {
    font-size: 15px;
  }
  .mobile-menu .mobile-menu__nav-title {
    padding: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .mobile-menu,
  .mobile-menu__nav-wrapper {
    width: 290px;
  }

  .mobile-menu .mobile-menu__login a,
  .mobile-menu .mobile-menu__actions a,
  .mobile-menu .mobile-menu__nav li a,
  .mobile-menu .mobile-menu__contacts a {
    font-size: 14px;
  }
  .mobile-menu .mobile-menu__nav-title {
    padding: 20px;
  }
  .mobile-menu .mobile-menu__close {
    height: 40px;
    font-size: 15px;
  }
}
/* ============== Text Section ============== */
.text-section > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.text-section--post > .container {
  max-width: 1140px;
}

.text-section__block:not(:last-child) {
  margin: 0 0 60px;
}
.text-section__block.descr {
  margin: 0 0 10px;
}
.text-section__block p,
.text-section__block ul,
.text-section__block ol,
.text-section a.btn-more {
  font-size: 17px;
}
.text-section .btn-more:hover,
.text-section .btn-more:active {
  -webkit-transform: translateX(2%);
  -ms-transform: translateX(2%);
  transform: translateX(2%);
}
.text-section__block h1,
.text-section__block h2 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #460805;
}
.text-section__block h3 {
  margin: 20px 0 6px;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.4;
  color: #460805;
}
.text-section__block h4 {
  margin: 0 0 1em;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #515167;
}
.text-section__block p {
  font-weight: 400;
  line-height: 1.5;
  color: #737386;
}
.text-section__block p:not(:last-child) {
  margin: 0 0 10px;
}
.text-section__block p a {
  font-weight: 500;
  text-underline-position: under;
  text-decoration: underline;
  color: #f8b439;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.text-section__block p a:hover,
.text-section__block p a:active,
.text-section__block a:hover {
  color: #f8b439;
}
.text-section__block ul {
  font-weight: 400;
  line-height: 1.45;
  color: #737386;
}
.text-section__block ul li {
  position: relative;
  padding: 0 0 0 1.2em !important;
  list-style: none !important;
}
.text-section__block ul li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  height: 0.35em;
  width: 0.35em;
  background: #f8b439;
  border-radius: 0.35em;
}
.text-section__block ul li:not(:last-child) {
  margin: 0 0 2px;
}
.text-section__block ul:not(:last-child) {
  margin: 0 0 1.8em;
}
.text-section__block ol {
  font-weight: 400;
  line-height: 1.45;
  counter-reset: counter;
  color: #737386;
}
.text-section__block ol:not(:last-child) {
  margin: 0 0 40px 0;
}
.text-section__block ol li {
  position: relative;
  padding: 0 0 0 1.5em;
}
.text-section__block ol li:not(:last-child) {
  margin: 0 0 0.8em 0;
}
.text-section__block ol li:before {
  content: counter(counter) ". ";
  counter-increment: counter;
  position: absolute;
  left: 0;
  margin: 0 0.3em 0 0;
  color: #f8b439;
  font-weight: 700;
}
.text-section__block .text-section__images:not(:last-child) {
  margin-bottom: 40px;
}
.text-section__block .text-section__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.text-section__block .text-section__image:not(:last-child) {
  margin-bottom: 20px;
}
.text-section__block .text-section__image img,
.text-section__block .text-section__image picture {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.text-section__block:first-of-type .text-section__image {
  position: relative;
  width: 100%;
}
.text-section__block:first-of-type .text-section__image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 45%;
}
.text-section__block:first-of-type .text-section__image img,
.text-section__block:first-of-type .text-section__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.text-section__block:first-of-type .text-section__image:not(:last-child) {
  margin: 0 0 40px;
}

@media only screen and (max-width: 1299px) {
  .text-section--post > .container {
    max-width: 960px;
  }

  .text-section__block:not(:last-child) {
    margin: 0 0 50px;
  }
  .text-section__block p,
  .text-section__block ul,
  .text-section__block ol,
  .text-section__block a.btn-more {
    font-size: 16px;
  }
  .text-section__block h1,
  .text-section__block h2 {
    font-size: 25px;
  }
  .text-section__block h3 {
    font-size: 20px;
  }
  .text-section__block h4 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 992px) {
  .text-section--post > .container {
    max-width: 720px;
  }

  .text-section__block:not(:last-child) {
    margin: 0 0 40px;
  }
  .text-section__block h1,
  .text-section__block h2 {
    font-size: 23px;
  }
  .text-section__block h3 {
    font-size: 19px;
  }
  .text-section__block h4 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .text-section--post > .container {
    max-width: 540px;
  }

  .text-section__block:not(:last-child) {
    margin: 0 0 50px;
  }
  .text-section__block h1,
  .text-section__block h2 {
    font-size: 21px;
  }
  .text-section__block h3 {
    font-size: 19px;
  }
}
@media only screen and (max-width: 575px) {
  .text-section__block:not(:last-child) {
    margin: 0 0 40px;
  }
  .text-section__block h1,
  .text-section__block h2 {
    font-size: 20px;
  }
  .text-section__block h3 {
    font-size: 18px;
  }
  .text-section__block h4 {
    font-size: 16px;
  }
  .text-section__block .text-section__images {
    margin: -15px;
  }
  .text-section__block .text-section__images > div {
    padding: 15px;
  }
  .text-section__block .text-section__images:not(:last-child) {
    margin-bottom: 30px;
  }
  .text-section__block:first-of-type .text-section__image:not(:last-child) {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 400px) {
  .text-section__block p,
  .text-section__block ul,
  .text-section__block ol,
  .text-section__block a.btn-more {
    font-size: 15px;
  }
  .text-section__block h1,
  .text-section__block h2 {
    font-size: 19px;
  }
  .text-section__block h3 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 360px) {
  .text-section__block p,
  .text-section__block ul,
  .text-section__block ol,
  .text-section__block a.btn-more {
    font-size: 14px;
  }
  .text-section__block h1,
  .text-section__block h2 {
    font-size: 18px;
  }
  .text-section__block h3 {
    font-size: 16px;
  }
  .text-section__block h4 {
    font-size: 15px;
  }
  .text-section__block .text-section__images {
    margin: -10px;
  }
  .text-section__block .text-section__images > div {
    padding: 10px;
  }
  .text-section__block .text-section__images:not(:last-child) {
    margin-bottom: 20px;
  }
}
/* ============== Header ============== */
.header__top {
  position: relative;
  background: #460805;
  z-index: 30;
}
.header__top .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 46px;
  margin: 0;
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  margin: 0 1.8em 0 0;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  display: none;
}
.header__btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  height: 30px;
  padding: 16px 12px;
  margin: 16px auto 0px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 5px;
  width: 165px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.header__link:not(:last-child) {
  margin-right: 2.5em;
}
.header__link:hover,
.header__link:active {
  opacity: 0.8;
}
.header__link:before {
  position: relative;
  top: 0.1em;
  margin: 0 0.7em 0 0;
}
.header__link.phone {
  display: none;
}
.header__link.phone:before {
  font-size: 0.88em;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.header__link.email:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.header__language {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin: 0 0 0 auto;
}
.header__language.active .header__language-menu {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  visibility: visible;
  opacity: 1;
}
.header__language.active .header__language-button:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.header__language-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
  padding: 0 8px;
  background: #fff;
  border-radius: 5px;
}
.header__language-button:after {
  margin: 0 0 0 0.5em;
  font-size: 1em;
  opacity: 0.5;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.header__language-button span {
  margin: 0 0.5em 0 0;
  font-weight: 700;
  font-size: 13px;
  color: #460805;
}
.header__language-button img,
.header__language-button picture {
  width: 15px;
}

.header__language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  margin: 0;
  padding: 8px 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4em;
  color: #460805;
  background-color: #fff;
  -webkit-box-shadow:
    0 1px 15px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 1px 15px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition:
    opacity 0.2s,
    -webkit-transform 0.2s;
  transition:
    opacity 0.2s,
    -webkit-transform 0.2s;
  -o-transition:
    transform 0.2s,
    opacity 0.2s;
  transition:
    transform 0.2s,
    opacity 0.2s;
  transition:
    transform 0.2s,
    opacity 0.2s,
    -webkit-transform 0.2s;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: rotateX(45deg);
  transform: rotateX(45deg);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.header__language-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0.5em 1em;
  color: #460805;
  font-size: 14px;
}
.header__language-menu a:hover {
  background-color: #f5f5f5;
}
.header__language-menu img,
.header__language-menu picture {
  margin: 0 10px 0 0;
  max-width: 20px;
}

.header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 18px;
  margin: 0 0 0 25px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}
.header__login span {
  display: block;
  margin: 0 10px;
  height: 100%;
  width: 1px;
  background: #fff;
}
.header__login a:hover,
.header__login a:active {
  opacity: 0.8;
}

.header__middle {
  position: relative;
  background: #f8b439;
  border-bottom: 1px solid #dcdce1;
  z-index: 20;
}
.header__middle .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 90px;
  margin: 0;
}

.header__menu-btn {
  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;
  margin: 0 30px 0 0;
  display: none;
}
.header__menu-btn:before {
  font-size: 30px;
  color: #460805;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.header__logo {
  position: relative;
  height: 100px;
}
.header__logo img,
.header__logo picture {
  height: 90px;
  width: auto;
}
.header__logo img.header__logo--mobile,
.header__logo picture.header__logo--mobile {
  display: none;
}
.header__logo:hover,
.header__logo:active {
  opacity: 0.8;
}

.header__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  border: 1px solid #dcdce1;
  border-radius: 25px;
}

.header__search-input {
  position: relative;
  height: 100%;
  width: 350px;
  padding: 0 3.3em 0 1.2em;
  font-weight: 500;
  font-size: 15px;
  color: #460805;
  background: transparent;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  border-radius: 25px;
}
.header__search-input:focus {
  background: #f5f5f5;
}
.header__search-input:focus::-webkit-input-placeholder {
  color: rgba(22, 23, 54, 0.8);
}
.header__search-input:focus::-moz-placeholder {
  color: rgba(22, 23, 54, 0.8);
}
.header__search-input:focus:-ms-input-placeholder {
  color: rgba(22, 23, 54, 0.8);
}
.header__search-input:focus::-ms-input-placeholder {
  color: rgba(22, 23, 54, 0.8);
}
.header__search-input:focus::placeholder {
  color: rgba(22, 23, 54, 0.8);
}

.header__search-input::-webkit-input-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__search-input::-moz-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.header__search-input:-ms-input-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.header__search-input::-ms-input-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.header__search-input::placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__search-btn {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding: 0 1.3em 0 1em;
  background: transparent;
}
.header__search-btn:before {
  font-size: 17px;
  color: #460805;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.header__search-btn:hover:before,
.header__search-btn:active:before {
  color: #f8b439;
}

.header.search--active .header__logo,
.header.search--active .header__menu-btn,
.header.search--active .header__actions {
  opacity: 0 !important;
}
.header.search--active .header__m-search {
  width: 100% !important;
  right: 0;
}
.header.search--active .header__m-search-open {
  width: 70px;
  font-size: 21px;
  color: rgba(22, 23, 54, 0.5);
}
.header.search--active .header__m-search-open:active {
  color: #f8b439 !important;
}
.header.search--active .header__m-search-close {
  width: 70px;
  opacity: 1;
}
.header.search--active .header__m-search-input {
  max-width: 100%;
  padding: 0 70px 0 20px;
  opacity: 1;
}

.header__m-search {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 0;
  width: 66px;
  height: 100%;
  background: #fff;
  -webkit-transition:
    width 0.3s ease,
    right 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    width 0.3s ease,
    right 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  -o-transition:
    width 0.3s ease,
    right 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    width 0.3s ease,
    right 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    width 0.3s ease,
    right 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  border-left: 1px solid #dcdce1;
  /* overflow: hidden;*/
  z-index: 20;
  color: #460805;
  display: none;
}

.header__m-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.header__m-search-input {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  max-width: 0%;
  padding: 0;
  background: transparent;
  font-weight: 500;
  font-size: 17px;
  color: #460805;
  -webkit-transition:
    max-width 0.3s ease,
    padding 0.3s ease,
    opacity 0.3s ease;
  -o-transition:
    max-width 0.3s ease,
    padding 0.3s ease,
    opacity 0.3s ease;
  transition:
    max-width 0.3s ease,
    padding 0.3s ease,
    opacity 0.3s ease;
  z-index: 10;
  opacity: 0;
}
.header__m-search-input::-webkit-input-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
}
.header__m-search-input::-moz-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
}
.header__m-search-input:-ms-input-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
}
.header__m-search-input::-ms-input-placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
}
.header__m-search-input::placeholder {
  font-weight: 500;
  color: rgba(22, 23, 54, 0.6);
}

.header__m-search-open {
  position: relative;
  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;
  height: 100%;
  width: 66px;
  padding: 0;
  color: #460805;
  background: transparent;
  border-right: 1px solid #dcdce1;
  font-size: 20px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 20;
}
.header__m-search-open:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.header__m-search-close {
  position: absolute;
  right: 0;
  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;
  height: 100%;
  width: 60px;
  padding: 0;
  color: rgba(22, 23, 54, 0.5);
  background: transparent;
  border-right: 1px solid #dcdce1;
  font-size: 26px;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 15;
}
.header__m-search-close:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.header__m-search-close:active {
  color: #f8b439 !important;
}

.header__contacts {
  position: relative;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 2em;
  font-size: 18px;
}
.header__contacts:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.22em;
  height: 1.22em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/icons/telephone.svg) 0 0/100% 100%;
}

.header__contacts-phone {
  display: block;
  margin: 0 0 0.3em;
  font-weight: 700;
  font-size: 1em;
  color: #000;
}
.header__contacts-phone:hover,
.header__contacts-phone:active {
  opacity: 0.7;
}

.dropcontact {
  background: #fff;
  border: 1px solid #dcdce1;
  border-radius: 5px;
  min-width: 280px;
  max-width: 380px;
  position: absolute;
  top: 100%;
  left: -17px;
  padding: 20px 16px;
  display: none;
  line-height: 18px;
}
.header__contacts:hover .dropcontact {
  display: block;
}

.dropcontact .dc-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
}
.dropcontact a.dc-title:hover {
  color: #460805;
}
.dropcontact .dc-text {
  font-size: 14px;
  font-weight: 500;
}
.dropcontact .dc-text-light {
  font-size: 14px;
  color: #4f4f4f;
  font-weight: 300;
}
.dropcontact .line {
  background-color: #dcdce1;
  height: 1px;
}
.dropcontact .nums {
  display: flex;
  justify-content: flex-start;
  column-gap: 20px;
}
.dropcontact li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
}
.dropcontact li a:hover {
  color: #460805;
}

.dropcontact .dc-list {
  font-size: 14px;
}
.dropcontact .dc-list a {
  font-size: 13px;
  font-weight: 300;
  color: #4f4f4f;
}
.dropcontact .dc-list a:hover {
  text-decoration: underline;
  color: #000;
}

#ocd_multilang2 li {
  border: 0;
}
#ocd_multilang2 li a {
  color: #ababb7;
  border: 1px solid #ababb7;
  border-radius: 5px;
  display: block;
  padding: 4px 16px;
}
#ocd_multilang2 li.active a {
  color: #460805;
  font-weight: 500;
  border: 1px solid #460805;
}
.header__contacts-phone:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(/catalog/view/theme/moneymaker2/image/caret_down_icon.svg);
  background-size: cover;
  display: inline-block;
  margin-left: 9px;
}
.header__contacts:hover .header__contacts-phone:after {
  transform: rotate(180deg);
}

.header__contacts-callback {
  height: 1.5em;
  font-weight: 500;
  font-size: 0.82em;
  color: #f8b439;
  border-bottom: 2px dashed #f8b439;
}
.header__contacts-callback:hover,
.header__contacts-callback:active {
  opacity: 0.6;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__actions-btn {
  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;
  padding: 15px 20px 15px 15px;
  border-radius: 7px;
}
.header__actions-btn:not(:last-child) {
  margin: 0 5px 0 0;
}
.header__actions-btn:hover,
.header__actions-btn:active {
  background: #f5f5f5;
}

.header__actions-icon {
  position: relative;
}
.header__actions-icon [class*="header__actions-icon"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 38px;
  height: 38px;
  background-size: 100% 100%;
  background-position: 0 0;
}
.header__actions-icon--whishlist {
  background-image: url(../img/icons/whishlist.svg);
}
.header__actions-icon--compare {
  background-image: url(../img/icons/compare.svg);
}
.header__actions-icon--cart {
  background-image: url(../img/icons/shopping-cart.svg);
}

.header__actions-counter {
  position: absolute;
  top: -7px;
  right: -10px;
  padding: 0.28em 0.7em;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: #f8b439;
  border-radius: 1em;
}

.header__actions-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 0 20px;
}

.header__actions-title {
  margin: 0 0 0.2em;
  font-weight: 700;
  font-size: 14px;
  color: rgba(22, 23, 54, 0.5);
}

.header__actions-amount {
  font-weight: 700;
  font-size: 16px;
  color: #460805;
}
#search .dropdown-menu {
  position: absolute;
  background: #fff;
  padding: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  display: none;
}
#search .dropdown-menu .search-suggestion.product {
  display: flex;
  padding: 5px 0;
}
#search .dropdown-menu .search-suggestion.product .price {
  min-width: 100px;
  text-align: center;
}

.header__bottom {
  position: relative;
  background: #fff;
  z-index: 19;
}
.header__bottom .row {
  position: relative;
  height: 64px;
}

.header__catalog .header__catalog-shadow {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header__catalog .header__catalog-shadow:before {
  content: "";
  position: absolute;
  display: block;
  left: 15px;
  top: 0;
  width: calc(100% - 30px);
  height: 100%;
  background: #fff;
  z-index: 15;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.07);
}
.header__catalog .header__catalog-shadow:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20;
}

.header__catalog-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 54px;
  margin: 10px 0 0;
  padding: 0 15px;
  border-radius: 10px 10px 0px 0px;
  z-index: 20;
}
.header__catalog-btn img,
.header__catalog-btn picture {
  width: 22px;
  height: 22px;
}
.header__catalog-btn span {
  margin: 0 0 0 30px;
  font-weight: 600;
  font-size: 17px;
}

.header__nav {
  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;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  height: 100%;
  z-index: 20;
}

.header__nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin: 0 10px;
  padding: 0 25px;
  font-weight: 500;
  font-size: 17px;
  color: #460805;
}
.header__nav-item:hover {
  background: #f5f5f5;
}
.header__nav-item:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.header__nav-item:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  right: 0;
  width: 0;
  background-color: #f8b439;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 1440px) {
  .header__middle .header__logo {
    height: 100px;
  }
  .header__middle .header__search-input {
    width: 310px;
  }
  .header__middle .header__actions-icon [class*="header__actions-icon"] {
    width: 36px;
    height: 36px;
  }
}
@media only screen and (max-width: 1299px) {
  .header__middle .header__actions-info {
    display: none;
  }
  .header__middle .header__contacts {
    font-size: 17px;
  }
  .header__middle .header__contacts-callback {
    font-size: 0.9em;
  }

  .header__bottom .row {
    height: 60px;
  }
  .header__bottom .row .col-lg-3 {
    -ms-flex: 0 0 320px;
    -webkit-box-flex: 0;
    flex: 0 0 320px;
    max-width: 320px;
  }
  .header__bottom .row .col-lg-9 {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .header__bottom .header__catalog-btn {
    height: 50px;
  }
  .header__bottom .header__catalog-btn img,
  .header__bottom .header__catalog-btn picture {
    width: 20px;
    height: 20px;
  }
  .header__bottom .header__catalog-btn span {
    font-size: 16px;
  }
  .header__bottom .header__nav-item {
    margin: 0;
    padding: 0 30px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .header__top .row {
    height: 50px;
  }
  .header__top .header__link.phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__top .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__middle .row {
    height: 110px;
  }
  .header__middle .header__contacts {
    display: none;
  }
  .header__middle .header__search-input {
    width: 340px;
  }

  .header__bottom .row > .col-lg-3 {
    -ms-flex: 0 0 260px;
    -webkit-box-flex: 0;
    flex: 0 0 260px;
    max-width: 260px;
  }
  .header__bottom .header__nav {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .header__bottom .header__nav-item {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 991px) {
  .header__top .header__link.email {
    display: none;
  }

  .header__middle .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 80px;
  }
  .header__middle .header__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__middle .header__logo {
    height: 44px;
  }
  .header__middle .header__logo img.header__logo--default,
  .header__middle .header__logo picture.header__logo--default {
    display: none;
  }
  .header__middle .header__logo img.header__logo--mobile,
  .header__middle .header__logo picture.header__logo--mobile {
    height: 100%;
    width: 100%;
    display: block;
  }
  .header__middle .header__logo:hover,
  .header__middle .header__logo:active {
    opacity: 0.8;
  }
  .header__middle .header__search {
    height: 46px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin: 0 30px 0 40px;
  }
  .header__middle .header__search .header__search-input {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: auto;
  }
  .header__middle .header__actions-btn {
    padding: 12px 16px 12px 12px;
  }
  .header__middle .header__actions-icon [class*="header__actions-icon"] {
    width: 30px;
    height: 30px;
  }
  .header__middle .header__actions-icon--whishlist {
    background-image: url(../img/icons/whishlist_mobile.svg);
  }
  .header__middle .header__actions-icon--compare {
    background-image: url(../img/icons/compare_mobile.svg);
  }
  .header__middle .header__actions-icon--cart {
    background-image: url(../img/icons/shopping-cart_mobile.svg);
  }

  .header__bottom {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header__top .header__login {
    display: none;
  }

  .header__middle .row {
    position: relative;
    height: 70px;
    padding-right: 85px;
  }
  .header__middle .header__search {
    display: none;
  }
  .header__middle .header__actions {
    margin-left: auto;
  }
  .header__middle .header__logo {
    height: 40px;
  }
  .header__middle .header__menu-btn:before {
    font-size: 28px;
  }
  .header__middle .header__actions-icon .header__actions-btn {
    padding: 10px 14px 10px 10px;
  }
  .header__middle .header__actions-icon [class*="header__actions-icon"] {
    width: 28px;
    height: 28px;
  }
  .header__middle .header__m-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#ocd_multilang2 {
  display: none;
}
@media only screen and (max-width: 991px) {
  #ocd_multilang2 {
    display: flex;
    padding: 5px 0;
    gap: 8px;
  }
  #ocd_multilang {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .header .header__top {
    display: none;
  }
  .header .header__middle .row {
    justify-content: space-between !important;
    height: 60px;
    padding-right: 75px;
  }
  .header .header__middle .header__menu-btn {
    margin: 0 25px 0 0;
  }
  .header .header__middle .header__menu-btn:before {
    font-size: 26px;
  }
  .header .header__middle .header__logo {
    height: 60px;
  }
  .header .header__middle .header__actions-btn {
    padding: 8px 12px 8px 8px;
  }
  .header
    .header__middle
    .header__actions-btn
    .header__actions-icon
    [class*="header__actions-icon"] {
    width: 26px;
    height: 26px;
  }
  .header .header__middle .header__actions-btn .header__actions-counter {
    top: -7px;
    right: -8px;
    padding: 0.3em 0.5em;
    font-size: 10px;
  }
  .header .header__middle .header__m-search {
    width: 60px;
  }
  .header .header__middle .header__m-search .header__m-search-input {
    font-size: 15px;
  }
  .header .header__middle .header__m-search .header__m-search-open {
    width: 60px;
    font-size: 18px;
  }
  .header .header__middle .header__m-search .header__m-search-close {
    width: 60px;
    font-size: 22px;
  }
  .header.search--active .header__m-search-open {
    width: 60px;
    font-size: 21px;
  }
  .header.search--active .header__m-search-close {
    width: 60px;
  }
  .header.search--active .header__m-search-input {
    padding: 0 60px 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  /*  .header .header__middle {
      overflow: hidden;
   }*/
  .header .header__middle .container {
    padding: 0;
  }
  .header .header__middle .row {
    height: 58px;
    padding-right: 70px;
  }
  .header .header__middle .header__menu-btn {
    margin: 0 20px 0 15px;
  }
  .header .header__middle .header__menu-btn:before {
    font-size: 25px;
  }
  .header .header__middle .header__logo {
    height: 60px;
  }
  .header .header__middle .header__actions-btn {
    padding: 7px 11px 7px 7px;
  }
  .header
    .header__middle
    .header__actions-btn
    .header__actions-icon
    [class*="header__actions-icon"] {
    width: 25px;
    height: 25px;
  }
  .header .header__middle .header__m-search {
    width: 56px;
  }
  .header .header__middle .header__m-search .header__m-search-open {
    width: 56px;
    font-size: 17px;
  }
  .header .header__middle .header__m-search .header__m-search-close {
    width: 56px;
    font-size: 22px;
  }
  .header.search--active .header__m-search-open {
    width: 56px;
    font-size: 21px;
  }
  .header.search--active .header__m-search-close {
    width: 56px;
  }
  .header.search--active .header__m-search-input {
    padding: 0 50px 0 20px !important;
  }
}
@media only screen and (max-width: 359px) {
  .header .header__middle .row {
    height: 54px;
    padding-right: 65px;
  }
  .header .header__middle .header__menu-btn {
    margin: 0 18px 0 12px;
  }
  .header .header__middle .header__menu-btn:before {
    font-size: 22px;
  }
  .header .header__middle .header__logo {
    height: 60px;
  }
  .header .header__middle .header__actions-btn {
    padding: 6px 9px 6px 6px;
  }
  .header
    .header__middle
    .header__actions-btn
    .header__actions-icon
    [class*="header__actions-icon"] {
    width: 23px;
    height: 23px;
  }
  .header .header__middle .header__actions-btn .header__actions-counter {
    top: -6px;
    right: -7px;
    font-size: 9px;
  }
  .header .header__middle .header__m-search {
    width: 52px;
  }
  .header .header__middle .header__m-search .header__m-search-open {
    width: 52px;
    font-size: 16px;
  }
  .header .header__middle .header__m-search .header__m-search-close {
    width: 52px;
    font-size: 20px;
  }
  .header .header__middle .header__m-search .header__m-search-input {
    font-size: 14px;
  }
  .header.search--active .header__m-search-open {
    width: 52px;
    font-size: 18px;
  }
  .header.search--active .header__m-search-close {
    width: 52px;
  }
  .header.search--active .header__m-search-input {
    padding: 0 50px 0 15px !important;
  }
}
body:not(.common-home) .header__catalog-menu {
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: rotateX(45deg);
  transform: rotateX(45deg);
  visibility: hidden;
  opacity: 0;
}
body:not(.common-home) .header__catalog.active .header__catalog-btn {
  background: #f8b439;
}
body:not(.common-home) .header__catalog.active .header__catalog-menu {
  -webkit-transition:
    opacity 0.2s,
    -webkit-transform 0.2s;
  transition:
    opacity 0.2s,
    -webkit-transform 0.2s;
  -o-transition:
    transform 0.2s,
    opacity 0.2s;
  transition:
    transform 0.2s,
    opacity 0.2s;
  transition:
    transform 0.2s,
    opacity 0.2s,
    -webkit-transform 0.2s;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 1299px) {
  .header__catalog-menu {
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotateX(45deg);
    transform: rotateX(45deg);
    visibility: hidden;
    opacity: 0;
  }

  .header__catalog.active .header__catalog-btn {
    background: #f8b439;
  }
  .header__catalog.active .header__catalog-menu {
    -webkit-transition:
      opacity 0.2s,
      -webkit-transform 0.2s;
    transition:
      opacity 0.2s,
      -webkit-transform 0.2s;
    -o-transition:
      transform 0.2s,
      opacity 0.2s;
    transition:
      transform 0.2s,
      opacity 0.2s;
    transition:
      transform 0.2s,
      opacity 0.2s,
      -webkit-transform 0.2s;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    visibility: visible;
    opacity: 1;
  }
}
.header__catalog-menu {
  position: absolute;

  max-height: 650px;
  left: 0;
  top: 100%;
  padding: 0 15px;
  z-index: 10;
}
.header__catalog-menu ul li {
  display: none;
}

.header__catalog-menu ul .mCSB_container li {
  display: initial;
}
.header__catalog-menu--touch
  ul.header__catalog-menu__level-0
  > div
  > div
  > li.active
  > a
  span {
  border-right-color: #ead6d6 !important;
}
.header__catalog-menu--touch
  ul.header__catalog-menu__level-0
  > div
  > div
  > li.has-child
  > a {
  padding: 0;
}
.header__catalog-menu--touch
  ul.header__catalog-menu__level-0
  > div
  > div
  > li.has-child
  > a:after {
  padding: 0 1.25em;
  margin: 0 !important;
}
.header__catalog-menu--touch
  ul.header__catalog-menu__level-0
  > div
  > div
  > li.has-child
  > a
  span {
  border-right: 1px solid #ebebeb;
  padding: 1em 0 1em 1.25em;
}
.header__catalog-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__catalog-menu ul .mCustomScrollBox {
  height: 100%;
}
.header__catalog-menu ul .mCSB_container {
  position: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__catalog-menu ul .mCSB_scrollTools {
  pointer-events: none;
}
.header__catalog-menu ul .mCSB_dragger_bar {
  width: 2px;
  background: #bebecc !important;
}
.header__catalog-menu ul .mCSB_draggerRail {
  display: none;
}
.header__catalog-menu ul > div:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  width: 100%;
  height: 5px;
  background: #fff;
  -webkit-box-shadow: #fff 0px -10px 10px 15px;
  box-shadow: #fff 0px -10px 10px 15px;
  z-index: 110;
}
.header__catalog-menu ul li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #460805;
}

.header__catalog-menu ul.header__catalog-menu__level-0 {
  position: relative;
  width: 315px;
  max-height: calc(100% - 100px);
  padding: 10px 0;
  background: #fff;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 5px;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.header__catalog-menu
  ul.header__catalog-menu__level-0
  > div
  > div
  > li:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}
.header__catalog-menu
  ul.header__catalog-menu__level-0
  > div
  > div
  > li.has-child
  > a:after {
  margin: 0 0 0 0.7em;
  font-size: 1.1em;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.header__catalog-menu ul.header__catalog-menu__level-0 > div > div > li.active {
  border-bottom-color: #ead6d6 !important;
}
.header__catalog-menu
  ul.header__catalog-menu__level-0
  > div
  > div
  > li.active
  > a {
  background: #fff4f4;
  color: #f8b439;
}
.header__catalog-menu
  ul.header__catalog-menu__level-0
  > div
  > div
  > li.active
  > ul {
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  -o-transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.header__catalog-menu ul.header__catalog-menu__level-0 > div > div > li > a {
  padding: 1em 1.25em;
  line-height: 1.35;
  font-size: 16px;
}
.header__catalog-menu
  ul.header__catalog-menu__level-0
  > div
  > div
  > li
  > a
  span {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header__catalog-menu ul.header__catalog-menu__level-1 {
  position: fixed;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100%;
  padding: 0 0 0 0px;
  -webkit-transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  -o-transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
  -webkit-transform: translateX(-5%);
  -ms-transform: translateX(-5%);
  transform: translateX(-5%);
  visibility: hidden;
  opacity: 0;
}
.header__catalog-menu ul.header__catalog-menu__level-1 .mCustomScrollBox {
  width: 100%;
  height: 100%;
  background: #fff;
  border-top: 3px solid #f8b439;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 5px;
}
.header__catalog-menu ul.header__catalog-menu__level-1 .mCSB_container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 25px 15px;
}
.header__catalog-menu
  ul.header__catalog-menu__level-1
  .mCSB_scrollTools
  .mCSB_draggerContainer {
  top: 10px;
}
.header__catalog-menu ul.header__catalog-menu__level-1 > div > div > li {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex: 0 0 33.33333%;
  -webkit-box-flex: 0;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding: 15px;
}
.header__catalog-menu ul.header__catalog-menu__level-1 > div > div > li > a,
.header__catalog-menu ul.header__catalog-menu__level-1 > div > div > li > span {
  margin: 0 0 1.2em;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #460805;
}
.header__catalog-menu
  ul.header__catalog-menu__level-1
  > div
  > div
  > li
  > a:hover,
.header__catalog-menu
  ul.header__catalog-menu__level-1
  > div
  > div
  > li
  > a:active {
  color: #f8b439;
}

.header__catalog-menu ul.header__catalog-menu__level-2 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 20px;
}
.header__catalog-menu ul.header__catalog-menu__level-2 li:not(:last-child) {
  margin: 0 0 0.5em;
}
.header__catalog-menu ul.header__catalog-menu__level-2 li a {
  padding: 0.2em 0;
  line-height: 1.25;
  font-size: 15px;
  color: #515167;
}
.header__catalog-menu ul.header__catalog-menu__level-2 li a:hover {
  -webkit-transform: translateX(5%);
  -ms-transform: translateX(5%);
  transform: translateX(5%);
}
.header__catalog-menu ul.header__catalog-menu__level-2 li a:hover,
.header__catalog-menu ul.header__catalog-menu__level-2 li a:active {
  color: #f8b439;
}

@media only screen and (max-width: 1440px) {
  body.common-home .header__catalog-menu ul.header__catalog-menu__level-0 {
    width: 300px;
  }

  .header__catalog-menu {
    max-height: 620px;
  }
}
@media only screen and (max-width: 1299px) {
  .header__catalog-menu {
    max-height: 600px;
  }
  .header__catalog-menu ul.header__catalog-menu__level-0 {
    width: 320px !important;
    max-height: calc(100% - 30px);
  }
  .header__catalog-menu ul.header__catalog-menu__level-1 {
    padding: 0 0 0 0px;
  }
  .header__catalog-menu ul.header__catalog-menu__level-1 > div > div > li {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .header__catalog-menu ul.header__catalog-menu__level-0 {
    width: 300px !important;
  }
  .header__catalog-menu ul.header__catalog-menu__level-0 > div > div > li > a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .header__catalog-menu {
    display: none !important;
  }
}
/* ============== Promo ============== */
.promo {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fafafa),
    to(#efefef)
  );
  background: -o-linear-gradient(top, #fafafa 0%, #efefef 100%);
  background: linear-gradient(180deg, #fafafa 0%, #efefef 100%);
}
.promo .row {
  position: relative;
}

.promo__inner {
  position: relative;
  padding: 30px 15px 0 30px;
}

.promo__slider {
  height: 475px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.promo__slider .slick-list,
.promo__slider .slick-track {
  height: 100%;
}

.promo__slider-slide {
  height: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.promo__slider-content {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 40px 40px 50px;
}

.promo__slider-subtitle {
  margin: 0 0 0.7em;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: #f8b439;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.promo__slider-title {
  margin: 0 0 1em;
  font-weight: 800;
  font-size: 67px;
  line-height: 1;
  color: #460805;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.promo__slider-title.small {
  font-size: 60px;
  line-height: 0.9;
}

.promo__slider-btn {
  padding: 0.9em 2.7em;
  font-weight: 600;
  font-size: 17px;
  border-radius: 5px;
}

.promo__slider-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}
.promo__slider-image img,
.promo__slider-image picture {
  width: 100%;
}

.promo__slider-controls {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0;
}
.promo__slider-controls .slick-controls__arrows {
  width: auto;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.promo__slider-controls .slick-controls__arrows .slick-arrow {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.promo__slider-controls .slick-controls__arrows .slick-arrow.slick-prev {
  border-radius: 5px 0 0 5px !important;
}
.promo__slider-controls .slick-controls__arrows .slick-arrow.slick-next {
  border-radius: 0 5px 5px 0 !important;
  border-left: 1px solid #e1e1e1;
}

.promo__slider--prev .promo__slider-content {
  opacity: 0;
  -webkit-animation: hidePromoSlidePrev 1s;
  animation: hidePromoSlidePrev 1s;
}
.promo__slider--prev .promo__slider-image {
  opacity: 0;
  -webkit-animation: hideImagePromoSlide 1s;
  animation: hideImagePromoSlide 1s;
}
.promo__slider--prev .slick-active .promo__slider-content {
  -webkit-animation: showPromoSlidePrev 1s both;
  animation: showPromoSlidePrev 1s both;
}
.promo__slider--prev .slick-active .promo__slider-image {
  -webkit-animation: showImagePromoSlide 1s both;
  animation: showImagePromoSlide 1s both;
}
.promo__slider--next .promo__slider-content,
.promo__slider--next .promo__slider-image {
  opacity: 0;
  -webkit-animation: hidePromoSlideNext 1s;
  animation: hidePromoSlideNext 1s;
}
.promo__slider--next .promo__slider-image {
  opacity: 0;
  -webkit-animation: hideImagePromoSlide 1s;
  animation: hideImagePromoSlide 1s;
}
.promo__slider--next .slick-active .promo__slider-content,
.promo__slider--next .slick-active .promo__slider-image {
  -webkit-animation: showPromoSlideNext 1s both;
  animation: showPromoSlideNext 1s both;
}
.promo__slider--next .slick-active .promo__slider-image {
  -webkit-animation: showImagePromoSlide 1s both;
  animation: showImagePromoSlide 1s both;
}

@-webkit-keyframes hidePromoSlideNext {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(-50%);
    transform: scale(0.5) translateY(-50%);
  }
}

@keyframes hidePromoSlideNext {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(-50%);
    transform: scale(0.5) translateY(-50%);
  }
}
@-webkit-keyframes showPromoSlideNext {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(50%);
    transform: scale(0.5) translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
}
@keyframes showPromoSlideNext {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(50%);
    transform: scale(0.5) translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
}
@-webkit-keyframes hidePromoSlidePrev {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(50%);
    transform: scale(0.5) translateY(50%);
  }
}
@keyframes hidePromoSlidePrev {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(50%);
    transform: scale(0.5) translateY(50%);
  }
}
@-webkit-keyframes showPromoSlidePrev {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(-50%);
    transform: scale(0.5) translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
}
@keyframes showPromoSlidePrev {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(-50%);
    transform: scale(0.5) translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
  }
}
@-webkit-keyframes hideImagePromoSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0%);
    transform: scale(1) translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateX(100%);
    transform: scale(0.5) translateX(100%);
  }
}
@keyframes hideImagePromoSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0%);
    transform: scale(1) translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateX(100%);
    transform: scale(0.5) translateX(100%);
  }
}
@-webkit-keyframes showImagePromoSlide {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateX(100%);
    transform: scale(0.5) translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0%);
    transform: scale(1) translateX(0%);
  }
}
@keyframes showImagePromoSlide {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) translateX(100%);
    transform: scale(0.5) translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0%);
    transform: scale(1) translateX(0%);
  }
}
@media only screen and (max-width: 1440px) {
  .promo .promo__slider-content {
    padding: 35px 35px 35px 45px;
  }
  .promo .promo__slider-title {
    font-size: 62px;
  }
  .promo .promo__slider-title.small {
    font-size: 55px;
    line-height: 0.95;
  }
  .promo .promo__slider-subtitle {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1299px) {
  .promo .promo__inner {
    padding: 30px 15px 0;
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }
  .promo .promo__slider {
    height: 450px;
  }
  .promo .promo__slider-content {
    padding: 35px 35px 35px 60px;
    -ms-flex: 0 0 54%;
    -webkit-box-flex: 0;
    flex: 0 0 54%;
    max-width: 54%;
  }
  .promo .promo__slider-image {
    -ms-flex: 0 0 46%;
    -webkit-box-flex: 0;
    flex: 0 0 46%;
    max-width: 46%;
  }
  .promo .promo__slider-title {
    font-size: 64px;
  }
  .promo .promo__slider-title.small {
    font-size: 50px;
    line-height: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .promo .promo__slider {
    height: 420px;
  }
  .promo .promo__slider-content {
    padding: 35px 35px 35px 40px;
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .promo .promo__slider-title {
    font-size: 58px;
  }
  .promo .promo__slider-title.small {
    font-size: 46px;
  }
  .promo .promo__slider-image {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .promo .promo__slider-btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .promo .promo__slider {
    height: 340px;
  }
  .promo .promo__slider .promo__slider-content {
    padding: 35px;
  }
  .promo .promo__slider .promo__slider-subtitle {
    font-size: 18px;
  }
  .promo .promo__slider .promo__slider-title {
    font-size: 48px;
  }
  .promo .promo__slider .promo__slider-title.small {
    margin: 0 0 1.2em;
    font-size: 36px;
    line-height: 1.05;
  }
  .promo .promo__slider .promo__slider-btn {
    padding: 0.8em 1.8em;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .promo .promo__inner {
    padding: 20px 15px 0;
  }
  .promo .promo__slider {
    height: 270px;
  }
  .promo .promo__slider .promo__slider-content {
    padding: 25px 20px 25px 25px;
  }
  .promo .promo__slider .promo__slider-subtitle {
    margin: 0 0 0.8em;
    font-size: 14px;
    line-height: 1.3;
  }
  .promo .promo__slider .promo__slider-title {
    font-size: 28px;
  }
  .promo .promo__slider .promo__slider-title.small {
    margin: 0 0 1.5em;
    font-size: 26px;
  }
  .promo .promo__slider .promo__slider-btn {
    padding: 0.7em 1.8em;
    font-size: 13px;
  }
  .promo .promo__slider-controls {
    margin: 25px 0;
  }
}
@media only screen and (max-width: 575px) {
  .promo .promo__slider {
    height: 240px;
  }
  .promo .promo__slider .promo__slider-content {
    padding: 20px 15px 20px 20px;
  }
  .promo .promo__slider .promo__slider-subtitle {
    line-height: 1.25;
  }
  .promo .promo__slider .promo__slider-title {
    font-size: 32px;
  }
  .promo .promo__slider .promo__slider-title.small {
    font-size: 24px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 480px) {
  .promo .container {
    padding: 0;
  }
  .promo .container .row {
    margin: 0;
  }
  .promo .promo__inner {
    padding: 0;
  }
  .promo .promo__slider {
    border-radius: 0;
  }
  .promo .promo__slider .promo__slider-slide {
    position: relative;
  }
  .promo .promo__slider .promo__slider-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      color-stop(0, rgba(22, 23, 54, 0.3)),
      color-stop(110%, rgba(22, 23, 54, 0.9))
    );
    background: -o-linear-gradient(
      right,
      rgba(22, 23, 54, 0.3) 0,
      rgba(22, 23, 54, 0.9) 110%
    );
    background: linear-gradient(
      -90deg,
      rgba(22, 23, 54, 0.3) 0,
      rgba(22, 23, 54, 0.9) 110%
    );
  }
  .promo .promo__slider .promo__slider-content {
    position: relative;
    -ms-flex: 0 0 60%;
    -webkit-box-flex: 0;
    flex: 0 0 60%;
    max-width: 60%;
    z-index: 3;
  }
  .promo .promo__slider .promo__slider-subtitle {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
  }
  .promo .promo__slider .promo__slider-title {
    color: #fff;
  }
  .promo .promo__slider .promo__slider-image {
    position: absolute;
    max-width: 60%;
    width: 100%;
    left: 50%;
    bottom: 0;
    z-index: 1;
  }
  .promo .promo__slider-controls {
    margin: 20px;
  }
}
@media only screen and (max-width: 359px) {
  .promo .promo__slider {
    height: 230px;
  }
  .promo .promo__slider .promo__slider-content {
    padding: 20px 10px 20px 15px;
  }
  .promo .promo__slider .promo__slider-subtitle {
    font-size: 13px;
  }
  .promo .promo__slider .promo__slider-title {
    font-size: 30px;
  }
  .promo .promo__slider .promo__slider-title.small {
    font-size: 22px;
  }
  .promo .promo__slider .promo__slider-btn {
    font-size: 13px;
  }
  .promo .promo__slider-controls {
    margin: 15px;
  }
}
/* ============== Advantages ============== */
.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  padding: 30px 20px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
  border-radius: 7px;
}

.advantages__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 25px;
}

.advantages__item-title {
  margin: 0 0 0.6em;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: #460805;
}

.advantages__item-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #737386;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.advantages__item-icon {
  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: 74px;
  height: 100%;
}
.advantages__item-icon img,
.advantages__item-icon picture {
  width: 100%;
}

@media only screen and (max-width: 1440px) {
  .advantages .advantages__item {
    padding: 24px 18px;
  }
  .advantages .advantages__item-content {
    margin-right: 20px;
  }
  .advantages .advantages__item-description {
    font-size: 14px;
  }
  .advantages .advantages__item-icon {
    width: 55px;
  }
}
@media only screen and (max-width: 1299px) {
  .advantages .row > div {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .advantages .row > div:last-child {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .advantages .row {
    margin: -15px;
  }
  .advantages .row > div {
    padding: 15px;
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .advantages .row > div:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .advantages .advantages__item {
    padding: 24px;
  }
  .advantages .advantages__item-content {
    margin: 0 30px 0 0;
  }
  .advantages .advantages__item-title {
    font-size: 16px;
  }
  .advantages .advantages__item-icon {
    width: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages .row {
    margin: -10px;
  }
  .advantages .row > div {
    padding: 10px;
  }
  .advantages .advantages__item-content {
    margin: 0 !important;
  }
  .advantages .advantages__item-title {
    font-size: 15px;
  }
  .advantages .advantages__item-icon {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .advantages .advantages__item {
    padding: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .advantages .row {
    margin: -10px -7px;
  }
  .advantages .row > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 7px;
  }
  .advantages .advantages__item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 56px;
    margin: 0 0 0 30px;
  }
}
@media only screen and (max-width: 359px) {
  .advantages .row {
    margin: -7px;
  }
  .advantages .row > div {
    max-width: 100%;
    padding: 7px;
  }
  .advantages .advantages__item {
    padding: 18px;
  }
  .advantages .advantages__item-title {
    font-size: 14px;
  }
  .advantages .advantages__item-description {
    font-size: 13px;
  }
  .advantages .advantages__item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 52px;
    margin: 0 0 0 30px;
  }
}
/* ============== Info — Consultation or Help elements on mobile ============== */

.accesaded .accessories {
  margin: 20px;
  background: #f9f9f9;
}
.accessories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 60px;
  background: #fff;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  overflow: hidden;
}
.accessories__title {
  padding: 20px 20px 25px;
  font-weight: 700;
  font-size: 16px;
  color: #460805;
}
.accessories__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 20px 20px;
}
.accessories__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.accessories__item .custom-checkbox__checkmark {
  width: 18px;
  height: 18px;
  background: #f7f7f7;
}
.accessories__item .custom-checkbox__checkmark:before {
  color: #f7f7f7;
  font-size: 9px;
}
.accessories__item .custom-checkbox__checkmark:hover {
  background: #f1f1f1;
}
.accessories__item .custom-checkbox__checkmark:hover:before {
  color: #f1f1f1;
  font-size: 9px;
}
.accessories__item:not(:last-child) {
  margin: 0 0 13px;
  padding: 0 0 12px;
  border-bottom: 1px solid #e6e6e6;
}
.accessories__item-image {
  position: relative;
  width: 60px;
}
.accessories__item-image:before {
  content: "";
  display: block;
  position: relative;
  padding-top: 100%;
}
.accessories__item-image img,
.accessories__item-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}
.accessories__item-image:hover,
.accessories__item-image:active {
  opacity: 0.7;
}
.accessories__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 0 0 10px;
}
.accessories__item-title {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #515167;
  margin: 0 0 0.3em;
}
.accessories__item-title:hover,
.accessories__item-title:active {
  color: #f8b439;
}
.accessories__item-price {
  font-weight: 700;
  font-size: 15px;
  color: #f8b439;
}

@media only screen and (max-width: 1440px) {
  .accessories__title {
    padding: 18px 18px 22px;
  }
  .accessories__content {
    padding: 0 18px 18px;
  }
  .accessories__item-image {
    width: 58px;
  }
}
@media only screen and (max-width: 1299px) {
  .accessories__content {
    padding: 0 16px 16px;
  }
  .accessories__item-image {
    width: 56px;
  }
}
@media only screen and (max-width: 1199px) {
  .js_accessories--mobile {
    margin: 0 0 42px 0;
  }
  .js_accessories--mobile .accessories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -12px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
  }
  .js_accessories--mobile .accessories > div {
    padding: 12px;
  }
  .js_accessories--mobile .accessories__title {
    padding: 0;
    margin: 0 0 28em;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }
  .js_accessories--mobile .accessories__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: -15px;
  }
  .js_accessories--mobile .accessories__item {
    min-height: 100%;
    padding: 20px 15px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
  }
  .js_accessories--mobile .accessories__item:not(:last-child) {
    margin: 0;
    padding: 15px;
    border-bottom: 0;
  }
  .js_accessories--mobile .accessories__item-title {
    font-size: 16px;
    margin: 0 0 0.4em;
  }
  .js_accessories--mobile .accessories__item-image {
    width: 56px;
  }
}
@media only screen and (max-width: 992px) {
  .js_accessories--mobile .accessories > div {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .js_accessories--mobile .accessories > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .js_accessories--mobile {
    margin: 0 0 42px;
  }
  .js_accessories--mobile .accessories {
    margin: -10px;
  }
  .js_accessories--mobile .accessories > div {
    padding: 10px;
  }
  .js_accessories--mobile .accessories__item {
    padding: 15px;
  }
  .js_accessories--mobile .accessories__item-image {
    width: 64px;
  }
  .js_accessories--mobile .accessories__item-content {
    padding: 0 0 0 20px;
  }
}
@media only screen and (max-width: 400px) {
  .js_accessories--mobile .accessories {
    margin: -8px;
  }
  .js_accessories--mobile .accessories > div {
    padding: 8px;
  }
  .js_accessories--mobile .accessories__item-title {
    margin: 0 0 0.6em 0;
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  .js_accessories--mobile .accessories__item .custom-checkbox__checkmark {
    width: 15px;
    height: 15px;
  }
  .js_accessories--mobile
    .accessories__item
    .custom-checkbox__checkmark:before {
    font-size: 8px;
  }
  .js_accessories--mobile .accessories__item-image {
    width: 56px;
  }
  .js_accessories--mobile .accessories__item-image-title {
    margin: 0 0 0.5em 0;
    font-size: 14px;
  }
  .js_accessories--mobile .accessories__item-image-price {
    font-size: 14px;
  }
  .js_accessories--mobile .accessories__item-content {
    padding: 0 0 0 10px;
  }
}
.consultation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 32px;
  -webkit-box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.07);
  box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.consultation__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 0 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#596b8d),
    to(#213252)
  );
  background: -o-linear-gradient(bottom, #596b8d 0%, #213252 100%);
  background: linear-gradient(0deg, #596b8d 0%, #213252 100%);
}

.consultation__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1.5em;
  padding: 0 25px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
}
.consultation__subtitle:before {
  content: "";
  position: relative;
  display: block;
  width: 3px;
  height: 2em;
  background: #f8b439;
  margin: 0 10px 0 0;
}

.consultation__title {
  padding: 0 25px;
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.consultation__image {
  position: relative;
  width: 100%;
}
.consultation__image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 100%;
}
.consultation__image img,
.consultation__image picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.consultation__btn {
  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;
  padding: 0.9em 1.2em;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-box-shadow: 0px -4px 10px rgba(22, 23, 54, 0.2);
  box-shadow: 0px -4px 10px rgba(22, 23, 54, 0.2);
}

.consultation__btn-inner {
  display: none;
}

@media only screen and (max-width: 1440px) {
  .consultation .consultation__subtitle,
  .consultation .consultation__title {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1299px) {
  .consultation .consultation__btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .accesaded {
    display: none;
  }

  .consultation .consultation__subtitle,
  .consultation .consultation__title {
    padding: 0;
  }
}
.help {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 100px;
  padding: 40px 25px 30px;
  background: -o-linear-gradient(312deg, #f6091f -10%, #cd1324 108%);
  background: linear-gradient(138deg, #f6091f -10%, #cd1324 108%);
  -webkit-box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.07);
  box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
}
.help:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/lines_bg.svg) 0 0 / cover;
  z-index: 1;
}

.help__title {
  position: relative;
  margin: 0 0 0.76em;
  letter-spacing: 0.02em;
  color: #fff;
  z-index: 10;
}

.help__description {
  position: relative;
  margin: 0 0 2.5em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  z-index: 10;
}

.help__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 10;
}

.help__form-input {
  margin: 0 0 20px;
  padding: 14px;
  height: 46px;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}
.help__form-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}
.help__form-input::-moz-placeholder {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}
.help__form-input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}
.help__form-input::-ms-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}
.help__form-input::placeholder {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}

.help__form-btn {
  padding: 0.9em 1.2em;
  font-weight: 700;
  font-size: 16px;
  border-radius: 5px;
}

@media only screen and (max-width: 1440px) {
  .help {
    margin: 0 0 90px;
    padding: 30px 20px 25px;
  }
  .help .help__description {
    margin: 0 0 2em;
  }
  .help .help__form-input {
    margin: 0 0 18px;
  }
}
@media only screen and (max-width: 1299px) {
  .help .help__description {
    margin: 0 0 1.8em;
  }
  .help .help__form-btn {
    font-size: 15px;
  }
}
.how-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 42px;
}

.how-order__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.how-order__item:not(:last-child) {
  margin: 0 0 20px;
}
.how-order__item:before {
  counter-increment: how_order;
  content: "0" counter(how_order);
  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;
  height: auto;
  padding: 0 0.66em;
  background: #f8b439;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.how-order__item p {
  padding: 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  color: #515167;
}

@media only screen and (max-width: 1440px) {
  .how-order {
    margin: 0 0 42px;
  }
  .how-order .how-order__item:before {
    font-size: 17px;
  }
  .how-order .how-order__item p {
    padding: 18px 20px;
  }
}
section.text-section .useful-info .row {
  margin: -20px;
}
section.text-section .useful-info .row > div {
  padding: 20px;
}

.main__aside .useful-info {
  margin: 0 0 42px 0;
}
.main__aside .useful-info .useful-info__card {
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.07);
  box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
}
.main__aside .useful-info .useful-info__card:not(:last-child) {
  margin: 0 0 25px;
}
.main__aside .useful-info .useful-info__title {
  font-size: 15px;
}
.main__aside .useful-info .useful-info__item {
  padding: 0;
  font-size: 14px;
}
.main__aside .useful-info .useful-info__item:before {
  display: none;
}

.js_useful-info--mobile {
  padding-top: 0 !important;
}

.useful-info__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.useful-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1em;
  font-size: 17px;
  font-weight: 700;
  color: #460805;
}
.useful-info__title img,
.useful-info__title picture,
.tech_supp svg {
  margin: 0 0.8em 0 0;
  width: 1.4em;
  height: 1.4em;
}

p.useful-info__item {
  position: relative;
  padding: 0 0 0 1.3em;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #737386;
}
p.useful-info__item:not(:last-child) {
  margin: 0 0 0.6em;
}
p.useful-info__item:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.5em;
  height: 2px;
  background: #737386;
  border-radius: 0.4em;
  opacity: 0.7;
}

@media only screen and (max-width: 1199px) {
  .useful-info .useful-info__item {
    padding: 0;
  }
  .useful-info .useful-info__item:before {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  section.text-section .useful-info .row {
    margin: -15px;
  }
  section.text-section .useful-info .row > div {
    padding: 15px;
  }

  .useful-info .useful-info__title {
    font-size: 16px;
  }
  .useful-info .useful-info__item {
    font-size: 15px;
  }
}
@media only screen and (max-width: 576px) {
  section.text-section .useful-info .row {
    margin: -25px -15px;
  }
  section.text-section .useful-info .row > div {
    padding: 25px 15px;
  }
}
@media only screen and (max-width: 400px) {
  section.text-section .useful-info .row {
    margin: -20px -15px;
  }
  section.text-section .useful-info .row > div {
    padding: 20px 15px;
  }

  .useful-info .useful-info__item {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  section.text-section .useful-info .row {
    margin: -20px -15px;
  }
  section.text-section .useful-info .row > div {
    padding: 20px 15px;
  }

  .useful-info .useful-info__title {
    font-size: 15px;
  }
  .useful-info .useful-info__item {
    font-size: 14px;
  }
}
.info {
  display: none;
}
.info .row {
  margin: 0 -15px;
}
.info .row > div {
  padding: 0 15px;
}
.info .consultation,
.info .help {
  height: 100%;
  margin: 0;
}
.info .consultation__content {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 40% 0 20px;
  overflow: hidden;
}
.info .consultation__subtitle,
.info .consultation__title {
  padding: 0;
}
.info .consultation__subtitle {
  margin: 0 0 4em;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.info .consultation__title {
  margin: 0 0 1.2em;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.info .consultation__image {
  position: absolute;
  width: 62%;
  left: 40%;
  bottom: 0;
}
.info .consultation__btn {
  display: none;
}
.info .consultation__btn-inner {
  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-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding: 0.8em 1em;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 5px;
}

@media only screen and (max-width: 1199px) {
  .info .useful-info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 42px;
    padding: 15px 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
  }
  .info .useful-info .section__title-2 {
    display: none;
  }
  .info .useful-info__card {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding: 20px !important;
  }
}
@media only screen and (max-width: 991px) {
  .info {
    display: block;
  }
  .info .consultation .consultation__image {
    width: 82%;
    left: 48%;
  }
  .info .useful-info__card {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .info .consultation .consultation__content {
    padding: 30px 40% 25px 25px;
  }
  .info .consultation .consultation__subtitle {
    margin: 0 0 3em;
  }
  .info .consultation .consultation__btn-inner {
    font-size: 14px;
  }
  .info .consultation .consultation__image {
    width: 62%;
    left: 42%;
    bottom: -15%;
  }
  .consultation__image img {
    top: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .info .consultation .consultation__content {
    padding: 30px 40% 25px 25px;
  }
  .info .consultation .consultation__subtitle {
    margin: 0 0 3em;
  }
  .info .consultation .consultation__btn-inner {
    font-size: 14px;
  }
  .info .consultation .consultation__image {
    width: 62%;
    left: 42%;
    bottom: -15%;
  }
  .info .help .help__title br {
    display: none;
  }
  .info .help .help__form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .info .help .help__form-input {
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
  }
  .info .help .help__form-input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .info .help .help__form-input::-moz-placeholder {
    font-size: 14px;
  }
  .info .help .help__form-input:-ms-input-placeholder {
    font-size: 14px;
  }
  .info .help .help__form-input::-ms-input-placeholder {
    font-size: 14px;
  }
  .info .help .help__form-input::placeholder {
    font-size: 14px;
  }
  .info .help .help__form-btn {
    padding: 0.9em 1.5em;
    font-size: 14px;
    border-radius: 0 5px 5px 0;
  }
  .info .useful-info__card {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .info .consultation .consultation__content {
    padding: 30px 40% 25px 20px;
  }
  .info .useful-info {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 480px) {
  .info .consultation .consultation__image {
    width: 70%;
    left: 50%;
    bottom: 0;
  }
  .info .help .help__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .info .help .help__form-input {
    margin: 0 0 12px;
    border-radius: 5px;
  }
  .info .help .help__form-btn {
    font-size: 15px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 400px) {
  .info .consultation .consultation__content {
    padding: 25px 40% 25px 18px;
  }
  .info .consultation .consultation__subtitle {
    font-size: 13px;
  }
  .info .help .help {
    padding: 25px 18px 20px;
  }
  .info .help .help__description {
    font-size: 14px;
  }
  .info .help .help__form-btn {
    padding: 1.1em;
    font-size: 14px;
  }
  .info .useful-info__title {
    font-size: 15px;
  }
  .info .useful-info__item {
    font-size: 14px;
  }
  .info .useful-info__card {
    padding: 15px 20px !important;
  }
}
@media only screen and (max-width: 359px) {
  .info .consultation .consultation__content {
    padding: 20px 40% 20px 15px;
  }
  .info .consultation .consultation__subtitle {
    font-size: 12px;
  }
  .info .consultation .consultation__btn-inner {
    font-size: 13px;
  }
  .info .help {
    padding: 22px 15px 20px;
  }
  .info .help .help__form-input {
    height: 44px;
    font-size: 13px;
  }
  .info .help .help__form-input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .info .help .help__form-input::-moz-placeholder {
    font-size: 13px;
  }
  .info .help .help__form-input:-ms-input-placeholder {
    font-size: 13px;
  }
  .info .help .help__form-input::-ms-input-placeholder {
    font-size: 13px;
  }
  .info .help .help__form-input::placeholder {
    font-size: 13px;
  }
  .info .help .help__form-btn {
    font-size: 13px;
  }
  .info .useful-info__title {
    font-size: 14px;
  }
  .info .useful-info__item {
    font-size: 13px;
  }
  .info .useful-info__card {
    padding: 15px !important;
  }
}
/* ============== Categories ============== */
.categories {
  padding-top: 0;
}

.categories-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 600px;
  border-top: 1px solid #dcdce1;
  border-left: 1px solid #dcdce1;
  background: #ffffff;
  -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.categories-grid > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #dcdce1;
  border-bottom: 1px solid #dcdce1;
}
.categories-grid > a:hover {
  -webkit-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}
.categories-grid > a .categories-grid__title {
  margin: 0 0 0.75em;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.categories-grid > a .categories-grid__price {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #f8b439;
}
.categories-grid > a .categories-grid__image {
  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;
}
.categories-grid > a .categories-grid__image img,
.categories-grid > a .categories-grid__image picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.categories-grid > a.item--col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 35px;
}
.categories-grid > a.item--col .categories-grid__image {
  width: 100%;
  margin-top: 35px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.categories-grid > a.item--row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px 20px 35px 25px;
}
.categories-grid > a.item--row .categories-grid__content {
  padding: 0 20px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  max-width: 55%;
}
.categories-grid > a.item--row .categories-grid__image {
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
}
.categories-grid > a.item--row-big {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px;
}
.categories-grid > a.item--row-big .categories-grid__content {
  padding: 0 30px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.categories-grid > a.item--row-big .categories-grid__image {
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.categories-grid__item-1 {
  grid-area: 1/1/7/4;
}

.categories-grid__item-2 {
  grid-area: 1/4/4/8;
}

.categories-grid__item-3 {
  grid-area: 4/4/7/8;
}

.categories-grid__item-4 {
  grid-area: 1/8/7/11;
}

.categories-grid__item-5 {
  grid-area: 7/1/10/6;
}

.categories-grid__item-6 {
  grid-area: 7/6/10/11;
}

.categories-grid__item-4 {
  border-radius: 0 10px 0 0;
}

.categories-grid__item-6 {
  border-radius: 0 0 10px 0;
}

@media only screen and (max-width: 1299px) {
  .categories-grid {
    height: 560px;
  }
  .categories-grid > a .categories-grid__title {
    font-size: 17px;
  }
  .categories-grid > a.item--col {
    padding: 35px 30px;
  }
  .categories-grid > a.item--row {
    padding: 30px 20px 30px 20px;
  }
  .categories-grid > a.item--row-big {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .categories-grid {
    height: 620px;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(12, 1fr);
  }
  .categories-grid > a.item--col {
    padding: 30px 25px;
  }
  .categories-grid > a.item--row {
    padding: 25px 20px 25px 20px;
  }
  .categories-grid > a.item--row-big {
    padding: 25px;
  }

  .categories-grid__item-1 {
    grid-area: 1/1/7/5;
  }

  .categories-grid__item-2 {
    grid-area: 4/5/7/11;
  }

  .categories-grid__item-3 {
    grid-area: 1/5/4/11;
  }

  .categories-grid__item-4 {
    grid-area: 7/7/13/11;
  }

  .categories-grid__item-5 {
    grid-area: 7/1/10/7;
  }

  .categories-grid__item-6 {
    grid-area: 10/1/13/7;
  }

  .categories-grid__item-3 {
    border-radius: 0 10px 0 0;
  }

  .categories-grid__item-4 {
    border-radius: 0 0 10px 0;
  }

  .categories-grid__item-6 {
    border-radius: 0;
  }
}
@media only screen and (max-width: 991px) {
  .categories-grid > a .categories-grid__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .products-slider ul.slick-dots {
    max-width: 70%;
    margin: 0 auto;
    overflow: hidden;
  }
  .categories-grid > a .categories-grid__title {
    font-size: 15px;
  }
  .categories-grid > a .categories-grid__price {
    font-size: 15px;
  }
  .categories-grid > a.item--col {
    padding: 25px 25px;
  }
  .categories-grid > a.item--row .categories-grid__content,
  .categories-grid > a.item--row-big .categories-grid__content {
    padding: 0 20px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }
  .categories-grid > a.item--row .categories-grid__image,
  .categories-grid > a.item--row-big .categories-grid__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media only screen and (max-width: 575px) {
  .categories-grid {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .categories-grid > a.categories-grid__item-1,
  .categories-grid > a.categories-grid__item-2,
  .categories-grid > a.categories-grid__item-4,
  .categories-grid > a.categories-grid__item-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0 10px;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__content,
  .categories-grid > a.categories-grid__item-2 .categories-grid__content,
  .categories-grid > a.categories-grid__item-4 .categories-grid__content,
  .categories-grid > a.categories-grid__item-3 .categories-grid__content {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
    max-width: 100%;
    padding: 25px 20px 20px;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__image,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image:before {
    content: "";
    position: relative;
    display: block;
    padding-top: 70%;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-1 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    padding: 20px;
  }

  .categories-grid__item-1 {
    grid-area: 1/1/3/2;
  }

  .categories-grid__item-2 {
    grid-area: 1/2/3/3;
  }

  .categories-grid__item-3 {
    grid-area: 4/2/6/3;
  }

  .categories-grid__item-4 {
    grid-area: 4/1/6/2;
  }

  .categories-grid__item-5 {
    grid-area: 3/1/4/3;
  }

  .categories-grid__item-6 {
    grid-area: 6/1/7/3;
  }

  .categories-grid__item-2 {
    border-radius: 0 10px 0 0;
  }

  .categories-grid__item-6 {
    border-radius: 0 0 10px 10px;
  }

  .categories-grid__item-3,
  .categories-grid__item-4 {
    border-radius: 0;
  }
}
@media only screen and (max-width: 480px) {
  .categories-grid > a.categories-grid__item-1 .categories-grid__content,
  .categories-grid > a.categories-grid__item-2 .categories-grid__content,
  .categories-grid > a.categories-grid__item-3 .categories-grid__content,
  .categories-grid > a.categories-grid__item-4 .categories-grid__content {
    padding: 24px 18px 18px;
  }
  .categories-grid > a.item--row-big {
    padding: 24px 20px;
  }
  .categories-grid > a .categories-grid__title {
    margin: 0 0 0.65em;
  }
}
@media only screen and (max-width: 400px) {
  .categories-grid > a.categories-grid__item-1 .categories-grid__content,
  .categories-grid > a.categories-grid__item-2 .categories-grid__content,
  .categories-grid > a.categories-grid__item-3 .categories-grid__content,
  .categories-grid > a.categories-grid__item-4 .categories-grid__content {
    padding: 22px 15px 15px;
  }
  .categories-grid > a.item--row-big {
    padding: 22px 18px;
  }
  .categories-grid > a .categories-grid__title {
    margin: 0 0 0.65em;
  }
  .categories-grid > a .categories-grid__price {
    font-size: 14px;
  }
}
@media only screen and (max-width: 359px) {
  .categories-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .categories-grid > a.categories-grid__item-1,
  .categories-grid > a.categories-grid__item-2,
  .categories-grid > a.categories-grid__item-3,
  .categories-grid > a.categories-grid__item-4,
  .categories-grid > a.categories-grid__item-5,
  .categories-grid > a.categories-grid__item-6 {
    -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;
    padding: 10px 0;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__content,
  .categories-grid > a.categories-grid__item-2 .categories-grid__content,
  .categories-grid > a.categories-grid__item-3 .categories-grid__content,
  .categories-grid > a.categories-grid__item-4 .categories-grid__content,
  .categories-grid > a.categories-grid__item-5 .categories-grid__content,
  .categories-grid > a.categories-grid__item-6 .categories-grid__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
    padding: 15px 0 15px 15px;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__title,
  .categories-grid > a.categories-grid__item-2 .categories-grid__title,
  .categories-grid > a.categories-grid__item-3 .categories-grid__title,
  .categories-grid > a.categories-grid__item-4 .categories-grid__title,
  .categories-grid > a.categories-grid__item-5 .categories-grid__title,
  .categories-grid > a.categories-grid__item-6 .categories-grid__title {
    font-size: 14px;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__image,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image,
  .categories-grid > a.categories-grid__item-5 .categories-grid__image,
  .categories-grid > a.categories-grid__item-6 .categories-grid__image {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
    padding: 0;
    margin: 0;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-5 .categories-grid__image:before,
  .categories-grid > a.categories-grid__item-6 .categories-grid__image:before {
    content: "";
    position: relative;
    display: block;
    padding-top: 70%;
  }
  .categories-grid > a.categories-grid__item-1 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-1 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-2 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-3 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-4 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-5 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-5 .categories-grid__image picture,
  .categories-grid > a.categories-grid__item-6 .categories-grid__image img,
  .categories-grid > a.categories-grid__item-6 .categories-grid__image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    padding: 15px;
  }

  .categories-grid__item-1 {
    grid-area: 1/1/2/2;
  }

  .categories-grid__item-2 {
    grid-area: 2/1/3/2;
  }

  .categories-grid__item-3 {
    grid-area: 3/1/4/2;
  }

  .categories-grid__item-4 {
    grid-area: 4/1/5/2;
  }

  .categories-grid__item-5 {
    grid-area: 5/1/6/2;
  }

  .categories-grid__item-6 {
    grid-area: 6/1/7/2;
  }

  .categories-grid__item-1 {
    border-radius: 10px 10px 0 0;
  }

  .categories-grid__item-6 {
    border-radius: 0 0 10px 10px;
  }

  .categories-grid__item-1 .categories-grid__item-3,
  .categories-grid__item-4 {
    border-radius: 0;
  }
}
/* ============== Tabs ============== */
.tabs__head {
  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;
  margin: 0 0 28px;
}
.tabs__head .section__title {
  margin: 0 !important;
}

.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #f8b439;
  border-radius: 5px;
  overflow: hidden;
}

.tabs__nav-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;
  padding: 0.8em 2em;
  font-weight: 600;
  font-size: 15px;
  color: #f8b439;
}
.tabs__nav-item:not(:last-child) {
  border-right: 1px solid #f8b439;
}
.tabs__nav-item:not(.active):hover,
.tabs__nav-item:not(.active):active {
  background: #fff4f4;
}
.tabs__nav-item[selected],
.tabs__nav-item.active {
  background: #f8b439 !important;
  color: #fff;
}

.tabs__nav--scrolling {
  -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;
  margin: 0 0 42px;
  padding: 0 0 30px;
  border: 0;
  border-radius: 0;
  overflow: unset;
}
.tabs__nav--scrolling .mCustomScrollBox {
  position: relative;
  border: 1px solid #f8b439;
  border-radius: 5px;
  overflow: hidden;
}
.tabs__nav--scrolling .mCustomScrollBox .mCSB_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs__nav--scrolling .mCSB_scrollTools {
  position: absolute;
  bottom: 0 !important;
}
.tabs__nav--scrolling .mCSB_scrollTools .mCSB_draggerContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tabs__nav--scrolling .mCSB_scrollTools .mCSB_draggerContainer:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}
.tabs__nav--scrolling
  .mCSB_scrollTools
  .mCSB_draggerContainer
  .mCSB_dragger.mCSB_dragger_onDrag
  .mCSB_dragger_bar {
  background: #d21425;
}
.tabs__nav--scrolling
  .mCSB_scrollTools
  .mCSB_draggerContainer
  .mCSB_dragger
  .mCSB_dragger_bar {
  height: 5px;
  background: #f8b439;
  border-radius: 5px;
}
.tabs__nav--scrolling
  .mCSB_scrollTools
  .mCSB_draggerContainer
  .mCSB_dragger
  .mCSB_draggerRail {
  display: none !important;
}
.tabs__nav--scrolling .tabs__nav-item {
  padding: 0.87em 2em;
  white-space: nowrap;
}

@media only screen and (max-width: 1299px) {
  .tabs__nav-item {
    padding: 0.66em 1.5em;
  }

  .tabs__nav--scrolling .tabs__nav-item {
    padding: 0.8em 1.5em;
  }
}
@media only screen and (max-width: 1199px) {
  .tabs__head {
    margin: 0 0 28px;
  }
}
@media only screen and (max-width: 991px) {
  .tabs__head {
    margin: 0 0 28px;
    -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;
  }
  .tabs__head .tabs__nav {
    margin: 30px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .tabs__nav--scrolling {
    margin: 0 0 40px;
    padding: 0 0 25px;
  }
  .tabs__nav--scrolling .tabs__nav-item {
    font-size: 14px;
  }

  .tabs__nav--scrolling .tabs__nav-item {
    padding: 0.77em 1.5em;
  }
}
@media only screen and (max-width: 480px) {
  .tabs__nav--scrolling {
    margin: 0 0 35px;
  }
}
@media only screen and (max-width: 400px) {
  .tabs__nav:not(.tabs__nav--scrolling) {
    margin: 20px 0 0 0;
  }

  .tabs__nav--scrolling {
    margin: 0 0 25px;
  }
  .tabs__nav--scrolling .tabs__nav-item {
    padding: 0.72em 1.5em;
  }

  .tabs__nav-item {
    font-size: 13px;
  }
}
@media only screen and (max-width: 360px) {
  .tabs__nav-item {
    padding: 0.6em 1.3em;
  }

  .tabs__nav--scrolling .tabs__nav-item {
    padding: 0.65em 1.3em;
  }
}
/* ============== Products ============== */
.products-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.products-slider .slick-list {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  border: 1px solid #dcdce1;
  border-radius: 7px;
  overflow: hidden;
}
.products-slider .slick-slide:not(:last-child) {
  border-right: 1px solid #dcdce1;
}
.products-slider .slick-controls {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.catalog-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
}
.catalog-products > div {
  padding: 0;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.catalog-products .product-card {
  position: relative;
}
.catalog-products .product-card:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.15);
  opacity: 0;
  z-index: 1;
}
.catalog-products .product-card .product-card__content {
  padding: 0 18px 25px;
}
.catalog-products .product-card .product-card__buy {
  border-width: 1px;
}
.catalog-products .product-card.not-available .product-card__buy {
  border-width: 2px;
}
.catalog-products .product-card .product-card__footer {
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 2;
}
.catalog-products .product-card .product-card__footer:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-shadow: 0 20px 20px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 20px 3px rgba(0, 0, 0, 0.15);
  opacity: 0;
  z-index: 1;
}
.catalog-products .product-card .product-card__footer-wrap {
  position: relative;
  height: 0;
  background: #fff;
  width: 100%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  opacity: 0;
  z-index: 4;
}
.catalog-products .product-card .product-card__footer-info {
  position: relative;
  height: auto;
  margin: 10px 0 0;
  padding: 0 18px 0 15px;
  scroll-behavior: smooth;
  scrollbar-color: #e5e5e5 #fff;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  max-height: 270px;
}
.catalog-products .product-card .product-card__footer-info::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 3px;
  height: 3px;
}
.catalog-products
  .product-card
  .product-card__footer-info::-webkit-scrollbar-thumb {
  background-color: #e5e5e5;
}
.catalog-products
  .product-card
  .product-card__footer-info::-webkit-scrollbar-track {
  border-width: 0;
  background-color: #fff;
}
.catalog-products .product-card .product-card__footer-info table td {
  font-size: 13px;
  width: 50%;
}
.catalog-products
  .product-card
  .product-card__footer-info
  table
  td:first-child {
  padding: 0 5px 10px 0;
  line-height: 1.2;
  color: #737386;
}
.catalog-products .product-card .product-card__footer-info table td:last-child {
  padding: 0 0 10px 5px;
  line-height: 1.4;
  text-align: right;
  font-weight: 500;
  color: #460805;
}

@media only screen and (min-width: 991px) {
  .catalog-products .product-card:hover {
    z-index: 100;
  }
  .catalog-products .product-card:hover .product-card__rating,
  .catalog-products .product-card:hover .product-card__label,
  .catalog-products .product-card:hover .product-card__image,
  .catalog-products .product-card:hover .product-card__content,
  .catalog-products .product-card:hover .product-card__footer {
    z-index: 4;
  }
  .catalog-products .product-card:hover .product-card__footer-wrap {
    height: auto;
    opacity: 1;
  }
  .catalog-products .product-card:hover .product-card__footer:before {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
    z-index: 3;
  }
  .catalog-products .product-card:hover:before {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
    z-index: 3;
  }
}
.catalog-products.catalog-view--row > div {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
}
.catalog-products.catalog-view--row .product-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.catalog-products.catalog-view--row .product-card:before {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.catalog-products.catalog-view--row
  .product-card:hover
  .product-card__footer:before {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
.catalog-products.catalog-view--row .product-card:hover:before {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
.catalog-products.catalog-view--row .product-card .product-card__image {
  width: 230px;
  border-right: 1px solid #e6e6e6;
}
.catalog-products.catalog-view--row .product-card .product-card__content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 25px;
}
.catalog-products.catalog-view--row .product-card .product-card__buy {
  max-width: 180px;
}
.catalog-products.catalog-view--row .product-card .product-card__footer {
  border-top: 2px solid #e6e6e6;
}
.catalog-products.catalog-view--row .product-card .product-card__footer:before {
  -webkit-box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
}
.catalog-products.catalog-view--row .product-card .product-card__footer-info {
  height: 115px;
  margin: 15px 0 0;
  padding: 0 25px;
}
.catalog-products.catalog-view--row
  .product-card
  .product-card__footer-info
  table {
  width: 100%;
}

.product-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background: #fff;
}
.product-card.not-available .product-card__status {
  color: #f8b439;
}
.product-card.not-available .product-card__status.stablue {
  color: #0062cc;
}
.product-card.not-available .product-card__buy {
  pointer-events: none;
  color: #abacb7;
  border-color: #b8b9c2;
}
.product-card.type-remove .product-card__label {
  top: 8px;
  right: 50px;
}
.product-card.type-remove .product-card__rating {
  top: 14px;
  z-index: 10;
}
.product-card.type-remove .product-card__remove {
  position: absolute;
  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;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  font-size: 18px;
  background: #f5f5f5;
  color: #9a9ab3;
  border-radius: 0 0 0 5px;
  z-index: 20;
}
.product-card.type-remove .product-card__remove:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.product-card.type-remove .product-card__remove:hover {
  background: #f1f1f1;
  color: #525371;
}

.product-card__rating {
  position: absolute;
  top: 16px;
  left: 12px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: #000;
  z-index: 2;
}
.product-card__rating:before {
  font-size: 1em;
  margin: 0 0.4em 0 0;
  color: #ffc805;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.product-card__label {
  position: absolute;
  top: 12px;
  right: 8px;
  padding: 0.5em 1em;
  font-weight: 500;
  font-size: 12px;
  border-radius: 12px;
  line-height: 1;
  color: #fff;
  background: #f8b439;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.product-card__label.stock {
  background: #f8b439;
}
.product-card__label.new {
  background: #3aba5e;
}
.product-card__label.bestseller,
.product-card__label.rated {
  background: #ff8c05;
}

.product-card__image {
  position: relative;
  -webkit-transition: border-right 0s;
  -o-transition: border-right 0s;
  transition: border-right 0s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.product-card__image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 90%;
}
.product-card__image img,
.product-card__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 40px 30px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.product-card__image:hover {
  opacity: 0.8;
}

.product-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 18px 20px;
  z-index: 2;
}

.product-card__title {
  margin: 0 0 0.7em;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #460805;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.product-card__title:hover,
.product-card__title:active {
  color: #f8b439;
}

.product-card__status {
  margin: 0 0 0.8em;
  font-size: 14px;
  line-height: 1.5;
  color: #0db33c;
}

.product-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1.25em;
  font-size: 17px;
}
.product-card__price .current {
  margin: 0 0.875em 0 0;
  font-weight: 700;
  font-size: 1em;
  line-height: 1;
  color: #460805;
}
.product-card__price .old {
  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;
  font-weight: 500;
  font-size: 0.8em;
  line-height: 1;
  color: #acacad;
}
.product-card__price .old:before {
  content: "";
  position: absolute;
  display: block;
  width: 110%;
  height: 1px;
  background: #acacad;
}

.product-card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.product-card__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 15px 0 0;
  padding: 0.75em;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  color: #f8b439;
  text-transform: uppercase;
  -webkit-transition:
    all 0.3s,
    opacity 0.2s;
  -o-transition:
    all 0.3s,
    opacity 0.2s;
  transition:
    all 0.3s,
    opacity 0.2s;
  border-radius: 5px;
  cursor: pointer;
}
.product-card__buy:active {
  opacity: 0.5;
}
.product-card__buy.active {
  background: #f8b439;
  color: #fff;
}
.product-card__buy.active:hover {
  background: #f8b439;
  border-color: #f8b439;
}

.product-card__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  font-size: 24px;
  color: #460805;
  -webkit-transition:
    color 0.3s,
    -webkit-transform 0.1s;
  transition:
    color 0.3s,
    -webkit-transform 0.1s;
  -o-transition:
    color 0.3s,
    transform 0.1s;
  transition:
    color 0.3s,
    transform 0.1s;
  transition:
    color 0.3s,
    transform 0.1s,
    -webkit-transform 0.1s;
  opacity: 0.3;
}
.product-card__btn:not(:last-child) {
  margin: 0 0.4em 0 0;
}
.product-card__btn:hover {
  opacity: 0.45;
}
.product-card__btn:active {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.product-card__btn--whishlist.active {
  color: #ff2525;
  opacity: 1;
}
.product-card__btn--compare.active {
  color: #686986;
  opacity: 1;
}

@media only screen and (max-width: 1440px) {
  .catalog-products .product-card .product-card__content {
    padding: 0 15px 25px;
  }
  .catalog-products .product-card .product-card__footer-info {
    padding: 0 16px 0 12px;
  }
  .catalog-products
    .product-card
    .product-card__footer-info
    table
    td:first-child {
    padding: 0 2px 10px 0;
  }
  .catalog-products
    .product-card
    .product-card__footer-info
    table
    td:last-child {
    padding: 0 0 10px 2px;
  }
}
@media only screen and (max-width: 1299px) {
  .product-card .product-card__image:before {
    padding-top: 85%;
  }

  .catalog-products > div {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media only screen and (max-width: 1199px) {
  .product-card .product-card__image:before {
    padding-top: 90%;
  }
  .product-card .product-card__buy {
    margin: 0 12px 0 0;
  }
  .product-card .product-card__btn {
    font-size: 22px;
  }

  .catalog-products .product-card .product-card__rating {
    font-size: 12px;
  }
  .catalog-products .product-card .product-card__image img,
  .catalog-products .product-card .product-card__image picture {
    padding: 35px 25px 25px;
  }
  .catalog-products .product-card .product-card__title,
  .catalog-products .product-card .product-card__status {
    font-size: 13px;
  }
  .catalog-products .product-card .product-card__price {
    font-size: 16px;
  }
  .catalog-products .product-card .product-card__buy {
    margin: 0 12px 0 0;
    font-size: 11px;
  }
  .catalog-products .product-card .product-card__btn {
    font-size: 20px;
  }
  .catalog-products .product-card .product-card__footer-info {
    padding: 0 10px 0 8px;
  }
  .catalog-products .product-card .product-card__footer-info table td {
    font-size: 12px;
  }

  .catalog-products.catalog-view--row .product-card .product-card__image {
    width: 210px;
  }
}
@media only screen and (max-width: 991px) {
  .products-tabs__nav-item {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .product-card .product-card__image:before {
    padding-top: 85%;
  }

  .catalog-products > div {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .catalog-products.catalog-view--row .product-card .product-card__image {
    width: 190px;
  }
}
@media only screen and (max-width: 575px) {
  .catalog-products.catalog-view--row .product-card .product-card__image {
    width: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .product-card .product-card__rating,
  .product-card .product-card__label {
    font-size: 11px;
  }
  .product-card .product-card__image img,
  .product-card .product-card__image picture {
    padding: 35px 25px 25px;
  }
  .product-card .product-card__content {
    padding: 0 12px 18px;
  }
  .product-card .product-card__title,
  .product-card .product-card__status {
    font-size: 13px;
  }
  .product-card .product-card__price {
    font-size: 15px;
  }
  .product-card .product-card__buy {
    border-width: 1px;
    font-size: 11px;
  }
  .product-card .product-card__btn {
    font-size: 20px;
  }

  .catalog-products .product-card .product-card__label,
  .catalog-products .product-card .product-card__rating {
    font-size: 11px;
  }
  .catalog-products .product-card .product-card__content {
    padding: 0 12px 20px;
  }
  .catalog-products .product-card .product-card__price {
    font-size: 15px;
  }
  .catalog-products .product-card .product-card__buy {
    font-size: 11px;
  }

  .catalog-products.catalog-view--row .product-card .product-card__rating {
    left: 10px;
  }
  .catalog-products.catalog-view--row .product-card .product-card__image {
    width: 140px;
  }
  .catalog-products.catalog-view--row .product-card .product-card__image img,
  .catalog-products.catalog-view--row
    .product-card
    .product-card__image
    picture {
    padding: 25px 15px 15px;
  }
  .catalog-products.catalog-view--row .product-card .product-card__content {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 400px) {
  .products-slider .slick-list {
    margin: 0 -15px;
    padding: 0 5px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .products-slider .slick-list .slick-slide {
    border: 0;
    border-right: 1px solid transparent;
  }
  .products-slider .slick-list .slick-slide.slick-current {
    border-color: #dcdce1;
  }

  .product-card.type-remove .product-card__rating {
    top: 12px;
    left: 8px;
    font-size: 10px;
  }
  .product-card.type-remove .product-card__label {
    right: 40px;
    font-size: 10px;
  }
  .product-card.type-remove .product-card__remove {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }
  .product-card .product-card__price {
    font-size: 14px;
  }
  .product-card .product-card__buy {
    margin: 0 10px 0 0;
    padding: 0.7em;
  }

  .catalog-products {
    margin: 0 -15px;
    padding: 0 5px;
    background: #fff;
    border-left: 0;
  }
  .catalog-products > div:nth-child(even) {
    border-right: 0;
  }
  .catalog-products .product-card .product-card__image:before {
    padding-top: 90%;
  }
  .catalog-products .product-card .product-card__title,
  .catalog-products .product-card .product-card__status {
    font-size: 13px;
  }
  .catalog-products .product-card .product-card__price {
    font-size: 14px;
  }
  .catalog-products .product-card .product-card__buy {
    margin: 0 10px 0 0;
    padding: 0.7em;
    /* display: none;*/
  }

  .catalog-products.catalog-view--row {
    padding: 0;
  }
  .catalog-products.catalog-view--row > div {
    border-right: 0 !important;
  }
  .catalog-products.catalog-view--row .product-card .product-card__image {
    width: 130px;
  }
  .catalog-products.catalog-view--row .product-card .product-card__image img,
  .catalog-products.catalog-view--row
    .product-card
    .product-card__image
    picture {
    padding: 25px 15px 15px;
  }
  .catalog-products.catalog-view--row .product-card .product-card__content {
    padding: 22px 15px;
  }
}
@media only screen and (max-width: 360px) {
  .products-slider .slick-list {
    padding: 0 3px;
  }

  .product-card.type-remove .product-card__rating {
    top: 11px;
    left: 6px;
  }
  .product-card.type-remove .product-card__label {
    right: 36px;
    top: 6px;
  }
  .product-card.type-remove .product-card__remove {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .product-card .product-card__image:before {
    padding-top: 100%;
  }
  .product-card .product-card__image img,
  .product-card .product-card__image picture {
    padding: 35px 20px 20px;
  }
  .product-card .product-card__content {
    padding: 0 10px 15px;
  }
  .product-card .product-card__status {
    font-size: 12px;
  }
  .product-card .product-card__price {
    font-size: 15px;
  }
  .product-card .product-card__buy {
    margin: 0 10px 0 0;
    font-size: 10px;
  }
  .product-card .product-card__btn {
    font-size: 18px;
  }

  .catalog-products {
    padding: 0 3px;
    background: #fff;
    border-left: 0;
  }
  .catalog-products > div:nth-child(even) {
    border-right: 0;
  }
  .catalog-products .product-card .product-card__image:before {
    padding-top: 100%;
  }
  .catalog-products .product-card .product-card__image img,
  .catalog-products .product-card .product-card__image picture {
    padding: 35px 20px 20px;
  }
  .catalog-products .product-card .product-card__content {
    padding: 0 10px 18px;
  }
  .catalog-products .product-card .product-card__status {
    font-size: 12px;
  }
  .catalog-products .product-card .product-card__price {
    font-size: 14px;
  }
  .catalog-products .product-card .product-card__buy {
    margin: 0 10px 0 0;
    font-size: 10px;
  }
  .catalog-products .product-card .product-card__btn {
    font-size: 18px;
  }
}
.products-small-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
}
.products-small-group > div {
  padding: 15px;
}

.product-card-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.product-card-small__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #dcdce1;
}
.product-card-small__product:hover .product-card-small__image,
.product-card-small__product:active .product-card-small__image {
  opacity: 0.8;
}
.product-card-small__product:hover .product-card-small__title,
.product-card-small__product:active .product-card-small__title {
  color: #f8b439;
}

.product-card-small__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 36%;
  -webkit-box-flex: 0;
  flex: 0 0 36%;
  max-width: 36%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.product-card-small__image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 100%;
}
.product-card-small__image img,
.product-card-small__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.product-card-small__title {
  padding: 0 0 0 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: #460805;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.product-card-small__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
}

.product-card-small__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0.3em;
  font-size: 16px;
}
.product-card-small__price .current {
  margin: 0 0.875em 0 0;
  font-weight: 800;
  font-size: 1em;
  line-height: 1;
  color: #460805;
}
.product-card-small__price .old {
  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;
  font-weight: 500;
  font-size: 0.875em;
  line-height: 1;
  color: #737386;
}
.product-card-small__price .old:before {
  content: "";
  position: absolute;
  display: block;
  width: 110%;
  height: 1px;
  background: #737386;
}

.product-card-small__btn {
  margin: 0 0 0 1em;
  padding: 0.7em 1.1em;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #f8b439;
  border-radius: 5px;
}

@media only screen and (max-width: 1440px) {
  .product-card-small .product-card-small__image {
    -ms-flex: 0 0 34%;
    -webkit-box-flex: 0;
    flex: 0 0 34%;
    max-width: 34%;
  }
  .product-card-small .product-card-small__title {
    padding: 0 0 0 10px;
  }
  .product-card-small .product-card-small__btn {
    padding: 0.3em 0.6em;
    font-size: 16px;
  }
  .product-card-small .product-card-small__btn span {
    display: none;
  }
  .product-card-small .product-card-small__btn:before {
    content: "";
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
}
@media only screen and (max-width: 1299px) {
  .product-card-small .product-card-small__product {
    padding: 20px 15px;
  }
  .product-card-small .product-card-small__image {
    -ms-flex: 0 0 30%;
    -webkit-box-flex: 0;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .product-card-small .product-card-small__title {
    font-size: 13px;
    line-height: 1.5;
  }
  .product-card-small .product-card-small__btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .products-small-group > div {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-card-small .product-card-small__title {
    font-size: 14px;
  }
  .product-card-small .product-card-small__btn {
    padding: 0.6em 0.7em;
    font-size: 14px;
  }
  .product-card-small .product-card-small__btn:before {
    display: none;
  }
  .product-card-small .product-card-small__btn span {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .product-card-small .product-card-small__title {
    padding: 0 0 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products-small-group {
    margin: -15px;
  }
  .products-small-group > div {
    padding: 15px;
  }

  .product-card-small .product-card-small__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 18px;
  }
  .product-card-small .product-card-small__image {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 0 20px;
  }
  .product-card-small .product-card-small__image:before {
    padding-top: 70%;
  }
  .product-card-small .product-card-small__image img,
  .product-card-small .product-card-small__image picture {
    padding: 10px;
  }
  .product-card-small .product-card-small__title {
    padding: 0;
    height: 3em;
    -webkit-line-clamp: 2;
  }
  .product-card-small .product-card-small__footer {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 18px;
  }
  .product-card-small .product-card-small__price {
    margin: 0 0 1.2em;
  }
  .product-card-small .product-card-small__btn {
    margin: 0;
    padding: 0.8em;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .products-small-group {
    margin: -12px -10px;
  }
  .products-small-group > div {
    padding: 12px 10px;
  }

  .product-card-small .product-card-small__product {
    padding: 18px 15px;
  }
  .product-card-small .product-card-small__image {
    margin: 0 0 15px;
  }
  .product-card-small .product-card-small__image:before {
    padding-top: 70%;
  }
  .product-card-small .product-card-small__image img,
  .product-card-small .product-card-small__image picture {
    padding: 5px;
  }
  .product-card-small .product-card-small__footer {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 18px 15px;
  }
  .product-card-small .product-card-small__price {
    font-size: 15px;
  }
  .product-card-small .product-card-small__btn {
    padding: 0.7em;
  }
}
@media only screen and (max-width: 480px) {
  .product-card-small .product-card-small__product,
  .product-card-small .product-card-small__footer {
    padding: 15px 12px;
  }
  .product-card-small .product-card-small__title {
    height: 3.6em;
    -webkit-line-clamp: 3;
    font-size: 13px;
    line-height: 1.3;
  }
  .product-card-small .product-card-small__price {
    font-size: 14px;
  }
  .product-card-small .product-card-small__btn {
    font-size: 13px;
  }
}
@media only screen and (max-width: 400px) {
  .products-small-group {
    margin: -10px -7px;
  }
  .products-small-group > div {
    padding: 10px 7px;
  }

  .product-card-small .product-card-small__title {
    font-size: 12px;
  }
  .product-card-small .product-card-small__btn {
    font-size: 12px;
  }
}
@media only screen and (max-width: 360px) {
  .products-small-group {
    margin: -12px 0;
  }
  .products-small-group > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 12px 0;
  }

  .product-card-small .product-card-small__product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .product-card-small .product-card-small__image {
    margin: 0 12px 0 0;
    -ms-flex: 0 0 35%;
    -webkit-box-flex: 0;
    flex: 0 0 35%;
    max-width: 35%;
  }
  .product-card-small .product-card-small__image img,
  .product-card-small .product-card-small__image picture {
    padding: 0;
  }
  .product-card-small .product-card-small__title {
    height: auto;
    font-size: 13px;
    line-height: 1.35;
  }
  .product-card-small .product-card-small__footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 15px;
  }
  .product-card-small .product-card-small__price {
    margin: 0 10px 5px 0;
    font-size: 15px;
  }
  .product-card-small .product-card-small__btn {
    width: auto;
    font-size: 13px;
  }
}
/* ============== News ============== */
.news-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news-slider .slick-list {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  margin: -15px;
  overflow: hidden;
}
.news-slider .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-slider .slick-list .slick-slide {
  height: auto;
  padding: 15px;
}
.news-slider .slick-controls {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.news-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px -15px;
}
.news-group > div {
  padding: 20px 15px;
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.news-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}
.news-card__image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 60%;
}
.news-card__image img,
.news-card__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.news-card__image:hover img,
.news-card__image:hover picture {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.news-card__content {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 20px;
}

.news-card__title {
  margin: 0 0 0.9em;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #460805;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.news-card__title:hover,
.news-card__title:active {
  color: #f8b439;
}

.news-card__description {
  margin: 0 0 1.2em;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #737386;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.news-card__link {
  margin-top: auto 0 0;
  font-size: 14px;
}

@media only screen and (max-width: 1299px) {
  .news-card .news-card__content {
    padding: 20px 18px;
  }
  .news-card .news-card__title {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .news-group > div {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media only screen and (max-width: 991px) {
  .news-slider .slick-list {
    margin: -15px -10px;
  }
  .news-slider .slick-list .slick-slide {
    padding: 15px 10px;
  }

  .news-card .news-card__content {
    padding: 18px 15px;
  }
  .news-card .news-card__title {
    font-size: 14px;
  }
  .news-card .news-card__description {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }
  .news-card .news-card__link {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .news-group {
    margin: -15px -10px;
  }
  .news-group > div {
    padding: 15px 10px;
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .news-card .news-card__title {
    font-size: 13px;
  }
  .news-card .news-card__description {
    font-size: 12px;
  }
  .news-card .news-card__link {
    font-size: 12px;
  }
  .news-card__image img,
  .news-card__image picture {
    position: static;
    height: auto;
  }
}
@media only screen and (max-width: 400px) {
  .news-card .news-card__image:before {
    padding-top: 45%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
  }

  .news-group > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ============== Reviews ============== */
.review-section {
  display: none;
}

.review-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
}
.review-group > div {
  padding: 15px;
}

.review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  background: #fff;
  border: 1px solid #dcdce1;
  -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.review-card:not(:last-child) {
  margin: 0 0 30px;
}

.review-card__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px 10px 15px;
  border-bottom: 1px solid #dcdce1;
}
.review-card__product:hover .review-card__image,
.review-card__product:active .review-card__image {
  opacity: 0.8;
}
.review-card__product:hover .review-card__title,
.review-card__product:active .review-card__title {
  color: #f8b439;
}

.review-card__image {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 25px 0 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.review-card__image img,
.review-card__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.review-card__title {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: #460805;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.review-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 20px 25px;
}

.review-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px;
}

.review-card__author {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #460805;
}

.review-card__rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0 1em;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}
.review-card__rating:before {
  font-size: 1em;
  margin: 0 0.4em 0 0;
  color: #ffc805;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.review-card__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #737386;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 1440px) {
  .review-card .review-card__image {
    height: 74px;
    width: 74px;
    margin: 0 20px 0 0;
  }
  .review-card .review-card__product {
    padding: 15px;
  }
}
@media only screen and (max-width: 1299px) {
  .review-card .review-card__image {
    height: 70px;
    width: 65px;
  }
  .review-card .review-card__content {
    padding: 18px 18px 22px;
  }
}
@media only screen and (max-width: 991px) {
  .review-section {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .review-card .review-card__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 18px;
  }
  .review-card .review-card__image {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
  }
  .review-card .review-card__image:before {
    content: "";
    position: relative;
    display: block;
    padding-top: 50%;
  }
  .review-card .review-card__image img,
  .review-card .review-card__image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
  }
  .review-card .review-card__title {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    height: 3em;
  }
  .review-card .review-card__author {
    font-size: 15px;
  }
  .review-card .review-card__description {
    -webkit-line-clamp: 5;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .review-group {
    margin: -12px -10px;
  }
  .review-group > div {
    padding: 12px 10px;
  }

  .review-card .review-card__product {
    padding: 18px 15px 15px;
  }
  .review-card .review-card__content {
    padding: 15px 15px 18px;
  }
  .review-card .review-card__image {
    margin: 0 0 15px;
  }
}
@media only screen and (max-width: 480px) {
  .review-card .review-card__head {
    margin: 0 0 12px;
  }
  .review-card .review-card__product {
    padding: 15px 12px 15px;
  }
  .review-card .review-card__image:before {
    padding-top: 56%;
  }
  .review-card .review-card__title {
    height: 3.6em;
    -webkit-line-clamp: 3;
    font-size: 13px;
    line-height: 1.3;
  }
  .review-card .review-card__content {
    padding: 15px 12px 15px;
  }
  .review-card .review-card__description {
    font-size: 14px;
  }
  .review-card .review-card__author {
    font-size: 14px;
  }
  .review-card .review-card__rating {
    font-size: 12px;
  }
}
@media only screen and (max-width: 400px) {
  .review-group {
    margin: -10px -7px;
  }
  .review-group > div {
    padding: 10px 7px;
  }

  .review-card .review-card__head {
    margin: 0 0 8px;
  }
  .review-card .review-card__title {
    font-size: 12px;
  }
  .review-card .review-card__description {
    font-size: 13px;
  }
  .review-card .review-card__author {
    font-size: 13px;
  }
}
@media only screen and (max-width: 360px) {
  .review-group > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .review-card .review-card__product {
    -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;
    padding: 15px;
  }
  .review-card .review-card__image {
    margin: 0 10px 0 0;
    -ms-flex: 0 0 35%;
    -webkit-box-flex: 0;
    flex: 0 0 35%;
    max-width: 35%;
  }
  .review-card .review-card__image:before {
    padding-top: 70%;
  }
  .review-card .review-card__head {
    margin: 0 0 10px;
  }
  .review-card .review-card__title {
    height: auto;
    font-size: 13px;
    line-height: 1.35;
  }
  .review-card .review-card__content {
    padding: 18px 15px 18px;
  }
  .review-card .review-card__author,
  .review-card .review-card__rating {
    font-size: 14px;
  }
  .review-card .review-card__description {
    font-size: 13px;
  }
}
/* ============== Footer ============== */
.footer {
  background: #460805;
}

.footer__inner {
  padding: 60px 0;
}
.footer__inner .row {
  margin: -30px -20px;
}

.footer__col {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 30px 20px;
}

.footer__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  max-width: 100%;
  margin: 0 0 40px;
}
.footer__logo img{background: #fff;}
.footer__logo img,
.footer__logo picture {
  width: 100%;
}

.footer__title {
  margin: 0 0 1.5em;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
}

.footer__box {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer__box:not(:last-child) {
  margin: 0 0 45px;
}

.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact:not(:last-child) {
  margin: 0 0 1em;
}
.footer__contact:before {
  margin: 0 0.7em 0 0;
}
.footer__contact.phone:before {
  font-size: 0.85em;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.footer__contact.email:before {
  content: "";
  font-weight: 300 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.footer__contact:hover {
  padding-left: 5px;
  color: #fff;
}

.footer__contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5em 0 0;
  padding: 0.8em 1.5em;
  font-weight: 600 !important;
  font-size: 14px;
  color: #eb2d3e;
  border-radius: 5px;
}

.footer__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__payment img,
.footer__payment picture {
  height: 20px;
}
.footer__payment img:not(:last-child),
.footer__payment picture:not(:last-child) {
  margin: 0 15px 0 0;
}

.footer__list {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer__list a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}
.footer__list a:not(:last-child) {
  margin: 0 0 0.9em;
}
.footer__list a:hover {
  padding-left: 5px;
  color: #fff;
}

.footer__subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__subscribe-text {
  margin: 0 0 1.2em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.footer__subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
}

.footer__subscribe-input {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  height: 100%;
  padding: 0;
  font-size: 14px;
  color: #fff;
  background-color: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.footer__subscribe-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer__subscribe-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer__subscribe-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer__subscribe-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer__subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__subscribe-btn {
  height: 100%;
  margin: 0 0 0 10px;
  padding: 0 1.2em;
  font-size: 13px;
  font-weight: 500;
  border-radius: 5px;
}

.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__copyright .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  margin: 0;
}

.footer__copyright-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 1299px) {
  .footer .footer__inner {
    padding: 60px 0 40px;
  }
  .footer .footer__title {
    font-size: 16px;
  }
  .footer .footer__list a,
  .footer .footer__subscribe-text,
  .footer .footer__contact {
    font-size: 14px;
  }
  .footer .footer__payment img,
  .footer picture {
    height: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer .footer__col {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .footer .footer__col:nth-child(4) {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0;
  }
  .footer .footer__col:nth-child(4) .footer__box {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer .footer__inner {
    padding: 50px 0 30px;
  }
  .footer .footer__box:not(:last-child) {
    margin: 0 0 35px;
  }
  .footer .footer__logo {
    width: 170px;
    margin: 0 0 35px 0;
  }
  .footer .footer__title {
    margin: 0 0 1.2em;
    font-size: 15px;
  }
  .footer .footer__payment {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer .footer__payment img,
  .footer .footer__payment picture {
    height: 16px;
  }
  .footer .footer__payment img:last-child,
  .footer .footer__payment picture:last-child {
    margin-top: 15px;
  }
  .footer .footer__contact-btn {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer__inner .row {
    margin: -20px;
  }
  .footer .footer__col {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px;
  }
  .footer .footer__col:nth-child(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px 20px;
  }
  .footer .footer__col:nth-child(4) .footer__box {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .footer .footer__payment img:last-child {
    margin-top: 0;
  }
  .footer .footer__subscribe-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
  .footer .footer__subscribe-form .footer__subscribe-input {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    height: 44px;
  }
  .footer .footer__subscribe-form .footer__subscribe-btn {
    height: auto;
    margin: 10px 0 0;
    padding: 1em;
  }
}
@media only screen and (max-width: 575px) {
  .footer .footer__inner {
    padding: 40px 0 30px;
  }
  .footer .footer__logo {
    width: 160px;
    height: 100px;
  }
  .footer .footer__payment img:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer .footer__copyright .row {
    padding: 15px 0;
  }
  .footer .footer__copyright-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 480px) {
  .footer .footer__inner .row {
    margin: -15px;
  }
  .footer .footer__col {
    padding: 15px;
  }
}
@media only screen and (max-width: 400px) {
  .footer .footer__inner .row {
    margin: -20px -15px;
  }
  .footer .footer__col {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 15px;
  }
  .footer .footer__col:nth-child(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 15px;
  }
  .footer .footer__col:nth-child(4) .footer__box {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .footer .footer__payment img:last-child {
    margin-top: 0;
  }
  .footer .footer__subscribe {
    max-width: 70%;
  }
}
@media only screen and (max-width: 359px) {
  .footer .footer__inner {
    padding: 30px 0;
  }
  .footer .footer__list a,
  .footer .footer__subscribe-text,
  .footer .footer__contact {
    font-size: 13px;
  }
  .footer .footer__payment img,
  .footer .footer__payment picture {
    height: 14px;
  }
  .footer .footer__subscribe-input {
    font-size: 13px;
  }
  .footer .footer__subscribe-input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .footer .footer__subscribe-input::-moz-placeholder {
    font-size: 13px;
  }
  .footer .footer__subscribe-input:-ms-input-placeholder {
    font-size: 13px;
  }
  .footer .footer__subscribe-input::-ms-input-placeholder {
    font-size: 13px;
  }
  .footer .footer__subscribe-input::placeholder {
    font-size: 13px;
  }
  .footer .footer__copyright-text {
    font-size: 12px;
  }
}
/* ============== Catalog Page ============== */
.catalog-head {
  padding-bottom: 50px !important;
}
.section.catalog-categories {
  padding-bottom: 50px !important;
}
.catalog-head .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 1em;
}

.catalog-head__title-text {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.catalog-head__count {
  margin: 0.6em 0 0 0;
  font-weight: 700;
  font-size: 18px;
  color: #f8b439;
}

.catalog-head__image {
  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;
  width: 180px;
  max-height: 180px;
  margin: 0 0 0 40px;
}
.catalog-head__image img,
.catalog-head__image picture {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1299px) {
  .catalog-head__image {
    width: 170px;
    max-height: 170px;
  }
}
@media only screen and (max-width: 1199px) {
  .catalog-head {
    padding-bottom: 60px !important;
  }

  .catalog-head__count {
    font-size: 17px;
  }

  .catalog-head__image {
    width: 160px;
    max-height: 160px;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-head {
    padding-bottom: 50px !important;
  }

  .catalog-head__image {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .catalog-head__count {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .catalog-head {
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 480px) {
  .catalog-head {
    padding-bottom: 15px !important;
  }

  .catalog-head__description {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .catalog-head {
    padding-bottom: 10px !important;
  }

  .catalog-head__count {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  .catalog-head__count {
    font-size: 14px;
  }
}
.catalog-categories {
  padding-top: 0 !important;
}
.catalog-categories .row {
  margin: -12px -10px;
}
.catalog-categories .row > div {
  -ms-flex: 0 0 20%;
  -webkit-box-flex: 0;
  flex: 0 0 20%;
  max-width: 20%;
  height: auto;
  padding: 12px 10px;
}

.catalog-categories__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 25px 20px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.catalog-categories__item:hover .catalog-categories__image {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.catalog-categories__item:hover .catalog-categories__title {
  color: #f8b439;
}
.catalog-categories__item:hover .catalog-categories__count {
  opacity: 0.8;
}

.catalog-categories__image {
  position: relative;
  width: 50%;
  margin: 0 auto 25px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.catalog-categories__image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 100%;
}
.catalog-categories__image img,
.catalog-categories__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.catalog-categories__title {
  margin: 0 0 0.5em;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #460805;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.catalog-categories__count {
  font-weight: 500;
  font-size: 15px;
  color: #f8b439;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (max-width: 1440px) {
  .catalog-categories__item {
    padding: 22px 18px;
  }
}
@media only screen and (max-width: 1299px) {
  .catalog-categories .row > div {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .catalog-categories__image {
    margin: 0 auto 22px;
  }
  .catalog-categories__image:before {
    padding-top: 90%;
  }
}
@media only screen and (max-width: 1199px) {
  .catalog-categories__item {
    padding: 20px 18px;
  }

  .catalog-categories__title {
    font-size: 15px;
  }

  .catalog-categories__count {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-categories .row > div {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media only screen and (max-width: 767px) {
  .catalog-categories .row {
    margin: -10px -7px;
  }
  .catalog-categories .row > div {
    padding: 10px 7px;
  }

  .catalog-categories__item {
    padding: 20px 15px 18px;
  }

  .catalog-categories__image {
    margin: 0 auto 20px;
  }
  .catalog-categories__image:before {
    padding-top: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .catalog-categories .row > div {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .catalog-categories__item {
    padding: 20px 15px 18px;
  }

  .catalog-categories__title {
    font-size: 14px;
  }

  .catalog-categories__image {
    margin: 0 auto 20px;
  }
  .catalog-categories__image:before {
    padding-top: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .catalog-categories__image:before {
    padding-top: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .catalog-categories__item {
    padding: 18px 14px 16px;
  }

  .catalog-categories__title {
    font-size: 14px;
  }

  .catalog-categories__count {
    font-size: 13px;
  }
}
@media only screen and (max-width: 360px) {
  .catalog-categories .row {
    margin: -7px -5px;
  }
  .catalog-categories .row > div {
    padding: 7px 5px;
  }

  .catalog-categories__item {
    padding: 16px 12px 14px;
  }

  .catalog-categories__image {
    margin: 0 auto 16px;
  }

  .catalog-categories__title {
    font-size: 13px;
  }

  .catalog-categories__count {
    font-size: 12px;
  }
}
.catalog-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 42px;
  padding: 0 0 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}

.catalog-filter__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 20px 5px;
  font-weight: 700;
  font-size: 17px;
  color: #460805;
}
.catalog-filter__title:before {
  font-size: 0.9em;
  margin: 0 0.5em 0 0;
  color: #f8b439;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.catalog-filter__group {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0;
}
.catalog-filter__group:not(:last-child) {
}
.catalog-filter__group.active .catalog-filter__group-title:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.catalog-filter__group-title {
  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;
  width: 100%;
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #515167;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.catalog-filter__group-title span.ocf-filter-name {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.catalog-filter__group-title:after {
  margin: 0.1em 0 0 0.6em;
  font-size: 1.1em;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-filter__group-title:hover,
.catalog-filter__group-title:active {
  color: #460805;
}
.catalog-filter__group-title:hover:after,
.catalog-filter__group-title:active:after {
  color: #f8b439;
}

.catalog-filter__group-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
  margin: 0 0 25px;
}
.catalog-filter__group-content .ocf-value:hover {
}
.catalog-filter__selected {
  padding: 20px;
}

.catalog-filter__selected-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.catalog-filter__selected-option {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5px;
  padding: 0.6em 0.7em;
  font-size: 14px;
  line-height: 1.2;
  background: #f6f6f6;
  color: #737386;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.catalog-filter__selected-option a {
  margin: 0 0 0 0.8em;
  font-size: 0.9em;
  color: #f8b439;
  opacity: 0.5;
}
.catalog-filter__selected-option a:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-filter__selected-option:hover {
  background: #f1f1f1;
}
.catalog-filter__selected-option:hover a {
  opacity: 1;
}

.catalog-filter__selected-data {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.catalog-filter__selected-data {
  font-weight: 500;
  color: #515167;
}

.catalog-filter__selected-clear {
  margin: 1.2em 0 0;
  padding: 0.6em 1em;
  line-height: 1;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
  text-transform: lowercase;
}

.catalog-filter__selected-find {
  margin: 1.2em 0 0;
  font-size: 15px;
  color: #737386;
}

.catalog-filter__price {
  padding-bottom: 10px;
}

.catalog-filter__price-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 25px;
}
.catalog-filter__price-inputs input {
  height: 36px;
  width: 100px;
  margin: 0 15px 0 0;
  padding: 0 0.6em;
  background: #fdfdfd;
  font-size: 15px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  color: #515167;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.catalog-filter__price-inputs input:hover,
.catalog-filter__price-inputs input:focus {
  background: #f9f9f9;
  border-color: #dcdce1;
}

.catalog-filter__price-btn {
  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-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  height: 36px;
  width: 36px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  border-radius: 5px;
}

div.catalog-filter__price-slider.noUi-target {
  height: 4px;
  background: #d0d0d6;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
div.catalog-filter__price-slider.noUi-target .noUi-base .noUi-connect {
  background: #f8b439;
}
div.catalog-filter__price-slider.noUi-target
  .noUi-base
  .noUi-origin
  .noUi-handle {
  width: 20px;
  height: 20px;
  top: -8px;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #dcdce1;
  cursor: pointer;
}
div.catalog-filter__price-slider.noUi-target
  .noUi-base
  .noUi-origin
  .noUi-handle:before,
div.catalog-filter__price-slider.noUi-target
  .noUi-base
  .noUi-origin
  .noUi-handle:after {
  display: none;
}
div.catalog-filter__price-slider.noUi-target
  .noUi-base
  .noUi-origin
  .noUi-handle.noUi-handle-lower {
  left: 22px;
  right: -2px;
}
div.catalog-filter__price-slider.noUi-target
  .noUi-base
  .noUi-origin
  .noUi-handle.noUi-handle-upper {
  right: -2px;
}

.catalog-filter__select.scroll .catalog-filter__group-content {
}

.catalog-filter__select.scroll .catalog-filter__select-box {
  max-height: 232px;
  scroll-behavior: smooth;
  scrollbar-color: #cdcdcd #eee;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
.catalog-filter__select.scroll .catalog-filter__select-box::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}
.catalog-filter__select.scroll
  .catalog-filter__select-box::-webkit-scrollbar-thumb {
  background-color: #cdcdcd;
}
.catalog-filter__select.scroll
  .catalog-filter__select-box::-webkit-scrollbar-track {
  border-width: 0;
  background-color: #eee;
}

.catalog-filter__checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.catalog-filter__checkbox > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  flex-grow: 1;
}
.catalog-filter__checkbox:hover:before,
.catalog-filter__checkbox:active:before {
  opacity: 1;
}
.catalog-filter__checkbox:not(:last-child) {
  margin-bottom: 15px;
}
.catalog-filter__checkbox:before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% + 16px);
  height: calc(100% + 12px);
  top: -6px;
  left: -8px;
  background: #f3f3f3;
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  z-index: 1;
}
.catalog-filter__checkbox input {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
  cursor: pointer;
}
.catalog-filter__checkbox input:checked ~ .catalog-filter__checkbox-checkmark {
  background: #f8b439;
  border-color: #f8b439;
}
.catalog-filter__checkbox
  input:checked
  ~ .catalog-filter__checkbox-checkmark:before {
  opacity: 1;
}
.catalog-filter__checkbox.actionis .catalog-filter__checkbox-checkmark {
  background: #f8b439;
  border-color: #f8b439;
}
.catalog-filter__checkbox.actionis .catalog-filter__checkbox-checkmark:before {
  opacity: 1;
}
.catalog-filter__checkbox-checkmark {
  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;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  margin: 0 10px 0 0;
  background: #fff;
  border: 1px solid #dcdce1;
  border-radius: 4px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 2;
}
.catalog-filter__checkbox-checkmark:before {
  content: "";
  display: block;
  position: absolute;
  color: #fff;
  font-size: 9px;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.catalog-filter__checkbox-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 15px;
  color: #515167;
  z-index: 2;
}
.catalog-filter__checkbox-label > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 15px;
  color: #515167;
  z-index: 2;
}
.catalog-filter__checkbox-label span.count_prod {
  margin: 0 0 0 0.7em;
  font-weight: 500;
  font-size: 0.85em;
  opacity: 0.8;
}

.catalog-filter__overlay {
  display: none;
}

@media only screen and (max-width: 1440px) {
  .catalog-filter__price-inputs input {
    width: 86px;
  }
}
@media only screen and (max-width: 1299px) {
  .catalog-filter__price-inputs input {
    width: 84px;
    margin: 0 12px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  body.catalog-filter--active {
    overflow: hidden;
  }
  body.catalog-filter--active .catalog-filter {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
  body.catalog-filter--active .catalog-filter__overlay {
    display: block;
  }

  .catalog-filter {
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    width: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0;
    z-index: 9998;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateX(-102%);
    -ms-transform: translateX(-102%);
    transform: translateX(-102%);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    visibility: hidden;
  }
  .catalog-filter::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .catalog-filter::-webkit-scrollbar {
    width: 6px;
  }
  .catalog-filter::-webkit-scrollbar-thumb {
    background-color: #c4c4c4;
    border-radius: 3px;
  }

  .catalog-filter__overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9995;
    display: none;
  }

  .catalog-filter__title {
    padding: 15px;
  }

  .catalog-filter__price-inputs input {
    width: 110px;
  }

  .catalog-filter__group.catalog-filter__selected {
    padding: 20px 30px;
  }
  .catalog-filter__group .catalog-filter__group-title {
    padding: 20px 30px;
  }
  .catalog-filter__group .catalog-filter__group-content {
    padding: 0 30px;
  }

  .catalog-filter__select.scroll .catalog-filter__group-content {
  }
}
@media only screen and (max-width: 767px) {
  .catalog-filter {
    width: 340px;
  }

  .catalog-filter__price-inputs input {
    width: 100px;
  }
}
@media only screen and (max-width: 480px) {
  .catalog-filter {
    width: 320px;
  }

  .catalog-filter__price-inputs input {
    width: 90px;
  }

  .catalog-filter__group.catalog-filter__selected {
    padding: 20px 25px;
  }
  .catalog-filter__group .catalog-filter__group-title {
    padding: 20px 25px;
  }
  .catalog-filter__group .catalog-filter__group-content {
    padding: 0 25px;
  }

  .catalog-filter__select.scroll .catalog-filter__group-content {
    padding: 0 25px 0 17px;
  }
}
@media only screen and (max-width: 400px) {
  .catalog-filter {
    width: 300px;
  }

  .catalog-filter__group.catalog-filter__selected {
    padding: 20px;
  }
  .catalog-filter__group .catalog-filter__group-title {
    padding: 20px;
    font-size: 15px;
  }
  .catalog-filter__group .catalog-filter__group-content {
    padding: 0 20px;
  }

  .catalog-filter__select.scroll .catalog-filter__group-content {
  }
}
@media only screen and (max-width: 360px) {
  .catalog-filter {
    width: 270px;
  }

  .catalog-filter__group.catalog-filter__selected {
    padding: 20px 15px;
  }
  .catalog-filter__group .catalog-filter__group-title {
    padding: 20px 15px;
    font-size: 14px;
  }
  .catalog-filter__group .catalog-filter__group-content {
    padding: 0 15px;
  }

  .catalog-filter__select.scroll .catalog-filter__group-content {
  }

  .catalog-filter__selected-option {
    font-size: 13px;
  }

  .catalog-filter__selected-clear {
    font-size: 13px;
  }

  .catalog-filter__selected-find {
    font-size: 14px;
  }

  .catalog-filter__price-inputs input {
    width: 85px;
    font-size: 14px;
  }

  .catalog-filter__price-btn {
    font-size: 13px;
  }

  .catalog-filter__select.scroll .catalog-filter__select-box {
    max-height: 210px;
  }

  .catalog-filter__checkbox-checkmark {
    width: 16px;
    height: 16px;
  }
  .catalog-filter__checkbox-checkmark:before {
    font-size: 8px;
  }

  .catalog-filter__checkbox-label {
    font-size: 14px;
  }
}
.catalog-sorting {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  padding: 18px 25px;
  margin: 0 0 40px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  z-index: 30;
}
.catalog-sorting > *:not(:last-child) {
  margin: 0 50px 0 0;
}

.catalog-sorting__filter {
  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;
  height: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  max-width: 140px;
  padding: 0 0.5em;
  font-weight: 600;
  font-size: 14px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  display: none;
}
.catalog-sorting__filter:before {
  font-size: 0.85em;
  margin: 0 0.5em 0 0;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.catalog-sorting__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog-sorting__select > span {
  margin: 0 0.8em 0 0;
  font-weight: 400;
  font-size: 16px;
  color: #737386;
}
.catalog-sorting__select.sort_1 .justselect-wrapper {
  width: 240px;
}
.catalog-sorting__select.sort_2 .justselect-wrapper {
  width: 70px;
}
.catalog-sorting__select .justselect-title {
  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;
  padding: 0 12px 0 12px;
  height: 38px;
  line-height: 38px;
  font-size: 15px;
  color: #515167;
  background-image: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fbfbfb;
}
.catalog-sorting__select .justselect-title:hover {
  background: #f9f9f9;
}
.catalog-sorting__select .justselect-title:after {
  margin: 0 0 0 0.8em;
  font-size: 1.1em;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-sorting__select .justselect-list {
  top: 44px;
  font-size: 15px;
  padding: 5px 0;
  background: #fff;
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.2);
}
.catalog-sorting__select .justselect-list li {
  color: #737386;
}
.catalog-sorting__select .justselect-list li:hover {
  background: #f9f9f9;
}
.catalog-sorting__select .justselect-list li.selected {
  background: #f5f5f5;
  color: #515167;
}

.catalog-sorting__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 auto;
}

.catalog-sorting__view-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;
  font-size: 28px;
  color: #b1b2bd;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.catalog-sorting__view-item:not(.active):hover {
  opacity: 0.8;
}
.catalog-sorting__view-item.active {
  color: #f8b439;
}
.catalog-sorting__view-item.view--col {
  margin: 0 20px 0 0;
}
.catalog-sorting__view-item.view--col:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-sorting__view-item.view--row:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

@media only screen and (max-width: 1440px) {
  .catalog-sorting > *:not(:last-child) {
    margin: 0 30px 0 0;
  }
}
@media only screen and (max-width: 1299px) {
  .catalog-sorting {
    padding: 15px 22px;
  }

  .catalog-sorting > *:not(:last-child) {
    margin: 0 30px 0 0;
  }

  .catalog-sorting__select.sort_1 > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0;
  }
  .catalog-sorting__select.sort_1 > span:before {
    margin: 0 0.6em 0 0;
    font-size: 20px;
    color: #f8b439;
    content: "";
    font-weight: 700 !important;
    font-family: "Font Awesome 5 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }

  .catalog-sorting__view-item {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1199px) {
  .catalog-sorting {
    padding: 14px 20px;
  }
  .catalog-sorting > *:not(:last-child) {
    margin: 0 25px 0 0;
  }

  .catalog-sorting__select.sort_1 > span:before {
    margin: 0 0.5em 0 0;
    font-size: 18px;
  }
  .catalog-sorting__select.sort_1 .justselect-wrapper {
    width: 220px;
  }
  .catalog-sorting__select .justselect-title,
  .catalog-sorting__select .justselect-list {
    font-size: 14px;
  }
  .catalog-sorting__select.sort_2 > span {
    display: none;
  }

  .catalog-sorting__checkbox .custom-checkbox__checkmark {
    width: 16px;
    height: 16px;
  }
  .catalog-sorting__checkbox .custom-checkbox__label {
    font-size: 14px;
  }

  .catalog-sorting__view-item {
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-sorting {
    padding: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .catalog-sorting > *:not(:last-child) {
    margin: 0 15px 0 0;
  }

  .catalog-sorting__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .catalog-sorting__select > span {
    display: none !important;
  }
  .catalog-sorting__select.sort_1 > span:before {
    margin: 0 0.8em 0 0;
  }
  .catalog-sorting__select .justselect-title {
    height: 44px;
    padding: 0 12px;
    background: #fff !important;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    border: 0;
  }
  .catalog-sorting__select .justselect-list {
    top: 50px;
  }

  .catalog-sorting__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    background: #fff !important;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
  }
  .catalog-sorting__checkbox .custom-checkbox__checkmark {
    width: 16px;
    height: 16px;
  }
  .catalog-sorting__checkbox .custom-checkbox__checkmark:before {
    font-size: 8px;
  }

  .catalog-sorting__view {
    background: #fff;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    margin: 0;
    height: 44px;
    padding: 0 18px;
  }

  .catalog-sorting__view-item {
    font-size: 22px;
  }
  .catalog-sorting__view-item.view--col {
    margin: 0 20px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .catalog-sorting {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .catalog-sorting__select.sort_2 {
    display: none;
  }

  .catalog-sorting__checkbox {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .catalog-sorting {
    margin: 0 0 30px;
  }

  .catalog-sorting__select.sort_1 .justselect-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
  }
  .catalog-sorting__select .justselect-title {
    width: 100%;
    font-size: 0;
  }
  .catalog-sorting__select .justselect-title:before {
    margin: 0 0.2em 0 0;
    font-size: 18px;
    color: #515167;
    content: "";
    font-weight: 700 !important;
    font-family: "Font Awesome 5 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  .catalog-sorting__select .justselect-title:after {
    font-weight: 700 !important;
    font-size: 16px;
    color: #515167;
  }
  .catalog-sorting__select .justselect-list {
    width: 200px;
    top: 56px;
    left: auto;
    right: auto;
  }
}
@media only screen and (max-width: 400px) {
  .catalog-sorting__select.sort_1 .justselect-wrapper {
    width: 80px;
  }
}
@media only screen and (max-width: 360px) {
  .catalog-sorting__filter {
    height: 38px;
    font-size: 13px;
  }

  .catalog-sorting__select.sort_1 .justselect-wrapper {
    width: auto;
  }
  .catalog-sorting__select .justselect-list {
    font-size: 13px;
  }
  .catalog-sorting__select .justselect-title {
    height: 38px;
  }
  .catalog-sorting__select .justselect-title:before {
    font-size: 16px !important;
  }

  .catalog-sorting__view {
    height: 38px;
    padding: 0 12px;
    border-radius: 5px;
  }

  .catalog-sorting__view-item {
    font-size: 20px;
  }
  .catalog-sorting__view-item.view--col {
    margin: 0 15px 0 0;
  }
}
.catalog-footer {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0 0;
}

.catalog-footer__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 40px;
  padding: 0.8em 2em;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
}
.catalog-footer__more:before {
  margin: 0 0.7em 0 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-footer__more:hover:before {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.catalog-footer__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog-footer__pagination li {
  margin: 0 0.4em;
}
.catalog-footer__pagination li:not(.active):hover span,
.catalog-footer__pagination li:not(.active):hover a {
  opacity: 0.7;
}
.catalog-footer__pagination li.active span,
.catalog-footer__pagination li.active a {
  font-weight: 800;
  color: #f8b439;
  border-color: #f8b439;
  opacity: 1;
}
.catalog-footer__pagination li.to-prev span:before,
.catalog-footer__pagination li.to-prev a:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-footer__pagination li.to-next span:before,
.catalog-footer__pagination li.to-next a:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-footer__pagination li.to-start span:before,
.catalog-footer__pagination li.to-start a:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-footer__pagination li.to-end span:before,
.catalog-footer__pagination li.to-end a:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.catalog-footer__pagination li span,
.catalog-footer__pagination li a {
  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: 2.2em;
  height: 2.2em;
  font-weight: 700;
  font-size: 16px;
  color: #737386;
  border: 2px solid #737386;
  border-radius: 5px;
  opacity: 0.4;
}
.catalog-footer__pagination li span:before,
.catalog-footer__pagination li a:before {
  font-size: 1.2em;
}

@media only screen and (max-width: 1299px) {
  .catalog-footer__more {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .catalog-footer__more {
    font-size: 14px;
  }

  .catalog-footer__pagination li span,
  .catalog-footer__pagination li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .catalog-footer__more {
    margin: 0 0 30px;
    font-size: 13px;
    border-width: 1px;
  }

  .catalog-footer__pagination li {
    margin: 0 0.5em;
  }
  .catalog-footer__pagination li span,
  .catalog-footer__pagination li a {
    width: auto;
    height: auto;
    border: 0;
    font-size: 17px;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 575px) {
  .catalog-footer__pagination li span,
  .catalog-footer__pagination li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .catalog-footer {
    margin: 30px 0 0;
  }

  .catalog-footer__pagination li {
    margin: 0 0.4em;
  }
  .catalog-footer__pagination li span,
  .catalog-footer__pagination li a {
    font-size: 15px;
  }
}
/* ============== Contacts Page ============== */
/* =========================== Contacts Section =========================== */
.contacts .row > div:first-child {
  padding-right: 40px;
}
.contacts .section__title {
  margin: 0 0 28px 0;
}

.contacts__data {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contacts__data-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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 16px;
}
.contacts__data-item:not(:last-child) {
  margin: 0 0 25px 0;
}
.contacts__data-item h5 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1.25em;
  font-size: 1em;
  line-height: 1.62;
  font-weight: 700;
  color: #460805;
}
.contacts__data-item h5:before {
  position: absolute;
  left: 0;
  font-size: 0.8em;
  color: #f8b439;
}
.contacts__data-item.address h5:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.contacts__data-item.phone h5:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.contacts__data-item.email h5:before {
  margin-top: 1px;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.contacts__data-item.time h5:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.contacts__data-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0.4em 0;
  padding: 0 0 0 1.25em;
  font-weight: 500;
  font-size: 0.95em;
  line-height: 1.5;
  color: #515167;
}
.contacts__data-item a:hover,
.contacts__data-item a:active {
  color: #f8b439;
}
.contacts__data-item div {
  margin: 0 0 0.3em 0;
  padding: 0 0 0 1.25em;
  font-weight: 500;
  font-size: 0.95em;
  line-height: 1.5;
  color: #515167;
}
.contacts__data-item div span:first-child {
  margin-right: 7px;
}

.contacts__form {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contacts__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.contacts__form-group:not(:last-child) {
  margin: 0 0 15px 0;
}
.contacts__form-group > input,
.contacts__form-group textarea {
  position: relative;
  padding: 1.1em 1.2em;
  width: 100%;
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 15px;
  border: none;
  background: #fff;
  color: #460805;
  border: 2px solid #f1f1f1;
  -webkit-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  transition: 0.3s !important;
  border-radius: 5px;
  resize: none;
}
.contacts__form-group > input::-webkit-input-placeholder,
.contacts__form-group textarea::-webkit-input-placeholder {
  font-size: 15px;
  color: #999;
  font-weight: 400;
}
.contacts__form-group > input::-moz-placeholder,
.contacts__form-group textarea::-moz-placeholder {
  font-size: 15px;
  color: #999;
  font-weight: 400;
}
.contacts__form-group > input:-ms-input-placeholder,
.contacts__form-group textarea:-ms-input-placeholder {
  font-size: 15px;
  color: #999;
  font-weight: 400;
}
.contacts__form-group > input::-ms-input-placeholder,
.contacts__form-group textarea::-ms-input-placeholder {
  font-size: 15px;
  color: #999;
  font-weight: 400;
}
.contacts__form-group > input::placeholder,
.contacts__form-group textarea::placeholder {
  font-size: 15px;
  color: #999;
  font-weight: 400;
}
.contacts__form-group > input:focus,
.contacts__form-group textarea:focus {
  border-color: #e4e4e4;
}
.contacts__form-group > input:first-child {
  margin: 0 7px 0 0;
}
.contacts__form-group > input:last-child {
  margin: 0 0 0 7px;
}

.contacts-form__checkbox {
  margin: 10px 0 0 2px;
}

.contacts-form__button {
  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;
  margin: 20px 0 0;
  padding: 1em 2.5em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  border-radius: 5px;
}

.contacts-map {
  width: 100%;
  height: 500px;
}

@media only screen and (max-width: 1199px) {
  .contacts-map {
    height: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .contacts .row > div:first-child {
    padding-right: 15px;
    margin: 0 0 80px;
  }

  .contacts__data {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
  }
  .contacts__data > div {
    padding: 15px;
    margin: 0 !important;
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .contacts .row > div:first-child {
    margin: 0 0 70px;
  }

  .contacts__data {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
  }
  .contacts__data > div {
    padding: 15px;
    margin: 0 !important;
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .contacts__form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts__form-group:not(:last-child) {
    margin: 0 0 12px 0;
  }
  .contacts__form-group > input:first-child {
    margin: 0 0 12px 0 !important;
  }
  .contacts__form-group > input:last-child {
    margin: 0 !important;
  }
  .contacts__form-group > input,
  .contacts__form-group textarea {
    padding: 1em;
  }
}
@media only screen and (max-width: 400px) {
  .contacts .row > div:first-child {
    margin: 0 0 60px;
  }

  .contacts__data {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -12px -15px;
  }
  .contacts__data > div {
    padding: 12px 15px;
  }

  .contacts__data-item {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  .contacts .row > div:first-child {
    margin: 0 0 50px;
  }

  .contacts__data-item {
    font-size: 14px;
  }

  .contacts__form-group > input,
  .contacts__form-group textarea {
    font-size: 14px;
  }
  .contacts__form-group > input::-webkit-input-placeholder,
  .contacts__form-group textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
  .contacts__form-group > input::-moz-placeholder,
  .contacts__form-group textarea::-moz-placeholder {
    font-size: 14px;
  }
  .contacts__form-group > input:-ms-input-placeholder,
  .contacts__form-group textarea:-ms-input-placeholder {
    font-size: 14px;
  }
  .contacts__form-group > input::-ms-input-placeholder,
  .contacts__form-group textarea::-ms-input-placeholder {
    font-size: 14px;
  }
  .contacts__form-group > input::placeholder,
  .contacts__form-group textarea::placeholder {
    font-size: 14px;
  }

  .contacts-form__checkbox .custom-checkbox__checkmark {
    margin: 2px 10px 0 0;
  }
  .contacts-form__checkbox .custom-checkbox__label {
    font-size: 14px;
  }

  .contacts-form__button {
    font-size: 13px;
  }
}
/* =========================== /.Contacts Page =========================== */
/* ============== Cabinet Page ============== */
/* =========================== Cabinet =========================== */
.cabinet__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 0 1.2em;
  font-size: 24px;
}
.cabinet__inner {
}
.cabinet__title span {
  margin: 0 0 0 0.5em;
  line-height: normal;
  font-size: 0.85em;
  color: #f8b439;
}
.cabinet__nav {
  position: relative;
  width: 300px;
  padding: 0 15px;
}
.cabinet__content {
  position: relative;
  width: calc(100% - 300px);
  padding: 0 15px 0 30px;
}

.cabinet-form {
  min-height: 100%;
}
.cabinet-form .row {
  margin: -15px;
}
.cabinet-form .row > div {
  padding: 15px;
}
.cabinet-form.counter .cabinet-form__header:before {
  counter-increment: form_counter;
  content: "0" counter(form_counter) ".";
  margin: 0 0.7em 0 0;
  font-weight: 800;
  color: #f8b439;
}
.cabinet-form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 0 15px rgba(0, 0, 0, 0.07);
}
.cabinet-form__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 3.52em;
  padding: 0 1.17em;
  font-size: 17px;
  border-bottom: 1px solid #e6e6e6;
}
.cabinet-form__header h5 {
  font-weight: 700;
  color: #460805;
}
.cabinet-form__header img,
.cabinet-form__header picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  height: 65%;
}
.cabinet-form__content {
  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-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 30px 20px;
}
.cabinet-form .form__row .form__group {
  max-width: 50%;
}
.cabinet-form .form__submit {
  margin: 2em auto 0 0;
  padding: 1em 2em;
  font-size: 15px;
}
.cabinet-form .form__submit.disable {
  background: #c0c0c0;
  pointer-events: none;
}

.cabinet-ordering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 40px;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.cabinet-ordering__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 20px;
  border-bottom: 1px solid #e6e6e6;
}
.cabinet-ordering__sum span:first-child {
  margin: 0 0 0.5em;
  font-size: 16px;
  color: #a5a5a5;
}
.cabinet-ordering__sum span.sum {
  font-weight: 800;
  font-size: 22px;
  color: #460805;
}
.cabinet-ordering__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 20px;
}
.cabinet-ordering__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  position: relative;
  align-items: center;
}
.cabinet-ordering__info-item .cart-item__remove {
  right: -3px;
  top: -5px;
  position: relative;
}
.cabinet-ordering__info-item:not(:last-child) {
  margin: 0 0 0.6em;
}
.cabinet-ordering__info-item span {
  width: 50%;
}
.cabinet-ordering__info-item span:first-child {
  color: #a5a5a5;
  padding: 0 5px 0 0;
}
.cabinet-ordering__info-item span:last-child {
  padding: 0 0 5px 0;
  text-align: right;
  font-weight: 700;
}
.cabinet-ordering__info-item span:last-child.stock {
  color: #f8b439;
}
.cabinet-ordering__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.85em 20px;
  font-weight: 700;
  font-size: 15px;
}
.cabinet-ordering__btn:before {
  font-size: 1.1em;
  color: #fff;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.cabinet-promocode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
}
.cabinet-promocode h6 {
  margin: 0 0 1em 0;
  font-weight: 600;
  font-size: 16px;
  color: #515167;
}
.cabinet-promocode .form__group {
  margin: 0 0 12px;
}
.cabinet-promocode .form__submit {
  opacity: 0.7;
  padding: 0.9em;
  font-size: 15px;
}
.cabinet-promocode .form__submit:hover,
.cabinet-promocode .form__submit:active {
  opacity: 1;
}

.cabinet-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.cabinet-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25em;
}
.cabinet-menu__header h5 {
  font-weight: 700;
  font-size: 17px;
  color: #460805;
}
.cabinet-menu__header a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #515167;
  display: none;
}
.cabinet-menu__header a i {
  margin: 0 0.3em 0 0;
  font-size: 1.1em;
}
.cabinet-menu__header a:hover,
.cabinet-menu__header a:active {
  color: #f8b439;
}
.cabinet-menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cabinet-menu__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.2em 1.33em;
  font-weight: 500;
  font-size: 15px;
  border-top: 1px solid #e6e6e6;
  color: #515167;
}
.cabinet-menu__content a:hover,
.cabinet-menu__content a:active {
  color: #f8b439;
}
.cabinet-menu__content a.active {
  background: #fff4f4;
  color: #f8b439;
}
.cabinet-menu__content a i {
  margin: 0 0.7em 0 0;
  font-size: 1.2em;
}

@media only screen and (max-width: 1440px) {
  .cabinet__title {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1299px) {
  .cabinet__title {
    font-size: 22px;
  }
  .cabinet__nav {
    width: 280px;
  }
  .cabinet__content {
    width: calc(100% - 280px);
    padding: 0 15px 0 20px;
  }

  .cabinet-ordering__sum {
    padding: 22px 18px;
  }
  .cabinet-ordering__sum span:first-child {
    font-size: 15px;
  }
  .cabinet-ordering__sum span.sum {
    font-size: 20px;
  }
  .cabinet-ordering__info {
    padding: 22px 18px;
  }

  .cabinet-promocode {
    padding: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .cabinet__title {
    font-size: 21px;
  }

  .cabinet-form__header {
    padding: 0 1em;
    font-size: 16px;
  }
  .cabinet-form__content {
    padding: 25px 15px;
  }
  .cabinet-form .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .cabinet-form .form__row:not(:last-child) {
    margin: 0 0 30px;
  }
  .cabinet-form .form__row .form__group {
    padding: 0;
    max-width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .cabinet.whish-list-section .cabinet__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cabinet.whish-list-section .cabinet__nav {
    width: 100%;
    margin: 0 0 60px;
  }
  .cabinet.whish-list-section .cabinet__content {
    width: 100%;
    padding: 0 15px;
  }
  .cabinet.whish-list-section .cabinet-menu__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .cabinet.whish-list-section .cabinet-menu__header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cabinet.whish-list-section .cabinet-menu__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cabinet.whish-list-section .cabinet-menu__content .cabinet-menu__exit {
    display: none;
  }
  .cabinet.whish-list-section .cabinet-menu__content a {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cabinet.whish-list-section .cabinet-menu__content a:not(:last-child) {
    border-right: 1px solid #e6e6e6;
  }

  .cabinet .cabinet__nav {
    width: 270px;
  }
  .cabinet .cabinet__content {
    width: calc(100% - 270px);
  }

  .cabinet-ordering {
    margin: 0 0 30px 0;
  }
  .cabinet-ordering__sum {
    padding: 20px 15px;
  }
  .cabinet-ordering__info {
    padding: 20px 15px;
  }

  .cabinet-promocode {
    padding: 15px;
  }
  .simplecheckout-step > .cabinet__nav .cabinet__content {
    padding: 0 !important;
    margin-bottom: 0px !important;
  }
}
@media only screen and (max-width: 767px) {
  .cabinet__title {
    font-size: 20px;
  }

  .cabinet .cabinet__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cabinet .cabinet__nav {
    width: 100%;
    margin: 0 0 60px;
  }
  .cabinet .cabinet__content {
    width: 100%;
    padding: 0 15px;
  }

  .cabinet.cart .cabinet__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cabinet.cart .cabinet__nav {
    width: 100%;
    margin: 60px 0 0;
  }
  .cabinet.cart .cabinet__content {
    width: 100%;
    padding: 0 15px;
  }

  .cabinet-menu__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .cabinet-menu__header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cabinet-menu__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cabinet-menu__content .cabinet-menu__exit {
    display: none;
  }
  .cabinet-menu__content a {
    -ms-flex: 0 0 50% !important;
    -webkit-box-flex: 0;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .cabinet-menu__content a:not(:last-child) {
    border-right: 1px solid #e6e6e6;
  }

  .cabinet-ordering {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 575px) {
  .cabinet-menu__header {
    padding: 1.2em;
  }
  .cabinet-menu__header a {
    font-size: 15px;
  }
  .cabinet-menu__content a {
    padding: 1.2em;
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .cabinet-menu__header h5 {
    font-size: 16px;
  }
  .cabinet-menu__header a {
    font-size: 14px;
  }
  .cabinet-menu__content a {
    -ms-flex: 0 0 100% !important;
    -webkit-box-flex: 0;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .cabinet-ordering {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 400px) {
  .cabinet__title {
    font-size: 19px;
  }

  .cabinet-menu__header {
    padding: 1em;
  }
  .cabinet-menu__header h5 {
    font-size: 16px;
  }

  .cabinet-form__header {
    font-size: 15px;
  }
  .cabinet-form .form__submit {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .cabinet__title {
    font-size: 18px;
  }

  .cabinet-form .form__submit {
    font-size: 13px;
  }
  .cabinet-form .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cabinet-form .form__row:not(:last-child) {
    margin: 0 0 25px;
  }

  .cabinet-menu__header h5 {
    font-size: 15px;
  }

  .cabinet-ordering__sum {
    padding: 18px 15px;
  }
  .cabinet-ordering__sum span:first-child {
    font-size: 14px;
  }
  .cabinet-ordering__sum span.sum {
    font-size: 19px;
  }
  .cabinet-ordering__info {
    padding: 18px 15px;
  }
  .cabinet-ordering__info-item {
    font-size: 14px;
  }
  .cabinet-ordering__btn {
    padding: 0.95em 20px;
    font-size: 14px;
  }

  .cabinet-promocode h6 {
    font-size: 15px;
  }
  .cabinet-promocode .form__submit {
    font-size: 14px;
  }
}
/* =========================== /.Cabinet =========================== */
/* =========================== Shopping Cart =========================== */
.cart-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.cart-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 15px;
  background: #fff;
}
.cart-item:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
.cart-item__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px 0 0;
}
.cart-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart-item__image {
  position: relative;
  width: 90px;
  margin: 0 30px 0 0;
}
.cart-item__image:before {
  content: "";
  display: block;
  position: relative;
  padding-top: 100%;
}
.cart-item__image img,
.cart-item__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.cart-item__image:hover,
.cart-item__image:active {
  opacity: 0.7;
}
.cart-item__title {
  width: 280px;
  line-height: 1.35;
  font-weight: 600;
  font-size: 16px;
  color: #460805;
}
.cart-item__title:hover,
.cart-item__title:active {
  color: #f8b439;
}
.cart-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 180px;
  font-size: 16px;
  padding: 0 20px;
}
.cart-item__price > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cart-item__price-current {
  font-weight: 800;
  font-size: 1.1em;
  line-height: 1;
  color: #460805;
}
.cart-item__price-old {
  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;
  margin: 0 0 0.5em 0;
  font-weight: 500;
  font-size: 0.9em;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #a5a5a5;
}
.cart-item__price-old:before {
  content: "";
  position: absolute;
  display: block;
  width: 110%;
  height: 1px;
  background: #a5a5a5;
}
.cart-item__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 20px;
}
.cart-item__counter > div {
  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: 40px;
  height: 40px;
  background: #f5f5f5;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #460805;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.cart-item__counter > div.decrement {
  border-radius: 5px 0 0 5px;
}
.cart-item__counter > div.increment {
  border-radius: 0 5px 5px 0;
}
.cart-item__counter > div:hover,
.cart-item__counter > div:active {
  background: #eee;
  color: #f8b439;
}
.cart-item__counter > div span {
  position: relative;
  top: -2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cart-item__counter > input {
  margin: 0;
  padding: 0;
  width: 50px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #460805;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: auto;
}
.cart-item__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 180px;
  padding: 0 20px;
  font-size: 16px;
}
.cart-item__total > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cart-item__total h6 {
  margin: 0 0 0.5em;
  font-weight: 400;
  font-size: 0.95em;
  color: #a5a5a5;
}
.cart-item__total-price {
  font-weight: 800;
  font-size: 1.1em;
  line-height: 1;
  color: #f8b439;
}
.cart-item__remove {
  position: absolute;
  right: 40px;
  font-size: 20px;
  color: #460805;
  opacity: 0.4;
}
.cart-item__remove:before {
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.cart-item__remove:hover,
.cart-item__remove:active {
  opacity: 1;
}

@media only screen and (max-width: 1440px) {
  .cart-item__product {
    padding: 0 15px 0 0;
  }
  .cart-item__image {
    width: 85px;
  }
  .cart-item__title {
    width: 260px;
  }
  .cart-item__counter {
    padding: 0 15px;
  }
  .cart-item__price,
  .cart-item__total {
    width: 144px;
    padding: 0 15px;
  }
  .cart-item__remove {
    right: 25px;
  }
}
@media only screen and (max-width: 1299px) {
  .cart-item {
    padding: 25px 15px;
  }
  .cart-item__product {
    padding: 0 15px 0 0;
  }
  .cart-item__image {
    width: 80px;
    margin: 0 20px 0 0;
  }
  .cart-item__title {
    width: 230px;
  }
  .cart-item__counter input {
    font-size: 15px;
  }
  .cart-item__price,
  .cart-item__total {
    width: 130px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .cart-content {
    background: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: unset;
  }

  .cart-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    background: #fff;
    border-radius: 7px;
    -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.07);
    box-shadow: 1px 0 15px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }
  .cart-item:not(:last-child) {
    border: 0;
    margin: 0 0 30px 0;
  }
  .cart-item__product {
    width: 100%;
    padding: 20px 15px;
    border-bottom: 1px solid #e6e6e6;
  }
  .cart-item__image {
    width: 75px;
  }
  .cart-item__title {
    width: 280px;
  }
  .cart-item__actions {
    width: 100%;
    padding: 18px;
  }
  .cart-item__counter {
    padding: 0 15px 0 0;
  }
  .cart-item__price {
    width: auto;
    font-size: 15px;
  }
  .cart-item__price > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cart-item__price-old {
    margin: 0 0 0 1.2em;
    line-height: normal;
    font-size: 0.97em;
  }
  .cart-item__price-current {
    line-height: normal;
  }
  .cart-item__total {
    width: auto;
    margin: 0 0 0 auto;
    padding: 0 0 0 15px;
    font-size: 15px;
  }
  .cart-item__total > div {
    -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;
  }
  .cart-item__total h6 {
    margin: 0 0.5em 0 0;
    font-size: 1em;
  }
  .cart-item__total-price {
    line-height: normal;
  }
  .cart-item__remove {
    top: 20px;
    right: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .cart-item__product {
    padding: 22px 15px 20px;
  }
  .cart-item__image {
    width: 70px;
  }
  .cart-item__title {
    width: auto;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 10px 0 0;
  }
  .cart-item__actions {
    padding: 20px 18px;
  }
  .cart-item__counter > div {
    width: 36px;
    height: 40px;
  }
  .cart-item__counter > input {
    width: 44px;
    height: 40px;
  }
  .cart-item__price > div {
    -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;
  }
  .cart-item__price-old {
    margin: 0 0 0.2em 0;
  }
  .cart-item__total > div {
    -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;
  }
  .cart-item__total h6 {
    margin: 0 0 0.2em 0;
    font-size: 1em;
  }
  .cart-item__remove {
    top: 12px;
    right: 15px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-item__title {
    max-width: 60%;
  }
}
@media only screen and (max-width: 480px) {
  .cart-item__title {
    max-width: unset;
  }
}
@media only screen and (max-width: 440px) {
  .cart-item:not(:last-child) {
    margin: 0 0 25px 0;
  }
  .cart-item__product {
    padding: 24px 15px 15px;
  }
  .cart-item__actions {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 18px;
  }
  .cart-item__remove {
    top: 10px;
    right: 15px;
  }
  .cart-item__title {
    font-size: 15px;
  }
  .cart-item__price {
    width: auto;
    padding: 0 0 0 10px;
  }
  .cart-item__price > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cart-item__price-old {
    margin: 0 0 0 1.2em;
  }
  .cart-item__total {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 15px 0 0 0;
    padding: 15px 0 0 0;
    width: 100%;
    border-top: 1px solid #e6e6e6;
  }
  .cart-item__total > div {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .cart-item__total h6 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #460805;
  }
}
@media only screen and (max-width: 400px) {
  .cart-item__image {
    width: 65px;
  }
  .cart-item__title {
    font-size: 14px;
  }
  .cart-item__counter > div {
    width: 36px;
    height: 36px;
  }
  .cart-item__counter > input {
    width: 44px;
    height: 36px;
  }
  .cart-item__price {
    font-size: 14px;
  }
  .cart-item__price > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cart-item__price-old {
    margin: 0 0 0.2em 0;
  }
  .cart-item__total {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .cart-item:not(:last-child) {
    margin: 0 0 20px 0;
  }
  .cart-item__product {
    padding: 24px 12px 12px;
  }
  .cart-item__image {
    margin: 0 15px 0;
    width: 60px;
  }
  .cart-item__title {
    font-size: 13px;
  }
  .cart-item__counter > div {
    width: 36px;
    height: 36px;
  }
  .cart-item__counter > input {
    width: 44px;
    height: 36px;
  }
  .cart-item__price {
    font-size: 14px;
  }
  .cart-item__price > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cart-item__price-old {
    margin: 0 0 0.2em 0;
  }
  .cart-item__total {
    font-size: 14px;
  }
  .cart-item__remove {
    right: 12px;
    font-size: 16px;
  }
  .cart-item__actions {
    padding: 12px 15px;
  }
  .cart-item__counter > div {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .cart-item__counter > input {
    width: 44px;
    height: 34px;
    font-size: 14px;
  }
  .cart-item__price {
    font-size: 13px;
  }
  .cart-item__total {
    margin: 12px 0 0 0;
    padding: 12px 0 0 0;
    font-size: 13px;
  }
}
/* =========================== /.Shopping Cart =========================== */
/* =========================== Whish List =========================== */
.whish-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.whish-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
}
.whish-list__item {
  width: 258px;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

@media only screen and (max-width: 1440px) {
  .whish-list__item {
    width: 223px;
  }
}
@media only screen and (max-width: 1299px) {
  .whish-list__item {
    width: 264px;
  }
}
@media only screen and (max-width: 1199px) {
  .whish-list__item {
    width: 214px;
  }
}
@media only screen and (max-width: 992px) {
  .whish-list__item {
    width: 229px;
  }
}
@media only screen and (max-width: 767px) {
  .whish-list__item {
    width: 254px;
  }
}
@media only screen and (max-width: 576px) {
  .whish-list__item {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* =========================== /.Whish List =========================== */
/* =========================== Compare =========================== */
.compare .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.compare-setting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0 30px;
}
.compare-setting > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.7em 1em;
  font-weight: 700;
  font-size: 15px;
  border-radius: 5px;
}
.compare-setting > a:not(:last-child) {
  margin: 0 15px 0 0;
}
.compare-setting__add:after {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin: 0 0 0 0.7em;
}
.compare-setting__clean:after {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin: 0 0 0 0.7em;
}

.compare-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-touch-action: auto !important;
  touch-action: auto !important;
}
.compare-table .mCustomScrollBox {
  position: relative;
  margin-top: 25px;
  border-top: 1px solid #dcdce1;
  border-left: 1px solid #dcdce1;
}
.compare-table .mCustomScrollBox:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #dcdce1;
  z-index: 10;
}
.compare-table .mCSB_scrollTools {
  position: absolute;
  top: 0 !important;
  bottom: unset;
}
.compare-table .mCSB_scrollTools .mCSB_draggerContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.compare-table .mCSB_scrollTools .mCSB_draggerContainer:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}
.compare-table
  .mCSB_scrollTools
  .mCSB_draggerContainer
  .mCSB_dragger.mCSB_dragger_onDrag
  .mCSB_dragger_bar {
  background: #d21425;
}
.compare-table
  .mCSB_scrollTools
  .mCSB_draggerContainer
  .mCSB_dragger
  .mCSB_dragger_bar {
  height: 5px;
  background: #f8b439;
  border-radius: 5px;
}
.compare-table
  .mCSB_scrollTools
  .mCSB_draggerContainer
  .mCSB_dragger
  .mCSB_draggerRail {
  display: none !important;
}
.compare-table table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  table-layout: fixed;
  width: 100%;
  background: #fff;
}
.compare-table table.compare-5 tr td {
  width: 269.8px !important;
}
.compare-table table.compare-4 tr td {
  width: 337px !important;
}
.compare-table table.compare-3 tr td {
  width: 449px !important;
}
.compare-table table.compare-2 tr td {
  width: 674px !important;
}
.compare-table table.compare-1 {
  width: 100%;
}
.compare-table table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.compare-table table tr:first-child td {
  padding: 0 !important;
}
.compare-table table tr:nth-child(even) {
  background: #f8f8f8;
}
.compare-table table tr:nth-child(even) td {
  min-width: 100%;
  padding: 1em;
  text-align: center;
  font-weight: 600;
  color: #460805;
}
.compare-table table tr td {
  display: inline-block;
  min-height: 100%;
  padding: 1.25em;
  font-size: 15px;
  line-height: 1.35;
  color: #515167;
  border-right: 1px solid #dcdce1;
  border-bottom: 1px solid #dcdce1;
  width: 269.8px;
}
.compare-table table tr td .product-card {
  margin: 30px auto;
  width: 200px;
  height: auto;
}
.compare-table table tr td .product-card__image img,
.compare-table table tr td .product-card__image picture {
  padding: 0 20px 20px;
}
.compare-table table tr td .product-card__title {
  text-align: center;
  margin: 0 0 0.8em;
}
.compare-table table tr td .product-card__price {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.compare-table table tr td .product-card__price .current {
  font-weight: 800;
}
.compare-table table tr td .product-card__buy {
  padding: 1em 0.75em;
  color: #fff;
}
.compare-table table tr td .product-card__remove {
  top: -5px !important;
  right: 0 !important;
  border-radius: 100% !important;
}

@media only screen and (max-width: 1440px) {
  .compare-table table tr td {
    width: 302px !important;
  }
  .compare-table table.compare-5 tr td {
    width: 302px !important;
  }
  .compare-table table.compare-4 tr td {
    width: 302px !important;
  }
  .compare-table table.compare-3 tr td {
    width: 403px !important;
  }
  .compare-table table.compare-2 tr td {
    width: 604px !important;
  }
}
@media only screen and (max-width: 1299px) {
  .compare-table table tr td {
    width: 277px !important;
  }
  .compare-table table.compare-5 tr td {
    width: 277px !important;
  }
  .compare-table table.compare-4 tr td {
    width: 277px !important;
  }
  .compare-table table.compare-3 tr td {
    width: 370px !important;
  }
  .compare-table table.compare-2 tr td {
    width: 554px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .compare-table table tr:nth-child(even) td {
    text-align: left;
  }
  .compare-table table tr td {
    width: 309px !important;
  }
  .compare-table table.compare-5 tr td {
    width: 309px !important;
  }
  .compare-table table.compare-4 tr td {
    width: 309px !important;
  }
  .compare-table table.compare-3 tr td {
    width: 309px !important;
  }
  .compare-table table.compare-2 tr td {
    width: 464px !important;
  }
}
@media only screen and (max-width: 992px) {
  .compare-table table tr td {
    width: 230px !important;
  }
  .compare-table table tr td .product-card__image:before {
    padding-top: 75%;
  }
  .compare-table table.compare-5 tr td {
    width: 229px !important;
  }
  .compare-table table.compare-4 tr td {
    width: 229px !important;
  }
  .compare-table table.compare-3 tr td {
    width: 229px !important;
  }
  .compare-table table.compare-2 tr td {
    width: 50% !important;
  }
}
@media only screen and (max-width: 767px) {
  .compare-table table tr td .product-card {
    margin: 20px auto;
  }
}
@media only screen and (max-width: 480px) {
  .compare-setting a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 400px) {
  .compare-table table tr td {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .compare-setting a {
    padding: 0.7em 0.8em;
    font-size: 13px;
  }

  .compare-table table tr td {
    font-size: 13px;
  }
}
/* =========================== /.Compare =========================== */
/* =========================== Ordering =========================== */
.ordering-form__payment {
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-ms-flex-wrap: wrap;*/
  /*    flex-wrap: wrap;*/
  /*margin: -10px;*/
}
.ordering-form__payment > select {
  display: none;
}
.ordering-form__payment > div {
  /*-ms-flex: 0 0 20%;*/
  /*-webkit-box-flex: 0;*/
  /*flex: 0 0 20%;*/
  /*max-width: 20%;*/
  /*padding: 10px;*/
}
.ordering-form__payment-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-align: center;*/
  /*    -ms-flex-align: center;*/
  /*        align-items: center;*/
  /*padding: 20px 15px;*/
  /*background: #f5f5f5;*/
  /*border-radius: 5px;*/
  display: block;
}
.ordering-form__payment-item.active {
  background: #ef5c69;
}
.ordering-form__payment-item i {
  display: none !important;
}
.ordering-form__payment-item.active i,
.ordering-form__payment-item.active span {
  color: #fff;
}
.ordering-form__payment-item i {
  font-size: 40px;
  color: #c0c0c0;
}
.ordering-form__payment-item span {
  /*margin: 0.8em 0 0 0;*/
  /*padding: 0 0.2em;*/
  font-size: 14px;
  line-height: 1.2;
  color: #828282;
  font-weight: 700;
  /*text-align: center;*/
}
.ordering-form__payment-item span.description {
  font-weight: 500;
  font-size: 13px;
  margin-top: 6px;
}
.ordering-form__payment-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 35px !important;
}
.ordering-form__payment label:before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #f3f3f3;
  margin-right: 14px !important;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid transparent;
}
.ordering-form__payment label:after {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ed1c24;
  left: 5px;
  top: 20px;
  display: none;
  content: "";
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.ordering-form__payment input:checked + label:before {
  /*background-image: url(../img/icons/check_red.svg);*/
  /*background-size: 11px;*/
  /*background-repeat: no-repeat;*/
  /*background-position: center;*/
  border-color: #828282;
}
.ordering-form__payment input:checked + label:after {
  display: block;
}

@media only screen and (max-width: 1299px) {
  .ordering-form__payment {
    margin: -8px;
  }
  .ordering-form__payment > div {
    /*padding: 8px;*/
  }
  .ordering-form__payment-item {
    padding: 18px 12px;
  }
  .ordering-form__payment-item span {
    padding: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .ordering-form__payment > div {
    /*-ms-flex: 0 0 25%;*/
    /*-webkit-box-flex: 0;*/
    /*flex: 0 0 25%;*/
    /*max-width: 25%;*/
  }
}
@media only screen and (max-width: 992px) {
  .ordering-form__payment > div {
    /*-ms-flex: 0 0 50%;*/
    /*-webkit-box-flex: 0;*/
    /*flex: 0 0 50%;*/
    /*max-width: 50%;*/
  }
  .ordering-form__payment-item span {
    /*margin: 1em 0 0 0;*/
    font-size: 14px;
  }
}
@media only screen and (max-width: 400px) {
  .ordering-form__payment-item i {
    font-size: 34px;
  }
  .ordering-form__payment-item span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 360px) {
  .ordering-form__payment-item {
    padding: 15px 10px;
  }
}
/* =========================== /.Ordering =========================== */
/* =========================== Password =========================== */
.password__form .row {
  margin: 0;
}
.password__form .row > div {
  padding: 0;
}
.password__form .form__submit {
  margin: 0;
  max-width: calc(33.33333% - 30px);
}

@media only screen and (max-width: 1299px) {
  .password__form .form__submit {
    max-width: calc(33.33333% - 20px);
  }
}
@media only screen and (max-width: 992px) {
  .password__form .form__submit {
    max-width: none;
  }
}
/* =========================== /.Password =========================== */
/* =========================== Personal Data =========================== */
.personal-data:not(:last-child) {
  margin: 0 0 30px;
}
.personal-data .row {
  margin: -15px;
}
.personal-data .row > div {
  padding: 15px;
}
.personal-data__form .form__submit {
  margin: 0;
}
.personal-data .delivery-data {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  min-height: 100%;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 0 15px rgba(0, 0, 0, 0.05);
}
.personal-data .delivery-data__header {
  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;
  margin: 0 0 1.2em 0;
  font-size: 16px;
}
.personal-data .delivery-data__header h6 {
  font-weight: 700;
  color: #515167;
}
.personal-data .delivery-data__header a {
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  color: #f8b439;
}
.personal-data .delivery-data__header a:hover,
.personal-data .delivery-data__header a:active {
  opacity: 0.5;
}
.personal-data .delivery-data__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.personal-data .delivery-data__content span {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: #91919a;
}
.personal-data .delivery-data__content span:not(:last-child) {
  margin: 0 0 0.7em 0;
}
.personal-data .delivery-data__content span.phone {
  font-weight: 600;
  color: #f8b439;
}

@media only screen and (max-width: 1199px) {
  .personal-data .delivery-data__header a {
    font-size: 0;
    opacity: 0.5;
  }
  .personal-data .delivery-data__header a:before {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #460805;
    font-size: 18px;
    content: "";
    font-weight: 400 !important;
    font-family: "Font Awesome 5 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  .personal-data .delivery-data__header a:hover,
  .personal-data .delivery-data__header a:active {
    opacity: 1;
  }
}
@media only screen and (max-width: 400px) {
  .personal-data .row {
    margin: -10px;
  }
  .personal-data .row > div {
    padding: 10px;
  }
  .personal-data .delivery-data {
    padding: 18px;
  }
  .personal-data .delivery-data__header {
    font-size: 15px;
  }
  .personal-data .delivery-data__header a:before {
    font-size: 16px;
  }
  .personal-data .delivery-data__content span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .personal-data .delivery-data {
    padding: 15px;
  }
  .personal-data .delivery-data__header {
    font-size: 14px;
  }
  .personal-data .delivery-data__header a:before {
    font-size: 16px;
  }
  .personal-data .delivery-data__content {
    padding: 0 10px 0 0;
  }
  .personal-data .delivery-data__content span {
    font-size: 13px;
  }
}
/* =========================== /.Personal Data =========================== */
.cabinet__information .row {
  margin: -12px;
}
.cabinet__information .row > div {
  padding: 12px;
}
.cabinet__information .cabinet-data {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 0 15px rgba(0, 0, 0, 0.05);
}
.cabinet__information .cabinet-data__header {
  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;
  padding: 18px;
  font-size: 15px;
  border-bottom: 1px solid #e6e6e6;
}
.cabinet__information .cabinet-data__header h6 {
  font-weight: 700;
  color: #515167;
}
.cabinet__information .cabinet-data__header a {
  text-decoration: underline;
  font-size: 0.9em;
  font-weight: 500;
  color: #f8b439;
}
.cabinet__information .cabinet-data__header a:hover,
.cabinet__information .cabinet-data__header a:active {
  opacity: 0.5;
}
.cabinet__information .cabinet-data__header span {
  margin: 0 0 0 10px;
  font-weight: 500;
  color: #515167;
}
.cabinet__information .cabinet-data__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 18px;
}
.cabinet__information .cabinet-data__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}
.cabinet__information .cabinet-data__item:not(:last-child) {
  margin: 0 0 0.8em 0;
}
.cabinet__information .cabinet-data__item span {
  width: 50%;
}
.cabinet__information .cabinet-data__item span:first-child {
  padding: 0 5px 0 0;
  color: #91919a;
}
.cabinet__information .cabinet-data__item span:last-child {
  padding: 0 0 0 5px;
  text-align: right;
  font-weight: 500;
  color: #515167;
}
.cabinet__information .cabinet-data__item.item-price span:last-child {
  font-weight: 700;
  color: #460805;
}
.cabinet__information .cabinet-data__item.item-orange span:last-child {
  color: #f2994a;
}
.cabinet__information .cabinet-data__item.item-green span:last-child {
  color: #27ae60;
}
.cabinet__information .cabinet-data__item.item-red span:last-child {
  color: #f8b439;
}
.cabinet__information .cabinet-data__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1em 0 0 0;
  padding: 0.9em 1.2em;
  font-weight: 700;
  font-size: 15px;
  color: #f8b439;
  background: #f5f5f5;
  border-radius: 5px;
}
.cabinet__information .cabinet-data__detail:hover,
.cabinet__information .cabinet-data__detail:active {
  background: #f8b439;
  color: #fff;
}

.exchange {
  margin: 60px 0 0 0;
}
.exchange .form__submit {
  margin: 0 !important;
}

@media only screen and (max-width: 1299px) {
  .cabinet__information .row > div {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .cabinet__information .row > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 360px) {
  .cabinet__information .cabinet-data__header {
    padding: 15px;
    font-size: 14px;
  }
  .cabinet__information .cabinet-data__content {
    padding: 18px 15px;
  }
  .cabinet__information .cabinet-data__item {
    font-size: 14px;
  }
  .cabinet__information .cabinet-data__detail {
    font-size: 14px;
  }
}
exchange .login-section {
  padding: 0;
}
exchange .login-section .row {
  margin: 0;
}

.login {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 80px auto;
  padding: 60px;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
}

.login__body {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 420px;
}

.login__title {
  margin: 0 0 0.4em 0;
  font-weight: 700;
  font-size: 26px;
  color: #460805;
  line-height: 1.3;
}

.login__sign-in {
  margin: 0 0 40px 0;
  font-size: 16px;
  color: #737386;
}
.login__sign-in a {
  margin: 0 0 0 0.2em;
  text-decoration: underline;
  color: #f8b439;
}
.login__sign-in a:hover,
.login__sign-in a:active {
  opacity: 0.5;
}

.login__submit {
  padding: 1.2em;
  font-size: 15px;
}

.login__ways {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 50px 0 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #737386;
}
.login__ways span {
  margin: 0 1.5em 0 0;
}
.login__ways a {
  display: block;
}
.login__ways a:not(:last-child) {
  margin: 0 10px 0 0;
}
.login__ways a img,
.login__ways a picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
}
.login__ways a:hover,
.login__ways a:active {
  opacity: 0.6;
}

.login__footer {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.login__footer label .custom-checkbox__checkmark {
  border-color: #999;
}
.login__footer label .custom-checkbox__label {
  position: relative;
  top: 1px;
  font-weight: 400;
  color: #828282;
}
.login__footer a {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #f8b439;
}
.login__footer a:hover,
.login__footer a:active {
  opacity: 0.5;
}

@media only screen and (max-width: 767px) {
  .login {
    padding: 40px 30px;
    margin: 70px auto;
  }

  .login__body {
    width: 380px;
  }

  .login__title {
    font-size: 24px;
  }

  .login__sign-in {
    margin: 0 0 30px 0;
    font-size: 15px;
  }

  .login__submit {
    font-size: 14px;
  }

  .login__ways {
    margin: 40px 0 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .login {
    width: 96%;
    margin: 60px auto;
  }

  .login__body {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .login {
    width: 100%;
    margin: 50px auto;
    padding: 30px 20px;
  }
  .login .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .login .form__row .form__group {
    margin: 0 0 26px;
    padding: 0;
    width: 100%;
  }
  .login .form__row .form__group:not(:last-child) {
    margin: 0 0 26px;
  }

  .login__title {
    font-size: 22px;
  }

  .login__sign-in {
    font-size: 14px;
  }

  .login__ways {
    font-size: 14px;
  }
  .login__ways a img,
  .login__ways a picture {
    width: 28px;
    height: 28px;
  }

  .login__footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .login__footer label .custom-checkbox__label {
    font-size: 14px;
  }
  .login__footer a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .login {
    padding: 25px 15px;
  }
  .login .form__row .form__group {
    margin: 0 0 24px;
  }
  .login .form__row .form__group:not(:last-child) {
    margin: 0 0 24px;
  }

  .login__title {
    font-size: 20px;
  }

  .login__ways {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .login__ways span {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 15px;
    text-align: center;
  }

  .login__footer label .custom-checkbox__checkmark {
    width: 15px;
    height: 15px;
  }
  .login__footer label .custom-checkbox__label {
    font-size: 13px;
  }
  .login__footer a {
    font-size: 13px;
  }

  .login__submit {
    padding: 1em;
  }
}
/* =========================== /.Registration & Sign-In Page =========================== */
/* =========================== Empty Section =========================== */
.empty-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin: 0 auto;
}
.empty__icon {
  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: 2.5em;
  height: 2.5em;
  margin: 0 0 1em 0;
  font-size: 40px;
  background: #fff;
  -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.empty__icon:before {
  color: #f8b439;
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.empty__icon.cart:before {
  content: "";
}
.empty__icon.whishlist:before {
  content: "";
}
.empty__icon.compare:before {
  content: "";
}
.empty__icon.clock:before {
  content: "";
}
.empty__icon.file:before {
  content: "";
}
.empty__title {
  text-align: center;
  margin: 0 0 0.5em 0;
}
.empty__text {
  text-align: center;
  font-size: 17px;
  color: #515167;
}
.empty__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0 0 0;
}
.empty__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px;
  padding: 0.85em 2.5em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1440px) {
  .empty__icon {
    font-size: 35px;
  }
  .empty__title {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1299px) {
  .empty__icon {
    font-size: 32px;
  }
  .empty__title {
    font-size: 22px;
  }
  .empty__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .empty__icon {
    font-size: 28px;
  }
  .empty__title {
    font-size: 20px;
  }
  .empty__footer {
    margin: 35px 0 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .empty__icon {
    font-size: 26px;
  }
  .empty__title {
    font-size: 19px;
  }
  .empty__text {
    font-size: 15px;
  }
  .empty__btn {
    font-size: 15px;
  }
  .empty__footer {
    margin: 30px 0 0 0;
  }
}
@media only screen and (max-width: 400px) {
  .empty__icon {
    font-size: 24px;
  }
  .empty__title {
    font-size: 18px;
  }
  .empty__text {
    max-width: 80%;
    font-size: 15px;
  }
  .empty__btn {
    margin: 0 7px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 400px) {
  .empty__icon {
    font-size: 22px;
  }
  .empty__title {
    font-size: 16px;
  }
  .empty__text {
    font-size: 14px;
  }
  .empty__btn {
    font-size: 13px;
  }
  .empty__footer {
    margin: 25px 0 0 0;
  }
}
/* =========================== /.Empty Section =========================== */
/* ============== Product Page ============== */
.product-section {
  padding: 0 0 42px !important;
}

.product--not-available .product-info__available {
  color: #f8b439;
}
.product--not-available .product-info__available.stablue {
  color: #0062cc;
}
.product--not-available .product-info__available:before {
  background: url(../img/icons/cancle.svg) 0 0/100% 100%;
}
.product--not-available .product-info__available.stablue:before {
  background: url(../img/icons/cancle.svg) 0 0/100% 100%;
}
.product--not-available .product-info__available.stablue:before {
  background: url(../img/icons/stablue.svg) 0 0/100% 100%;
}
.product--not-available .product-info__price .current {
  opacity: 0.4;
}
.product--not-available .product-info__action-btn {
  pointer-events: none;
  opacity: 0.4;
}
.product--stock .product__price .current {
  color: #f8b439;
}
.product__title {
  margin: 0 0 1.2em 0;
  line-height: 1.3;
  font-weight: 700;
  font-size: 24px;
  color: #460805;
}
.product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
}

.product-gallery {
  flex-direction: column;

  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 48px 0 30px;
  z-index: 100;
}
.product-gallery__detail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
  width: calc(100% - 90px);
}
.product-gallery__detail a {
  position: relative;
  display: block;
  width: 100%;
}
.product-gallery__detail a:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 100%;
}
.product-gallery__detail a img,
.product-gallery__detail a picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.productstickerH span {
  padding: 0.5em 1em;
  font-weight: 500;
  font-size: 13px;
  border-radius: 1em;
  line-height: 1;
  color: #fff;
  background: #f8b439;
  display: block;
  clear: both;
  width: auto;
  float: right;
  margin-bottom: 5px;
}

.productstickerH {
  position: absolute;
  top: 10px;
  right: 10px;

  z-index: 5;
}

.product-gallery__detail-label.stock {
  background: #f8b439;
}
.product-gallery__detail-label.new {
  background: #3aba5e;
}
.product-gallery__detail-label.bestseller,
.product-gallery__detail-label.rated {
  background: #ff8c05;
}
.product-gallery__group {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px 0 12px;
  width: auto;
  max-height: 400px;
  scroll-behavior: smooth;
  scrollbar-color: #e5e5e5 #fff;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
.product-gallery__group::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 3px;
  height: 3px;
}
.product-gallery__group::-webkit-scrollbar-thumb {
  background-color: #e5e5e5;
}
.product-gallery__group::-webkit-scrollbar-track {
  border-width: 0;
  background-color: #fff;
}
.product-gallery__item {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid #e6e6e6 !important;
  border-radius: 3px;
}
.product-gallery__item:not(:last-child) {
  margin: 0 0 7px;
}
.product-gallery__item a {
  position: relative;
  display: block;
  opacity: 0.6;
}
.product-gallery__item a:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 100%;
}
.product-gallery__item a img,
.product-gallery__item a picture {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 3px;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.product-gallery__item.active {
  border-color: #f8b439 !important;
}
.product-gallery__item.active a {
  opacity: 1;
}

.product-info {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 20px 30px 15px;
}
.product-info__group {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px 0 20px;
}
.product-info__group:first-child {
  padding-top: 0;
}
.product-info__group:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.product-info__group--price {
  padding: 40px 0 !important;
}
.product-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.product-info__rating {
  position: relative;
  margin: 0 0px 0 auto;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #000;
  z-index: 2;
}
.product-info__rating:after {
  font-size: 0.9em;
  margin: 0 0.4em 0 0;
  color: #ffc805;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  display: none;
}
.product-info__rating i.fas {
  color: #ffc805;
}
.product-info__rating i.far {
  color: #999;
}
.product-info__available {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: #26b965;
}
.product-info__available:before {
  content: "";
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  margin: 0 0.5em 0 0;
  background: url(../img/icons/check.svg) 0 0/100% 100%;
}
.product-info__code {
  padding: 0.6em 0.7em;
  background: #f1f1f1;
  color: #737386;
  font-size: 14px;
  border-radius: 3px;
  margin: 0 0px 0 auto;
}
.product-info__code span {
  margin: 0 0 0 0.1em;
  font-weight: 600;
  color: #515167;
}
.product-info__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
}
.product-info__price .current {
  margin: 0 0.875em 0 0;
  font-weight: 800;
  font-size: 1em;
  line-height: 1;
  color: #460805;
}
.product-info__price .old {
  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;
  font-weight: 400;
  font-size: 0.7em;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #acacad;
}
.product-info__price .old:before {
  content: "";
  position: absolute;
  display: block;
  width: 110%;
  height: 1px;
  background: #acacad;
}
.product-info__vat-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #999;
}
.product-info__vat-price span:first-child {
  margin: 0 0.5em 0 0;
  font-size: 0.9em;
}
.product-info__discount {
  margin: 0.8em 0 0 0;
  font-weight: 500;
  font-size: 14px;
  color: #f8b439;
  text-decoration: underline;
  text-underline-position: under;
  cursor: pointer;
}
.product-info__discount:hover,
.product-info__discount:active {
  opacity: 0.5;
}
.product-info__action-btn {
  padding: 0.7em 2em;
  font-weight: 700;
  font-size: 15px;
  border-radius: 5px;
  text-align: center;
}
.product-info__action-btn.btn-red {
  border: 2px solid #f8b439;
}
.product-info__action-btn.btn-red:hover,
.product-info__action-btn.btn-red:active {
  border-color: #f8b439;
}
.product-info__action-btn.btn-red-out:hover,
.product-info__action-btn.btn-red-out:active {
  background: #f8b439;
  border-color: #f8b439;
}
.product-info__action-btn:not(:last-child) {
  margin: 0 15px 0 0;
}
.product-info__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.9em 1.2em;
  font-weight: 500;
  font-size: 14px;
  background: #f4f4f4;
  color: #999;
  border-radius: 4px;
}
.product-info__btn.active {
  color: #666771;
}
.product-info__btn:not(:last-child) {
  margin: 0 30px 0 0;
}
.product-info__btn:before {
  margin: 0 0.5em 0 0;
  font-size: 1.2em;
}
.product-info__btn.whishlist:before {
  content: "";
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.product-info__btn.compare:before {
  content: "";
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.product-info__btn.share:before {
  content: "";
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.product-info__btn:hover {
  background: #f1f1f1;
  color: #666;
}
.product-info__parameters {
  margin: 2.5em 0 0 0;
  font-weight: 500;
  font-size: 15px;
  color: #515167;
}
.product-info__parameters:before {
  margin: 0 0.5em 0 0;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.product-info__parameters:after {
  margin: 0 0 0 0.5em;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.product-info__parameters:hover,
.product-info__parameters:active {
  color: #f8b439;
}
.product-info__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 5px 0;
}
.product-info__options-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 15px;
}
.product-info__options-item:not(:last-child) {
  margin: 0 0 0.8em;
}
.product-info__options-item:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 4px;
  border-bottom: 1px dotted #adadad;
}
.product-info__options-item span {
  position: relative;
  max-width: 50%;
  background: #fff;
}
.product-info__options-item span:first-child {
  padding: 0 7px 0 0;
  color: #999;
}
.product-info__options-item span:last-child {
  text-align: right;
  padding: 0 0 0 7px;
  font-weight: 500;
  color: #515167;
}

.product-tabs .tabs__nav {
  margin: 0 0 20px;
  border: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}
.product-tabs .tabs__nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 1em 2em;
  font-size: 16px;
  color: #515167;
}
.product-tabs .tabs__nav-item.active {
  color: #fff;
}
.product-tabs .tabs__nav-item:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
.product-tabs .tabs__nav-item:not(.active):hover,
.product-tabs .tabs__nav-item:not(.active):active {
  background: #f9f9f9;
}
.product-tabs .tabs__tab {
  position: relative;
  padding: 40px 25px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}

.product-description .ph4 {
  color: #460805;
  font-weight: 600;
  margin: 0 0 1em;
  font-size: 18px;
  line-height: 1.4;
  color: #515167;
}
.product-description p,
.product-description ul,
.product-description ol {
  font-size: 16px;
}

.product-parameters:not(:last-child) {
  margin: 0 0 40px;
}
.product-parameters .ph5 {
  margin: 0 0 1em 0;
  font-weight: 600;
  font-size: 17px;
  color: #460805;
}
.product-parameters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.product-parameters ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  border-radius: 5px;
}
.product-parameters ul li:nth-child(odd) {
  padding: 0.8em 1em;
  background: #f6f6f6;
}
.product-parameters ul li:nth-child(even) {
  padding: 1em;
}
.product-parameters ul li span {
  width: 50%;
}
.product-parameters ul li span:first-child {
  padding: 0 7px 0 0;
  line-height: 1.2;
  color: #737386;
}
.product-parameters ul li span:last-child {
  padding: 0 0 0 7px;
  line-height: 1.4;
  color: #515167;
}

.product-videos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
}
.product-videos__col {
  position: relative;
  width: 100%;
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px;
}
.product-videos__item {
  position: relative;
}
.product-videos__item:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 56%;
}
.product-videos__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.product-comments--reviews .product-comment {
  padding: 25px 20px 20px;
  background: #f6f6f6;
  border-radius: 5px;
}
.product-comments--reviews .product-comment:not(:last-child) {
  margin: 0 0 25px;
}
.product-comments--reviews .form {
  padding-top: 30px;
}
.product-comments--question .product-comment {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e6e6e6;
}
.product-comments--question .product-question:not(:last-child) {
  margin: 0 0 40px;
}
.product-comments--question .product-question__item {
  margin: 20px 0 0 40px;
  padding: 20px;
  background: #f6f6f6;
  border-radius: 5px;
  border-bottom: 0;
}
.product-comments--question .product-question__item h6 {
  color: #f8b439 !important;
}
.product-comments--question .form {
  border-top: 0 !important;
}
.product-comments .product-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product-comments .product-comment .ph6 {
  font-weight: 600;
  font-size: 16px;
  color: #460805;
}
.product-comments .product-comment p {
  font-size: 15px;
  line-height: 1.6;
  color: #737386;
}
.product-comments .product-comment p:not(:last-child) {
  margin: 0 0 10px;
}
.product-comments .product-comment__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 10px;
}
.product-comments .product-comment__head .ph6 span {
  margin: 0 0 0 0.4em;
  font-weight: 400;
  font-size: 0.9em;
  color: #737386;
}
.product-comments .product-comment__head > span {
  position: relative;
  margin: 0 0 0 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #000;
  z-index: 2;
}
.product-comments .product-comment__head > span:before {
  font-size: 0.9em;
  margin: 0 0.4em 0 0;
  color: #ffc805;
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.product-comments .product-comment__info {
  margin: 20px 0 0 0;
}
.product-comments .product-comment__info.dignity .ph6:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: #4caf50;
}
.product-comments .product-comment__info.limitations .ph6:before {
  content: "";
  font-weight: 700 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: #af4c4c;
}
.product-comments .product-comment__info .ph6 {
  margin: 0 0 0.3em 0;
  opacity: 0.9;
}
.product-comments .product-comment__info .ph6:before {
  font-size: 0.9em;
  margin: 0 0.4em 0 0;
}
.product-comments .product-comment__info p {
  font-size: 15px;
  line-height: 1.5;
  color: #737386;
}
.product-comments .product-comment__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 15px -7px -7px;
}
.product-comments .product-comment__photo a {
  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;
  width: 60px;
  margin: 7px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.product-comments .product-comment__photo a:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 100%;
  height: 100%;
  width: 100%;
  background: #f8b439;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 2;
  opacity: 0;
}
.product-comments .product-comment__photo a:after {
  position: absolute;
  font-size: 20px;
  color: #fff;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 3;
  opacity: 0;
  content: "";
  font-weight: 400 !important;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.product-comments .product-comment__photo a img,
.product-comments .product-comment__photo a picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}
.product-comments .product-comment__photo a:hover:before {
  opacity: 0.7;
}
.product-comments .product-comment__photo a:hover:after {
  opacity: 1;
}
.product-comments .form {
  margin: 50px 0 0 0;
  border-top: 1px solid #e6e6e6;
}
.product-comments .form .ph5 {
  margin: 0 0 1.2em 0;
  font-weight: 600;
  font-size: 18px;
  color: #460805;
}
.product-comments .form__group:not(:last-child) {
  margin: 0 0 20px;
}
.product-comments .form__group input,
.product-comments .form__group textarea {
  padding: 0.7em 1em;
}
.product-comments .form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px 0 0 0;
}
.product-comments .form__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 30px 0 auto;
}
.product-comments .form__rating > input {
  display: none;
}
.product-comments .form__rating > span {
  margin: 0px 1em 0.2em 0;
  font-weight: 500;
  font-size: 16px;
  color: #515167;
}
.product-comments .form__rating .rateit {
  display: -moz-inline-box;
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  cursor: pointer;
}
.product-comments .form__rating .rateit .rateit-range {
  position: relative;
  display: -moz-inline-box;
  display: inline-block;
  height: 16px;
  outline: none;
}
.product-comments .form__rating .rateit .rateit-range * {
  display: block;
}
.product-comments .form__rating .rateit .rateit-hover,
.product-comments .form__rating .rateit .rateit-selected {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
}
.product-comments .form__rating .rateit .rateit-hover,
.product-comments .form__rating .rateit .rateit-selected {
  color: #ffc805;
}
.product-comments .form__rating .rateit-font {
  font-size: 18px;
  line-height: 1em;
}
.product-comments .form__rating .rateit-font .rateit-range {
  background: none;
  height: auto;
}
.product-comments .form__rating .rateit-font .rateit-empty {
  color: #e1e1e1;
}
.product-comments .form__rating .rateit-font .rateit-range > div,
.product-comments .form__rating .rateit-font .rateit-range > span {
  background: none;
  overflow: hidden;
  cursor: pointer;
}
.product-comments .form__rating .rateit-reset {
  display: none;
}
.product-comments .form__submit {
  padding: 0.9em 3.5em;
  font-size: 15px;
}
.descr {
  max-height: 400px;
  overflow-y: auto;
}
.descr.more {
  max-height: 100%;
}

.block_fv.prs > div {
  border-bottom: 1px solid #e6e6e6;
}
.irs-with-grid {
  height: 60px;
}
.irs-line {
  height: 4px;
  top: 0;
  background: #d0d0d6;
}
.irs-line-left {
  height: 12px;
  background-position: 0 -30px;
}
.irs-line-mid {
  height: 12px;
  background-position: 0 0;
}
.irs-line-right {
  height: 12px;
  background-position: 100% -30px;
}
.irs-bar {
  height: 4px;
  top: 0;
  background: #f8b439;
}
.irs-bar-edge {
  top: 25px;
  height: 12px;
  width: 9px;
  background-position: 0 -90px;
}
.irs-shadow {
  height: 3px;
  top: 34px;
  background: #000;
  opacity: 0.25;
}
.lt-ie9 .irs-shadow {
  filter: alpha(opacity=25);
}
.irs-slider {
  background: #fff;
  width: 20px;
  height: 20px;
  top: -8px;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #dcdce1;
  cursor: pointer;
}
.irs-slider.state_hover,
.irs-slider:hover {
  background-position: 0 -150px;
}
.irs-min,
.irs-max {
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  top: 0;
  padding: 1px 3px;
  background: #e1e4e9;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.irs-from,
.irs-to,
.irs-single {
  color: #fff;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background: #ed5565;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.irs-from:after,
.irs-to:after,
.irs-single:after {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565;
}
.irs-grid-pol {
  background: #e1e4e9;
}
.irs-grid-text {
  color: #999;
}
.irs-disabled {
}
#mobil_mini .fa.fa-filter {
  display: none !important;
}
.catalog-filter--active #mobil_mini .fa.fa-times {
  display: block;
}
#mobil_mini .fa.fa-times {
  cursor: pointer;
  box-shadow: 0 0 0.5px rgb(0 0 0 / 17%);
  top: 2%;
  left: auto;
  right: 2%;
  border-radius: 0;
  position: fixed;
  text-align: center;
  z-index: 9996;

  font-size: 24px;
  display: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #666;
  color: #fff;
}

.simplecheckout-step > .simplecheckout-three-column:nth-child(3),
.simplecheckout-step > .simplecheckout-three-column:nth-child(4) {
  border-radius: 7px;
  -webkit-box-shadow: 1px 0 15px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 0 15px rgba(0, 0, 0, 0.07);
  background: #fff;
}
.simplecheckout-step
  > .simplecheckout-three-column:nth-child(3)
  .cabinet-form__box,
.simplecheckout-step
  > .simplecheckout-three-column:nth-child(4)
  .cabinet-form__box {
  border-radius: 7px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#simplecheckout_customer .cabinet-form__content {
  padding: 30px 0px 20px 0px;
}

#simplecheckout_customer .form__group:not(:last-child) {
  margin: 0 0 20px;
}
#simplecheckout_shipping .cabinet-form__content {
  padding: 30px 15px 0px 15px;
}
#simplecheckout_comment {
  padding: 0px 15px 30px 15px;
}
#simplecheckout_shipping .form__group {
  margin: 0 0 20px;
}
#simplecheckout_customer .row-customer_email,
#simplecheckout_customer .row-customer_telephone {
  width: 100%;
}
.cart-content.simplecheckout-cart {
  border-width: 0;
}
#simplecheckout_customer .form__group label {
  display: block;
}
#shipping_address_address_1 {
  min-height: 100px;
}
.simplecheckout-right-column.cabinet-form {
  width: calc(100% - 325px);
  margin-top: 30px;
  margin-bottom: 40px;
  max-width: none;
}
.simple-content .buttons {
  background: none;
}
#simplecheckout_cart .form__submit {
  margin: 10px auto 0 0;
}
#simplecheckout_payment [type="radio"]:checked,
#simplecheckout_payment [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.ordering-form__payment > div [type="radio"]:checked + label {
  background: #ef5c69;
}
.ordering-form__payment > div [type="radio"]:checked + label i,
.ordering-form__payment > div [type="radio"]:checked + label span {
  /*color: #fff;*/
}

.simplecheckout-step .simplecheckout-three-column:nth-child(2) {
  width: auto;
}
.simplecheckout-step .simplecheckout-three-column {
  width: 37%;
}
#delivery_type {
  border-radius: 5px;
  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;
  padding: 0.7em 0.9em;
  height: auto;
  font-weight: 400 !important;
  font-size: 15px;
  line-height: 1.4;
  background: #f4f4f4;
  background-image: none;
  border: 2px solid #f4f4f4;
  color: #b0b0b0;
  background-image: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media only screen and (max-width: 1299px) {
  .simplecheckout-step .simplecheckout-three-column {
    width: 33%;
  }
}

@media only screen and (max-width: 992px) {
  .simplecheckout-step > .cabinet__nav .cabinet__content .cart-item__title {
    padding: 0 5px !important;
  }
  .simplecheckout-right-column.cabinet-form {
    width: 100%;
  }
  .simplecheckout-step .simplecheckout-three-column {
    width: 100% !important;
    margin: 0px 0 20px 0;
    max-width: 100%;
  }
  .cabinet .cabinet__nav {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
}
.white-saas-generator {
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(189, 180, 180, 0.2);
  border-radius: 6px;
  width: 600px;
  position: fixed;
  z-index: 2147483646;
  display: block;
  top: 100px;
  left: 50%;
  transform: translate(-50%);
}
.white-saas-generator .white-saas-generator-container {
  display: flex;
  align-items: center;
}
.white-saas-generator .white-saas-generator-container .head {
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;

  /* or 92% */
  text-align: center;

  color: #363636;
}
.white-saas-generator .white-saas-generator-container .head span {
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 22px;
  display: block;
  /* or 92% */
  text-align: center;

  color: #d7000f;
}
.white-saas-generator .white-saas-generator-container .text {
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  margin: 22px 0 12px 0;
  color: #363636;
}
.white-saas-generator .white-saas-generator-container .inpt {
}
.white-saas-generator .white-saas-generator-container .inpt input {
  background: #fff;
  font-size: 12px;
  padding: 10px;
  color: #4f4f4f;
  height: 42px;
  margin-top: 5px;
}
.white-saas-generator
  .white-saas-generator-container
  .inpt
  .callback-popup__input:placeholder {
  font-size: 12px;
  color: #4f4f4f;
  line-height: 15px;
}
.white-saas-generator .white-saas-generator-container .inpt label {
  font-family: inherit;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;

  /* identical to box height */

  /* Gray 3 */
  color: #828282;
}
.white-saas-generator .white-saas-generator-container .formbtn {
  display: flex;
  flex-direction: column;
}
.white-saas-generator
  .white-saas-generator-container
  .formbtn
  #button-subscribe {
  margin-bottom: 15px;
  background: #d7000f;
  border-radius: 5px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;

  /* identical to box height, or 125% */

  color: #ffffff;
}
.white-saas-generator .white-saas-generator-container .formbtn .popup_close {
  border: 2px solid #d7000f;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  height: 42px;
  /* identical to box height, or 125% */
  text-align: center;

  /* Красный */
  color: #d7000f;
}
.white-saas-generator #respond .popup_close {
  background: #d7000f;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;

  /* identical to box height, or 125% */

  color: #ffffff;
}

.white-saas-generator .white-saas-generator-container > div:first-child {
  padding: 20px;
  min-width: 336px;
}
.white-saas-generator .white-saas-generator-container > div:last-child {
  padding: 25px;
}
.white-saas-generator .white-saas-generator-container > div:last-child img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  body.sk #product.main {
    z-index: 999;
  }
}
@media only screen and (max-width: 767px) {
  .white-saas-generator .white-saas-generator-container > div:last-child {
    display: none;
  }
  .white-saas-generator {
    width: 300px;
  }
  .white-saas-generator .white-saas-generator-container > div:first-child {
    padding: 20px;
    min-width: auto;
  }
}

@media only screen and (max-width: 1440px) {
  .product__title {
    font-size: 23px;
  }

  .product-gallery {
    -ms-flex: 0 0 45%;
    -webkit-box-flex: 0;
    flex: 0 0 45%;
    max-width: 45%;
    padding: 30px 0 20px;
  }
  .product-gallery__group {
    max-height: 330px;
  }

  .product-info {
    -ms-flex: 0 0 55%;
    -webkit-box-flex: 0;
    flex: 0 0 55%;
    max-width: 55%;
    padding: 30px 20px 15px 15px;
  }
  .product-info__action-btn {
    padding: 0.7em;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media only screen and (max-width: 1299px) {
  .product__title {
    font-size: 22px;
  }

  .product-gallery {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px 0 20px;
  }
  .product-gallery__group {
    max-height: 330px;
  }

  .product-info {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 25px 20px 10px 15px;
  }
  .product-info__available {
    font-size: 14px;
  }
  .product-info__rating {
    margin: 0 15px 0 auto;
    font-size: 14px;
  }
  .product-info__code {
    font-size: 14px;
  }
  .product-info__group--price {
    padding: 30px 0 !important;
  }
  .product-info__price {
    font-size: 24px;
  }
  .product-info__action-btn {
    font-size: 14px;
  }
  .product-info__btn {
    padding: 0.68em;
    font-size: 18px;
  }
  .product-info__btn:before {
    margin: 0;
  }
  .product-info__btn span {
    display: none;
  }
  .product-info__parameters {
    margin: 2em 0 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  body.page--product aside.main__aside {
    display: none;
  }
  body.page--product article.main__article {
    padding-left: 15px !important;
    padding-right: 15px;
    width: 100% !important;
  }
  body.page--product section.info {
    display: block;
  }
}

.catalog-filter__title button.ocf-mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .catalog-filter {
    padding-bottom: 0;
  }

  body.page--product article.main__article {
    padding: 0 !important;
  }

  .product__title {
    font-size: 21px;
  }

  .product-galleryflex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 25px 0;
  }

  .product-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 25px 0;
  }
  .product-gallery__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    max-width: 310px;
    max-height: auto;
    margin: 25px 15px 0;
    padding: 0;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
  .product-gallery__item {
    min-height: 72px;
    min-width: 72px;
    margin: 0 7px 15px 0 !important;
  }
  .product-gallery__item:last-child {
    margin-right: 0 !important;
  }
  .product-gallery__detail {
    width: 100%;
  }
  .product-gallery__detail-label {
    font-size: 13px;
  }

  .product-info__available {
    margin: 0;
  }
  .product-info__code {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin: 0 50px 15px 0;
  }
  .product-info__group--price {
    padding: 30px 0 !important;
  }
  .product-info__action-btn {
    padding: 0.9em;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-size: 15px;
  }
  .product-info__action-btn:not(:last-child) {
    margin: 0 0 12px 0;
  }
  .product-info__vat-price {
    width: 100%;
    margin: 12px 0 0;
  }
  .product-info__btn {
    font-size: 16px;
  }

  .product-tabs .tabs__nav-item {
    padding: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .product__title {
    font-size: 20px;
  }
  .product__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product__content > div {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-gallery__group {
    max-width: 444px;
    margin: 25px 25px 0;
  }
  .product-gallery__item {
    min-height: 80px;
    min-width: 80px;
    margin: 0 11px 15px 0 !important;
  }
  .product-gallery__item:last-child {
    margin-right: 0 !important;
  }
  .product-gallery__detail {
    padding: 0 25px;
  }

  .product-info {
    padding: 20px 25px 10px;
    border-top: 1px solid #f2f2f2;
  }
  .product-info__group {
    padding: 20px 0 15px;
  }
  .product-info__group:last-child {
    -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-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .product-info__group:last-child > .product-info__row {
    width: auto;
  }
  .product-info__rating {
    margin: 0 auto 0 auto;
  }
  .product-info__rating i {
    display: none;
  }
  .product-info__rating:after {
    display: inline-block;
  }
  .product-info__code {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    margin-left: auto;
  }
  .product-info__group--price {
    padding: 25px 0 !important;
  }
  .product-info__price {
    font-size: 22px;
  }
  .product-info__vat-price {
    width: auto;
    margin: 0;
  }
  .product-info__action-btn {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .product-info__action-btn:not(:last-child) {
    margin: 0 15px 0 0;
  }
  .product-info__parameters {
    margin: 0;
  }

  .product-tabs__nav {
    margin: 0 0 20px;
    padding: 0 0 15px 0;
    max-width: 100%;
    scroll-behavior: smooth;
    scrollbar-color: #e5e5e5 #fff;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden !important;
    overflow-x: auto !important;
  }
  .product-tabs__nav::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    height: 4px;
  }
  .product-tabs__nav::-webkit-scrollbar-thumb {
    background-color: #e5e5e5;
  }
  .product-tabs__nav::-webkit-scrollbar-track {
    border-width: 0;
    background-color: transparent;
  }
  .product-tabs .tabs__nav {
    margin: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow: unset;
  }
  .product-tabs .tabs__nav-item {
    white-space: nowrap;
    padding: 1em 2em;
  }
  .product-tabs .tabs__nav-item:first-child {
    border-radius: 5px 0 0 5px;
  }
  .product-tabs .tabs__nav-item:last-child {
    border-radius: 0 5px 5px 0;
  }
  .product-tabs .tabs__tab {
    padding: 30px 20px;
  }

  .product-parameters .ph5 {
    font-size: 16px;
  }

  .product-videos__col {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-comments .form h5 {
    font-size: 17px;
  }
  .product-comments .form__group:not(:last-child) {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 575px) {
  .product-gallery__group {
    max-width: calc(100% - 50px);
  }
  .product-gallery__item {
    height: auto;
    min-height: unset;
    min-width: 18.5%;
    margin: 0 2% 15px 0 !important;
  }

  .product-info__group:last-child {
    -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;
  }
  .product-info__parameters {
    margin: 2em 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .product__title {
    font-size: 18px;
  }

  .product-gallery__group {
    margin: 25px 20px 0;
    max-width: calc(100% - 40px);
  }
  .product-gallery__item {
    margin: 0 1.5% 15px 0 !important;
  }
  .product-gallery__detail {
    padding: 0 20px;
  }

  .product-info {
    padding: 20px 20px 10px;
  }
  .product-info__code {
    margin-left: auto;
  }
  .product-galleryflex {
    padding-top: 0;
    padding-bottom: 0;
  }
  .product-info__rating {
    margin: 0 0 0 auto;
  }
  .product-info__action-btn {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .product-info__action-btn:not(:last-child) {
    margin: 0 0 15px 0;
  }

  .product-tabs .tabs__nav-item {
    font-size: 15px;
  }
  .product-tabs .tabs__tab {
    padding: 25px 15px;
  }

  .product-parameters ul li:nth-child(odd) {
    padding: 0.8em;
  }
  .product-parameters ul li:nth-child(even) {
    padding: 0.9em 0.8em;
  }

  .product-comments--reviews .product-comment {
    padding: 20px 16px 20px;
  }
  .product-comments--question .product-question__item {
    padding: 20px 15px;
    margin-left: 10px;
  }
  .product-comments .product-comment p {
    font-size: 12px;
  }
  .product-comments .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product-comments .form__row:not(:last-child) {
    margin: 0 0 15px;
  }
  .product-comments .form__row .form__group {
    padding: 0;
  }
  .product-comments .form__group:not(:last-child) {
    margin: 0 0 15px;
  }
  .product-comments .form__footer {
    -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;
  }
  .product-comments .form__rating {
    margin: 0 0 18px 0;
  }
}
@media only screen and (max-width: 400px) {
  .product__title {
    font-size: 16px;
  }

  .product-gallary__detail {
    width: 100%;
  }
  .product-gallary__detail-label {
    font-size: 13px;
  }

  .product-info__price {
    font-size: 20px;
  }
  .product-info__action-btn {
    font-size: 14px;
  }
  .product-info__options-item {
    font-size: 14px;
  }

  .product-tabs .tabs__nav-item {
    padding: 0.9em 2em;
  }
  .product-tabs .tabs__tab {
    padding: 20px 15px;
  }

  .product-description p,
  .product-description ul,
  .product-description ol {
    font-size: 15px;
  }

  .product-parameters ul li {
    font-size: 14px;
  }

  .product-comments .product-comment .ph6 {
    font-size: 15px;
  }
  .product-comments .product-comment p {
    /*font-size: 14px;*/
  }
  .product-comments .product-comment__info p {
    font-size: 14px;
  }
  .product-comments .product-comment__photo a {
    width: 56px;
  }
  .product-comments .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product-comments .form__row:not(:last-child) {
    margin: 0 0 15px;
  }
  .product-comments .form__row .form__group {
    padding: 0;
  }
  .product-comments .form__group:not(:last-child) {
    margin: 0 0 15px;
  }
  .product-comments .form__footer {
    -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;
  }
  .product-comments .form__rating {
    margin: 0 0 18px 0;
  }
  .product-comments .form__rating > span {
    font-size: 15px;
  }
  .product-comments .form__rating .rateit-font {
    font-size: 17px;
  }
  .product-comments .form__submit {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .product__title {
    font-size: 15px;
  }

  .product-gallery {
    padding: 15px 0 20px;
  }
  .product-gallery__group {
    margin: 20px 15px 0;
    max-width: calc(100% - 30px);
  }
  .product-gallery__item {
    margin: 0 2% 15px 0 !important;
  }
  .product-gallery__detail {
    padding: 0 15px;
  }
  .product-gallery__detail-label {
    font-size: 12px;
  }

  .product-info {
    padding: 15px 15px 5px;
  }
  .product-info__code {
    font-size: 13px;
  }
  .product-info__available,
  .product-info__rating {
    font-size: 13px;
  }
  .product-info__price {
    -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;
  }
  .product-info__price .current {
    margin: 0 0 0.4em 0;
  }
  .product-info__price .old {
    font-size: 0.8em;
  }
  .product-info__vat-price {
    font-size: 13px;
  }
  .product-info__action-btn {
    font-size: 13px;
  }
  .product-info__action-btn:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .product-info__btn {
    font-size: 14px;
  }
  .product-info__btn:not(:last-child) {
    margin: 0 12px 0 0;
  }
  .product-info__parameters {
    font-size: 14px;
  }
  .product-info__options-item {
    font-size: 13px;
  }

  .product-tabs .tabs__nav-item {
    padding: 0.9em 2.1em;
    font-size: 14px;
  }
  .product-tabs .tabs__tab {
    padding: 20px 12px;
  }

  .product-description p,
  .product-description ul,
  .product-description ol {
    font-size: 14px;
  }

  .product-parameters .ph5 {
    font-size: 14px;
    margin: 0 0 0.9em 0;
  }
  .product-parameters ul li {
    font-size: 13px;
  }

  .product-comments--reviews .product-comment {
    padding: 18px 14px 18px;
  }
  .product-comments--reviews .form {
    padding-top: 25px;
  }
  .product-comments--question .product-question__item {
    padding: 18px 14px;
  }
  .product-comments .product-comment__head > span {
    font-size: 13px;
  }
  .product-comments .product-comment .ph6 {
    font-size: 14px;
  }
  .product-comments .product-comment p {
    font-size: 13px;
  }
  .product-comments .product-comment__photo {
    margin: 10px -7px -7px;
  }
  .product-comments .product-comment__photo a {
    width: 50px;
  }
  .product-comments .product-comment .form {
    margin: 35px 0 0 0;
  }
  .product-comments .product-comment .form h5 {
    font-size: 16px;
  }
}
.account-simpleregister .cabinet__title,
.account-simpleregister .breadcrumbs {
  display: none;
}
.account-simpleregister .simple-content {
  width: 100%;
}
.account-simpleregister .login__submit {
  width: 100%;
  display: block;
  text-align: center;
}
.account-simpleregister .simple-content .buttons {
  margin: 0;
  border: none;
  padding: 0 25px;
}
.account-return .cabinet__nav,
.account-password .cabinet__nav,
.account-download .cabinet__nav,
.account-order .cabinet__nav,
.account-order-info .cabinet__nav,
.account-account .cabinet__nav {
  margin-top: -55px;
}
.account-return .cabinet__inner,
.account-password .cabinet__inner,
.account-download .cabinet__inner,
.account-order .cabinet__inner,
.account-order-info .cabinet__inner,
.account-account .cabinet__inner {
  margin-top: 70px;
}
#button-confirm {
  opacity: 0.7;
  padding: 0.9em;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  background: #f8b439;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
#button-confirm:hover {
  background: #f8b439;
}
#button-confirm:hover:after {
  -webkit-animation: blick 1s;
  animation: blick 1s;
}
#button-confirm:after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.3))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 2;
}
#quickorderphone.has-error {
  border: 2px solid red;
}
#preorderphone.has-error {
  border: 2px solid red;
}
#getpriceemail.has-error {
  border: 2px solid red;
}
#preordModal #ord-popup__btn.btn-success {
  margin-left: 0;
}

#getpricephone.has-error {
  border: 2px solid red;
}
#getpriceModal #ord-popup__btn.btn-success {
  margin-left: 0;
}

.callback-popup__btn.btn-success {
  background: #0db33c;
}
.callback-popup__suc {
  font-family: SF Pro Display;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;

  /* or 125% */

  color: #666666;
}

.simplecheckout-three-column .cabinet__content {
  display: none;
}
.simplecheckout-step > .cabinet__nav {
  width: 100%;
  padding: 0;
}
.simplecheckout-step > .cabinet__nav .cabinet__content {
  padding: 0 0px 0 15px;
  margin-bottom: 20px;
  width: 100%;
}
.simplecheckout-step > .cabinet__nav .cabinet-ordering,
.simplecheckout-step > .cabinet__nav .cabinet-promocode {
  display: none;
}
.simplecheckout-step > .cabinet__nav .cabinet__content .cart-item__title {
  width: auto;
  padding: 0 40px;
}
.simplecheckout-step > .cabinet__nav .cabinet__content .cart-item__image {
  position: relative;
  width: 100px;
  margin: 0 40px 0 0;
}

#livesearch_search_results {
  margin: 0px;
  padding: 5px;
  position: absolute;
  top: 52px;
  left: 0px;
  right: 0;
  background-color: #000;
  list-style-type: none;
  min-width: 265px;
  width: auto;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 20px;
  -webkit-box-shadow: 0px 5px 41px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 41px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 41px 0px rgba(0, 0, 0, 0.1);
  overflow: auto;
  z-index: 2000;
}
@media only screen and (max-width: 767px) {
  #livesearch_search_results {
    left: -1px;
    height: 376px;
    top: 59px;
  }
}
#livesearch_search_results li {
  padding: 5px;
}

#livesearch_search_results hr {
  border: none;
  color: none;
  background-color: #fcfcfc;
  height: 1px;
  margin: 10px;
}
#livesearch_search_results a,
#livesearch_search_results a:visited,
#livesearch_search_results a:hover {
  color: #000;
  text-decoration: none;
  font-size: 16px;

  font-weight: normal;
  text-decoration: none;
}
#livesearch_search_results a:hover {
  text-decoration: underline;
}
#livesearch_search_results a:hover {
  color: #999;
}

#livesearch_search_results img {
  border: 1px solid #f0f0f0;
  border-radius: 1px;
}

.br-theme-fontawesome-stars .br-widget {
  height: 28px;
  white-space: nowrap;
}
.br-theme-fontawesome-stars .br-widget a {
  font: normal normal normal 18px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: 2px;
}
.br-theme-fontawesome-stars .br-widget a:after {
  content: "\f005";
  color: #dddddd;
}
.br-theme-fontawesome-stars .br-widget a.br-active:after {
  color: #ffdf88;
}
.br-theme-fontawesome-stars .br-widget a.br-selected:after {
  color: #ffdf88;
}
.br-theme-fontawesome-stars .br-widget .br-current-rating {
  display: none;
}
@media print {
  .br-theme-fontawesome-stars .br-widget a:after {
    content: "\f006";
    color: black;
  }
  .br-theme-fontawesome-stars .br-widget a.br-active:after,
  .br-theme-fontawesome-stars .br-widget a.br-selected:after {
    content: "\f005";
    color: black;
  }
}

#no_call {
  background: #fff;
  margin: 30px 0;
  padding: 20px 30px 20px 65px;
}

#no_call_check {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
#no_call_check:checked + label::before {
  border-color: #f8b439;
  background-color: #f8b439;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

#no_call_check + label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #efefef;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 75% 75%;
  position: absolute;
  left: -36px;
  top: 28px;
  cursor: pointer;
  margin-top: -23px;
}

#no_call label {
  color: #828282;
  position: relative;
}
#no_call span {
  color: #4f4f4f;
  margin-bottom: 7px;
  display: block;
}

@media (max-width: 767px) {
  #no_call_check + label::before {
    left: 0;
    top: 24px;
  }

  #no_call span {
    padding-left: 30px;
  }

  #no_call {
    padding: 20px 30px 20px 30px;
  }
}

table.complect {
  overflow-x: auto;
  display: block;
}
table.complect thead td {
  font-size: 13px;
  color: #999999;
  padding: 5px;
}
table.complect tbody td {
  font-size: 13px;
  color: #333;
  padding: 5px;
}
table.complect tbody td img {
  padding: 5px;
}
table.complect tbody td span {
  display: block;
  min-width: 70px;
}
table.complect tfoot strong {
  display: block;
  min-width: 90px;
  text-align: center;
}

.header__catalog-menu ul .mCSB_container {
  top: 0 !important;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
  -o-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition:
    opacity 0.25s ease,
    visibility 0s ease 0.25s;
  -o-transition:
    opacity 0.25s ease,
    visibility 0s ease 0.25s;
  transition:
    opacity 0.25s ease,
    visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  -webkit-transition:
    opacity 0.25s ease 0s,
    visibility 0s ease 0s;
  -o-transition:
    opacity 0.25s ease 0s,
    visibility 0s ease 0s;
  transition:
    opacity 0.25s ease 0s,
    visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property:
    opacity,
    -webkit-transform;
  transition-property:
    opacity,
    -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property:
    transform,
    opacity,
    -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition-property:
    opacity,
    -webkit-transform;
  transition-property:
    opacity,
    -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property:
    transform,
    opacity,
    -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable="true"] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, rgba(0, 0, 0, 0.85)),
    color-stop(50%, rgba(0, 0, 0, 0.3)),
    color-stop(65%, rgba(0, 0, 0, 0.15)),
    color-stop(75.5%, rgba(0, 0, 0, 0.075)),
    color-stop(82.85%, rgba(0, 0, 0, 0.037)),
    color-stop(88%, rgba(0, 0, 0, 0.019)),
    to(transparent)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.85) 0,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.075) 75.5%,
    rgba(0, 0, 0, 0.037) 82.85%,
    rgba(0, 0, 0, 0.019) 88%,
    transparent
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.075) 75.5%,
    rgba(0, 0, 0, 0.037) 82.85%,
    rgba(0, 0, 0, 0.019) 88%,
    transparent
  );
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right))
      max(25px, env(safe-area-inset-bottom))
      max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
  -ms-transform: rotate(-1turn);
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
  -ms-transform: rotate(1turn);
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.block_fv.qnts.qnp {
  display: none;
}
.headersale {
  height: 30px;
  width: 100%;
  background-size: contain;
  display: block;
  min-height: 30px;
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center;
}

.rassr .variantheader {
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  color: #460805;
}
.rassr {
  width: 100%;
}
.rassr .variant {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #4f4f4f;
}
.rassr .variant:last-child {
  border-bottom: 0;
}
.rassr .variant img {
  width: 26px;
  vertical-align: middle;
}
.rassr .variant span {
  vertical-align: middle;
  margin-left: 12px;
}

.rassr .variant:hover,
.rassr .variant:focus {
  color: #000;
}
.product-info__group-rassr {
  padding-top: 0;
}
.product-info__btns {
  margin-left: auto;
}
.product-info__btns .product-info__btn {
  padding: 0;
  background: none;
}
.product-info__btns .product-info__btn:before {
  margin-right: 0;
  color: #999999;
  font-size: 20px;
}
.product-info__vat-price {
  margin-bottom: 40px;
}
.product-info__group--price {
  padding-bottom: 20px !important;
}
.product-info__row_mobile,
.product-info__row_desktop {
  display: none;
  width: 100%;
}
.product-info__row_mobile > .product-info__row:not(.jc-sb) {
  padding-top: 12px;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .product-info__row_desktop {
    display: block;
  }
}
@media (max-width: 767px) {
  .product-info__row_mobile {
    display: block;
  }
  .product-info__vat-price {
    margin-bottom: 0;
  }
  .product-info__btns {
    display: none;
  }
  .product-info__row_mobile .product-info__btns {
    display: block;
  }
  .product-info__discount {
    margin-top: 0;
  }
}

.account-voucher .voucher-form {
  padding: 0 !important;
  display: flex;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(189, 180, 180, 0.2);
  border-radius: 6px;
}
.account-voucher .voucher-form > img {
  margin: -30px;
}
.account-voucher .voucher-form > form {
  padding: 40px;
  width: 100%;
}
.account-voucher .voucher-form > form .form-head {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 15px;
  margin-top: 20px;
  /* Ð¢ÐµÐ¼Ð½Ñ‹Ð¹ */
  color: #363636;
}
.account-voucher .voucher-form > form .block1 .form-group,
.account-voucher .voucher-form > form .block2 .form-group,
.account-voucher .voucher-form > form .block5 .form-group {
  width: 46%;
  display: inline-block;
  vertical-align: middle;
}

.account-voucher .voucher-form > form .block1 > div:nth-child(2),
.account-voucher .voucher-form > form .block2 > div:nth-child(2),
.account-voucher .voucher-form > form .block5 > div:nth-child(2) {
  margin-right: 6%;
}
.account-voucher .voucher-form > form .buttons > div {
  width: 46%;
  display: inline-block;
}
.account-voucher .voucher-form > form .buttons > div:first-child {
  margin-right: 6%;
}
.account-voucher .voucher-form > form .block1 .form-group label,
.account-voucher .voucher-form > form .block2 .form-group label {
  font-style: normal;
  font-weight: 350;
  font-size: 14px;
  line-height: 19px;

  /* identical to box height */

  /* Gray 3 */
  color: #828282;
}
.account-voucher .voucher-form .form-group input,
.account-voucher .voucher-form .form-group textarea {
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 6px;
  clear: both;
  display: block;
  width: 100%;
  height: 40px;
  padding: 7px;
  margin-top: 5px;
}
.account-voucher .voucher-form > form .block5 .ff2 {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  background: #f9f9f9;
  border-radius: 6px;
  color: #f8b439;
  padding: 9px 6px;
  vertical-align: middle;
}
.account-voucher .voucher-form > form .block5 .ff2 svg {
  margin-right: 6px;
  vertical-align: middle;
}
.voucher-form .form-group.buttons input[type="submit"] {
  background: linear-gradient(90.11deg, #f8b439 0%, #f8b439 100%);
  border-radius: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1px;
  padding: 15px 30px;
  color: #ffffff;
  margin: 0;
  width: auto;
  float: right;
  text-transform: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  margin-top: 25px;
}
.voucher-form .form-group.buttons input[type="submit"]:hover {
  box-shadow: 0px 8px 30px -5px rgba(124, 23, 23, 0.2);
}
.account-voucher .voucher-form > form .block3 input[type="radio"] {
  display: none;
}
.account-voucher
  .voucher-form
  > form
  .block3
  input[type="radio"]:checked
  + label {
  color: #f8b439;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(189, 180, 180, 0.2);
  border-radius: 6px;
  border-bottom: 1px solid #f8b439;
}
.account-voucher .voucher-form > form .block3 .radio:hover label {
  color: #f8b439;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(189, 180, 180, 0.2);
  border-radius: 6px;
  border-bottom: 1px solid #f8b439;
}
.account-voucher .voucher-form > form .block3 input[type="radio"] + label {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  background: #f9f9f9;
  border-radius: 6px;
  color: #828282;
  width: 100%;
  text-align: center;
  padding: 25px 45px;
  height: 115px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.account-voucher .voucher-form > form .block3 .form-group {
  display: flex;
  justify-content: space-between;
}
.account-voucher .voucher-form > form .block3 .form-group > div {
  width: 30%;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:first-child
  input[type="radio"]
  + label:before {
  content: "";
  position: absolute;
  background-image: url("/image/images/gift1.svg");
  width: 30px;
  height: 30px;
  background-color: #f9f9f9;
  border: 0;
  margin: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 30%;
}
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:nth-child(2)
  input[type="radio"]
  + label:before {
  content: "";
  position: absolute;
  background-image: url("/image/images/gift2.svg");
  width: 30px;
  height: 30px;
  background-color: #f9f9f9;
  border: 0;
  margin: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 35%;
}
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:nth-child(3)
  input[type="radio"]
  + label:before {
  content: "";
  position: absolute;
  background-image: url("/image/images/gift3.svg");
  width: 30px;
  height: 30px;
  background-color: #f9f9f9;
  border: 0;
  margin: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 35%;
}
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:first-child
  input[type="radio"]:checked
  + label:before,
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:first-child:hover
  input[type="radio"]
  + label:before {
  background-image: url("/image/images/gift1h.svg");
  background-color: #fff;
}
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:nth-child(2)
  input[type="radio"]:checked
  + label:before,
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:nth-child(2):hover
  input[type="radio"]
  + label:before {
  background-image: url("/image/images/gift2h.svg");
  background-color: #fff;
}
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:nth-child(3)
  input[type="radio"]:checked
  + label:before,
.account-voucher
  .voucher-form
  > form
  .block3
  .form-group
  > div:nth-child(3):hover
  input[type="radio"]
  + label:before {
  background-image: url("/image/images/gift3h.svg");
  background-color: #fff;
}
.account-voucher .voucher-form [type="radio"]:checked + label:after {
  opacity: 0;
  display: none;
}
.account-voucher .voucher-form > form .form-group.buttons {
  display: flex;
}
.account-voucher .voucher-form > form .form-group.buttons .sumv {
  margin-top: 18px;
  color: #828282;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 21px;
}
.account-voucher .voucher-form > form .form-group.buttons .sumv span {
  font-weight: bold;
  color: #363636;
}

.voucher-form .text-danger {
  color: #ff0e25;
  font-size: 14px;
  clear: both;
  padding: 5px 0;
}

.updmodel {
  border: 2px solid rgb(33 150 83 / 50%) !important;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 8px 41px;
}
.updmodel .updmodel-link {
  width: calc(100% - 70px);
  float: left;
  padding: 6px 16px;
}
.updmodel .updmodel-link span {
  color: #219653;
  font-weight: 500;
  position: relative;
}
.updmodel .updmodel-link svg {
  position: absolute;
  left: -28px;
}
.updmodel .updmodel-link p {
  padding-top: 14px;
  font-size: 18px;
  font-weight: 500;
}

.updmodel a {
  display: block;
  width: 100%;
}
.updmodel a:hover {
}
.updmodel .updmodel-image {
  width: 70px;
  float: left;
  height: 70px;
  border: 1px solid hsl(146deg 64% 36% / 25%);
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  padding-top: 10px;
}
.updmodel .updmodel-image img {
  width: 50px;
  height: 50px;

  line-height: 28px;
}

@media (max-width: 991px) {
  .voucher-form > img {
    display: none;
  }

  .updmodel {
    padding: 8px 20px;
  }
}

.fitVids-wrapper iframe,
iframe.note-video-clip,
.product-description iframe {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  min-height: 450px;
  display: block;
}

.accesaded {
  width: 100%;
}
.product-galleryflex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
  width: 100%;
  z-index: 100;
}

@media (max-width: 767px) {
  .fixedfilt {
    position: fixed;
    top: 0;
    z-index: 11;
    left: 0;
    padding: 10px 15px;
    background: #fff;
    width: 100%;
  }

  .fitVids-wrapper iframe,
  iframe.note-video-clip,
  .product-description iframe {
    min-height: 210px;
  }

  .account-voucher .voucher-form > form .block1 .form-group,
  .account-voucher .voucher-form > form .block2 .form-group,
  .account-voucher .voucher-form > form .block5 .form-group {
    width: 100%;
    display: inline-block;
  }
  .account-voucher .voucher-form > form .form-group.buttons {
    display: block;
  }
  .account-voucher .voucher-form > form .buttons > div {
    width: 100%;
  }
  .voucher-form .form-group.buttons input[type="submit"] {
    width: 100%;
  }
  .account-voucher .voucher-form > form .block5 .form-group {
    width: 100%;
    margin: 5px 0;
  }
  .rassr .variant span {
    display: none;
  }
  .rassr .variant {
    border-bottom: 0;
    background: #f6f6f6;
    display: inline-block;
    width: 50px;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    margin-right: 10px;
  }
  .rassr .variant:hover,
  .rassr .variant:focus {
    background: #e5e4e4;
  }
  .rassr .variant img {
    width: 100%;
  }
}

button.bwc-chat,
.bwc-chat-tail {
  display: none !important;
}
.catalog-sorting__checkbox.vch {
  display: none;
}

.simplecheckout-three-column .form-group.required label:after,
.simplecheckout-three-column .form__select.required label:after {
  content: "*";
  color: red;
  margin-left: 5px;
}

.menucust_icon {
  margin-right: 10px;
}

.menucust_icondiv {
  margin-right: 35px;
}

.mobile-menu__nav-content .menucust_icon {
  margin-right: 5px;
  vertical-align: bottom;

  width: 20px;
}
.mobile-menu__nav-content .menucust_icondiv {
  margin-right: 25px;
}

.ms-category {
  margin: 0 0 42px;
}
.ms-category li {
  padding: 5px 0;
}
.ms-category a.active {
  font-weight: 700;
}
.ms-category a:hover {
  color: #f8b439;
}
.ms-category span {
  font-weight: 500;
  opacity: 0.7;
  color: #515167;
  margin-left: 5px;
}

body.search-active {
  overflow: hidden;
}

.search-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.search-result {
  position: absolute;
  top: 85%;
  left: 1rem;
  right: 1rem;
  z-index: 9991;
  transition: width 1s ease-in-out;
}
.search-active-mobile .search-result {
  top: 100%;
  margin-top: 10px;
}
.search-active-mobile .header__m-search {
  z-index: 9992;
}
@media (min-width: 1200px) {
  .search-result {
    left: 50%;
    right: auto;
    width: 960px;
    margin-left: -480px;
  }
}

body.search-active .search-bg {
  visibility: visible;
  opacity: 1;
}
body.search-active .header__search {
  z-index: 9991;
}
body.search-active .header__search-input {
  background: #f5f5f5;
}

.ms-container {
  background: #f5f5f5;
  border-radius: 25px;
  padding: 2rem 0.5rem 2rem 2rem;
}

.ms-history-title {
  font-size: 12px;
  opacity: 0.7;
  color: #515167;
  margin-bottom: 1.5rem;
}
.ms-history li + li {
  margin-top: 8px;
}
.ms-history li > span {
  cursor: pointer;
}
.ms-history li > span:hover {
  color: #f8b439;
  border-bottom: dotted 1px #f8b439;
}

.ms-results-ctg {
  width: 30%;
  flex-shrink: 0;
}
.ms-results-ctg li + li {
  margin-top: 8px;
}
.ms-results-ctg li > span {
  cursor: pointer;
}
.ms-results-ctg li > span.active {
  font-weight: 700;
}
.ms-results-ctg li > span:not(.active):hover .name {
  color: #f8b439;
  border-bottom: dotted 1px #f8b439;
}
.ms-results-ctg li span.count {
  font-weight: 500;
  opacity: 0.7;
  color: #515167;
  margin-left: 5px;
}

.ms-results-tabs {
  display: flex;
  gap: 2rem;
}
.ms-results-tabs .mCSB_dragger_bar {
  background: #f8b439 !important;
  width: 6px !important;
  border-radius: 6px !important;
}
.ms-results-tabs .mCSB_scrollTools .mCSB_draggerContainer:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.3);
  margin: auto;
}
.ms-results-tabs .mCSB_scrollTools .mCSB_draggerRail {
  display: none;
}

.ms-results-items {
  max-height: 60vh;
}
.search-active-mobile .ms-results-items {
  overflow-y: auto;
}
.ms-results-items ul {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 3rem;
}
.ms-results-items .category-url a {
  text-decoration: underline;
  font-weight: 500;
  color: #f8b439;
  font-size: 18px;
}
.ms-results-items .category-url a:hover {
  text-decoration: none;
}
.ms-results-items .show-all {
  margin-top: 1rem;
}
.ms-results-items .show-all a {
  display: block;
  border: 1px solid #b8b9c2;
  color: #abacb7;
  border-radius: 5px;
  font-size: 14px;
  padding: 0.75em;
  text-align: center;
}
.ms-results-items .show-all a:hover {
  border-color: #f8b439;
  color: #f8b439;
}
.ms-results-items .items {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.ms-results-items .ms-item {
  display: flex;
  gap: 1rem;
}
.search-active-mobile .ms-results-items .items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ms-results-items .ms-item:hover .name {
  color: #f8b439;
}
.ms-item span,
.ms-item .image img {
  display: block;
}
.ms-item .image img {
  width: 70px;
  border-radius: 15px;
  height: auto;
}
.ms-item .detail {
}
.ms-item .name {
  font-size: 14px;
}

.ms-item .price {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 17px;
  gap: 1rem;
}
.ms-item .price .current {
  font-weight: 700;
  font-size: 1em;
  color: #460805;
}
.ms-item .price .old {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.8em;
  color: #acacad;
}
.ms-item .price .old:before {
  content: "";
  position: absolute;
  display: block;
  width: 110%;
  height: 1px;
  background: #acacad;
}

.red_line_left_margin,
.red_line_left {
  background: #f4f4f4;
  position: relative;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
}
.red_line_left_margin {
  background: rgba(215, 0, 15, 0.1);
}
.red_line_left {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 6px 15px 6px 20px;
}
.red_line_left_margin {
  padding: 10px 15px;
  margin-left: 12px;
  display: flex;
}

.red_line_left_margin:before,
.red_line_left:before {
  content: "";
  background: #d7000f;
  width: 5px;
  height: 100%;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.red_line_left_margin:before {
  left: -12px;
}

.product-question__item a {
  text-decoration: underline;
  font-weight: 500;
  color: #460805;
}
