.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
  width: auto;
  height: auto;
  overflow: inherit;
}

.lightbox.opacity_0 {
  position: inherit;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lightbox.opacity_0 * {
  display: none;
}

.lightbox_block {
  width: 100vw;
  z-index: 1;
}

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

.lightbox_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-height: 90vh;
}

.lightbox_body .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox_body .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lightbox_body .swiper-slide img {
  max-height: 70vh;
  max-width: 90vw;
}

.lightbox_body .swiper-slide iframe, .lightbox_body .swiper-slide video {
  display: block;
  height: 500px;
  width: 100%;
  max-height: 70vh;
  max-width: 900px;
}

.lightbox_body .swiper-pagination {
  bottom: 5vh;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.lightbox_bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 23, 33, 0.8);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lightbox-button {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 1;
  cursor: pointer;
}

.lightbox-button:hover {
  opacity: .9;
}

.lightbox-button.swiper-button-disabled {
  display: none;
}

.lightbox-button_prev {
  -webkit-transform: scale(-1);
          transform: scale(-1);
  left: 30px;
}

.lightbox-button_next {
  right: 30px;
}

.no_scroll_lightbox {
  overflow: hidden;
}

.burger_lightbox_container {
  width: 100%;
  text-align: center;
}

.burger_lightbox_circle {
  position: fixed;
  top: 20px;
  right: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  -webkit-box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
          box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
  background: #fff;
  cursor: pointer;
}

.burger_lightbox_circle:hover .burger_lightbox {
  -webkit-transform: rotate(135deg) translate(1px, -1px);
          transform: rotate(135deg) translate(1px, -1px);
  -webkit-transition: .25s ease-in;
  transition: .25s ease-in;
}

.burger_lightbox {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger_lightbox::before, .burger_lightbox::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 30px;
  background: #000;
}

.burger_lightbox--active::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 50%;
}

.burger_lightbox--active::after {
  top: 50%;
}

@media screen and (max-width: 780px) {
  .lightbox_body .swiper-slide iframe, .lightbox_body .swiper-slide video {
    max-width: 90vw;
    height: 300px;
  }
  .lightbox-button {
    width: 45px;
    height: 45px;
  }
  .lightbox-button_next {
    right: 14px;
  }
  .lightbox-button_prev {
    left: 14px;
  }
}

.modal_block_right,
.modal_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 0px;
  left: 0;
  -webkit-transition: .4s ease-in;
  transition: .4s ease-in;
  overflow: hidden;
  z-index: 99;
}

.modal_block_right .modal_body,
.modal_block .modal_body {
  padding: 0 30px;
  max-width: 550px;
  width: 100%;
  min-width: 150px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: .25s ease-in;
  transition: .25s ease-in;
}

