@font-face {
  font-family: "FiraSans";
  font-display: swap;
  src: url("../fonts/FiraSans-Regular.woff2") format("woff2"), url("../fonts/FiraSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FiraSans";
  font-display: swap;
  src: url("../fonts/FiraSans-Bold.woff2") format("woff2"), url("../fonts/FiraSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Arial";
  font-display: swap;
  src: url("../fonts/ArialRegular.woff2") format("woff2"), url("../fonts/ArialRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Arial";
  font-display: swap;
  src: url("../fonts/ArialBold.woff2") format("woff2"), url("../fonts/ArialBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Arial", sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Arial", sans-serif;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
html, body {
  color: #000;
}
html._lock, body._lock {
  overflow: hidden;
  height: 100vh;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #ED1C24;
  border: 1px solid #ED1C24;
  border-radius: 40px;
  transition: all 0.5s;
}
.btn:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.btn span {
  margin-right: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.btn img {
  width: 16px;
  height: 20px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.quantity {
  flex: 0 0 100px;
  width: 100px;
  height: 20px;
  display: flex;
}
.quantity__button {
  flex: 0 0 33px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #000;
  width: 9px;
  height: 2px;
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  width: 100%;
  text-align: center;
  background-color: transparent;
  border-left: 1px solid #666767;
  border-right: 1px solid #666767;
}

.swiper-container {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  position: relative;
}

.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.header {
  position: relative;
  padding: 15px 0 20px 0;
  height: 85px;
}
.header__body {
  display: flex;
  align-items: center;
}
.header__burger {
  display: none;
}
@media (max-width: 991.98px) {
  .header__burger {
    display: block;
    margin-right: 20px;
    position: relative;
    width: 36px;
    height: 24px;
    cursor: pointer;
  }
  .header__burger span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ED1C24;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger._active span {
    transform: scale(0);
  }
  .header__burger._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .header__burger._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}
@media (max-width: 767.98px) {
  .header__logo {
    flex: 1 1 auto;
  }
}
.header__logo img {
  width: 135px;
  height: 45px;
}
@media (max-width: 991.98px) {
  .header__logo img {
    width: 105px;
    height: 35px;
  }
}
@media (max-width: 479.98px) {
  .header__logo img {
    width: 90px;
    height: 30px;
  }
}
.header__search {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  margin: 0 100px;
  position: relative;
  border-bottom: 1px solid #48001E;
}
@media (max-width: 1279.99px) {
  .header__search {
    margin: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .header__search {
    display: none;
  }
}
.header__search::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #48001E;
  transition: all 0.5s;
}
.header__search:hover::before {
  width: 100%;
}
.header__search input {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 8px 20px 8px 0;
  color: #48001E;
  border: none;
}
.header__search input:focus-visible {
  outline: none;
}
.header__search input::placeholder {
  color: #48001E;
}
.header__search button {
  flex: 0 0 15px;
  width: 15px;
}
.header__search button:hover img {
  width: 110%;
}
.header__search button img {
  width: 100%;
  transition: all 0.5s;
}
.header__contacts {
  margin-right: 65px;
}
@media (max-width: 1279.99px) {
  .header__contacts {
    margin-right: 20px;
  }
}
.header__phone {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  font-size: 17px;
  font-weight: 700;
  color: #48001E;
  white-space: nowrap;
}
.header__phone:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background: url("../img/icons/phone.svg") center/100% no-repeat;
}
.header__phone:hover:before {
  animation: phone 0.9s ease-in-out infinite;
}
.header__socials {
  display: flex;
  align-items: center;
}
.header__socials-text {
  margin-right: 10px;
  font-size: 14px;
  color: #48001E;
}
.header__socials-block {
  display: flex;
}
.header__socials-link {
  flex: 0 0 21px;
  margin: 0 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  background-color: #F2F2F2;
  border: 1px solid #F2F2F2;
  border-radius: 50%;
  transition: all 0.5s;
}
.header__socials-link:hover {
  border: 1px solid #48001E;
}
.header__socials-link img {
  width: 14px;
  height: 13px;
}
.header__nav {
  display: flex;
}
@media (max-width: 991.98px) {
  .header__nav {
    border-right: 1.5px solid #48001E;
  }
}
.header__nav-item {
  flex: 0 0 115px;
  width: 115px;
  position: relative;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1.5px solid #48001E;
}
@media (max-width: 1279.99px) {
  .header__nav-item {
    flex: 0 0 90px;
    width: 90px;
  }
}
@media (max-width: 991.98px) {
  .header__nav-item {
    border-right: none;
  }
}
@media (max-width: 479.98px) {
  .header__nav-item {
    flex: 0 0 80px;
    width: 80px;
  }
}
.header__nav-item:first-child {
  border-left: 1.5px solid #48001E;
}
@media (max-width: 991.98px) {
  .header__nav-item:first-child {
    border-left: none;
    border-right: none;
  }
}
.header__nav-item-cart {
  position: absolute;
  top: -3px;
  right: calc(50% - 18px);
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 18px;
  text-align: center;
  background-color: #ED1C24;
  border-radius: 50%;
}
.header__nav-icon {
  margin-bottom: 10px;
  width: 21px;
  height: 21px;
}
.header__nav-text {
  font-size: 14px;
  color: #48001E;
}

.lang_c {
  display: flex;
  padding-left: 20px;
}
@media (max-width: 1279.99px) {
  .lang_c {
    padding-left: 10px;
  }
}
@media (max-width: 479.98px) {
  .lang_c {
    padding-left: 0;
  }
}
.lang_c a {
  display: inline-block;
  margin-left: 10px;
  padding-bottom: 10px;
  font-size: 21px;
  color: #48001E;
}
.lang_c .lang_active {
  color: #ED1C24;
  border-bottom: 4px solid #ED1C24;
}

.menu {
  position: relative;
  z-index: 11;
  background-color: #ED1C24;
}
.menu__body {
  display: flex;
  align-items: center;
  height: 50px;
}
.menu__catalog-button {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 50px;
  padding: 0 40px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  text-transform: uppercase;
  line-height: 20px;
  white-space: nowrap;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 1279.99px) {
  .menu__catalog-button {
    margin-right: 20px;
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .menu__catalog-button {
    position: relative;
    margin: 0 -15px;
    padding: 0 15px;
    width: calc(100% + 30px);
  }
}
@media (max-width: 991.98px) {
  .menu__catalog-button_desk {
    display: none;
  }
}
.menu__catalog-button_mob {
  display: none;
}
@media (max-width: 991.98px) {
  .menu__catalog-button_mob {
    display: flex;
  }
}
.menu__catalog-button:before, .menu__catalog-button:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  width: 25px;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.menu__catalog-button:before {
  transform: translateY(-50%) rotate(45deg);
}
.menu__catalog-button:after {
  transform: translateY(-50%) rotate(-45deg);
}
.menu__catalog-button svg {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  fill: #48001e;
  transition: all 0.5s;
}
.menu__catalog-button a {
  color: inherit;
}
.menu__catalog-button._active {
  background-color: #48001e;
}
.menu__catalog-button._active svg {
  fill: #fff;
}
@media (max-width: 767.98px) {
  .menu__catalog-button._active svg {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 767.98px) {
  .menu__catalog-button._active:before, .menu__catalog-button._active:after {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 991.98px) {
  .menu__catalog-button:hover {
    background-color: #48001e;
  }
  .menu__catalog-button:hover .catalog-menu {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 991.98px) {
  .menu__catalog-button:hover svg {
    fill: #fff;
  }
}
.menu__nav {
  display: flex;
}
.menu__link {
  margin-right: 30px;
  text-transform: uppercase;
  font-family: "FiraSans", sans-serif;
  white-space: nowrap;
  color: #fff;
  transition: all 0.5s;
}
@media (max-width: 1279.99px) {
  .menu__link {
    margin-right: 20px;
  }
}
.menu__link:hover {
  color: #48001e;
}

.catalog-menu {
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #48001e;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (max-width: 767.98px) {
  .catalog-menu {
    position: fixed;
    margin-top: 135px;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
  }
}
.catalog-menu._active {
  opacity: 1;
  visibility: visible;
}
.catalog-menu__list {
  display: flex;
}
@media (max-width: 767.98px) {
  .catalog-menu__list {
    display: block;
    padding: 15px 0 80px;
  }
}
.catalog-menu__list > li {
  position: relative;
}
@media (max-width: 767.98px) {
  .catalog-menu__list > li {
    padding-bottom: 30px;
  }
}
.catalog-menu__list > li:hover .catalog-menu__submenu {
  opacity: 1;
  visibility: visible;
}
.catalog-menu__link {
  padding: 0 60px 0 30px;
  text-transform: uppercase;
  line-height: 50px;
  font-family: "FiraSans", sans-serif;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 1279.99px) {
  .catalog-menu__link {
    padding: 0 30px 0 20px;
  }
}
@media (max-width: 767.98px) {
  .catalog-menu__link {
    padding: 0 30px 0 0;
    line-height: 100%;
  }
}
.catalog-menu__link_sub {
  position: relative;
}
.catalog-menu__link_sub:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  background: url("../img/icons/arrow-menu.svg") center/100% no-repeat;
}
@media (max-width: 1279.99px) {
  .catalog-menu__link_sub:after {
    right: 10px;
  }
}
.catalog-menu__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 30px 0 30px;
  background-color: #48001E;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (max-width: 1279.99px) {
  .catalog-menu__submenu {
    padding: 10px 20px 0 20px;
  }
}
@media (max-width: 767.98px) {
  .catalog-menu__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 20px 0 0 40px;
    display: none;
  }
}
@media (max-width: 767.98px) {
  .catalog-menu__submenu li {
    padding-bottom: 20px;
  }
  .catalog-menu__submenu li:last-child {
    padding-bottom: 0;
  }
}
.catalog-menu__sublink {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  font-family: "FiraSans", sans-serif;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .catalog-menu__sublink {
    margin-bottom: 0;
  }
}

.mobile-menu {
  margin-top: 85px;
  padding: 10px 15px 80px 15px;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.mobile-menu._active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.mobile-menu__nav .header__nav-item {
  flex: 0 0 160px;
  width: 160px;
  padding: 0;
  border: none;
}
.mobile-menu__menu {
  padding-bottom: 30px;
}
.mobile-menu__menu .menu__nav {
  flex-direction: column;
  align-items: center;
}
.mobile-menu__menu .menu__link {
  margin-bottom: 30px;
  margin-right: 0;
  font-size: 21px;
  color: #000;
}
.mobile-menu__contacts {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.mobile-menu__contacts .header__contacts {
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-menu__contacts .header__phone {
  margin-bottom: 30px;
  padding-left: 40px;
  font-size: 26px;
}
.mobile-menu__contacts .header__phone:before {
  width: 22px;
  height: 22px;
}
.mobile-menu__contacts .header__socials {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-menu__contacts .header__socials-text {
  margin-right: 0;
  margin-bottom: 40px;
  font-size: 22px;
}
.mobile-menu__contacts .header__socials-link {
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
}
.mobile-menu__contacts .header__socials-link img {
  max-width: 35px;
  max-height: 33px;
}

@keyframes phone {
  0%, 100% {
    transform: translateY(-50%) rotate(-7deg);
  }
  50% {
    transform: translateY(-50%) rotate(7deg);
  }
}
.footer {
  position: relative;
  padding: 100px 0 60px 0;
  background: url("../img/footer-bg.jpg") center/cover no-repeat;
}
@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0;
  }
}
.footer:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.footer ._container {
  max-width: 1200px;
}
@media (max-width: 1279.99px) {
  .footer ._container {
    max-width: 962px;
  }
}
@media (max-width: 991.98px) {
  .footer ._container {
    max-width: 738px;
  }
}
@media (max-width: 767.98px) {
  .footer ._container {
    max-width: none;
    padding: 0 50px;
  }
}
.footer__logo {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 40px;
}
.footer__logo img {
  width: 185px;
  height: 60px;
}
.footer__body {
  position: relative;
  z-index: 2;
  display: flex;
  font-family: "FiraSans", sans-serif;
  color: #fff;
}
@media (max-width: 767.98px) {
  .footer__body {
    display: block;
  }
}
.footer__column {
  flex: 0 0 25%;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .footer__column {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 991.98px) {
  .footer__column:nth-child(1), .footer__column:nth-child(2) {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .footer__column:nth-child(4) {
    flex: 0 0 66.666%;
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .footer__column:nth-child(4) {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .footer__block {
    flex: 0 0 50%;
  }
}
.footer__title {
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .footer__title {
    margin-bottom: 25px;
  }
}
.footer__list {
  margin-bottom: 20px;
}
.footer__list li {
  padding-bottom: 15px;
  line-height: 125%;
}
@media (max-width: 767.98px) {
  .footer__list li {
    padding-bottom: 5px;
  }
}
.footer__link {
  color: inherit;
}
.footer__author {
  position: relative;
  z-index: 2;
  font-family: "FiraSans", sans-serif;
  color: #fff;
  text-align: right;
}
@media (max-width: 767.98px) {
  .footer__author {
    text-align: left;
  }
}
.footer__author a {
  color: inherit;
}
.footer__socials {
  display: none;
}
@media (max-width: 767.98px) {
  .footer__socials {
    display: block;
    margin-bottom: 35px;
  }
}
.footer__socials-block {
  display: flex;
  justify-content: space-between;
}
.footer__social {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background-color: #48001E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social img {
  max-width: 27px;
  max-height: 27px;
}

.shsh_card_c {
  position: absolute;
  background: url(../img/kshop.png) no-repeat 7% 50%;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  right: 0;
  top: 5px;
  padding: 0 8px 0 38px;
  font-size: 12px;
  color: #000;
  border: 1px solid #b3b3b3;
}

.shsh_card_c:hover {
  cursor: pointer;
}

.shsh_card_c.scsh_adder_pr2 {
  box-shadow: 0 0 35px #c1272d;
  -webkit-box-shadow: 0 0 35px #c1272d;
  -moz-box-shadow: 0 0 35px #c1272d;
}

.shsh_card_inf {
  line-height: 18px;
}

.catParents_c {
  margin: 0 0 0 -12px;
}

a.scsh_cat_c {
  display: inline-block;
  position: relative;
  vertical-align: top;
  background: #f5f5f5;
  width: 235px;
  height: 150px;
  text-decoration: none;
  margin: 0 0 12px 12px;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.scsh_cat_c .scsh_cat_im {
  display: flex;
  height: 123px;
  line-height: 123px;
  width: 100%;
  text-align: center;
}

.scsh_cat_c .scsh_cat_im img {
  max-height: 123px;
  vertical-align: middle;
  margin: auto;
}

.scsh_cat_c .scsh_cat_it {
  display: inline-block;
  line-height: 26px;
  color: #c1272d;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.scsh_tov_c {
  display: inline-block;
  position: relative;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  vertical-align: top;
  width: 210px;
  height: 400px;
  padding: 10px 14px;
  border: 1px solid #b3b3b3;
  text-decoration: none;
  margin: 0 0 12px 12px;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a.scsh_tov_im {
  display: flex;
  line-height: 197px;
  width: 100%;
  text-align: center;
  height: 197px;
}

a.scsh_tov_im img {
  vertical-align: middle;
  display: inline-block;
  border: 0;
  margin: auto;
  max-height: 197px;
}

a.scsh_tov_it {
  display: inline-block;
  font-size: 17px;
  line-height: 22px;
  text-decoration: none;
  line-height: 23px;
  color: #c1272d;
  width: 100%;
  padding: 5px 0 0 0;
  text-align: center;
  height: 46px;
}

.scsh_tov_par {
  display: block;
  padding: 0 0 25px 0;
  height: 82px;
  overflow: hidden;
}

.scsh_tov_code {
  font-size: 13px;
  color: #666;
  line-height: 18px;
}

.scsh_tov_par {
  white-space: pre-line;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}

.scsh_tov_par table {
  margin: 0 auto;
  color: #666;
  font-size: 13px;
}

.scsh_tov_par td {
  padding: 1px 5px;
}

.scsh_tov_par td.scsh_parn {
  text-align: right;
}

.scsh_tov_c:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.scsh_tov_price {
  height: 62px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: inline-block;
}

.scsh_tov_price_it {
  height: 62px;
  line-height: 62px;
  color: #c1272d;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  border-top: 1px solid #b3b3b3;
  margin: 0 14px;
  display: block;
}

.scsh_tov_price_it b {
  font-size: 26px;
}

.scsh_tov_price_bt {
  position: absolute;
  top: 20px;
  right: 10px;
  font-size: 13px;
  color: #c1272d;
  padding: 0 12px;
  display: inline-block;
  border: 1px solid #c1272d;
  background: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  line-height: 20px;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.scsh_tov_price_bt:hover {
  background: #c1272d;
  color: #fff;
  cursor: pointer;
}

.scsh_adder_cf {
  position: fixed;
  z-index: 0;
  left: 0;
  bottom: 170px;
  width: 100%;
  height: 1px;
}

.scsh_adder_c {
  position: relative;
  width: 138px;
  margin: 0 auto;
  bottom: 130px;
  left: 590px;
}

.scsh_adder_up {
  text-align: center;
  padding: 17px 0 0 0;
}

.scsh_adder_upb {
  font-size: 16px;
  color: #666;
  display: inline-block;
  padding: 0 0 3px 0;
  border-bottom: 1px dashed #666;
}

.scsh_adder_upb:hover {
  cursor: pointer;
  color: #9e005d;
  border-color: #9e005d;
}

.scsh_adder_b:hover {
  cursor: pointer;
  opacity: 0.9;
}

.scsh_adder_b {
  background: #333 url(../img/card2.jpg) no-repeat 50% 37%;
  width: 125px;
  height: 75px;
  padding: 50px 0 0 0;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
}

.scsh_adder_b span {
  background: #fff;
  padding: 0 5px;
  color: #f00;
  font-size: 19px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}

.scsh_adder_pr {
  padding: 8px 0 0 0;
  font-size: 12px;
}

.scsh_adder_pr b {
  font-weight: normal;
}

.scsh_shopform_cf {
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  display: none;
}

.scsh_shopform_cfc {
  width: 100%;
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.scsh_shopform_c {
  background: #fff;
  position: absolute;
  padding: 25px 30px 25px 30px;
  background: #fff;
  display: inline-block;
  left: 50%;
  background: #fff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}

table.scsh_card_tovlist {
  z-index: 3;
  margin: 5px 0 0 0;
  background: #fff;
  font-size: 15px;
  color: #666;
}

table.scsh_card_tovlist th {
  padding: 5px 5px 5px 5px;
  background: #c1272d;
  color: #fff;
}

table.scsh_card_tovlist td {
  padding: 3px 5px;
  background: #f7f7f7;
  border-top: 5px solid #fff;
}

table.scsh_card_tovlist td input {
  border: 1px solid #ccc;
  width: 30px;
}

table.scsh_card_tovlist td.scsh_card_tovlist_sm {
  padding: 7px 5px 9px 5px;
  color: #000;
  background: #fff;
  text-align: right;
}

table.scsh_card_tovlist td .scsh_card_tov_img {
  display: inline-block;
  width: 70px;
  max-height: 70px;
  overflow: hidden;
}

table.scsh_card_tovlist td img {
  max-height: 70px;
}

.scsh_card_tovdel {
  color: #333;
  font-size: 14px;
  vertical-align: top;
}

.scsh_card_tovdel:hover {
  cursor: pointer;
}

.scsh_form_close {
  position: absolute;
  top: 6px;
  right: 10px;
  color: #666;
  font-size: 18px;
}

.scsh_form_close:hover {
  cursor: pointer;
  color: #9e005d;
}

.catform_it {
  color: #c1272d;
  font-weight: normal;
  font-size: 18px;
  text-transform: uppercase;
  margin: 5px 0 15px 0;
}

#scsh_card_tovlist_ids {
  display: none;
}

.scsh_card_themeview1 {
  width: 940px;
}

.scsh_card_themeview1 .scsh_cart_view_left {
  float: right;
  width: 510px;
  vertical-align: top;
  display: inline-block;
}

.scsh_card_themeview1 .scsh_cart_view_right {
  float: left;
  width: 420px;
  vertical-align: top;
  display: inline-block;
}

.picker {
  width: 400px;
  padding: 30px 0 0 30px;
}

.sui_rang_c {
  height: 12px;
  max-width: 250px;
  cursor: default;
  width: 100%;
  border: 1px solid #ccc;
  position: relative;
  overflow: hidden;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.sui_rang_cp {
  height: 12px;
  top: 0;
  left: 0;
  width: 100%;
  background: #f2f2f2;
  position: absolute;
}

.sui_rang_cps {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 0;
  left: 0;
  background: #b3b3b3;
}

.sui_rang_cps#sui_rpr {
  left: auto;
  right: 0;
}

.sui_rang_cps:hover {
  cursor: pointer;
  background: #808080;
}

.sui_rang_cpr {
  padding: 0 0 10px 0;
  font-size: 13px;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.sui_rang_cpr span {
  line-height: 23px;
  background: #fff;
  height: 23px;
  padding: 0 5px;
  min-width: 35px;
  display: inline-block;
  border: 1px solid #ccc;
  vertical-align: top;
}

.catParentsFt {
  background: #f2f2f2;
  padding: 0 10px 15px 10px;
  margin: 0 0 50px 0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

.catParentsFtCt {
  color: #000;
  font-size: 18px;
  padding: 15px 0 3px 0;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.catParentsFtC {
  display: inline-block;
  margin: 0 9px 0 0;
  line-height: 22px;
}

.catParentsFtC input {
  vertical-align: middle;
}

.sui_rang_c {
  background: repeating-linear-gradient(0deg, transparent, transparent 4px, transparent 5px, #cecece 6px, #cecece 7px, transparent 8px);
  border: 0;
}

.sui_rang_cp {
  background: repeating-linear-gradient(0deg, transparent, transparent 4px, transparent 5px, #7f7f7f 6px, #7f7f7f 7px, transparent 8px);
}

.sui_rang_cps {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #c1272d;
}

.sui_rang_cps:hover {
  background: #961a23;
}

.srsort {
  font-size: 12px;
  color: #666;
  padding: 20px 0 30px 0;
}

.srsort select {
  margin: 0 0 0 5px;
}

.scsh_tov_left {
  width: 302px;
  padding: 15px 0 0 0;
  min-height: 200px;
}

.scsh_tov_right {
  width: 407px;
  padding: 15px 0 0 0;
  position: absolute;
  right: 0;
  top: 0;
}

.scsh_tov_left .lph_imgbl_ipr {
  padding: 8px 0 0 0;
  margin: 0 0 0 -3px;
}

.scsh_tov_left .lph_imgbl_i {
  width: 71px;
  height: 71px;
  border: 1px solid #ccc;
  margin: 0 0 3px 3px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.scsh_tov_left .lph_imgbl_i img {
  max-width: 150px;
}

.scsh_tov_left .lph_imgbl_im {
  border: 1px solid #ccc;
  overflow: hidden;
}

.scsh_tov_left .lph_imgbl_im img {
  max-width: 302px;
  margin: 0;
}

.scsh_tov_left .lph_imgbl_im img:hover, .lph_imgbl_i img:hover {
  opacity: 0.8;
  cursor: pointer;
}

.scsh_tov_left .lph_imgbl_i:hover {
  border-color: #c1272d;
}

.scsh_tov_item {
  position: relative;
}

.scsh_tov_right_at {
  margin: 0 10px 10px 10px;
  color: #662d91;
  font-size: 13px;
  line-height: 18px;
}

.scsh_tov_right_at b {
  color: #666;
  margin-right: 5px;
  font-weight: normal;
}

.scsh_tov_pricer {
  margin: 0 0 33px 0;
  position: relative;
}

.scsh_tov_pricer .scsh_tvright_prs {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  text-transform: uppercase;
  padding: 5px 11px 5px 15px;
  color: #fff;
  background: #c1272d;
}

.scsh_tov_pricer .scsh_tvright_prs b {
  font-size: 26px;
}

.scsh_tvright_col {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 0 0 130px;
}

.scsh_tvright_col input {
  line-height: 22px;
  vertical-align: bottom;
  min-width: 22px;
  font-size: 14px;
  height: 22px;
  padding: 0 0 0 5px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border: 1px solid #999;
}

.scsh_tov_pricer .scsh_tvright_btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.scsh_tov_pricer .scsh_tvright_btni {
  line-height: 22px;
  border: 1px solid #c1272d;
  font-size: 13px;
  padding: 0 14px;
  display: inline-block;
  color: #c1272d;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.scsh_tov_pricer .scsh_tvright_btni:hover {
  background: #c1272d;
  color: #fff;
  cursor: pointer;
}

.scsh_tov_right .scsh_tov_right_pt {
  color: #c1272d;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 14px 0;
}

.scsh_tov_right .scsh_parc {
  color: #c1272d;
  line-height: 22px;
}

.scsh_tov_right .scsh_parc:nth-child(odd) {
  background: #f7f7f7;
}

.scsh_tov_right .scsh_parc b {
  color: #666;
  margin-right: 5px;
  font-weight: normal;
}

.scsh_tov_descr_t {
  clear: both;
  color: #c1272d;
  font-size: 16px;
  font-weight: bold;
  padding: 30px 0 10px 0;
}

.scsh_infp_c, .scsh_infp_c_sh {
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.scsh_infp_c {
  background: #f2f2f2;
  text-align: center;
  z-index: 999;
  margin-left: -200px;
  left: 50%;
  width: 400px;
  position: fixed;
  opacity: 0;
  top: 2%;
  -webkit-box-shadow: #000 0 0 30px;
  -moz-box-shadow: #000 0 0 30px;
  box-shadow: #000 0 0 30px;
}

.scsh_infp_c_sh {
  top: 40%;
  opacity: 1;
}

.scsh_infp_cbg {
  z-index: 998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.scsh_infp_x {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #fff;
  font-size: 18px;
}

.scsh_infp_x:hover {
  cursor: pointer;
}

.scsh_infp_t {
  background: #aaaab2;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  padding: 9px 30px 5px 30px;
}

.scsh_infp_in {
  color: #dc4c39;
  font-size: 12px;
  padding: 5px 30px 8px 30px;
}

.scsh_infp_bt_c {
  padding: 16px 0 10px 0;
}

.scsh_infp_bt {
  transition-property: all;
  margin: 0 5px 0 0;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: initial;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background: #f8a4a7;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 4px 11px;
}

.scsh_infp_bt:hover {
  background: #e87e86;
  cursor: pointer;
}

.scsh_infp_bt.scsh_infp_btpr {
  background-color: #66be8f;
}

.scsh_infp_bt.scsh_infp_btpr:hover {
  background-color: #45ad71;
}

.scsh_infp_bt_p {
  background: #d1e1d2;
}

.scsh_infp_bt_p:hover {
  background: #d1e1d2;
  cursor: default;
}

.scsh_shopform_c.scsh_minlin .catform_bc {
  display: none;
}

.scsh_shopform_c .scsh_card_mntxt {
  display: none;
}

.scsh_shopform_c.scsh_minlin .scsh_card_mntxt {
  display: block;
  color: red;
}

.catform_rs {
  color: #000;
}

.scsh_tov_sh_ind {
  position: fixed;
  z-index: 108;
  top: -85px;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  padding: 15px 20px 15px 40px;
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  color: #666;
  font-size: 16px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.scsh_tov_sh_ind span {
  color: #666;
  text-align: center;
  font-weight: normal;
  font-size: 18px;
  position: absolute;
  top: 13px;
  left: 9px;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}

.scsh_tov_sh_ind span svg {
  height: 21px;
  width: 21px;
}

.scsh_tov_sh_ind_act {
  top: 25px;
  opacity: 1;
}

.scsh_tov_sh_ind:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wrapper._lock {
  overflow: hidden;
  height: 100vh;
}

._container {
  max-width: 1485px;
  margin: 0 auto;
}
@media (max-width: 1515px) {
  ._container {
    max-width: 1250px;
  }
}
@media (max-width: 1279.99px) {
  ._container {
    max-width: 962px;
  }
}
@media (max-width: 991.98px) {
  ._container {
    max-width: 738px;
  }
}
@media (max-width: 767.98px) {
  ._container {
    max-width: none;
    padding: 0 15px;
  }
}

.page {
  flex: 1 1 auto;
}

.section-title {
  position: relative;
  margin-bottom: 90px;
  padding-bottom: 25px;
  font-size: 24px;
  font-family: "FiraSans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #48001E;
  border-bottom: 1px solid #48001E;
}
@media (max-width: 991.98px) {
  .section-title {
    margin-bottom: 55px;
  }
}
.section-title:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -1px;
  width: 175px;
  height: 4px;
  background-color: #ED1C24;
}

.main {
  position: relative;
}
.main__wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-auto-rows: calc(100px + 200 * ((100vw - 320px) / 1600));
}
@media (max-width: 767.98px) {
  .main__wrapper {
    display: flex;
  }
}
.main__slide {
  position: relative;
  padding: calc(20px + 30 * ((100vw - 320px) / 1600));
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .main__slide {
    height: calc(215px + 85 * ((100vw - 320px) / 1600));
  }
}
.main__slide:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main__slide_01 {
  align-items: flex-end;
  justify-content: flex-end;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-row-end: 3;
  background: url("../img/main-slider/image01.jpg") center/cover no-repeat;
}
.main__slide_01:after {
  background: linear-gradient(315deg, #22171b 15%, rgba(34, 23, 27, 0) 40%);
}
.main__slide_02 {
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 2;
  grid-row-start: 1;
  background: url("../img/main-slider/image03.jpg") center/cover no-repeat;
}
.main__slide_02:after {
  background: linear-gradient(45deg, #22171b 5%, rgba(34, 23, 27, 0) 40%);
}
.main__slide_03 {
  align-items: flex-end;
  justify-content: flex-end;
  grid-column-start: 2;
  grid-row-start: 2;
  background: url("../img/main-slider/image02.jpg") center/cover no-repeat;
}
.main__slide_03:after {
  background: linear-gradient(270deg, #22171b 5%, rgba(34, 23, 27, 0) 40%);
}
.main__title {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  font-size: 60px;
  font-family: "FiraSans", sans-serif;
  color: #fff;
}
@media (max-width: 991.98px) {
  .main__title {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .main__title {
    margin-bottom: 5px;
    font-size: 22px;
  }
}
.main__subtitle {
  position: relative;
  z-index: 2;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 105%;
  color: #ED1C24;
}
@media (max-width: 767.98px) {
  .main__subtitle {
    font-size: 14px;
  }
}
.main__text {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 105%;
  color: #ED1C24;
}
@media (max-width: 767.98px) {
  .main__text {
    font-size: 14px;
  }
}
.main__text sup {
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .main__text sup {
    font-size: 10px;
  }
}
.main__button {
  display: none;
}
@media (max-width: 767.98px) {
  .main__button {
    display: block;
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 20px;
    background: url("../img/icons/arrow-light.svg") center/100% no-repeat;
  }
  .main__button_prev {
    left: 15px;
  }
  .main__button_next {
    right: 15px;
    transform: translateY(-50%) rotate(180deg);
  }
}

.garanty {
  padding: 30px 0 30px 0;
  background-color: #48001E;
}
.garanty__body {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .garanty__body {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.garanty__item {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  position: relative;
}
@media (max-width: 767.98px) {
  .garanty__item {
    flex: 0 0 50%;
    margin-bottom: 50px;
  }
  .garanty__item:nth-child(2):after {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .garanty__item {
    flex: 0 0 100%;
  }
  .garanty__item:after {
    display: none;
  }
}
.garanty__item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 48px;
  background-color: #fff;
}
.garanty__item:last-child::after {
  display: none;
}
.garanty__item-title {
  flex: 1 1 auto;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.garanty__item-text {
  margin-bottom: 30px;
  font-size: 12px;
  font-family: "FiraSans", sans-serif;
  color: #fff;
}
.garanty__item-icon img {
  width: 52px;
  height: 35px;
}
.garanty__socials {
  display: flex;
  justify-content: center;
}
.garanty__social {
  margin: 0 20px;
}
.garanty__social img {
  width: 22px;
  height: 16px;
}

.media {
  padding: 70px 0;
  background-color: #ED1C24;
}
@media (max-width: 991.98px) {
  .media {
    padding: 30px 0;
  }
}
.media__body {
  display: flex;
}
@media (max-width: 767.98px) {
  .media__body {
    flex-direction: column;
  }
}
.media__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .media__content {
    margin-bottom: 30px;
  }
}
.media__subtitle {
  margin-bottom: 20px;
  font-size: 50px;
  font-family: "FiraSans", sans-serif;
}
@media (max-width: 991.98px) {
  .media__subtitle {
    font-size: 28px;
  }
}
.media__title {
  margin-bottom: 30px;
  font-size: 66px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .media__title {
    font-size: 38px;
  }
}
.media__text {
  font-size: 17px;
  font-family: "FiraSans", sans-serif;
}
@media (max-width: 991.98px) {
  .media__text {
    font-size: 13px;
  }
}
.media__video {
  flex: 0 0 45%;
  position: relative;
  padding-top: 25%;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .media__video {
    flex: 0 0 50%;
    padding-top: 28%;
  }
}
@media (max-width: 767.98px) {
  .media__video {
    padding-top: 55%;
  }
}
.media__video:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 63px;
  background: rgba(237, 28, 36, 0.9) url("../img/icons/arrow-yuotube.svg") center/100px no-repeat;
  border-radius: 20px;
  transition: all 0.5s;
}
@media (max-width: 767.98px) {
  .media__video:after {
    width: 45px;
    height: 32px;
    border-radius: 10px;
    background-size: 50px;
  }
}
.media__video:hover:after {
  background-color: #ed1c24;
}
.media__video img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category {
  padding: 80px 0 160px 0;
}
@media (max-width: 991.98px) {
  .category {
    padding: 40px 0 80px 0;
  }
}
@media (max-width: 767.98px) {
  .category__body {
    margin: 0 -15px;
  }
}
.category__pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}
@media (max-width: 991.98px) {
  .category__pagination {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .category__pagination {
    display: none;
  }
}
.category__button {
  margin: 0 30px;
  width: 42px;
  height: 50px;
  border-radius: 5px;
  background: #48001E url("../img/icons/arrow-light.svg") center/20px no-repeat;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .category__button {
    width: 34px;
    height: 40px;
    background-size: 15px;
  }
}
.category__button_next {
  transform: rotate(180deg);
}
.category__wrapper {
  display: flex;
}
@media (max-width: 767.98px) {
  .category__item {
    width: 50%;
  }
}
@media (max-width: 479.98px) {
  .category__item {
    width: 70%;
  }
}
.category__item:hover .category__item-image {
  transform: scale(1.05);
}
.category__item-wrap {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.category__item-image {
  position: relative;
  padding-top: 125%;
  transition: all 0.5s;
}
.category__item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category__item-title {
  position: absolute;
  top: 35px;
  left: 10px;
  padding: 15px 55px;
  font-size: 20px;
  font-family: "FiraSans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background-color: #ED1C24;
  border-radius: 40px;
}
@media (max-width: 1279.99px) {
  .category__item-title {
    top: 20px;
    padding: 8px 30px;
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .category__item-title {
    left: 5px;
    font-size: 12px;
  }
}

.info {
  position: relative;
  padding: 110px 0;
  background: url("../img/info/image-bg.jpg") center/cover no-repeat;
}
@media (max-width: 991.98px) {
  .info {
    padding: 80px 0;
  }
}
@media (max-width: 767.98px) {
  .info {
    padding: 45px 0 15px;
  }
}
.info:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}
.info__body {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 767.98px) {
  .info__body {
    display: block;
  }
}
.info__item {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .info__item {
    width: 250px;
    margin: 0 auto 30px;
  }
}
.info__item-icon {
  margin-right: 15px;
}
.info__item-icon img {
  width: 37px;
  height: 35px;
}
.info__item-text {
  max-width: 200px;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  color: #fff;
}

.products {
  padding: 90px 0 70px 0;
  background-color: #F3F3F3;
}
@media (max-width: 767.98px) {
  .products {
    padding: 70px 0 70px 0;
  }
}
.products_product {
  padding: 70px 0 0;
  background-color: transparent;
}
.products__title {
  margin-bottom: 50px;
}
.products__description {
  position: relative;
  display: flex;
  margin: 0 -18px;
}
@media (max-width: 767.98px) {
  .products__description {
    display: block;
    margin: 0;
  }
}
.products__description h2 {
  flex: 0 0 20%;
  padding: 0 18px;
  font-size: 24px;
  font-family: "FiraSans", sans-serif;
  font-weight: 700;
  line-height: 125%;
  text-align: center;
  color: #48001E;
}
@media (max-width: 1515px) {
  .products__description h2 {
    flex: 0 0 25%;
  }
}
@media (max-width: 1279.99px) {
  .products__description h2 {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 767.98px) {
  .products__description h2 {
    padding: 0;
    margin-bottom: 30px;
    font-size: 32px;
  }
}
.products__description div {
  flex: 1 1 auto;
  padding: 0 18px;
}
@media (max-width: 767.98px) {
  .products__description div {
    padding: 0;
  }
}
.products__description p {
  margin-bottom: 25px;
  line-height: 185%;
}
.products__description a {
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  width: 60px;
  height: 60px;
  background-color: #48001E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .products__description a {
    top: calc(100% + 10px);
    left: calc(100% - 60px);
  }
}
.products__description a img {
  margin-right: 5px;
  width: 35px;
  height: 30px;
}
.products__body {
  padding-bottom: 40px;
  overflow: visible;
}
@media (max-width: 767.98px) {
  .products__body {
    padding-bottom: 60px;
  }
}
.products__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -18px;
  width: calc(100% + 36px);
}
@media (max-width: 767.98px) {
  .products__wrapper {
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
  }
}
.products__item {
  flex: 0 0 20%;
  padding: 0 18px;
  margin-bottom: 40px;
  display: flex;
}
@media (max-width: 1515px) {
  .products__item {
    flex: 0 0 25%;
  }
}
@media (max-width: 1279.99px) {
  .products__item {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 991.98px) {
  .products__item {
    flex: 0 0 50%;
  }
}
@media (max-width: 767.98px) {
  .products__item {
    flex: 0 0 auto;
    padding: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 479.98px) {
  .products__item {
    flex: 0 0 80%;
  }
}

.products-card__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 10px 20px 10px;
  background-color: #fff;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
}
@media (min-width: 991.98px) {
  .products-card__wrapper:hover {
    z-index: 3;
  }
  .products-card__wrapper:hover .products-card__substrate,
.products-card__wrapper:hover .products-card__bottom {
    opacity: 1;
    visibility: visible;
  }
}
.products-card__substrate {
  position: absolute;
  top: -1px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 80px);
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
}
.products-card__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.products-card__top-block {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.products-card__top-block:hover .products-card__icon img {
  width: 16px;
  height: 15px;
}
.products-card__icon {
  flex: 0 0 25px;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products-card__icon img {
  width: 12px;
  height: 11px;
  transition: all 0.5s;
}
.products-card__text {
  font-size: 13px;
  font-family: "FiraSans", sans-serif;
}
.products-card__image {
  position: relative;
  margin-bottom: 20px;
  padding-top: 80%;
}
.products-card__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products-card__name {
  flex: 1 1 auto;
  position: relative;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "FiraSans", sans-serif;
  color: #343434;
}
.products-card__price {
  position: relative;
  text-align: center;
  font-size: 17px;
  font-family: "FiraSans", sans-serif;
}
@media (max-width: 991.98px) {
  .products-card__price {
    margin-bottom: 20px;
  }
}
.products-card__price span {
  font-size: 21px;
  font-weight: 700;
  color: #ED1C24;
}
.products-card__bottom {
  position: absolute;
  padding: 0 10px;
  left: 0;
  top: calc(100% + 15px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
}
@media (max-width: 991.98px) {
  .products-card__bottom {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
}

.breadcrumbs {
  padding: 50px 0 0 0;
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__list li {
  font-size: 14px;
  font-family: "FiraSans", sans-serif;
  color: #48001E;
  white-space: nowrap;
}
.breadcrumbs__item {
  position: relative;
  margin-right: 30px;
  font-size: 14px;
  font-family: "FiraSans", sans-serif;
  color: #ED1C24;
  white-space: nowrap;
}
.breadcrumbs__item:after {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ED1C24;
}
.breadcrumbs__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  width: 6px;
  height: 14px;
  background: url("../img/icons/arrow-breadcrumbs.svg") center/100% no-repeat;
}

.categories {
  padding: 35px 0 35px 0;
}
.categories__title {
  margin-bottom: 20px;
  font-size: 36px;
  font-family: "FiraSans", sans-serif;
  font-weight: 700;
  color: #48001E;
}
.categories__wrapper {
  display: flex;
  margin: 0 -10px;
  width: auto;
}
@media (max-width: 1515px) {
  .categories__wrapper {
    margin: 0;
    width: 100%;
  }
}
.categories__item {
  flex: 0 0 20%;
  padding: 0 10px;
}
@media (max-width: 1515px) {
  .categories__item {
    padding: 0;
    flex: 0 0 280px;
    width: 280px;
  }
}
@media (max-width: 479.98px) {
  .categories__item {
    flex: 0 0 250px;
    width: 250px;
  }
}
.categories__item:hover .categories__item-image {
  transform: scale(1.05);
}
.categories__item-wrap {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.categories__item-image {
  position: relative;
  padding-top: 125%;
  transition: all 0.5s;
}
.categories__item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories__item-title {
  position: absolute;
  top: 20px;
  left: 10px;
  padding: 10px 30px;
  font-size: 12px;
  font-family: "FiraSans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background-color: #ED1C24;
  border-radius: 40px;
}

.catalog {
  padding: 30px 0 30px 0;
}
@media (max-width: 767.98px) {
  .catalog {
    padding: 30px 0 10px 0;
  }
}
.catalog__title {
  margin-bottom: 75px;
}
@media (max-width: 767.98px) {
  .catalog__title {
    margin-bottom: 55px;
  }
}
.catalog__body {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -18px;
}
@media (max-width: 991.98px) {
  .catalog__body {
    justify-content: center;
  }
}
.catalog__item {
  flex: 0 0 20%;
  padding: 0 18px;
  margin-bottom: 40px;
  display: flex;
}
@media (max-width: 1515px) {
  .catalog__item {
    flex: 0 0 25%;
  }
}
@media (max-width: 1279.99px) {
  .catalog__item {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 991.98px) {
  .catalog__item {
    flex: 0 0 290px;
  }
}
@media (max-width: 600px) {
  .catalog__item {
    margin-bottom: 25px;
  }
}

.catalog-card__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 8px 20px 8px;
  background-color: #fff;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
}
@media (min-width: 991.98px) {
  .catalog-card__wrapper:hover {
    z-index: 3;
  }
  .catalog-card__wrapper:hover .catalog-card__substrate,
.catalog-card__wrapper:hover .catalog-card__bottom {
    opacity: 1;
    visibility: visible;
  }
}
.catalog-card__substrate {
  position: absolute;
  top: -1px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 80px);
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}
.catalog-card__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.catalog-card__top-block {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.catalog-card__top-block:hover .catalog-card__icon img {
  height: 15px;
}
.catalog-card__icon {
  flex: 0 0 25px;
  margin-right: 5px;
  width: 25px;
  height: 25px;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalog-card__icon img {
  height: 11px;
  transition: all 0.5s;
}
.catalog-card__text {
  font-size: 12px;
  font-family: "FiraSans", sans-serif;
}
.catalog-card__image {
  position: relative;
  margin-bottom: 20px;
  padding-top: 80%;
}
.catalog-card__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-card__name {
  flex: 1 1 auto;
  position: relative;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "FiraSans", sans-serif;
  color: #343434;
}
.catalog-card__price {
  position: relative;
  text-align: center;
  font-size: 17px;
  font-family: "FiraSans", sans-serif;
}
@media (max-width: 991.98px) {
  .catalog-card__price {
    margin-bottom: 20px;
  }
}
.catalog-card__price span {
  font-size: 21px;
  font-weight: 700;
  color: #ED1C24;
}
.catalog-card__bottom {
  position: absolute;
  padding: 0 10px;
  left: 0;
  top: calc(100% + 15px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}
@media (max-width: 991.98px) {
  .catalog-card__bottom {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
}

.about {
  padding: 60px 0 30px;
}
@media (max-width: 767.98px) {
  .about {
    padding: 30px 0 10px 0;
  }
}
.about h1 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  color: #48001E;
}
.about h2 {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  color: #48001E;
}
.about p {
  margin-bottom: 30px;
  line-height: 185%;
}
.about blockquote {
  margin-bottom: 30px;
  padding: 20px 20px 20px 50px;
  line-height: 185%;
  background-color: #F3F3F3;
  border-left: 3px solid #ED1C24;
}
.about ul {
  padding-left: 45px;
}
.about ul li {
  position: relative;
  margin-bottom: 30px;
  line-height: 185%;
}
.about ul li:before {
  content: "";
  position: absolute;
  top: 3px;
  left: -45px;
  width: 21px;
  height: 21px;
  background: url("../img/icons/list-icon.svg") center/100% no-repeat;
}

.brand {
  padding: 30px 0 30px 0;
}
@media (max-width: 767.98px) {
  .brand {
    padding: 30px 0 20px 0;
  }
}
.brand__title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  color: #48001E;
}
@media (max-width: 767.98px) {
  .brand__title {
    font-size: 30px;
  }
}
.brand__body {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media (max-width: 767.98px) {
  .brand__body {
    margin: 0 -5px;
  }
}
.brand__item {
  flex: 0 0 20%;
  padding: 0 10px;
  display: flex;
}
@media (max-width: 767.98px) {
  .brand__item {
    flex: 0 0 33.333%;
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
.brand__item:hover .brand__image {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
}
.brand__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  transition: all 0.8s;
}
.brand__image img {
  max-width: 100%;
  max-height: 100%;
}

.category-page {
  padding: 30px 0 100px 0;
}
.category-page__title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  color: #48001E;
}
.category-page__button {
  display: none;
}
@media (max-width: 767.98px) {
  .category-page__button {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .category-page__button img {
    height: 18px;
    margin-right: 15px;
  }
}
@media (max-width: 767.98px) {
  .category-page__button span {
    font-family: "FiraSans", sans-serif;
    color: #ED1C24;
  }
}
.category-page__body {
  display: flex;
}
.category-page__close {
  display: none;
}
@media (max-width: 767.98px) {
  .category-page__close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    width: 25px;
    height: 25px;
  }
  .category-page__close:after, .category-page__close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #343434;
  }
  .category-page__close:after {
    transform: translateY(-50%) rotate(45deg);
  }
  .category-page__close:before {
    transform: translateY(-50%) rotate(-45deg);
  }
}
.category-page__filter {
  flex: 0 0 280px;
  margin-right: 15px;
}
@media (max-width: 1279.99px) {
  .category-page__filter {
    flex: 0 0 210px;
    margin-right: 10px;
  }
}
@media (max-width: 991.98px) {
  .category-page__filter {
    flex: 0 0 230px;
  }
}
@media (max-width: 767.98px) {
  .category-page__filter {
    position: fixed;
    z-index: 50;
    top: 0;
    left: -120%;
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.65);
    transition: all 0.5s;
  }
}
@media (max-width: 479.98px) {
  .category-page__filter {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .category-page__filter._active {
    left: 0;
  }
}
.category-page__filter .catParentsFt {
  margin-bottom: 20px;
  padding: 20px 15px;
  background-color: transparent;
  border: 1px solid #E8E8E8;
  border-radius: 5px;
}
@media (max-width: 767.98px) {
  .category-page__filter .catParentsFt {
    margin-bottom: 0;
    padding: 20px 15px 0;
    border: none;
  }
}
.category-page__filter .catParentsFtCt {
  margin-bottom: 15px;
  padding: 0;
  font-size: 19px;
  font-family: "FiraSans", sans-serif;
}
@media (max-width: 767.98px) {
  .category-page__filter .catParentsFtCt {
    margin-bottom: 25px;
  }
}
.category-page__filter .sui_rang_c {
  margin-bottom: 15px;
  height: 16px;
  background: transparent;
}
@media (max-width: 767.98px) {
  .category-page__filter .sui_rang_c {
    margin-bottom: 25px;
    max-width: none;
    width: 100%;
  }
}
.category-page__filter .sui_rang_cp {
  height: 16px;
  background: repeating-linear-gradient(0deg, transparent, transparent 6px, transparent 7px, #ED1C24 8px, #ED1C24 9px, transparent 10px);
}
.category-page__filter .sui_rang_cps {
  width: 16px;
  height: 16px;
  background: #48001E;
}
.category-page__filter .sui_rang_cpr {
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.category-page__filter .sui_rang_cpr1,
.category-page__filter .sui_rang_cpr2 {
  padding: 5px 20px;
  font-family: "FiraSans", sans-serif;
  line-height: 100%;
  background: transparent;
  height: auto;
  border: none;
  border-bottom: 2px solid #E8E8E8;
}
@media (max-width: 1279.99px) {
  .category-page__filter .sui_rang_cpr1,
.category-page__filter .sui_rang_cpr2 {
    padding: 5px 10px;
  }
}
@media (max-width: 767.98px) {
  .category-page__filter .sui_rang_cpr1,
.category-page__filter .sui_rang_cpr2 {
    font-size: 16px;
    padding: 5px 20px;
  }
}
.category-page__filter .catParentsFtCt_c {
  padding-bottom: 25px;
}
.category-page__filter .catParentsFtC_c {
  display: flex;
  flex-direction: column;
}
.category-page__filter .catParentsFtC {
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "FiraSans", sans-serif;
  line-height: 100%;
  color: #333333;
  cursor: pointer;
}
.category-page__filter .catParentsFtC input {
  margin-right: 10px;
}
.category-page__block {
  padding: 20px 0;
  border: 1px solid #E8E8E8;
  border-radius: 5px;
}
@media (max-width: 767.98px) {
  .category-page__block {
    border: none;
  }
}
.category-page__block-title {
  margin-bottom: 15px;
  padding: 0 15px;
  font-size: 19px;
  font-family: "FiraSans", sans-serif;
}
.category-page__link {
  display: block;
  padding: 7px 15px;
  font-size: 14px;
  font-family: "FiraSans", sans-serif;
  color: #000;
  transition: all 0.5s;
}
.category-page__link:hover {
  color: #fff;
  background-color: #ED1C24;
}
.category-page__content {
  flex: 1 1 auto;
}
@media (max-width: 1515px) {
  .category-page__content .catalog__body {
    margin: 0 -5px;
  }
}
.category-page__content .catalog__item {
  flex: 0 0 25%;
}
@media (max-width: 1515px) {
  .category-page__content .catalog__item {
    flex: 0 0 25%;
    padding: 0 5px;
  }
}
@media (max-width: 1279.99px) {
  .category-page__content .catalog__item {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 991.98px) {
  .category-page__content .catalog__item {
    flex: 0 0 50%;
  }
}
@media (max-width: 767.98px) {
  .category-page__content .catalog__item {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 1279.99px) {
  .category-page__content .catalog-card__icon {
    margin-right: 5px;
  }
}
@media (max-width: 1279.99px) {
  .category-page__content .catalog-card__text {
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .category-page__content .catalog-card__text {
    font-size: 13px;
  }
}

.product {
  padding: 30px 0 20px 0;
}
@media (max-width: 767.98px) {
  .product {
    padding: 30px 0 10px 0;
  }
}
.product__title {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
  color: #48001E;
}
@media (max-width: 767.98px) {
  .product__title {
    margin-bottom: 50px;
    font-size: 30px;
    line-height: 125%;
  }
}
.product__body {
  display: flex;
}
@media (max-width: 767.98px) {
  .product__body {
    display: block;
  }
}
.product__prevue {
  flex: 0 0 540px;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .product__prevue {
    flex: 0 0 50%;
  }
}
@media (max-width: 767.98px) {
  .product__prevue {
    max-width: 540px;
    margin: 0 auto 80px;
  }
}
.product__image {
  position: relative;
  margin-bottom: 35px;
  padding-top: 65%;
}
.product__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__slider {
  position: relative;
  margin: 0 7px;
  padding: 0 23px;
}
@media (max-width: 767.98px) {
  .product__slider {
    margin: 0;
    padding: 0;
  }
}
.product__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 27px;
  background: url("../img/icons/arrow-grey.svg") center/100% no-repeat;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .product__arrow {
    display: none;
  }
}
.product__arrow_prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.product__arrow_next {
  right: 0;
}
.product__slider-wrap {
  display: flex;
}
.product__slide {
  display: flex;
}
.product__slide-image {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #989898;
  cursor: pointer;
}
.product__slide-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__column {
  flex: 1 1 auto;
  padding-left: 60px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1279.99px) {
  .product__column {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .product__column {
    padding-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .product__column {
    padding-left: 0;
  }
}
@media (max-width: 1279.99px) {
  .product__control {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .product__control {
    max-width: 350px;
    margin: 0 auto 80px;
  }
}
.product__control-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.product__control-top-block {
  display: flex;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
}
.product__control-top-block:last-child {
  margin-right: 0;
}
.product__control-top-block:hover .product__control-top-icon img {
  height: 20px;
}
.product__control-top-icon {
  margin-right: 13px;
  width: 32px;
  height: 32px;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__control-top-icon img {
  height: 15px;
  transition: all 0.8s;
}
.product__control-top-text {
  font-size: 17px;
  font-family: "FiraSans", sans-serif;
}
@media (max-width: 479.98px) {
  .product__control-top-text {
    font-size: 15px;
  }
}
.product__control-price {
  margin-bottom: 45px;
  font-size: 24px;
  font-family: "FiraSans", sans-serif;
  color: #ED1C24;
}
.product__control-price span {
  font-size: 43px;
  font-weight: 700;
}
.product__control-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__control-bottom-button {
  padding: 10px 30px;
}
@media (max-width: 767.98px) {
  .product__info {
    max-width: 350px;
    margin: 0 auto;
  }
}
.product__info-title {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  font-family: "FiraSans", sans-serif;
}
.product__info-list li {
  margin-bottom: 10px;
  font-size: 18px;
  font-family: "FiraSans", sans-serif;
  color: #4D4E4E;
}
.product__info-list li span {
  font-weight: 700;
  color: #000;
}