@charset "UTF-8";
:root {
  --container-width: 1400px;
  --main-outer-width: 1920px;
  --container-padding: 40px;
  --calculated-padding: calc((100% - var(--container-width)) / 2);
  --theme-color-accent: #007933;
  --theme-color-grey: #797D84;
  --theme-color-accent-dark: #0B6732;
  --theme-color-accent-light: #0C9A48;
  --theme-color-text-common: #414141;

}
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
}
@media (max-width: 500px) {
  :root {
    --container-padding: 15px;
  }
}

/*
Псевдоэлемент-расширитель для кнопок:
1. Помогает попадать по небольшим кнопкам
2. Помогает отлавливать событие нажатия на кнопку при наличии в ней различных элементов
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

input,
button,
textarea {
  padding: 0;
  background: none;
  border: none;
  outline: none;
}

dl,
dd,
dt {
  margin: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

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

p {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.swiper:not(.swiper-initialized) {
  opacity: 0;
}

.main-wrapper-outer {
  width: 100%;
  min-height: 100%;
  max-width: var(--main-outer-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.header {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.container {
  padding-left: max(var(--calculated-padding), var(--container-padding));
  padding-right: max(var(--calculated-padding), var(--container-padding));
}
.container__inner {
  width: 100%;
  position: relative;
}

.container.container_extract-l {
  padding-left: 0;
}

.container.container_extract-lp {
  padding-left: var(--container-padding);
}

.container.container_extract-r {
  padding-right: 0;
}

.container.container_extract-rp {
  padding-right: var(--container-padding);
}

.container.container_extract-lr {
  padding-left: 0;
  padding-right: 0;
}

.container.container_extract-lrp {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.form-grid1 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px 20px;
}
.form-grid1__row {
  grid-column: span 12;
}
.form-grid1__row_c2 {
  grid-column: span 6;
}
.form-grid1 .checkbox-text {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .form-grid1 {
    gap: 10px;
  }
  .catalog-detail .catalog-detail__buttons{
	justify-content: center !important;
  }
  .catalog-detail .cml{
	text-align: center;
    width: 100%;
    display: block;
  }
}

.form-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0 20px;
}
.form-grid2 > *:not(:last-child) {
  margin-bottom: 10px;
}

.block1 {
  margin-bottom: 70px;
}
@media (max-width: 1280px) {
  .block1 {
    margin-bottom: 50px;
  }
}
@media (max-width: 900px) {
  .block1 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .block1 {
    margin-bottom: 20px;
  }
}

.block2 {
  margin-bottom: 110px;
}
@media (max-width: 1280px) {
  .block2 {
    margin-bottom: 90px;
  }
}
@media (max-width: 900px) {
  .block2 {
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .block2 {
    margin-bottom: 50px;
  }
}

.block3 {
  margin-bottom: 30px;
}

.main-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 45px;
  padding-top: 40px;
}
.main-grid__left, .main-grid__right {
  min-width: 0;
}
.main-grid__left {
  position: relative;
  z-index: 1;
}
@media (max-width: 1280px) {
  .main-grid {
    display: block;
  }
  .main-grid__left {
    /* display: none; */
    z-index: 100;
  }

  .main-grid__left .menu-title,
  .main-grid__left nav {
    display: none;
  }

  .main-grid__left .filter {
    z-index: 100;
    background-color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 300px;
    height: 100dvh;
    z-index: 100;
    overflow: auto;
    -webkit-box-shadow: 8px 8px 45px rgba(0, 0, 0, 0.15);
    box-shadow: 8px 8px 45px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .main-grid__left .filter .filter__inner2 {
    padding-top: 40px;
    border: none!important;
  }

  .main-grid__left .filter .filter__close {
    display: flex;
  }

	.bx_filter_parameters_box {
		touch-action: auto !important;
	}

  .main-grid__left .filter .filter__toggler {
/*    display: none;*/
    padding-top: 12px;
  }

  .main-grid__left .filter .filter__title {
    position: relative;
    margin-bottom: 0;
    padding-right: 12px;
  }

  .main-grid__left .filter .filter__title::after {
    content: '';
    width: 10px;
    height: 7px;
    position: absolute;
    top: 7px;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L5 5L1 1' stroke='%23007933' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  }

  .main-grid__left .filter .filter__title.filter__title_active::after {
    transform: scale(1, -1);
  }
 
  .main-grid__left .filter #modef {
    display: none!important;
  }

  .main-grid__left .filter .filter__handle {
    display: none;
  }

  .main-grid__left .filter .filter__body {
    grid-template-rows: 1fr!important;
  }

  .main-grid__left .filter .filter__inner1 {
    overflow: visible!important;
  }

  .main-grid__left .filter_active {
    transform: translateX(0);
  }

  .filter-backdrop {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }
  .filter-backdrop.filter-backdrop_active {
    opacity: 1;
    pointer-events: all;
  }
}

.main__inner1 {
  padding-top: 40px;
}
.main__inner1 .breadcrumbs {
  margin-bottom: 10px;
}
.main__inner1 > .title2 {
  margin-bottom: 30px;
}

.form-cols1 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0 20px;
}
@media (max-width: 640px) {
  .form-cols1 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-cols1 .form-grid1 {
    gap: 10px;
  }
}

.form-cols2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
}
@media (max-width: 900px) {
  .form-cols2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .form-cols2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-cols2 .form-grid1 {
    gap: 10px;
  }
}

.teaser-grid1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 575px) {
  .teaser-grid1 {
    grid-template-columns: 1fr;
  }
}

/* .spisok01 {
  list-style: none;
  text-align: left;
}

.spisok01 li {
  background: url("../img/d/checked.png") 0 6px no-repeat;
  padding: 7px 25px 2px 40px;
  background-size: 25px;
  margin: 0 -21px;
} */

.old-text ul {
  margin: 15px 0;
  padding: 0 0 0 40px;
}

.old-text p {
  margin: 15px 0;
}

.old-text h2 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.cont-page {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  padding-top: 15pt;
}

.cont-phone {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -webkit-align-items: center;
  margin: 5px 0;
  width: 270px;
}

.cont-phone img {
  margin: 0px 10px;
  width: 45px;
  height: 45px;
}

.cont-phone span a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-color-accent);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.25;
  padding: 5px 25px;
  min-height: 55px;
  border-radius: 6px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  cursor: pointer;
}
.btn_big {
  font-size: 18px;
  min-height: 60px;
}
.btn_mid {
  font-size: 14px;
  min-height: 46px;
}
.btn_small {
  font-size: 14px;
  min-height: 38px;
}
.btn_wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.btn_primary {
  background-color: var(--theme-color-accent);
  color: #fff;
  font-weight: 700;
}
.bx-catalog-subscribe-button{
	background-color: #797D84;
}
.btn_primary.btn_hollow {
  background: none;
  border: 2px var(--theme-color-accent) solid;
  padding: 3px 23px;
  color: var(--theme-color-accent);
}
.btn_primary.btn_hollow.btn_hollow {
	border: 2px #797D84 solid;
	color: #797D84;
}
.btn_primary.btn_hollow:not(:disabled):hover, .btn_primary.btn_hollow:focus-visible {
  border-color: var(--theme-color-accent-light);
  color: var(--theme-color-accent-light);
}
.bx-catalog-subscribe-button.btn_hollow:not(:disabled):hover, .bx-catalog-subscribe-button.btn_hollow:focus-visible {
  border-color: #696c72;
  color: #696c72;
}
.btn_primary:disabled {
  opacity: 0.5;
}
.btn_primary:not(:disabled, .btn_hollow):hover, .btn_primary:not(.btn_hollow):focus-visible {
  background-color: var(--theme-color-accent-light);
}
.bx-catalog-subscribe-button:not(:disabled, .btn_hollow):hover, .btn_primary:not(.btn_hollow):focus-visible {
  background-color: #696c72;
}
.btn_grey {
  background-color: #6A6A6A;
  color: #fff;
}
.btn_grey.btn_hollow {
  background: none;
  border: 1px var(--theme-color-grey) solid;
  color: var(--theme-color-grey);
}
.btn_grey:disabled {
  opacity: 0.5;
}
.btn:disabled {
  cursor: default;
}
.btn_alert {
  background-color: #c74b4b;
  color: #fff;
}
.btn_alert:disabled {
  opacity: 0.5;
}

.btn_disabled {
  pointer-events: none!important;
  opacity: 0.5;
}

.btn_arrow {
  position: relative;
}
.btn_arrow::before {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 9px 10px 9px 0;
  border-color: transparent var(--theme-color-accent) transparent transparent;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
}

.btn_arrow:hover::before {
  border-color: transparent var(--theme-color-accent-light) transparent transparent;
}

.btn-filter {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-filter svg {
  fill: var(--theme-color-accent);
  flex-shrink: 0;
  margin-right: 10px;
}

@media (max-width: 1280px) {
  .btn-filter {
    display: inline-flex;
  }
}

.btn-reset {
  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;
}
.btn-reset svg {
  fill: #A7A7A7;
  margin-right: 5px;
}
.btn-reset span {
  font-size: 13px;
  color: #999;
  border-bottom: 1px dotted #989898;
}



.btn-reset-n {
  display: block;
  margin: 0 auto;
  padding-left: 20px;
  text-decoration: none;
  color: #999;
  border-bottom: 1px dotted #989898;
  font: 400 13px 'OpenSans';
  cursor: pointer;
  background: url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2214px%22%20height%3D%2216px%22%20%20viewBox%3D%220%200%2014%2016%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill%3D%22%23a7a7a7%22%20d%3D%22M12.966%205.216c-.028-.046-.073-.08-.126-.092-.052-.014-.108-.005-.155.023l-1.578.954c-.096.06-.128.186-.07.283.887%201.475.903%203.32.04%204.812-1.304%202.26-4.2%203.04-6.452%201.74-2.254-1.3-3.025-4.198-1.72-6.46.49-.847%201.24-1.53%202.13-1.938l.512%201.93c.02.074.08.13.156.147.076.015.154-.013.202-.074l3.34-4.23c.04-.05.053-.117.036-.18-.016-.062-.06-.113-.12-.137L4.166.01c-.072-.03-.154-.014-.212.037-.058.052-.082.13-.062.206L4.45%202.34C2.98%202.92%201.747%203.984.957%205.352-.97%208.69.17%2012.968%203.498%2014.89c3.326%201.92%207.6.767%209.528-2.57%201.272-2.204%201.25-4.926-.06-7.104z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E) 0 0 no-repeat;
}

.btn-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px #e6e6e6 solid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-remove svg {
  fill: var(--theme-color-text-common);
}
.btn-remove:hover svg {
  fill: var(--theme-color-accent);
}

.btn-catalog {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  height: 46px;
  padding: 0 28px 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-catalog__icon {
  margin-right: 15px;
}
.btn-catalog__label1 {
  display: block;
}
.btn-catalog__label2 {
  display: none;
}
@media (max-width: 1000px) {
  .btn-catalog__label1 {
    display: none;
  }
  .btn-catalog__label2 {
    display: block;
  }
}
@media (max-width: 575px) {
  .btn-catalog {
    padding: 0 20px 0 20px;
  }
  .btn-catalog__label1 {
    display: none;
  }
  .btn-catalog__label2 {
    display: none;
  }
  .btn-catalog__icon {
    margin-right: 0;
  }
}

.btn-cart {
  text-transform: uppercase;
}
.btn-cart svg {
  fill: #fff;
  margin-left: 8px;
}

.btn-cart1 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--theme-color-accent);
}
.btn-cart1 svg {
  fill: #fff;
}

.btn-favorites {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #000;
  position: relative;
  min-height: 21px;
  overflow: hidden;
}
.btn-favorites::after {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  inset: -5px -5px -5px -5px;
}
.btn-favorites svg {
  margin-right: 10px;
  fill: #666;
}
.btn-favorites svg path:last-child {
  opacity: 0;
}
.btn-favorites:hover {
  color: var(--theme-color-accent);
}
.btn-favorites:hover svg path:last-child {
  opacity: 1;
}
.btn-favorites_in svg {
  fill: var(--theme-color-accent);
}

.btn-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(214, 0, 0, 0.85);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.btn-play svg {
  display: block;
  position: relative;
  left: 3%;
  fill: #fff;
}
.btn-play:hover {
  background-color: rgb(214, 0, 0);
}

.btn-text1 {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color-accent);
}