.modal_block_right .heading,
.modal_block .heading {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

.modal_block_right.modal_block_open,
.modal_block.modal_block_open {
  width: 100vw;
  max-width: inherit;
  height: 100vh;
}

.modal_block_right.modal_block_open .modal_block_bg,
.modal_block.modal_block_open .modal_block_bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(11, 13, 23, 0.5);
  opacity: 1;
  z-index: 1;
  -webkit-transition: .4s ease-in;
  transition: .4s ease-in;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.modal_block_right.modal_block_open .modal_block_bg:hover,
.modal_block.modal_block_open .modal_block_bg:hover {
  background: rgba(11, 13, 23, 0.3);
}

.modal_block_right.modal_block_open .modal_container,
.modal_block.modal_block_open .modal_container {
  position: relative;
  margin: auto;
  z-index: 2;
}

.modal_block_right.modal_block_open form,
.modal_block.modal_block_open form {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.modal_block_right label,
.modal_block label {
  margin-bottom: 20px;
}

.modal_block.big .modal_container {
  max-width: 1105px;
}

.modal_block .modal_container {
  width: 100%;
  max-width: 550px;
}

.modal_block .modal_body {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  -webkit-transform: translateY(50px) scale(0.4);
          transform: translateY(50px) scale(0.4);
  background: none;
  max-width: initial;
}

.modal_block .modal_block_close {
  opacity: 0;
  border-radius: 100px;
}

.modal_block.modal_block_open .modal_block_close {
  top: 0;
  right: inherit;
  opacity: 1;
  -webkit-transition: 0.6s 0.4s;
  transition: 0.6s 0.4s;
}

.modal_block.modal_block_open .modal_body {
  max-height: 90vh;
  overflow: hidden;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.modal_block.modal_block_open .modal_block_bg {
  -webkit-transition: .25s ease-in;
  transition: .25s ease-in;
}

.no_scroll {
  overflow: hidden;
}

.modal_body_scroll {
  position: relative;
  margin-top: 20px;
  padding: 40px 30px 40px;
  background: #fff;
  border-radius: 10px;
  max-width: 1105px;
  width: 100%;
  overflow-y: auto;
}

.modal_block_right .modal_body {
  position: fixed;
  top: 0;
  right: -340px;
  bottom: 0;
  padding: 30px;
  max-width: 340px;
}

.modal_block_right.modal_block_open {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.modal_block_right.modal_block_open .modal_container {
  margin: 0;
}

.modal_block_right.modal_block_open .modal_body {
  right: 0;
}

.burger_circle {
  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;
  border-radius: 100%;
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
          box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
}

.burger_circle:hover .burger_modal {
  -webkit-transform: rotate(135deg) translate(1px, -1px);
          transform: rotate(135deg) translate(1px, -1px);
  -webkit-transition: .25s ease-in;
  transition: .25s ease-in;
}

.burger_modal {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger_modal::before, .burger_modal::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 30px;
}

.burger_modal--active::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 50%;
}

.burger_modal--active::after {
  top: 50%;
}

.modal_block_right .burger_circle {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #2d2d2d;
  width: 35px;
  height: 35px;
}

.modal_block_right .burger_modal {
  width: 16px;
  height: 16px;
}

.modal_block_right .burger_modal::before, .modal_block_right .burger_modal::after {
  background-color: #fff;
}

.modal_block .burger_circle {
  position: relative;
  background-color: #fff;
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.modal_block .burger_modal {
  width: 30px;
  height: 30px;
  color: #000;
}

.modal_block .burger_modal::before, .modal_block .burger_modal::after {
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .modal_block {
    padding: 0;
    padding-top: 60px;
  }
  .modal_block .modal_body {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .modal_block.modal_block_open .modal_container {
    margin: auto auto 0;
    position: fixed;
    bottom: 0;
    max-height: 100vh;
    max-width: inherit;
  }
  .modal_block.modal_block_open .modal_body {
    padding: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    max-height: 85vh;
  }
  .modal_body_scroll {
    border-radius: 30px 30px 0 0;
  }
}

#toast {
  position: fixed;
  bottom: 5px;
  right: 5px;
  max-width: 300px;
  max-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 10px;
  overflow: auto;
  z-index: 1000;
}

#toast
div {
  position: relative;
  padding: 10px 20px;
  padding-bottom: 15px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}

#toast div:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  -webkit-animation: WidthTimeOut 6s;
          animation: WidthTimeOut 6s;
}

#toast
.t-ok {
  background-color: #4caf50;
}

#toast
.t-error {
  background-color: #f44336;
}

#toast
.t-danger {
  background-color: #ff9800;
  color: #000;
}

#toast
.t-info {
  background-color: #03a9f4;
}

@-webkit-keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

:root {
  --color-black: #1B1B1B;
  --color-white: #fff;
  --color-bg: #FAFBFE;
  --color: #2294FE;
  --color-hover: #2245FE;
  --color-red: #DC092E;
  --color-red2: #B2132F;
  --color-green: #70BE71;
  --color2: #708090;
  --color3: #E9EDF5;
  --color4: #D0D5DE;
  --color5: #C1BCC9;
  --color6: rgba(34, 84, 131, 0.8);
  --color7: #292D32;
  --color8: #FFC700;
  --color-shadow: rgba(110, 125, 179, 0.3);
  --burger-height: 24px;
  --burger-width: 30px;
  --burger-line-height: 2px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-appearance: none;
  line-height: 130%;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on;
}

body {
  overflow-anchor: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on;
  background-color: var(--color-bg);
  color: #000;
}

textarea, input, select, option {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.container {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1300px;
}

@media screen and (max-width: 780px) {
  .container {
    padding: 0 15px;
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

select {
  cursor: pointer;
}

option {
  font-family: Arial, Helvetica, sans-serif;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
  text-align: left;
}

table {
  width: 100%;
  color: #666;
  font-size: 14px;
  background: #eaebec;
  border-collapse: separate;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px #d1d1d1;
          box-shadow: 0 1px 2px #d1d1d1;
}

th {
  font-weight: bold;
  padding: 21px 25px 22px 25px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  background: #ededed;
}

th:first-child {
  text-align: left;
  padding-left: 20px;
}

tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

tr {
  text-align: center;
  padding-left: 20px;
}

tr td:first-child {
  text-align: left;
  padding-left: 20px;
  border-left: 0;
}

tr td {
  padding: 18px;
  border-left: 1px solid #e0e0e0;
  background: #e5e8ed;
}

tr:nth-child(even) td {
  background: #f3f4fa;
}

tr:last-child td {
  border-bottom: 0;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}

tr:hover td {
  background: #d8dbe1;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 70px;
  margin: 0;
}

@media screen and (max-width: 780px) {
  body {
    padding-top: 0;
  }
}

body::-webkit-scrollbar {
  width: 12px;
  height: 4px;
  background-color: #dcdcdc;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color);
  border-radius: 2em;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-hover);
}

::-webkit-input-placeholder {
  color: var(--color2);
}

:-ms-input-placeholder {
  color: var(--color2);
}

::-ms-input-placeholder {
  color: var(--color2);
}

::placeholder {
  color: var(--color2);
}

@media screen and (max-width: 780px) {
  #toast {
    right: inherit;
    bottom: inherit;
    top: 5px;
    left: 5px;
    max-height: 25vh;
  }
}

.nullVal {
  border: 1px solid #9a2c2c;
}

input,
textarea,
select {
  display: block;
  padding: 10px;
  background-color: #FFFFFF;
  border: 1px solid var(--color2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  border-radius: 6px;
  color: #000;
}

input:focus,
input .js-focus-visible :focus:not(.focus-visible),
input [data-focus-visible-added],
textarea:focus,
textarea .js-focus-visible :focus:not(.focus-visible),
textarea [data-focus-visible-added],
select:focus,
select .js-focus-visible :focus:not(.focus-visible),
select [data-focus-visible-added] {
  outline: none;
  border: 1px solid var(--color7);
}

label span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--color2);
}

select {
  background: url(../img/icons/arrow_down.svg) no-repeat right 12px center/12px, #fff;
  padding-right: 34px;
}

textarea {
  resize: none;
  overflow: auto;
  vertical-align: top;
}

[type="checkbox"],
[type="radio"] {
  display: block;
  overflow: hidden;
  width: 0;
  height: 0;
  border: none;
}

.checkbox,
.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox p,
.radio p {
  margin: 0;
}

.checkbox-item,
.radio-item {
  position: relative;
  cursor: pointer;
}

.checkbox-item input,
.radio-item input {
  position: absolute;
}

.checkbox-item input:checked ~ .checkbox .check,
.radio-item input:checked ~ .checkbox .check {
  background: url("../img/icons/check.svg") no-repeat center/contain, #fff;
}

.checkbox-item input:checked ~ .checkbox .check-text,
.radio-item input:checked ~ .checkbox .check-text {
  color: #000;
}

.checkbox-item input:checked ~ .radio .check,
.radio-item input:checked ~ .radio .check {
  background: url("../img/icons/radio.svg") no-repeat center/contain, #fff;
}

.checkbox-item input:checked ~ .radio .check-text,
.radio-item input:checked ~ .radio .check-text {
  color: #000;
}

.checkbox-item:hover .check,
.radio-item:hover .check {
  -webkit-box-shadow: 0 0 0 2px #11addea6;
          box-shadow: 0 0 0 2px #11addea6;
  border-color: #11addea6;
}

.checkbox .check,
.radio .check {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #6D7783;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.checkbox .check-text,
.radio .check-text {
  display: inline-block;
  margin-left: 14px;
  font-size: 16px;
}

.radio .check {
  border-radius: 100%;
}

h1,
.h1 {
  font-weight: bold;
  font-size: 48px;
  margin: 0.67em 0 0.4em;
}

@media screen and (max-width: 1200px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}

@media screen and (max-width: 780px) {
  h1,
  .h1 {
    font-size: 28px;
  }
}

h2,
.h2 {
  font-weight: bold;
  font-size: 38px;
  margin: 0.83em 0 0.5em;
}

@media screen and (max-width: 1200px) {
  h2,
  .h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 780px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}

h3,
.h3 {
  font-weight: bold;
  font-size: 32px;
  margin: 0.7em 0 0.5em;
}

@media screen and (max-width: 1200px) {
  h3,
  .h3 {
    font-size: 26px;
  }
}

@media screen and (max-width: 780px) {
  h3,
  .h3 {
    font-weight: 600;
    font-size: 23px;
  }
}

h4,
.h4 {
  font-weight: bold;
  font-size: 28px;
  margin: 1.33em 0;
}

@media screen and (max-width: 1200px) {
  h4,
  .h4 {
    font-size: 24px;
  }
}

@media screen and (max-width: 780px) {
  h4,
  .h4 {
    font-weight: 600;
    font-size: 20px;
  }
}

p {
  color: var(--color2);
}

.burger {
  width: var(--burger-width);
  height: var(--burger-height);
  position: relative;
  color: #000;
  cursor: pointer;
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 30px;
}

.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 30px;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - var(--burger-line-height));
}

@media screen and (min-width: 1201px) {
  .burger:hover::before {
    top: 25%;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .burger:hover .burger__line {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .burger:hover::after {
    top: 75%;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}

.burger--no-active:hover::before, .burger--no-active:hover::after {
  left: 0;
}

.burger--no-active:hover::before {
  top: 0;
}

.burger--no-active:hover::after {
  top: calc(100% - var(--burger-line-height));
}

.burger--no-active:hover .burger__line {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger--active .burger__line {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 50%;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 50%;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active:hover::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 50%;
}

.burger--active:hover::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 50%;
}

.w-100 {
  width: 100%;
}

.padding-auto {
  padding: 60px 0;
}

@media screen and (max-width: 780px) {
  .padding-auto {
    padding: 20px 0;
  }
}

.btn,
button,
input[type="submit"],
.product-count_btn {
  display: inline-block;
  color: #fff;
  background: var(--color);
  border-radius: 6px;
  padding: 8px 28px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
.product-count_btn:hover {
  background-color: var(--color-hover);
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.btn.no-btn,
button.no-btn,
input[type="submit"].no-btn,
.product-count_btn.no-btn {
  background: var(--color2);
}

.btn.no-btn:hover,
button.no-btn:hover,
input[type="submit"].no-btn:hover,
.product-count_btn.no-btn:hover {
  background-color: #4a545e;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

@media screen and (max-width: 1200px) {
  .btn,
  button,
  input[type="submit"],
  .product-count_btn {
    padding: 8px 21px;
    font-size: 16px;
  }
}

.text_block img,
.text_block iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 450px;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.text_block iframe {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 780px) {
  .text_block iframe {
    height: 280px;
  }
}

.modal_block[data-modaliframe="iframe_map"] .modal_container {
  max-width: 90vw;
}

@media screen and (max-width: 780px) {
  .modal_block[data-modaliframe="iframe_map"] .modal_body_scroll {
    padding: 0;
  }
  .modal_block[data-modaliframe="iframe_map"] .modal_container {
    max-width: 100vw;
  }
}

.video {
  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;
  height: 176px;
  border-radius: 20px;
  cursor: pointer;
}

.video img {
  width: 60px;
  border-radius: 6px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.video span {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}

.video:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.34);
          box-shadow: 0 6px 10px rgba(0, 0, 0, 0.34);
}

.video:hover span {
  opacity: .9;
}

.video_block .video {
  height: 400px;
  border-radius: 10px;
}

@media screen and (max-width: 1200px) {
  .video_block .video {
    height: 300px;
  }
}

@media screen and (max-width: 780px) {
  .video_block .video {
    height: 200px;
  }
}

.video_block .video img {
  width: 120px;
}

@media screen and (max-width: 1200px) {
  .video_block .video img {
    width: 90px;
  }
}

@media screen and (max-width: 780px) {
  .video_block .video img {
    width: 70px;
  }
}

.btn-circle {
  width: 36px;
  height: 36px;
  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;
  border-radius: 100%;
  background: var(--color);
  color: #fff;
  font-weight: bold;
  font-size: 21px;
  cursor: pointer;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.btn-circle:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.btn-circle span {
  position: absolute;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
  overflow-y: auto;
  font-weight: 500;
  color: var(--color2);
}

.breadcrumbs a {
  color: var(--color7);
}

.breadcrumbs a:hover {
  color: var(--color-hover);
}

.breadcrumbs > span {
  max-width: 240px;
  margin: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.dot {
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 100%;
}

.modal_block_right .burger_circle {
  opacity: 0;
  -webkit-transition: .2s .4s;
  transition: .2s .4s;
}

.modal_block_right.modal_block_open .burger_circle {
  position: fixed;
  opacity: 1;
  z-index: 1;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 16;
}

@media screen and (max-width: 780px) {
  #header {
    position: initial;
  }
}

#header .search-form {
  margin-top: 0;
}

#header input {
  border: 1px solid var(--color4);
}

#header input:focus {
  border: 1px solid var(--color2);
}

#header input::-webkit-input-placeholder {
  color: var(--color4);
}

#header input:-ms-input-placeholder {
  color: var(--color4);
}

#header input::-ms-input-placeholder {
  color: var(--color4);
}

#header input::placeholder {
  color: var(--color4);
}

.header_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px var(--color-shadow);
          box-shadow: 0px 0px 20px var(--color-shadow);
  z-index: 1;
}

