@charset "UTF-8";
/*  Цвет текста  */
/*  фон сайта  */
/*  Шрифты  */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
.quantity {
  display: flex;
}
.quantity__input {
  width: 50px;
}
.quantity__input input {
  width: 100%;
  text-align: center;
  height: 50px;
  font-size: 19px;
  border: 1px solid #ccc;
  border-left: 0;
  border-right: 0;
}
.quantity__plus, .quantity__minus {
  width: 35px;
  background-color: #fff;
  border: 1px solid #ccc;
}
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background: #fff;
  color: #262626;
  font-family: "Roboto", "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-y: scroll;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

[dir=ltr] body {
  text-align: left;
  direction: ltr;
}

[dir=rtl] body {
  text-align: right;
  direction: rtl;
}

a {
  color: #cb1818;
}
a:hover {
  color: #cb1818;
  text-decoration: none;
}

label {
  margin-bottom: 0.25rem;
  font-size: 15px;
}

.h1, h1 {
  font-size: 30px;
  font-weight: 400;
  color: #262626;
}

.text-uppercase {
  text-transform: uppercase;
}

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

h2 {
  font-size: 32px;
  font-weight: 500;
  color: #262626;
}

h3 {
  font-size: 20px;
  font-weight: 500;
  color: #262626;
}

h4 {
  font-size: 24px;
  font-weight: 500;
  color: #262626;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  color: #262626;
}

h6 {
  font-size: 16px;
  font-weight: 500;
  color: #262626;
}

img {
  max-width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

@media (max-width: 1380px) {
  .topbar__item-text {
    padding: 0 4px;
  }
}
.topbar__item-tel {
  padding: 0 5px 0 0;
}

.star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.c-star {
  width: var(--size, 13px);
  height: var(--size, 13px);
  fill: lightgrey;
}

.c-star.active {
  fill: #FFB800;
}

.button-compare.active svg line {
  stroke: #c5291b;
}

.button-wishlist.active svg path,
.product-card__action--wishlist.active path,
.product-card__action--compare.active path {
  fill: #c5291b;
}

.category-description {
  font-size: 14px;
}

.button-compare {
  position: relative;
}
.button-compare:not(.active) .button-compare__tooltip {
  display: none;
}
.button-compare__tooltip {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
  background: #fff;
  text-wrap: nowrap;
  padding: 14px 30px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3294117647);
  bottom: -47px;
  right: 0;
}
.button-compare:hover .button-compare__tooltip {
  opacity: 1;
  visibility: visible;
}