.btn-text {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border-radius: 4px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.btn-text::after {
  content: "";
  position: absolute;
  inset: -5px -5px -5px -5px;
  border-radius: 4px;
}
.btn-text_primary {
  color: var(--theme-color-accent);
}
.btn-text:focus-visible {
  outline: 3px rgba(0, 0, 0, 0.3) solid;
}

.btn-totop {
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  position: fixed;
  right: 120px;
  bottom: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='22' viewBox='0 0 18 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.92005 4.0976L2.1271 9.55913L0.600024 8.11942L9.00002 0.200001L17.4 8.11942L15.8729 9.55913L10.08 4.0976L10.08 21.2L7.92006 21.2L7.92005 4.0976Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 60px;
  height: 60px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.btn-totop_active {
  opacity: 1;
  pointer-events: all;
}

.noscroll .btn-totop_active {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1770px) {
  .btn-totop {
    right: 10px;
    bottom: 85px;
  }
}

@media (max-width: 900px) {
  .btn-totop {
    width: 40px;
    height: 40px;
    background-size: 16px 20px;
  }
}

.btn-round {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.2;
  padding: 5px 39px;
}
.btn-round_primary {
  background-color: var(--theme-color-accent);
  color: #fff;
}
.btn-round_grey {
  border: 1px var(--theme-color-grey) solid;
  color: var(--theme-color-grey);
}

.btn-icon1 {
  border-radius: 6px;
  border: 1px #ccc solid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  padding: 8px 25px;
  font-size: 16px;
  color: var(--theme-color-accent);
}
.btn-icon1 svg {
  fill: var(--theme-color-accent);
  margin-right: 6px;
}
.btn-icon1:hover, .btn-icon1:focus-visible {
  border-color: #acacac;
}

.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn-icon svg {
  display: block;
}
.btn-icon_search {
  position: relative;
}
.btn-icon_search::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.btn-icon_search svg {
  fill: #CACBCE;
}
.btn-icon_search svg:last-child {
  display: none;
}
.btn-icon_search[data-state=opened] svg:first-child {
  display: none;
}
.btn-icon_search[data-state=opened] svg:last-child {
  display: block;
}
.btn-icon_search:hover svg {
  fill: var(--theme-color-text-common);
}
.btn-icon_grey svg {
  fill: var(--theme-color-grey);
}
.btn-icon_grey:hover svg {
  fill: var(--theme-color-text-common);
}

.btn-info1 {
  display: inline-block;
}
.btn-info1 svg {
  fill: #CACBCE;
}

.btn-icon-text {
  font-size: 18px;
  color: var(--theme-color-grey);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  position: relative;
}
.btn-icon-text::after {
  content: "";
  content: "";
  position: absolute;
  inset: -5px -5px -5px -5px;
}
.btn-icon-text svg {
  fill: var(--theme-color-accent);
}
.btn-icon-text_1 {
  font-size: 16px;
  color: var(--theme-color-accent);
}

.btn-arr1 {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color-accent);
  white-space: nowrap;
}
.btn-arr1_back svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.btn-arr1 svg {
  margin: 1px 0 -1px 0;
  fill: var(--theme-color-accent);
}

.form-group {
  position: relative;
  background-color: #fff;
}
.form-group_1 {
  background-color: transparent;
}
.form-group_1.form-group_error {
  margin-bottom: 10px;
}
.form-group_1 .form-group__error {
  margin-top: -7px;
}

.form-group_2.form-group_error {
  margin-bottom: 10px;
}
.form-group_2 .form-group__error {
  margin-top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 410px;
  text-align: left;
}

.form-group__label {
  display: block;
  color: #979797;
  font-size: 14px;
  line-height: 1.25;
  padding: 0 20px;
  position: absolute;
  left: 1px;
  top: 50%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.form-group__label_req::after {
  content: "*";
  color: red;
  margin-left: 5px;
}
textarea.field-input1 + .form-group__label {
  top: 21px;
  width: calc(100% - 2px);
}
.form-group .field-input1 {
  padding-top: 14px;
  padding-bottom: 0;
  position: relative;
  background-color: transparent;
  z-index: 1;
  display: block;
}
.form-group .field-input1[type="file"] {
  padding-top: 22px;
  height: 55px;
}

.field-input1:-webkit-autofill,
.field-input1:-webkit-autofill:hover, 
.field-input1:-webkit-autofill:focus, 
.field-input1:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    background-color: transparent;
}

.form-group .field-input1::-webkit-input-placeholder {
  color: transparent;
}
.form-group .field-input1::-moz-placeholder {
  color: transparent;
}
.form-group .field-input1:-ms-input-placeholder {
  color: transparent;
}
.form-group .field-input1::-ms-input-placeholder {
  color: transparent;
}
.form-group .field-input1::placeholder {
  color: transparent;
}
.form-group textarea.field-input1 {
  padding-top: 20px;
}
.field-input1:disabled + .form-group__label {
  background-color: #F5F5F5;
  z-index: 2;
}
.field-input1:not(:-moz-placeholder-shown) + .form-group__label {
  font-size: 11px;
  transform: translateY(0);
  padding-top: 6px;
  padding-bottom: 2px;
  top: 1px;
  background-color: #fff;
  z-index: 2;
}
.field-input1:not(:-ms-input-placeholder) + .form-group__label {
  font-size: 11px;
  transform: translateY(0);
  padding-top: 6px;
  padding-bottom: 2px;
  top: 1px;
  background-color: #fff;
  z-index: 2;
}
.field-input1:focus-visible + .form-group__label, .ts-wrapper.has-items + .form-group__label, .field-input1:not(:placeholder-shown) + .form-group__label {
  font-size: 11px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  padding-top: 6px;
  padding-bottom: 0;
  top: 1px;
  background-color: #fff;
  z-index: 2;
}
.field-input1:disabled:not(:-moz-placeholder-shown) + .form-group__label {
  background-color: #F5F5F5;
}
.field-input1:disabled:not(:-ms-input-placeholder) + .form-group__label {
  background-color: #F5F5F5;
}
.field-input1:disabled:not(:placeholder-shown) + .form-group__label, .ts-wrapper.disabled + .form-group__label {
  background-color: #F5F5F5;
}
.field-input1:read-only:not(:placeholder-shown):not([type="file"]) + .form-group__label{
	background-color: #F5F5F5; !important
}
.field-input1:read-only:not([type="file"]) {
  pointer-events: none;
  background-color: #F5F5F5;
}
.form-group_error,
.form-group_error1 {
  margin-bottom: 20px;
}
.form-group_error .field-input1 {
  border-color: #B71F1D;
}
.form-group_error1 .form-group__error,
.form-group_error .form-group__error {
  display: block;
}

.form-group__error {
  display: none;
  font-size: 14px;
  line-height: 1;
  color: #B71F1D;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0px;
}

.form-group__error a {
  color: #B71F1D;
}

.field-input1 {
  width: 100%;
  height: 47px;
  background-color: #fff;
  border: 1px #E3E3E3 solid;
  border-radius: 2px;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1.25;
  color: var(--theme-color-text-common);
  border-radius: 6px;
}

.field-input1:disabled {
  background-color: #F5F5F5;
}
.field-input1::-webkit-input-placeholder {
  color: #979797;
}
.field-input1::-moz-placeholder {
  color: #979797;
}
.field-input1:-ms-input-placeholder {
  color: #979797;
}
.field-input1::-ms-input-placeholder {
  color: #979797;
}
.field-input1::placeholder {
  color: #979797;
}
.field-input1:focus::-webkit-input-placeholder {
  color: transparent;
}
.field-input1:focus::-moz-placeholder {
  color: transparent;
}
.field-input1:focus:-ms-input-placeholder {
  color: transparent;
}
.field-input1:focus::-ms-input-placeholder {
  color: transparent;
}
.field-input1:focus::placeholder {
  color: transparent;
}
.field-input1:focus-visible:not(:disabled, :read-only) {
  border-color: var(--theme-color-accent);
}

textarea.field-input1 {
  height: 122px;
  resize: none;
}

.text-checkbox1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.text-checkbox1__input {
  pointer-events: none;
  position: absolute;
  opacity: 0;
}
.text-checkbox1__visual {
  height: 40px;
  border-radius: 20px;
  border: 1px rgba(30, 30, 30, 0.3) solid;
  padding: 0 19px;
  font-size: 16px;
  color: #1E1E1E;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.text-checkbox1__input:checked + .text-checkbox1__visual {
  border-color: var(--theme-color-accent);
  color: var(--theme-color-accent);
}

.text-checkbox2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.text-checkbox2__input {
  pointer-events: none;
  position: absolute;
  opacity: 0;
}
.text-checkbox2__text {
  cursor: pointer;
  font-size: 16px;
  color: var(--theme-color-grey);
}
.text-checkbox2__input:checked + .text-checkbox2__text {
  color: var(--theme-color-accent);
}

.checkbox-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  gap: 0 10px;
}
.checkbox-text__label {
  font-size: 14px;
  line-height: 1.25;
  color: var(--theme-color-text-common);
  min-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-text__label a {
  color: var(--theme-color-accent);
}
.checkbox_disabled + .checkbox-text__label {
  opacity: 0.5;
  cursor: default;
}

.checklist {
  font-size: 0;
}
.checklist__item:not(:last-child) {
  margin-bottom: 10px;
}
.checklist[data-item-expandable=collapsed] .checklist__item[data-item-expandable-item] {
  display: none;
}

.checklist1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checklist1[data-item-expandable=collapsed] .checklist1__item[data-item-expandable-item] {
  display: none;
}
.checklist1_sparse {
  gap: 12px 40px;
}
.checklist1_col3 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 15px 20px;
}