@media screen and (max-width: 780px) {
  .header_pc {
    display: none;
  }
}

@media screen and (max-width: 970px) {
  .header_pc .search-form {
    display: none;
  }
}

.header_container {
  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;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1600px;
}

@media screen and (max-width: 780px) {
  .header_container {
    padding: 0 15px;
  }
}

.header__left-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}

.header__left-block .nav-catalog {
  margin-left: 70px;
  margin-right: 30px;
}

@media screen and (max-width: 1200px) {
  .header__left-block .nav-catalog {
    margin-left: 30px;
    margin-right: 20px;
  }
}

.header_mobile {
  background-color: var(--color-bg);
}

@media screen and (min-width: 781px) {
  .header_mobile {
    display: none;
  }
}

@media screen and (max-width: 780px) {
  .header_mobile.fixed-mobile {
    padding-bottom: 65px;
  }
}

.header__right-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr 1fr;
      grid-template-columns: auto 1fr 1fr;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__right-block-mobile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-mobile-top {
  height: 65px;
}

.header-mobile-bottom {
  height: 65px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px var(--color-shadow);
          box-shadow: 0px 0px 20px var(--color-shadow);
}

.header-mobile-bottom.fixed-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.logo img {
  width: 38px;
  height: 38px;
}

.logo-text {
  margin-left: 18px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 1200px) {
  .logo-text {
    display: none;
  }
}

a.logo:hover .logo-text {
  color: var(--color2);
}

a.logo:hover img {
  opacity: .8;
}

.nav-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@media screen and (max-width: 780px) {
  .nav-catalog {
    padding: 7px 14px;
  }
}

.nav-catalog .burger {
  height: 18px;
  width: 22px;
}

.nav-catalog .burger::before, .nav-catalog .burger::after,
.nav-catalog .burger span {
  background-color: #fff;
}

.nav-catalog__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-left: 6px;
}

@media screen and (min-width: 971px) {
  .search-form_block {
    display: none;
  }
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 500px;
}

@media screen and (max-width: 1200px) {
  .search-form {
    margin-top: 20px;
    max-width: inherit;
  }
  .search-form input {
    background: none;
    height: 40px;
  }
}

.search-form button {
  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;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: none;
  padding: 8px;
}

.search-form button img {
  width: 20px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.search-form button:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.search-input {
  width: 100%;
  padding: 12px;
  padding-right: 36px;
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 780px) {
  .search-input {
    padding: 10px 12px;
    padding-right: 36px;
  }
}

.contact-info {
  position: relative;
}

.contact-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
}

.contact-main a:hover {
  color: var(--color2);
}

.contact-main a:hover img {
  opacity: .7;
}

.contact-main img {
  width: 28px;
  height: 28px;
}

.contact_time {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: var(--color2);
}

.arrow_down {
  position: relative;
  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;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.arrow_down::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  border: 7px solid transparent;
  border-top: 7px solid #000;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.arrow_down:hover {
  background-color: var(--color3);
}

.arrow_down:hover::before {
  -webkit-transform: translateY(-25%) scale(0.8);
          transform: translateY(-25%) scale(0.8);
}

a.header__btn {
  color: var(--color);
}

.header__btn {
  padding: 5px;
  display: -ms-grid;
  display: grid;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}

.header__btn div {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}

.header__btn:hover {
  background-color: var(--color3);
}

.bag-count {
  position: absolute;
  top: 6px;
  right: 0;
  padding: 1px 4px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background-color: var(--color-red);
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 2px rgba(90, 91, 106, 0.24), 0px 0px 2px #DC092E;
          box-shadow: 0px 2px 2px rgba(90, 91, 106, 0.24), 0px 0px 2px #DC092E;
}

.modal__down,
.contact-col {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  z-index: 6;
}

.modal__down-body,
.contact-col-body {
  width: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content;
      grid-template-columns: -webkit-max-content;
      grid-template-columns: max-content;
  gap: 6px;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 20px var(--color-shadow);
          box-shadow: 0px 0px 20px var(--color-shadow);
  background: #fff;
  border-radius: 6px;
  z-index: 2;
}

.modal__down_bg,
.contact-col_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
}

.modal__down.modal_block_open,
.contact-col.modal_block_open {
  max-height: inherit;
  opacity: 1;
  overflow: inherit;
  -webkit-transition: opacity .2s .2s ease-in;
  transition: opacity .2s .2s ease-in;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.modal__down.modal_block_open .modal__down_bg,
.contact-col.modal_block_open .modal__down_bg {
  display: block;
}

.modal__down a,
.contact-col a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__down .contact__number,
.contact-col .contact__number {
  font-size: 18px;
}

.modal__down .contact-link,
.contact-col .contact-link {
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.modal__down .contact-link:hover,
.contact-col .contact-link:hover {
  color: var(--color2);
}

.modal__down .contact-link:hover img,
.contact-col .contact-link:hover img {
  opacity: .7;
}

.modal__down .contact-link img,
.contact-col .contact-link img {
  width: 18px;
  height: 18px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.contact-col {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  position: initial;
  max-height: inherit;
  overflow: inherit;
  opacity: 1;
  height: inherit;
}

.contact-col .btn {
  display: block;
  font-weight: 600;
}

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

.contact-viber a:last-child {
  margin-left: 6px;
}

.contact-viber a:last-child img {
  width: 24px;
  height: 24px;
}

.modal_nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  overflow: hidden;
  z-index: 15;
}

@media screen and (max-width: 780px) {
  .modal_nav {
    top: 0;
  }
  .modal_nav .contact-col-parent {
    display: none;
  }
}

.modal_nav .modal_body {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  gap: 100px;
}

@media screen and (max-width: 780px) {
  .modal_nav .modal_body {
    gap: 0;
  }
}

.modal_nav .modal_body li.open-links {
  position: relative;
}

.modal_nav .modal_body li.open-links a {
  position: relative;
  z-index: 0;
}

.modal_nav .modal_body .modal-category-link .arrow-right {
  display: none;
}

@media screen and (min-width: 781px) {
  .modal_nav .modal_body .modal-category-link .arrow-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
  }
}

.modal_nav .modal_body .arrow-right {
  display: none;
}

@media screen and (max-width: 780px) {
  .modal_nav .modal_body .arrow-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--color3);
  }
}