.fast-buy-modal {
  border: 2px solid #1976d2;
  padding: 40px 25px !important;
}
.fast-buy-modal .fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  position: absolute;
  z-index: 401;
  width: 44px;
  height: 44px;
  padding: 2px;
  right: 0;
  top: 0;
}
.fast-buy-modal__product {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
}
.fast-buy-modal__product__image {
  max-width: 70px;
  max-height: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
}
@media (max-width: 420px) {
  .fast-buy-modal__product__image {
    display: none;
  }
}
.fast-buy-modal__product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fast-buy-modal__product__name {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 55%;
  flex: 1 0 55%;
  padding: 0 10px;
}
@media (max-width: 420px) {
  .fast-buy-modal__product__name {
    padding: 0;
  }
}
.fast-buy-modal__product__name .name {
  font-size: 12px;
  color: #1d2029;
  line-height: 1.5;
}
.fast-buy-modal__product__name .status {
  display: inline-block;
  margin: 5px 5px 0 0;
  line-height: 1;
}
.fast-buy-modal__product__name .status > span {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.fast-buy-modal__product__name .articul {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.fast-buy-modal__product__price {
  font-weight: 700;
  line-height: 15px;
  color: #1d2029;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.fast-buy-modal__form {
  margin: 0 -2px;
  display: flex;
  flex-wrap: wrap;
}
.fast-buy-modal__form label {
  display: inline-block;
  width: calc(50% - 4px);
  margin: 0 2px;
}
@media (max-width: 420px) {
  .fast-buy-modal__form label {
    width: 100%;
    margin: 0 0 10px;
  }
}
.fast-buy-modal__form label span {
  font-size: 14px;
  color: #383838;
}
.fast-buy-modal__form label input {
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 2px;
  box-shadow: none;
  color: #383838;
  height: auto;
  font-size: 13px;
  padding: 8px 13px 7px;
  width: 100%;
}
.fast-buy-modal .licence_block.filter.label_block {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 12px;
}
@media (max-width: 420px) {
  .fast-buy-modal .licence_block.filter.label_block {
    display: flex;
    align-items: center;
  }
  .fast-buy-modal .licence_block.filter.label_block input {
    margin-right: 12px;
  }
  .fast-buy-modal .licence_block.filter.label_block label {
    font-size: 12px;
    line-height: 1;
    margin: 0;
  }
}
.fast-buy-modal button[type=submit] {
  display: block;
  width: 100%;
  background: #1976d2;
  border: 1px solid #1976d2;
  border-radius: 4px;
  height: 63px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-top: 22px;
  transition: all 0.2s linear;
}
.fast-buy-modal button[type=submit]:hover {
  background: red;
  border: 1px solid red;
}

.header__logo {
  padding: 10px 0;
  min-width: 355px;
  display: flex;
  align-items: center;
}
.header__logo__tagline {
  font-size: 14px;
  line-height: 20px;
  margin-left: 18px;
  flex: 1;
}
.header__topbar__buttons {
  display: flex;
  align-items: center;
  margin-left: 50px;
}
@media (max-width: 1300px) {
  .header__topbar__buttons {
    margin-left: 15px;
  }
}
.header__topbar__buttons__wishlist {
  margin-right: 20px;
}
@media (max-width: 1300px) {
  .header__topbar__buttons__wishlist {
    margin-right: 10px;
  }
}
.header__indicators__callback {
  margin-right: 50px;
}
@media (max-width: 1300px) {
  .header__indicators__callback {
    margin-right: 20px;
  }
}
.header__indicators__callback__title {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #4066B0;
  cursor: pointer;
}
.header__indicators__callback__title svg {
  margin-right: 7px;
}
.header__indicators__callback__work {
  color: #444;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}
.header__indicators__callback__work span {
  display: block;
}
.header__indicators__callback__work span:first-child {
  color: #999;
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 7px;
}
.header__indicators__cart-container {
  display: flex;
  align-items: center;
}
.header__indicators__cart {
  display: flex;
  align-items: flex-end;
}
.header__indicators__cart__icon {
  position: relative;
}
.header__indicators__cart__icon span {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -9px;
  right: -12px;
  text-align: center;
  line-height: 20px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background-color: #C42D27;
  border-radius: 100%;
}
.header__indicators__cart__total-price {
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  color: #222;
  margin-left: 2px;
}
@media (max-width: 1380px) {
  .header__indicators {
    justify-content: flex-start;
  }
}
.header__search {
  width: 660px;
}
@media (max-width: 1380px) {
  .header__search {
    width: 550px;
  }
}
.header__menu-pages {
  display: flex;
  flex: 1;
  justify-content: center;
}

.search__body {
  height: 40px;
}
.search__button--end {
  height: 40px;
  width: 40px;
}
.search__input {
  border: 1px solid #E0E0E0;
  background-color: #f8f8f8;
  border-radius: 0;
}

.logo__image a {
  display: flex;
  align-items: center;
}
.logo__image a img:first-child {
  height: 55px;
  margin-right: 10px;
}
.logo__image a img:last-child {
  height: 50px;
}

.topbar__item-local {
  display: flex;
  align-items: center;
}
.topbar__item-local svg {
  width: 11px;
  margin-right: 7px;
}
.topbar__item-local span {
  color: #999;
  font-weight: 400;
}
.topbar__item-tel {
  text-align: center;
  justify-content: center;
  padding: 0 45px 0 0;
}
.topbar__item-tel a {
  font-size: 16px;
  line-height: 16px;
  color: #444;
  font-weight: 700;
}

.tags {
  display: flex;
  align-items: center;
  margin: 15px 0 0;
  font-size: 15px;
  flex-wrap: wrap;
}
.tags__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 0;
  height: 25px;
  padding: 0 20px;
  margin: 5px 0;
  pointer-events: none;
  color: #333;
}
.tags__item:first-child:after {
  left: 0;
  right: 12.12435px;
}
.tags__item:after, .tags__item:before {
  content: "";
  pointer-events: auto;
  position: absolute;
  background-color: #f8f8f8;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 3px;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
}
.tags__item:before {
  left: 6.06217px;
  right: 6.06217px;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  border: 1px solid #E0E0E0;
}

.product-tile {
  display: flex;
  flex-wrap: wrap;
}

.block-header__breadcrumb {
  padding-bottom: 55px;
}

.quickview__body {
  flex-wrap: wrap;
}
.quickview__product {
  flex: 1;
  margin-top: 10px;
}
.quickview__product-description {
  flex: 0 0 100%;
  margin-top: 25px;
}
.quickview__product-description h3 {
  margin-bottom: 15px;
}
.quickview__product-description ul {
  margin: 0;
  list-style: none;
  padding: 0;
  max-width: 500px;
}
.quickview__product-description ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed;
}
.quickview__product-description ul li:not(:last-child) {
  margin-bottom: 5px;
}
.quickview__product-description ul li span {
  background: #fff;
  margin-bottom: -1px;
}
.quickview__product-description ul li span:first-child {
  padding-right: 5px;
}
.quickview__product-description ul li span:last-child {
  padding-left: 5px;
}

.product-view__show-more {
  font-size: 14px;
  color: #e52727;
  cursor: pointer;
}

.arrow__button {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  background: transparent;
  pointer-events: none;
  transition: color 0.15s;
  height: 23px;
  padding: 0 14.37131px;
  color: #fff;
}
.arrow__button:before {
  background: #e52727;
  width: calc(100% - 8.37131px);
  left: 4.18566px;
  transform: skewX(-20deg);
}
.arrow__button svg {
  fill: currentColor;
  display: block;
  transform: scaleX(1);
}
.arrow__button:focus {
  outline: none;
}
.arrow__button:before {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  transform-origin: center center;
  z-index: -1;
  border-radius: 2px;
  pointer-events: auto;
  transition: background 0.15s;
}
.arrow__button:hover {
  color: #fff;
}
.arrow__button:hover:before {
  background: #333;
}
.arrow__button:hover:after {
  background: rgba(0, 0, 0, 0.01);
}
.arrow__button:active {
  color: #fff;
}
.arrow__button:active:before {
  background: #474747;
}
.arrow__button:active:after {
  background: hsla(0deg, 0%, 100%, 0.01);
  transition-duration: 0s;
}
.arrow__button:active:before, .arrow__button:active:before {
  transition-duration: 0s;
}
.arrow__button:after {
  position: absolute;
  display: block;
  content: "";
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  transition: background 0.2s;
  opacity: 0.01;
  left: -2px;
}
.arrow--next svg {
  margin-right: -1px;
}
.arrow--prev svg {
  margin-left: -1px;
}

.callback-form {
  max-width: 570px !important;
  padding: 70px !important;
  border: 2px solid #C42D27;
}
.callback-form__title {
  color: #222222;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 35px;
}
.callback-form__input {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 22px;
}
.callback-form__input input {
  border: 1px solid #b4b4b4 !important;
  border-left: 0 !important;
  border-radius: 0 4px 4px 0 !important;
  font-size: 16px !important;
  color: #383838 !important;
  background: #fff !important;
  transition: all 0.2s linear;
  flex: 1;
  padding-left: 20px;
}
.callback-form__input input::placeholder {
  font-size: 16px !important;
  color: #383838 !important;
}
.callback-form__icon {
  width: 62px;
  height: 62px;
  border-radius: 4px 0 0 4px;
  transition: all 0.2s linear;
}
.callback-form__name .callback-form__icon {
  background: url(/local/templates/redparts/static/images/modals/callback-personal.png) no-repeat center, linear-gradient(#C42D27, #C42D27);
}
.callback-form__tel .callback-form__icon {
  background: url(/local/templates/redparts/static/images/modals/callback-tel.png) no-repeat center, linear-gradient(#C42D27, #C42D27);
}
.callback-form__mail .callback-form__icon {
  background: url(/local/templates/redparts/static/images/modals/callback-mail.png) no-repeat center, linear-gradient(#C42D27, #C42D27);
}
.callback-form label {
  display: flex;
}
.callback-form label input {
  display: block;
  margin-right: 17px;
}
.callback-form label span {
  font-size: 14px;
  color: #383838;
}
.callback-form label span a {
  font-size: 14px;
  color: #383838;
  text-decoration: underline;
}
.callback-form button[type=submit] {
  display: block;
  width: 100%;
  background: #C42D27;
  border: 1px solid #C42D27;
  border-radius: 4px;
  height: 63px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-top: 22px;
  transition: all 0.2s linear;
}
.callback-form button[type=submit]:hover {
  opacity: 0.7;
}

.animated-modal {
  max-width: 570px !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  transform: translateY(-50px) !important;
  transition: all 0.7s !important;
}

.animated-modal .callback-form__title,
.animated-modal form {
  transform: translateY(-50px) !important;
  opacity: 0 !important;
  transition-property: transform, opacity;
  transition-duration: 0.4s !important;
}

.is-animated .animated-modal,
.is-animated .animated-modal .callback-form__title,
.is-animated .animated-modal form {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.is-animated .animated-modal .callback-form__title {
  transition-delay: 0.1s !important;
}

.is-animated .animated-modal form {
  transition-delay: 0.3s !important;
}

.site__footer {
  margin-top: 70px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .departments__button {
    width: auto;
  }
}
@media (max-width: 1400px) {
  .main-menu__link {
    padding: 5px 7px;
  }
  .header {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1200px) {
  .mobile-header__logo {
    max-width: 140px;
  }
  .mobile-header__logo img:first-child {
    width: 30px;
    margin-right: 6px;
  }
  .mobile-header__logo img:last-child {
    width: 75px;
    object-fit: contain;
  }
  .block-header__breadcrumb {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .contacts-min__map {
    flex: 0 0 100%;
  }
}
@media (max-width: 555px) {
  h3, .h3 {
    font-size: 20px;
  }
  .tags__item {
    font-size: 14px;
    white-space: nowrap;
    padding: 0 15px;
  }
  .breadcrumb__item-link {
    font-size: 12px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
  }
}
.contacts-min {
  margin-bottom: 70px;
}
.contacts-min > .container > .flex {
  justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.contacts-min__content {
  flex: 1;
  padding: 20px;
}
.contacts-min__content__address {
  font-size: 18px;
  margin-bottom: 5px;
}
.contacts-min__content__tel {
  font-size: 17px;
}
.contacts-min__content__schedule {
  margin-top: 25px;
}
.contacts-min__content__schedule ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contacts-min__content__schedule ul li {
  display: flex;
  align-items: center;
  font-size: 17px;
}
.contacts-min__content__schedule ul li span:first-child {
  flex: 0 0 70px;
  color: #8a8a8a;
}
.contacts-min__map {
  flex: 0 0 50%;
  padding-right: 1px;
}
@media (max-width: 550px) {
  .contacts-min__map {
    flex: 0 0 100%;
  }
}
.contacts-min__map iframe {
  width: 100%;
  display: block;
  border-radius: 0 8px 0 8px;
}
@media (max-width: 550px) {
  .contacts-min__map iframe {
    height: 220px !important;
  }
}

@media (min-width: 1200px) {
  .header__navbar {
    height: 45px !important;
  }
  .header__indicators {
    padding: 0 !important;
  }
}

/*# sourceMappingURL=main.css.map */
