html {
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  display: none;
  border-radius: 50%;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
  z-index: 100;
}

.modal-popup-block {
  background: #FFF;
  max-width: 600px;
  margin: auto;
  padding: 30px;
  text-align: center;
  position: relative;
}

.modal-popup-block .mfp-close {
  color: #000 !important;
}

.menu-toggle {
  margin: 10px 0;
  width: 50px;
  height: 45px;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.icon-toggle {
  width: 30px;
  height: 25px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-toggle span {
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 2px;
  background: #FFF;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  left: 0;
}

.icon-toggle span:first-child {
  top: 0;
}

.icon-toggle span:last-child {
  bottom: 0;
}

.icon-toggle.active span:first-child {
  top: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-toggle.active span:last-child {
  bottom: auto;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-toggle.active span:nth-child(2) {
  opacity: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
  z-index: 10;
}

.slick-arrow.slick-prev {
  left: 0;
}

.slick-arrow.slick-next {
  right: 0;
}

.a-btn-v {
  position: relative;
  overflow: hidden;
}

.a-btn-v span {
  z-index: 10;
  position: relative;
}

.a-btn-v::before, .a-btn-v::after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 0;
}

.a-btn-v::before {
  top: 50%;
}

.a-btn-v::after {
  bottom: 50%;
}

.a-btn-v:hover::before, .a-btn-v:hover::after {
  height: 50%;
}

.a-btn-h {
  position: relative;
  overflow: hidden;
}

.a-btn-h span {
  z-index: 10;
  position: relative;
}

.a-btn-h::before, .a-btn-h::after {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  height: 100%;
  width: 0;
  z-index: 0;
}

.a-btn-h::before {
  left: 50%;
}

.a-btn-h::after {
  right: 50%;
}

.a-btn-h:hover::before, .a-btn-h:hover::after {
  width: 50%;
}

.a-btn-r {
  position: relative;
  overflow: hidden;
}

.a-btn-r span {
  z-index: 10;
  position: relative;
}

.a-btn-r::after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  background: #000;
}

.a-btn-r:hover::after {
  width: 100%;
  height: 100%;
}

.a-social {
  position: relative;
}

.a-social::before {
  z-index: 10;
  position: relative;
}

.a-social::after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

.a-social:hover::after {
  width: 100%;
  height: 100%;
}

.a-uline {
  position: relative;
}

.a-uline::before, .a-uline::after {
  position: absolute;
  content: '';
  display: block;
  bottom: -2px;
  height: 1px;
  width: 0;
  -webkit-transition: width .5s ease;
  -o-transition: width .5s ease;
  transition: width .5s ease;
}

.a-uline::before {
  left: 0;
}

.a-uline::after {
  right: 0;
  background: #000;
}

.a-uline:hover::before {
  width: 100%;
  -webkit-transition: width .5s ease;
  -o-transition: width .5s ease;
  transition: width .5s ease;
  background: #000;
}

.a-uline:hover::after {
  width: 100%;
  background: transparent;
  -webkit-transition: width 0s ease;
  -o-transition: width 0s ease;
  transition: width 0s ease;
}

.a-color {
  position: relative;
}

.a-color:hover {
  color: transparent;
}

.a-color::before {
  position: absolute;
  content: '';
  display: block;
  content: attr(data-name);
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  left: 0;
  color: red;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.a-color:hover::before {
  max-width: 100%;
}

.a-rotate {
  position: relative;
  overflow: hidden;
}

.a-rotate span {
  display: inline-block;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.a-rotate:hover span {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}

.a-rotate::before, .a-rotate::after {
  position: absolute;
  content: '';
  display: block;
  opacity: 0;
}

.a-rotate::before {
  content: attr(data-name);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 20;
}

.a-rotate:hover::before {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

@-webkit-keyframes drop {
  100% {
    opacity: 0;
    width: 120%;
    height: 120%;
  }
}

@keyframes drop {
  100% {
    opacity: 0;
    width: 120%;
    height: 120%;
  }
}

@-webkit-keyframes drop40px {
  100% {
    opacity: 0;
    width: 40px;
    height: 40px;
  }
}

@keyframes drop40px {
  100% {
    opacity: 0;
    width: 40px;
    height: 40px;
  }
}

.a-drop {
  position: relative;
  z-index: 0;
}

.a-drop::before {
  z-index: 10;
}

.a-drop::after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  border-radius: 50%;
  background: #000;
}

.a-drop:hover::after {
  -webkit-animation: drop 1s ease;
  animation: drop 1s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes shine {
  100% {
    left: 200%;
  }
}

@keyframes shine {
  100% {
    left: 200%;
  }
}

.a-shine {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.a-shine span {
  z-index: 20;
}

.a-shine::after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  left: -100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.a-shine:hover::after {
  -webkit-animation: shine 1s ease;
  animation: shine 1s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.wow {
  visibility: hidden;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

body {
  /* font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  line-height: -webkit-calc(23 / 15);
  line-height: calc(23 / 15);
  font-weight: 300;
  color: #262626;
  letter-spacing: 0.38px; */
}

#main-slider {
  margin-top: 0;
}

.container {
  max-width: 1200px;
  padding: 0 15px !important;
  margin: 0 auto !important;
  height: 100%;
}

.main-header .container, .main-footer .container {
  width: 1200px;
  box-sizing: border-box !important;
}

.main-header *,
.main-footer * {
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  line-height: -webkit-calc(23 / 15);
  line-height: calc(23 / 15);
  font-weight: 300;
  color: #262626;
  letter-spacing: 0.38px;
}

.main-header ul,
.main-footer ul {
  margin: 0;
  list-style: none;
}

.main-header *,
.main-footer *,
.main-header *::before,
.main-footer *::before,
.main-header *::after,
.main-footer *::after {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* button, label, select, input[type="submit"] {
  cursor: pointer;
} */

/* input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
} */

.main-header img,
.main-footer img {
  max-width: 100%;
  height: auto;
}

/* input[type="radio"], input[type="checkbox"] {
  position: absolute;
  opacity: 0;
} */

.main-header a,
.main-footer a {
  text-decoration: none;
}

.main-header a,
.main-footer a,
.main-header a::before,
.main-footer a::before,
.main-header a::after,
.main-footer a::after,
.main-header button,
.main-footer button,
.main-header button::before,
.main-footer button::before,
.main-header button::after,
.main-footer button::after,
.main-header .slick-dots li,
.main-footer .slick-dots li,
.main-header input[type="submit"],
.main-footer input[type="submit"] {
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.btn {
  display: block;
  text-align: center;
}

.main-header-top {
  padding: 15px 0 8px;
}

.main-header-top__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-header-bottom {
  padding: 25px 0 26px;
}

.main-header-bottom__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-header-bottom__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 625px;
  margin-left: auto;
}

.cities-dropdown {
  padding-left: 12px;
  color: #5e004a;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.38px;
  margin-right: 147px;
  cursor: pointer;
  position: relative;
}

.cities-dropdown::before {
  position: absolute;
  content: '';
  display: block;
  width: 8px;
  height: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background: url("../img/gps.png") no-repeat;
}

.header-menu-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-menu__item {
  padding: 0 16px;
  position: relative;
}

.header-menu__item::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 17px;
  background: rgba(94, 0, 74, 0.05);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.header-menu__item:last-child::after {
  content: none;
}

.header-menu__link {
  color: rgba(94, 0, 74, 0.6) !important;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.38px;
  border-bottom: 1px solid rgba(94, 0, 74, 0.25);
  text-decoration: none !important;
}

.header-menu__link:hover {
  color: #5e004a !important;
  border-bottom: 1px solid rgba(94, 0, 74, 0.6);
}

.header__phone {
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.55px;
  color: #262626 !important;
  text-decoration: none !important;
}

.header__whours {
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  margin: 0 0 0 19px;
}

.header__callback {
  color: #262626 !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.38px;
  border-bottom: 1px solid rgba(94, 0, 74, 0.5);
  margin-left: auto;
  text-decoration: none !important;
}

.header-form {
  width: 100%;
  position: relative;
  margin-top: 13px;
}

.header-form__input {
  height: 33px;
  width: 100%;
  border: 1px solid #5e004a;
  border-radius: 4px;
  padding: 0 48px 0 10px;
}

.header-form__submit {
  width: 38px;
  height: 33px;
  border-radius: 0 4px 4px 0;
  position: absolute;
  top: 0;
  right: 0;
  background: #5e004a url("../img/research.png") center no-repeat;
}

.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.social__header {
  color: #0e5293;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.45px;
  margin-right: 7px;
}

.social__item {
  margin-left: 7px;
  line-height: 0;
}

.main-header #bx_basketFKauiI {
  margin: -3px 0 0 auto;
}

.cart {
  width: 164px;
  height: 44px;
  border-radius: 4px;
  background-color: #5e004a;
  padding-left: 50px;
  position: relative;
  /* margin: -3px 0 0 auto; */
  border: 1px solid #5e004a;
  text-decoration: none !important;
  display: block;
}

.cart:hover {
  background: none;
}

.cart:hover span {
  color: #5e004a;
}

.cart:hover::before {
  background: url("../img/supermarket2.png") no-repeat;
}

.cart::before {
  position: absolute;
  content: '';
  display: block;
  width: 23px;
  height: 23px;
  background: url("../img/supermarket.png") no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}

.cart span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.45px;
  line-height: 44px;
  /* margin-right: 5px; */
}

.cart span:last-child {
  margin-right: 0;
}

.logo {
  margin: -5px 31px 0 0;
}

.logo__link {
  display: block;
  line-height: 0;
}

.tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.33px;
  line-height: 20px;
}

.main-menu {
  background: #0e5293;
}

.main-menu-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main-menu__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  position: relative;
}

.main-menu__item:last-child>.submenu {
  width: 500px !important;
  left: auto;
  right: 0;
}

.main-menu__item:last-child>.submenu p {
  margin-bottom: 5px;
}

.main-menu__item:hover>.submenu {
  display: block;
}

.main-menu__item:hover>a {
  background: #ffffff;
  color: #0a0a0b !important;
  border-color: #550043;
  border-bottom-color: #ffffff;
}

.main-menu__item:hover>a.has_children, .main-menu__item:hover>a {
  position: relative;
}

.main-menu__item:hover>a.has_children::after, .main-menu__item:hover>a::after {
  position: absolute;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: #ffffff;
  left: 0;
  bottom: -1px;
  z-index: 15;
}

.main-menu__link {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
  border: 1px solid transparent;
  text-decoration: none !important;
}

.main-menu__link:hover {
  border-bottom-color: transparent;
}

.submenu {
  background: #ffffff;
  text-align: left;
  position: absolute;
  z-index: 10;
  width: 1170px;
  border: 1px solid #5e004a;
  top: -webkit-calc(100% - 1px);
  top: calc(100% - 1px);
  padding: 18px 27px 10px 27px;
  display: none;
}

.submenu::after {
  content: '';
  clear: both;
  display: table;
}

.submenu__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 16px;
  cursor: pointer;
}

.submenu__image {
  margin-right: 12px;
  max-height: 30px;
  max-width: 30px;
}

.submenu__header {
  color: #0a0a0b;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0.38px;
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
}

.submenu__header_marked {
  text-decoration: underline;
  color: #5e004a;
}

.submenu__header:only-child {
  width: 100%;
}

.submenu-items {
  width: 50%;
  margin-bottom: 22px;
  float: left;
}

.submenu-items_empty {
  margin-bottom: 0;
}

.submenu__item {
  position: relative;
  padding-left: 61px;
  margin-bottom: 6px;
}

.submenu__item:last-child {
  margin-bottom: 0;
}

.submenu__item::before {
  position: absolute;
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: #262626;
  border-radius: 50%;
  top: 9px;
  left: 43px;
}

.submenu__link {
  color: #262626;
  font-size: 15px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 0.38px;
  line-height: 19px;
  border-bottom: 1px solid transparent;
}

.submenu__link:hover {
  color: #5e004a;
  border-color: rgba(94, 0, 74, 0.5);
}

.breadcrumbs {
  background-color: #fcfcfc;
}

.breadcrumbs-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  line-height: 60px;
  font-weight: 400;
  margin-right: 26px;
  position: relative;
}

.breadcrumbs__item::after {
  position: absolute;
  content: '';
  display: block;
  content: '/';
  top: 0;
  right: -18px;
  font-weight: 300;
}

.breadcrumbs__item:last-child {
  margin-right: 0;
}

.breadcrumbs__item:last-child::after {
  content: none;
}

.breadcrumbs__link {
  color: #262626;
  font-weight: 300;
}

.breadcrumbs__link:hover {
  color: #0e5293;
}

.product-card-top {
  padding: 59px 0 96px;
}

.product-card-top__inner {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-card__left, .product-card__middle, .product-card__right {
  width: 370px;
}

.product-card__brand {
  margin-bottom: 20px;
}

.product-card__brand-text {
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 0.33px;
}

.product-card__image {
  max-width: 271px;
  max-height: 271px;
}

.product-card__image-link {
  display: block;
  line-height: 0;
}

.product-card__image-link:hover {
  opacity: .75;
}

.product-card__image-part {
  width: 100%;
  height: 397px;
  border: 1px solid #ebebeb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card__header {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.45px;
  margin: -5px 0 22px;
}

.product-card__in-stock {
  color: #36ce18;
  font-weight: 400;
  margin-bottom: 18px;
}

.product-card-props {
  margin-bottom: 18px;
}

.product-card-props span {
  font-weight: 400;
}

.product-card__favourites {
  color: #0e5293;
  font-weight: 400;
}

.product-card__favourites:hover {
  color: #2264ae;
}

.product-card-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 52px;
}

.product-card__button {
  height: 38px;
  border-radius: 4px;
  border: 1px solid #0e5293;
  background-color: #ffffff;
  color: #0e5293;
  font-weight: 400;
  line-height: 36px;
}

.product-card__button:hover {
  background: #0e5293;
  color: #ffffff;
}

.product-card__button.buy {
  width: 300px;
  margin-bottom: 8px;
}

.product-card__button.call, .product-card__button.ask {
  width: 146px;
}

.product-card__button.call {
  margin-right: 8px;
}

.product-card__import {
  width: 216px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid #0e5293;
  background-color: #ffffff;
  color: #0e5293;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.38px;
  margin: 0 0 18px auto;
}

.product-card__import:hover {
  background: #0e5293;
  color: #ffffff;
}

.product-card__right-inner {
  background: #fcfcfc;
  padding: 9px 14px 18px 15px;
}

.product-card__right a:not(.btn) {
  color: #0e5293;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(14, 82, 147, 0.5);
  line-height: 1.2;
}

.product-card__right a:not(.btn):hover {
  color: #2264ae;
  border-bottom: 1px solid rgba(34, 100, 174, 0.5);
}

.product-card-price {
  margin-bottom: 15px;
}

.product-card-price span {
  font-weight: 400;
}

.product-card-price__main {
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-card-price__text {
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 0.33px;
  margin-top: 10px;
}

.product-card-order {
  margin-bottom: 41px;
}

.product-card-order__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card-order span {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
}

.product-card-order__button {
  width: 226px;
  height: 42px;
  border-radius: 4px;
  background-color: #5e004a;
  color: #ffffff;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  line-height: 42px;
}

.product-card-order__button:hover {
  background: #4f003e;
}

.product-card-quantity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-card-quantity__button {
  width: 22px;
  height: 23px;
  background-color: #5e004a;
  color: #ffffff;
}

.product-card-quantity__button:hover {
  background: #4f003e;
}

.product-card-quantity__button_minus {
  border-radius: 5px 0 0 5px;
}

.product-card-quantity__button_plus {
  border-radius: 0 5px 5px 0;
}

.product-card-quantity__input {
  width: 26px;
  height: 23px;
  border: 1px solid #dbdbdb;
  border-left: 0;
  border-right: 0;
  text-align: center;
  background: #ffffff;
}

.product-card-delivery {
  margin-top: 42px;
}

.product-card-delivery__header {
  margin-bottom: 12px;
}

.product-card-delivery__header span {
  font-weight: 400;
}

.product-card-delivery-items {
  margin-bottom: 44px;
}

.product-card-delivery__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 13px;
  box-sizing: border-box !important;
}

.product-card-delivery__item-image-part {
  width: 58px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card-delivery__item-text-part {
  width: -webkit-calc(100% - 58px);
  width: calc(100% - 58px);
  padding-left: 22px;
}

.product-card-delivery__item span {
  font-weight: 400;
}

.product-card-delivery__text a {
  color: #0e5293;
}

.product-card-middle {
  background-color: #fcfcfc;
  padding: 6px 0;
}

.product-card-middle__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card-share__header {
  font-size: 18px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 0.45px;
  margin-right: 13px;
}

.product-card-share-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-card-share__item {
  display: block;
  line-height: 0;
  margin-right: 7px;
}

.product-card-share__item:last-child {
  margin-right: 0;
}

.product-card__contract {
  width: 226px;
  height: 42px;
  border-radius: 4px;
  background-color: #5e004a;
  color: #ffffff;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
  letter-spacing: 0.38px;
}

.product-card__contract:hover {
  background: #4f003e;
}

.product-card-bottom {
  padding: 72px 0 72px;
}

.product-card-accordion__item {
  margin-bottom: 10px;
}

.product-card-accordion__item-name {
  line-height: 48px;
  border-radius: 4px 4px 0 0;
  background: #f4f9ff;
  color: #0e5293;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.45px;
  padding-left: 35px;
  position: relative;
}

.product-card-accordion__item-name span {
  width: 48px;
  height: 48px;
  display: block;
  background: #0e5293;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  color: #ffffff;
  text-align: center;
  line-height: 48px;
}

.product-card-accordion__item-name span:hover {
  background-color: #2264ae;
}

.product-card-accordion__item-name.active {
  color: #2264ae;
}

.product-card-accordion__item-name.active span {
  background-color: #2264ae;
  border-radius: 0 4px 0 0;
}

.product-card-accordion__item-name.active span::before {
  content: '\f078';
}

.product-card-accordion__item-content {
  border: 2px solid #f4f9ff;
  border-radius: 0 0 4px 4px;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.45px;
  padding: 32px 34px 24px 35px;
  display: none;
}

.product-card-accordion__item-content a {
  color: #262626;
}

.product-card-accordion__item-content a:hover {
  color: #0e5293;
}

.product-card-accordion__item-content ul li {
  padding-left: 12px;
  position: relative;
}

.product-card-accordion__item-content ul li::before {
  position: absolute;
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #262626;
  border-radius: 50%;
  top: 9px;
  left: 0;
}

.product-card-photos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-card-photos__item {
  width: 364px;
  height: 305px;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #dbdbdb;
  font-size: 50px;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}

.product-card-videos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-card-videos__item {
  width: 364px;
  height: 233px;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #dbdbdb;
  font-size: 50px;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}

.product-card-certs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-card-certs__item {
  width: 548px;
  height: 233px;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #dbdbdb;
  font-size: 50px;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}

.product-card-viewed {
  padding: 34px 0 120px;
}

.product-card-viewed__header {
  font-size: 30px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1.05px;
  margin-bottom: 66px;
}

.product-card-viewed-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 68px;
}

.product-card-viewed-items .slick-arrow {
  background-color: #e6e6e6;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  color: #ffffff;
}

.product-card-viewed-items .slick-arrow:hover {
  background: #2264ae;
}

.product-card-viewed-items .slick-arrow.slick-prev {
  left: 25px;
}

.product-card-viewed-items .slick-arrow.slick-next {
  right: 25px;
}

.product-card-viewed__item {
  width: 252px;
  height: 296px;
  border: 1px solid #ebebeb;
  background-color: #ffffff;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 3.5px;
}

.product-card-viewed__item:hover {
  opacity: .75;
}

.main-footer .social {
  margin: 0;
}

.main-footer .social__header {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.38px;
  margin: 0 7px 0 0;
}

.main-footer .social-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-footer-top {
  background: #f5f5f5;
  padding: 45px 0 53px;
}

.main-footer-top__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.main-footer-bottom {
  background: #0e5293;
  color: #ffffff;
  height: 66px;
}

.main-footer-bottom__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.footer-menu__header {
  color: #131313;
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.4px;
  margin-bottom: 7px;
}

.footer-menu__link {
  color: #737373 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.4px;
  border-bottom: 1px solid transparent;
  text-decoration: none !important;
}

.footer-menu__link:hover {
  border-color: #737373;
}

.footer-menu_01 {
  width: 470px;
  margin-right: 100px;
}

.footer-menu-items_01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-menu-items_01 .footer-menu__item {
  width: 50%;
}

.footer-contacts {
  width: 370px;
  margin-left: auto;
}

.footer-contacts__header {
  color: #131313;
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.footer-contacts__address {
  color: #737373;
  font-size: 18px;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 0.45px;
  line-height: 26px;
  margin-bottom: 26px;
}

.footer-contacts__link {
  color: #0e5293 !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-decoration: none !important;
}

.footer-contacts__link:hover {
  color: #2264ae !important;
}

.footer-contacts__text {
  color: #262626;
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.45px;
  margin: 8px 0 34px;
}

.footer-contacts__text:last-child {
  margin-bottom: 0;
}

.copyright {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.38px;
  position: relative;
  padding-right: 33px;
  margin: 0 22px 0 0;
  color: #ffffff;
}

.copyright::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 17px;
  background-color: #ffffff;
  opacity: 0.5;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.privacy {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  line-height: 20px;
  margin-right: 35px;
  text-decoration: none !important;
}

.privacy:hover {
  border-color: transparent;
}

.privacy::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 17px;
  background-color: #ffffff;
  opacity: 0.5;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -17px;
}

.footer-links {
  margin-left: auto;
}

.footer-links__item {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  text-decoration: none !important;
}

.footer-links__item:hover {
  border-color: transparent;
}

.footer-links__item:first-child {
  margin-right: 25px;
}

.footer-links__item:first-child::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 17px;
  background-color: #ffffff;
  opacity: 0.5;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -13px;
}

.main-header *[class*="menu"] ul {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .main-menu__item:hover>a {
    color: #ffffff !important;
  }
  .main-header .container, .main-footer .container {
    width: 100%;
  }
  .main-header-top {
    padding: 10px 0;
  }
  .main-header-top__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-header-top__inner>* {
    margin: 5px 10px !important;
  }
  .main-header-bottom {
    padding: 0 0 20px;
  }
  .main-header-bottom__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-header-bottom__inner>* {
    margin: 5px 15px;
  }
  .header-menu {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .header-menu-items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-menu__item {
    padding: 5px 10px;
  }
  .cities-dropdown {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .cart {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .tagline {
    display: none;
  }
  .submenu {
    display: none !important;
  }
  .main-menu {
    padding: 5px 0;
  }
  .main-menu-items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-menu__item {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .main-menu__link {
    line-height: normal;
    padding: 10px;
    background: none !important;
    color: #ffffff !important;
    border: 0 !important;
  }
  .main-menu__link::after {
    content: none !important;
  }
  .main-footer-top {
    padding: 20px 0;
  }
  .main-footer-top__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-footer-top__inner>* {
    margin: 15px 20px;
  }
  .main-footer-bottom {
    height: auto;
    padding: 10px 0;
  }
  .main-footer-bottom *::after {
    content: none !important;
  }
  .main-footer-bottom__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-footer-bottom__inner>* {
    margin: 7.5px 15px !important;
    padding: 0;
  }
  .footer-menu {
    width: auto;
  }
  .footer-menu ul {
    display: block;
  }
  .footer-menu ul li {
    width: 100% !important;
  }
}

@media (max-width: 984px) {
  .logo {
    margin-bottom: 20px;
  }
}

@media (max-width: 620px) {
  .menu-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto !important;
  }
  .main-menu-items {
    display: none;
  }
}

@media (max-width: 580px) {
  .header__whours {
    display: none;
  }
}

@media (max-width: 450px) {
  .main-footer-top__inner>* {
    margin: 10px 0;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .header-menu__item {
    padding: 3px 10px;
  }
  .header-menu__link {
    font-size: 12px;
  }
  .header__phone {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .header__callback {
    margin: auto;
  }
  .main-footer-bottom__inner>* {
    margin: 7.5px 0 !important;
  }
}

/*# sourceMappingURL=style.css.map */