@charset "UTF-8";
/* FONT SourceSansPro */
/*images*/
/*=======================START-MEDIA=====================*/
/*=======================END-MEDIA=====================*/
/* media breakpoint mixin */
/* Single property transition mixin */
/* how to use fonts mixin
  @include font("Lato", "LatoBold", "AcuminPro-Bold", "700", "normal")
*/
/*--------- font-face ---------*/
@font-face {
  font-family: 'MontserratRegular';
  src: url("../fonts/Montserrat/MontserratRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MontserratMedium';
  src: url("../fonts/Montserrat/MontserratMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MontserratSemiBold';
  src: url("../fonts/Montserrat/MontserratSemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MontserratBold';
  src: url("../fonts/Montserrat/MontserratBold.woff2") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  min-width: 320px;
  overflow-x: hidden;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
  min-height: 100%;
}

audio,
video {
  display: block;
}

section {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a img {
  border: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style-type: none;
}

img {
  max-width: 100%;
  display: block;
  border-style: none;
}

input,
textarea,
select {
  vertical-align: middle;
}

form, fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
  width: 100%;
}

input[type="search"],
input[type="text"],
input[type="file"],
input[type="password"],
input[type="submit"],
input[type="email"],
input[type="tel"],
textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  resize: none;
  outline: none;
}

input[type="email"] {
  box-shadow: none;
  -webkit-box-shadow: none;
}

input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button,
input[type=email]::-webkit-inner-spin-button,
input[type=email]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

button:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: inherit;
  font-size: 100%;
}

p, span, label, h1, h2, h3, h4, h5, h6, b, strong, i, em {
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  margin: 0;
}

div {
  word-wrap: break-word;
  white-space: normal;
}

iframe {
  border: none;
}

input::-ms-clear {
  display: none;
}

b,
strong {
  font-weight: bolder;
}

.btn__reset {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.text__clip {
  white-space: nowrap;
  /* Отменяем перенос текста */
  overflow: hidden;
  /* Обрезаем содержимое */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.grid {
  display: grid;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bg__properties {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.is-show {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.is-disable {
  pointer-events: none !important;
}

.is-hand {
  cursor: pointer !important;
}

.no-scroll {
  overflow: hidden;
}

.input__container {
  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;
  margin-bottom: 8px;
}

.input__container.is-filled .form__label {
  opacity: 0;
  visibility: hidden;
}

.input__container.error .select2-container .select2-selection--single {
  border-color: #EA425D !important;
}

.input__container.error label:before {
  border-color: #EA425D !important;
}

.input__container.error .label__text:before {
  border-color: #EA425D;
}

.input__container.error .checkbox__text,
.input__container.error .form-control {
  border-color: #EA425D;
}

.input__container.error .text__error {
  display: inline-block;
}

.input__container.pass .form-control {
  border-color: #4CAF50;
}

.input__container.checkbox {
  margin-bottom: 0;
}

.form__label {
  position: absolute;
  top: 8px;
  left: 16px;
  color: #818B92;
  font-size: 14px;
  line-height: 24px;
  pointer-events: none;
}

.form__label:after {
  content: '';
  position: absolute;
  top: 8px;
  right: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), #A1AEB7;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #A1AEB7;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #A1AEB7;
}

.text__error {
  position: relative;
  display: none;
  margin-top: 11px;
  padding: 6px;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background-color: #EA425D;
  border-radius: 2px;
  z-index: 1;
}

.text__error:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 5px;
  height: 5px;
  background-color: #EA425D;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 0;
}

.form-control, textarea {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  font-family: 'MontserratRegular',sans-serif;
  color: #1E1F21;
  background: rgba(231, 235, 239, 0.5);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-transition: border-color .2s, border-width .2s;
  -o-transition: border-color .2s, border-width .2s;
  transition: border-color .2s, border-width .2s;
}

.form-control:focus, textarea:focus {
  outline: none;
}

.form-control:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.form-control:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}

.form-control:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.form-control:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.form-control:focus::placeholder, textarea:focus::placeholder {
  opacity: 0;
}

.form-control::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #818B92;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control::-moz-placeholder, textarea::-moz-placeholder {
  color: #818B92;
  -moz-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #818B92;
  -ms-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #818B92;
  -ms-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control::placeholder, textarea::placeholder {
  color: #818B92;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}

.textarea {
  min-height: 120px;
  height: auto;
  scrollbar-width: thin;
  scrollbar-color: #001681 transparent;
}

input[type=file],
input[type=checkbox],
input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

label {
  display: inline-block;
  cursor: pointer;
}

.checkbox {
  display: inline-block;
}

.checkbox__label {
  position: relative;
  padding-left: 28px;
}

.checkbox__decor {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.checkbox__decor:before, .checkbox__decor:after {
  display: inline-block;
  content: "";
  position: absolute;
}

.checkbox__decor:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #E5E8F2;
}

.checkbox__decor:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  opacity: 0;
  background-color: #001681;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

[type=radio]:checked + .checkbox__decor:after,
[type=checkbox]:checked + .checkbox__decor:after {
  opacity: 1;
}

body {
  font-family: 'MontserratRegular',sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #505D68;
  font-weight: 400;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: calc(1174px + 32px);
  }
}

.table__wrap {
  padding-bottom: 8px;
  margin-bottom: 24px;
  overflow: auto;
}

.table__wrap td {
  padding: 5px 10px;
}

.table__wrap.scroll__mod::-webkit-scrollbar {
  height: 5px;
}

.table__wrap.scroll__mod::-webkit-scrollbar-track {
  height: 5px;
}

.table__wrap.scroll__mod::-webkit-scrollbar-thumb {
  height: 5px;
}

.table__wrap.scroll__mod::-moz-scrollbar {
  height: 5px;
}

.table__wrap.scroll__mod::-moz-scrollbar-track {
  height: 5px;
}

.table__wrap.scroll__mod::-moz-scrollbar-thumb {
  height: 5px;
}

.table__wrap.scroll__mod::-ms-scrollbar {
  height: 5px;
}

.table__wrap.scroll__mod::-ms-scrollbar-track {
  height: 5px;
}

.table__wrap.scroll__mod::-ms-scrollbar-thumb {
  height: 5px;
}

.content p {
  margin-bottom: 16px;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.content img {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) {
  .content img {
    margin-bottom: 32px;
  }
}

.content h1 {
  margin-bottom: 20px;
}

.content h2, .content h6, .content h5 {
  margin-bottom: 16px;
}

.content h4, .content h3 {
  margin-bottom: 17px;
}

.content ol,
.content ul {
  margin-bottom: 24px;
}

.content li {
  color: #505D68;
  font-size: 14px;
  line-height: 20px;
}

.content li:not(:last-child) {
  margin-bottom: 16px;
}

.content ul li {
  position: relative;
  padding-left: 18px;
}

.content ul li:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #505D68;
}

.content a {
  color: #001681;
}

@media only screen and (min-width: 1200px) {
  .content a:hover {
    text-decoration: underline;
  }
}

.content ol {
  counter-reset: myCounter;
}

.content ol li {
  position: relative;
  padding-left: 20px;
}

.content ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

blockquote {
  border-left: 6px solid #505D68;
  background-color: #F3F4FF;
  padding: 16px 24px 16px 22px;
  margin: 0 0 24px;
}

*:focus {
  outline: none !important;
}

h1, h2, h3, h4, h4, h6, .h1__title, .h2__title, .h3__title, .h4__title, .h5__title, .h6__title {
  display: block;
  font-family: 'MontserratBold',sans-serif;
  color: #1E1F21;
}

h1, .h1__title {
  font-size: 42px;
  font-size: calc(36px + (42 - 36) * ((100vw - 375px) / (1440 - 375)));
  line-height: 1.25;
}

@media (max-width: 375px) {
  h1, .h1__title {
    font-size: 36px;
  }
}

@media (min-width: 1440px) {
  h1, .h1__title {
    font-size: 42px;
  }
}

h2, .h2__title {
  font-size: 36px;
  font-size: calc(30px + (36 - 30) * ((100vw - 375px) / (1440 - 375)));
  line-height: 1.27;
}

@media (max-width: 375px) {
  h2, .h2__title {
    font-size: 30px;
  }
}

@media (min-width: 1440px) {
  h2, .h2__title {
    font-size: 36px;
  }
}

h3, .h3__title {
  font-size: 30px;
  font-size: calc(26px + (30 - 26) * ((100vw - 375px) / (1440 - 375)));
  line-height: 1.3;
}

@media (max-width: 375px) {
  h3, .h3__title {
    font-size: 26px;
  }
}

@media (min-width: 1440px) {
  h3, .h3__title {
    font-size: 30px;
  }
}

h4, .h4__title {
  font-size: 26px;
  font-size: calc(26px + (26 - 26) * ((100vw - 375px) / (1440 - 375)));
  line-height: 1.3;
}

@media (max-width: 375px) {
  h4, .h4__title {
    font-size: 26px;
  }
}

@media (min-width: 1440px) {
  h4, .h4__title {
    font-size: 26px;
  }
}

h5, .h5__title {
  font-size: 22px;
  font-size: calc(22px + (22 - 22) * ((100vw - 375px) / (1440 - 375)));
  line-height: 1.45;
}

@media (max-width: 375px) {
  h5, .h5__title {
    font-size: 22px;
  }
}

@media (min-width: 1440px) {
  h5, .h5__title {
    font-size: 22px;
  }
}

h6, .h6__title {
  font-size: 18px;
  font-size: calc(18px + (18 - 18) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.1;
}

@media (max-width: 320px) {
  h6, .h6__title {
    font-size: 18px;
  }
}

@media (min-width: 1920px) {
  h6, .h6__title {
    font-size: 18px;
  }
}

.main__title {
  display: block;
  font-family: 'MontserratSemiBold',sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #1E1F21;
}

.text__semi {
  font-family: 'MontserratSemiBold',sans-serif;
}

.text__little {
  font-size: 14px;
  line-height: 24px;
}

.text__mini, .sort__link {
  display: block;
  font-family: 'MontserratMedium',sans-serif;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.grey__mod {
  color: #818B92;
}

.wrapper {
  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: 100vh;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.main__link, .brand__list .checkbox__label, .brand__list-link {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  font-family: 'MontserratMedium',sans-serif;
  color: #1E1F21;
  letter-spacing: .03em;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
  .main__link, .brand__list .checkbox__label, .brand__list-link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .7;
  pointer-events: auto;
}

.partners .swiper-button-next,
.partners .swiper-button-prev,
.product__slider .swiper-button-next,
.product__slider .swiper-button-prev {
  width: 24px;
  height: 24px;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.partners .swiper-button-next:after,
.partners .swiper-button-prev:after,
.product__slider .swiper-button-next:after,
.product__slider .swiper-button-prev:after {
  font-family: "Icons";
  font-size: 24px;
}

.partners .swiper-button-prev:after,
.product__slider .swiper-button-prev:after {
  content: "\E003";
}

.partners .swiper-button-next:after,
.product__slider .swiper-button-next:after {
  content: "\E004";
}

@media only screen and (min-width: 992px) {
  .slider__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media only screen and (min-width: 992px) {
  .slider__btns .swiper-button-prev {
    margin-right: 18px;
  }
  .slider__btns .swiper-button-prev:after {
    content: "\E003";
  }
}

@media only screen and (min-width: 992px) {
  .slider__btns .swiper-button-next:after {
    content: "\E004";
  }
}

.slider__btns .swiper-button-prev,
.slider__btns .swiper-button-next {
  display: none;
}

@media only screen and (min-width: 992px) {
  .slider__btns .swiper-button-prev,
  .slider__btns .swiper-button-next {
    width: 24px;
    height: 24px;
    position: static;
    display: block;
    margin-top: 0;
    z-index: 0;
  }
  .slider__btns .swiper-button-prev:after,
  .slider__btns .swiper-button-next:after {
    font-family: "Icons";
    font-size: 24px;
  }
}

@media only screen and (min-width: 1200px) {
  .slider__btns .swiper-button-prev,
  .slider__btns .swiper-button-next {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .slider__btns .swiper-button-prev:not(.swiper-button-disabled):hover,
  .slider__btns .swiper-button-next:not(.swiper-button-disabled):hover {
    color: #001681;
  }
}

@media only screen and (min-width: 992px) {
  .slider__btns .icon {
    font-size: 24px;
  }
}

.slider__heading {
  margin-bottom: 32px;
}

@media only screen and (min-width: 992px) {
  .slider__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 1200px) {
  .slider__heading {
    margin-bottom: 56px;
  }
}

.scroll__mod {
  scrollbar-width: thin;
  scrollbar-color: #001681 #C1CDD6;
}

.scroll__mod::-webkit-scrollbar {
  height: 1px;
  width: 4px;
  border-radius: 14px;
}

.scroll__mod::-webkit-scrollbar-track {
  width: 4px;
  background-color: #C1CDD6;
  border-radius: 14px;
}

.scroll__mod::-webkit-scrollbar-thumb {
  height: auto;
  background: #001681;
  width: 4px;
  border-radius: 14px;
}

.scroll__mod::-moz-scrollbar {
  height: 1px;
  width: 4px;
  border-radius: 14px;
}

.scroll__mod::-moz-scrollbar-track {
  background-color: #C1CDD6;
  width: 4px;
  border-radius: 14px;
}

.scroll__mod::-moz-scrollbar-thumb {
  height: auto;
  background: #001681;
  width: 4px;
  border-radius: 14px;
}

.scroll__mod::-ms-scrollbar {
  height: 1px;
  width: 4px;
  border-radius: 14px;
}

.scroll__mod::-ms-scrollbar-track {
  width: 4px;
  background-color: #C1CDD6;
  border-radius: 14px;
}

.scroll__mod::-ms-scrollbar-thumb {
  height: auto;
  background: #001681;
  width: 4px;
  border-radius: 14px;
}

.swiper-button-lock {
  display: none !important;
}

.justifyleft {
  float: left;
  margin-right: 12px;
}

.justifyright {
  float: right;
  margin-left: 12px;
}

.img-responsive {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.noscript {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  font-size: 14px;
  color: #8e1f1f;
  background-color: #efafaf;
  text-align: center;
  z-index: 77777;
}

.noscript a {
  margin-left: 3px;
  margin-right: 3px;
  color: #630303;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .noscript a:hover {
    text-decoration: none;
  }
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: currentColor;
  line-height: 1em;
}

@font-face {
  font-family: "Icons";
  src: url("../fonts/Icons.eot");
  src: url("../fonts/Icons.eot?#iefix") format("eot"), url("../fonts/Icons.woff") format("woff"), url("../fonts/Icons.ttf") format("truetype"), url("../fonts/Icons.svg#Icons") format("svg");
}

.icon-arrow-bottom:before,
.icon-arrow-down:before,
.icon-arrow-left:before,
.icon-arrow-right:before,
.icon-arrow-top:before,
.icon-arrow-up:before,
.icon-bag-active:before,
.icon-bag:before,
.icon-call:before,
.icon-checkbox:before,
.icon-clock:before,
.icon-close:before,
.icon-document:before,
.icon-down:before,
.icon-location:before,
.icon-message:before,
.icon-minus:before,
.icon-plus:before,
.icon-search-minus:before,
.icon-search-plus:before,
.icon-search:before,
.icon-top:before,
.icon-trash:before,
.icon-up-right:before {
  font-family: "Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-arrow-bottom:before {
  content: '\E001';
}


.icon-arrow-down:before {
  content: '\E002';
}


.icon-arrow-left:before {
  content: '\E003';
}


.icon-arrow-right:before {
  content: '\E004';
}


.icon-arrow-top:before {
  content: '\E005';
}


.icon-arrow-up:before {
  content: '\E006';
}


.icon-bag-active:before {
  content: '\E007';
}


.icon-bag:before {
  content: '\E008';
}


.icon-call:before {
  content: '\E009';
}


.icon-checkbox:before {
  content: '\E00A';
}


.icon-clock:before {
  content: '\E00B';
}


.icon-close:before {
  content: '\E00C';
}


.icon-document:before {
  content: '\E00D';
}


.icon-down:before {
  content: '\E00E';
}


.icon-location:before {
  content: '\E00F';
}


.icon-message:before {
  content: '\E010';
}


.icon-minus:before {
  content: '\E011';
}


.icon-plus:before {
  content: '\E012';
}


.icon-search-minus:before {
  content: '\E013';
}


.icon-search-plus:before {
  content: '\E014';
}


.icon-search:before {
  content: '\E015';
}


.icon-top:before {
  content: '\E016';
}


.icon-trash:before {
  content: '\E017';
}


.icon-up-right:before {
  content: '\E018';
}

.header {
  position: relative;
}

.header.is-menu-open .header__nav {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.header.is-menu-open .toggle__menu:after {
  bottom: 11px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header.is-menu-open .toggle__menu:before {
  top: 11px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header.is-menu-open .toggle__menu span {
  opacity: 0;
}

.header.line__mod .header__top:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .header.line__mod .header__top:before {
    display: none;
  }
}

.header.checkout__mod .header__top {
  border-bottom: 2px solid #E7EBEF;
}

.header.checkout__mod .header__logo {
  position: static;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

.header__top {
  position: relative;
  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-top: 14px;
  padding-bottom: 16px;
  background-color: #fff;
}

@media only screen and (min-width: 992px) {
  .header__top {
    padding-top: 18px;
    padding-bottom: 22px;
  }
}

.header__logo {
  max-width: 51px;
}

@media only screen and (min-width: 768px) {
  .header__logo {
    position: absolute;
    top: 48%;
    left: 50%;
    max-width: 71px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.btn__search {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #1E1F21;
}

@media only screen and (min-width: 992px) {
  .btn__search {
    display: none;
  }
}

.header__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 16px;
  color: #1E1F21;
}

@media only screen and (min-width: 992px) {
  .header__cart {
    margin-left: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .header__cart {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__cart:not(.is-disabled):hover {
    color: #001681;
  }
}

.header__cart.is-disabled {
  pointer-events: none;
}

.header__cart .icon {
  font-size: 24px;
}

@media only screen and (min-width: 992px) {
  .header__cart .icon {
    font-size: 20px;
  }
}

.header__cart-count {
  margin-top: 2px;
}

@media only screen and (min-width: 992px) {
  .header__cart-count {
    margin-top: 0;
  }
}

.header__cart-text {
  display: none;
}

@media only screen and (min-width: 992px) {
  .header__cart-text {
    display: block;
    margin-left: 9px;
    margin-right: 4px;
    font-size: 14px;
    line-height: 24px;
  }
}

.header__info {
  display: none;
}

@media only screen and (min-width: 992px) {
  .header__info {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media only screen and (min-width: 992px) {
  .header__call {
    display: inline-block;
    margin-bottom: 4px;
    height: auto;
    color: #1E1F21;
    font-family: 'MontserratBold',sans-serif;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .03em;
  }
}

@media only screen and (min-width: 1200px) {
  .header__call {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__call:hover {
    color: #001681;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 992px) {
  .header__left {
    position: relative;
    max-width: calc(50% - 71px);
  }
}

.header__left > .btn.light__mod {
  margin-left: 16px;
}

@media only screen and (min-width: 992px) {
  .header__left > .btn.light__mod {
    margin-left: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .header__left > .btn.light__mod {
    padding: 0;
    background-color: transparent;
    color: #1E1F21;
  }
}

.header__left > .btn.light__mod .btn__text {
  display: none;
}

@media only screen and (min-width: 992px) {
  .header__left > .btn.light__mod .btn__text {
    display: block;
  }
}

.header__left > .btn.light__mod .icon {
  font-size: 24px;
}

@media only screen and (min-width: 992px) {
  .header__left > .btn.light__mod .icon {
    display: none;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__schedule {
  display: none;
}

@media only screen and (min-width: 992px) {
  .header__schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__time:before {
  content: '/';
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
  color: #E7EBEF;
}

.toggle__menu {
  position: relative;
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 992px) {
  .toggle__menu {
    display: none;
  }
}

.toggle__menu span, .toggle__menu:after, .toggle__menu:before {
  position: absolute;
  left: 2px;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background-color: #1E1F21;
}

.toggle__menu:after, .toggle__menu:before {
  content: "";
}

.toggle__menu:after {
  bottom: 5px;
  -webkit-transition: bottom 0.3s, translate 0.3s;
  -o-transition: bottom 0.3s, translate 0.3s;
  transition: bottom 0.3s, translate 0.3s;
}

.toggle__menu:before {
  top: 5px;
  -webkit-transition: top 0.3s, translate 0.3s;
  -o-transition: top 0.3s, translate 0.3s;
  transition: top 0.3s, translate 0.3s;
}

.toggle__menu span {
  top: 50%;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.callback {
  position: absolute;
  top: 56px;
  left: 0;
  padding: 32px;
  background-color: #fff;
  border-top: 2px solid #001681;
  -webkit-filter: drop-shadow(0px 13px 20px rgba(30, 31, 33, 0.1));
          filter: drop-shadow(0px 13px 20px rgba(30, 31, 33, 0.1));
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 25;
}

@media only screen and (min-width: 992px) {
  .callback {
    top: calc(100% + 8px);
    width: 100%;
  }
}

.callback.is-show {
  opacity: 1;
  visibility: visible;
}

.callback .textarea {
  min-height: 180px;
  margin-bottom: 24px;
}

.callback .main__title {
  margin-bottom: 16px;
}

.callback__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  color: #1E1F21;
}

@media only screen and (min-width: 1200px) {
  .callback__close {
    display: none;
  }
}

.footer {
  position: relative;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #1E1F21;
}

@media only screen and (min-width: 992px) {
  .footer {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}

@media only screen and (min-width: 1200px) {
  .footer .main__link:hover, .footer .brand__list .checkbox__label:hover, .brand__list .footer .checkbox__label:hover, .footer .brand__list-link:hover {
    color: #fff;
  }
}

@media only screen and (min-width: 992px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 992px) {
  .footer__left {
    width: 220px;
  }
}

@media only screen and (min-width: 1112px) {
  .footer__left {
    width: 290px;
  }
}

.footer__logo {
  display: inline-block;
  max-width: 153px;
  margin-bottom: 48px;
}

.footer__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

@media only screen and (min-width: 992px) {
  .footer__privacy {
    position: static;
    -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__privacy .main__link, .footer__privacy .brand__list .checkbox__label, .brand__list .footer__privacy .checkbox__label, .footer__privacy .brand__list-link {
  color: #505D68;
}

.footer__privacy .main__link:not(:last-child), .footer__privacy .brand__list .checkbox__label:not(:last-child), .brand__list .footer__privacy .checkbox__label:not(:last-child), .footer__privacy .brand__list-link:not(:last-child) {
  margin-right: 32px;
}

@media only screen and (min-width: 992px) {
  .footer__privacy .main__link:not(:last-child), .footer__privacy .brand__list .checkbox__label:not(:last-child), .brand__list .footer__privacy .checkbox__label:not(:last-child), .footer__privacy .brand__list-link:not(:last-child) {
    margin-bottom: 32px;
    margin-right: 0;
  }
}

.footer__menu {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(80, 93, 104, 0.4);
}

@media only screen and (min-width: 992px) {
  .footer__menu {
    width: 50%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
}

.footer__menu-item {
  line-height: 16px;
}

.footer__menu-item:not(:last-child) {
  margin-bottom: 28px;
}

@media only screen and (min-width: 1200px) {
  .footer__menu-item:not(:last-child) {
    margin-bottom: 32px;
  }
}

.footer__menu-item.is-active .main__link, .footer__menu-item.is-active .brand__list .checkbox__label, .brand__list .footer__menu-item.is-active .checkbox__label, .footer__menu-item.is-active .brand__list-link {
  color: #fff;
}

.footer__menu-item .main__link, .footer__menu-item .brand__list .checkbox__label, .brand__list .footer__menu-item .checkbox__label, .footer__menu-item .brand__list-link {
  color: #C1CDD6;
}

@media only screen and (min-width: 992px) {
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 220px);
    padding-left: 56px;
    border-left: 1px solid rgba(80, 93, 104, 0.4);
  }
}

@media only screen and (min-width: 1112px) {
  .footer__right {
    width: calc(100% - 290px);
  }
}

@media only screen and (min-width: 768px) {
  .footer__info {
    max-width: 295px;
    padding-top: 5px;
  }
}

.footer__info .h5__title {
  margin-bottom: 32px;
  color: #C1CDD6;
}

@media only screen and (min-width: 1024px) {
  .footer__info .h5__title {
    margin-bottom: 27px;
  }
}

.footer__info .text__mini, .footer__info .sort__link {
  margin-bottom: 4px;
  text-transform: uppercase;
}

.footer__info .text__semi {
  color: #C1CDD6;
}

@media only screen and (min-width: 1200px) {
  .footer__info .text__semi {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .footer__info .text__semi:hover {
    color: #fff;
  }
}

.footer__item:not(:last-child) {
  margin-bottom: 24px;
}

.footer__item:last-child {
  margin-bottom: 32px;
}

@media only screen and (min-width: 1024px) {
  .footer__item:last-child {
    margin-bottom: 28px;
  }
}

.footer__dev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 24px;
}

.footer__dev a {
  margin-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 1200px) {
  .footer__dev a:hover path,
  .footer__dev a:hover svg {
    fill: #fff !important;
  }
}

@media only screen and (min-width: 1200px) {
  .footer__dev path,
  .footer__dev svg {
    -webkit-transition: fill 0.3s;
    -o-transition: fill 0.3s;
    transition: fill 0.3s;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  font-family: 'MontserratBold',sans-serif;
  padding: 14px 32px;
  color: #fff;
  background-color: #001681;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .03em;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn:disabled, .btn.disabled {
  border-color: #a0a0a0;
  color: #a0a0a0;
}

.btn:focus {
  border: 0;
}

@media only screen and (min-width: 1200px) {
  .btn:hover {
    background-color: #1936c5;
  }
}

.btn.background__mod {
  padding: 13px 31px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

@media only screen and (min-width: 1200px) {
  .btn.background__mod:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
  }
}

.btn.light__mod {
  padding: 10px 24px;
  color: #001681;
  background-color: #E5E8F2;
}

@media only screen and (min-width: 1200px) {
  .btn.light__mod:hover {
    color: #fff;
    background-color: #1936c5;
  }
}

.btn.transparent__mod {
  background-color: transparent;
  color: #001681;
}

@media only screen and (min-width: 1200px) {
  .btn.transparent__mod:hover {
    color: #1E1F21;
  }
}

.btn.icon__mod {
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn.icon__mod .icon {
  margin-right: 8px;
  font-size: 24px;
}

.btn.grey__mod {
  color: #818B92;
}

.btn__add {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  background-color: #001681;
}

.btn__add:before, .btn__add:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 2px;
  background-color: #fff;
}

.btn__add:before {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn__add:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.btn__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  margin: 0;
  color: #505D68;
  background-color: #fff;
  border-radius: 16px;
}

.btn__back img {
  margin-right: 13px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  margin-bottom: 32px;
  margin-right: -16px;
  padding-bottom: 10px;
  padding-right: 16px;
  overflow: auto;
}

@media only screen and (min-width: 1200px) {
  .breadcrumbs {
    margin-bottom: 44px;
    margin-right: 0;
    padding-right: 0;
  }
}

.breadcrumbs__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 14px;
}

.breadcrumbs__item.is-active .breadcrumbs__link {
  color: #001681;
}

@media only screen and (min-width: 1200px) {
  .breadcrumbs__item:not(.is-active) .breadcrumbs__link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .breadcrumbs__item:not(.is-active) .breadcrumbs__link:hover {
    color: #001681;
  }
}

.breadcrumbs__item:not(.is-active) .breadcrumbs__link:after {
  content: '/';
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  margin-right: 8px;
}

.breadcrumbs__link {
  font-family: 'MontserratMedium',sans-serif;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
  .breadcrumbs__link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .breadcrumbs__link:hover {
    color: #001681;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #3f414f;
  z-index: 99;
}

@media only screen and (min-width: 1200px) {
  .cookies {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.cookies .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookies .btn {
  margin-left: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 12px;
  line-height: 1;
}

@media only screen and (min-width: 1200px) {
  .cookies .btn {
    font-size: 14px;
  }
}

.cookies__text {
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
}

@media only screen and (min-width: 1200px) {
  .cookies__text {
    font-size: 18px;
  }
}

.cookies__text a {
  color: cornflowerblue;
  text-decoration: underline;
}

@media only screen and (min-width: 1200px) {
  .cookies__text a:hover {
    text-decoration: none;
  }
}

.header__nav {
  position: absolute;
  top: 100%;
  left: -100%;
  height: calc(100vh - 60px);
  width: 100%;
  padding: 24px 16px;
  background-color: #fff;
  overflow: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 99;
}

@media only screen and (min-width: 992px) {
  .header__nav {
    position: static;
    height: auto;
    padding: 20px 0 0;
    overflow: visible;
    border-bottom: 2px solid #E7EBEF;
  }
}

@media only screen and (min-width: 992px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.menu__item {
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) {
  .menu__item {
    line-height: 16px;
    margin-bottom: 0;
  }
  .menu__item:not(:last-child) {
    margin-right: 10px;
  }
  .menu__item:hover > .main__link, .brand__list .menu__item:hover > .checkbox__label, .menu__item:hover > .brand__list-link {
    color: #001681;
  }
  .menu__item:hover > .main__link:after, .brand__list .menu__item:hover > .checkbox__label:after, .menu__item:hover > .brand__list-link:after {
    background-color: #001681;
  }
}

@media only screen and (max-width: 991px) {
  .menu__item:first-child .menu__dropdown {
    padding-bottom: 36px;
  }
}

.menu__item.is-active > .main__link, .brand__list .menu__item.is-active > .checkbox__label, .menu__item.is-active > .brand__list-link {
  color: #001681;
}

.menu__item.is-active > .main__link .icon, .brand__list .menu__item.is-active > .checkbox__label .icon, .menu__item.is-active > .brand__list-link .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media only screen and (min-width: 992px) {
  .menu__item.is-dropdown:hover .menu__dropdown {
    opacity: 1;
    visibility: visible;
  }
}

.menu__item.is-dropdown > .main__link .icon, .brand__list .menu__item.is-dropdown > .checkbox__label .icon, .menu__item.is-dropdown > .brand__list-link .icon {
  font-size: 24px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media only screen and (min-width: 992px) {
  .menu__item.is-dropdown > .main__link .icon, .brand__list .menu__item.is-dropdown > .checkbox__label .icon, .menu__item.is-dropdown > .brand__list-link .icon {
    display: none;
  }
}

.menu__item > .main__link, .brand__list .menu__item > .checkbox__label, .menu__item > .brand__list-link {
  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;
  width: 100%;
  line-height: 32px;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
  .menu__item > .main__link, .brand__list .menu__item > .checkbox__label, .menu__item > .brand__list-link {
    position: relative;
    display: inline-block;
    padding-bottom: 29px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .menu__item > .main__link:after, .brand__list .menu__item > .checkbox__label:after, .menu__item > .brand__list-link:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}

.menu__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
}

@media only screen and (min-width: 992px) {
  .menu__partners {
    padding-top: 24px;
    padding-bottom: 32px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 1200px) {
  .menu__partners {
    padding-top: 32px;
    padding-bottom: 40px;
  }
}

.menu__partners.desktop__mod {
  display: none;
}

@media only screen and (min-width: 992px) {
  .menu__partners.desktop__mod {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 2px solid #E7EBEF;
  }
}

.menu__partners.mobile__mod {
  padding-top: 12px;
  padding-bottom: 14px;
  margin-left: -16px;
  margin-right: -16px;
  border-top: 2px solid #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .menu__partners.mobile__mod {
    display: none;
  }
}

.menu__partners-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 991px) {
  .menu__partners-item:first-child {
    margin-left: 16px;
  }
  .menu__partners-item:last-child {
    margin-right: 16px;
  }
  .menu__partners-item:not(:first-child) {
    margin-left: 38px;
  }
}

.menu__partners-item a {
  display: block;
}

.menu__partners-item img {
  max-width: 120px;
  width: auto;
}

@media only screen and (max-width: 767px) {
  .menu__partners-item img {
    height: 25px;
  }
}

.menu__dropdown {
  display: none;
  position: relative;
  margin-top: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 2px solid #E7EBEF;
  border-bottom: 2px solid #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .menu__dropdown {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    border: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 15;
  }
}

@media only screen and (max-width: 991px) {
  .menu__dropdown .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.brands__wrap {
  max-height: 280px;
  margin-right: -12px;
  padding-right: 16px;
  overflow: auto;
}

@media only screen and (min-width: 992px) {
  .brands__wrap {
    position: relative;
    margin-top: 26px;
    margin-bottom: 28px;
    max-height: 340px;
    margin-right: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) {
  .brands__wrap.grid__mod {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 16px;
  }
}

@media only screen and (min-width: 992px) {
  .brands {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media only screen and (max-width: 991px) {
  .brands:not(.secondary__mod) .brands__item:first-child {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 1;
  }
}

.brands:not(.secondary__mod) .brands__item:first-child .main__link, .brands:not(.secondary__mod) .brands__item:first-child .brand__list .checkbox__label, .brand__list .brands:not(.secondary__mod) .brands__item:first-child .checkbox__label, .brands:not(.secondary__mod) .brands__item:first-child .brand__list-link {
  font-family: 'MontserratBold',sans-serif;
  color: #001681;
}

.brands.secondary__mod {
  -webkit-column-count: auto;
     -moz-column-count: auto;
          column-count: auto;
}

.brands.secondary__mod > .brands__item {
  margin-bottom: 12px;
}

.brands.secondary__mod > .brands__item:last-child {
  margin-bottom: 4px;
}

@media only screen and (min-width: 992px) {
  .brands.secondary__mod > .brands__item {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .brands.secondary__mod > .brands__item:last-child {
    margin-bottom: 12px;
  }
}

@media only screen and (min-width: 1200px) {
  .brands.secondary__mod .main__link, .brands.secondary__mod .brand__list .checkbox__label, .brand__list .brands.secondary__mod .checkbox__label, .brands.secondary__mod .brand__list-link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .brands.secondary__mod .main__link:hover, .brands.secondary__mod .brand__list .checkbox__label:hover, .brand__list .brands.secondary__mod .checkbox__label:hover, .brands.secondary__mod .brand__list-link:hover {
    color: #001681;
  }
}

.brands__item {
  padding-top: 1px;
  padding-bottom: 1px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}

@media only screen and (min-width: 992px) {
  .brands__item {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

.brands__item .text__mini, .brands__item .sort__link {
  display: inline-block;
  width: 100%;
  color: #505D68;
}

@media only screen and (min-width: 1200px) {
  .brands__item .text__mini, .brands__item .sort__link {
    width: auto;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .brands__item .text__mini:hover, .brands__item .sort__link:hover {
    color: #001681;
  }
}

.brands__item.is-active .main__link, .brands__item.is-active .brand__list .checkbox__label, .brand__list .brands__item.is-active .checkbox__label, .brands__item.is-active .brand__list-link {
  color: #001681;
}

.brands__item.is-active .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.brands__item .main__link.icon__mod .icon, .brands__item .brand__list .icon__mod.checkbox__label .icon, .brand__list .brands__item .icon__mod.checkbox__label .icon, .brands__item .icon__mod.brand__list-link .icon {
  margin-left: 4px;
  font-size: 24px;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.search {
  position: absolute;
  left: 0;
  right: 0;
  top: 58px;
  width: auto;
  padding: 0 16px 16px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
}

@media only screen and (min-width: 992px) {
  .search {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }
}

.search.is-show {
  opacity: 1;
  visibility: visible;
}

.search .input__container {
  margin-bottom: 0;
}

.search .form-control {
  padding-right: 60px;
}

.search__btn {
  position: absolute;
  top: 10px;
  right: 16px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #001681;
}

.search__btn:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 2px;
  width: 1px;
  height: 16px;
  background-color: #C1CDD6;
}

.search__modal {
  display: none;
  position: absolute;
  top: calc(100% - 16px);
  left: 0;
  right: 0;
  padding-left: 17px;
  padding-right: 17px;
  background-color: #fff;
  max-height: 372px;
  overflow: auto;
  -webkit-filter: drop-shadow(0px 13px 20px rgba(30, 31, 33, 0.1));
          filter: drop-shadow(0px 13px 20px rgba(30, 31, 33, 0.1));
  z-index: 10;
}

@media only screen and (min-width: 992px) {
  .search__modal {
    top: 100%;
    max-height: 360px;
  }
}

.search__modal .main__link, .search__modal .brand__list .checkbox__label, .brand__list .search__modal .checkbox__label, .search__modal .brand__list-link {
  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-top: 11px;
  padding-bottom: 11px;
  color: #1E1F21;
  border-bottom: 2px solid rgba(231, 235, 239, 0.3);
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.search__modal .main__link:hover, .search__modal .brand__list .checkbox__label:hover, .brand__list .search__modal .checkbox__label:hover, .search__modal .brand__list-link:hover {
  color: #001681;
}

.search__modal .main__link:hover .icon, .search__modal .brand__list .checkbox__label:hover .icon, .brand__list .search__modal .checkbox__label:hover .icon, .search__modal .brand__list-link:hover .icon {
  opacity: 1;
}

@media only screen and (min-width: 1200px) {
  .search__modal .main__link, .search__modal .brand__list .checkbox__label, .brand__list .search__modal .checkbox__label, .search__modal .brand__list-link {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom-color: #E7EBEF;
  }
}

.search__modal .main__link .icon, .search__modal .brand__list .checkbox__label .icon, .brand__list .search__modal .checkbox__label .icon, .search__modal .brand__list-link .icon {
  font-size: 24px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.search__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.search__product:not(:last-child) {
  border-bottom: 2px solid rgba(231, 235, 239, 0.3);
}

@media only screen and (min-width: 1200px) {
  .search__product {
    border-bottom-color: #E7EBEF;
  }
  .search__product:hover .text__semi {
    color: #001681;
  }
}

.search__product img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.search__product .text__semi {
  margin-bottom: 5px;
  color: #1E1F21;
}

@media only screen and (min-width: 1200px) {
  .search__product .text__semi {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
}

.search__info {
  margin-left: 16px;
}

.search__info .text__little {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  display: none;
}

.modal__thank {
  max-width: 564px;
  margin: 16px;
  padding: 48px 16px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .modal__thank {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media only screen and (min-width: 1200px) {
  .modal__thank {
    padding: 72px;
  }
}

.modal__thank .h3__title,
.modal__thank .text__little {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) {
  .modal__thank .h3__title,
  .modal__thank .text__little {
    margin-bottom: 32px;
  }
}

.modal__thank .main__link, .modal__thank .brand__list .checkbox__label, .brand__list .modal__thank .checkbox__label, .modal__thank .brand__list-link {
  color: #1E1F21;
  font-family: 'MontserratBold',sans-serif;
}

.modal__thank .main__link:not(.number__mod), .modal__thank .brand__list .checkbox__label:not(.number__mod), .brand__list .modal__thank .checkbox__label:not(.number__mod), .modal__thank .brand__list-link:not(.number__mod) {
  text-align: left;
}

.modal__thank .main__link.number__mod, .modal__thank .brand__list .number__mod.checkbox__label, .brand__list .modal__thank .number__mod.checkbox__label, .modal__thank .number__mod.brand__list-link {
  padding: 6px 12px;
  color: #001681;
  background-color: #E5E8F2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 12px;
}

.modal__img {
  margin-bottom: 32px;
}

@media only screen and (min-width: 1200px) {
  .modal__img {
    margin-bottom: 40px;
  }
}

.modal__img img {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: auto;
  max-width: 94px;
}

@media only screen and (min-width: 768px) {
  .modal__img img {
    max-width: 131px;
  }
}

.modal__order {
  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-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-top: 2px solid #E7EBEF;
  border-bottom: 2px solid #E7EBEF;
}

.modal__cart {
  width: 100%;
  height: 100vh;
  padding: 0 16px;
}

@media only screen and (min-width: 992px) {
  .modal__cart {
    max-width: 1172px;
    padding-left: 32px;
    padding-right: 32px;
    height: auto;
  }
}

.modal__cart .h3__title {
  padding-top: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-top: 2px solid #E7EBEF;
  border-bottom: 2px solid #E7EBEF;
}

.modal__cart .cart {
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .modal__cart .cart {
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .modal__cart .cart {
    height: auto;
  }
}

.modal__cart .cart__inner {
  max-height: calc(100vh - 216px);
}

@media only screen and (min-width: 992px) {
  .modal__cart .cart__inner {
    max-height: calc(100vh - 220px);
  }
}

@media only screen and (min-width: 1200px) {
  .modal__cart .cart__inner {
    max-height: 500px;
  }
}

.modal__cart .cart__holder {
  height: calc(100% - 216px);
}

@media only screen and (min-width: 1200px) {
  .modal__cart .cart__holder {
    height: auto;
  }
}

.modal__cart .cart__item:not(:last-child) {
  border-bottom: 2px solid #E7EBEF;
}

.modal__cart .fancybox-close-small {
  padding: 6px;
  top: 14px;
  right: 8px;
  background-color: #fff;
  opacity: 1;
}

@media only screen and (min-width: 992px) {
  .modal__cart .fancybox-close-small {
    right: 24px;
  }
}

.modal__cart .cart__heading {
  padding-right: 32px;
}

.fancybox-slide--html {
  padding: 0;
}

.fancybox-container .fancybox-bg {
  background: rgba(30, 31, 33, 0.2);
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: #1E1F21;
}

.select-hidden {
  display: none;
  visibility: hidden;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #505D68;
  width: 100%;
  height: 36px;
}

.select__styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #E5E8F2;
  padding: 6px 24px 6px 12px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}

.select__styled::-moz-selection {
  background-color: transparent;
}

.select__styled::selection {
  background-color: transparent;
}

.select__styled:after {
  content: "\E001";
  position: absolute;
  top: 50%;
  right: 6px;
  font-family: "Icons";
  font-size: 24px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.select__styled:hover {
  background-color: #dee2ef;
}

.select__styled:active, .select__styled.is-active {
  background-color: #d4d9ea;
}

.select__styled:active:after, .select__styled.is-active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.select__options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  max-height: 120px;
  list-style: none;
  background-color: #E5E8F2;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #001681 #C1CDD6;
  z-index: 999;
}

@media only screen and (min-width: 1200px) {
  .select__options {
    max-height: 150px;
  }
}

.select__options::-webkit-scrollbar {
  height: 1px;
  width: 4px;
}

.select__options::-webkit-scrollbar-track {
  width: 1px;
  background-color: #C1CDD6;
}

.select__options::-webkit-scrollbar-thumb {
  height: auto;
  background: #001681;
  width: 4px;
}

.select__options::-moz-scrollbar {
  height: 1px;
  width: 4px;
}

.select__options::-moz-scrollbar-track {
  background-color: #C1CDD6;
  width: 1px;
}

.select__options::-moz-scrollbar-thumb {
  height: auto;
  background: #001681;
  width: 4px;
}

.select__options::-ms-scrollbar {
  height: 1px;
  width: 4px;
}

.select__options::-ms-scrollbar-track {
  width: 1px;
  background-color: #C1CDD6;
}

.select__options::-ms-scrollbar-thumb {
  height: auto;
  background: #001681;
  width: 4px;
}

.select__options li {
  margin: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  text-indent: 15px;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}

.select__options li:not(:last-child) {
  border-bottom: 1px solid #c3cae1;
}

.select__options li::-moz-selection {
  background-color: transparent;
}

.select__options li::selection {
  background-color: transparent;
}

.select__options li.is-selected {
  color: #fff;
  background: #A1AEB7;
}

@media only screen and (min-width: 1200px) {
  .select__options li:hover {
    color: #fff;
    background: #A1AEB7;
  }
}

.select__options li[rel="hide"] {
  display: none;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 12px 14px;
}

@media only screen and (min-width: 1200px) {
  .card {
    position: relative;
    padding: 17px 17px 19px;
    border: 2px solid transparent;
    border-bottom: 0;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
  }
  .card.is-hover {
    border-color: #E7EBEF;
  }
  .card.is-hover .card__bottom {
    opacity: 1;
    visibility: visible;
  }
  .card.is-hover .card__title {
    color: #001681;
  }
}

.card .card__model {
  margin-bottom: 12px;
  display: block;
  font-size: 10px;
  line-height: 12px;
}

@media only screen and (min-width: 768px) {
  .card .card__model {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    line-height: 24px;
  }
  .card .card__model span {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .card .card__name:after {
    display: none;
  }
}

.card .btn {
  padding-left: 6px;
  padding-right: 6px;
}

@media only screen and (max-width: 767px) {
  .card .btn {
    font-size: 12px;
    line-height: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .card .btn .icon {
    margin-right: 4px;
    font-size: 14px;
  }
}

.card__img {
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1112px) {
  .card__img {
    margin-bottom: 19px;
  }
}

.card__img img {
  height: auto;
}

.card__title {
  margin-bottom: 4px;
  color: #001681;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (max-width: 767px) {
  .card__title {
    font-size: 14px;
    line-height: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .card__title {
    color: #1E1F21;
    margin-bottom: 5px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
}

.card__model {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  line-height: 24px;
}

.card__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card__name:after {
  content: '/';
  margin-left: 8px;
  margin-right: 8px;
  color: #C1CDD6;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  font-family: 'MontserratSemiBold',sans-serif;
  color: #1E1F21;
}

.card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 1200px) {
  .card__bottom {
    position: absolute;
    top: calc(100% - 21px);
    left: -2px;
    right: -2px;
    padding: 4px 17px 21px;
    background-color: #fff;
    border: 2px solid #E7EBEF;
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
  }
}

.card__bottom .btn {
  margin-top: 20px;
}

@media only screen and (min-width: 1200px) {
  .card__bottom .btn {
    margin-top: 28px;
  }
}

.price__count {
  margin-right: 4px;
}

.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  font-family: 'MontserratMedium',sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #505D68;
  letter-spacing: .08em;
  text-transform: uppercase;
  background-color: rgba(72, 192, 99, 0.1);
}

.badge .icon {
  vertical-align: middle;
  margin-right: 4px;
  font-size: 20px;
  color: #4CAF50;
}

.badge.in-order {
  background-color: #E5E8F2;
}

.badge.in-order .icon {
  color: #818B92;
}

.badge.out-stock {
  color: #fff;
  background-color: #EA425D;
}

.badge.out-stock .icon {
  color: currentColor;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pagination__link {
  display: block;
  width: 44px;
  height: 44px;
  font-family: 'MontserratBold',sans-serif;
  color: #818B92;
  line-height: 46px;
  text-align: center;
  letter-spacing: .03em;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

@media only screen and (min-width: 1200px) {
  .pagination__link:not(.is-active):not(.decor__mod):hover {
    color: #fff;
    background-color: #001681;
  }
}

.pagination__link.is-active {
  color: #fff;
  background-color: #001681;
}

.intro .h1__title {
  margin-bottom: 8px;
  color: #fff;
}

@media only screen and (min-width: 1200px) {
  .intro .h1__title {
    margin-bottom: 12px;
  }
}

.intro .swiper-slide {
  position: relative;
  height: auto;
}

.intro .swiper-slide:before, .intro .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.intro .swiper-slide:before {
  background-color: rgba(30, 31, 33, 0.78);
}

.intro .swiper-slide:after {
  background-image: url("../images/dot-grid.png");
}

.intro__controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  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;
}

.intro__controls .swiper-button-next,
.intro__controls .swiper-button-prev,
.intro__controls .swiper-pagination {
  position: static;
}

.intro__controls .swiper-pagination {
  width: auto;
  margin-left: 32px;
  margin-right: 32px;
  line-height: 1;
}

.intro__controls .swiper-button-next,
.intro__controls .swiper-button-prev {
  width: 24px;
  height: 24px;
  margin-top: 0;
  color: #fff;
}

@media only screen and (min-width: 1200px) {
  .intro__controls .swiper-button-next,
  .intro__controls .swiper-button-prev {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}

.intro__controls .swiper-button-next:after,
.intro__controls .swiper-button-prev:after {
  font-family: "Icons";
  font-size: 24px;
}

@media only screen and (min-width: 1200px) {
  .intro__controls .swiper-button-prev:hover {
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}

.intro__controls .swiper-button-prev:after {
  content: "\E003";
}

@media only screen and (min-width: 1200px) {
  .intro__controls .swiper-button-next:hover {
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }
}

.intro__controls .swiper-button-next:after {
  content: "\E004";
}

.intro__controls .swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  opacity: 1;
  border-radius: 8px;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.intro__controls .swiper-pagination-horizontal .swiper-pagination-bullet:not(:last-child) {
  margin-right: 8px;
}

@media only screen and (min-width: 1200px) {
  .intro__controls .swiper-pagination-horizontal .swiper-pagination-bullet {
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .intro__controls .swiper-pagination-horizontal .swiper-pagination-bullet:hover {
    background-color: #fff;
  }
}

.intro__controls .swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  background-color: #fff;
}

.intro__inner {
  padding-top: 64px;
  padding-bottom: 104px;
  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;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .intro__inner {
    padding-top: 80px;
    padding-bottom: 130px;
  }
}

@media only screen and (min-width: 1440px) {
  .intro__inner {
    padding-top: 120px;
    padding-bottom: 159px;
  }
}

.intro__inner > * {
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 1200px) {
  .intro__inner .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.intro__text {
  margin-bottom: 20px;
  font-family: 'MontserratSemiBold',sans-serif;
  color: #fff;
  opacity: .7;
}

@media only screen and (min-width: 1024px) {
  .intro__text {
    opacity: 1;
  }
}

@media only screen and (min-width: 1200px) {
  .intro__text {
    margin-bottom: 42px;
  }
}

.intro__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart__inner {
  margin-right: -14px;
  padding: 16px 16px 16px 0;
  overflow: auto;
}

@media only screen and (min-width: 992px) {
  .cart__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.cart__holder {
  border-top: 2px solid #E7EBEF;
  border-bottom: 2px solid #E7EBEF;
}

.cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cart__item:not(:first-child) {
  padding-top: 16px;
}

.cart__item:not(:last-child) {
  padding-bottom: 16px;
}

@media only screen and (min-width: 992px) {
  .cart__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cart__item:not(:first-child) {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .cart__item:not(:last-child) {
    padding-bottom: 20px;
  }
}

.cart__item .card__model {
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
  .cart__item .card__model {
    margin-bottom: 16px;
  }
}

.cart__heading {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cart__heading .main__link, .cart__heading .brand__list .checkbox__label, .brand__list .cart__heading .checkbox__label, .cart__heading .brand__list-link {
  color: #001681;
  font-family: 'MontserratBold',sans-serif;
}

@media only screen and (min-width: 1200px) {
  .cart__heading .main__link, .cart__heading .brand__list .checkbox__label, .brand__list .cart__heading .checkbox__label, .cart__heading .brand__list-link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .cart__heading .main__link:hover, .cart__heading .brand__list .checkbox__label:hover, .brand__list .cart__heading .checkbox__label:hover, .cart__heading .brand__list-link:hover {
    color: #1936c5;
  }
}

.cart__weight {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16px;
  font-family: 'MontserratMedium',sans-serif;
  color: #1E1F21;
  letter-spacing: .03em;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
  .cart__weight {
    margin-bottom: 16px;
  }
}

.cart__top {
  margin-bottom: 2px;
}

@media only screen and (min-width: 992px) {
  .cart__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.cart__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 992px) {
  .cart__bottom {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.cart__bottom .icon {
  font-size: 24px;
}

.cart__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .cart__img img {
    width: 63px;
    height: 63px;
  }
}

.cart__body {
  position: relative;
  padding-bottom: 41px;
  margin-left: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (min-width: 992px) {
  .cart__body {
    margin-left: 24px;
  }
}

@media only screen and (min-width: 1200px) {
  .cart__body {
    padding-bottom: 0;
  }
}

.cart__body .price {
  margin-bottom: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #001681;
}

@media only screen and (min-width: 1200px) {
  .cart__body .price {
    position: static;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.cart__title {
  color: #1E1F21;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (min-width: 1200px) {
  .cart__title {
    font-size: 16px;
    line-height: 26px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .cart__title:hover {
    color: #001681;
  }
}

.cart__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 74px;
  margin-right: 16px;
  border: 1px solid #E7EBEF;
}

.cart__counter .icon {
  font-size: 16px;
  color: #818B92;
}

.cart__input {
  width: 36px;
  height: 24px;
  text-align: center;
  font-family: 'MontserratBold',sans-serif;
  color: #505D68;
  border: 0;
  background-color: transparent;
}

.cart__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: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.btn__remove {
  width: 24px;
  height: 24px;
  color: #C1CDD6;
  font-size: 24px;
}

.cart__total {
  color: #1E1F21;
}

.cart__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .cart__btns {
    -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;
  }
}

@media only screen and (min-width: 768px) {
  .cart__btns .transparent__mod {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding-left: 0;
    padding-right: 0;
  }
}

.cart__footer,
.cart__heading {
  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;
}

.cart__footer {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media only screen and (min-width: 768px) {
  .cart__footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.cart__footer .main__title {
  color: #001681;
}

.tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 17px;
  padding-bottom: 10px;
  overflow: auto;
}

@media only screen and (min-width: 1200px) {
  .tabs__list {
    padding-bottom: 0;
    margin-bottom: 46px;
  }
}

.tabs__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.tabs__link {
  display: block;
  padding: 12px 24px;
  font-family: 'MontserratMedium',sans-serif;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s, color 0.3s;
  -o-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
}

@media only screen and (min-width: 1200px) {
  .tabs__link:hover {
    color: #001681;
  }
}

.tabs__link.is-active {
  color: #001681;
  border-color: currentColor;
}

.tabs__panel:not(:first-child) {
  display: none;
}

@media only screen and (min-width: 992px) {
  .tabs__row {
    display: grid;
    grid-template-columns: minmax(200px, 506px) minmax(200px, 586px);
    grid-column-gap: 41px;
  }
}

@media only screen and (min-width: 1366px) {
  .tabs__row {
    grid-column-gap: 82px;
  }
}

.tabs__col:not(:last-child) {
  margin-bottom: 32px;
}

@media only screen and (min-width: 992px) {
  .tabs__col:not(:last-child) {
    margin-bottom: 0;
  }
}

.tabs__col img {
  width: auto;
  height: auto;
}

.news {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media only screen and (min-width: 1200px) {
  .news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1440px) {
  .news {
    padding-top: 150px;
    padding-bottom: 108px;
  }
}

@media only screen and (min-width: 1112px) {
  .news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news__left {
  padding-bottom: 56px;
}

@media only screen and (min-width: 1112px) {
  .news__left {
    width: 75%;
    max-width: 684px;
    padding-bottom: 0;
    padding-right: 32px;
  }
}

@media only screen and (min-width: 1200px) {
  .news__left {
    padding-right: 102px;
  }
}

.news__left .h1__title {
  margin-bottom: 32px;
}

@media only screen and (min-width: 1200px) {
  .news__left .h1__title {
    margin-bottom: 56px;
  }
}

.news__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 24px;
}

@media only screen and (min-width: 1200px) {
  .news__cards {
    grid-column-gap: 2px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    grid-row-gap: 0;
  }
}

.news__cards .card__img {
  max-width: 252px;
}

.news__feed {
  padding-top: 56px;
  border-top: 2px solid #E7EBEF;
}

@media only screen and (min-width: 1112px) {
  .news__feed {
    width: 53%;
    padding-top: 10px;
    padding-left: 32px;
    border-top: 0;
    border-left: 2px solid #E7EBEF;
  }
}

@media only screen and (min-width: 1200px) {
  .news__feed {
    padding-left: 60px;
  }
}

.news__feed .h1__title {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) {
  .news__feed .h1__title {
    margin-bottom: 44px;
  }
}

.news__feed .btn {
  margin-top: 40px;
}

@media only screen and (min-width: 1112px) {
  .news__feed .btn {
    display: none;
  }
}

.feeds__item:nth-child(5) ~ .feeds__item {
  display: none;
}

@media only screen and (min-width: 1112px) {
  .feeds__item:nth-child(5) ~ .feeds__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.feeds.is-show .feeds__item:nth-child(5) ~ .feeds__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feeds__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;
}

.feeds__item:not(:last-child) {
  margin-bottom: 24px;
}

.feeds__item .text__semi {
  margin-bottom: 10px;
  color: #1E1F21;
}

.feeds__item a.text__semi {
  color: #001681;
}

@media only screen and (min-width: 1200px) {
  .feeds__item a.text__semi:hover {
    text-decoration: underline;
  }
}

.store {
  position: relative;
  padding-top: 25px;
  padding-bottom: 32px;
}

@media only screen and (min-width: 1440px) {
  .store {
    padding-top: 70px;
    padding-bottom: 102px;
  }
}

.store:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-image: url("../images/store-grid.png");
  background-repeat: no-repeat;
}

.store > * {
  position: relative;
  z-index: 1;
}

.store__top {
  padding-bottom: 56px;
}

@media only screen and (min-width: 1024px) {
  .store__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 79px;
  }
}

.store__top .h1__title {
  margin-bottom: 15px;
}

@media only screen and (min-width: 1024px) {
  .store__top .h1__title {
    width: 295px;
    margin-bottom: 0;
  }
}

.store__subtitle {
  margin-bottom: 32px;
  font-family: 'MontserratSemiBold',sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #1E1F21;
}

@media only screen and (min-width: 1024px) {
  .store__subtitle {
    max-width: 353px;
  }
}

@media only screen and (min-width: 1024px) {
  .store__info {
    width: calc(100% - 295px);
    padding-top: 5px;
    padding-left: 45px;
    border-left: 2px solid #E7EBEF;
  }
}

@media only screen and (min-width: 1200px) {
  .store__info {
    padding-left: 61px;
  }
}

@media only screen and (min-width: 1024px) {
  .store__info .btn {
    display: none;
  }
}

.store__text {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1024px) {
  .store__text {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .store__text {
    -webkit-column-gap: 118px;
       -moz-column-gap: 118px;
            column-gap: 118px;
  }
}

.store__text.is-show p:nth-child(3) ~ p {
  display: block;
}

.store__text p {
  margin-bottom: 10px;
}

.store__text p:nth-child(3) ~ p {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .store__text p:nth-child(3) ~ p {
    display: block;
  }
}

.store__text p:last-child {
  margin-bottom: 0;
}

.with {
  padding: 40px 24px;
  background-color: #001681;
}

@media only screen and (min-width: 992px) {
  .with {
    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;
  }
}

@media only screen and (min-width: 1200px) {
  .with {
    padding: 48px;
  }
}

.with .h4__title {
  margin-bottom: 6px;
  color: #fff;
}

.with .text__semi {
  margin-bottom: 32px;
  color: #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .with .text__semi {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .with__info {
    max-width: 80%;
  }
}

.partners {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media only screen and (min-width: 768px) {
  .partners {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.partners img {
  width: auto;
}

.partners .swiper-slide {
  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;
}

@media only screen and (max-width: 1024px) {
  .partners .swiper {
    overflow: visible;
  }
}

.partners .container {
  position: relative;
}

.partners .swiper-button-next,
.partners .swiper-button-prev {
  display: none;
}

@media only screen and (min-width: 1280px) {
  .partners .swiper-button-next,
  .partners .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.partners .swiper-button-prev {
  left: -24px;
}

.partners .swiper-button-next {
  right: -24px;
}

.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: bannermove 50s linear infinite;
          animation: bannermove 50s linear infinite;
}

.partners__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.partners__item:not(:last-child) {
  margin-right: 38px;
}

@media only screen and (min-width: 1200px) {
  .partners__item:not(:last-child) {
    margin-right: 117px;
  }
}

@media only screen and (max-width: 767px) {
  .partners__item img {
    width: auto;
    height: 25px;
  }
}

@-webkit-keyframes bannermove {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes bannermove {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.catalog__intro {
  position: relative;
  padding-bottom: 56px;
  margin-bottom: 8px;
  background-color: #E7EBEF;
}

@media only screen and (min-width: 1200px) {
  .catalog__intro {
    padding-bottom: 65px;
    margin-bottom: 94px;
  }
}

.catalog__intro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/catalog/grid.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.catalog__intro.is-filters-hide {
  padding-bottom: 0;
  margin-bottom: 0;
  background-color: transparent;
}

.catalog__intro.is-filters-hide:before {
  display: none;
}

.catalog__intro.is-filters-hide .breadcrumbs {
  margin-bottom: 0;
}

.catalog__intro > * {
  position: relative;
  z-index: 1;
}

.catalog__intro .h1__title {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1200px) {
  .catalog__intro .h1__title {
    margin-bottom: 20px;
  }
}

.catalog__intro .content {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) {
  .catalog__intro .content {
    margin-bottom: 28px;
  }
}

@media only screen and (min-width: 1200px) {
  .catalog__intro .content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.catalog__intro .breadcrumbs {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
  .catalog__intro .breadcrumbs {
    margin-bottom: 29px;
  }
}

.catalog__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .catalog__holder {
    -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;
  }
}

@media only screen and (min-width: 768px) {
  .catalog__left {
    max-width: 480px;
  }
}

@media only screen and (min-width: 900px) {
  .catalog__left {
    max-width: 550px;
  }
}

@media only screen and (min-width: 1200px) {
  .catalog__left {
    max-width: 650px;
  }
}

.catalog__logo {
  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: 0;
      -ms-flex-order: -1;
          order: -1;
  height: 130px;
  margin-bottom: 32px;
  background-color: #fff;
}

@media only screen and (min-width: 768px) {
  .catalog__logo {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 230px;
    height: 200px;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 900px) {
  .catalog__logo {
    width: 293px;
    height: 270px;
  }
}

.catalog__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 640px) {
  .catalog__logo img {
    width: 96px;
    height: 48px;
  }
}

.category {
  padding-top: 38px;
  padding-bottom: 28px;
}

@media only screen and (min-width: 1200px) {
  .category {
    padding-top: 56px;
    padding-bottom: 75px;
  }
}

.category .swiper {
  margin-right: -16px;
  padding-right: 16px;
}

@media only screen and (min-width: 1112px) {
  .category .swiper {
    margin-right: 0;
    padding-right: 0;
  }
}

.category .swiper-slide {
  height: auto;
}

.category .swiper-slide .category__item {
  border: 2px solid #E7EBEF;
}

.category .swiper-slide:not(:last-child) .category__item {
  border-right: 0;
}

.category__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: calc(100% - 52px);
  padding: 32px 16px 16px;
}

@media only screen and (min-width: 1200px) {
  .category__item {
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .category__item:hover {
    background-color: #E7EBEF;
  }
  .category__item:hover .main__title {
    color: #001681;
  }
  .category__item:hover .category__img:before {
    opacity: 0;
  }
}

.category__item .main__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 51px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.category__img {
  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;
  height: 135px;
}

.category__img:before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  right: 0;
  background-color: #E7EBEF;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.category__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.catalog {
  padding-top: 28px;
  padding-bottom: 56px;
}

@media only screen and (min-width: 1200px) {
  .catalog {
    padding-top: 75px;
    padding-bottom: 150px;
  }
}

.catalog .h2__title {
  margin-bottom: 32px;
}

@media only screen and (min-width: 1200px) {
  .catalog .h2__title {
    margin-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) {
  .catalog__bottom {
    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;
  }
}

.catalog__bottom .btn {
  margin-bottom: 32px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (min-width: 768px) {
  .catalog__bottom .btn {
    width: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
    margin-left: 8px;
  }
}

.catalog__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 24px;
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .catalog__cards {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    grid-column-gap: 2px;
    grid-row-gap: 0;
  }
}

@media only screen and (min-width: 992px) {
  .catalog__cards {
    margin-bottom: 48px;
  }
}

.filters__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  background-color: #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .filters__heading {
    display: none;
  }
}

.filters__heading .main__link, .filters__heading .brand__list .checkbox__label, .brand__list .filters__heading .checkbox__label, .filters__heading .brand__list-link {
  font-family: 'MontserratBold',sans-serif;
  color: #1E1F21;
}

@media only screen and (min-width: 992px) {
  .filters__heading .main__link, .filters__heading .brand__list .checkbox__label, .brand__list .filters__heading .checkbox__label, .filters__heading .brand__list-link {
    color: #505D68;
    font-family: 'MontserratRegular',sans-serif;
    letter-spacing: normal;
  }
}

.filters__close {
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  font-size: 24px;
  color: #1E1F21;
}

@media only screen and (min-width: 992px) {
  .filters__close {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .catalog__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.catalog__aside,
.sort {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 5;
}

@media only screen and (min-width: 992px) {
  .catalog__aside,
  .sort {
    position: static;
  }
}

.catalog__aside.is-open,
.sort.is-open {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

@media only screen and (min-width: 992px) {
  .sort {
    -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;
    margin-bottom: 50px;
  }
}

.sort > .main__link, .brand__list .sort > .checkbox__label, .sort > .brand__list-link {
  display: none;
}

@media only screen and (min-width: 992px) {
  .sort > .main__link, .brand__list .sort > .checkbox__label, .sort > .brand__list-link {
    display: block;
  }
}

.sort__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  border-top: 1px solid #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .sort__btns {
    display: none;
  }
}

.sort__btns .transparent__mod {
  color: #818B92;
}

.sort__list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (min-width: 992px) {
  .sort__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .sort__item:last-child {
    margin-left: 4px;
  }
}

@media only screen and (max-width: 991px) {
  .sort__item:last-child .sort__link {
    border-bottom-color: transparent;
  }
}

@media only screen and (min-width: 992px) {
  .sort__item.icon__mod .sort__link {
    padding: 7px;
    color: #E7EBEF;
    border-color: #E7EBEF;
  }
  .sort__item.icon__mod .sort__link.is-active {
    color: #001681;
    border-color: #001681;
  }
}

@media only screen and (min-width: 1200px) {
  .sort__item.icon__mod .sort__link:not(.is-active):hover {
    color: #001681;
    border-color: #001681;
  }
}

.sort__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  border-bottom: 2px solid #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .sort__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 24px;
    border: 1px solid transparent;
  }
}

@media only screen and (min-width: 1200px) {
  .sort__link {
    -webkit-transition: color 0.3s, border-color 0.3s;
    -o-transition: color 0.3s, border-color 0.3s;
    transition: color 0.3s, border-color 0.3s;
  }
  .sort__link:hover {
    color: #001681;
  }
}

.sort__link.is-active {
  color: #fff;
  background-color: #001681;
  border-bottom-color: transparent;
}

@media only screen and (min-width: 992px) {
  .sort__link.is-active {
    color: #001681;
    border-color: #001681;
    background-color: transparent;
  }
}

.sort__link .icon {
  display: none;
}

@media only screen and (min-width: 992px) {
  .sort__link .icon {
    display: block;
    font-size: 24px;
  }
}

@media only screen and (min-width: 992px) {
  .sort__text {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .catalog__aside {
    width: 250px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.catalog__aside > .main__link, .brand__list .catalog__aside > .checkbox__label, .catalog__aside > .brand__list-link {
  display: none;
}

@media only screen and (min-width: 992px) {
  .catalog__aside > .main__link, .brand__list .catalog__aside > .checkbox__label, .catalog__aside > .brand__list-link {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .catalog__right {
    width: calc(100% - 250px);
    margin-left: 45px;
  }
}

.filter__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  border: 1px solid #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .filter__btns {
    display: none;
  }
}

.filter__btns .btn {
  width: 50%;
  padding: 13px 10px;
  font-family: 'MontserratMedium',sans-serif;
  color: #505D68;
}

.filter__btns .btn:not(:last-child) {
  border-right: 1px solid #E7EBEF;
}

.filter__subtext {
  position: relative;
}

.filter__subtext.is-active:after {
  content: '';
  position: absolute;
  top: 5px;
  right: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #001681;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.catalog__spoilers {
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
}

@media only screen and (min-width: 992px) {
  .catalog__spoilers {
    padding: 0;
  }
}

.spoiler {
  padding: 12px 0;
  border-bottom: 2px solid #E7EBEF;
}

@media only screen and (min-width: 992px) {
  .spoiler {
    padding: 24px 0;
  }
  .spoiler:first-child {
    border-top: 2px solid #E7EBEF;
  }
}

.spoiler__btn {
  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;
  width: 100%;
  font-family: 'MontserratSemiBold',sans-serif;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.spoiler__btn:focus-visible {
  color: #001681;
}

@media only screen and (min-width: 1200px) {
  .spoiler__btn:hover {
    color: #001681;
  }
}

.spoiler__btn .icon {
  margin-left: 12px;
  font-size: 24px;
  color: #818B92;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.spoiler__btn.is-open {
  color: #001681;
}

.spoiler__btn.is-open .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.spoiler__panel {
  display: none;
  padding-right: 12px;
  margin-top: 18px;
  max-height: 286px;
  overflow: auto;
}

@media only screen and (min-width: 992px) {
  .spoiler__panel {
    margin-top: 24px;
  }
}

.brand__list .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brand__list .checkbox:not(:last-child) {
  margin-bottom: 14px;
}

.brand__list-link {
  margin-left: 4px;
  color: #818B92;
}

@media only screen and (min-width: 1200px) {
  .brand__list-link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .brand__list-link:hover {
    color: #001681;
  }
}

.slider__thumbs {
  display: none;
}

@media only screen and (min-width: 1112px) {
  .slider__thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 2px;
    margin-bottom: -2px;
  }
}

@media only screen and (min-width: 1112px) {
  .slider__thumbs .swiper-slide {
    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: 111px;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom-color 0.3s;
    -o-transition: border-bottom-color 0.3s;
    transition: border-bottom-color 0.3s;
  }
  .slider__thumbs .swiper-slide.swiper-slide-thumb-active {
    border-bottom-color: #001681;
  }
}

.product__slider {
  position: relative;
  margin-bottom: 24px;
  border: 2px solid #E7EBEF;
}

@media only screen and (min-width: 1112px) {
  .product__slider {
    margin-bottom: 0;
  }
}

.product__slider img {
  height: auto;
  max-height: 100%;
}

.product__slider .swiper-slide {
  cursor: pointer;
}

.product__slider .swiper-button-prev {
  left: 10px;
}

@media only screen and (min-width: 1112px) {
  .product__slider .swiper-button-prev {
    left: 16px;
  }
}

.product__slider .swiper-button-next {
  right: 10px;
}

@media only screen and (min-width: 1112px) {
  .product__slider .swiper-button-next {
    right: 16px;
  }
}

.btn__gallery {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  color: #505D68;
  font-size: 24px;
  z-index: 10;
}

@media only screen and (min-width: 1112px) {
  .btn__gallery {
    top: 16px;
    right: 16px;
  }
}

.slider__top {
  padding: 18px 21px;
}

@media only screen and (min-width: 1112px) {
  .slider__top {
    padding: 28px 31px 14px;
  }
}

.slider__top .swiper-slide {
  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;
}

.slider__top .swiper-slide a {
  pointer-events: none;
}

.fancybox-slide--image {
  padding-left: 16px;
  padding-right: 16px;
}

.fancybox-button--thumbs,
.fancybox-button--zoom,
.fancybox-button--play {
  display: none !important;
}

.product__info .badge {
  margin-bottom: 16px;
}

.product__info .h2__title {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1200px) {
  .product__info .h2__title {
    margin-bottom: 24px;
  }
}

.product__info .card__model {
  margin-bottom: 12px;
}

.product__info .card__model span:not(.card__name) {
  color: #001681;
}

.product__info .card__name {
  color: #1E1F21;
}

.product__bottom {
  padding-top: 20px;
  padding-bottom: 28px;
  margin-top: 24px;
  margin-bottom: 32px;
  border-top: 2px solid #E7EBEF;
  border-bottom: 2px solid #E7EBEF;
}

.product__bottom .select {
  width: 257px !important;
}

.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 16px;
}

.product__price .price {
  margin-left: 7px;
  margin-bottom: 0;
  font-family: 'MontserratBold',sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.product__price .text__mini, .product__price .sort__link {
  margin-bottom: 7px;
}

.products {
  padding-top: 56px;
}

@media only screen and (min-width: 1200px) {
  .products {
    padding-top: 80px;
  }
}

.products:not(:last-child) {
  padding-bottom: 0;
}

.products:last-child {
  padding-bottom: 56px;
}

@media only screen and (min-width: 1200px) {
  .products:last-child {
    padding-bottom: 150px;
  }
}

.products .swiper {
  position: relative;
  margin-right: -16px;
  overflow: visible;
}

@media only screen and (min-width: 992px) {
  .products .swiper {
    margin-right: 0;
  }
}

.products .swiper:before, .products .swiper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 10;
}

.products .swiper:before {
  left: -100%;
  right: 100%;
}

.products .swiper:after {
  left: 100%;
  right: -100%;
}

@media only screen and (min-width: 1200px) {
  .product {
    padding-bottom: 70px;
  }
}

.product .content p {
  font-size: 14px;
  line-height: 24px;
}

.product .content p:not(:last-of-type) {
  margin-bottom: 24px;
}

.product__top {
  padding-bottom: 56px;
}

@media only screen and (min-width: 1112px) {
  .product__top {
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    grid-template-columns: minmax(200px, 506px) minmax(200px, 587px);
    grid-column-gap: 40px;
  }
}

@media only screen and (min-width: 1366px) {
  .product__top {
    display: grid;
    grid-template-columns: minmax(200px, 506px) minmax(200px, 587px);
    grid-column-gap: 81px;
  }
}

.product__table {
  width: 100%;
  border-collapse: collapse;
}

.product__table tr {
  border-top: 2px solid #E7EBEF;
}

.product__table tr:last-child {
  border-bottom: 2px solid #E7EBEF;
}

@media only screen and (max-width: 640px) {
  .product__table tr {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.product__table td {
  padding: 14px 0;
  color: #1E1F21;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 640px) {
  .product__table td {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
  .product__table td.text__semi {
    padding-bottom: 2px;
  }
}

@media only screen and (min-width: 641px) {
  .product__table .text__semi {
    width: 350px;
  }
}

@media only screen and (min-width: 768px) {
  .downloads {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    grid-gap: 2px;
  }
}

@media only screen and (min-width: 1200px) {
  .downloads {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

.downloads__item {
  padding: 16px;
  border: 2px solid #E7EBEF;
}

.downloads__item:not(:last-child) {
  margin-bottom: 2px;
}

@media only screen and (min-width: 768px) {
  .downloads__item:not(:last-child) {
    margin-bottom: 0;
  }
}

.downloads__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 24px;
  color: #1E1F21;
}

.downloads__text .icon {
  margin-right: 8px;
  font-size: 24px;
}

.downloads__document {
  max-width: calc(100% - 32px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.terms {
  position: relative;
  padding-bottom: 112px;
}

@media only screen and (min-width: 1440px) {
  .terms {
    padding-bottom: 150px;
  }
}

.terms:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-image: url("../images/store-grid.png");
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1200px) {
  .terms:before {
    height: calc(100% - 150px);
  }
}

.terms > * {
  position: relative;
  z-index: 1;
}

.terms .h1__title {
  margin-bottom: 24px;
}

@media only screen and (min-width: 992px) {
  .terms .h1__title {
    max-width: 335px;
    margin-bottom: 0;
  }
}

.terms__row {
  margin-bottom: 32px;
}

@media only screen and (min-width: 992px) {
  .terms__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 85px;
  }
}

@media only screen and (min-width: 992px) {
  .terms__row .content {
    max-width: 584px;
  }
}

.accordion {
  background-color: #fff;
}

.accordion:not(:last-child) {
  margin-bottom: 2px;
}

.accordion__btn {
  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;
  width: 100%;
  padding: 18px 16px;
  margin: 0;
  font-family: 'MontserratMedium',sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #1E1F21;
  background-color: transparent;
  border: 2px solid #E7EBEF;
  text-align: left;
  -webkit-transition: color 0.3s, border-bottom-color 0.3s;
  -o-transition: color 0.3s, border-bottom-color 0.3s;
  transition: color 0.3s, border-bottom-color 0.3s;
}

.accordion__btn:focus {
  border: 2px solid #E7EBEF;
}

.accordion__btn:focus-visible {
  color: #001681;
}

.accordion__btn:focus-visible .icon {
  color: #001681;
}

.accordion__btn .icon {
  margin-left: 12px;
  font-size: 24px;
  color: #818B92;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  -o-transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.accordion__btn.is-open {
  color: #001681;
  border-bottom-color: transparent;
}

.accordion__btn.is-open .icon {
  color: #001681;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion__panel {
  display: none;
  padding: 0 20px 20px;
  border: 2px solid #E7EBEF;
  border-top: 0;
  font-size: 14px;
  line-height: 24px;
}

.checkout {
  position: relative;
  padding-top: 24px;
  padding-bottom: 56px;
}

@media only screen and (min-width: 992px) {
  .checkout {
    padding-top: 48px;
    padding-bottom: 72px;
  }
}

@media only screen and (min-width: 1200px) {
  .checkout {
    padding-bottom: 147px;
  }
  .checkout:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 2px;
    background-color: #E7EBEF;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.checkout .h2__title {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
  .checkout .h2__title {
    margin-bottom: 32px;
  }
}

@media only screen and (min-width: 992px) {
  .checkout .cart {
    width: 477px;
    margin-top: -20px;
  }
}

@media only screen and (min-width: 1200px) {
  .checkout .cart {
    padding-right: 18px;
  }
}

.checkout .cart__inner {
  max-height: 404px;
}

@media only screen and (min-width: 992px) {
  .checkout .cart__inner {
    max-height: 320px;
  }
}

@media only screen and (min-width: 992px) {
  .checkout .cart__bottom {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

@media only screen and (min-width: 992px) {
  .checkout .card__model {
    margin-bottom: 4px;
  }
}

.checkout .cart__body {
  margin-left: 8px;
}

@media only screen and (min-width: 992px) {
  .checkout .cart__btns {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .checkout .cart__heading {
    padding-top: 0;
    padding-bottom: 24px;
  }
}

.checkout .cart__title {
  font-size: 14px;
  line-height: 20px;
}

.checkout .cart__weight {
  margin-bottom: 12px;
}

@media only screen and (min-width: 1200px) {
  .checkout .cart__weight {
    margin-bottom: 10px;
  }
}

.checkout .main__link.desktop__mod, .checkout .brand__list .desktop__mod.checkbox__label, .brand__list .checkout .desktop__mod.checkbox__label, .checkout .desktop__mod.brand__list-link {
  display: none;
}

@media only screen and (min-width: 992px) {
  .checkout .main__link.desktop__mod, .checkout .brand__list .desktop__mod.checkbox__label, .brand__list .checkout .desktop__mod.checkbox__label, .checkout .desktop__mod.brand__list-link {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .checkout__row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 76px;
  }
}

@media only screen and (max-width: 767px) {
  .checkout__row .btn {
    width: 100%;
  }
}

.checkout__row .btn.desktop__mod {
  display: none;
}

@media only screen and (min-width: 992px) {
  .checkout__row .btn.desktop__mod {
    display: block;
  }
}

.checkout__info {
  margin-bottom: 40px;
}

@media only screen and (min-width: 992px) {
  .checkout__info {
    width: 100%;
    max-width: 453px;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .checkout__info .textarea {
    margin-bottom: 32px;
  }
}

.checkout__info .h5__title {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1024px) {
  .checkout__info .h5__title {
    margin-bottom: 24px;
  }
}

.contacts .h1__title {
  margin-bottom: 21px;
}

@media only screen and (min-width: 1200px) {
  .contacts .h1__title {
    margin-bottom: 40px;
  }
}

.contacts__row {
  padding-bottom: 56px;
}

@media only screen and (min-width: 992px) {
  .contacts__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 1440px) {
  .contacts__row {
    padding-bottom: 150px;
  }
}

.contacts__info {
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) {
  .contacts__info {
    margin-bottom: 0;
    width: 345px;
    padding-top: 73px;
  }
}

.contacts__info .h5__title {
  margin-bottom: 8px;
}

.contacts__info .text__little {
  margin-bottom: 32px;
}

@media only screen and (min-width: 1200px) {
  .contacts__info .text__little {
    margin-bottom: 48px;
  }
}

.contacts__item {
  line-height: 24px;
}

.contacts__item:not(:last-child) {
  margin-bottom: 10px;
}

.contacts__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #1E1F21;
}

@media only screen and (min-width: 1200px) {
  .contacts__link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .contacts__link:hover {
    color: #001681;
  }
}

.contacts__link .icon {
  margin-right: 12px;
  font-size: 24px;
  color: #001681;
}

.feedback {
  padding: 24px 24px 26px 22px;
  border: 2px solid #E7EBEF;
  border-top-color: #001681;
  display: none;
  user-select: none;
}

@media only screen and (min-width: 992px) {
  .feedback {
    max-width: 586px;
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .feedback {
    padding: 56px 56px 80px;
  }
}

.feedback .h5__title {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1200px) {
  .feedback .h5__title {
    margin-bottom: 24px;
  }
}

.feedback .textarea {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
  .feedback .textarea {
    margin-bottom: 32px;
  }
}

.newsletter {
  padding-bottom: 48px;
}

@media only screen and (min-width: 992px) {
  .newsletter {
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 1200px) {
  .newsletter {
    padding-bottom: 120px;
  }
}

.newsletter .h1__title {
  margin-bottom: 32px;
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .newsletter .h1__title {
    margin-bottom: 56px;
  }
}

.newsletter__row {
  margin-bottom: 32px;
}

@media only screen and (min-width: 1200px) {
  .newsletter__row {
    margin-bottom: 48px;
  }
}

.newsletter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E7EBEF;
}

@media only screen and (min-width: 1024px) {
  .newsletter__item {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media only screen and (min-width: 1200px) {
  .newsletter__item {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.newsletter__item:first-child {
  border-top: 1px solid #E7EBEF;
}

.newsletter__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60%;
}

.newsletter__title {
  margin-bottom: 16px;
  font-family: 'MontserratSemiBold',sans-serif;
  color: #1E1F21;
  font-size: 14px;
  line-height: 1.3;
}

@media only screen and (min-width: 1200px) {
  .newsletter__title {
    font-size: 22px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .newsletter__title:hover {
    color: #001681;
  }
}

.newsletter__img {
  margin-left: 16px;
  width: 150px;
  height: 80px;
}

@media only screen and (min-width: 768px) {
  .newsletter__img {
    width: 200px;
    height: 100px;
  }
}

@media only screen and (min-width: 1200px) {
  .newsletter__img {
    width: 250px;
    height: 150px;
    overflow: hidden;
  }
  .newsletter__img:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.newsletter__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 1200px) {
  .newsletter__img img {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
  }
}

.newsletter__period {
  font-family: 'MontserratSemiBold',sans-serif;
  font-size: 14px;
}

@media only screen and (min-width: 1200px) {
  .newsletter__period {
    font-size: 16px;
  }
}

.article {
  padding-bottom: 48px;
}

@media only screen and (min-width: 992px) {
  .article {
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 1200px) {
  .article {
    padding-bottom: 40px;
  }
}

.news__card {
  display: block;
}

@media only screen and (min-width: 1200px) {
  .news__card:hover .main__title {
    color: #001681;
  }
  .news__card:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news__card-img {
  display: block;
  margin-bottom: 16px;
  overflow: hidden;
}

.news__card-img img {
  width: auto;
  height: auto;
}

@media only screen and (min-width: 1200px) {
  .news__card-img img {
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
  }
}

@media only screen and (max-width: 767px) {
  .products.news__mod {
    padding-top: 0;
  }
}

.products.news__mod .swiper {
  margin-right: 0;
}

.section__search.empty__mod {
  padding-bottom: 48px;
}

@media only screen and (min-width: 1200px) {
  .section__search.empty__mod {
    padding-bottom: 100px;
  }
}

.section__search .h2__title {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1200px) {
  .section__search .h2__title {
    margin-bottom: 24px;
  }
}

.section__search .search__form {
  max-width: 560px;
}

.search__text {
  font-size: 14px;
}

.error__inner {
  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-top: 18px;
  color: #1E1F21;
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .error__inner {
    padding-top: 0;
  }
}

.error__inner img {
  margin-bottom: 19px;
  max-width: 750px;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 1440px) {
  .error__inner img {
    margin-bottom: 53px;
    max-width: 851px;
  }
}

.error__inner .h4__title {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1440px) {
  .error__inner .h4__title {
    margin-bottom: 32px;
    font-size: 42px;
    line-height: 52px;
  }
}

.error__inner a {
  font-family: 'MontserratSemiBold',sans-serif;
  color: #001681;
}

.error__text {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1440px) {
  .error__text {
    margin-bottom: 53px;
  }
}

.error__text p:not(:last-child) {
  margin-bottom: 12px;
}