.modal_nav .modal_body .contact-col {
  width: 100%;
}

.modal_nav .modal_container {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(-140px);
          transform: translateY(-140px);
  -webkit-transition: .4s;
  transition: .4s;
}

@media screen and (max-width: 780px) {
  .modal_nav .container {
    height: calc(100% - 60px);
  }
}

.modal_nav.modal_block_open {
  height: inherit;
  overflow: inherit;
}

.modal_nav.modal_block_open .modal_container {
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 780px) {
  .modal_nav.modal_block_open .modal_container {
    height: 100%;
  }
}

.modal_nav.modal_block_open .modal_block_bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  cursor: pointer;
  background-color: var(--color-shadow);
}

.modal_nav.modal_block_open ul {
  margin: 0;
}

.modal_nav .burger_circle {
  display: none;
  margin-left: auto;
  background-color: #2d2d2d;
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
}

.modal_nav .burger_circle .burger_modal {
  width: 16px;
  height: 16px;
}

.modal_nav .burger_circle .burger_modal::before, .modal_nav .burger_circle .burger_modal::after {
  background-color: #fff;
}

@media screen and (max-width: 780px) {
  .modal_nav .burger_circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.back-tab {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--color3);
  border-radius: 6px;
  cursor: pointer;
}

@media screen and (max-width: 780px) {
  .back-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
  }
}

.back-tab::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 5px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  overflow-y: auto;
}

