@font-face {
  font-family: 'Inter Regular';
  src: url("../fonts/Inter-Regular.eot");
  src: local("Inter-Regular"), url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Medium';
  src: url("../fonts/Inter-Medium.eot");
  src: local("Inter-Medium"), url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff"), url("../fonts/Inter-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Bold';
  src: url("../fonts/Inter-Bold.eot");
  src: local("Inter-Bold"), url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

body, html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-size: 15px;
  min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

ul, li {
  display: block;
  padding: 0px;
  margin: 0px;
}

textarea {
  resize: none;
}

p {
  font-size: 16px;
}

img {
  border-style: none;
}

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: none;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoratio {
  display: none;
}

[hidden] {
  display: none;
}

p, nav {
  margin: 0;
  padding: 0;
}

a, a:hover, a:active, a:focus,
button, input, button:hover, button:active, button:focus,
input:focus, input:active {
  text-decoration: none;
  outline: none;
  /*  -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;*/
}

input {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

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

.f-jcsb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f-jcsa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

.f-jcsb-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-jcsa-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-center-center {
  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;
}

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

.f-dc-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.f-dc-jcsb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f-dc-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-dc-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  pointer-events: none;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.breadcrumbs {
  border-bottom: 1px solid #d5d5d5;
}

.breadcrumbs-list {
  padding: 20px 0;
}

.breadcrumbs-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs-list li:not(:first-child)::before {
  content: '';
  width: 10px;
  height: 1px;
  background: #000;
  margin: 0 10px;
}

.titleMain {
  font-family: 'Inter Bold';
  font-size: 32px;
  margin-bottom: 30px;
}

.hidden {
  overflow: hidden;
}

.none {
  display: none;
}

a, span, p, input, button, select, option, textarea, label, blockquote {
  font-family: 'Inter Regular';
  font-size: 16px;
  line-height: normal;
  color: #000;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #A5A5A5;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #A5A5A5;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #A5A5A5;
}

input::placeholder, textarea::placeholder {
  color: #A5A5A5;
}

textarea {
  height: 100%;
}

label.error {
  font-family: 'Inter Regular';
  font-size: 14px;
  color: #C62828;
  margin-top: 3px;
  display: inline-block;
}

b {
  font-family: 'Inter Medium';
}

body {
  background: #f3f3f3;
}

input, textarea {
  border: none;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 15px;
}

main {
  position: relative;
}

.container {
  width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #fff;
  border-bottom: 1px solid #d5d5d5;
}

.header-wrapper {
  padding: 20px 0;
}

.header__logo {
  width: 110px;
  height: 64px;
}

.header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header nav ul li {
  position: relative;
}

.header nav ul li:not(:last-child) {
  margin-right: 25px;
}

.header nav ul li a, .header nav ul li span {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header nav ul li a svg, .header nav ul li span svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.header nav ul li a svg path, .header nav ul li span svg path {
  fill: #f86e37;
}

.header nav ul li a span, .header nav ul li span span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header nav ul li a:hover span, .header nav ul li span:hover span {
  color: #f86e37;
}

.header-left-block {
  margin-left: 20px;
}

.header-left-block span {
  font-size: 14px;
  margin-top: 2px;
}

.header__phone {
  background: #f86e37;
  border-radius: 36px;
  border: 1px solid #f86e37;
  padding: 5px 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: 'Inter Medium';
}

.header__phone svg {
  margin-right: 10px;
  width: 20px;
  height: 25px;
}

.header__phone svg path {
  fill: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__phone:hover {
  background: transparent;
  color: #f86e37;
}

.header__phone:hover svg path {
  fill: #f86e37;
}

.header-burger {
  width: 28px;
  height: 20px;
  z-index: 3;
  display: none;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-burger span {
  position: absolute;
  height: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #f86e37;
  width: 100%;
}

.header-burger span:nth-child(1) {
  top: 0;
  left: 0;
}

.header-burger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.header-burger span:nth-child(3) {
  bottom: 0;
  right: 0;
}

.header-burger.open span {
  -webkit-transition: all ease-in .2s;
  transition: all ease-in .2s;
}

.header-burger.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.header-burger.open span:nth-child(2) {
  opacity: 0;
}

.header-burger.open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.header .cardOpen .cardCount {
  position: relative;
  height: 100%;
}

.header .cardOpen .cardCount span {
  position: absolute;
  bottom: 3px;
  right: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #f86e37;
  font-family: 'Inter Medium';
  background: #fff;
  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;
}

.header-cart {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f86e37;
  margin-left: 20px;
  position: relative;
}

.header-cart svg {
  width: 25px;
  height: 25px;
}

.header-cart svg path {
  fill: #ffffff;
}

.cart {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  z-index: 5;
  top: 46px;
  width: 500px;
  right: 0;
  background: #fff;
  padding: 45px 12px 12px 12px;
  border: 1px solid #f86e37;
  -webkit-box-shadow: 6px 5px 70px -30px #000;
          box-shadow: 6px 5px 70px -30px #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cart.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.cart__close {
  position: absolute;
  right: 12px;
  cursor: pointer;
  top: 12px;
  width: 25px;
  height: 25px;
}

.cart__close svg {
  width: 100%;
  height: 100%;
}

.cart__close svg path {
  fill: #000;
}

.cart-list {
  padding-bottom: 20px;
  border-bottom: 1px solid #f86e37;
}

.cart-item:not(:last-child) {
  margin-right: 0 !important;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f86e37;
}

.cart-item-image {
  position: relative;
  width: 180px;
  height: 100px;
  border-radius: 8px;
  margin-right: 14px;
  -webkit-box-shadow: 0 0 13px -5px #000;
          box-shadow: 0 0 13px -5px #000;
}

.cart-item-image span {
  color: #fff !important;
  font-family: 'Inter Medium';
}

.cart-item-image__icon {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 10px;
}

.cart-item-image-cost {
  position: absolute;
  right: 8px;
  top: 8px;
  font-family: 'Inter Medium';
}

.cart-item-image-cost span {
  font-size: 12px;
  color: #fff;
  font-family: 'Inter Medium';
}

.cart-item-image-cost span span {
  margin-left: 3px;
}

.cart-item-image__region {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 12px;
  color: #fff;
  font-family: 'Inter Medium';
}

.cart-item-image-info {
  width: calc(100% - 190px);
}

.cart-item__title {
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cart-item__title span {
  display: inline-block !important;
  font-family: 'Inter Bold';
}

.cart-item-cost {
  font-family: 'Inter Bold';
  color: #000 !important;
}

.cart-item-cost span {
  font-family: 'Inter Bold';
  margin-right: 5px;
  color: #000 !important;
}

.cart-item-bottom {
  padding-top: 12px;
}

.cart-item-bottom__button {
  border: 1px solid #f86e37;
  background: #f86e37;
  padding: 10px 35px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cart-item-bottom__button:hover {
  background: transparent;
  color: #f86e37;
}

.cart-item-total .currency {
  text-decoration: underline;
}

.cart-item-total span {
  display: inline-block !important;
  text-decoration: underline;
}

.cart-item-total .text {
  margin-right: 5px;
  font-family: 'Inter Bold';
}

.cart-item.white .cart-item-image span {
  color: #000 !important;
}

.cart-item__remove {
  text-align: right;
  margin-top: 5px;
  color: #ff3838;
}

.cart-item:hover .cart-item__title {
  color: #f86e37;
}

.intro__title {
  margin-bottom: 30px;
  font-family: 'Inter Medium';
  font-size: 32px;
  text-align: center;
}

.intro__descr {
  text-align: center;
  margin-bottom: 15px;
}

.catalogArticle {
  border-bottom: 1px solid #d5d5d5;
}

.catalogArticle-wrapper {
  padding: 15px 0;
}

.catalogArticle__button {
  border: 1px solid #f86e37;
  width: 210px;
  padding: 12px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.catalogArticle__button:not(:last-child) {
  margin-right: 30px;
}

.catalogArticle__button.active {
  background: #f86e37;
  color: #fff;
}

.catalogArticle__button:hover {
  background: #f86e37;
  color: #fff;
}

.catalog:not(:last-of-type) {
  border-bottom: 1px solid #d5d5d5;
}

.catalog-wrapper {
  padding: 30px 0;
}

.catalog .slick-disabled {
  opacity: 0;
}

.catalog .slick-slide {
  margin: 0 15px;
}

.catalog .slick-slide > div:not(:last-child) {
  margin-bottom: 30px;
}

.catalog .slick-dots {
  bottom: -50px;
}

.catalog .slick-dots li {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #0098f2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.catalog .slick-dots li.slick-active {
  background: #0098f2;
}

.catalog .slick-dots li button {
  color: transparent;
}

.catalog .slick-dots li button::before {
  display: none;
}

.catalog-head {
  margin-bottom: 30px;
}

.catalog-head__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
}

.catalog-head__name {
  font-size: 24px;
  font-family: 'Inter Medium';
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  max-width: calc(100% - 54px);
}

.catalog-head-main {
  width: 100%;
}

.catalog-list {
  width: calc(100% - 150px);
  margin: 0 auto;
}

.catalog-slider__button {
  width: 50px;
  height: 50px;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.catalog-slider.noSlider .catalog-slider__button {
  display: none;
}

.catalog-slider.noSlider .catalog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 180px);
}

.catalog-slider.noSlider .catalog-item:not(:nth-last-child(-n + 3)) {
  margin-bottom: 30px;
}

.catalog-slider.noSlider .catalog-item:not(:nth-child(3n + 3)) {
  margin-right: 30px;
}

.catalog-item {
  width: 320px;
  height: 185px;
  position: relative;
}

.catalog-item.white .catalog-item-front .cost {
  color: #fff;
}

.catalog-item.white .catalog-item-front .currency {
  color: #fff;
}

.catalog-item.white .catalog-item-front .catalog-item__region {
  color: #fff;
}

.catalog-item__icon {
  width: 25px;
  height: 25px;
  position: absolute;
  left: 16px;
  top: 16px;
}

.catalog-item-cost {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 16px;
  top: 16px;
}

.catalog-item-cost span {
  font-family: 'Inter Medium';
}

.catalog-item__region {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-family: 'Inter Medium';
}

.catalog-item-front {
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  width: 100%;
  height: 100%;
}

.catalog-item-back {
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  background: #0098f2;
  padding: 20px 40px;
}

.catalog-item__link {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  margin-bottom: 12px;
  display: inline-block;
}

.catalog-item-availability {
  margin-bottom: 12px;
}

.catalog-item-availability span {
  color: #fff;
  margin-left: 5px;
  font-family: 'Inter Bold';
}

.catalog-item-buy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.catalog-item-buy__incart {
  border: 1px solid #fff;
  width: 45px;
  height: 40px;
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.catalog-item-buy__incart.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-item-buy__incart svg {
  width: 70%;
  height: 70%;
}

.catalog-item-buy__incart svg path {
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.catalog-item-buy__incart.inCart svg path, .catalog-item-buy__incart.errorCart svg path {
  fill: #fff;
}

.catalog-item-buy__incart.inCart {
  pointer-events: none;
}

.catalog-item-buy__incart:hover {
  background: #fff;
}

.catalog-item-buy__incart:hover svg path {
  stroke: #0098f2;
}

.catalog-item-buy__incart:hover.inCart svg path, .catalog-item-buy__incart:hover.errorCart svg path {
  fill: #0098f2;
}

.catalog-item-buy__button {
  border: 1px solid #fff;
  background: #fff;
  height: 100%;
  padding: 8px 25px;
  color: #0098f2;
  opacity: .8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.catalog-item-buy__button:hover {
  opacity: 1;
}

.catalog-item:hover .catalog-item-front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.catalog-item:hover .catalog-item-back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.catalog-showAll {
  margin: 35px auto 0 auto;
  color: #0098f2;
  border-bottom: 1px solid #0098f2;
}

.product {
  border-bottom: 1px solid #d5d5d5;
}

.product-wrapper {
  padding: 30px 0;
}

.product-head {
  margin-bottom: 30px;
}

.product-head__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
}

.product-head__name {
  font-size: 24px;
  max-width: calc(100% - 54px);
  font-family: 'Inter Medium';
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}

.product-info-card {
  width: 320px;
  height: 185px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
}

.product-info-card.white .product-info-card__region {
  color: #fff;
}

.product-info-card.white .cost {
  color: #fff;
}

.product-info-card.white .currency {
  color: #fff;
}

.product-info-card__icon {
  width: 25px;
  height: 25px;
  position: absolute;
  left: 16px;
  top: 16px;
}

.product-info-card-cost {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 16px;
  top: 16px;
}

.product-info-card-cost span {
  font-family: 'Inter Medium';
}

.product-info-card__region {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-family: 'Inter Medium';
}

.product-info-card-front {
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  width: 100%;
  height: 100%;
}

.product-info-availability svg {
  width: 30px;
  height: 30px;
}

.product-info-availability span {
  font-size: 18px;
}

.product-info-main {
  width: 230px;
}

.product-info-main__text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 12px;
}

.product-info-main-inner {
  margin-bottom: 12px;
}

.product-info-item:not(:last-child) {
  margin-right: 50px;
}

.product-info-availability {
  display: none;
}

.product-info-availability span {
  color: #f75c1e;
  margin-left: 5px;
}

.product-info-availability.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-info-buy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.product-info-buy__incart {
  border: 1px solid #f75c1e;
  width: 45px;
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-info-buy__incart.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-info-buy__incart svg {
  width: 70%;
  height: 70%;
}

.product-info-buy__incart svg path {
  stroke: #f75c1e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-info-buy__incart.inCart svg path, .product-info-buy__incart.errorCart svg path {
  fill: #f75c1e;
}

.product-info-buy__incart:hover {
  background: #f75c1e;
}

.product-info-buy__incart:hover svg path {
  stroke: #fff;
}

.product-info-buy__incart:hover.inCart svg path, .product-info-buy__incart:hover.errorCart svg path {
  fill: #fff;
}

.product-info-buy__button {
  background: #f75c1e;
  padding: 12px 45px;
  color: #fff;
  opacity: .8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-info-buy__button:hover {
  opacity: 1;
}

.product-info-share-item {
  width: 35px;
  height: 35px;
  background: #cecece;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-info-share-item:not(:last-child) {
  margin-right: 5px;
}

.product-info-share-item-link {
  width: 100%;
  height: 100%;
}

.product-info-share-item-link svg {
  width: 60%;
}

.product-info-share-item-link svg path {
  fill: #fff;
}

.product-info-share-item.vk:hover {
  background: #1976d2;
}

.product-info-share-item.fb:hover {
  background: #0866ff;
}

.product-info-share-item.vb:hover {
  background: #8f5db7;
}

.product-info-share-item.wa:hover {
  background: #25d366;
}

.product-info-share-item.tg:hover {
  background: #08c;
}

.product-info-share__title {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

.product-info-order {
  width: calc(100% - 370px);
}

.product-info-order svg {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.product-info-order-inner {
  width: calc(100% - 120px);
}

.product-info-order__title {
  font-family: 'Inter Bold';
  font-size: 20px;
  margin-bottom: 10px;
}

.product-info-order__licence {
  margin-bottom: 5px;
}

.product-info-order__licence span {
  text-decoration: underline;
}

.product-info-order__descr span {
  text-decoration: underline;
}

.productInfo {
  background: #fff;
}

.productInfoContent {
  padding: 20px;
}

.productInfoContent .productInfoContent__title-1 {
  font-size: 26px;
  font-family: 'Inter Bold';
}

.productInfoContent b {
  font-family: 'Inter Bold';
}

.productInfoContent p {
  margin: 5px 0;
}

.productInfoContent a {
  color: #f86e37;
  text-decoration: underline;
}

.productInfoContent ul li {
  position: relative;
  font-family: 'Inter Regular';
  font-size: 16px;
  line-height: normal;
  color: #000;
  padding-left: 15px;
}

.productInfoContent ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #f86e37;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.productInfoContent ul li:not(:last-child) {
  margin-bottom: 8px;
}

.productInfoContent ol {
  counter-reset: list;
  padding-left: 0;
}

.productInfoContent ol li {
  position: relative;
  font-family: 'Inter Regular';
  font-size: 16px;
  line-height: normal;
  padding-left: 40px;
}

.productInfoContent ol li::before {
  counter-increment: list;
  content: counter(list) "";
  width: 30px;
  height: 30px;
  border: 2px solid #f86e37;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -4px;
  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;
  color: #f86e37;
}

.productInfoContent ol li:not(:last-child) {
  margin-bottom: 18px;
}

.productInfo-wrapper {
  padding: 30px 0;
}

.productInfo-tabs {
  border: 1px solid #f86e37;
}

.productInfo__tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.productInfo__tab:not(:last-child) {
  border-right: 1px solid #f86e37;
}

.productInfo__tab.active {
  background: #f86e37;
  color: #fff;
}

.productInfo__tab:hover {
  background: #f86e37;
  color: #fff;
}

.productInfo-inner {
  padding-top: 30px;
}

.productInfo-question {
  border: 1px solid #f86e37;
  padding: 0 20px;
}

.productInfo-question-item:not(:last-child) {
  border-bottom: 1px solid #f86e37;
}

.productInfo-question-item.open .productInfo-question-item-head__button {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.productInfo-question-item-head {
  padding: 20px 0;
  cursor: pointer;
}

.productInfo-question-item-head__text {
  font-size: 18px;
  font-family: 'Inter Medium';
  width: calc(100% - 50px);
}

.productInfo-question-item-head__button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  border: 1px solid #f86e37;
  border-radius: 50%;
  background: #f86e37;
}

.productInfo-question-item-head__button svg {
  width: 80%;
}

.productInfo-question-item-content {
  padding: 0 0 20px 0;
  display: none;
}

.productInfo-block {
  display: none;
}

.productInfo-block.show {
  display: block;
}

.productInfo-block-text {
  border: 1px solid #f86e37;
}

.contacts-wrapper {
  padding-top: 40px;
}

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

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

.contacts-line:not(:last-child) {
  margin-bottom: 20px;
}

.contacts-line__title {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: 'Inter Medium';
}

.contacts-line__text a {
  text-decoration: underline;
  color: #f86e37;
}

.contacts-form {
  margin: 50px 0;
}

.contacts-form__title {
  font-size: 20px;
  text-align: center;
  font-family: 'Inter Medium';
  width: 60%;
  text-align: center;
  margin: 0 auto 30px auto;
}

.contacts-form-inner {
  border: 1px solid #f86e37;
  padding: 20px;
}

.contacts-form-elem {
  width: 49%;
  margin-bottom: 25px;
}

.contacts-form-elem.message {
  width: 100%;
  margin-right: 0;
}

.contacts-form-elem__title {
  margin-bottom: 5px;
  font-family: 'Inter Medium';
}

.contacts-form-elem__input {
  padding: 10px 15px;
}

.contacts-form-elem__textarea {
  padding: 10px 15px;
  height: 150px;
}

.contacts-form__button {
  border: 1px solid #f86e37;
  background: #f86e37;
  padding: 10px 45px;
  color: #fff;
  font-family: 'Inter Medium';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts-form__button:hover {
  background: #fff;
  color: #f86e37;
}

.page-wrapper {
  padding-top: 40px;
}

.page-content p {
  margin-bottom: 10px;
}

.page-content p strong {
  font-family: 'Inter Bold';
  font-weight: normal;
}

.page-content ul {
  margin-bottom: 10px;
}

.page-content ul li {
  padding-left: 15px;
  position: relative;
  font-family: 'Inter Regular';
  font-size: 16px;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  background: #f86e37;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.page-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.checkout-wrapper {
  padding-top: 40px;
}

.checkout-table {
  width: 48%;
}

.checkout-table-head {
  margin-bottom: 10px;
}

.checkout-table-head__text {
  font-size: 20px;
  font-family: 'Inter Medium';
}

.checkout-table-head__text span {
  font-size: 20px;
  font-family: 'Inter Bold';
}

.checkout-table-main {
  background: #fff;
  padding: 12px;
  border: 1px solid #f86e37;
}

.checkout-table-main .cart-list {
  padding-bottom: 20px;
  border-bottom: 1px solid #f86e37;
}

.checkout-table-main .cart-item:not(:last-child) {
  margin-right: 0 !important;
  margin-bottom: 20px;
}

.checkout-table-main .cart-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout-table-main .cart-item-image {
  position: relative;
  width: 180px;
  height: 100px;
  border-radius: 8px;
  margin-right: 14px;
  -webkit-box-shadow: 0 0 13px -5px #000;
          box-shadow: 0 0 13px -5px #000;
}

.checkout-table-main .cart-item-image span {
  color: #fff !important;
  font-family: 'Inter Medium';
}

.checkout-table-main .cart-item-image__icon {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 10px;
}

.checkout-table-main .cart-item-image-cost {
  position: absolute;
  right: 8px;
  top: 4px;
  font-family: 'Inter Medium';
}

.checkout-table-main .cart-item-image-cost span {
  font-size: 12px;
  color: #fff;
  font-family: 'Inter Medium';
}

.checkout-table-main .cart-item-image-cost span span {
  margin-left: 3px;
}

.checkout-table-main .cart-item-image__region {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 12px;
  color: #fff;
  font-family: 'Inter Medium';
}

.checkout-table-main .cart-item-image-info {
  width: calc(100% - 190px);
}

.checkout-table-main .cart-item__title {
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.checkout-table-main .cart-item__title span {
  display: inline-block !important;
  font-family: 'Inter Bold';
}

.checkout-table-main .cart-item-cost {
  font-family: 'Inter Bold';
  color: #000 !important;
}

.checkout-table-main .cart-item-cost span {
  font-family: 'Inter Bold';
  margin-right: 5px;
  color: #000 !important;
}

.checkout-table-main .cart-item-bottom {
  padding-top: 12px;
}

.checkout-table-main .cart-item-bottom__button {
  border: 1px solid #f86e37;
  background: #f86e37;
  padding: 10px 35px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.checkout-table-main .cart-item-bottom__button:hover {
  background: transparent;
  color: #f86e37;
}

.checkout-table-main .cart-item-total .currency {
  text-decoration: underline;
}

.checkout-table-main .cart-item-total span {
  display: inline-block !important;
  text-decoration: underline;
}

.checkout-table-main .cart-item-total .text {
  margin-right: 5px;
  font-family: 'Inter Bold';
}

.checkout-table-main .cart-item.white .cart-item-image span {
  color: #000 !important;
}

.checkout-table-main .cart-item:hover .cart-item__title {
  color: #f86e37;
}

.checkout-form {
  width: 50%;
}

.checkout-form-elem {
  width: 100%;
  margin-bottom: 20px;
}

.checkout-form-elem__title {
  margin-bottom: 5px;
  font-family: 'Inter Medium';
}

.checkout-form-elem__input {
  padding: 10px 15px;
}

.checkout-form-elem-item {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #f86e37;
  cursor: pointer;
  padding: 10px;
  position: relative;
}

.checkout-form-elem-item span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f86e37;
  z-index: -1;
  opacity: 0;
}

.checkout-form-elem-item:not(:nth-child(-n + 2)) {
  margin-bottom: 10px;
}

.checkout-form-elem-item input {
  display: none;
}

.checkout-form-elem-item img {
  margin-bottom: 5px;
  width: 30px;
  height: 30px;
}

.checkout-form-elem-item p {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.checkout-form-elem-item:hover {
  background: #f86e37;
}

.checkout-form-elem-item:hover p {
  color: #fff;
}

.checkout-form-elem-item input:checked ~ span::before {
  opacity: 1;
}

.checkout-form-elem-item input:checked ~ p {
  color: #fff;
}

.checkout-form__button {
  border: 1px solid #f86e37;
  background: #f86e37;
  padding: 10px 45px;
  color: #fff;
  font-family: 'Inter Medium';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.checkout-form__button:hover {
  background: #fff;
  color: #f86e37;
}

.footer {
  background: #fff;
}

.footer__logo {
  width: 110px;
  height: 64px;
  display: block;
}

.footer__info {
  width: 32%;
}

.footer nav {
  width: 30%;
}

.footer nav ul li:not(:last-child) {
  margin-bottom: 15px;
}

.footer nav ul li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer nav ul li a:hover {
  color: #f86e37;
}

.footer-wrapper {
  padding: 30px 0;
}

.footer-social__text {
  text-align: right;
  width: 385px;
}

.footer-social__text a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-social__text a:hover {
  color: #f86e37;
}

.footer-block {
  padding-bottom: 20px;
  border-bottom: 1px solid #d5d5d5;
}

.footer-main {
  padding: 20px 0;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 20px;
}

.footer-bottom {
  height: 70px;
}

.order-wrapper svg {
  width: 250px;
  height: 250px;
  margin-bottom: 20px;
}

.order__title {
  text-align: center;
}

.order__text {
  text-align: center;
}
/*# sourceMappingURL=main.css.map */