.checkbox {
  position: relative;
  font-size: 0;
}
.checkbox__input {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.checkbox__visual {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 19px;
  height: 19px;
  border: 1px #E3E3E3 solid;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox__visual svg {
  fill: var(--theme-color-accent);
  opacity: 0;
}
.checkbox__input:checked + .checkbox__visual svg {
  opacity: 1;
}
.checkbox__input:focus-visible + .checkbox__visual {
  border-color: #acacac;
}
.checkbox_disabled {
  opacity: 0.5;
  cursor: default;
}
.checkbox_disabled * {
  cursor: default;
}

.checkbox-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.checkbox-btn__input {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.checkbox-btn__visual {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.2;
  padding: 5px 39px;
  border: 1px var(--theme-color-grey) solid;
  color: var(--theme-color-grey);
  cursor: pointer;
}
.checkbox-btn__input:checked + .checkbox-btn__visual {
  background-color: var(--theme-color-accent);
  color: #fff;
  border-color: transparent;
}

.radio {
  position: relative;
  font-size: 0;
}
.radio__input {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.radio__visual {
  cursor: pointer;
  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;
  width: 22px;
  height: 22px;
  border: 2px var(--theme-color-grey) solid;
  border-radius: 50%;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.radio__visual::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--theme-color-accent);
  display: block;
  opacity: 0;
}
.radio__input:checked + .radio__visual {
  border-color: var(--theme-color-accent);
}
.radio__input:checked + .radio__visual::after {
  opacity: 1;
}
.radio__input:focus-visible + .radio__visual {
  border-color: var(--theme-color-accent);
}
.radio__input:not(:disabled):hover + .radio__visual {
  border-color: var(--theme-color-accent);
}

.radio-image-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}

@media (max-width: 998px) {
  .radio-image-group {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.radio-image {
  position: relative;
}
.radio-image__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0 none;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
}
.radio-image__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  gap: 14px;
  height: 100%;
  min-height: 134px;
  padding: 20px;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  border-radius: 6px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.radio-image__image {
  max-width: 100%;
  height: auto;
}
.radio-image__input:checked + .radio-image__body {
  border: 1px solid #007933;
}
.radio-image__input:focus-visible:not(:disabled) + .radio-image__body {
  outline: 1px solid #007933;
}

.tomselected {
  display: none !important;
}

.ts-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.ts-wrapper_wide {
  display: block;
  width: 100%;
}
.ts-wrapper_wide .ts-control {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ts-wrapper.dropdown-active {
  z-index: 5;
}

.ts-control {
  height: 47px;
  border: 1px #E3E3E3 solid;
  border-radius: 6px;
  background-color: transparent;
  padding: 0 50px 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  outline: none;
}

.ts-wrapper.dropdown-active .ts-control {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ts-control svg {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: var(--theme-color-text-common);
}
.ts-control .item {
  color: var(--theme-color-text-common);
  font-size: 14px;
  padding-top: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}

.ts-wrapper.focus .ts-control {
  border-color: var(--theme-color-accent);
}

.ts-wrapper.disabled {
  background-color: #F5F5F5;
}

.ts-wrapper.disabled .ts-control {
  cursor: default;
}

.ts-wrapper.disabled .ts-control svg {
  opacity: 0.5;
}

.ts-wrapper.dropdown-active .ts-control svg {
  -webkit-transform: translateY(-50%) scale(1, -1);
          transform: translateY(-50%) scale(1, -1);
}

.ts-dropdown {
  border: 1px var(--theme-color-accent) solid;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  background-color: #fff;
  min-width: 100%;
  padding: 0;
  overflow-x: visible;
  overflow-y: auto;
  max-height: 375px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.ts-dropdown .option {
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 20px;
  cursor: pointer;
  color: var(--theme-color-text-common);
}
.ts-dropdown .option:not([aria-disabled=true]):hover {
  background-color: rgba(181, 181, 181, 0.26);
}
.ts-dropdown .option[aria-disabled=true] {
  opacity: 0.5;
  cursor: default;
}

.ts-wrapper_1 .ts-control .item {
  color: var(--theme-color-accent);
  padding-top: 0;
}

.ts-wrapper_1 .ts-control svg {
  fill: var(--theme-color-accent);
}

.stepcounter {
  position: relative;
  width: 106px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.stepcounter__btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
}
.stepcounter__btn svg {
  fill: #ABABAB;
}
.stepcounter__btn:disabled,
.stepcounter__btn.product-item-amount-field-btn-disabled {
  cursor: default;
}
.stepcounter__btn:disabled svg,
.stepcounter__btn.product-item-amount-field-btn-disabled svg {
  opacity: 0.4;
}
.stepcounter__btn:not(:disabled):hover svg,
.stepcounter__btn:not(.product-item-amount-field-btn-disabled):hover svg {
  fill: var(--theme-color-accent);
}
.stepcounter__btn:focus-visible {
  position: relative;
  z-index: 1;
  outline: 1px var(--theme-color-accent) solid;
}
.stepcounter__input {
  border-radius: 2px;
  width: 40px;
  height: 40px;
  border: 1px #E3E3E3 solid;
  font-size: 16px;
  text-align: center;
  color: var(--theme-color-text-common);
}
.stepcounter__input::-webkit-outer-spin-button, .stepcounter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.stepcounter__input[type=number] {
  -moz-appearance: textfield;
}

.input-group1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.input-group1 .field-input1 {
  padding-left: 10px;
  padding-right: 10px;
  border: none;
}
.input-group1 .form-group__label {
  padding-left: 10px;
  padding-right: 10px;
}
.input-group1__field {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.input-group1__field::-webkit-input-placeholder {
  color: #82879A;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.input-group1__field::-moz-placeholder {
  color: #82879A;
  transition-timing-function: ease;
  -moz-transition-property: color;
  transition-property: color;
  transition-duration: 100ms;
}
.input-group1__field:-ms-input-placeholder {
  color: #82879A;
  transition-timing-function: ease;
  -ms-transition-property: color;
  transition-property: color;
  transition-duration: 100ms;
}
.input-group1__field::-ms-input-placeholder {
  color: #82879A;
  transition-timing-function: ease;
  -ms-transition-property: color;
  transition-property: color;
  transition-duration: 100ms;
}
.input-group1__field::placeholder {
  color: #82879A;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.input-group1__field:focus::-webkit-input-placeholder {
  color: transparent;
}
.input-group1__field:focus::-moz-placeholder {
  color: transparent;
}
.input-group1__field:focus:-ms-input-placeholder {
  color: transparent;
}
.input-group1__field:focus::-ms-input-placeholder {
  color: transparent;
}
.input-group1__field:focus::placeholder {
  color: transparent;
}
.input-group1__btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.searchbox {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 36px;
  z-index: 10;
}
.searchbox__btn-all svg {
  margin-left: 10px;
  fill: var(--theme-color-grey);
}
.searchbox__results {
  margin-bottom: 30px;
}
.searchbox__results > *:not(:last-child) {
  margin-bottom: 20px;
}
.searchbox__results .card-search-item {
  padding: 5px 20px;
  width: calc(100% + 40px);
  margin-left: -20px;
}
.searchbox__results .card-search-item:hover {
  background-color: #eee;
}
.searchbox__categories {
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 30px;
}
.searchbox__categories li:not(:last-child) {
  margin-bottom: 20px;
}
.searchbox__loader {
  display: none;
  font-size: 14px;
}
.searchbox__noresults {
  display: none;
  font-size: 14px;
}
.searchbox__results-wrapper {
  display: none;
}
.searchbox__dropdown_pending .searchbox__loader {
  display: block;
}
.searchbox__dropdown_noresults .searchbox__noresults {
  display: block;
}
.searchbox__dropdown_results .searchbox__results-wrapper {
  display: block;
}
.searchbox__dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 20px;
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 8px 8px 45px rgba(0, 0, 0, 0.15);
          box-shadow: 8px 8px 45px rgba(0, 0, 0, 0.15);
  max-height: 85vh;
  overflow: hidden;
  overflow-y: auto;
}
.searchbox__dropdown_active {
  display: block;
}
.searchbox__dropdown .title2 span {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px #e5e5e5 solid;
  padding: 7px 10px;
  height: 28px;
  border-radius: 14px;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
.searchbox__input {
  padding: 0 20px;
  font-size: 16px;
  color: var(--theme-color-text-common);
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 1px #E3E3E3 solid;
  border-right: 0;
}
.searchbox__input::-webkit-input-placeholder {
  color: #979797;
}
.searchbox__input::-moz-placeholder {
  color: #979797;
}
.searchbox__input:-ms-input-placeholder {
  color: #979797;
}
.searchbox__input::-ms-input-placeholder {
  color: #979797;
}
.searchbox__input::placeholder {
  color: #979797;
}
.searchbox__input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.searchbox__input:focus::-moz-placeholder {
  opacity: 0;
}
.searchbox__input:focus:-ms-input-placeholder {
  opacity: 0;
}
.searchbox__input:focus::-ms-input-placeholder {
  opacity: 0;
}
.searchbox__input:focus::placeholder {
  opacity: 0;
}
.searchbox__input:focus-visible {
  border-color: #acacac;
}
.searchbox__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 124px;
  min-height: auto;
  font-weight: 400;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 575px) {
  .searchbox__input {
    padding: 0 10px;
    font-size: 14px;
  }
  .searchbox__btn {
    width: 80px;
    font-size: 14px;
  }
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: currentcolor;
  text-decoration: none;
}
.logo img {
  margin-right: 10px;
  width: 92px;
}

.header {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 20;
}
.header .main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .main-menu__toggle {
  display: none;
}
.header .main-menu__sub1 {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 10px;
  display: none;
}
.header .main-menu__sub1 > ul {
  background: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
.header .main-menu__sub2 {
  position: absolute;
  left: 100%;
  top: -20px;
  display: none;
}
.header .main-menu__sub2 > ul {
  background: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.header .main-menu__lvl1 {
  padding: 0 19px;
  position: relative;
}
.header .main-menu__lvl1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 1px #6A6A6A solid;
  height: 13px;
}
.header .main-menu__lvl1:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 1px #6A6A6A solid;
  height: 13px;
}
.header .main-menu__lvl1 > a {
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.25;
  display: block;
  white-space: nowrap;
}
.header .main-menu__lvl1 > a:hover {
  color: var(--theme-color-accent);
}
.header .main-menu__lvl1:hover {
  z-index: 1;
}
.header .main-menu__lvl1:hover > .main-menu__sub1 {
  display: block;
}
.header .main-menu__lvl2 {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.header .main-menu__lvl2:not(:last-child) {
  padding-bottom: 10px;
}
.header .main-menu__lvl2 > a {
  color: var(--theme-color-text-common);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}
.header .main-menu__lvl2 > a:hover {
  color: var(--theme-color-accent);
}
.header .main-menu__lvl2:hover > .main-menu__sub2 {
  display: block;
}
.header .main-menu__lvl3:not(:last-child) {
  margin-bottom: 10px;
}
.header .main-menu__lvl3 > a {
  color: var(--theme-color-text-common);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}
.header .main-menu__lvl3 > a:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 1400px) {
  .header .main-menu__lvl1 {
    padding: 0 13px;
  }
  .header .main-menu__lvl1 > a {
    font-size: 13px;
  }
}
@media (max-width: 1000px) {
  .header .main-menu {
    display: none;
  }
}
.header__search {
  padding-left: 20px;
  padding-right: 20px;
}
.header__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
.header__btn-favorites {
  position: relative;
}
.header__btn-favorites svg {
  display: block;
  fill: #444;
}
.header__btn-favorites span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--theme-color-accent);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  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;
  left: 13px;
  top: 9px;
  text-align: center;
}
.header__btn-cart {
  position: relative;
}
.header__btn-cart svg {
  display: block;
  fill: #444;
}
.header__btn-cart span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--theme-color-accent);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  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;
  left: 13px;
  top: 12px;
  text-align: center;
}
.header__reg {
  font-size: 14px;
  font-weight: 400;
  margin-right: 50px;
}
.header__reg svg {
  fill: #444;
}
.header__reg:not(.header__reg_logged) svg {
  display: none;
}
.header__reg_logged {
  position: relative;
  padding-right: 22px;
}
.header__reg_logged svg {
  position: absolute;
  right: 0;
  top: 8px;
}
.header__reg_logged span {
  max-width: 200px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1200px) {
  .header__reg_logged span {
    max-width: 150px;
  }
}
@media (max-width: 1150px) {
  .header__reg_logged span {
    max-width: 100px;
  }
}
@media (max-width: 1000px) {
  .header__reg_logged span {
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .header__reg_logged span {
    max-width: 150px;
  }
}
@media (max-width: 400px) {
  .header__reg_logged span {
    max-width: 140px;
  }
}
.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__socials .socials {
  position: relative;
  left: 13px;
  margin-left: 2px;
}
.header__socials .locations-list {
  width: 270px;
}
.header__socials .dd__dd {
  padding-left: 0;
  padding-right: 0;
}
.header__socials-links {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
  padding-top: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
  border-top: 1px #E3E3E3 solid;
}
.header__socials-links p:not(:last-child) {
  margin-bottom: 10px;
}
.header__socials-links a {
  color: var(--theme-color-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
  position: relative;
  margin-left: 20px;
}
.header__socials-links a svg {
  fill: var(--theme-color-accent);
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
.header__nav {
  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__top {
  padding: 15px 0;
}
.header__top .searchbox {
  max-width: 710px;
  margin: 0 auto;
}
.header__bottom {
  background-color: #F5F5F5;
  padding: 7px 0;
}
.header-grid1 {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
}
.header-grid2 {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  gap: 0 20px;
}
.header-grid2__col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .header-grid1 {
    grid-template-columns: auto auto;
  }
  .header__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__socials {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__socials .socials {
    left: 7px;
    margin-left: 8px;
  }
  .header__search {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    grid-column: span 2;
    padding: 10px 0 0 0;
  }
  .header__top {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header__top .searchbox {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .header__socials .socials {
    display: none;
  }
  .header__socials .dd__handle {
    left: 5px;
  }
  .header__socials .dd__dd {
    left: auto;
    right: 0;
  }
  .header__reg {
    margin-right: 20px;
  }
  .header__reg:not(.header__reg_logged) span {
    display: none;
  }
  .header__reg:not(.header__reg_logged) svg {
    display: block;
  }
}
@media (max-width: 460px) {
  .header .logo {
    font-size: 14px;
  }
  .header .logo img {
    width: 80px;
  }
}
@media (max-width: 400px) {
  .header .logo {
    font-size: 12px;
  }
  .header .logo img {
    width: 70px;
  }
}

body {
  color: var(--theme-color-text-common);
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

body.noscroll {
  overflow: hidden;
}

html.noscroll {
  scrollbar-gutter: stable;
}

input,
button,
textarea {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

fieldset,
fieldset legend {
  margin: 0;
  border: none;
  padding: 0;
}

button {
  cursor: pointer;
}

a {
  color: var(--theme-color-text-common);
}

.fancybox__slide.has-image > .fancybox__content {
  background-color: #fff;
}

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

.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

.v-h {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.menu-title {
  font-size: 14px;
  padding-left: 17px;
  margin-bottom: 10px;
  color: #000;
  line-height: 1.2;
  font-weight: 300;
}

.title1 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #212121;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .title1 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .title1 {
    font-size: 24px;
  }
}

.title2 {
  font-size: 22px;
  line-height: 1.42;
  font-weight: 700;
  color: #212121;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .title2 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .title2 {
    font-size: 18px;
  }
}

.title3 {
  font-size: 24px;
  line-height: 1.42;
  font-weight: 700;
  color: #212121;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .title3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .title3 {
    font-size: 20px;
  }
}

.title4 {
  font-size: 16px;
  line-height: 1.42;
  font-weight: 700;
  color: #212121;
  margin-bottom: 20px;
}

.description1 {
  font-size: 16px;
  line-height: 1.5;
  color: #212121;
  margin-bottom: 22px;
}
.description1 > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.description1 h2 {
  font-size: 20px;
}
@media (max-width: 640px) {
  .description1 {
    font-size: 14px;
  }
  .description1 h2 {
    font-size: 18px;
  }
}

.title-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.title-img img {
  max-width: 100%;
  height: auto;
}

.description2 {
  font-size: 16px;
  line-height: 1.5;
  color: #212121;
  margin-bottom: 40px;
}
.description2 > *:not(:last-child) {
  margin-bottom: 30px;
}
.description2 h2 {
  font-size: 20px;
}
@media (max-width: 640px) {
  .description2 {
    font-size: 14px;
  }
  .description2 h2 {
    font-size: 18px;
  }
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
}
.socials__item {
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.socials__item:focus-visible {
  outline: none;
}
.socials__item svg {
  display: block;
  fill: #616161;
}

.breadcrumbs {
  color: var(--theme-color-text-common);
  font-size: 11px;
  line-height: 1.25;
  margin-bottom: 35px;
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--theme-color-text-common);
}
.breadcrumbs a:hover {
  color: var(--theme-color-accent);
}

.location-item {
  font-size: 14px;
  line-height: 1.42;
  color: #fff;
}
.location-item p a {
  color: #fff;
}
.location-item p a[href^=tel] {
  white-space: nowrap;
}
.location-item__name {
  font-weight: 700;
  margin-bottom: 5px;
}
.location-item__icon {
  margin: 3px 5px -3px 0;
  fill: #fff;
}

.heading-cols1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.heading-cols1 .title1 {
  margin: 0;
}

.heading-cols2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  margin-bottom: 30px;
}
.heading-cols2 .title2, .heading-cols2 .title1 {
  margin-bottom: 0;
}

.nav-link {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--theme-color-accent);
}

.dd {
  position: relative;
}

.dd.dd_active {
  position: relative;
  z-index: 10;
}

.dd__handle {
  position: relative;
}

.dd__handle.btn-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  position: relative;
}
.dd__handle.btn-text::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.dd__handle.btn-text svg {
  margin: 1px 0 -1px 13px;
}

.dd__dd {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: none;
}

.dd_active .dd__dd {
  display: block;
}

.locations-list .location-item {
  color: #000;
  padding-left: 30px;
  padding-right: 30px;
}
.locations-list .location-item__name {
  margin-bottom: 3px;
}
.locations-list .location-item:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px #E3E3E3 solid;
  padding-bottom: 7px;
}
.locations-list .location-item p a {
  color: #000;
}
.locations-list .location-item p:not(.location-item__name) {
  line-height: 1.4;
}
.locations-list .location-item__icon {
  fill: var(--theme-color-accent);
}

.locations-list .location-item_mail {
  font-weight: 700;
}

.locations-list .location-item_mail svg {
  fill: var(--theme-color-accent);
  margin-right: 5px;
}

.catalog-menu__sub1 {
  background-color: #f7f7f7;
  border-top: 1px rgba(0, 0, 0, 0.1) solid;
  display: none;
}
.catalog-menu__sub1 .catalog-menu__sub1 {
  background: none;
  border-top: none;
  padding-left: 14px;
}
.catalog-menu__sub2,
.catalog-menu__sub3,
.catalog-menu__sub4 {
  display: none;
  padding-left: 14px;
}
.catalog-menu__toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  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;
}
.catalog-menu__lvl2 .catalog-menu__toggle {
  width: 40px;
  height: 32px;
}
.catalog-menu__toggle svg {
  fill: var(--theme-color-accent);
  display: block;
}
.catalog-menu__toggle svg:last-child {
  display: none;
}
.catalog-menu__lvl1 {
  position: relative;
}
.catalog-menu__lvl1.expanded > a {
  border-bottom: none;
}
[class^="catalog-menu__lvl"].expanded > .catalog-menu__toggle svg:first-child {
  display: none;
}
[class^="catalog-menu__lvl"].expanded > .catalog-menu__toggle svg:last-child {
  display: block;
}
.catalog-menu__lvl1 > a {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #000;
  min-height: 40px;
  padding: 5px 40px 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px rgba(0, 0, 0, 0.1) solid;
}
.catalog-menu__lvl1:not(:last-child) > a {
  padding-bottom: 6px;
  border-bottom: none;
}

[class^="catalog-menu__lvl"] {
  position: relative;
}

.catalog-menu__lvl1 [class^="catalog-menu__lvl"] > a {
  font-size: 14px;
  line-height: 1.25;
  color: #000;
  padding: 7px 32px 7px 28px;
  display: block;
  position: relative;
}

.catalog-menu__lvl1 [class^="catalog-menu__lvl"] > a::before {
  content: "";
  width: 8px;
  height: 2px;
  border-top: 2px rgba(33, 33, 33, 0.4) solid;
  position: absolute;
  left: 13px;
  top: 15px;
}

.catalog-menu__lvl2 > a:hover {
  background-color: rgba(181, 181, 181, 0.26);
}

.tabs-nav1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tabs-nav1__item {
  margin-right: 26px;
  color: #979797;
}
.tabs-nav1__item_active {
  color: #212121;
  cursor: default;
}

.tabs1__content {
  display: none;
}
.tabs1__content_active {
  display: block;
}

.tabs-nav2-wrapper {
  width: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs-nav2-wrapper::-webkit-scrollbar {
  display: none;
}

.tabs-nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.tabs-nav2__item {
  min-height: 58px;
  font-size: 16px;
  font-weight: bold;
  color: #414141;
  border: 1px #E3E3E3 solid;
  border-bottom: none;
  padding: 5px 60px;
  white-space: nowrap;
}
.tabs-nav2__item:not(:last-child) {
  margin-right: 2px;
}
.tabs-nav2__item_active {
  color: #fff;
  background-color: var(--theme-color-accent);
  border-color: var(--theme-color-accent);
}
@media (max-width: 1000px) {
  .tabs-nav2__item {
    min-height: 50px;
    font-size: 14px;
    padding: 5px 30px;
  }
}
@media (max-width: 900px) {
  .tabs-nav2__item {
    padding: 5px 20px;
  }
}

.tabs2__content {
  /*display: none;*/
  border: 1px #E3E3E3 solid;
  overflow: hidden;
}

.tabs2__content_active {
  display: block;
}

.textblock1 {
  font-size: 16px;
  line-height: 1.5;
  /*
  & img {
    max-width: 100%;
  }
  */
}
.textblock1 p {
  margin-bottom: 1.6em;
}
.textblock1 a {
  color: var(--theme-color-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
}
.textblock1 > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .textblock1 {
    font-size: 14px;
  }
}
.textblock1_big1 {
  background-color: rgb(237, 237, 237);
  font-size: 18px;
  padding: var(--container-padding);
}
.textblock1_big1 .textblock1__inner {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .textblock1_big1 {
    font-size: 16px;
  }
}
.textblock1 ol {
  margin-left: 20px;
  list-style-type: decimal;
}

.textblock2 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 40px 0;
  color: #212121;
}

.textblock2 .title2 {
  margin-bottom: 35px;
}



.textblock2 ol {
  counter-reset: section;
}

.textblock2 ol li {
  position: relative;
  padding-left: 28px;
}

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

.textblock2 ol li::before {
  counter-increment: section;
  content: counters(section, ".") ".";
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color-accent);
}