@media screen and (min-width: 781px) {
  .nav-links {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}

.nav-links a {
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.nav-links a:hover {
  color: var(--color-hover);
}

.open-links {
  display: -ms-grid;
  display: grid;
  width: 100%;
  gap: 4px;
  background: #ffffff00;
  -webkit-box-shadow: 0px 2px 2px rgba(110, 125, 179, 0), 0px 0px 20px rgba(110, 125, 179, 0);
          box-shadow: 0px 2px 2px rgba(110, 125, 179, 0), 0px 0px 20px rgba(110, 125, 179, 0);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

li.open-links {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media screen and (min-width: 781px) {
  li.open-links:hover, li.open-links.active-link {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 2px rgba(110, 125, 179, 0.3), 0px 0px 20px rgba(110, 125, 179, 0.3);
            box-shadow: 0px 2px 2px rgba(110, 125, 179, 0.3), 0px 0px 20px rgba(110, 125, 179, 0.3);
  }
}

@media screen and (max-width: 780px) {
  li.open-links {
    -ms-grid-columns: 1fr 40px;
        grid-template-columns: 1fr 40px;
    -webkit-box-shadow: inset 0 0 0 2px var(--color3);
            box-shadow: inset 0 0 0 2px var(--color3);
  }
}

a.open-links {
  -ms-grid-columns: 1fr 40px;
      grid-template-columns: 1fr 40px;
  border-radius: 0;
}

a.open-links:hover {
  color: var(--color);
}

a.open-links:hover .arrow-right::before {
  -webkit-transform: rotate(225deg) translate3d(-2px, 2px, 0);
          transform: rotate(225deg) translate3d(-2px, 2px, 0);
}

.arrow-right {
  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;
  border-radius: 6px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.arrow-right::before {
  content: '';
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-left: 2px solid #708090;
  border-bottom: 2px solid #708090;
  border-radius: 2px;
  -webkit-transform: rotate(225deg) translate3d(2px, -2px, 0);
          transform: rotate(225deg) translate3d(2px, -2px, 0);
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.modal-category.modal-category-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 4px;
  padding-right: 0;
}

.modal-category.modal-category-link div {
  width: 55px;
  height: 37px;
  margin-right: 6px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  overflow: hidden;
}

.modal-category.modal-category-link span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.modal-category.modal-category-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-block_links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
      grid-template-columns: 300px 1fr;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .modal-block_links {
    -ms-grid-columns: 244px 1fr;
        grid-template-columns: 244px 1fr;
  }
}

@media screen and (max-width: 780px) {
  .modal-block_links {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    height: 100%;
    overflow: auto;
    padding-bottom: 40px;
  }
}

.modal-block_links ul {
  padding: 0;
  list-style-type: none;
}

.menu-block {
  background: #fff;
}

@media screen and (min-width: 781px) {
  .menu-block {
    height: 50vh;
    overflow-y: auto;
  }
}

.menu-block.open-links-modal {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (max-width: 780px) {
  .menu-block {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 15px;
    overflow: auto;
    z-index: 14;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
}

.menu-block-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -ms-grid-rows: max-content;
      grid-template-rows: -webkit-max-content;
      grid-template-rows: max-content;
  gap: 20px;
  height: auto;
  overflow: hidden;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity .6s, -webkit-transform .3s;
  transition: opacity .6s, -webkit-transform .3s;
  transition: opacity .6s, transform .3s;
  transition: opacity .6s, transform .3s, -webkit-transform .3s;
}

@media screen and (max-width: 780px) {
  .menu-block-links {
    overflow-y: auto;
    max-height: calc(100% - 74px);
  }
}

.menu-block-links.hidden-links {
  height: 0;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.menu-modal {
  display: -ms-grid;
  display: grid;
  gap: 6px;
}

.sub_menu-block-links {
  display: -ms-grid;
  display: grid;
  padding-top: 14px !important;
  border-top: 2px solid var(--color2);
}

.sub_menu-block-links a {
  display: block;
  padding: 5px 0;
}

.sub_menu-block-links a:hover {
  color: var(--color);
}

.contact-col-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 700;
}

.basket_modal .heading,
.fast-view-modal .heading {
  padding: 0 15px;
}

.basket_modal .modal_body,
.fast-view-modal .modal_body {
  max-width: 360px;
  right: -360px;
  padding: 0;
  padding-top: 20px;
}

.basket_modal .modal_body_scroll,
.fast-view-modal .modal_body_scroll {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.basket_modal .basket_info-top,
.basket_modal .fast-view_block_top,
.fast-view-modal .basket_info-top,
.fast-view-modal .fast-view_block_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px;
}

.basket_modal .basket_info__right,
.basket_modal .fast-view_block_right,
.fast-view-modal .basket_info__right,
.fast-view-modal .fast-view_block_right {
  display: -ms-grid;
  display: grid;
  overflow-x: auto;
  justify-items: end;
  overflow-x: auto;
}

.basket_modal .basket_info__right .price-old,
.basket_modal .fast-view_block_right .price-old,
.fast-view-modal .basket_info__right .price-old,
.fast-view-modal .fast-view_block_right .price-old {
  text-decoration: inherit;
}

.basket_modal .basket_info__right .price-old span,
.basket_modal .fast-view_block_right .price-old span,
.fast-view-modal .basket_info__right .price-old span,
.fast-view-modal .fast-view_block_right .price-old span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: var(--color8);
}

.basket_modal .fast-view_block_right .price-old,
.fast-view-modal .fast-view_block_right .price-old {
  text-decoration: line-through;
}

.basket_modal .total,
.fast-view-modal .total {
  font-size: 20px;
  font-weight: 500;
  color: var(--color7);
}

.basket_modal .price,
.fast-view-modal .price {
  font-weight: 700;
  font-size: 26px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  white-space: nowrap;
}

.basket_modal .price-old,
.fast-view-modal .price-old {
  text-decoration: line-through;
  font-size: 18px;
  color: var(--color2);
  margin-left: 8px;
}

.basket_modal .basket_info,
.basket_modal .fast-view_info,
.fast-view-modal .basket_info,
.fast-view-modal .fast-view_info {
  padding: 15px;
  border-top: 1px solid #bcc1c7;
}

.basket_modal .basket-list,
.basket_modal .fast-view_block,
.fast-view-modal .basket-list,
.fast-view-modal .fast-view_block {
  padding: 20px 15px;
  overflow: auto;
}

.basket_modal .basket-list .price,
.basket_modal .fast-view_block .price,
.fast-view-modal .basket-list .price,
.fast-view-modal .fast-view_block .price {
  margin-bottom: 0;
}

.basket_modal .basket_info-btn,
.fast-view-modal .basket_info-btn {
  font-weight: 700;
}

.basket_modal .product,
.fast-view-modal .product {
  padding: 0;
  border-radius: 10px;
  gap: 10px;
  margin-bottom: 20px;
}

.basket_modal .product:last-child,
.fast-view-modal .product:last-child {
  margin-bottom: 0;
}

.basket_modal .product .price_block,
.fast-view-modal .product .price_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  border-radius: 10px;
}

.product img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.product .product-img {
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .product .product-img {
    margin-right: 10px;
  }
}

.product a.product-img:hover img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.product-block {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.product-flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 1fr;
      grid-template-columns: 20% 1fr;
  gap: 20px;
}

.product-name {
  font-weight: 700;
  font-size: 16px;
}

.product-name:hover {
  color: var(--color);
}

.product .delete {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  padding: 4px;
  cursor: pointer;
  opacity: .75;
}

.product .delete:hover {
  background-color: var(--color3);
  opacity: 1;
}

.product-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product .price-old {
  font-size: 14px;
}

.product-link .img-product {
  height: 186px;
}

@media screen and (max-width: 1200px) {
  .product-link .img-product {
    height: 124px;
  }
}

.product-count {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 28px 40px 28px;
      grid-template-columns: 28px 40px 28px;
  -ms-grid-rows: 28px;
      grid-template-rows: 28px;
  gap: 6px;
}

.product-count_btn {
  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;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.product-count_minus::after {
  content: '-';
  position: absolute;
  top: 50%;
  font-weight: 700;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  font-weight: 700;
}

.product-count_num {
  text-align: center;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.product-count_plus::after {
  content: '+';
  position: absolute;
  top: 50%;
  font-weight: 700;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  font-weight: 700;
}

.price_block .price {
  font-weight: 700;
  font-size: 19px;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 5px;
}

.price_block .price-old {
  font-weight: 700;
  font-size: 16px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: var(--color2);
  line-height: 100%;
  white-space: nowrap;
}

.form-block {
  display: -ms-grid;
  display: grid;
}

.form-block button {
  margin-top: 20px;
  font-weight: 700;
  padding: 14px;
}

.home-slider_block {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.home-slider_small_block {
  width: 30%;
  position: absolute;
  bottom: 0;
  right: 50px;
}

@media screen and (max-width: 780px) {
  .home-slider_small_block {
    width: 240px;
    right: inherit;
    left: 25px;
  }
}

.home-slider {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.home-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 360px;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
}

.home-slider .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-slider .swiper-slide .btn {
  display: inline-block;
  margin-top: 30px;
}

@media screen and (max-width: 780px) {
  .home-slider .swiper-slide .btn {
    margin-top: 0;
  }
}

.home-slider .slide-text-info {
  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;
  padding: 20px 30px;
  position: relative;
  background: var(--color6);
  width: calc(50% - 180px);
}

@media screen and (max-width: 1200px) {
  .home-slider .slide-text-info {
    width: 50%;
  }
}

@media screen and (max-width: 780px) {
  .home-slider .slide-text-info {
    margin: 68px 15px 100px;
    width: 100%;
    border-radius: 20px;
    padding: 30px 15px;
  }
}

.home-slider .slide-text-info .triangle {
  position: absolute;
  top: 0;
  right: -130px;
  height: 100%;
  width: 130px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: var(--color6);
}

@media screen and (max-width: 780px) {
  .home-slider .slide-text-info .triangle {
    display: none;
  }
}

.home-slider_small {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-slider_small .swiper-slide {
  width: 96px;
  height: 74px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  cursor: pointer;
}

@media screen and (max-width: 780px) {
  .home-slider_small .swiper-slide {
    width: 70px;
    height: 70px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.home-slider_small .swiper-slide.swiper-slide-thumb-active {
  -webkit-box-shadow: 0px 0px 20px rgba(45, 52, 75, 0.6);
          box-shadow: 0px 0px 20px rgba(45, 52, 75, 0.6);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.home-slider_small .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heading_slide-text {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
}

@media screen and (max-width: 780px) {
  .heading_slide-text {
    font-size: 28px;
  }
}

.slide_p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.slide-data {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  background-color: rgba(7, 33, 50, 0.8);
  border-radius: 10px;
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
}

@media screen and (max-width: 780px) {
  .slide-data {
    top: 15px;
    right: 15px;
    font-weight: 700;
    font-size: 18px;
  }
}

.heading_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 780px) {
  .heading_block {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

.heading_block a {
  font-weight: 600;
  color: var(--color);
}

.heading_block a:hover {
  color: var(--color-hover);
}

.heading_block .h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 0;
}

@media screen and (max-width: 780px) {
  .heading_block .h2 {
    margin-top: 7px;
    width: 100%;
  }
}

.heading_block .h2 img {
  width: 33px;
  height: 33px;
  margin-left: 6px;
  vertical-align: bottom;
}

@media screen and (max-width: 780px) {
  .heading_block .h2 img {
    width: 26px;
    height: 26px;
  }
}

.product-flex {
  padding: 10px 6px;
}

.products-list_block {
  position: relative;
}

.products-list_block .hit-fire {
  position: absolute;
  top: 0;
  left: -118px;
}

.products-list_block .product {
  position: relative;
}

.products-list_block .product-flex {
  -ms-grid-columns: 185px 1fr 33px;
      grid-template-columns: 185px 1fr 33px;
  gap: 0;
}

@media screen and (max-width: 1200px) {
  .products-list_block .product-flex {
    -ms-grid-columns: 150px 1fr 26px;
        grid-template-columns: 150px 1fr 26px;
  }
}

.products-list_block .product-flex > .product-top {
  display: none;
}

@media screen and (max-width: 1200px) {
  .products-list_block .product-flex > .product-top {
    display: block;
  }
}

.products-list_block .product-block {
  margin-left: 10px;
  margin-right: 7px;
}

@media screen and (max-width: 1200px) {
  .products-list_block .product-block {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
    margin-left: 0;
    margin-top: 10px;
  }
}

@media screen and (max-width: 780px) {
  .products-list_block .product-block .product-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 1200px) {
  .products-list_block .product-block .product-top {
    display: none;
  }
}

.products-list_block .product-text {
  margin-top: 10px;
  max-height: 70px;
  overflow: auto;
}

.products-list_block .product-text p {
  margin: 0;
  color: var(--color7);
}

@media screen and (max-width: 780px) {
  .products-list_block .product-text p {
    font-size: 14px;
  }
}

.products-list_block .product-text span {
  color: var(--color2);
}

.products-list_block .product-name {
  margin-top: 3px;
  font-weight: 700;
  font-size: 16px;
}

.products-list_block .product-count {
  -ms-grid-columns: 36px 50px 36px;
      grid-template-columns: 36px 50px 36px;
  -ms-grid-rows: 36px;
      grid-template-rows: 36px;
}

@media screen and (max-width: 1200px) {
  .products-list_block .product-count {
    -ms-grid-columns: 28px 40px 28px;
        grid-template-columns: 28px 40px 28px;
  }
}

.products-list_block .product-img {
  overflow: inherit;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.products-list_block .product-img .fast-view {
  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;
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 5px;
  padding: 6px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  background: #E9EDF5;
  -webkit-box-shadow: 0px 4px 20px #B5C3DF;
          box-shadow: 0px 4px 20px #B5C3DF;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  z-index: 1;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.products-list_block .product-img .fast-view:hover {
  background: var(--color4);
  -webkit-box-shadow: 0px 4px 20px #b5c3dfb8;
          box-shadow: 0px 4px 20px #b5c3dfb8;
}

.products-list_block .product-img .fast-view img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1200px) {
  .products-list_block .product-img .fast-view {
    display: none;
  }
}

.products-list_block .product-img:hover .fast-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.products-list_block .price_block {
  text-align: right;
}

.products-list_block .price {
  font-size: clamp(21px, 1.4vw, 26px);
}

@media screen and (max-width: 780px) {
  .products-list_block .price {
    font-size: clamp(18px, 1.4vw, 26px);
  }
}

.products-list_block .price-old {
  font-size: 18px;
  line-height: 120%;
}

@media screen and (max-width: 780px) {
  .products-list_block .price-old {
    font-size: 16px;
  }
}

.products-list_block .product-right-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 1200px) {
  .products-list_block .product-right-col {
    -ms-grid-row: 1;
        grid-row-start: 1;
    grid-row-end: 3;
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
}

.products-list_block .product-count_num {
  font-size: 16px;
}

.products-list_block .product-count_btn {
  font-size: 25px;
}

.products-list_block .swiper-pagination {
  bottom: -40px;
}

@media screen and (max-width: 780px) {
  .products-list_block .swiper-pagination {
    bottom: -20px;
  }
}

.products-list_block .btn {
  padding: 8px 13px;
}

.swiper-pagination-bullet-active {
  background-color: var(--color7);
}

.product-right-video {
  cursor: pointer;
}

.product-right-video:hover img {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

.product-right-video img {
  width: 33px;
  height: 33px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

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

.availability.no-availability .availability-color {
  background: var(--color-red);
}

.availability .availability-color {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #70BE71;
  border-radius: 25px;
  margin-right: 6px;
}

.availability-text {
  color: var(--color2);
}

.product-sale {
  position: absolute;
  top: 0;
  left: -15px;
}

.product-sale:after {
  content: '';
  position: relative;
  top: 8px;
  width: 0;
  height: 0;
  border-top: 8px solid var(--color-red2);
  border-left: 8px solid transparent;
}

.product-sale .product-sale-text {
  padding: 4px 8px 4px 18px;
  border-radius: 5px 5px 5px 0px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: var(--color-red);
}

@media screen and (max-width: 780px) {
  .product-sale .product-sale-text {
    padding: 2px 8px 2px 14px;
    font-size: 16px;
  }
}

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

.buy-click {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5px;
  padding: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #2294FE;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  cursor: pointer;
}

.buy-click img {
  width: 25px;
  height: 25px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.buy-click:hover img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.arrow-slider {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  border-radius: 1000px;
  cursor: pointer;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.arrow-slider img {
  width: 44px;
  height: 44px;
}

@media screen and (max-width: 780px) {
  .arrow-slider {
    width: 36px;
    height: 36px;
  }
  .arrow-slider img {
    width: 36px;
    height: 36px;
  }
}

.arrow-slider:hover {
  opacity: .9;
  -webkit-box-shadow: 0px 0px 20px #6e7db3;
          box-shadow: 0px 0px 20px #6e7db3;
}

.arrow-slider.swiper-button-disabled {
  display: none;
}

.arrow-slider-prev {
  -webkit-transform: scale(-1) translateY(50%);
          transform: scale(-1) translateY(50%);
  left: -22px;
}

@media screen and (max-width: 780px) {
  .arrow-slider-prev {
    left: -12px;
  }
}

.arrow-slider-next {
  left: auto;
  right: -22px;
}

@media screen and (max-width: 780px) {
  .arrow-slider-next {
    right: -12px;
  }
}

.products-list_slider .swiper-slide {
  width: calc(50% - 20px);
  margin-right: 20px;
}

@media screen and (max-width: 780px) {
  .products-list_slider .swiper-slide {
    width: 100%;
  }
}

.burger_lightbox_container {
  z-index: 9;
}

.modal_block_right .heading,
.modal_block .heading {
  margin-bottom: 20px;
}

.empty-cart {
  font-size: 18px;
}

.fast-view-modal .product-count {
  -ms-grid-columns: 36px 50px 36px;
      grid-template-columns: 36px 50px 36px;
  -ms-grid-rows: 36px;
      grid-template-rows: 36px;
}

@media screen and (max-width: 1200px) {
  .fast-view-modal .product-count {
    -ms-grid-columns: 28px 40px 28px;
        grid-template-columns: 28px 40px 28px;
  }
}

.product-img-slider {
  height: 270px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--color2);
}

.product-img-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.product-img-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.product-img-slider .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product-img-slider_small {
  height: 62px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

.product-img-slider_small .swiper-slide {
  height: 60px;
  width: 30%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-box-shadow: 0 0 0px 1px var(--color), 0px 0px 20px rgba(110, 125, 179, 0);
          box-shadow: 0 0 0px 1px var(--color), 0px 0px 20px rgba(110, 125, 179, 0);
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.product-img-slider_small .swiper-slide.swiper-slide-thumb-active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-box-shadow: 0 0 0px 1px var(--color2), 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0 0 0px 1px var(--color2), 0px 0px 20px rgba(110, 125, 179, 0.3);
}

.product-img-slider_small .swiper-slide.swiper-slide-thumb-active.video-modal {
  -webkit-box-shadow: 0 0 0px 0px var(--color), 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0 0 0px 0px var(--color), 0px 0px 20px rgba(110, 125, 179, 0.3);
}

.product-img-slider_small .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-img-slider_small .arrow-slider {
  width: 30px;
  height: 30px;
}

.product-img-slider_small .arrow-slider img {
  width: 30px;
  height: 30px;
}

.product-img-slider_small .arrow-slider-next {
  right: 2px;
}

.product-img-slider_small .arrow-slider-prev {
  left: 2px;
}

.fast-view-modal .modal_body {
  max-width: 450px;
  right: -450px;
}

.fast-view-modal .fast-view_block > svg {
  width: 100%;
}

.fast-view-modal .fast-view_block .heading {
  text-align: left;
  font-size: 24px;
  padding: 0;
}

.fast-view-modal .specifications_block {
  margin-top: 20px;
}

.specifications_container {
  padding: 0;
}

.specifications_container li {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px dashed #B7C3CF;
  list-style-type: none;
}

.specifications_container li:last-child {
  border-bottom: none;
}

.specification_name {
  color: #708090;
}

.specification_value {
  color: #292D32;
}

.fast-view_info .sub_product_bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr calc(39px + 5px);
      grid-template-columns: 1fr calc(39px + 5px);
}

.fast-view_info .sub_product_bottom .btn {
  width: 100%;
}

.video-modal {
  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;
}

.video-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 148, 254, 0.6);
  z-index: 1;
}

.video-modal::after {
  content: '';
  position: absolute;
  width: clamp(30px, 20%, 50px);
  height: clamp(30px, 20%, 50px);
  -webkit-transform: scale(1);
          transform: scale(1);
  background: url(../img/icons/icons_page/play.svg) no-repeat center/contain;
  z-index: 2;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.video-modal:hover::after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.cat_products_block {
  background: #E9EDF5;
  padding: 40px 0;
  margin-top: 60px;
}

.cat_products_block.cat_page {
  padding: 0;
  margin-top: 40px;
  background: none;
}

.cat_products_block .heading_block {
  margin: 0;
}

.cat_products_block .cat_products {
  position: relative;
  padding: 20px 0 40px;
}

@media screen and (max-width: 780px) {
  .cat_products_block .cat_products {
    padding: 30px 0 40px;
  }
  .cat_products_block .cat_products span {
    font-size: 15px;
  }
}

.cat_products_block .cat_product {
  width: 170px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  border-radius: 10px;
  font-weight: 600;
  margin-right: 20px;
}

.cat_products_block .cat_product.swiper-slide-active, .cat_products_block .cat_product:hover {
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.6), 0px 17px 20px -8px rgba(110, 125, 179, 0.8);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.6), 0px 17px 20px -8px rgba(110, 125, 179, 0.8);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_products_block .cat_products-link {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 30px;
  padding: 34px 4px;
}

.cat_products_block .cat_products-link div {
  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: 120px;
  height: 80px;
  overflow: hidden;
}

.cat_products_block .cat_products-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sales-products_block,
.last-view_block {
  position: relative;
  background: #E9EDF5;
  padding: 40px 0;
  margin-top: 120px;
}

@media screen and (max-width: 780px) {
  .sales-products_block,
  .last-view_block {
    margin-top: 60px;
  }
}

.sales-products_block .heading_block,
.last-view_block .heading_block {
  margin: 40px 0px 20px;
}

@media screen and (max-width: 780px) {
  .sales-products_block .heading_block,
  .last-view_block .heading_block {
    margin: 30px 0px 20px;
  }
}

.sales-products_block .sales-lines,
.last-view_block .sales-lines {
  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;
}

.sales-products_block .sales-line,
.last-view_block .sales-line {
  position: absolute;
  top: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 5px;
  background: var(--color-red);
  -webkit-transform: rotate(1.9deg) translateX(-120px);
          transform: rotate(1.9deg) translateX(-120px);
  z-index: 2;
}

@media screen and (max-width: 780px) {
  .sales-products_block .sales-line,
  .last-view_block .sales-line {
    -webkit-transform: rotate(3deg) translateX(-120px);
            transform: rotate(3deg) translateX(-120px);
  }
}

.sales-products_block .sales-line span,
.last-view_block .sales-line span {
  font-weight: 700;
  font-size: 24px;
  color: #FFF;
  margin-right: 40px;
  line-height: 100%;
  white-space: nowrap;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.sales-products_block .sales-line.sales-line-back,
.last-view_block .sales-line.sales-line-back {
  background: var(--color-red2);
  -webkit-transform: rotate(-1.65deg) translateX(120px);
          transform: rotate(-1.65deg) translateX(120px);
  z-index: 1;
}

@media screen and (max-width: 780px) {
  .sales-products_block .sales-line.sales-line-back,
  .last-view_block .sales-line.sales-line-back {
    -webkit-transform: rotate(-3deg) translateX(120px);
            transform: rotate(-3deg) translateX(120px);
  }
}

.last-view_block {
  padding: 40px 0 80px;
  margin-top: 80px;
}

.products-grid .products {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 1;
}

@media screen and (max-width: 780px) {
  .products-grid .products {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

img.sales-big {
  position: absolute;
  top: -20px;
  left: -120px;
  z-index: 0;
}

.btn-bottom_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.contacts_block .heading_block .h2 {
  font-size: 30px;
}

@media screen and (max-width: 780px) {
  .contacts_block .heading_block .h2 {
    font-size: 24px;
  }
}

.contacts_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

@media screen and (max-width: 780px) {
  .contacts_container {
    margin-top: 40px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contacts_container .heading_block {
  margin-top: 0;
}

.map {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

@media screen and (max-width: 780px) {
  .map {
    height: 360px;
  }
}

.map_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
}

.form-contact_block .contact-col {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

@media screen and (max-width: 1200px) {
  .form-contact_block .contact-col {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.form-contact_block .contact-col img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

.form-contact_block .form-contact {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.contacts-container {
  padding: 34px 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  background: #FFFFFF;
}

.contacts-container .contact_time {
  margin-bottom: 10px;
  display: block;
  font-size: 16px;
}

.contacts-container .inst {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts-container .inst img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.contacts-container .inst span {
  font-weight: 600;
  font-size: 18px;
  color: #292D32;
}

#footer {
  margin-top: 60px;
  position: relative;
  z-index: 6;
}

#footer .header_pc {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--color-bg);
}

#footer .header_pc .search-form {
  margin: 0;
}

#footer .header_pc .search-input {
  background-color: var(--color-bg);
}

#footer .header_pc .header__right-block {
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
}

#footer .copy-text {
  font-weight: 600;
  font-size: 12px;
  color: var(--color2);
}

@media screen and (max-width: 1200px) {
  #footer .header_container_footer {
    display: block;
  }
}

@media screen and (max-width: 780px) {
  #footer .header_container_footer {
    margin-bottom: 30px;
  }
}

#footer .modal__down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: inherit;
  bottom: 50px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.link-color {
  color: var(--color);
}

.modal_block[data-modaliframe="iframe_map"] .modal_body_scroll iframe {
  min-height: 468px;
}

.pagination_id {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px auto;
      grid-template-columns: 70px auto;
  gap: 10px;
}

@media screen and (max-width: 780px) {
  .pagination_id {
    -ms-grid-columns: 90px auto;
        grid-template-columns: 90px auto;
  }
}

.pagination_id input {
  padding: 8px 10px;
}

.pagination_id button {
  text-align: center;
}

@media screen and (max-width: 780px) {
  .pagination_id button {
    max-width: 200px;
  }
}

.pagination_id button.no-btn:hover {
  background-color: var(--color2);
  cursor: initial;
}

.pagination {
  background: #FFFFFF;
  padding: 0 10px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
}

.pagination .page-numbers,
.pagination span.current {
  display: inline-block;
  padding: 16px 10px;
  font-weight: 500;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}

.pagination .page-numbers:hover,
.pagination span.current:hover {
  color: var(--color);
}

.pagination span.current,
.pagination .dots {
  color: var(--color2);
}

.pagination span.current:hover,
.pagination .dots:hover {
  color: var(--color2);
}

@media screen and (max-width: 780px) {
  .pagination_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 0;
    overflow-x: auto;
  }
  .pagination_left .pagination {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.pagination_right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color2);
}

@media screen and (max-width: 780px) {
  .pagination_right {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 5px;
  }
}

.pagination-container {
  display: -ms-grid;
  display: grid;
  margin-top: 60px;
  gap: 10px;
  -ms-grid-columns: auto 1fr auto;
      grid-template-columns: auto 1fr auto;
}

@media screen and (max-width: 780px) {
  .pagination-container {
    margin-top: 40px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.pagination_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}

@media screen and (max-width: 780px) {
  .pagination_block {
    display: block;
  }
}

.cat_page_block .heading_block {
  margin-top: 20px;
}

.text_block {
  margin-top: 60px;
}

@media screen and (max-width: 780px) {
  .text_block {
    margin-top: 40px;
  }
}

.cat_page_block {
  margin-top: 40px;
}

.product_page .product {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 300px;
      grid-template-columns: auto 300px;
  gap: 20px;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 1200px) {
  .product_page .product {
    display: block;
  }
}

.product_page .product-flex {
  display: block;
}

.product_page .product-img-sliders {
  padding: 20px;
  height: 500px;
}

@media screen and (max-width: 1200px) {
  .product_page .product-img-sliders {
    height: 380px;
  }
}

.product_page .product-img-sliders .swiper-slide {
  height: 95%;
}

.product_page .product-img-sliders .swiper-pagination {
  bottom: 5px;
}

.product_page .product-img-slider_page {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product_page .product .video-modal img {
  -o-object-fit: cover;
     object-fit: cover;
}

.product_page .product-img-slider_small_page {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-left: 1px solid #E9EDF5;
}

.product_page .product-img-slider_small_page .swiper-slide {
  height: 20%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transform: scale(0.65);
          transform: scale(0.65);
  -webkit-box-shadow: 0 0 0px 1px var(--color), 0px 0px 20px rgba(110, 125, 179, 0);
          box-shadow: 0 0 0px 1px var(--color), 0px 0px 20px rgba(110, 125, 179, 0);
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.product_page .product-img-slider_small_page .swiper-slide.swiper-slide-thumb-active {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-box-shadow: 0 0 0px 1px var(--color2), 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0 0 0px 1px var(--color2), 0px 0px 20px rgba(110, 125, 179, 0.3);
}

.product_page .product-img-slider_small_page .swiper-slide.swiper-slide-thumb-active.video-modal {
  -webkit-box-shadow: 0 0 0px 0px var(--color), 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0 0 0px 0px var(--color), 0px 0px 20px rgba(110, 125, 179, 0.3);
}

.product_page .product-img-slider_small_page .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .product_page .product-img-slider_small_page {
    height: 130px;
  }
  .product_page .product-img-slider_small_page .swiper-slide {
    height: 100%;
    width: 25%;
  }
}

.product_page .pruduct-page_top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 300px;
      grid-template-columns: 1fr 300px;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .product_page .pruduct-page_top {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .product_page .arrow-slider-prev {
    right: auto;
    left: 12px;
  }
  .product_page .arrow-slider-next {
    right: 12px;
    left: auto;
  }
}

@media screen and (min-width: 1201px) {
  .product_page .arrow-slider {
    width: 30px;
    height: 30px;
    left: 50%;
    top: 5px;
    right: auto;
    bottom: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .product_page .arrow-slider img {
    width: 30px;
    height: 30px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .product_page .arrow-slider-next {
    top: auto;
    right: auto;
    bottom: 5px;
  }
  .product_page .arrow-slider-next img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.product_page .product-text p {
  color: #000;
}

.product_page .product-text p span {
  color: var(--color2);
}

.product_page .product-text a {
  color: var(--color);
  font-weight: 500;
}

.product_page .product-text a:hover {
  color: var(--color-hover);
}

.product_page .product-block .product-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

.product_page .h5 {
  font-weight: 700;
  font-size: 21px;
  margin: 0;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .product_page .product-block_list {
    display: none;
  }
}

.slider_product {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 424px auto;
      grid-template-columns: 424px auto;
  height: 500px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  border-radius: 20px;
}

@media screen and (max-width: 1200px) {
  .slider_product {
    display: block;
    height: 380px;
    height: auto;
  }
}

@media screen and (max-width: 1200px) {
  .product-page_right {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
            box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
    z-index: 11;
    border-top: 1px solid #ccc;
  }
  .product-page_right .product-right-fire {
    position: absolute;
    right: 10px;
    top: -20px;
    width: 44px;
  }
  .product-page_right .price_block .price_old {
    font-size: 18px;
  }
  .product-page_right .price_block .price {
    font-size: 24px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1201px) {
  .product-page_right .product-bottom {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
            box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
    border-radius: 20px;
    padding: 20px;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .product-page_right .product-bottom .price_block {
    margin-bottom: 30px;
    width: 100%;
  }
  .product-page_right .product-bottom .price_block .price {
    font-weight: 700;
    font-size: 36px;
  }
  .product-page_right .product-bottom .price_block .price-old {
    font-weight: 600;
    font-size: 24px;
  }
  .product-page_right .product-bottom .product_bottom {
    width: 100%;
  }
  .product-page_right .product-right-fire {
    position: absolute;
    right: 0;
    top: -20px;
    width: 44px;
  }
  .product-page_right .btn_flex {
    width: 100%;
  }
  .product-page_right .btn_flex .btn {
    width: 100%;
  }
}

.product-page_right .product-count {
  -ms-grid-columns: 36px 40px 36px;
      grid-template-columns: 36px 40px 36px;
  -ms-grid-rows: 38px;
      grid-template-rows: 38px;
  width: 100%;
}

@media screen and (max-width: 780px) {
  .single-post {
    padding-bottom: 70px;
  }
}

.tab-head-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}

.tab-title {
  border: 1px solid var(--color);
  padding: 10px;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.tab-title.tab-title--active {
  border: 1px solid var(--color2);
  background: #E9EDF5;
}

.tab-title.tab-title--active:hover {
  color: #000;
}

.tab-title:hover {
  color: var(--color);
}

.tab-body {
  display: none;
}

.tab-body.tab-body--active {
  display: block;
}

.tab-block {
  margin-top: 20px;
  padding: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  border-radius: 20px;
}

.tab-items .text_block {
  margin-top: 30px;
}

.tab-items .product-text {
  margin-top: 40px;
}

.tab-items .specifications_block {
  margin-top: 40px;
}

@media screen and (max-width: 780px) {
  .tab-items .specifications_container li {
    font-size: 16px;
  }
}

.accordion_block {
  display: -ms-grid;
  display: grid;
  gap: 14px;
  margin-top: 60px;
}

.accordion-item {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 1px 5px rgba(109, 119, 131, 0.25);
          box-shadow: 0px 1px 5px rgba(109, 119, 131, 0.25);
  overflow: hidden;
}

.accordion-item.accordion--open .accordion-title {
  background: #1d2325;
}

.accordion-item.accordion--open .accordion-title .accordion-arrow img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-item.accordion--open .accordion-body {
  padding: 20px;
  max-height: inherit;
}

.accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #2A3235;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.accordion-title:hover {
  color: #e5e5e5;
}

@media screen and (max-width: 780px) {
  .accordion-title {
    font-size: 16px;
    font-weight: 500;
  }
}

.accordion-text {
  padding: 16px 14px;
}

.accordion-arrow {
  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: 53px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.accordion-arrow img {
  width: 21px;
  margin: 0;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.accordion-body {
  overflow: hidden;
  height: 100%;
  max-height: 0;
  padding: 0 20px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.blog-item {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  position: relative;
  padding: 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
          box-shadow: 0px 0px 20px rgba(110, 125, 179, 0.3);
  border-radius: 20px;
}

.blog-item_img {
  width: 100%;
  height: 185px;
  overflow: hidden;
  border-radius: 10px;
}

.blog-item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-item_name {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}

.blog-item_data {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  top: 0;
  right: 0;
  background: #708090;
  border-radius: 0px 19px;
  color: #fff;
}

.blog-item_data img {
  width: 22px;
  margin-right: 5px;
}

.blog-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .blog-container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 780px) {
  .blog-container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

.blog-item_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.small_container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 780px) {
  .small_container {
    padding: 0 15px;
  }
}

.blog-item_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border-radius: 20px;
  height: 360px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 780px) {
  .blog-item_page {
    padding: 10px;
  }
}

.blog-item_content {
  background: rgba(0, 0, 0, 0.48);
  border-radius: 20px;
  color: #fff;
  padding: 16px;
}

.blog-item_content .h2 {
  margin: 0;
}

.blog-item_data_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.blog-item_data_page img {
  width: 22px;
  margin-right: 5px;
}

.blog-item_data_page span {
  font-size: 18px;
}

.accordion_block {
  margin-top: 20px;
}

.accordion_block .text_block {
  margin: 0;
}

.video_block {
  margin-top: 40px;
}

.video_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video_block .video-modal {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.scroll-y {
  overflow: hidden;
}

.products-list_slider {
  padding-bottom: 20px;
}

.oformlenie input, .oformlenie select, .oformlenie button {
  display: block;
  width: 100%;
}

.oformlenie input[type="submit"] {
  font-weight: 700;
}

.d-grid {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.d-grid.col-2 {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 780px) {
  .d-grid.col-2 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

form.nosubmit {
  opacity: .3;
  pointer-events: none;
}
/*# sourceMappingURL=main.css.map */