.navbar1 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 20px;
}
.navbar1__left {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navbar1__left::-webkit-scrollbar {
  display: none;
}
@media (max-width: 575px) {
  .navbar1 .btn-icon1 {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.nav-tabs1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.nav-tabs1::after {
  content: "";
  width: 20px;
  display: block;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
  position: sticky;
  right: -1px;
  top: 0;
}
.nav-tabs1__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-color-accent);
  white-space: nowrap;
}
.nav-tabs1__item_active {
  padding: 8px 25px;
  color: #fff;
  background-color: var(--theme-color-accent);
}
.nav-tabs1 > *:not(:last-child) {
  margin-right: 25px;
}
@media (max-width: 768px) {
  .nav-tabs1__item {
    font-size: 14px;
  }
  .nav-tabs1__item_active {
    padding: 8px 15px;
  }
  .nav-tabs1 > *:not(:last-child) {
    margin-right: 15px;
  }
}
@media (max-width: 575px) {
  .nav-tabs1__item {
    font-size: 12px;
  }
  .nav-tabs1__item_active {
    padding: 8px 10px;
  }
  .nav-tabs1 > *:not(:last-child) {
    margin-right: 10px;
  }
}

.table1 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.25;
}
.table1 th {
  background-color: #ddd;
  border: 1px #ddd solid;
  padding: 9px 16px;
  text-align: left;
  color: var(--theme-color-text-common);
  vertical-align: bottom;
}
.table1 td {
  border: 1px #ddd solid;
  padding: 9px 16px;
}
.table1__cell1_middle > * {
  vertical-align: middle;
}
.table1 img + * {
  margin-left: 10px;
}
.table1__label {
  display: none;
  font-size: 14px;
  margin-bottom: 3px;
  color: #979797;
}
@media (min-width: 1001px) {
  .table1 tr:hover td {
    background-color: rgba(0, 0, 0, 0.03);
  }
}
@media (max-width: 1000px) {
  .table1 {
    display: block;
    font-size: 16px;
  }
  .table1 tbody,
  .table1 tr,
  .table1 td {
    display: block;
  }
  .table1 td {
    border: none;
    padding: 0;
  }
  .table1 td:not(:last-child) {
    margin-bottom: 10px;
  }
  .table1 tr:not(:last-child) {
    border-bottom: 1px #ddd solid;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .table1 thead {
    display: none;
  }
  .table1__label {
    display: block;
  }
  .table1__cell7, .table1__cell6 {
    text-align: right;
  }
}

.table2 {
  width: auto;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
}
.table2 tr:not(:last-child) th,
.table2 tr:not(:last-child) td {
  border-bottom: 1px #ddd solid;
}
.table2 th {
  padding: 9px 10px;
  text-align: left;
  color: var(--theme-color-text-common);
}
.table2 td {
  padding: 9px 10px;
}

.vacancies-list > *:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .vacancies-list > *:not(:last-child) {
    margin-bottom: 20px;
  }
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-list .news-card {
  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: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
@media (max-width: 1000px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}

.info-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  border-top: 1px #E3E3E3 solid;
  border-left: 1px #E3E3E3 solid;
}
.info-grid1 .info-card {
  border-right: 1px #E3E3E3 solid;
  border-bottom: 1px #E3E3E3 solid;
}
@media (max-width: 1000px) {
  .info-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .info-grid1 {
    border-left: none;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
  .info-grid1 .info-card {
    border: 1px #E3E3E3 solid;
  }
}

.info-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  border-top: 1px #E3E3E3 solid;
  border-left: 1px #E3E3E3 solid;
}
.info-grid2 .info-card {
  border-right: 1px #E3E3E3 solid;
  border-bottom: 1px #E3E3E3 solid;
}
@media (max-width: 600px) {
  .info-grid2 {
    border-left: none;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
  .info-grid2 .info-card {
    border: 1px #E3E3E3 solid;
  }
}

.specs-table1 {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  grid-template-rows: auto;
  gap: 6px 12px;
  font-size: 12px;
  color: #212121;
}
.specs-table1__name {
  color: #979797;
}

.specs-table1__value {
  text-align: right;
}

.spec-table2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #414141;
}
.spec-table2 td {
  padding-top: 17px;
  padding-bottom: 18px;
}
.spec-table2 td:first-child {
  padding-left: 40px;
  padding-right: 20px;
}
.spec-table2 td:last-child {
  padding-left: 20px;
  padding-right: 40px;
}
.spec-table2 tr:not(:last-child) td {
  border-bottom: 1px #E3E3E3 solid;
}
.spec-table2 tr:nth-child(even) {
  background-color: rgba(0, 121, 51, 0.05);
}
.btn-little .btn {
  padding: 0px 12px;
  min-height: 40px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .spec-table2 td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .spec-table2 td:first-child {
    padding-left: 20px;
    padding-right: 10px;
  }
  .spec-table2 td:last-child {
    padding-left: 10px;
    padding-right: 20px;
  }
}

.filter {
  border: 1px #dfdfdf solid;
  margin-bottom: 35px;
}

.filter__close {
  display: none;
  position: absolute;
  right: 10px;
  top: 5px;
  width: 30px;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter__close svg {
  fill: var(--theme-color-text-common);
}

.filter .blocks-list1 > *:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 18px;
}

.filter .checkbox-text__label {
  font-size: 14px;
}
.filter__buttons > *:not(:last-child) {
  margin-bottom: 15px;
}
.filter .btn-reset {
  width: 100%;
}
.filter .btn_grey {
  color: var(--theme-color-accent);
  border-color: #ccc;
}
.filter__body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: grid-template-rows;
  transition-property: grid-template-rows;
  transition-property: grid-template-rows, -ms-grid-rows;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}
.filter__inner1 {
  overflow: hidden;
}
.filter[data-accordion="expanded"] .filter__inner1 {
  overflow: visible;
}
.filter__inner2 {
  padding: 14px;
  border-top: 1px #dfdfdf solid;
}
.filter__handle {
  width: 100%;
  position: relative;
  padding: 5px 46px 5px 19px;
  font-size: 16px;
  line-height: 1.25;
  color: var(--theme-color-accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 47px;
}
.filter__handle svg {
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: var(--theme-color-accent);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}
.filter__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #222;
  margin-bottom: 12px;
}
.filter[data-accordion=expanded] .filter__body {
  grid-template-rows: 1fr;
}
.filter[data-accordion=collapsed] .filter__handle svg {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.blocks-list1 > *:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 12px;
  border-bottom: 1px #dfdfdf solid;
}

.spec-accordion__handle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.spec-accordion__handle span {
  color: var(--theme-color-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.spec-accordion__handle-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px #E3E3E3 solid;
  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;
  margin-left: 12px;
}
.spec-accordion__handle-icon svg {
  fill: var(--theme-color-accent);
  display: block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.spec-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: grid-template-rows;
  transition-property: grid-template-rows;
  transition-property: grid-template-rows, -ms-grid-rows;
  -webkit-transition-duration: 700ms;
          transition-duration: 700ms;
}
.spec-accordion__inner1 {
  overflow: hidden;
}
.spec-accordion__inner2 {
  padding-top: 15px;
}
.spec-accordion[data-accordion=expanded] .spec-accordion__body {
  grid-template-rows: 1fr;
}
.spec-accordion[data-accordion=collapsed] .spec-accordion__handle svg {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.catalog-items {
  border: 1px #E3E3E3 solid;
}
.catalog-items > *:not(:last-child) {
  border-bottom: 1px #E3E3E3 solid;
}
@media (max-width: 1100px) {
  .catalog-items {
    border: none;
  }
  .catalog-items > *:not(:last-child) {
    margin-bottom: 30px;
  }
}

.pagination {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px 0;
}
.pagination > * {
  margin-left: 5px;
  margin-right: 5px;
}
.pagination__item {
  border-radius: 6px;
  width: 50px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  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;
}
.pagination__item_active {
  color: #fff;
  background-color: var(--theme-color-accent);
}
.pagination__item_nav svg {
  fill: var(--theme-color-accent);
}
.pagination__item_nav-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pagination__item_disabled {
  opacity: 0.5;
}
.pagination__item_div {
  width: auto;
}
.pagination + .old-text {
  margin-top: 70px;
}

img.photo-wide {
  display: block;
  max-width: 100%;
}

a.photo-wide {
  display: block;
}
a.photo-wide img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.photo-left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.photo-left img {
  width: 300px;
}
@media (max-width: 1000px) {
  .photo-left img {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .photo-left {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 10px;
  }
}

.photo-right {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}
.photo-right img {
  width: 300px;
}
@media (max-width: 1000px) {
  .photo-right img {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .photo-right {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 10px;
  }
}

.video-embed {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
}

.file-list > *:not(:last-child) {
  margin-bottom: 10px;
}

.menu-additional {
  margin-bottom: 20px;
}

.block-consultation {
  background-color: #FAFAFA;
  padding: 20px 40px 30px 40px;
}
.block-consultation .checkbox-text__label {
  font-size: 12px;
}
.block-consultation .form-grid1 {
  gap: 10px 10px;
}
@media (max-width: 460px) {
  .block-consultation .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.block-partners {
  padding: 17px 37px 27px 58px;
  border: 3px #FAFAFA solid;
  border-left: none;
}
.block-partners__logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.block-partners__logos a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-partners__logos img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1280px) {
  .block-partners__logos {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1080px) {
  .block-partners__logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 880px) {
  .block-partners__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .block-partners {
    padding: 17px 40px 30px 40px;
    border-right: none;
    border-bottom: none;
  }
  .block-partners__logos {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 640px) {
  .block-partners__logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 460px) {
  .block-partners__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid1 {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(382px, 1fr) 2.05fr;
  grid-area: auto;
}
@media (max-width: 1280px) {
  .grid1 {
    margin-bottom: 50px;
  }
}
@media (max-width: 900px) {
  .grid1 {
    margin-left: calc(-1 * var(--container-padding));
    width: calc(100% + 2 * var(--container-padding));
  }
}
@media (max-width: 768px) {
  .grid1 {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .grid1 .block-consultation {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .grid1 .block-consultation .error-msg {
    width: 100%;
  }
  .grid1 .block-partners {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.block-categories {
  margin-bottom: 110px;
}
.block-categories__grid {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-top: -5px;
  margin-bottom: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.block-categories__grid_1 .block-categories__item {
  max-width: calc(100% / 7);
}

.block-categories__grid .category-card {
  width: 100%;
}

.block-categories__item {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 5px;
  min-width: calc(100% / 7);
}
@media (max-width: 1100px) {
  .block-categories__grid_1 .block-categories__item,
  .block-categories__item {
    max-width: calc(100% / 3);
    flex-basis: calc(100% / 3);
  }
}
@media (max-width: 640px) {
  .block-categories__grid_1 .block-categories__item,
  .block-categories__item {
    max-width: calc(100% / 2);
    flex-basis: calc(100% / 2);
  }
}

.block-new-catalog-items .heading-cols2 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.block-news {
  background-color: #FAFAFA;
  padding-top: 40px;
  padding-bottom: 40px;
}

.block-mp-sliders {
  margin-top: 15px;
}
.block-mp-sliders__grid {
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  grid-template-rows: auto;
  gap: 0 28px;
}
.block-mp-sliders__col {
  min-width: 0;
}
@media (max-width: 1180px) {
  .block-mp-sliders__grid {
    grid-template-columns: 2.2fr 1fr;
    gap: 0 20px;
  }
}
@media (max-width: 1000px) {
  .block-mp-sliders__grid {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}

.block-form1 {
  border: 1px #E3E3E3 solid;
  padding: 70px;
}
.block-form1__inner {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.block-form1__buttons {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.block-form1__buttons_right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.block-form1__buttons .btn-text1 {
  padding: 10px;
}
.block-form1 .title1 {
  margin-bottom: 9px;
}
.block-form1 .title4 {
  margin-top: 19px;
  margin-bottom: 5px;
}
.block-form1 .textblock1 {
  margin-bottom: 10px;
}
.block-form1 .title1,
.block-form1 .textblock1 {
  text-align: center;
}
.block-form1 .form-grid1 {
  gap: 10px 10px;
}
@media (max-width: 1000px) {
  .block-form1 {
    padding: 38px 40px 40px 40px;
  }
}
@media (max-width: 900px) {
  .block-form1 {
    padding: 28px 30px 30px 30px;
  }
}
@media (max-width: 768px) {
  .block-form1 {
    padding: 18px 20px 20px 20px;
  }
}

.block-form2 {
  border: 1px #E3E3E3 solid;
  padding: 38px 40px 40px 40px;
  border-radius: 6px
}
.block-form2 .title3 {
  margin-bottom: 30px;
}
.block-form2__inner1 {
  width: 100%;
  max-width: 507px;
}
.block-form2__buttons {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-form2__buttons .btn-text1 {
  padding: 10px;
}
.block-form2__buttons > *:not(:last-child) {
  margin-right: 16px;
}
.block-form2 + * {
  margin-top: 30px;
}
@media (max-width: 900px) {
  .block-form2 {
    padding: 28px 30px 30px 30px;
  }
}
@media (max-width: 768px) {
  .block-form2 {
    padding: 18px 20px 20px 20px;
  }
}
@media (max-width: 575px) {
  .block-form2 .title3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 460px) {
  .block-form2__buttons {
    display: block;
    margin-top: 20px;
  }
  .block-form2__buttons > .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .block-form2__buttons > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.teaser1 {
  width: 100%;
  position: relative;
  padding: 40px;
  margin: 0 0 40px 0;
}
.teaser1_big1 {
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.teaser1__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
  z-index: -1;
}
.teaser1__inner {
  width: 80%;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.37;
  color: #212121;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.teaser1__inner > *:not(:last-child, h2) {
  margin-bottom: 1.4em;
}
.teaser1__inner a:not([href^=tel]) {
  color: var(--theme-color-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}
.teaser1__inner .hl1 {
  color: var(--theme-color-accent);
}
.teaser1__inner h2 {
  font-size: 32px;
  margin-bottom: 0.5em;
}
.teaser1__inner h3 {
  font-size: 24px;
  margin-bottom: 0.5em;
}
@media (max-width: 1280px) {
  .teaser1 {
    margin-left: calc(-1 * var(--container-padding));
    width: calc(100% + 2 * var(--container-padding));
    padding: var(--container-padding);
  }
}
@media (max-width: 768px) {
  .teaser1__inner {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .teaser1__inner {
    font-size: 14px;
    padding: 20px;
  }
}

.teaser2 {
  width: 100%;
  position: relative;
  margin: 0 0 20px 0;
  aspect-ratio: 10/3;
}
.teaser2__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
  z-index: -1;
}

.block-highlight {
  border: 1px #007933 solid;
  background-color: rgba(0, 121, 51, 0.05);
  text-align: center;
  padding: 20px;
  font-size: 16px;
  line-height: 1.37;
  color: #212121;
  margin-bottom: 22px;
  border-radius: 10px;
}
.block-highlight > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.block-highlight h2 {
  font-size: 20px;
}
@media (max-width: 640px) {
  .block-highlight {
    font-size: 14px;
  }
  .block-highlight h2 {
    font-size: 18px;
  }
}

.article-header {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.article-header__date {
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  color: #aeaeae;
  margin-bottom: 9px;
}

.catalog-detail {
  padding-bottom: 70px;
}

.catalog-detail__badges {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog-detail__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 21px;
  border-top-right-radius: 10.5px;
  border-bottom-right-radius: 10.5px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  margin-right: -10.5px;
  position: relative;
  white-space: nowrap;
}
.catalog-detail__badge:not(:first-child) {
  padding-left: 21.5px;
}
.catalog-detail__badge:nth-child(1) {
  z-index: 5;
}
.catalog-detail__badge:nth-child(2) {
  z-index: 4;
}
.catalog-detail__badge:nth-child(3) {
  z-index: 3;
}
.catalog-detail__badge:nth-child(4) {
  z-index: 2;
}
.catalog-detail__badge:nth-child(5) {
  z-index: 1;
}
.catalog-detail__badge_product_day {
  background-color: #F48535;
  color: #fff;
}
.catalog-detail__badge_product_new {
  background-color: #4da068;
  color: #fff;
}
.catalog-detail__badge_product_hit {
  background-color: #F4B335;
  color: #fff;
}
.catalog-card1__badge_promotional_product,
.catalog-card2__badge_promotional_product,
.cart__badge_promotional_product,
.catalog-detail__badge_promotional_product {
  background-color: #dc143c;
  color: #fff;
}

.catalog-detail__photos {
  position: relative;
  width: 100%;
}

.catalog-detail__photo-label {
  position: absolute;
  right: 1px;
  padding: 7px 20px 7px 20px;
  background-color: rgba(255,255,255, 0.5);
  max-width: calc(100% - 2px);
  bottom: 10px;
  text-align: right;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #212121;
}

.catalog-detail__status {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.428;
}
.catalog-detail__status_instock {
  color: var(--theme-color-accent);
}
.catalog-detail__status_instock svg {
  fill: var(--theme-color-accent);
  margin-left: 3px;
}
.catalog-detail__status_preorder {
  color: var(--theme-color-grey);
}
.catalog-detail__status_shipping {
  color: #F48535;
}
.catalog-detail__price1 {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--theme-color-accent);
  white-space: nowrap;
  margin-bottom: 13px;
}
.catalog-detail__price1 span {
  font-size: 20px;
}
.catalog-detail__price2 {
  font-size: 20px;
  white-space: nowrap;
  line-height: 1;
  color: var(--theme-color-grey);
  text-decoration: line-through;
}
.catalog-detail__buttons {
  margin: 5px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0;
}

.catalog-detail__buttons .bx-catalog-subscribe-button,
.catalog-card1 .bx-catalog-subscribe-button {
  margin: 0;
}

.catalog-detail__buttons > * {
  margin-bottom: 5px;
}

.catalog-detail__buttons > *:not(:last-child) {
  margin-right: 5px;
}

.catalog-detail__bar1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.catalog-detail__bar1 > *:not(:last-child) {
  margin-right: 45px;
}
.catalog-detail__bar1 .btn-text {
  text-transform: uppercase;
  color: var(--theme-color-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
}
.catalog-detail__description {
  line-height: 1.37;
  color: #212121;
}
.catalog-detail__description > *:not(:last-child) {
  margin-bottom: 0.6em;
}
.product-item-amount-description-container {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.catalog-detail__grid1 {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: auto;
  gap: 0 36px;
  margin-bottom: 70px;
}
.catalog-detail__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.catalog-detail__pics {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-detail__pics img {
  display: block;
  max-width: 100%;
  max-height: 480px;
}
.catalog-detail__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}
.catalog-detail__tags {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  margin-top: 30px;
}
.catalog-detail__tags a {
  color: var(--theme-color-accent);
}
.catalog-detail__photos a {
  display: none;
  width: 100%;
}
.catalog-detail__photos a img {
  display: block;
  width: 100%;
  border: 1px #E3E3E3 solid;
  aspect-ratio: 595/392;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.catalog-detail__previews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;

      flex-wrap: wrap;
  margin-top: 18px;
  margin: 18px -8.5px 0 -8.5px
}
.catalog-detail__previews > * {
  margin: 0 8.5px 17px;
  cursor: pointer;
}
.catalog-detail__previews > *.active {
  cursor: default;
}
.catalog-detail__previews > *.active img {
  border: 2px var(--theme-color-accent) solid;
  border-radius: 2px;
}
.catalog-detail__previews img {
  display: block;
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 1px;
  border: 1px #E3E3E3 solid;
}
@media (max-width: 1200px) {
  .catalog-detail__bar1 > *:not(:last-child) {
    margin-right: 25px;
  }
}
@media (max-width: 1000px) {
  .catalog-detail__bar1 {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .catalog-detail__left {
    width: 100%;
    /* max-width: 590px; */
    margin: 0 auto 30px auto;
  }
  .catalog-detail__grid1 {
    grid-template-columns: 1fr;
  }
  .catalog-detail__grid2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .catalog-detail__bar1 {
    display: block;
  }
  .catalog-detail__bar1 > *:not(:last-child),
  .catalog-detail__bar1 > * {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
}

.table-wrapper {
  overflow-x: auto;

  .MsoTableMediumGrid1Accent3 {
    width: 100%;
    min-width: 768px;
  }
}

.content-table1 {
  width: 100%;
  border-collapse: collapse;
}
.content-table1 img {
  max-width: 200px;
}
.content-table1 td {
  vertical-align: top;
  border: 1px solid #E3E3E3;
  padding: 20px;
}
.content-table1 td > b,
.content-table1 td > strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .content-table1 img {
    width: 100px;
  }
}
@media (max-width: 375px) {
  .content-table1 td {
    padding: 10px;
  }
}

.content-table2 {
  width: 100%;
  border-collapse: collapse;
}
.content-table2 td {
  border: 1px #9bbb59 solid;
  padding: 15px 7px;
}
.content-table2 td[rowspan]:first-child {
  font-size: 18px;
  text-align: center;
}
.content-table2 th {
  border: 1px #9bbb59 solid;
  border-bottom: 3px #9bbb59 solid;
  padding: 15px 7px;
}
.content-table2 tr:nth-child(even) td:not([rowspan]) {
  background-color: #e6eed5;
}

.content-table3 {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  background-color: #9bbb59;
  color: #000;
}
.content-table3 td {
  width: 33.33%;
  border: 1px #fff solid;
  padding: 10px 7px;
}
.content-table3 td:first-child {
  border-right: 3px #fff solid;
}
.content-table3 th {
  border: 1px #fff solid;
  border-bottom: 3px #fff solid;
  padding: 10px 7px;
}
.content-table3 th:first-child {
  border-right: 3px #fff solid;
}
.content-table3 tr:nth-child(even) td:not(:first-child) {
  background-color: #e6eed5;
}
.content-table3 tr:nth-child(odd) td:not(:first-child) {
  background-color: #cdddac;
}

.content-columns1 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0 80px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .content-columns1 {
    gap: 0 40px;
  }
}
@media (max-width: 900px) {
  .content-columns1 {
    gap: 30px 0;
    grid-template-columns: 1fr;
  }
}

.cart__row3 {
  display: grid;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  gap: 10px;
  padding: 20px 0;
}
.cart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
          align-items: flex-start;
}
.cart__buttons > *:not(:last-child) {
  margin-right: 20px;
}
.cart__photo {
  width: 100%;
  display: block;
  position: relative;
}
.cart__photo img {
  width: 100%;
  display: block;
}
.cart__title {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  margin-bottom: 3px;
}
.cart__code {
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #363636;
}
.cart__description {
  font-size: 13px;
  line-height: 1.25;
  color: #868686;
}
.cart .spec-accordion {
  margin-top: 10px;
}
.cart__price1 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: var(--theme-color-accent);
  white-space: nowrap;
}
.cart__price1 span {
  font-size: 18px;
}
.cart__price2 {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}
.cart__price2 span {
  font-size: 18px;
  color: #414141;
}
.cart__price-total1 {
  font-size: 21px;
  line-height: 1;
  color: #222;
  white-space: nowrap;
}
.cart__price-total1 span {
  font-size: 18px;
}
.cart__price-total2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  color: var(--theme-color-accent);
  white-space: nowrap;
}
.cart__price-total2 span {
  font-size: 24px;
}
.cart__row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #f3f3f3;
  font-size: 14px;
  line-height: 1;
  color: #000;
}
.cart__row1 .cart__cell1,
.cart__row1 .cart__cell2,
.cart__row1 .cart__cell3,
.cart__row1 .cart__cell4,
.cart__row1 .cart__cell5,
.cart__row1 .cart__cell6 {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.cart__row1 .cart__cell4 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cart__badges {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cart__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 21px;
  border-top-right-radius: 10.5px;
  border-bottom-right-radius: 10.5px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  margin-right: -10.5px;
  position: relative;
  white-space: nowrap;
}
.cart__badges .cart__badge:not(:first-child) {
  padding-left: 21.5px;
}
.cart__badge:nth-child(1) {
  z-index: 5;
}
.cart__badge:nth-child(2) {
  z-index: 4;
}
.cart__badge:nth-child(3) {
  z-index: 3;
}
.cart__badge:nth-child(4) {
  z-index: 2;
}
.cart__badge:nth-child(5) {
  z-index: 1;
}
.cart__badge_product_day {
  background-color: #F48535;
  color: #fff;
}
.cart__badge_product_new {
  background-color: #4da068;
  color: #fff;
}
.cart__badge_product_hit {
  background-color: #F4B335;
  color: #fff;
}

.cart__percent {
  position: absolute;
  left: -5px;
  bottom: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  border-radius: 10px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background-color: var(--theme-color-accent);
}

.cart__row2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: 1px #dfdfdf solid;
}
.cart__row2:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.cart__row2 .cart__cell1,
.cart__row2 .cart__cell2,
.cart__row2 .cart__cell3,
.cart__row2 .cart__cell4,
.cart__row2 .cart__cell5,
.cart__row2 .cart__cell6 {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.cart__cell1, .cart__cell3, .cart__cell4, .cart__cell5, .cart__cell6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart__cell1 {
  width: 102px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__cell2 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.cart__row2 .cart__cell2 {
  padding-top: 27px;
}
.cart__cell3 {
  width: 170px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__cell4 {
  width: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__cell5 {
  width: 170px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__cell6 {
  width: 44px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__cell7 {
  text-align: right;
}
@media (max-width: 1000px) {
  .cart__row1 {
    display: none;
  }
  .cart__row2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cart__row2 .cart__cell2 {
    width: calc(100% - 102px);
  }
  .cart__row2 .cart__cell3 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 575px) {
  .cart__row2 .cart__cell3 {
    display: none;
  }
  .cart__row2 .cart__cell4 {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .cart__price1 {
    font-size: 19px;
  }
  .cart__price1 span {
    font-size: 16px;
  }
  .cart__price-total2 {
    font-size: 30px;
  }
  .cart__price-total2 span {
    font-size: 19px;
  }
}
@media (max-width: 500px) {
  .cart__buttons {
    display: block;
  }
  .cart__buttons .btn {
    width: 100%;
  }
  .cart__buttons .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.order__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.order__buttons_top {
  margin-bottom: 30px;
}
.order__buttons_bottom {
  margin-top: 30px;
}
.order__info:not(:last-of-type) {
  margin-bottom: 20px;
}

.order-info {
  position: relative;
  border: 1px solid #ddd;
  padding: 15px 10px 5px;
  margin-top: 8px;
}
.order-info__title {
  position: absolute;
  top: 0;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 400;
  background-color: #fff;
  line-height: 1.4;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.contacts-block {
  position: relative;
  padding-top: 64px;
  padding-left: 20px;
  isolation: isolate;
  min-height: 720px;
}
.contacts-block__map {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.contacts-block__map iframe {
  max-width: 100%;
  height: 100%;
}
.contacts-block__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  min-width: 33%;
  width: 350px;
  background-color: #fff;
  padding: 48px 24px;
}
.contacts-block__title {
  font-size: 24px;
}
.contacts-block__subtitle {
  font-size: 22px;
  margin-bottom: 15px;
}
.contacts-block__row {
  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;
}
.contacts-block__row a {
  white-space: nowrap;
  line-height: 1.5;
  font-weight: 700;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.contacts-block__row a[href^=mailto] {
  color: var(--theme-color-accent);
}
@media (max-width: 998px) {
  .contacts-block__box {
    min-width: 50%;
  }
}
@media (max-width: 768px) {
  .contacts-block {
    padding-top: 0;
    padding-left: 0;
    min-height: auto;
  }
  .contacts-block__map {
    position: static;
    height: 300px;
  }
  .contacts-block__box {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .contacts-block__title {
    font-size: 21px;
  }
  .contacts-block__subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.history-list {
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.history-list > *:not(:last-child) {
  margin-bottom: 32px;
}
.history-list_grey .card-history {
  background-color: rgba(237, 237, 237, 0.5);
  padding: 30px;
}

.advantage-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.advantage-list > * {
  width: 30%;
  margin: 0 12px 24px 12px;
}
@media (max-width: 1100px) {
  .advantage-list > * {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .advantage-list > * {
    width: 100%;
    margin: 0 0 24px 0;
  }
}

.how-we-work {
  background-color: #ededed;
  padding: var(--container-padding);
}
.how-we-work__grid1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.how-we-work__grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-we-work__item {
  background-color: #fff;
  padding: 20px;
  text-align: left;
}
@media (max-width: 1000px) {
  .how-we-work__grid2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .how-we-work__grid1 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .how-we-work__grid2 {
    grid-template-columns: 1fr;
  }
}

.contacts-offices {
  background-color: #eeeeee;
  padding: 30px 10px;
}
.contacts-offices__header {
  text-align: center;
  margin-bottom: 30px;
}

.office-cards-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .office-cards-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.office-card {
  background-color: #fff;
  padding: 24px;
  text-align: 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;
}
.office-card__icon {
  fill: var(--theme-color-accent);
  margin-bottom: 20px;
}
.office-card__title {
  font-size: 22px;
}
.office-card__time {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #a2a2a2;
}
.office-card__contacts {
  margin-top: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.office-card__contacts a {
  white-space: nowrap;
}
.office-card__btn {
  margin-top: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .office-card__title {
    font-size: 20px;
  }
}

.contacts-requisites {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 30px;
}
.contacts-requisites__header-icon {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--theme-color-accent);
  border-radius: 50%;
  margin-bottom: 20px;
}
.contacts-requisites__header-icon svg {
  max-width: 100%;
  height: auto;
  fill: #fff;
}
@media (max-width: 768px) {
  .contacts-requisites__header-icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.contacts-requisites__right {
  padding-left: 30px;
  border-left: 4px solid var(--theme-color-accent);
}
@media (max-width: 768px) {
  .contacts-requisites__right {
    padding-left: 0;
    border-left: none;
  }
}
.contacts-requisites__row:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .contacts-requisites__row:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .contacts-requisites {
    grid-template-columns: 1fr;
    padding: 50px 0;
    gap: 0;
  }
}

.block-buttons1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}
.block-buttons1 > *:not(:last-child) {
  margin: 0 20px 20px 0;
}
@media (max-width: 575px) {
  .block-buttons1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-buttons1 > * {
    width: 100%;
  }
  .block-buttons1 > *:not(:last-child) {
    margin: 0 0 20px 0;
  }
}

.category-card {
  border-radius: 6px;
  border: 1px #E3E3E3 solid;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #FAFAFA;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.category-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 190/236;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  position: relative;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.category-card__name {
  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;
  text-align: center;
  background-color: #FAFAFA;
  min-height: 65px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  padding: 0 8px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: 2;
  color: #212121;
}
.category-card__name::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.category-card:hover {
  -webkit-box-shadow: 0 0 15.8px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 15.8px 0 rgba(0, 0, 0, 0.11);
}
.category-card:hover .category-card__photo {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 1480px) {
  .category-card__name {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .category-card__name {
    font-size: 16px;
  }
}

.catalog-card1 {
  border: 1px #aeaeae solid;
  border-radius: 6px;
  padding: 18px 12px 16px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0 16px;
  background-color: #fff;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.catalog-card1__right {
  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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.catalog-card1__top {
  margin-bottom: 15px;
}
.catalog-card1__buttons {

}
.catalog-card1__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-card1__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 21px;
  border-top-right-radius: 10.5px;
  border-bottom-right-radius: 10.5px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  margin-right: -10.5px;
  position: relative;
  white-space: nowrap;
  color: #fff;
}

.catalog-card1__badge:nth-child(1) {
  z-index: 5;
}
.catalog-card1__badge:nth-child(2) {
  z-index: 4;
}
.catalog-card1__badge:nth-child(3) {
  z-index: 3;
}
.catalog-card1__badge:nth-child(4) {
  z-index: 2;
}
.catalog-card1__badge:nth-child(5) {
  z-index: 1;
}

.catalog-card1__badge:not(:first-child) {
  padding-left: 21.5px;
}

.catalog-card1__badge_product_day {
  background-color: #F48535;
}
.catalog-card1__badge_product_new {
  background-color: #4da068;
}
.catalog-card1__badge_product_hit {
  background-color: #F4B335;
}
.catalog-card1__price1 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #212121;
  display: inline;
}
.catalog-card1__price2 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #ABABAB;
  text-decoration: line-through;
  display: inline;
}

.catalog-card1__price1 + .catalog-card1__price2 {
  margin-left: 10px;
}
.catalog-card1__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.catalog-card1__bar .btn-cart1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 20px;
  visibility: hidden;
}
.catalog-card1__bar-inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.catalog-card1__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 7px;
  color: #212121;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-card1__title a {
  color: currentcolor;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 0.5px;
}
.catalog-card1__title a:hover {
  text-decoration-color: currentcolor;
}
.catalog-card1__date {
  font-size: 12px;
  color: #414141;
}
.catalog-card1__descr {
  font-size: 13px;
  line-height: 1.25;
  color: var(--theme-color-accent);
}
.catalog-card1__photo {
  display: block;
  width: 100%;
}
.catalog-card1__photo img {
  display: block;
  width: 100%;
}
.catalog-card1:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}
.catalog-card1:hover .catalog-card1__bar .btn-cart1 {
  visibility: visible;
}

.catalog-card1 .btn-favorites {
  font-size: 12px;
}

.catalog-card1 .btn-favorites + .catalog-card1__buttons {
  /* margin-top: 18px; */
}

.catalog-card1 .catalog-card1__buttons {
  margin-top: 18px;
}

@media (max-width: 400px) {
  .catalog-card1__buttons .btn.btn_primary {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.catalog-card2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.catalog-card2__date {
  font-size: 12px;
  color: #414141;
}
.catalog-card2__badges {
  position: absolute;
  left: -1px;
  top: -1px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog-card2__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 21px;
  border-top-right-radius: 10.5px;
  border-bottom-right-radius: 10.5px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  margin-right: -10.5px;
  position: relative;
  white-space: nowrap;
}
.catalog-card2__badge:not(:first-child) {
  padding-left: 21.5px;
}
.catalog-card2__badge:nth-child(1) {
  z-index: 5;
}
.catalog-card2__badge:nth-child(2) {
  z-index: 4;
}
.catalog-card2__badge:nth-child(3) {
  z-index: 3;
}
.catalog-card2__badge:nth-child(4) {
  z-index: 2;
}
.catalog-card2__badge:nth-child(5) {
  z-index: 1;
}
.catalog-card2__badge_product_day {
  background-color: #F48535;
  color: #fff;
}
.catalog-card2__badge_product_new {
  background-color: #4da068;
  color: #fff;
}
.catalog-card2__badge_product_hit {
  background-color: #F4B335;
  color: #fff;
}
.catalog-card2__photo {
  width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin-right: 20px;
}
.catalog-card2__photo img {
  display: block;
  width: 100%;
}
.catalog-card2__data1 {
  padding-top: 2px;
}
.catalog-card2__bar1 {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* margin-bottom: 32px; */
  margin-bottom: 15px;
}
.catalog-card2__bar1 > *:first-child {
  margin-right: 5px;
}
.catalog-card2__bar1 > *:last-child {
  margin-left: 5px;
}
.catalog-card2__bar2 {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-card2__bar2 > *:first-child {
  margin-right: 5px;
}
.catalog-card2__bar2 > *:last-child {
  margin-left: 5px;
}
.catalog-card2__bar2 > *:only-child {
  margin-left: auto;
  margin-right: 0;
}
.catalog-card2__bar3 {
  text-align: right;
}
.catalog-card2__col1 {
  width: 38%;
  padding: 10px;
  border-right: 1px #E3E3E3 solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 330px;
}
.catalog-card2__col2 {
  width: 32%;
  padding: 10px 15px;
  border-right: 1px #E3E3E3 solid;
}
.catalog-card2__col3 {
  width: 30%;
  padding: 10px 20px;
  min-width: 330px;
}
.catalog-card2__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
}
.catalog-card2__name a {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
}
.catalog-card2__descr {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.428;
  color: #212121;
}
.catalog-card2__status {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.428;
}
.catalog-card2__status_instock {
  color: var(--theme-color-accent);
}
.catalog-card2__status_instock svg {
  fill: var(--theme-color-accent);
  margin-left: 3px;
}
.catalog-card2__status_preorder {
  color: var(--theme-color-grey);
}
.catalog-card2__status_shipping {
  color: #F48535;
}
.catalog-card2__price1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.catalog-card2__price1 span {
  font-size: 16px;
}
.catalog-card2__price2 {
  font-size: 16px;
  white-space: nowrap;
  line-height: 1;
  color: var(--theme-color-grey);
  text-decoration: line-through;
  margin-bottom: 3px;
}
@media (max-width: 1100px) {
  .catalog-card2 {
    border: 1px #E3E3E3 solid;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .catalog-card2__col1 {
    min-width: 400px;
  }
  .catalog-card2__col2 {
    border-right: none;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .catalog-card2__col3 {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-top: 1px #E3E3E3 solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .catalog-card2__bar1 {
    margin-bottom: 0;
    margin-right: 40px;
  }
  .catalog-card2__bar1 > div:first-child, .catalog-card2__bar2 > div:first-child {
    margin-right: 20px;
  }
}
@media (max-width: 900px) {
  .catalog-card2__col1 {
    min-width: 330px;
  }
}
@media (max-width: 768px) {
  .catalog-card2__col1 {
    min-width: 0;
    width: 100%;
    border-right: none;
  }
  .catalog-card2__col3 {
    border-top: none;
    display: block;
  }
  .catalog-card2__bar1 {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .catalog-card2__bar1, .catalog-card2__bar2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 460px) {
  .catalog-card2 .btn-cart {
    font-size: 14px;
  }
}

.catalog-card3 {
  border: 1px #E3E3E3 solid;
  padding: 10px;
  text-align: center;
}

.catalog-card3__date {
  font-size: 12px;
  color: #414141;
}

.catalog-card3__badges {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog-card3__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 21px;
  border-top-right-radius: 10.5px;
  border-bottom-right-radius: 10.5px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  margin-right: -10.5px;
  position: relative;
  white-space: nowrap;
}
.catalog-card3__badge:not(:first-child) {
  padding-left: 21.5px;
}
.catalog-card3__badge:nth-child(1) {
  z-index: 5;
}
.catalog-card3__badge:nth-child(2) {
  z-index: 4;
}
.catalog-card3__badge:nth-child(3) {
  z-index: 3;
}
.catalog-card3__badge:nth-child(4) {
  z-index: 2;
}
.catalog-card3__badge:nth-child(5) {
  z-index: 1;
}
.catalog-card3__badge_product_day {
  background-color: #F48535;
  color: #fff;
}
.catalog-card3__badge_product_new {
  background-color: #4da068;
  color: #fff;
}
.catalog-card3__badge_product_hit {
  background-color: #F4B335;
  color: #fff;
}


.catalog-card3 .btn-cart {
  margin-bottom: 10px;
}
.catalog-card3 .btn-cart svg {
  margin-left: 0;
}
.catalog-card3__title {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 7px;
  color: var(--theme-color-text-common);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
.catalog-card3__title a {
  color: currentcolor;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}
.catalog-card3__title a:hover {
  text-decoration-color: currentcolor;
}
.catalog-card3__descr {
  font-size: 12px;
  line-height: 1.25;
  color: var(--theme-color-text-common);
  text-align: left;
  margin-bottom: 20px;
  width: 100%;
}
.catalog-card3__photo {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.catalog-card3__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
}
.catalog-card3__price1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--theme-color-accent);
  margin-bottom: 10px;
}
.catalog-card3__price1 span {
  font-size: 16px;
}
.catalog-card3__price1 .count-value {
	color: var(--theme-color-text-common);
}
.catalog-card3__price2 {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: var(--theme-color-grey);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.news-card {
  border: 1px #aeaeae solid;
  border-radius: 6px;
  padding: 8px 8px 26px;
  background-color: #fff;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.news-card__date {
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  color: #aeaeae;
  margin-bottom: 9px;
}
.news-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 9px;
  color: var(--theme-color-text-common);
}
.news-card__title a {
  color: currentcolor;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}
.news-card__title a:hover {
  text-decoration-color: currentcolor;
}
.news-card__descr {
  color: var(--theme-color-text-common);
  font-size: 14px;
  line-height: 1.25;
}
.news-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 320/180;
  position: relative;
  margin-bottom: 16px;
}
.news-card__photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 6px;
}
.news-card__photo .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.news-card__photo:hover .btn-play {
  background-color: rgb(214, 0, 0);
}
.news-card_video {
  overflow: hidden;
  position: relative;
}
.news-card_video .news-card__photo::after {
  content: "";
  position: absolute;
  left: -50px;
  top: -50px;
  width: 800px;
  height: 800px;
}
.news-card__lnk {
  margin-top: 18px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.news-card:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.vacancy-card {
  border: 1px #E3E3E3 solid;
  padding: 29px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}
.vacancy-card__left .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.vacancy-card__photo {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 280/320;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.vacancy-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
.vacancy-card__name::after {
  content: "";
  width: 100%;
  max-width: 100px;
  border-top: 2px var(--theme-color-accent) solid;
  position: absolute;
  left: 0;
  top: 100%;
}
.vacancy-card__description {
  color: #212121;
  font-size: 16px;
  line-height: 1.5;
}
.vacancy-card__description > *:not(:last-child) {
  margin-bottom: 1.1em;
}
.vacancy-card__description ol {
  list-style-type: decimal;
  margin-left: 20px;
}
.vacancy-card__description p + ol {
  margin-top: -0.35em;
}
.vacancy-card__description a:not([href^=tel]) {
  color: var(--theme-color-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}
@media (max-width: 900px) {
  .vacancy-card {
    grid-template-columns: 230px 1fr;
  }
}
@media (max-width: 768px) {
  .vacancy-card {
    padding: 19px;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .vacancy-card {
    grid-template-columns: 1fr;
  }
  .vacancy-card__photo {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .vacancy-card__name {
    font-size: 18px;
  }
  .vacancy-card__description {
    font-size: 14px;
  }
}

.info-card {
  padding: 0 20px 29px 20px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.info-card__lnk {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.info-card__photo {
  display: block;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-bottom: 15px;
}
.info-card__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 370/200;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.info-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.37;
  color: #212121;
  margin-bottom: 10px;
}
.info-card__title a {
  color: currentcolor;
}
.info-card__descr {
  font-size: 14px;
  line-height: 1.5;
  color: #212121;
  margin-bottom: 18px;
}

.info-card1 {
  padding: 32px;
  background-color: #ededed;
}
.info-card1__title {
  color: #1f50a1;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}

.info-card_1 .info-card__title {
  font-size: 18px;
}

.info-card__list1 a {
  color: #212121;
}

.info-card__list1 a::before {
  content: '';
  content: "";
  width: 8px;
  height: 2px;
  border-top: 2px rgba(33, 33, 33, 0.4) solid;
  position: absolute;
  left: 0;
  top: 11px;
}

.info-card__list1 a:hover {
  color: var(--theme-color-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
}

.info-card__list1 li:not(:last-child) {
  margin-bottom: 5px;
}

.info-card__list1 li {
  padding-left: 14px;
  position: relative;
}

@media (max-width: 768px) {
  .info-card1__title {
    font-size: 40px;
  }
}

.card-history {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  grid-template-rows: auto;
}
.card-history__year {
  border-right: 1px #444 solid;
  font-size: 24px;
  font-weight: 700;
  padding-right: 24px;
}
.card-history__text {
  padding-left: 24px;
}
@media (max-width: 575px) {
  .card-history {
    display: block;
  }
  .card-history__year {
    border-right: none;
    font-size: 22px;
    padding-right: 0;
  }
  .card-history__text {
    padding-left: 0;
  }
}

.card-shipping {
  background-color: #fff;
  padding: 24px;
}
.card-shipping__logo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
}
.card-shipping__name {
  font-size: 20px;
  margin-bottom: 20px;
}

.card-search-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-search-item__photo {
  display: block;
  width: 100%;
}
.card-search-item__photo img {
  display: block;
  width: 100%;
}
.card-search-item__name {
  font-size: 14px;
  line-height: 1.25;
  color: #111;
}
.card-search-item__description {
  font-size: 12px;
  line-height: 1.25;
  margin-top: 5px;
}
.card-search-item__price {
  font-size: 20px;
  font-weight: 700;
}
.card-search-item__price span {
  font-size: 15px;
  font-weight: 400;
}
.card-search-item__status {
  font-size: 12px;
}
.card-search-item__cell1 {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.card-search-item__cell2 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 20px;
}
.card-search-item__cell3 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.card-search-item__cell4 {
  width: 90px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}
@media (max-width: 1170px) and (min-width: 1001px) {
  .card-search-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .card-search-item__cell2 {
    margin-right: 0;
    width: calc(100% - 80px);
  }
  .card-search-item__cell3 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    text-align: right;
  }
}
@media (max-width: 640px) {
  .card-search-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .card-search-item__cell2 {
    margin-right: 0;
    width: calc(100% - 80px);
  }
  .card-search-item__cell3 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    text-align: right;
    padding-top: 10px;
  }
  .card-search-item__cell4 {
    padding-top: 10px;
  }
}

.file-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px rgba(0, 0, 0, 0.05) solid;
  border-radius: 3px;
  padding: 10px;
}
.file-card__col1 {
  width: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.file-card__col1 img {
  display: block;
  margin: 0 auto;
}
.file-card__col2 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 20px;
}
.file-card__col3 {
  padding-right: 20px;
}
.file-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.file-card__name a {
  color: var(--theme-color-accent);
}
.file-card__name a:hover {
  text-decoration: underline;
}
.file-card__size {
  font-size: 13px;
  line-height: 1.25;
  color: #838383;
  white-space: nowrap;
}
.file-card__size span {
  color: #333;
}
@media (max-width: 768px) {
  .file-card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .file-card__col1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .file-card__col2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 180px);
  }
  .file-card__col3 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 40px;
  }
  .file-card__col4 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 575px) {
  .file-card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .file-card__col2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 80px);
    padding-right: 0;
  }
  .file-card__col3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-top: 5px;
  }
  .file-card__col4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-top: 15px;
    text-align: right;
  }
}

.swiper-nav {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #E1F0DE;
  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;
  z-index: 2;
}
.swiper-nav.swiper-button-lock {
	display: none;
}
.swiper-nav_prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.swiper-nav svg {
  fill: var(--theme-color-accent);
}
.swiper-nav:not(:disabled):hover svg {
  fill: var(--theme-color-accent);
}
@media (max-width: 768px) {
  .swiper-nav {
    width: 30px;
    height: 30px;
  }
}
.swiper-button-disabled {
  cursor: default;
  opacity: 0.5;
}

.swiper-nav-wrap1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 50px;
}
.swiper-nav-wrap1 .swiper-nav {
  width: 50px;
  height: 50px;
  background-color: #F8F7F7;
}
.swiper-nav-wrap1 .swiper-nav svg {
  fill: #797D84;
}

.slider-catalog {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.slider-catalog__slide {
  aspect-ratio: 945/383;
  overflow: hidden;
  border-radius: 6px;
  min-height: 382px;
}
.slider-catalog__slide video {
  /* opacity: 0; */
  background: #d8d8d8;
  width: 100%;
  height: 250px;
}
.slider-catalog__slide .vjs-has-started video {
  opacity: 1;
}
.slider-catalog__photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider-catalog__title {
  font-size: 41px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--theme-color-text-common);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 16px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.slider-catalog__descr {
  font-size: 27px;
  line-height: 1;
  color: var(--theme-color-text-common);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 81px;
  margin: 0 0 20px 0;
}
.slider-catalog__panel {
  position: absolute;
  left: -1px;
  top: 0;
  width: 46%;
  min-width: 435px;
  height: 100%;
  z-index: 1;
  padding: 10px 50px 40px 90px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.slider-catalog__panel::before {
  content: "";
  z-index: -1;
  position: absolute;
  right: 16%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 248, 255, 0.72);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  -webkit-transform: rotate(9deg) scale(1.3);
          transform: rotate(9deg) scale(1.3);
}
.slider-catalog__panel .btn {
  padding-left: 38px;
  padding-right: 38px;
  text-transform: uppercase;
}
.slider-catalog .swiper-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px rgba(150, 198, 170, 0.25);
          box-shadow: 0 0 12px rgba(150, 198, 170, 0.25);
}
.slider-catalog .swiper-nav_prev {
  left: 25px;
}
.slider-catalog .swiper-nav_next {
  right: 25px;
}
@media (max-width: 1000px) {
  .slider-catalog__slide {
    min-height: 250px;
  }
  .slider-catalog__panel {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .slider-catalog__panel {
    padding-left: 51px;
    min-width: 350px;
  }
  .slider-catalog__title {
    font-size: 35px;
  }
  .slider-catalog__descr {
    font-size: 20px;
  }
  .slider-catalog .swiper-nav_prev {
    left: 10px;
  }
  .slider-catalog .swiper-nav_next {
    right: 10px;
  }
}
@media (max-width: 575px) {
  .slider-catalog {
    margin-left: calc(-1 * var(--container-padding));
    width: calc(100% + 2 * var(--container-padding));
    border-radius: 0;
  }
  .slider-catalog__slide {
    border-radius: 0;
  }
  .slider-catalog__panel {
    padding-right: 10px;
    min-width: 250px;
  }
  .slider-catalog__title {
    font-size: 30px;
  }
  .slider-catalog__descr {
    font-size: 18px;
  }
}

.slider-catalog-item-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.slider-catalog-item-wrapper .swiper-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px rgba(150, 198, 170, 0.25);
          box-shadow: 0 0 12px rgba(150, 198, 170, 0.25);
}
.slider-catalog-item-wrapper .swiper-nav_prev {
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.slider-catalog-item-wrapper .swiper-nav_next {
  right: 0;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
}

.slider-catalog-item {
  background-color: #D9F4E4;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}
.slider-catalog-item__photo {
  width: 76%;
  max-width: 350px;
  border-radius: 50%;
  aspect-ratio: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.57);
  -webkit-transform: translateX(19%) translateY(19%);
          transform: translateX(19%) translateY(19%);
  z-index: -1;
  padding: 7% 0 0 7%;
}
.slider-catalog-item__photo img {
  display: block;
  max-width: 80%;
  max-height: 80%;
}
.slider-catalog-item__photo_big {
  width: 100%;
  max-width: 385px;
  right: 0;
  bottom: 0;
  padding: 5% 0 0 15%;
}
.slider-catalog-item__photo_big img {
  max-width: 65%;
  max-height: 65%;
}
.slider-catalog-item__discount {
  position: absolute;
  right: 36px;
  top: 26px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.172;
  color: var(--theme-color-accent);
}
.slider-catalog-item__discount svg {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateX(30%) translateY(-50%);
          transform: translateX(30%) translateY(-50%);
  fill: rgba(167, 229, 193, 0.59);
  z-index: -1;
}
.slider-catalog-item__badges {
  margin-bottom: 11px;
  margin-right: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.slider-catalog-item__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #212121;
  text-transform: uppercase;
  background-color: #A7E5C1;
  border-radius: 4px;
  padding: 8px 10px;
  margin: 0 3px 3px 0;
}
.slider-catalog-item__title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.36;
  color: #212121;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 16px 0;
  max-width: 300px;
}
.slider-catalog-item__price1 {
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  color: #212121;
  margin-bottom: 22px;
  white-space: nowrap;
}
.slider-catalog-item__price2 {
  font-size: 18px;
  line-height: 1;
  color: #212121;
  white-space: nowrap;
  margin-bottom: 8px;
}
.slider-catalog-item__price2 span {
  position: relative;
}
.slider-catalog-item__price2 span::after {
  content: "";
  width: calc(100% + 4px);
  border-top: 1px #212121 solid;
  position: absolute;
  top: 50%;
  left: -2px;
  -webkit-transform: rotate(-7deg) translateY(-50%);
          transform: rotate(-7deg) translateY(-50%);
  pointer-events: none;
}
.slider-catalog-item__slide {
  min-height: 280px;
  padding: 26px 30px 30px 30px;
  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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .slider-catalog-item__title {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .slider-catalog-item__photo_big {
    max-width: 65%;
  }
}

.slider-catalog-items-wrapper {
  position: relative;
  margin-top: -6px;
  margin-left: -6px;
  width: calc(100% + 12px);
}
.slider-catalog-items-wrapper .swiper-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-catalog-items-wrapper .swiper-nav_prev {
  left: -15px;
  -webkit-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}
.slider-catalog-items-wrapper .swiper-nav_next {
  right: -15px;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}
@media (max-width: 1540px) {
  .slider-catalog-items-wrapper .swiper-nav_prev {
    left: 6px;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .slider-catalog-items-wrapper .swiper-nav_next {
    right: 6px;
    -webkit-transform: translateY(-50%) translateX(50%);
            transform: translateY(-50%) translateX(50%);
  }
}

.slider-catalog-items {
  padding: 6px;
  overflow: hidden;
}
.slider-catalog-items .swiper-wrapper {
  overflow: visible;
}
.slider-catalog-items__slide {
  height: auto;
}
.slider-catalog-items .catalog-card1 {
  width: 100%;
  height: 100%;
}

.slider-news-wrapper {
  position: relative;
  margin-top: -6px;
  margin-left: -6px;
  width: calc(100% + 12px);
}
.slider-news-wrapper .swiper-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-news-wrapper .swiper-nav_prev {
  left: -15px;
  -webkit-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}
.slider-news-wrapper .swiper-nav_next {
  right: -15px;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}
@media (max-width: 1540px) {
  .slider-news-wrapper .swiper-nav_prev {
    left: 6px;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .slider-news-wrapper .swiper-nav_next {
    right: 6px;
    -webkit-transform: translateY(-50%) translateX(50%);
            transform: translateY(-50%) translateX(50%);
  }
}

.slider-news {
  padding: 6px;
  overflow: hidden;
}
.slider-news .swiper-wrapper {
  overflow: visible;
}
.slider-news__slide {
  height: auto;
}
.slider-news .news-card {
  width: 100%;
  height: 100%;
}

.slider-catalog-items-analog-wrapper {
  position: relative;
  padding: 40px;
}

.slider-catalog-items-analog-wrapper .highslide {
  display: inline-block;
}

.slider-catalog-items-analog-wrapper .highslide img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.slider-catalog-items-analog-wrapper .swiper-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-catalog-items-analog-wrapper .swiper-nav_prev {
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-catalog-items-analog-wrapper .swiper-nav_next {
  right: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider-catalog-items-analog__slide {
  height: auto;
}
.slider-catalog-items-analog .catalog-card3 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.slider-catalog-items-analog .catalog-card3__descr {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.slider-contacts-schemes-wrapper {
  width: 100%;
  position: relative;
  background-color: #eeeeee;
  padding: 70px 10px;
}
.slider-contacts-schemes-wrapper .swiper-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px rgba(150, 198, 170, 0.25);
          box-shadow: 0 0 12px rgba(150, 198, 170, 0.25);
}
.slider-contacts-schemes-wrapper .swiper-nav_prev {
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-contacts-schemes-wrapper .swiper-nav_next {
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .slider-contacts-schemes-wrapper .slider-contacts-schemes-wrapper {
    padding: 50px 10px;
  }
}

.slider-contacts-schemes__slide p {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 22px;
}
.slider-contacts-schemes__slide img {
  display: block;
  margin: 0 auto;
}

.backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}
.backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.menu-float {
  position: fixed;
  width: 100%;
  max-width: 400px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1001;
  background: #fff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  /*

  .menu-title {
    font-size: 24px;
    font-weight: 700;
    color: #414141;
    text-transform: uppercase;
    padding-left: 0;
  }

  .catalog-menu__toggle {
    display: none;
  }

  .catalog-menu__lvl1:not(:last-child) {
    border-bottom: 1px #E3E3E3 solid;
  }

  .catalog-menu__lvl1 > a {
    border: none;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 30px 14px 20px;
    margin-left: -20px;
    width: calc(100% + 40px);
    pointer-events: none;
  }

  .catalog-menu__lvl1:hover > a {
    background-color: #FAFAFA;
  }

  .catalog-menu__sub1 {
    position: fixed;
    top: 0;
    left: 400px;
    border: none;
    background-color: #FAFAFA;
    width: 424px;
    height: 100dvh;

    ul {
      padding-top: 40px;
      width: 100%;
      height: 100%;
      overflow: auto;
    }
  }

  .catalog-menu__lvl1:hover .catalog-menu__sub1 {
    display: block!important;
  }

  .catalog-menu__lvl2 > a {
    font-size: 16px;
    padding: 10px 30px;

    &:hover {
      background-color: #FAFAFA;
    }
  }

  .catalog-menu__lvl2 > a::before {
    display: none;
  }

  */
}
.menu-float::before {
  content: '';
  left: 0;
  top: 0;
  width: calc(100% - 5px);
  height: 40px;
  background: #fff;
  position: absolute;
  z-index: 1;
}
.menu-float__close {
  z-index: 2;
  position: absolute;
  right: 12px;
  top: 5px;
  width: 30px;
  height: 30px;
  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;
}
.menu-float__close svg {
  fill: var(--theme-color-text-common);
}
.menu-float__close:hover svg {
  fill: #000;
}
.menu-float__auth {
  font-size: 16px;
  margin-bottom: 30px;
  display: none;
}
.menu-float.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.menu-float__inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 40px 20px 20px 20px;
}
.menu-float .main-menu {
  display: none;
}
.menu-float .main-menu__toggle {
  position: absolute;
  top: 20px;
  right: 0;
}
.menu-float .main-menu__toggle.expanded {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.menu-float .main-menu__toggle svg {
  display: block;
  fill: var(--theme-color-text-common);
}
.menu-float .main-menu__toggle::after {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  inset: -5px -5px -5px -5px;
}
.menu-float .main-menu__sub1 {
  padding: 10px 0 0 15px;
  display: none;
  width: calc(100% + 20px);
}
.menu-float .main-menu__sub2 {
  padding: 10px 0 0 15px;
  display: none;
}
.menu-float .main-menu__lvl1 {
  padding: 15px 20px 15px 0;
  position: relative;
  border-bottom: 1px #ccc solid;
}
.menu-float .main-menu__lvl1:first-child {
  border-top: 1px #ccc solid;
}
.menu-float .main-menu__lvl1 > a {
  color: var(--theme-color-text-common);
  font-size: 14px;
  line-height: 1.25;
  display: inline-block;
  white-space: nowrap;
}
.menu-float .main-menu__lvl1 > a:hover {
  color: var(--theme-color-accent);
}
.menu-float .main-menu__lvl2 {
  position: relative;
  padding-top: 9px;
  padding-bottom: 9px;
}
.menu-float .main-menu__lvl2 > .main-menu__toggle {
  right: 0;
  top: 13px;
}
.menu-float .main-menu__lvl2:not(:last-child) {
  border-bottom: 1px #ccc solid;
}
.menu-float .main-menu__lvl2 > a {
  color: var(--theme-color-text-common);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}
.menu-float .main-menu__lvl2 > a:hover {
  color: var(--theme-color-accent);
}
.menu-float .main-menu__lvl3 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.menu-float .main-menu__lvl3 > a {
  color: var(--theme-color-text-common);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}
.menu-float .main-menu__lvl3 > a:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 1000px) {
  .menu-float .main-menu {
    display: block;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .menu-float__auth {
    display: block;
  }
}



.popup {
  background: #FAFAFA;
  width: 100%;
  max-width: 648px;
  color: #212121;
}
.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  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;
  z-index: 1;
}
.popup__close::after {
  content: "";
  position: absolute;
  inset: -5px -5px -5px -5px;
}
.popup__close svg {
  fill: #414141;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: fill;
  transition-property: fill;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.popup__close:hover svg, .popup__close:focus-visible svg {
  fill: #82879A;
}
.popup__close:active svg {
  fill: var(--theme-color-accent);
}
.popup__title {
  padding: 45px 60px 20px 50px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.popup__content {
  padding: 0 50px 40px 50px;
}
.popup-confirm .popup__content {
  padding-bottom: 20px;
}
.popup__photo1 {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: auto;
}
.popup__text1 {
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 25px;
}
.popup__text1 a {
  color: var(--theme-color-accent);
  border-radius: 2px;
}
.popup__text1 a:focus-visible {
  outline: 3px rgba(0, 0, 0, 0.3) solid;
}
.popup__text1 p:not(:last-child) {
  margin-bottom: 10px;
}
.popup-notification,
.popup-confirm {
  text-align: center;
}
.popup-policy {
  max-width: 1000px;
}
.popup__text2 {
  color: #82879A;
  font-size: 14px;
  line-height: 1.5;
  padding-top: 9px;
}
.popup__text2 a {
  color: var(--theme-color-accent);
  border-radius: 2px;
}
.popup__text2 a:focus-visible {
  outline: 3px rgba(0, 0, 0, 0.3) solid;
}
.popup__text2 p:not(:last-child) {
  margin-bottom: 8px;
}

.popup-confirm .swal2-actions {
  justify-content: center;
  padding-bottom: 20px;
  gap: 0 30px;
}
@media (max-width: 1000px) {
  .popup__content {
    padding: 0 40px 30px 40px;
  }
  .popup__title {
    font-size: 26px;
    padding: 35px 50px 20px 40px;
  }
}
@media (max-width: 768px) {
  .popup__content {
    padding: 0 20px 20px 20px;
  }
  .popup__title {
    font-size: 22px;
    padding: 25px 40px 20px 20px;
  }
}

.footer {
  background-color: #373737;
}
.footer__subscribe {
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.footer__logo {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}
.footer__logo span {
  display: block;
}
.footer__logo img {
  display: block;
  width: 100%;
  max-width: 112px;
  margin-bottom: 17px;
}
.footer .socials__item:not(:last-child) {
  margin-right: 8px;
}
.footer .socials__item svg {
  fill: #fff;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.footer__nav-block:not(:last-child) {
  margin-bottom: 50px;
}
.footer__nav {
  font-size: 16px;
  line-height: 1.25;
}
.footer__nav li:not(:last-child) {
  margin-bottom: 20px;
}
.footer__nav a {
  color: #C8C8C8;
}
.footer__heading1 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 27px;
}
.footer__heading1 a {
  color: currentcolor;
}
.footer__top {
  color: #fff;
  padding-top: 30px;
  margin-bottom: 30px;
}
.footer__top1 {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 25px;
}
.footer__bottom {
  color: #C8C8C8;
  font-size: 14px;
  line-height: 1.42;
  padding: 10px 0;
}
.footer__bottom a {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
  color: #C8C8C8;
}
.footer__links {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}
.footer__links p:not(:last-child) {
  margin-bottom: 0.5em;
}
.footer__links a {
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.footer__links a svg {
  fill: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__developer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__locations .location-item {
  border-bottom: 1px #6A6A6A solid;
  margin-bottom: 9px;
  padding-bottom: 9px;
}
@media (max-width: 1200px) {
  .footer__top1 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer__top1 .socials {
    margin-right: 20px;
  }
  .footer__locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .footer__locations .location-item {
    margin-bottom: 0;
  }
}
@media (max-width: 1000px) {
  .footer .footer__nav,
  .footer .footer__heading1 {
    font-size: 14px;
  }
  .footer__nav-block:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 800px) {
  .footer__locations {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .footer__logo img {
    margin: 0 10px 0 0;
  }
  .footer__top1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__links {
    text-align: center;
  }
  .footer__nav-block:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .footer__locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .footer__developer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 400px) {
  .footer__locations {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-grid1 {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr 253px;
  gap: 20px;
}
.footer-grid1__col1 {
  padding-top: 12px;
}
@media (max-width: 1200px) {
  .footer-grid1 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .footer-grid1__col5 {
    grid-column: span 4;
  }
}
@media (max-width: 768px) {
  .footer-grid1 {
    grid-template-columns: 2.5fr 1.5fr 1.2fr;
  }
  .footer-grid1__col1, .footer-grid1__col5 {
    grid-column: span 3;
  }
  .footer-grid1__col1 {
    padding-top: 0;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-grid1 {
    grid-template-columns: 1.2fr 1fr;
  }
  .footer-grid1__col1, .footer-grid1__col4, .footer-grid1__col5 {
    grid-column: span 2;
  }
  .footer-grid1__col4 {
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-grid1__col4 .footer__nav-block {
    margin-bottom: 0;
  }
}
@media (max-width: 460px) {
  .footer-grid1__col4 .footer__heading1 {
    font-size: 13px;
  }
}

.footer-grid2 {
  display: grid;
  grid-template-columns: 220px 1.38fr 1fr 253px;
  gap: 20px;
}
.footer-grid2__col3 {
  text-align: center;
}
@media (max-width: 1200px) {
  .footer-grid2 {
    grid-template-columns: 250px 1fr;
  }
  .footer-grid2__col5 {
    grid-column: span 4;
  }
  .footer-grid2__col3 {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .footer-grid2__col1 {
    grid-column: span 2;
  }
  .footer-grid2__col2 {
    grid-column: span 2;
  }
}
@media (max-width: 460px) {
  .footer-grid2 {
    grid-template-columns: 1fr;
  }
  .footer-grid2__col1, .footer-grid2__col2 {
    grid-column: auto;
  }
  .footer-grid2__col1, .footer-grid2__col2, .footer-grid2__col3, .footer-grid2__col4 {
    text-align: center;
  }
}

.block-exp .textblock1 {
  background-color: #fff;
  padding: 20px;
}
.block-exp .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 64px;
  color: #1c1c1c !important;
  font-size: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  text-align: left;
  padding-right: 40px;
}
.block-exp .btn span {
  margin-right: 20px;
}
.block-exp .btn svg {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.block-exp_expanded .btn svg {
  -webkit-transform: translateY(-50%) scale(1, -1);
          transform: translateY(-50%) scale(1, -1);
}
@media (max-width: 640px) {
  .block-exp .btn {
    min-height: 50px;
    font-size: 18px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .block-exp .btn {
    font-size: 16px;
  }
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid2__col2 .btn {
  width: 100%;
}
.grid2__col2 .btn:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
  .grid2__col2 {
    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;
  }
  .grid2__col2 .btn {
    width: auto;
  }
  .grid2__col2 .btn:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  .grid2__col2 {
    display: block;
  }
  .grid2__col2 .btn {
    width: 100%;
  }
  .grid2__col2 .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.block-exp-list > *:not(:last-child) {
  margin-bottom: 8px;
}

.block-info1 {
  padding: 80px 20px;
  background-color: rgba(237, 237, 237, 0.5);
}
.block-info1__inner {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

.video-js {
  width: 100%;
  aspect-ratio: 16 / 9;
  pointer-events: none;
}

.slider-catalog .swiper-slide_has-video {
  position: relative;
}

.slider-catalog .swiper-slide_has-video .video-js {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* height: 410px;
  width: auto;
  aspect-ratio: 1010 / 410; */
}

.slider-catalog .video-js {
  /* width: 100%;
  height: 100%;
  aspect-ratio: auto; */
}

.video-js .vjs-control-bar {
  display: none!important;
}

.video-js button.vjs-big-play-button {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 121, 51, 1);
}

.video-js button.vjs-big-play-button {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 121, 51, 1);
}

.video-js.vjs-playing button.vjs-big-play-button {
  display: none;
}

.video-js button.vjs-big-play-button {
  display: none;
}

.video-js .vjs-big-play-button {
  margin: 0;
  margin-left: -25px;
  margin-top: -25px;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  background-color: rgba(0, 121, 51, 0.5);
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  line-height: 50px;
  font-size: 20px;
}

.video-js .vjs-control-bar {
  background-color: rgba(0, 121, 51, 0.5);  
}
.category-card {
  width: 191px;
}
.deleteAll {
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .slider-catalog .swiper-slide_has-video .video-js {
    width: 100%;
    height: 100%;
  }

  .slider-catalog .swiper-slide_has-video .video-js video {
    object-fit: cover;
  }
}

.bx-blue .popup-window-buttons .btn.btn-default {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
	background-color: var(--theme-color-accent);
  cursor: pointer;
}

.popup-window {
  background-color: #FAFAFA;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.popup-window.popup-window-with-titlebar {
  padding: 0 0 40px 0;
}

.popup-window .popup-window-content {
  background: none!important;
}

.popup-window .popup-window-content p {
  margin-top: 20px;
  font-size: 16px;
}

.popup-window .popup-window-titlebar {
  height: auto;
}

.popup-window .popup-window-titlebar-text {
  font-size: 32px;
  padding: 45px 60px 20px 50px;
  color: var(--theme-color-text-common);
}

.video_block_wrap {
  padding: 40px;
}

.video_block_wrap .video_button_call2 {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.video_block_wrap .video_button_call2 img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.video_block_wrap .video_block_code {
  display: none;
}

.card-category {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #fff;
  /* padding: 40px 10px 10px 10px; */
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.card-category__photo {
  display: block;
  width: 100%;
  aspect-ratio: 188 / 188;
  object-fit: contain;
  object-position: center;
  margin-bottom: 20px;
}

.card-category__name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-align: center;
  min-height: 57px;
}

.card-category__name a {
  color: currentcolor;
}

.card-category__name a:hover {
  color: var(--theme-color-accent);
}

.card-category__name a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-grid1 + .old-text {
  margin-top: 40px;
}

.grid-calc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}

.calc-card {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.calc-card_disabled {
  opacity: 0.2;
  pointer-events: none;
}

.calc-card__top {
  width: 100%;
  aspect-ratio: 271 / 168;
}

.calc-card__top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px #E3E3E3 solid;
  border-bottom: none;
}

.calc-card__name {
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-color-text-common);
  color: #fff;
}

.calc-card:not(.calc-card_disabled):hover .calc-card__name {
  background-color: var(--theme-color-accent);
}

.calc-card:not(.calc-card_disabled):hover .calc-card__top img {
  border-color: var(--theme-color-accent);
}

.calc-card__name a {
  color: currentcolor;
}

.calc-card__name a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.calc1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 0;
  width: 100%;
}

.calc-notification {
  padding: 16px 20px;
  border: 1px var(--theme-color-accent) solid;
  font-size: 14px;
  line-height: 1.28;
  color: #212121;
}

.calc-notification_warn {
  border-color: #F43735;
}

.calc1__cell3 {
  padding-left: 20px;
}

.calc-input-group {
  border: 1px #E3E3E3 solid;
  padding: 9px 20px;
  height: 100%;
}

.calc-input-group_warn {
  border-color: #F43735;
}

.calc-input-group_hl {
  background-color: rgb(0, 121, 51, 0.1);
}

.calc-input-group_result {
  cursor: pointer;
  background-color: rgba(227, 227, 227, 0.4);
}

.calc-input-group_result .calc-input-group__label,
.calc-input-group_result .calc-input-group__input {
  cursor: pointer;
}

.calc1__cell2 .calc-input-group {
  border-left: none;
}

.calc1__cell2 .calc-input-group_warn {
  position: relative;
}

.calc1__cell2 .calc-input-group_warn::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 1px #F43735 solid;
}

.calc-input-group__label {
  font-size: 14px;
  display: block;
}

.calc-input-group__label sub {
  font-size: 10px;
}

.calc-input-group__input {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #212121;
  padding: 20px 0 9px 0;
}

.calc-input-group__input::placeholder {
  color: #212121;  
}

.calc-input-group__input:not(:read-only):focus-visible::placeholder {
  color: transparent;  
}

@media (max-width: 768px) {
  .calc-input-group__label,
  .calc-notification {
    font-size: 12px;
  }

  .calc-input-group,
  .calc-notification {
    padding: 10px;
  }

  .calc1__cell3 {
    padding-left: 10px;
  }

  .calc-input-group__input {
    font-size: 18px;
    padding-top: 15px;
  }
}

@media (max-width: 500px) {
  .calc1 {
    grid-template-columns: 1fr 1fr;
  }

  .calc1__cell3 {
    margin-top: -11px;
    padding-left: 0;
    grid-column: span 2;
  }
}

.calc-metal-mobile {
  display: none;
}

.calc-metal-desktop > div {
  margin: 0!important;
}

@media (max-width: 990px) {
  .calc-metal-mobile {
    display: block;
  }

  .calc-metal-desktop {
    display: none;
  }
}

.search-nofound {
  padding: 20px;
  font-size: 16px;
}

.usermenu {
  position: absolute;
  left: -20px;
  top: 35px;
  background-color: #fff;
  border: 1px #E3E3E3 solid;
  width: 235px;
  box-shadow: 0px 0px 14.6px 0px rgba(0, 0, 0, 0.05);
  display: none;
}

.usermenu_active {
  display: block;
}

.usermenu > ul > li:not(:last-child) {
  border-bottom: 1px #E3E3E3 solid;
}

.usermenu > ul > li > a {
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 16px 20px;
  color: #212121;
}

.usermenu > ul > li > a:hover {
  background-color: rgba(181, 181, 181, 0.06);
}

@media (max-width: 1000px) {
  .usermenu {
    width: 200px;
  }
}

.form-loader {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
}
.form-loader_active {
  opacity: 1;
  pointer-events: all;
}

.loader {
  width: 30px;
  padding: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--theme-color-accent);
  -webkit-mask: var(--m);
          mask: var(--m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  -webkit-animation: l3 1s infinite linear;
          animation: l3 1s infinite linear;
  --m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
}

@-webkit-keyframes l3 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes l3 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.text-notification {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 5px;
  font-style: italic;
}

.popup-window.popup-float {
  position: fixed!important;
  top: 50px!important;
  right: max(20px, calc((100% - (var(--container-width) + var(--container-padding) / 2)) / 2));
  left: auto!important;
  width: 367px!important;
  border-radius: 4px!important;
  padding: 20px!important;
  opacity: 0;
  transform: translateX(100%);
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: opacity, transform;
  transition-property: opacity, transform;
  -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
}

.popup-window.popup-float_active {
  opacity: 1;
  transform: translateX(0);
}

.popup-float .popup-window-titlebar {
  display: none;
}

.popup-window-overlay.popup-float {
  display: none!important;
}

.popup-float .popup-window-buttons {
  display: none;
}

.popup-window-with-titlebar.popup-float .popup-window-content {
  padding: 0!important;
}

.popup-float__inner {
  display: flex!important;
  justify-content: flex-start!important;
  align-items: flex-start!important;
  text-align: left!important;
}
.popup-float__inner img {
  width: 95px!important;
  height: auto!important;
  margin-right: 20px!important;
}
.popup-float__inner p {
  margin: 0!important;
  font-size: 14px!important;
  color: #979797!important;
}
.popup-float__inner p span {
  display: block!important;
  margin-bottom: 3px!important;
}

.popup-float__inner p a {
  color: #212121;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
}

.app-header {
  background: rgb(33 130 28);
}

.spec-table2 td img {
  max-width: 1190px;
}

@media (max-width: 1385px) {
  .spec-table2 td img {
    max-width: 700px;
  }
}
@media (max-width: 999px) {
  .spec-table2 td img {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .spec-table2 td img {
    max-width: 300px;
  }
}
@media (max-width:458px) {
  .spec-table2 td img {
    max-width: 150px;
  }
}

.catalog-items-analog-dsc {
  margin-bottom: 20px;
}

.spec-table2 tr td {
  width: 65%;
}

.spec-table2 tr td:last-child {
  width: 35%;
}



.calc.info-grid1 {
  border-top: 0; 
}

.calc .info-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-top: 1px #E3E3E3 solid;
  padding: 0 0 30px;
}

.calc .info-card__photo {
  display: block;
  width: 100%;
  margin-left: 0px;
  margin-bottom: 0px;
  aspect-ratio: 370 / 200;
  position: relative;
}

.calc .info-card__photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  
  object-fit: cover;
}

.calc .info-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.37;
  color: #212121;
  margin-bottom: 0px;
}

.block-highlight.calc {
  font-size: 20px;
  font-weight: 700;
  line-height: 27.24px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 55px;
  margin-top: 50px;
}

.grecaptcha-badge {
  z-index: 10;
}

.video-embed {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
}

.video-lnk {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.bx_filter_parameters_box {
  touch-action: none;
}

.site-hidden {
  display: none;
}

/* t_20694 */
.textblock1 table > caption { margin-bottom: 10px; }
.textblock1 table tbody > tr[style*="background-color: #045f20"] td { padding: 10px; }
.textblock1 table tbody > tr[style*="background-color: #045f20"] td p { margin-bottom: 0; }
.textblock1 table tbody > tr[style*="background-color: #d7d7d7"] td { padding: 10px; }
.table_scroll { overflow-y: auto; }
.table_scroll_con { width: auto; min-width: 920px; position: relative; }
.main-grid.block2 .main-grid__right > img { width: auto; height: auto; max-width: 100%; }

/* t_20494 */
.main-grid__left .filter__inner1 .bx_filter_parameters_box .filter__toggler { max-height: 226px; overflow-y: auto; }

/* t_21069 */
@media (min-width: 1101px) {
  .main-wrapper-outer .main .block-categories.block1 .block-categories__item { flex-grow: 0; min-width: calc(100% / 6); }
  .main-wrapper-outer .main .block-categories.block1.mp_cols_cnt_5 .block-categories__item { min-width: calc(100% / 5); }
  .main-wrapper-outer .main .block-categories.block1.mp_cols_cnt_6 .block-categories__item { min-width: calc(100% / 6); }
  .main-wrapper-outer .main .block-categories.block1.mp_cols_cnt_7 .block-categories__item { min-width: calc(100% / 7); }
}
