@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestBlack.woff") format("woff"), url("../fonts/OnestBlack.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestBold.woff") format("woff"), url("../fonts/OnestBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestMedium.woff") format("woff"), url("../fonts/OnestMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestExtraBold.woff") format("woff"), url("../fonts/OnestExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestRegular.woff") format("woff"), url("../fonts/OnestRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

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

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

input,
button,
textarea {
  font-family: "Onest";
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  color: #313131;
  font-size: 16px;
}

body._dark-white-bg {
  background: #F8F8F8;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  width: 100%;
  padding: 0px 20px;
  max-width: 1330px;
  margin: 0 auto;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

label {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
}

label._required::after {
  content: "*";
  font-weight: 700;
  color: #FC0A0A;
  margin-left: 3px;
  display: inline-block;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  background-color: #fff;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  min-height: 50px;
  padding: 10px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value._placeholder {
  color: #C5C5C5;
}

.select__value span {
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  background: url("../images/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  border-radius: 8px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  font-size: 16px;
  padding: 0px;
  -webkit-box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
  max-height: 350px;
  overflow-y: auto;
}

.select__option {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 0px 0px 0px;
}

.select__option[disabled=true] {
  background: #F2F2F2;
  color: rgba(49, 49, 49, 0.25);
  pointer-events: none;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

._select-square .select._active .select__title {
  border-color: #EF7D00;
}

._select-square .select__title {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 8px;
  background: #F7F7F7;
  border: 1px solid #F7F7F7;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

._select-square .select__value {
  min-height: 46px;
}

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

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password] {
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #313131;
  min-height: 46px;
  border: 1px solid #F7F7F7;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #F7F7F7;
  position: relative;
}

input[type=text]._date,
input[type=email]._date,
input[type=tel]._date,
input[type=password]._date {
  background: url(../images/icons/calendar.svg) calc(100% - 20px) 50%/20px no-repeat, #F7F7F7;
}

input[type=text]._circle,
input[type=email]._circle,
input[type=tel]._circle,
input[type=password]._circle {
  border-color: #fff;
  background: #fff;
  border-radius: 100px;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus {
  border-color: #EF7D00 !important;
}

input[type=text]:not(._focus),
input[type=email]:not(._focus),
input[type=tel]:not(._focus),
input[type=password]:not(._focus) {
  color: #C5C5C5;
}

input[type=text]._error,
input[type=email]._error,
input[type=tel]._error,
input[type=password]._error {
  border-color: #FC0A0A !important;
}

input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder {
  color: #C5C5C5;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder {
  color: #C5C5C5;
}

input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder {
  color: #C5C5C5;
}

input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder {
  color: #C5C5C5;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder {
  color: #C5C5C5;
}

.form__error {
  color: #FC0A0A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
}

textarea {
  resize: none;
  padding: 10px 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #313131;
  border: 1px solid #fff;
  width: 100%;
  max-width: 100%;
  height: 90px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

textarea:not(._focus) {
  color: #C5C5C5;
}

textarea:focus {
  border-color: #EF7D00 !important;
}

textarea::-webkit-input-placeholder {
  color: #C5C5C5;
}

textarea::-moz-placeholder {
  color: #C5C5C5;
}

textarea:-ms-input-placeholder {
  color: #C5C5C5;
}

textarea::-ms-input-placeholder {
  color: #C5C5C5;
}

textarea::placeholder {
  color: #C5C5C5;
}

textarea._error {
  border-color: #FC0A0A !important;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}

.checkbox._orange-check .checkbox__input:checked + .checkbox__text:before {
  background: url("../images/icons/checkbox.svg") center/14px no-repeat, #EF7D00;
  border-color: #EF7D00;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: url("../images/icons/checkbox.svg") center/14px no-repeat, #2A9840;
  border-color: #2A9840;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #f7f7f7;
  border: 1px solid #D9D9D9;
}

.checkbox a {
  color: inherit;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 10px;
}

.options__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:before {
  border-color: #EF7D00;
  background: #fff;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #D9D9D9;
  border: 2px solid #D9D9D9;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #EF7D00;
  position: absolute;
  left: 5px;
  top: 5px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../images/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../images/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

img,
svg {
  vertical-align: middle;
}

._title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

._btn {
  padding: 5px 25px;
  border-radius: 100px;
  background: #2A9840;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 4px solid #2A9840;
  min-height: 46px;
  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;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

._btn._disabled {
  pointer-events: none;
  background: #F0F0F0;
  color: #BAB7B7;
}

._btn._orange {
  background: #EF7D00;
  border-color: #EF7D00;
}

._btn._orange:active {
  border-color: #FFEFDE !important;
}

._btn:active {
  border-color: #C7FBEB !important;
}

._btn-o {
  color: #EF7D00;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px 25px;
  border: 1px solid #EF7D00;
  min-height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

._btn-o._disabled {
  pointer-events: none;
  background: #F0F0F0;
  color: #BAB7B7;
  border-color: #F0F0F0;
}

._btn-o svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

._btn-o._active {
  color: #fff;
  background: #EF7D00;
}

._btn-o._green {
  color: #2A9840;
  border-color: #2A9840;
}

._btn-o._green._active {
  color: #fff;
  background: #2A9840;
}

._btn-o._green:active {
  outline: 4px solid #C7FBEB;
}

._btn-o:active {
  outline: 4px solid #FFEFDE;
}

.paggination {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  background: rgba(49, 49, 49, 0.2);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.paggination .swiper-pagination-bullet-active {
  background: #313131;
}

.tooltip-anatomic {
  position: absolute;
  padding: 8px 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
  z-index: 2;
  color: #2A9840;
  text-align: center;
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item) ".";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  display: inline-block;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../images/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

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

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

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block,
._tabs-block-2 {
  display: none;
}

._tabs-block._active,
._tabs-block-2._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.gm-style .gm-style-iw-c {
  padding: 0px !important;
  border-radius: 20px;
  -webkit-box-shadow: 0px 36px 12px -21px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 36px 12px -21px rgba(0, 0, 0, 0.12);
  width: 330px;
  max-width: calc(100% - 20px) !important;
  max-height: unset !important;
}

.gm-ui-hover-effect {
  top: 0px !important;
  right: 0px !important;
}

.gm-style-iw-d {
  padding: 0px !important;
  overflow: visible !important;
  max-height: unset !important;
}

.gmnoprint,
.gm-fullscreen-control,
.gm-svpc {
  display: none;
}

.gm-style {
  font-family: "Onest";
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.qs-datepicker-container {
  margin-top: 5px;
  font-size: 1rem;
  font-family: sans-serif;
  color: #000;
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  -webkit-box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
  padding: 20px;
}

.qs-datepicker-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.qs-datepicker-container.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.qs-datepicker-container.qs-hidden {
  display: none;
}

.qs-datepicker .qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.qs-datepicker .qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-datepicker .qs-overlay .qs-overlay-year {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-datepicker .qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-datepicker .qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: 0.26392em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-datepicker .qs-overlay .qs-overlay-month-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.qs-datepicker .qs-overlay .qs-overlay-month {
  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: 33.33333%;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.qs-datepicker .qs-overlay .qs-overlay-month.active,
.qs-datepicker .qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-datepicker .qs-controls {
  width: 100%;
  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;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  color: #313131;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-arrow {
  height: 24px;
  width: 24px;
  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;
  border-radius: 0.26392em;
  -webkit-transition: background 0.15s;
  -o-transition: background 0.15s;
  transition: background 0.15s;
  font-size: 0;
}

.qs-datepicker .qs-arrow::after {
  content: "";
  position: static !important;
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.qs-datepicker .qs-arrow.qs-left::after {
  background: url(../images/icons/prev.svg) center/16px no-repeat;
}

.qs-datepicker .qs-arrow.qs-right::after {
  background: url(../images/icons/next.svg) center/16px no-repeat;
}

.qs-datepicker .qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

.qs-datepicker .qs-arrow:hover.qs-left:after {
  border-right-color: #000;
}

.qs-datepicker .qs-arrow:hover.qs-right:after {
  border-left-color: #000;
}

.qs-datepicker .qs-arrow:after {
  content: "";
  border: 0.39062em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
}

.qs-datepicker .qs-arrow.qs-left:after {
  border-right-color: grey;
  right: 50%;
  -webkit-transform: translate(25%, -50%);
  -ms-transform: translate(25%, -50%);
  transform: translate(25%, -50%);
}

.qs-datepicker .qs-arrow.qs-right:after {
  border-left-color: grey;
  left: 50%;
  -webkit-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
}

.qs-datepicker .qs-month-year {
  font-weight: 700;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.qs-datepicker .qs-month-year:hover {
  border-bottom: 1px solid grey;
}

.qs-datepicker .qs-month-year:active:focus,
.qs-datepicker .qs-month-year:focus {
  outline: none;
}

.qs-datepicker .qs-month {
  padding-right: 0.5ex;
}

.qs-datepicker .qs-year {
  padding-left: 0.5ex;
}

.qs-datepicker .qs-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #313131;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-filter: blur(0);
  filter: blur(0);
  font-size: 16px;
  color: #313131;
  -webkit-column-gap: 1px;
     -moz-column-gap: 1px;
          column-gap: 1px;
  row-gap: 1px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  margin-top: 20px;
}

.qs-datepicker .qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-square {
  width: calc((100% - 6px) / 7);
  height: auto;
  padding: 20px 10px;
  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;
  cursor: pointer;
  -webkit-transition: background 0.1s;
  -o-transition: background 0.1s;
  transition: background 0.1s;
  outline: 1px solid #DFDFDF;
  background: #fff;
  font-variant-numeric: lining-nums tabular-nums;
}

.qs-datepicker .qs-square.qs-current {
  font-weight: 700;
}

.qs-datepicker .qs-square.qs-active {
  background: #EF7D00;
  color: #fff;
  font-weight: 700;
}

.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle {
  background: #d4ebf2;
}

.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6) {
  border-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0),
.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-datepicker .qs-square.qs-disabled:not(.qs-outside-current-month) {
  background: #F2F2F2;
  color: rgba(35, 30, 18, 0.25);
  border-color: #DFDFDF;
}

.qs-square.qs-outside-current-month {
  color: #ABABAB;
}

.qs-datepicker .qs-square.qs-empty {
  cursor: default;
}

.qs-datepicker .qs-square.qs-disabled {
  cursor: not-allowed;
}

.qs-datepicker .qs-square.qs-day {
  font-size: 16px;
  cursor: default;
  font-weight: 700;
  color: #313131;
  outline: none;
}

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: #EF7D00;
  color: #fff;
  font-weight: 700;
}

.qs-datepicker .qs-event {
  position: relative;
}

.qs-datepicker .qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

.qs-datepicker .qs-event.qs-disabled:after,
.qs-datepicker .qs-event.qs-empty:after {
  background: #cce4ff;
}

.iti {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 100%;
}

.iti * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: relative;
  padding: 5px 12px;
  border-radius: 8px;
  background: #F7F7F7;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0;
}

.iti__arrow {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: url(../images/icons/select.svg) center/auto no-repeat;
}

.iti__arrow.iti__arrow--up {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding: 10px 20px !important;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: none;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: none;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #313131;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: auto;
  bottom: 20px;
  left: 20px;
  right: 20px;
  position: fixed;
  max-height: 60vh;
  width: 100%;
  max-width: calc(100% - 40px);
  height: 100%;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 16px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px center;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px center;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px center;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px center;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px center;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px center;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px center;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px center;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px center;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px center;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px center;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px center;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px center;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px center;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px center;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px center;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px center;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px center;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px center;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px center;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px center;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px center;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px center;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px center;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px center;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px center;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px center;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px center;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px center;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px center;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px center;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px center;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px center;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px center;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px center;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px center;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px center;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px center;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px center;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px center;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px center;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px center;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px center;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px center;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px center;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px center;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px center;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px center;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px center;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px center;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px center;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px center;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px center;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px center;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px center;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px center;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px center;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px center;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px center;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px center;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px center;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px center;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px center;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px center;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px center;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px center;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px center;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px center;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px center;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px center;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px center;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px center;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px center;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px center;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px center;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px center;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px center;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px center;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px center;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px center;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px center;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px center;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px center;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px center;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px center;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px center;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px center;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px center;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px center;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px center;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px center;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px center;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px center;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px center;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px center;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px center;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px center;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px center;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px center;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px center;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px center;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px center;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px center;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px center;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px center;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px center;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px center;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px center;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px center;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px center;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px center;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px center;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px center;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px center;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px center;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px center;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px center;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px center;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px center;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px center;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px center;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px center;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px center;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px center;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px center;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px center;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px center;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px center;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px center;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px center;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px center;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px center;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px center;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px center;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px center;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px center;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px center;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px center;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px center;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px center;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px center;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px center;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px center;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px center;
}

.iti__flag.iti__md {
  height: 16px;
  background-position: -3160px center;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px center;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px center;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px center;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px center;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px center;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px center;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px center;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px center;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px center;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px center;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px center;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px center;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px center;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px center;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px center;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px center;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px center;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px center;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px center;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px center;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px center;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px center;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px center;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px center;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px center;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px center;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px center;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px center;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px center;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px center;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px center;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px center;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px center;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px center;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px center;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px center;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px center;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px center;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px center;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px center;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px center;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px center;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px center;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px center;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px center;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px center;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px center;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px center;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px center;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px center;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px center;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px center;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px center;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px center;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px center;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px center;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px center;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px center;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px center;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px center;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px center;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px center;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px center;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px center;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px center;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px center;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px center;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px center;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px center;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px center;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px center;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px center;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px center;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px center;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px center;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px center;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px center;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px center;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px center;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px center;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px center;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px center;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px center;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px center;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px center;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px center;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px center;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px center;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px center;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px center;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px center;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px center;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px center;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px center;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px center;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px center;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px center;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px center;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px center;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px center;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px center;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px center;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px center;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px center;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px center;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px center;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px center;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px center;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px center;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px center;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px center;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px center;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px center;
}

._no-webp .iti__flag {
  background-image: url("../images/flags.png"); }

.iti__flag {
  width: 20px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 20px center;
  border-radius: 0px;
  margin-top: 1px;
}

.iti__flag.iti__np {
  background-color: transparent;
}

.pagging {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.pagging__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  height: 40px;
  width: 40px;
  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;
  text-align: center;
  border: 1px solid #313131;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagging__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagging__arrow img,
.pagging__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.pagging__arrow._disabled {
  border-color: #C4C1C1;
  pointer-events: none;
}

.pagging__arrow._disabled svg path {
  fill: #C4C1C1;
}

.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.pagging__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  height: 40px;
  width: 40px;
  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;
  text-align: center;
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #919191;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagging__item._more {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border: none;
  width: auto;
}

.pagging__item._active {
  color: #fff;
  font-weight: 700;
  border-color: #2A9840;
  background: #2A9840;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 0px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background: rgba(49, 49, 49, 0.3);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  width: 100%;
  max-width: 580px;
  border-radius: 8px;
}

.popup__head {
  border-bottom: 1px solid #EBEBEB;
  padding: 30px 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.popup__title {
  color: #313131;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.popup__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.popup__close img,
.popup__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.popup__wrapper {
  padding: 20px 30px;
}

.popup__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding: 20px 30px 30px;
  border-top: 1px solid #EBEBEB;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.add-to-cart .popup__body {
  max-width: 680px;
}

.add-to-cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.add-to-cart__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.add-to-cart__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.add-to-cart__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.add-to-cart__address {
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.add-to-cart__address span {
  display: inline-block;
  color: #919191;
}

.add-to-cart__price {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #EF7D00;
}

.add-to-cart__price span._old {
  font-size: 16px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.add-to-cart__price span._now {
  color: #EF7D00;
}

.registration-popup__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  border-bottom: 1px solid #EBEBEB;
}

.registration-popup__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.registration-popup__title span {
  color: #EF7D00;
  display: inline-block;
}

.registration-popup__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.registration-popup__close img,
.registration-popup__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.registration-popup__content {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.registration-popup__picker {
  display: none;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.registration-popup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.registration-popup__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
}

.registration-popup__item._full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.registration-popup__label {
  margin-bottom: 5px;
}

.registration-popup__button {
  width: 100%;
  max-width: 100%;
}

.picker-registration-popup {
  padding: 0px 20px 15px;
}

.picker-registration-popup__body {
  padding-bottom: 15px;
  padding-top: 15px;
}

.picker-registration-popup__date {
  display: none;
}

.picker-registration-popup__date .qs-datepicker-container {
  position: static;
  top: 0;
  display: block !important;
  padding: 0px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0px;
}

.picker-registration-popup__date .qs-datepicker-container .qs-squares {
  padding: 1px;
}

.picker-registration-popup__datepicker {
  display: none;
}

.picker-registration-popup__time {
  display: none;
}

.timepicker-picker-registration-popup__item {
  padding: 10px 20px;
  border-top: 1px solid #D7D7D7;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.timepicker-picker-registration-popup__item[disabled=true] {
  background: #F2F2F2;
  color: rgba(49, 49, 49, 0.25);
}

.timepicker-picker-registration-popup__item._active {
  color: #fff;
  background: #EF7D00;
}

.card-analize-popup .popup__body {
  max-width: 730px;
  padding: 20px;
}

.card-analize-popup__content > * {
  padding: 20px 0px;
}

.card-analize-popup__content > *:first-child {
  padding-top: 0;
}

.card-analize-popup__content > *:last-child {
  padding-bottom: 0;
}

.card-analize-popup__content > *:not(:last-child) {
  border-bottom: 1px solid #E4E4E4;
}

.card-analize-popup__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.card-analize-popup__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.card-analize-popup__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.card-analize-popup__close img,
.card-analize-popup__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.card-analize-popup__main {
  width: 100%;
  max-width: 100%;
}

.card-analize-popup__description {
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.card-analize-popup__footer {
  background: #fff;
  -webkit-box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
          box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
  padding: 15px 20px;
  margin: 0px -20px -20px;
}

.main-card-analize-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-card-analize-popup__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.main-card-analize-popup__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-card-analize-popup__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-card-analize-popup__code {
  color: #2A9840;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-card-analize-popup__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.main-card-analize-popup__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-card-analize-popup__price span._now {
  color: #EF7D00;
}

.main-card-analize-popup__price span._old {
  color: #9F9F9F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.main-card-analize-popup__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.main-card-analize-popup__like img,
.main-card-analize-popup__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.main-card-analize-popup__like._liked svg path._fill {
  display: block;
}

.main-card-analize-popup__like svg path {
  fill: #EF7D00;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-card-analize-popup__like svg path._fill {
  display: none;
}

.characteristic-card-analize-popup__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.characteristic-card-analize-popup__item {
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #FEF7F3;
}

.characteristic-card-analize-popup__item:nth-child(even) {
  background: rgba(42, 152, 64, 0.1);
}

.characteristic-card-analize-popup__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.characteristic-card-analize-popup__value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  font-weight: 500;
}

.review .popup__body {
  padding: 30px;
  max-width: 400px;
}

.review__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 26px;
  height: 25px;
  cursor: pointer;
}

.review__close img,
.review__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.review__head {
  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;
  text-align: center;
  row-gap: 20px;
}

.review__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 59px;
          flex: 0 0 59px;
  height: 59px;
  width: 59px;
}

.review__icon img,
.review__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 59px;
          flex: 0 0 59px;
  width: 59px;
  height: 59px;
}

.review__title {
  color: #313131;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.review__body {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.review__label {
  margin-bottom: 8px;
}

.review__textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #F7F7F7;
  height: 100px;
}

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

.profile-popup__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.profile-popup__item {
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 8px;
  background: #F7F7F7;
}

.profile-popup__item span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  z-index: 5;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.header::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(49, 49, 49, 0.3);
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__main {
  padding: 9px 0px;
}

.top-header {
  padding: 3px 0px;
  background: #2A9840;
}

.top-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.top-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 100%;
}

.top-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  height: 30px;
  width: 30px;
}

.top-header__icon img,
.top-header__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

.top-header__text {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: -20px;
  padding-right: 20px;
  width: 100%;
}

.top-header__details {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  margin-left: 30px;
}

.top-header__details img,
.top-header__details svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.main-header__container {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 131px;
          flex: 0 0 131px;
}

.main-header__logo img,
.main-header__logo svg {
  width: 100%;
  max-width: 100%;
}

.nav-main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

.nav-main-header__link {
  white-space: nowrap;
  color: #313131;
}

.contacts-main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.contacts-main-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.contacts-main-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.contacts-main-header__icon img,
.contacts-main-header__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.contacts-main-header__value {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.language-header {
  border-radius: 100px;
  background: #E2E2E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
}

.language-header__item {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31px;
          flex: 0 0 31px;
  height: 31px;
  width: 31px;
  margin: -2px;
  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: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.language-header__input {
  display: none;
}

.language-header__input:checked + .language-header__value {
  color: #313131;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  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;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

.language-header__item._active .language-header__value {
  color: #313131;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  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;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

.language-header__value {
  cursor: pointer;
}

.other-header__container {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.other-header__catalog {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
}

.catalog-header__button {
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 30px;
  background: #FEF7F3;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog-header__button img,
.catalog-header__button svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.catalog-header__content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px 25px 20px 30px;
  border-radius: 0px 0px 8px 8px;
  background: #FEF7F3;
  max-height: 510px;
  overflow-y: auto;
  -webkit-box-shadow: inset 0px 8px 16px -6px rgba(24, 39, 75, 0.08), inset 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: inset 0px 8px 16px -6px rgba(24, 39, 75, 0.08), inset 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.catalog-header__content::-webkit-scrollbar {
  width: 6px;
}

.catalog-header__content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #D9D9D9;
}

.catalog-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.catalog-header__back {
  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;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.catalog-header__back .catalog-header__title {
  display: block;
}

.catalog-header__back img,
.catalog-header__back svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.catalog-header__title {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.catalog-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.catalog-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.catalog-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.catalog-header__icon img,
.catalog-header__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.catalog-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.catalog-header__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.catalog-header__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog-header__text {
  color: #ACACAC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.catalog-header__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.catalog-header__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog-header__arrow img,
.catalog-header__arrow svg {
  width: 20px;
  height: 20px;
}

.search-header__content {
  position: relative;
}

.search-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.search-header__form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.search-header__results {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 100vw;
  max-width: 630px;
  background: #fff;
  border-radius: 8px;
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  -webkit-box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
}

.search-header__results._active {
  display: block;
}

.form-search-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  background: #F7F7F7;
  min-height: 44px;
  padding: 5px 20px;
  border-radius: 100px;
  border: 1px solid #F7F7F7;
  overflow: hidden;
}

.form-search-header._focus {
  border-color: #EF7D00;
}

.form-search-header__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
  min-width: 0px;
  background: none;
  color: #313131;
  font-size: 16px;
  padding: 0px !important;
  background: none !important;
  min-height: 0px !important;
  border: none !important;
}

.form-search-header__input::-webkit-input-placeholder {
  color: #919191;
}

.form-search-header__input::-moz-placeholder {
  color: #919191;
}

.form-search-header__input:-ms-input-placeholder {
  color: #919191;
}

.form-search-header__input::-ms-input-placeholder {
  color: #919191;
}

.form-search-header__input::placeholder {
  color: #919191;
}

.form-search-header__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
  background: none;
}

.form-search-header__button img,
.form-search-header__button svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.results-search-header {
  padding: 20px;
}

.results-search-header__section {
  padding: 20px 0px;
  border-bottom: 1px solid #EBEBEB;
}

.results-search-header__section:first-child {
  padding-top: 0;
}

.results-search-header__title {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.results-search-header__list {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.results-search-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.results-search-header__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.results-search-header__price {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  white-space: nowrap;
}

.results-search-header__price span._now {
  color: #EF7D00;
}

.results-search-header__price span._old {
  font-size: 14px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.results-search-header__more {
  margin-top: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #EF7D00;
  display: inline-block;
}

.results-search-header__footer {
  padding-top: 20px;
}

.actions-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.actions-header__item {
  position: relative;
}

.actions-header__item._active .actions-header__name {
  color: #EF7D00;
}

.actions-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  cursor: pointer;
}

.actions-header__main._active .actions-header__icon svg path {
  fill: #2A9840;
}

.actions-header__main._active .actions-header__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.actions-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.actions-header__icon img,
.actions-header__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.actions-header__icon svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.actions-header__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

.actions-header__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.actions-header__arrow img,
.actions-header__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.actions-header__profile-account {
  display: none;
}

.cart-other-header__main {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 5px 22px;
  min-height: 44px;
  border-radius: 100px;
  border: 1px solid #EF7D00;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cart-other-header__main svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cart-other-header__main svg path:not(._stroke) {
  fill: #EF7D00;
}

.cart-other-header__main svg path._stroke {
  stroke: #EF7D00;
}

.cart-other-header__main img,
.cart-other-header__main svg {
  width: 16px;
  max-width: 16px;
}

.cart-other-header__value {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cart-other-header__value span {
  color: #2A9840;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__body {
  position: fixed;
  top: 51px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  padding: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 100%;
  max-height: calc(100% - 51px);
  overflow-y: auto;
  overflow-x: hidden;
}

.menu__body._active {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}

.list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.list-menu__link {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.list-menu__link._sale {
  color: #EC3232;
}

.bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-box-shadow: 0px -6px 16px 0px rgba(24, 31, 71, 0.08);
          box-shadow: 0px -6px 16px 0px rgba(24, 31, 71, 0.08);
  padding: 0px 20px;
}

.bottom-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 10px;
  height: 74px;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 94px;
          flex: 0 1 94px;
}

.bottom-nav__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.bottom-nav__icon img,
.bottom-nav__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.bottom-nav__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cart-header {
  position: absolute;
  right: 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
  width: calc(100% - 40px);
  max-width: 510px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  max-height: calc(100vh - 170px);
}

.cart-header._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.cart-header__top {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border-bottom: 1px solid #EBEBEB;
}

.cart-header__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cart-header__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.cart-header__close img,
.cart-header__close svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.cart-header__body {
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.cart-header__list {
  border-bottom: 1px solid #EBEBEB;
}

.cart-header__item {
  padding: 20px 0px;
}

.cart-header__item:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}

.cart-header__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #313131;
}

.cart-header__total span:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.cart-header__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}

.cart-header__button {
  padding: 8px 30px;
}

.cart-header-item {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-grid-columns: 1fr 100px 26px;
  grid-template-columns: 1fr 100px 26px;
}

.cart-header-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.cart-header-item__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.cart-header-item__time {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-header-item__time::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../images/icons/time.svg) center/cover no-repeat;
}

.cart-header-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #313131;
}

.cart-header-item__price span._old {
  font-size: 16px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.cart-header-item__price span._now {
  color: #EF7D00;
}

.cart-header-item__delete {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.cart-header-item__delete img,
.cart-header-item__delete svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.cart-header-item-consultation {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-grid-columns: 1fr 100px 26px;
  grid-template-columns: 1fr 100px 26px;
}

.cart-header-item-consultation__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.cart-header-item-consultation__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cart-header-item-consultation__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cart-header-item-consultation__address {
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cart-header-item-consultation__address span {
  display: inline-block;
  color: #919191;
}

.cart-header-item-consultation__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #313131;
}

.cart-header-item-consultation__price span._old {
  font-size: 16px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.cart-header-item-consultation__price span._now {
  color: #EF7D00;
}

.cart-header-item-consultation__delete {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.cart-header-item-consultation__delete img,
.cart-header-item-consultation__delete svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.profile-account-actions-header {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  width: 240px;
  -webkit-box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
}

.profile-account-actions-header__item {
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.profile-account-actions-header__item span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.profile-account-actions-header__item img,
.profile-account-actions-header__item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.icon-menu {
  display: none;
}

.footer__main {
  padding: 60px 0px;
  background: #EF7D00;
}

.footer__bottom {
  background: #D97406;
  padding: 20px 0px;
}

.main-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 30px;
}

.main-footer__info {
  -webkit-box-flex: 1;
    width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.main-footer__logo {
  width: 131px;
}

.main-footer__logo img,
.main-footer__logo svg {
  width: 100%;
  max-width: 100%;
}

.main-footer__name {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.main-footer__body {
  margin-top: 15px;
}

.main-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.main-footer__link {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-main-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.nav-main-footer__link {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts-main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.list-contacts-main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.list-contacts-main-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.list-contacts-main-footer__item a {
  color: inherit;
}

.list-contacts-main-footer__icon {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.socials-contacts-main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
  max-width: 180px;
}

.socials-contacts-main-footer__item {
  border-radius: 2px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34px;
          flex: 0 0 34px;
  height: 34px;
  width: 34px;
  background: #fff;
  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;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.socials-contacts-main-footer__item img,
.socials-contacts-main-footer__item svg {
  max-width: 100%;
  max-height: 100%;
}

.bottom-footer__container {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 12px;
}

.bottom-footer__copy {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.bottom-footer__dev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.bottom-footer__dev img,
.bottom-footer__dev svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.bottom-footer__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

.sale-alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: fixed;
  right: 30px;
  bottom: 50px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 12px 42px -4px rgba(24, 39, 75, 0.12), 0px 8px 18px -6px rgba(24, 39, 75, 0.12);
  width: 550px;
  overflow: hidden;
  max-width: calc(100% - 60px);
  z-index: 1;
}

.sale-alert._hide {
  display: none;
}

.sale-alert__info {
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 8px;
}

.sale-alert__name {
  color: #EF7D00;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sale-alert__text {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sale-alert__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 123px;
          flex: 0 0 123px;
  height: 123px;
  width: 123px;
}

.sale-alert__image img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.sale-alert__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  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;
}

.sale-alert__close img,
.sale-alert__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.sale-alert__close svg path[stroke] {
  stroke: #919191;
}

.sale-alert__close svg path[fill] {
  fill: #919191;
}

.banner-section {
  padding: 30px 0px;
}

.banner-section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.banner-section__catalog {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
  border-radius: 0px 0px 8px 8px;
  background: #FEF7F3;
  margin-top: -30px;
  padding: 20px 25px 20px 30px;
  max-height: 510px;
  overflow-y: auto;
}

.banner-section__catalog::-webkit-scrollbar {
  width: 6px;
}

.banner-section__catalog::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #D9D9D9;
}

.banner-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - (340px + 30px));
          flex: 0 0 calc(100% - (340px + 30px));
  overflow: hidden;
}

.banner {
  position: relative;
}

.banner__slider {
  border-radius: 8px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.banner__item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 30px 60px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner__info {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 450px;
}

.banner__title {
  color: #fff;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.banner__title._click {
  position: relative;
}

.banner__title._click::after {
  content: "";
  width: 38px;
  height: 38px;
  position: absolute;
  top: 30%;
  left: 100%;
  background: url(../images/icons/click.svg) center/cover no-repeat;
}

.banner__text {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}

.banner__btn {
  margin-top: 30px;
  width: 200px;
}

.banner__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.banner__image img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.banner__image_md2 {
  display: none;
}

.banner__image_md3 {
  display: none;
}

.banner__image_md4 {
  display: none;
}

.banner__paggination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navigation-banner-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.navigation-banner-section__item {
  text-align: center;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #EBEAEA;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
          flex: 0 0 calc((100% - 20px * 3) / 4);
  min-height: 61px;
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.navigation-banner-section__item._sale {
  color: #EC3232;
  border-color: #EC3232;
}

.services {
  padding: 30px 0px 30px;
}

.services__title {
  color: #313131;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 50px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 50px;
}

.services__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
          flex: 0 0 calc((100% - 20px * 3) / 4);
  padding: 50px 20px 20px;
  position: relative;
  border-radius: 8px;
  background: rgba(239, 125, 0, 0.2);
  height: 203px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 170px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.services__name {
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.services__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.services__image {
  position: absolute;
  bottom: 0;
  right: 0;
}

.explore {
  padding: 30px 0px 30px;
}

.explore__wrapper {
  border-radius: 16px;
  background: url(../images/bg-explore.svg) center/98% auto no-repeat, #F8F8F8;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 85px;
     -moz-column-gap: 85px;
          column-gap: 85px;
  padding: 10px 130px;
  overflow: hidden;
}

.explore__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.explore__title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
}

.explore__text {
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 380px;
}

.explore__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}

.explore__image img,
.explore__image svg {
  width: 100%;
  max-width: 100%;
}

.nav-explore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.nav-explore__link {
  min-width: 155px;
}

.benefits {
  padding: 30px 0px 30px;
}

.benefits__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.benefits__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  max-width: 200px;
  text-align: center;
}

.benefits__icon {
  margin-bottom: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.benefits__icon img,
.benefits__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.benefits__value {
  color: #313131;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.benefits__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.head-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.head-section__title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-section__btn {
  color: #313131 !important;
  font-weight: 400;
}

.head-section__btn svg path {
  fill: #313131;
}

.section-service {
  background: #F8F8F8;
  padding: 60px 0px;
  margin: 30px 0px;
}

.section-service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 60px;
}

.section-service__content {
  margin-top: 30px;
  position: relative;
}

.section-service__slider {
  overflow: visible;
}

.section-service__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
          flex: 0 0 calc((100% - 20px * 4) / 5);
}

.section-service__item:not(:last-child) {
  margin-right: 20px;
}

.section-service__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  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: 50%;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.section-service__arrow svg path {
  fill: #EF7D00;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.section-service__arrow.section-service-arrow-prev {
  left: -10px;
  -webkit-transform: translateY(-50%) translateX(-100%);
      -ms-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}

.section-service__arrow.section-service-arrow-next {
  right: -10px;
  -webkit-transform: translateY(-50%) translateX(100%);
      -ms-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}

.section-service__arrow img,
.section-service__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.section-service__paggination {
  margin-top: 20px;
}

.disease {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.disease__image {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
}

.disease__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.disease__body {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.disease__name {
  text-align: center;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  min-height: calc(22px * 2);
}

.disease__details {
  width: 100%;
}

.list-disease {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.list-disease__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.list-disease__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.list-disease__icon img,
.list-disease__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.list-disease__name {
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list-disease__value {
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.test {
  padding: 30px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  overflow: hidden;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.test__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
  height: 52px;
  width: 52px;
}

.test__icon img,
.test__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.test__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  color: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 3;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  min-height: calc(22px * 3);
}

.test__price {
  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-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.test__price span._old {
  color: #9F9F9F;
  font-size: 16px;
  text-decoration: line-through;
  font-weight: 400;
}

.test__cart {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.news-section {
  padding: 30px 0px;
}

.news-section__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.news-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
}

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 8px;
  border: 1px solid #EBEAEA;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 40%;
}

.news__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-top: 4px solid #EF7D00;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.news__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.news__description {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 2;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.news__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.news__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}

.news__more {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #EF7D00;
  padding: 7px 15px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  text-align: center;
}

.registration {
  padding: 30px 0px;
}

.registration._page {
  padding-bottom: 70px;
}

.registration._page .registration__from {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.registration._page .registration__image {
  margin: 0px !important;
}

.registration__wrapper {
  background: #F8F8F8;
  padding: 50px 50px 50px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  border-radius: 16px;
  overflow: hidden;
}

.registration__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}

.registration__from {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 455px;
          flex: 0 0 455px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.registration__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: -50px 0px -50px;
}

.registration__image img {
  width: 100%;
  max-width: 100%;
}

.form-registration__title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form-registration__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin-top: 30px;
}

.form-registration__row._double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.form-registration__label {
  margin-bottom: 8px;
}

.form-registration__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
}

.form-registration__footer {
  margin-top: 20px;
}

.form-registration__button {
  background: none;
  min-width: 220px;
}

.centres {
  padding: 30px 0px 60px;
}

.centres__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.centres__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 520px;
          flex: 0 0 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  position: relative;
}

.centres__title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.centres__description {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.centres__map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.breadcrums {
  padding: 30px 0px 20px;
}

.breadcrums__list {
  display: inline;
}

.breadcrums__item {
  display: inline;
}

.breadcrums__item:not(:last-child) {
  margin-right: 5px;
}

.breadcrums__item:not(:last-child)::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  height: 18px;
  width: 18px;
  margin-left: 5px;
  display: inline-block;
  background: url(../images/icons/breadcrums-arrow.svg) center/cover no-repeat;
  vertical-align: middle;
  margin-bottom: 2px;
}

.breadcrums__item span {
  color: #313131;
}

.breadcrums__link {
  color: #ADADAD;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog {
  padding-bottom: 70px;
}

.catalog__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.catalog__filter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.catalog__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-catalog {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.head-catalog__title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-catalog__filter-btn {
  display: none;
  padding: 6px 20px;
  background: #2A9840;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-catalog__filter-btn img,
.head-catalog__filter-btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.head-catalog__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.head-catalog__select > span {
  white-space: nowrap;
}

.head-catalog__sel {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95px;
          flex: 0 0 95px;
  width: 95px;
}

.head-catalog__sel .select__title {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}

.head-catalog__sel .select__value {
  border: none;
  min-height: 0px;
  background: none;
  padding: 0px;
  color: #313131;
}

.head-catalog__sel .select__options {
  left: -10px;
  right: 0px;
}

.head-catalog__sel .select__option {
  padding: 5px 10px;
}

.filter-catalog {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  padding: 30px 20px;
}

.filter-catalog__row {
  padding: 20px 0px;
}

.filter-catalog__row:not(:last-child) {
  border-bottom: 1px solid #E4E4E4;
}

.filter-catalog__row:last-child {
  padding-bottom: 0;
}

.filter-catalog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  cursor: pointer;
}

.filter-catalog__top._active .filter-catalog__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.filter-catalog__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.filter-catalog__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.filter-catalog__arrow img,
.filter-catalog__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.filter-catalog__body {
  margin-top: 20px;
  display: none;
  max-height: 370px;
  overflow-y: auto;
}

.filter-catalog__body::-webkit-scrollbar {
  border-radius: 10px;
  background: #D9D9D9;
  width: 3px;
  height: 0;
}

.filter-catalog__body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #858585;
}

.filter-catalog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background: #fff;
  -webkit-box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
          box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
  padding: 15px 20px;
  margin: 0px -20px -20px;
}

.filter-catalog__more {
  color: #EF7D00;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.filter-catalog__more span._more {
  display: block;
}

.filter-catalog__more span._less {
  display: none;
}

.head-filter-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E4E4E4;
}

.head-filter-catalog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.head-filter-catalog__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-filter-catalog__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.head-filter-catalog__icon img,
.head-filter-catalog__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.head-filter-catalog__title {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-filter-catalog__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.head-filter-catalog__close img,
.head-filter-catalog__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.head-filter-catalog__reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #919191;
  background: none;
}

.mods-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.mods-filter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 6px 8px;
  border-radius: 4px;
  background: #EDEDED;
}

.mods-filter__delete {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  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;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mods-filter__delete svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mods-filter__delete img,
.mods-filter__delete svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.list-filter-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.list-filter-catalog__item {
  padding: 12px 15px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list-filter-catalog__item._active {
  background: #FEF2E6;
}

.list-filter-catalog__item._active .list-filter-catalog__name {
  color: #EF7D00;
  font-weight: 500;
}

.list-filter-catalog__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.list-filter-catalog__value {
  color: #919191;
  white-space: nowrap;
}

.city-list-filter-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.city-list-filter-catalog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  cursor: pointer;
}

.city-list-filter-catalog__top._active .city-list-filter-catalog__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.city-list-filter-catalog__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.city-list-filter-catalog__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.city-list-filter-catalog__arrow img,
.city-list-filter-catalog__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.city-list-filter-catalog__body {
  margin-top: 15px;
  display: none;
}

.list-checkbox-filter-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  padding: 0px 10px 0px 20px;
}

.list-checkbox-filter-catalog__item .checkbox__text {
  width: 100%;
}

.list-checkbox-filter-catalog__item .checkbox__text > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  width: 100%;
}

.list-checkbox-filter-catalog__item .checkbox__text > span > span {
  color: #919191;
  margin-left: auto;
}

.footer-filter-catalog__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.footer-filter-catalog__reset {
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  background: none;
}

.footer-filter-catalog__reset img,
.footer-filter-catalog__reset svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.main-catalog__pagging {
  margin-top: 30px;
}

.medical-main-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.medical-main-catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
}

.medical {
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  overflow: hidden;
}

.medical._liked .medical__favorite svg path._fill {
  display: block;
}

.medical__head {
  position: relative;
}

.medical__image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  display: block;
}

.medical__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.medical__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.5);
  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: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.medical__favorite img,
.medical__favorite svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.medical__favorite svg path {
  fill: #EF7D00;
}

.medical__favorite svg path._fill {
  display: none;
}

.medical__body {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.medical__title {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: -10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.medical__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}

.medical__list._price-list .medical__name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.medical__item {
  color: #919191;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
}

.medical__value {
  font-weight: 700;
  color: #313131;
}

.medical__price {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.medical__button {
  margin-top: auto;
}

.analize-main-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.specialist {
  padding-bottom: 70px;
}

.specialist__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.specialist__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 590px;
          flex: 0 0 590px;
}

.specialist__body > * {
  padding: 20px 0px;
  border-bottom: 1px solid #E6E6E6;
}

.specialist__body > *:first-child {
  padding-top: 0;
}

.specialist__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

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

.specialist__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.specialist__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.specialist__like._liked svg path._fill {
  display: block;
}

.specialist__like svg path {
  fill: #EF7D00;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.specialist__like svg path._fill {
  display: none;
}

.specialist__like img,
.specialist__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.specialist__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.specialist__work {
  color: #898989;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  white-space: nowrap;
}

.specialist__experience {
  padding: 4px 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2A9840;
  border-radius: 50px;
  background: #EAF5EC;
  white-space: nowrap;
}

.specialist__consultation {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.specialist__consultation span {
  color: #313131;
}

.specialist__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
}

.specialist__address li {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.specialist__address li::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #2A9840;
}

.specialist__address a {
  color: inherit;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.specialist__action {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.specialist__button {
  min-width: 170px;
}

.specialist__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: #FEF7F3;
  margin-top: -76px;
}

.specialist__photo {
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 650px;
}

.specialist__photo img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price-specialist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.price-specialist__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.price-specialist__value {
  color: #313131;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.description-specialist:not(._view-all) .description-specialist__body {
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 12;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.description-specialist:not(._view-all) .description-specialist__more img,
.description-specialist:not(._view-all) .description-specialist__more svg {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.description-specialist__body {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.description-specialist__body br {
  content: "";
  margin: 2em;
  display: block;
  font-size: 24%;
}

.description-specialist__body span {
  display: inline-block;
}

.description-specialist__body ul {
  padding-left: 25px;
}

.description-specialist__body ul li {
  list-style: disc;
}

.description-specialist__body h4 {
  font-weight: 500;
}

.description-specialist__more {
  color: #EF7D00;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 5px;
}

.description-specialist__more img,
.description-specialist__more svg {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.description-specialist__more span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.specialist-review {
  padding: 70px 0px;
}

.specialist-review__head .head-section__btn {
  color: #EF7D00 !important;
  font-weight: 500;
  padding: 8px 20px;
}

.specialist-review__head .head-section__btn svg path {
  fill: #EF7D00 !important;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.specialist-review__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.specialist-review__item {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  padding: 20px 30px;
}

.specialist-review__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.specialist-review__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.specialist-review__date {
  color: #EF7D00;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.specialist-review__body {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
}

.recomendation-specialist {
  padding: 70px 0px;
}

.recomendation-specialist__content {
  margin-top: 30px;
  position: relative;
}

.recomendation-specialist__slider {
  overflow: visible;
}

.recomendation-specialist__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

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

.recomendation-specialist__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  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: 50%;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.recomendation-specialist__arrow svg path {
  fill: #EF7D00;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.recomendation-specialist__arrow.recomendation-specialist-arrow-prev {
  left: -10px;
  -webkit-transform: translateY(-50%) translateX(-100%);
      -ms-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}

.recomendation-specialist__arrow.recomendation-specialist-arrow-next {
  right: -10px;
  -webkit-transform: translateY(-50%) translateX(100%);
      -ms-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}

.recomendation-specialist__arrow img,
.recomendation-specialist__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.recomendation-specialist__paggination {
  margin-top: 20px;
}

.order {
  padding-bottom: 70px;
}

.order__wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.order__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  padding: 30px;
}

.order__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 510px;
          flex: 0 0 510px;
}

.main-order__section {
  padding: 20px 0px;
}

.main-order__section:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}

.main-order__section:first-child {
  padding-top: 0;
}

.main-order__section:last-child {
  padding-bottom: 0;
}

.main-order__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-order__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-order__account {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-order__account_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #EF7D00;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-order__account_link img,
.main-order__account_link svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.main-order__body:not(:first-child) {
  margin-top: 20px;
}

.data-main-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.data-main-order__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 20px * 1) / 2);
          flex: 1 0 calc((100% - 20px * 1) / 2);
}

.data-main-order__item._full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.data-main-order__label {
  margin-bottom: 5px;
}

.data-main-order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.data-main-order__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
          flex: 0 0 calc((100% - 20px * 2) / 3);
}

.payments-main-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.payments-main-order__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 20px * 1) / 2);
          flex: 1 0 calc((100% - 20px * 1) / 2);
}

.payments-main-order__radio {
  display: none;
}

.payments-main-order__radio:checked + .payments-main-order__content {
  border-color: #EF7D00;
}

.payments-main-order__radio:checked + .payments-main-order__content .payments-main-order__circle {
  background: url(../images/icons/checkbox.svg) center/16px no-repeat, #EF7D00;
}

.payments-main-order__content {
  padding: 20px 5px;
  border-radius: 8px;
  border: 1px solid #EBEBEB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 20px;
  cursor: pointer;
}

.payments-main-order__circle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #E3E3E3;
}

.payments-main-order__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.payments-main-order__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.comment-main-order__label {
  margin-bottom: 5px;
}

.comment-main-order__textarea {
  background: #F7F7F7;
  border-color: #F7F7F7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sidebar-order__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.sidebar-order__info {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
}

.sidebar-order__head {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-bottom: 1px solid #EBEBEB;
}

.sidebar-order__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sidebar-order__body {
  padding: 20px;
}

.sidebar-order__item {
  padding: 20px 0px;
}

.sidebar-order__item:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}

.sidebar-order__item:first-child {
  padding-top: 0;
}

.sidebar-order__item:last-child {
  padding-bottom: 0;
}

.sidebar-order__footer {
  padding: 20px;
  border-top: 1px solid #EBEBEB;
}

.item-consultation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-consultation__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.item-consultation__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-consultation__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-consultation__address {
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-consultation__address span {
  display: inline-block;
  color: #919191;
}

.item-consultation__price {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #313131;
  text-align: right;
}

.item-consultation__price span._old {
  font-size: 16px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.item-consultation__price span._now {
  color: #EF7D00;
}

.item-analize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.item-analize__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-analize__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-analize__time {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-analize__time::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../images/icons/time.svg) center/cover no-repeat;
}

.item-analize__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #313131;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
}

.item-analize__price span._old {
  font-size: 16px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.item-analize__price span._now {
  color: #EF7D00;
}

.footer-sidebar-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.footer-sidebar-order__total {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-sidebar-order__total span:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.footer-sidebar-order__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer-sidebar-order__checkbox {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.footer-sidebar-order__checkbox .checkbox__text {
  font-size: 14px;
}

.alert-sidebar-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
}

.alert-sidebar-order__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.alert-sidebar-order__icon img,
.alert-sidebar-order__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.alert-sidebar-order__text {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.alert-sidebar-order__text a {
  color: #EF7D00;
  text-decoration: underline;
}

.fields-page,
.disease-page {
  padding-bottom: 70px;
}

.fields-page__head,
.disease-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.fields-page__selects,
.disease-page__selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.fields-page__select,
.disease-page__select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
}

.fields-page__select .select__title,
.disease-page__select .select__title {
  background: none;
  border: 1px solid #919191;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fields-page__select .select__value,
.disease-page__select .select__value {
  min-height: 40px;
}

.fields-page__content,
.disease-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  margin-top: 30px;
}

.fields-page__item,
.disease-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 5) / 6);
          flex: 0 0 calc((100% - 20px * 5) / 6);
}

.disease-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.disease-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
          flex: 0 0 calc((100% - 20px * 4) / 5);
}

.departament {
  padding-bottom: 70px;
}

.departament__wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 70px;
}

.departament__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.departament__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
  border-radius: 8px;
  overflow: hidden;
}

.departament__img {
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 340px;
}

.departament__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.departament__description {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.departament__description > div > *:not(:last-child) {
  margin-bottom: 5px;
}

.departament__more {
  margin-top: 5px;
  color: #EF7D00;
  display: inline-block;
}

.departament__more span._less {
  display: none;
}

.departament__more span._more {
  display: block;
}

.departament__tabs {
  width: 100%;
}

.departament__blocks {
  margin-top: 30px;
}

.departament__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.departament__top._active .departament__name {
  color: #EF7D00;
}

.departament__top._active .departament__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.departament__top._active .departament__arrow svg path {
  fill: #EF7D00;
}

.departament__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.departament__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.departament__arrow img,
.departament__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.departament__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.departament__pagging {
  margin-top: 15px;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding-bottom: 8px;
  border-bottom: 1px solid #DEDEDE;
}

.navigation__item {
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.navigation__item._active {
  color: #EF7D00;
}

.navigation__item._active::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  background: #EF7D00;
  display: inline-block;
}

.medical-departament {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.medical-departament__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.analize-departament {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.analize {
  padding: 15px 20px;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.analize._liked .analize__like svg path._fill {
  display: block;
}

.analize__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.analize__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.analize__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}

.analize__cod {
  color: #2A9840;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.analize__time {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.analize__time::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../images/icons/time.svg) center/cover no-repeat;
}

.analize__mods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 5px;
}

.analize__mods span {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.analize__mods span._fiol {
  background: #774DED;
}

.analize__mods span._pink {
  background: #ED4D7D;
}

.analize__mod {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.analize__mod._fiol {
  background: #774DED;
}

.analize__mod._pink {
  background: #ED4D7D;
}

.analize__discount {
  width: auto;
  min-width: 63px;
}

.analize__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  width: 90px;
}

.analize__price span._now {
  color: #EF7D00;
}

.analize__price span._old {
  color: #9F9F9F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.analize__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.analize__button {
  white-space: nowrap;
}

.analize__like svg path {
  fill: #EF7D00;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.analize__like svg path._fill {
  display: none;
}

.discount {
  border-radius: 4px;
  background: #2A9840;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.discount._economy {
  background: #F5CA11;
  color: #313131;
}

.discount._economy .discount__head {
  background: #C9A610;
}

.discount__head {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  padding: 2px 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #236F33;
}

.discount__body {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19px;
          flex: 0 0 19px;
  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: 1px 4px;
}

.inf {
  position: relative;
}

.inf__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.inf__icon svg path {
  fill: #919191;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.inf__icon:hover svg path {
  fill: #EF7D00;
}

.inf__icon:hover + .inf__body {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.inf__icon img,
.inf__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.inf__body {
  position: absolute;
  right: -10px;
  top: calc(100% + 5px);
  max-width: 430px;
  width: calc(100vw - 50px);
  font-size: 16px;
  color: #313131;
  line-height: 1.2;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  border: 1px solid #EFEFEF;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.card-analize {
  padding-bottom: 70px;
}

.card-analize__wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
}

.card-analize__section {
  padding: 30px 0px;
  border-bottom: 1px solid #E4E4E4;
}

.card-analize__section:first-child {
  padding-top: 0;
}

.card-analize__section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.main-card-analize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.main-card-analize__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.main-card-analize__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 580px;
          flex: 0 0 580px;
}

.main-card-analize__img {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 63.3%;
  border-radius: 8px;
  overflow: hidden;
}

.main-card-analize__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-card-analize__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.main-card-analize__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.main-card-analize__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.main-card-analize__title {
  color: #313131;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-card-analize__code {
  color: #2A9840;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-card-analize__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-card-analize__price {
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.main-card-analize__price span._old {
  font-size: 16px;
  color: #9F9F9F;
  font-weight: 400;
  text-decoration: line-through;
}

.main-card-analize__price span._now {
  color: #EF7D00;
}

.main-card-analize__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-card-analize__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.main-card-analize__like svg path._fill {
  display: none;
}

.main-card-analize__like img,
.main-card-analize__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.main-card-analize__like._liked svg path._fill {
  display: block;
}

.description-main-card-analize__body {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.description-main-card-analize__body > *:not(:last-child) {
  margin-bottom: 5px;
}

.description-main-card-analize__more {
  display: none;
  color: #EF7D00;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 5px;
}

.characteristic-card-analize__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  width: 100%;
}

.characteristic-card-analize__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
  background: #FEF7F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 12px 20px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.characteristic-card-analize__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.characteristic-card-analize__value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  font-weight: 500;
}

.list-card-analize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.list-card-analize__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.list-card-analize__item {
  border: 1px solid #EBEBEB;
}

.analiz-card-second {
  padding-bottom: 70px;
}

.analiz-card-second__wrapper {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
}

.analiz-card-second__section {
  padding: 30px 0px;
}

.analiz-card-second__section:not(:last-child) {
  border-bottom: 1px solid #E4E4E4;
}

.analiz-card-second__section:first-child {
  padding-top: 0;
}

.analiz-card-second__section:last-child {
  padding-bottom: 0;
}

.analiz-card-second__description {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.main-analiz-card-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-analiz-card-second__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.main-analiz-card-second__name {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-analiz-card-second__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.main-analiz-card-second__code {
  color: #2A9840;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-analiz-card-second__mod {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.main-analiz-card-second__mod._fiol {
  background: #774DED;
}

.main-analiz-card-second__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
}

.main-analiz-card-second__price {
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-analiz-card-second__price span._old {
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
  color: #9F9F9F;
}

.main-analiz-card-second__price span._now {
  color: #EF7D00;
}

.main-analiz-card-second__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.main-analiz-card-second__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.main-analiz-card-second__like._liked svg path._fill {
  display: block;
}

.main-analiz-card-second__like svg path._fill {
  display: none;
}

.main-analiz-card-second__like img,
.main-analiz-card-second__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.promotion {
  padding-bottom: 70px;
}

.promotion__content {
  margin-top: 20px;
}

.promotion__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.promotion__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
}

.promotion__pagging {
  margin-top: 30px;
}

.promo {
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.promo__image {
  width: 100%;
  padding-bottom: 39.5%;
  position: relative;
  display: block;
}

.promo__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.promo__body {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.promo__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.promo__description {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.time-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.time-promo__text {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.timer {
  padding: 6px 12px;
  border-radius: 8px 0px 0px 8px;
  background: #EAF5EC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #2A9840;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.timer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
}

.timer__value {
  color: #2A9840;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.timer__name {
  color: #2A9840;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.promo-page {
  padding-bottom: 70px;
}

.promo-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.promo-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.promo-page__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
}

.promo-page__data {
  color: #2A9840;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 6px 12px;
  border-radius: 50px;
  background: #EAF5EC;
}

.promo-page__publish {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.promo-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.promo-page__image {
  width: 100%;
  position: relative;
  padding-bottom: 38%;
  overflow: hidden;
  border-radius: 8px;
}

.promo-page__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.promo-page__body {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.promo-page__body > *:not(:last-child) {
  margin-bottom: 5px;
}

.promo-page__body ul {
  padding-left: 25px;
}

.promo-page__body ul li {
  list-style: disc;
}

.promo-page__body a {
  color: #EF7D00;
  font-weight: 500;
  text-decoration: underline;
}

.analize-list {
  padding: 70px 0px;
  background: #F8F8F8;
}

.analize-list__content {
  margin-top: 15px;
}

.analize-list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.analize-list__pagging {
  margin-top: 15px;
}

.other-promo {
  padding: 70px 0px;
}

.other-promo__content {
  margin-top: 30px;
  position: relative;
}

.other-promo__slider {
  overflow: visible;
}

.other-promo__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
}

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

.other-promo__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  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: 50%;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.other-promo__arrow svg path {
  fill: #EF7D00;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.other-promo__arrow.other-promo-arrow-prev {
  left: -10px;
  -webkit-transform: translateY(-50%) translateX(-100%);
      -ms-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}

.other-promo__arrow.other-promo-arrow-next {
  right: -10px;
  -webkit-transform: translateY(-50%) translateX(100%);
      -ms-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}

.other-promo__arrow img,
.other-promo__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.other-promo__paggination {
  margin-top: 20px;
}

.news-list-page {
  padding-bottom: 70px;
}

.news-list-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.news-list-page__body {
  margin-top: 30px;
}

.news-list-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.news-list-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
}

.news-list-page__pagging {
  margin-top: 30px;
}

.nav-news-list-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.nav-news-list-page__item {
  padding: 10px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #EF7D00;
  border-radius: 50px;
  cursor: pointer;
}

.nav-news-list-page__item._active {
  background: #EF7D00;
  color: #fff;
  font-weight: 500;
}

.news-page {
  padding-bottom: 70px;
}

.news-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.news-page__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.news-page__content {
  margin-top: 20px;
}

.news-page__banner {
  width: 100%;
  padding-bottom: 37.2%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.news-page__banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-page__body {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.news-page__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 310px;
          flex: 0 0 310px;
}

.head-news-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.head-news-page__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-news-page__title {
  color: #313131;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.section-news-page__body {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.section-news-page__description {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.section-news-page__description a {
  color: #EF7D00;
  font-weight: 500;
  text-decoration: underline;
}

.section-news-page__lister:first-child {
  margin-top: 8px;
}

.section-news-page__lister._revers .section-news-page__image {
  float: left;
  margin-left: auto;
  margin-right: 30px;
}

.section-news-page__image {
  width: 440px;
  float: right;
  margin-bottom: 30px;
  margin-left: 30px;
}

.section-news-page__image img {
  width: 100%;
  max-width: 100%;
}

.list-section-news-page__item {
  display: block;
}

.list-section-news-page__item:not(:last-child) {
  margin-bottom: 20px;
}

.list-section-news-page__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.list-section-news-page__name::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9px;
          flex: 0 0 9px;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background: #2A9840;
  margin-top: 6px;
}

.list-section-news-page__text {
  margin-top: 12px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.sidebar-news-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.sidebar-news-page__section {
  padding: 30px;
  background: #F8F8F8;
}

.sidebar-news-page__title {
  color: #313131;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sidebar-news-page__content {
  margin-top: 20px;
}

.sidebar-news-page__slider {
  overflow: visible;
}

.sidebar-news-page__item {
  background: #fff;
}

.sidebar-news-page__paggination {
  margin-top: 20px;
}

.diagnostic-main-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.diagnostic {
  padding: 15px 20px;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.diagnostic._liked .diagnostic__like svg path._fill {
  display: block;
}

.diagnostic__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.diagnostic__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.diagnostic__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 5px;
}

.diagnostic__mod {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 10px;
  white-space: nowrap;
}

.diagnostic__mod._fiol {
  background: #774DED;
}

.diagnostic__mod._pink {
  background: #ED4D7D;
}

.diagnostic__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.diagnostic__price {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  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-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
}

.diagnostic__price span._now {
  color: #EF7D00;
}

.diagnostic__price span._old {
  color: #9F9F9F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.diagnostic__button {
  white-space: nowrap;
}

.diagnostic__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.diagnostic__like img,
.diagnostic__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.diagnostic__like svg path._fill {
  display: none;
}

.diagnostic-card {
  padding-bottom: 70px;
}

.diagnostic-card__wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.main-diagnostic-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.main-diagnostic-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 580px;
          flex: 0 0 580px;
}

.main-diagnostic-card__img {
  width: 100%;
  max-width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.main-diagnostic-card__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-diagnostic-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.main-diagnostic-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.main-diagnostic-card__title {
  color: #313131;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-diagnostic-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-diagnostic-card__column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.main-diagnostic-card__price {
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.main-diagnostic-card__price span._old {
  font-size: 14px;
  color: #9F9F9F;
  font-weight: 400;
  text-decoration: line-through;
}

.main-diagnostic-card__price span._now {
  color: #EF7D00;
}

.main-diagnostic-card__mods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.main-diagnostic-card__mod {
  padding: 3px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 4px;
  color: #fff;
}

.main-diagnostic-card__mod._fiol {
  background: #774DED;
}

.main-diagnostic-card__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-diagnostic-card__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.main-diagnostic-card__like._liked svg path._fill {
  display: block;
}

.main-diagnostic-card__like svg path._fill {
  display: none;
}

.main-diagnostic-card__like img,
.main-diagnostic-card__like svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.description-main-diagnostic-card__body {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.description-main-diagnostic-card__body > *:not(:last-child) {
  margin-bottom: 5px;
}

.description-main-diagnostic-card__body h4 {
  font-weight: 700;
}

.description-main-diagnostic-card__body ul {
  padding-left: 25px;
}

.description-main-diagnostic-card__body ul li {
  list-style: disc;
}

.description-main-diagnostic-card__more {
  color: #EF7D00;
  display: none;
  margin-top: 5px;
}

.description-main-diagnostic-card__less {
  color: #EF7D00;
  display: inline-block;
  margin-top: 5px;
}

.characteristic-diagnostic-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.characteristic-diagnostic-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  background: #FEF7F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 12px 20px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.characteristic-diagnostic-card__item:nth-child(even) {
  background: rgba(42, 152, 64, 0.1);
}

.characteristic-diagnostic-card__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.characteristic-diagnostic-card__value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  font-weight: 500;
}

.tabel-diagnostic-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.tabel-diagnostic-card__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
  padding: 30px;
  border-radius: 8px;
  background: rgba(239, 125, 0, 0.1);
}

.tabel-diagnostic-card__name {
  color: #EF7D00;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.tabel-diagnostic-card__body {
  margin-top: 12px;
}

.tabel-diagnostic-card__list {
  padding-left: 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.tabel-diagnostic-card__list li {
  list-style: disc;
}

.tabel-diagnostic-card__list li:not(:last-child) {
  margin-bottom: 5px;
}

.anatomic {
  padding-bottom: 70px;
}

.anatomic__wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}

.anatomic__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.anatomic__blocks {
  margin-top: 30px;
}

.anatomic__block._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.anatomic__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 680px;
          flex: 0 0 680px;
}

.nav-anatomic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.nav-anatomic__item {
  cursor: pointer;
  min-width: 155px;
}

.info-anatomic__title {
  color: #313131;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.info-anatomic__text {
  color: #313131;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}

.info-anatomic__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.info-anatomic__section {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  padding: 15px;
}

.info-anatomic__body {
  border-top: 1px solid #E6E6E6;
  display: none;
  margin-top: 15px;
}

.info-anatomic__item:last-child {
  padding-bottom: 0;
}

.info-anatomic__item:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}

.top-info-anatomic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
}

.top-info-anatomic._active .top-info-anatomic__icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
      -ms-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.top-info-anatomic__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top-info-anatomic__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-info-anatomic__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
  position: relative;
}

.top-info-anatomic__icon span {
  width: 14px;
  height: 2px;
  background: #2A9840;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-info-anatomic__icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.item-info-anatomic {
  padding: 15px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.item-info-anatomic._liked .item-info-anatomic__like svg path._fill {
  display: block;
}

.item-info-anatomic__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  word-wrap: break-word;
}

.item-info-anatomic__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.item-info-anatomic__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.item-info-anatomic__price span._now {
  color: #EF7D00;
}

.item-info-anatomic__price span._old {
  color: #9F9F9F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.item-info-anatomic__button {
  width: 170px;
}

.item-info-anatomic__like svg path._fill {
  display: none;
}

.piple-anatomic {
  position: relative;
  display: inline-block;
  margin: 0px 30px;
  max-width: 100%;
  max-width: 290px;
}

.piple-anatomic__view {
  width: 100%;
  max-width: 100%;
}

.piple-anatomic__view img,
.piple-anatomic__view svg {
  width: 100%;
  max-width: 100%;
}

.piple-anatomic__anatimic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.piple-anatomic__anatimic svg g,
.piple-anatomic__anatimic svg path {
  cursor: pointer;
  opacity: 0;
}

.piple-anatomic__anatimic svg g:hover,
.piple-anatomic__anatimic g:hover g,
.piple-anatomic__anatimic svg g:hover path,
.piple-anatomic__anatimic svg path:hover {
  opacity: 1;
}

.piple-anatomic__anatimic img,
.piple-anatomic__anatimic svg {
  width: 100%;
  max-width: 100%;
}

.piple-anatomic__anatimic svg path {
  opacity: 0;
}

.centres-page {
  padding-bottom: 70px;
}

.centres-page__title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.centres-page__other {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 12px;
}

.centres-page__select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.centres-page__select .select__value {
  min-height: 40px;
}

.centres-page__blocks {
  margin-top: 30px;
}

.centres-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.centres-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
          flex: 0 0 calc((100% - 40px * 1) / 2);
}

.centres-page__map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.centres-page__map #map {
  height: 615px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.nav-centres-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.nav-centres-page__item {
  cursor: pointer;
}

.nav-centres-page__item._active svg path[fill] {
  fill: #fff;
}

.nav-centres-page__item._active svg path[stroke] {
  stroke: #fff;
}

.center-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
}

.center-item__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.center-item__img {
  width: 100%;
  padding-bottom: 113%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.center-item__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.center-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px;
}

.center-item__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.center-item__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.center-item__address {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.center-item__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #2A9840;
}

.center-item__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.center-item__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.center-item__phone img,
.center-item__phone svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.center-item__button {
  margin-top: auto;
}

.timework-center-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.timework-center-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.timework-center-item__icon img,
.timework-center-item__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.timework-center-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.timework-center-item__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}

.timework-center-item__body {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}

.card-centres-page {
  border-radius: 0px 8px 8px 0px;
  background: #fff;
  -webkit-box-shadow: -8px 0px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: -8px 0px 32px 0px rgba(11, 60, 40, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  max-width: 320px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.card-centres-page:not(._active) {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.card-centres-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.card-centres-page__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.card-centres-page__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.card-centres-page__close img,
.card-centres-page__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.card-centres-page__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.card-centres-page__image {
  width: 100%;
  max-width: 100%;
  height: 220px;
  position: relative;
}

.card-centres-page__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-centres-page__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  padding: 20px;
}

.card-centres-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.card-centres-page__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-centres-page__address {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.card-centres-page__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.card-centres-page__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #313131;
}

.card-centres-page__phone img,
.card-centres-page__phone svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.card-centres-page__button {
  width: 100%;
  max-width: 100%;
}

.timework-card-centres-page__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.timework-card-centres-page__main img,
.timework-card-centres-page__main svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.timework-card-centres-page__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.timework-card-centres-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}

.center {
  padding-bottom: 70px;
}

.center__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.center__video {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
          flex: 0 0 calc((100% - 40px * 1) / 2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding-bottom: 30%;
}

.center__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.center__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
          flex: 0 0 calc((100% - 40px * 1) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.center__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.center__name {
  color: #313131;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.center__address {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.center__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.center__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.center__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.center__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.center__button {
  width: 100%;
  max-width: 100%;
}

.center__map {
  margin-top: 70px;
}

.center__map iframe {
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
}

.timework-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.timework-center img,
.timework-center svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.timework-center__main {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
}

.timework-center__name {
  font-weight: 500;
}

.timework-center__body {
  line-height: 1.5;
  margin-top: 10px;
}

.center-medical {
  padding: 70px 0px;
  background: #F8F8F8;
}

.center-medical__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.center-medical__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.contacts {
  padding-bottom: 30px;
}

.contacts__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
}

.contacts__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contacts__body {
  margin-top: 10px;
}

.contacts__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
}

.contacts__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts__phone img,
.contacts__phone svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  height: 22px;
  width: 22px;
}

.contacts__value {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts__value a {
  color: #EF7D00;
}

.socials-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.contacts-map {
  padding: 30px 0px 70px;
}

.contacts-map__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}

.contacts-map__more {
  color: #2A9840;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts-map__body {
  margin-top: 30px;
  position: relative;
}

.contacts-map__body #map {
  height: 615px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.about {
  padding-bottom: 70px;
}

.about__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.about__video {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
          flex: 0 0 calc((100% - 40px * 1) / 2);
  position: relative;
  padding-bottom: 31%;
  border-radius: 8px;
  overflow: hidden;
}

.about__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
          flex: 0 0 calc((100% - 40px * 1) / 2);
}

.about__nav {
  overflow-x: hidden;
}

.about__navigation {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  overflow-x: auto;
}

.about__navigation .navigation__item {
  font-size: 16px;
  white-space: nowrap;
}

.about__blocks {
  margin-top: 30px;
}

.about__body {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

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

.about__body ul {
  padding-left: 25px;
}

.about__body ul li {
  list-style: disc;
}

.about__body a {
  color: #EF7D00;
  font-weight: 500;
}

.gallery-about {
  margin-top: 60px;
}

.gallery-about__content {
  position: relative;
  margin-top: 30px;
}

.gallery-about__slider {
  overflow: visible;
}

.gallery-about__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

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

.gallery-about__image {
  position: relative;
  width: 100%;
  padding-bottom: 110%;
  overflow: hidden;
}

.gallery-about__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-about__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  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: 50%;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.gallery-about__arrow svg path {
  fill: #EF7D00;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.gallery-about__arrow.gallery-about-arrow-prev {
  left: -10px;
  -webkit-transform: translateY(-50%) translateX(-100%);
      -ms-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}

.gallery-about__arrow.gallery-about-arrow-next {
  right: -10px;
  -webkit-transform: translateY(-50%) translateX(100%);
      -ms-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}

.gallery-about__arrow img,
.gallery-about__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.gallery-about__paggination {
  margin-top: 20px;
}

.login {
  padding: 70px 0px;
}

.login__wrapper {
  width: 100%;
  max-width: 475px;
  margin: 0px auto;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  padding: 30px 40px;
}

.login__nav {
  margin: 0px -40px;
}

.login__blocks {
  margin-top: 30px;
}

.login__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.login__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.login__label {
  margin-bottom: 8px;
}

.login__submit {
  width: 100%;
  max-width: 100%;
}

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

.login__forget {
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.login__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.login__back svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.login__back img,
.login__back svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.login__button {
  width: 100%;
  max-width: 100%;
}

.nav-login {
  border-bottom: 1px solid #E2E2E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-login__item {
  color: #919191;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: -1px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
  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-bottom: 7px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-login__item._active {
  border-color: #EF7D00;
  color: #EF7D00;
  font-weight: 500;
}

.connect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.connect__item {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.connect__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.connect__icon img,
.connect__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.connect__name {
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

.head-login__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 59px;
          flex: 0 0 59px;
  height: 59px;
  width: 59px;
}

.head-login__icon img,
.head-login__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 59px;
          flex: 0 0 59px;
  width: 59px;
  height: 59px;
}

.head-login__body {
  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;
  text-align: center;
  margin-top: 12px;
}

.head-login__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-login__text {
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}

.account {
  padding-bottom: 70px;
}

.account__wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.account__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 235px;
          flex: 0 0 235px;
}

.account__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.sidebar-account {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  overflow: hidden;
}

.sidebar-account__item {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.sidebar-account__item._active {
  background: rgba(239, 125, 0, 0.1);
}

.sidebar-account__item._active .sidebar-account__name {
  color: #EF7D00;
}

.sidebar-account__item._active .sidebar-account__arrow svg path {
  fill: #EF7D00;
}

.sidebar-account__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.sidebar-account__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.sidebar-account__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sidebar-account__arrow img,
.sidebar-account__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.main-account__body {
  padding: 40px;
}

.top-main-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 30px 0px;
}

.top-main-account._active .top-main-account__name {
  color: #EF7D00;
  font-weight: 700;
}

.top-main-account._active .top-main-account__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.top-main-account._active .top-main-account__arrow svg path {
  fill: #EF7D00;
}

.top-main-account__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.top-main-account__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-main-account__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-main-account__arrow img,
.top-main-account__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.data-account__section {
  padding: 30px 0px;
}

.data-account__section:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}

.data-account__section:first-child {
  padding-top: 0;
}

.data-account__section:last-child {
  padding-bottom: 0;
}

.data-account__title {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.data-account__form {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.data-account__form._password .data-account__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.data-account__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.data-account__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
}

.data-account__item._full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.data-account__label {
  margin-bottom: 8px;
}

.data-account__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.data-account__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
          flex: 0 0 calc((100% - 20px * 2) / 3);
}

.data-account__button {
  min-width: 240px;
}

.order-main-account__title {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.order-main-account__content {
  margin-top: 30px;
}

.order-main-account__head {
  padding-bottom: 10px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 150px 150px 150px 20px;
  grid-template-columns: 150px 150px 150px 20px;
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #EBEBEB;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.order-main-account__item {
  padding: 20px 0px;
  border-bottom: 1px solid #EBEBEB;
}

.item-order-main-account__main {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 150px 150px 150px 20px;
  grid-template-columns: 150px 150px 150px 20px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.item-order-main-account__main._active {
  color: #EF7D00;
}

.item-order-main-account__main._active .item-order-main-account__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.item-order-main-account__main._active .item-order-main-account__arrow svg path {
  fill: #EF7D00;
}

.item-order-main-account__arrow {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-order-main-account__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-order-main-account__body {
  display: none;
  margin-top: 20px;
}

.item-order-main-account__list {
  background: #FEF2E6;
}

.item-order-main-account__item {
  padding: 12px 20px;
}

.item-order-main-account__item:not(:last-child) {
  border-bottom: 1px solid #C6C6C6;
}

.item-order-main-account__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
}

.item-order-main-account-analize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}

.item-order-main-account-analize__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.item-order-main-account-analize__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-order-main-account-analize__time {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-order-main-account-analize__time::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../images/icons/time.svg) center/cover no-repeat;
}

.item-order-main-account-analize__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}

.item-order-main-account-analize__status._success::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #2A9840;
}

.item-order-main-account-analize__status._proccess::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #919191;
}

.item-order-main-account-analize__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #313131;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
}

.item-order-main-account-analize__price span._old {
  font-size: 14px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.item-order-main-account-analize__price span._now {
  color: #EF7D00;
}

.item-order-main-account-analize__button {
  white-space: nowrap;
}

.item-order-main-account-consultation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}

.item-order-main-account-consultation__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.item-order-main-account-consultation__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-order-main-account-consultation__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-order-main-account-consultation__address {
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-order-main-account-consultation__address span {
  display: inline-block;
  color: #919191;
}

.item-order-main-account-consultation__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #313131;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}

.item-order-main-account-consultation__status._success::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #2A9840;
}

.item-order-main-account-consultation__status._proccess::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #919191;
}

.item-order-main-account-consultation__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #313131;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
}

.item-order-main-account-consultation__price span._old {
  font-size: 14px;
  color: #9F9F9F;
  text-decoration: line-through;
  font-weight: 400;
}

.item-order-main-account-consultation__price span._now {
  color: #EF7D00;
}

.item-order-main-account-consultation__button {
  white-space: nowrap;
}

.favorite-main-account__title {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.favorite-main-account__content {
  margin-top: 30px;
}

.favorite-main-account__navigation .navigation__item {
  font-size: 16px;
}

.favorite-main-account__body {
  margin-top: 30px;
}

.favorite-main-account__body._md4 .body-favorite-main-account__top {
  padding: 0px 12px;
}

.top-favorite-main-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top-favorite-main-account._active .top-favorite-main-account__name {
  color: #EF7D00;
}

.top-favorite-main-account._active svg path {
  fill: #EF7D00;
}

.top-favorite-main-account__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.top-favorite-main-account__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.top-favorite-main-account__arrow img,
.top-favorite-main-account__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.top-favorite-main-account__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-favorite-main-account__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.body-favorite-main-account__clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #919191;
}

.body-favorite-main-account__content {
  margin-top: 30px;
}

.medical-body-favorite-main-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
}

.medical-body-favorite-main-account__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
          flex: 0 0 calc((100% - 20px * 2) / 3);
}

.analize-body-favorite-main-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.diagnostic-body-favorite-main-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.procedure-body-favorite-main-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.favorite {
  padding-bottom: 70px;
}

.favorite__content {
  margin-top: 30px;
}

.favorite__body {
  margin-top: 30px;
}

.top-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top-favorite._active .top-favorite__name {
  color: #EF7D00;
}

.top-favorite._active .top-favorite__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.top-favorite._active .top-favorite__arrow svg path {
  fill: #EF7D00;
}

.top-favorite__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-favorite__arrow {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-favorite__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-favorite__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.body-favorite__clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.body-favorite__clear svg path {
  fill: #919191;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-favorite__content {
  margin-top: 15px;
}

.medical-body-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.medical-body-favorite__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.analize-body-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.diagnostic-body-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.procedure-body-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.result {
  padding-bottom: 70px;
}

.result__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-top: 30px;
}

.result__name {
  color: #313131;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.result__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.result__list._medics .item-result {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.result__list._medics .item-result__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.result__list._medics .item-result__actions {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.item-result {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
}

.item-result__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-result__name {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.item-result__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  row-gap: 10px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-result__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #919191;
}

.item-result__time img,
.item-result__time svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.item-result__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.item-result__price {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.item-result__price span._now {
  color: #EF7D00;
}

.item-result__price span._old {
  color: #9F9F9F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.item-result__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.item-result__like img,
.item-result__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.item-result__like._liked svg path._fill {
  display: block;
}

.item-result__like svg path._fill {
  display: none;
}

.error-page {
  padding: 50px 0px;
}

.error-page__wrapper {
  width: 100%;
  max-width: 700px;
  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;
  row-gap: 40px;
  margin: 0px auto;
}

.error-page__image {
  width: 100%;
  max-width: 660px;
}

.error-page__image img,
.error-page__image svg {
  width: 100%;
  max-width: 100%;
}

.error-page__body {
  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;
  text-align: center;
}

.error-page__title {
  color: #313131;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.error-page__text {
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
  color: #919191;
}

.error-page__button {
  margin-top: 40px;
  padding: 10px 40px;
}

.disease-card {
  padding-bottom: 70px;
}

.disease-card__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
}

.info-disease-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 20px;
}

.info-disease-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
}

.info-disease-card__img {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 340px;
}

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

.info-disease-card__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.info-disease-card__body > *:not(:last-child) {
  margin-bottom: 5px;
}

.tabel-disease-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.tabel-disease-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 2) / 3);
          flex: 0 0 calc((100% - 50px * 2) / 3);
  padding: 30px;
  border-radius: 8px;
  background: rgba(239, 125, 0, 0.1);
}

.tabel-disease-card__name {
  color: #EF7D00;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.tabel-disease-card__body {
  margin-top: 12px;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.tabel-disease-card__body ul {
  padding-left: 25px;
}

.tabel-disease-card__body ul li {
  list-style: disc;
}

.help {
  padding-bottom: 70px;
}

.help__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: 30px;
}

.help__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.help__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.sidebar-help {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
          box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.06);
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.sidebar-help__item {
  padding: 12px 15px;
  border-radius: 8px;
  background: #F7F7F7;
}

.sidebar-help__item._active {
  background: #FEF2E6;
  color: #EF7D00;
  font-weight: 500;
}

.main-help__body {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 40px;
}

.main-help__section:not(:last-child) {
  margin-bottom: 30px;
}

.main-help__title {
  color: #313131;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.main-help__description {
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.main-help__description:not(:first-child) {
  margin-top: 20px;
}

.top-main-help {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top-main-help._active .top-main-help__name {
  color: #EF7D00;
  font-weight: 500;
}

.top-main-help._active .top-main-help__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.top-main-help._active .top-main-help__arrow svg path {
  fill: #EF7D00;
}

.top-main-help__name {
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.top-main-help__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-main-help__arrow img,
.top-main-help__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.top-main-help__arrow svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 138px;
}

header._with-top .menu__body {
  top: calc(51px + 36px);
  max-height: calc(100% - (51px + 36px));
}

header._with-top + .page {
  padding-top: calc(138px + 36px);
}

@media (min-width: 479.98px) {
  .registration-popup__picker {
    display: none;
  }

  .registration-popup__item .qs-datepicker-container {
    width: calc(100% * 2 + 20px);
  }

  .card-analize-popup__footer {
    display: none;
  }

  .filter-catalog__more {
    display: none;
  }

  .departament__more {
    display: none;
  }

  .head-login {
    margin-bottom: 10px;
  }
}

@media (min-width: 720.98px) {
  .cart-header__close {
    display: none;
  }

  .specialist__body > *:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .payments-main-order .payments-main-order__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    padding: 20px 30px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .payments-main-order .payments-main-order__name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .card-centres-page__head {
    display: none;
  }

  .data-account__form._password {
    max-width: calc((100% - 20px) / 2);
  }

  .item-order-main-account__repeat {
    padding: 8px 40px;
  }

  .item-order-main-account__review {
    padding: 8px 40px;
  }

  .favorite-main-account__top {
    display: none;
  }

  .favorite-main-account__body {
    display: block !important;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .header__main {
    border-bottom: 1px solid #F3F3F3;
  }

  .other-header__catalog {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .other-header__search {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0px 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .other-header__actions {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .other-header__cart {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .catalog-header {
    position: relative;
  }

  .catalog-header__top {
    display: none;
  }

  .search-header__icon {
    display: none;
  }

  .search-header__close {
    display: none;
  }

  .cart-other-header._active .cart-other-header__main {
    background: #EF7D00;
    color: #fff;
  }

  .cart-other-header._active .cart-other-header__main .cart-other-header__value {
    color: #fff;
  }

  .cart-other-header._active .cart-other-header__main .cart-other-header__value span {
    color: #fff;
  }

  .cart-other-header._active .cart-other-header__main svg path:not(._stroke) {
    fill: #fff;
  }

  .cart-other-header._active .cart-other-header__main svg path._stroke {
    stroke: #fff;
  }

  .menu {
    display: none;
  }

  .bottom-nav {
    display: none;
  }

  .main-footer__name {
    pointer-events: none;
  }

  .main-footer__body {
    display: block !important;
  }

  .centres__body::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 126px;
    height: 186px;
    background: url(../images/robot-2.svg) center/cover no-repeat;
  }

  .head-catalog__filter-btn {
    display: none;
  }

  .filter-catalog__footer {
    display: none;
  }

  .head-filter-catalog__close {
    display: none;
  }

  .departament__top {
    display: none;
  }

  .characteristic-card-analize__item:nth-child(4n+2) {
    background: rgba(42, 152, 64, 0.1);
  }

  .characteristic-card-analize__item:nth-child(4n+3) {
    background: rgba(42, 152, 64, 0.1);
  }

  .main-account__top {
    display: none;
  }

  .main-account__body {
    background: #fff;
    border-radius: 8px;
  }

  .favorite__top {
    display: none;
  }

  .main-help__top {
    display: none;
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #EF7D00;
    color: #fff;
  }

  .checkbox a:hover {
    color: #EF7D00;
  }
}

@media (min-width: 1342px) {
  .cart-header {
    right: calc((100% - 1290px) / 2);
  }

  .banner__text._md1 {
    display: none;
  }

  .explore__title::after {
    content: "";
    width: 63px;
    height: 93px;
    position: absolute;
    bottom: -10px;
    left: calc(100% + 20px);
    background: url(../images/robot.svg) center/cover no-repeat;
  }

  .section-service__item {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease 0.2s;
    -o-transition: opacity 0.3s ease 0.2s;
    transition: opacity 0.3s ease 0.2s;
  }

  .section-service__item.swiper-slide-visible {
    opacity: 1;
    pointer-events: all;
  }

  .section-service__paggination {
    display: none;
  }

  .registration._page .registration__from {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 540px;
            flex: 0 0 540px;
  }

  .registration._page .form-registration__body {
    row-gap: 30px;
  }

  .registration._page .form-registration__footer {
    margin-top: 30px;
  }

  ._no-webp .specialist-review {
    background: url(../images/specialist-review-bg.png) center/cover no-repeat, #F8F8F8; }

  .recomendation-specialist__item {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease 0.2s;
    -o-transition: opacity 0.3s ease 0.2s;
    transition: opacity 0.3s ease 0.2s;
  }

  .recomendation-specialist__item.swiper-slide-visible {
    opacity: 1;
    pointer-events: all;
  }

  .recomendation-specialist__paggination {
    display: none;
  }

  .other-promo__item {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease 0.2s;
    -o-transition: opacity 0.3s ease 0.2s;
    transition: opacity 0.3s ease 0.2s;
  }

  .other-promo__item.swiper-slide-visible {
    opacity: 1;
    pointer-events: all;
  }

  .other-promo__paggination {
    display: none;
  }

  .sidebar-news-page__head .head-section__title {
    font-size: 22px;
  }

  .sidebar-news-page__head .head-section__btn {
    display: none;
  }

  .sidebar-news-page__slider .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .sidebar-news-page__item .news__name {
    font-size: 14px;
  }

  .sidebar-news-page__item .news__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    row-gap: 5px;
  }

  .sidebar-news-page__item .news__description {
    display: none;
  }

  .sidebar-news-page__item .news__body {
    padding: 15px;
  }

  .sidebar-news-page__item .news__other {
    row-gap: 12px;
  }

  .sidebar-news-page__paggination {
    display: none;
  }

  .description-main-diagnostic-card__more {
    display: none;
  }

  .description-main-diagnostic-card__less {
    display: none;
  }

  .top-info-anatomic__inf .inf__body {
    left: 0;
    right: auto;
  }

  .about__navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .gallery-about__item {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease 0.2s;
    -o-transition: opacity 0.3s ease 0.2s;
    transition: opacity 0.3s ease 0.2s;
  }

  .gallery-about__item.swiper-slide-visible {
    opacity: 1;
    pointer-events: all;
  }

  .gallery-about__paggination {
    display: none;
  }
}

@media (max-width: 1342px) {
  .main-header__container {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .main-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 109px;
            flex: 0 0 109px;
  }

  .nav-main-header {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .contacts-main-header {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .contacts-main-header__item {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .other-header__catalog {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 235px;
            flex: 0 0 235px;
  }

  .catalog-header__content {
    padding: 20px 10px 20px 15px;
  }

  .footer__main {
    padding: 40px 0px;
  }

  .main-footer__container > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
            flex: 0 0 calc((100% - 40px * 2) / 3);
  }

  .banner-section {
    padding: 20px 0px 30px;
  }

  .banner-section__catalog {
    display: none;
  }

  .banner-section__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .banner__image_md1 {
    display: none;
  }

  .services__item {
    height: 170px;
  }

  .services__name {
    font-size: 16px;
    max-width: 100px;
  }

  .services__button {
    min-height: 34px;
  }

  .services__image {
    -webkit-transform: scale(0.8) translateX(12.5%) translateY(12.5%);
        -ms-transform: scale(0.8) translateX(12.5%) translateY(12.5%);
            transform: scale(0.8) translateX(12.5%) translateY(12.5%);
  }

  .explore__wrapper {
    padding: 10px 15px 10px 40px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .section-service__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .section-service__arrow {
    display: none;
  }

  .news-section__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .news-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .news__info {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .registration._page {
    padding-bottom: 60px;
  }

  .registration._page .registration__from {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .registration._page .registration__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .registration__wrapper {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    padding: 50px 0px 50px 20px;
  }

  .registration__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .centres__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .centres__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .centres__map {
    height: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .catalog__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .catalog__filter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }

  .filter-catalog {
    padding: 20px 15px;
  }

  .medical-main-catalog {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .medical-main-catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .medical__title {
    margin-bottom: -5px;
  }

  .medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .analize-main-catalog .analize__mods span:not(:first-child) {
    display: none;
  }

  .analize-main-catalog .analize__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 0;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    padding: 0px;
  }

  .analize-main-catalog .analize__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    display: inline-block;
    background: url(../images/icons/cart.svg) center/cover no-repeat;
  }

  .specialist {
    padding-bottom: 60px;
  }

  .specialist__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .specialist__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .specialist__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .specialist__photo {
    height: auto;
    padding-bottom: 135%;
  }

  .specialist-review {
    background: #F8F8F8;
    padding: 60px 0px;
  }

  .recomendation-specialist {
    padding: 60px 0px;
  }

  .recomendation-specialist__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .recomendation-specialist__item:not(:last-child) {
    margin-right: 20px;
  }

  .recomendation-specialist__arrow {
    display: none;
  }

  .order {
    padding-bottom: 60px;
  }

  .order__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .order__main {
    padding: 20px;
  }

  .order__sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 340px;
            flex: 0 0 340px;
  }

  .sidebar-order__wrapper {
    row-gap: 20px;
  }

  .footer-sidebar-order__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    row-gap: 20px;
  }

  .fields-page,
  .disease-page {
    padding-bottom: 60px;
  }

  .fields-page__item,
  .disease-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
            flex: 0 0 calc((100% - 20px * 4) / 5);
  }

  .fields-page__item .disease__body,
  .disease-page__item .disease__body {
    row-gap: 8px;
  }

  .fields-page__item .list-disease__icon,
  .disease-page__item .list-disease__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
  }

  .fields-page__item .list-disease__icon img,
  .fields-page__item .list-disease__icon svg,
  .disease-page__item .list-disease__icon img,
  .disease-page__item .list-disease__icon svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }

  .disease-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .departament {
    padding-bottom: 60px;
  }

  .departament__wrapper {
    row-gap: 60px;
  }

  .departament__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .departament__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .departament__description {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .medical-departament {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .medical-departament__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .card-analize {
    padding-bottom: 60px;
  }

  .card-analize__wrapper {
    padding: 20px;
  }

  .main-card-analize__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .main-card-analize__img {
    padding-bottom: 70%;
  }

  .main-card-analize__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .main-card-analize__title {
    font-size: 24px;
  }

  .description-main-card-analize:not(._view-all) .description-main-card-analize__body {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 5;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }

  .description-main-card-analize__more {
    display: inline-block;
  }

  .analiz-card-second {
    padding-bottom: 60px;
  }

  .analiz-card-second__wrapper {
    padding: 20px;
  }

  .main-analiz-card-second__name {
    font-size: 24px;
  }

  .main-analiz-card-second__actions {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .main-analiz-card-second__action {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .promotion {
    padding-bottom: 60px;
  }

  .promotion__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .promotion__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .promo__name {
    font-size: 16px;
  }

  .promo-page {
    padding-bottom: 60px;
  }

  .analize-list {
    padding: 60px 0px;
  }

  .other-promo {
    padding: 60px 0px;
  }

  .other-promo__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .other-promo__item:not(:last-child) {
    margin-right: 20px;
  }

  .other-promo__arrow {
    display: none;
  }

  .news-list-page {
    padding-bottom: 60px;
  }

  .nav-news-list-page {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .news-page {
    padding-bottom: 0px;
  }

  .news-page__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 60px;
  }

  .news-page__sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .section-news-page__image {
    width: calc((100% - 30px) / 2);
  }

  .sidebar-news-page {
    row-gap: 0px;
  }

  .sidebar-news-page__section {
    padding: 60px 20px;
    margin: 0px -20px;
  }

  .sidebar-news-page__section:nth-child(even) {
    background: none;
  }

  .sidebar-news-page__head .sidebar-news-page__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .sidebar-news-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .sidebar-news-page__item:not(:last-child) {
    margin-right: 30px;
  }

  .diagnostic-card {
    padding-bottom: 60px;
  }

  .main-diagnostic-card__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .main-diagnostic-card__img {
    height: 320px;
  }

  .main-diagnostic-card__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .main-diagnostic-card__title {
    font-size: 24px;
  }

  .main-diagnostic-card__column {
    row-gap: 5px;
  }

  .description-main-diagnostic-card:not(._view-all) .description-main-diagnostic-card__body {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 7;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }

  .description-main-diagnostic-card:not(._view-all) .description-main-diagnostic-card__more {
    display: inline-block;
  }

  .description-main-diagnostic-card:not(._view-all) .description-main-diagnostic-card__less {
    display: none;
  }

  .tabel-diagnostic-card {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .tabel-diagnostic-card__column {
    padding: 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .anatomic {
    padding-bottom: 60px;
  }

  .anatomic__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .anatomic__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .anatomic__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .nav-anatomic__item {
    min-width: 150px;
  }

  .top-info-anatomic__inf .inf__body {
    right: auto;
    -webkit-transform: translateX(-60%);
        -ms-transform: translateX(-60%);
            transform: translateX(-60%);
    max-width: 320px;
  }

  .item-info-anatomic__actions {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .item-info-anatomic__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 0;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    padding: 0px;
  }

  .item-info-anatomic__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    display: inline-block;
    background: url(../images/icons/cart.svg) center/cover no-repeat;
  }

  .centres-page {
    padding-bottom: 60px;
  }

  .centres-page__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .centres-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .center-item__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 233px;
            flex: 0 0 233px;
  }

  .center-item__img {
    padding-bottom: 86%;
  }

  .center-item__body {
    padding: 15px;
  }

  .center-item__name {
    font-size: 16px;
  }

  .center {
    padding-bottom: 60px;
  }

  .center__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .center__video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .center__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .center__name {
    font-size: 20px;
  }

  .center__map iframe {
    height: 380px;
  }

  .center__map {
    margin-top: 60px;
  }

  .center__map {
    margin-top: 50px;
  }

  .center__map {
    margin-top: 40px;
  }

  .center-medical {
    padding: 60px 0px;
  }

  .center-medical__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .center-medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .contacts__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .contacts__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
    padding: 30px 20px;
  }

  .contacts__phone {
    font-size: 16px;
  }

  .contacts__value {
    font-size: 16px;
  }

  .contacts-map {
    padding: 30px 0px 60px;
  }

  .about {
    padding-bottom: 60px;
  }

  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }

  .about__video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding-bottom: 64%;
  }

  .about__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .gallery-about__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .gallery-about__item:not(:last-child) {
    margin-right: 20px;
  }

  .gallery-about__arrow {
    display: none;
  }

  .login {
    padding: 60px 0px;
  }

  .account {
    padding-bottom: 60px;
  }

  .account__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .main-account__body {
    padding: 20px;
  }

  .data-account__section {
    padding: 20px 0px;
  }

  .data-account__form {
    margin-top: 20px;
  }

  .order-main-account__content {
    margin-top: 20px;
  }

  .item-order-main-account-analize {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }

  .item-order-main-account-analize__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 0;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    padding: 0px;
    background: #EF7D00;
  }

  .item-order-main-account-analize__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    height: 24px;
    width: 24px;
    display: inline-block;
    background: url(../images/icons/cart-w.svg) center/cover no-repeat;
  }

  .item-order-main-account-consultation {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }

  .item-order-main-account-consultation__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 0;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    padding: 0px;
    background: #EF7D00;
  }

  .item-order-main-account-consultation__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    height: 24px;
    width: 24px;
    display: inline-block;
    background: url(../images/icons/cart-w.svg) center/cover no-repeat;
  }

  .favorite-main-account__content {
    margin-top: 20px;
  }

  .body-favorite-main-account__content {
    margin-top: 20px;
  }

  .medical-body-favorite-main-account {
    row-gap: 20px;
  }

  .medical-body-favorite-main-account__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .medical-body-favorite-main-account__item .medical__body {
    padding: 20px;
    row-gap: 15px;
  }

  .medical-body-favorite-main-account__item .medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
  }

  .analize-body-favorite-main-account__item .analize__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 0;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    padding: 0px;
  }

  .analize-body-favorite-main-account__item .analize__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    display: inline-block;
    background: url(../images/icons/cart.svg) center/cover no-repeat;
  }

  .favorite {
    padding-bottom: 60px;
  }

  .favorite__content {
    margin-top: 20px;
  }

  .medical-body-favorite {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .medical-body-favorite__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .result {
    padding-bottom: 60px;
  }

  .result__content {
    row-gap: 30px;
  }

  .item-result__actions {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .disease-card {
    padding-bottom: 60px;
  }

  .disease-card__content {
    row-gap: 40px;
  }

  .info-disease-card {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .info-disease-card__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .info-disease-card__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .tabel-disease-card {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .tabel-disease-card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
    padding: 20px;
  }

  .help {
    padding-bottom: 60px;
  }

  .help__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .help__sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }

  .sidebar-help {
    padding: 12px;
  }

  .main-help__body {
    padding: 20px;
  }

  .main-help__section:not(:last-child) {
    margin-bottom: 20px;
  }

  .main-help__title {
    font-size: 22px;
  }
}

@media (max-width: 1342px) and (max-width: 991.98px) {
  .sidebar-news-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .sidebar-news-page__item:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 1342px) and (max-width: 720.98px) {
  .sidebar-news-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 991.98px) {
  .wrapper {
    padding-bottom: 74px;
  }

  ._title {
    font-size: 28px;
  }

  .header__main {
    padding: 6px 0px;
  }

  .top-header__text {
    font-size: 14px;
  }

  .top-header__details {
    font-size: 14px;
  }

  .top-header__details img,
  .top-header__details svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }

  .main-header .main-header__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .main-header .main-header__results {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .main-header .actions-header__item._account {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .main-header .main-header__language {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .main-header .other-header__search {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .main-header .actions-header__item._favorite {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .main-header .other-header__cart {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .main-header .main-header__icon {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .main-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 93px;
            flex: 0 0 93px;
  }

  .main-header__nav {
    display: none;
  }

  .main-header__results {
    padding: 4px 15px !important;
    min-height: 34px;
    font-size: 14px;
  }

  .contacts-main-header {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .contacts-main-header__item {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .catalog-header__button {
    padding: 15px 20px;
    min-height: 60px;
  }

  .catalog-header__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    margin-left: auto;
    background: url(../images/icons/more.svg) center/cover no-repeat;
  }

  .catalog-header__content {
    position: fixed;
    top: 0px;
    left: 0;
    background: #fff;
    height: 100%;
    max-height: 100%;
    min-height: calc(100vh - 51px);
    z-index: 3;
  }

  .catalog-header__list {
    margin-top: 30px;
  }

  .search-header__content {
    position: fixed;
    top: 51px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1;
    padding: 10px 20px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
    border-top: 1px solid #ECECEC;
  }

  .search-header__content._active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }

  .search-header__results {
    left: 20px;
    right: 20px;
    width: 100%;
    max-width: calc(100% - 40px);
    top: 100%;
    max-height: calc(100vh - 130px);
  }

  .actions-header__item._favorite .actions-header__name {
    font-size: 0;
  }

  .actions-header__item._favorite .actions-header__name span {
    font-size: 16px;
  }

  .cart-other-header__main {
    min-height: 0px;
    border: none;
    padding: 0px;
  }

  .cart-other-header__main img,
  .cart-other-header__main svg {
    width: 24px;
    max-width: 24px;
    height: 24px;
  }

  .cart-other-header__value {
    display: none;
  }

  .menu__body._catalog-open {
    overflow: hidden;
  }

  .menu__body .menu__list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .menu__body .catalog-header {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: -20px -20px 0px;
  }

  .menu__body .menu__account {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 15px 20px;
    margin: 0px -20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #313131;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    background: #FEF7F3;
    min-height: 60px;
  }

  .menu__body .menu__account::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    margin-left: auto;
    background: url(../images/icons/more.svg) center/cover no-repeat;
  }

  .menu__body .contacts-main-header {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .menu__body .menu__language {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .menu__body .menu__favorite {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    color: #313131;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .menu__body .menu__favorite img,
  .menu__body .menu__favorite svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    height: 24px;
    width: 24px;
  }

  .menu__body .menu__results {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 24px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    height: 16px;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #313131;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .icon-menu._active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .icon-menu._active span:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .main-footer__container {
    row-gap: 20px;
  }

  .main-footer__container > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .main-footer__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }

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

  .main-footer__name._spoller._active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .main-footer__name._spoller::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    margin-left: auto;
    background: url(../images/icons/spoller-w.svg) center/cover no-repeat;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .main-footer__body {
    display: none;
  }

  .nav-main-footer__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 10px;
  }

  .socials-contacts-main-footer {
    max-width: 100%;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .sale-alert {
    bottom: 90px;
  }

  .banner-section {
    padding: 20px 0px 25px;
  }

  .banner__item {
    height: 330px;
    padding: 20px 35px;
  }

  .banner__title {
    font-size: 32px;
  }

  .banner__title._click::after {
    -webkit-transform: translateX(-40%);
        -ms-transform: translateX(-40%);
            transform: translateX(-40%);
    top: 50%;
  }

  .banner__text {
    font-size: 16px;
  }

  .banner__btn {
    width: auto;
    padding: 4px 15px;
    font-size: 14px;
    min-height: 34px;
  }

  .navigation-banner-section {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .navigation-banner-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 3) / 4);
            flex: 0 0 calc((100% - 10px * 3) / 4);
  }

  .services {
    padding: 25px 0px;
  }

  .services__title {
    font-size: 28px;
  }

  .services__content {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    margin-top: 40px;
  }

  .services__item {
    padding: 45px 15px 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px *1) / 2);
            flex: 0 0 calc((100% - 40px *1) / 2);
    height: 160px;
  }

  .services__name {
    max-width: 100%;
  }

  .explore {
    padding: 25px 0px;
  }

  .explore__wrapper {
    padding: 40px 20px 0px;
    -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;
    background: url(../images/bg-explore-mob.svg) center/cover no-repeat, #F8F8F8;
  }

  .explore__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  .explore__title {
    font-size: 28px;
  }

  .explore__text {
    font-size: 16px;
  }

  .explore__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin-top: -40px;
  }

  .benefits {
    padding: 25px 0px;
  }

  .head-section__title {
    font-size: 28px;
  }

  .head-section__btn {
    min-height: 34px;
  }

  .section-service {
    padding: 50px 0px;
    margin: 25px 0px;
  }

  .section-service__container {
    row-gap: 50px;
  }

  .section-service__content {
    margin-top: 20px;
  }

  .section-service__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .news-section {
    padding: 25px 0px;
  }

  .news__description {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 3;
  }

  .news__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    row-gap: 12px;
  }

  .news__info {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }

  .registration._page {
    padding-bottom: 50px;
  }

  .registration._page .registration__image {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0px -80px 30px !important;
  }

  .registration._page .form-registration__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .registration {
    padding: 25px 0px;
  }

  ._no-webp .registration__wrapper {
    background: url(../images/bg-registration.png) center/cover no-repeat, #F8F8F8; }

  .registration__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 50px 20px;
  }

  .registration__image {
    display: none;
  }

  .form-registration__title {
    font-size: 28px;
    text-align: center;
  }

  .centres {
    padding: 25px 0px 50px;
  }

  .centres__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }

  .centres__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .centres__title {
    font-size: 28px;
  }

  .centres__map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .breadcrums {
    padding: 20px 0px;
  }

  .catalog {
    padding-bottom: 50px;
  }

  .catalog__filter {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    pointer-events: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .catalog__filter._active {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    pointer-events: all;
  }

  .head-catalog__title {
    font-size: 28px;
  }

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

  .filter-catalog__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }

  .filter-catalog__body {
    overflow: visible;
    max-height: 100%;
  }

  .head-filter-catalog {
    row-gap: 15px;
    padding-bottom: 15px;
  }

  .head-filter-catalog__reset {
    display: none;
  }

  .main-catalog__pagging {
    margin-top: 20px;
  }

  .specialist {
    padding-bottom: 50px;
  }

  .specialist__title {
    font-size: 28px;
  }

  .specialist__action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .specialist__price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .specialist__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .specialist__description {
    margin-top: 20px;
  }

  .specialist__image {
    margin-top: 0px;
  }

  .specialist__photo {
    padding-bottom: 113%;
  }

  .specialist-review {
    padding: 50px 0px;
  }

  .recomendation-specialist {
    padding: 50px 0px;
  }

  .recomendation-specialist__content {
    margin-top: 20px;
  }

  .recomendation-specialist__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .order {
    padding-bottom: 50px;
  }

  .order__wrapper {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .sidebar-order__wrapper {
    position: static !important;
  }

  .fields-page,
  .disease-page {
    padding-bottom: 50px;
  }

  .fields-page__head,
  .disease-page__head {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .fields-page__selects,
  .disease-page__selects {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .fields-page__select,
  .disease-page__select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px) / 2);
            flex: 0 0 calc((100% - 10px) / 2);
  }

  .fields-page__content,
  .disease-page__content {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
    margin-top: 20px;
  }

  .fields-page__item,
  .disease-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 3) / 4);
            flex: 0 0 calc((100% - 15px * 3) / 4);
  }

  .disease-page__content {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }

  .disease-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 3) / 4);
            flex: 0 0 calc((100% - 15px * 3) / 4);
  }

  .departament {
    padding-bottom: 50px;
  }

  .departament__wrapper {
    row-gap: 50px;
  }

  .departament__tabs {
    padding: 20px;
    margin: 0px -20px;
    background: #F8F8F8;
    width: calc(100% + 40px);
  }

  .departament__navigation {
    display: none;
  }

  .departament__blocks {
    margin-top: 0;
  }

  .departament__block {
    padding: 20px 0px;
    border-bottom: 1px solid #DEDEDE;
    display: block !important;
  }

  .departament__block:first-child {
    padding-top: 0;
  }

  .departament__block:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .departament__body {
    margin-top: 20px;
    display: none;
  }

  .medical-departament {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }

  .medical-departament__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 2) / 3);
            flex: 0 0 calc((100% - 15px * 2) / 3);
  }

  .analize__mods span:not(:first-child) {
    display: none;
  }

  .analize__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 0;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    padding: 0px;
  }

  .analize__button._disabled::after {
    background: url(../images/icons/cart-disabled.svg) center/cover no-repeat;
  }

  .analize__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    display: inline-block;
    background: url(../images/icons/cart.svg) center/cover no-repeat;
  }

  .card-analize {
    padding-bottom: 50px;
  }

  .card-analize__section {
    padding: 20px 0px;
  }

  .main-card-analize__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .main-card-analize__info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .main-card-analize__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .main-card-analize__action {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .characteristic-card-analize__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .characteristic-card-analize__item:nth-child(even) {
    background: rgba(42, 152, 64, 0.1);
  }

  .analiz-card-second {
    padding-bottom: 50px;
  }

  .analiz-card-second__section {
    padding: 20px 0px;
  }

  .main-analiz-card-second__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main-analiz-card-second__action {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .promotion {
    padding-bottom: 50px;
  }

  .promo__body {
    padding: 15px;
  }

  .promo-page {
    padding-bottom: 50px;
  }

  .promo-page__content {
    row-gap: 20px;
  }

  .analize-list {
    padding: 50px 0px;
  }

  .other-promo {
    padding: 50px 0px;
  }

  .news-list-page {
    padding-bottom: 50px;
  }

  .news-list-page__body {
    margin-top: 20px;
  }

  .news-list-page__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .news-list-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .news-page__wrapper {
    row-gap: 40px;
  }

  .news-page__body {
    row-gap: 20px;
    margin-top: 20px;
  }

  .section-news-page__title {
    font-size: 20px;
  }

  .section-news-page__body {
    row-gap: 20px;
    margin-top: 12px;
  }

  .section-news-page__image {
    margin-bottom: 30px;
  }

  .sidebar-news-page__section {
    padding: 50px 20px;
  }

  .diagnostic {
    padding: 15px;
  }

  .diagnostic__actions {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .diagnostic-card {
    padding-bottom: 50px;
  }

  .diagnostic-card__wrapper {
    padding: 20px;
    row-gap: 20px;
  }

  .main-diagnostic-card__img {
    height: auto;
    padding-bottom: 75%;
  }

  .main-diagnostic-card__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .main-diagnostic-card__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .main-diagnostic-card__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .characteristic-diagnostic-card__value {
    text-align: right;
  }

  .tabel-diagnostic-card {
    border-radius: 8px;
    background: rgba(239, 125, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }

  .tabel-diagnostic-card__column {
    background: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 12px 0px;
    border-radius: 0px;
  }

  .tabel-diagnostic-card__column:first-child {
    padding-top: 0;
  }

  .tabel-diagnostic-card__column:last-child {
    padding-bottom: 0;
  }

  .tabel-diagnostic-card__column:not(:last-child) {
    border-bottom: 1px solid #E7D0B6;
  }

  .tabel-diagnostic-card__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .tabel-diagnostic-card__name._active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .tabel-diagnostic-card__name::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    margin-left: auto;
    background: url(../images/icons/spoller-o.svg) center/cover no-repeat;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .tabel-diagnostic-card__body {
    display: none;
  }

  .anatomic {
    padding-bottom: 50px;
  }

  .nav-anatomic__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .info-anatomic__title {
    font-size: 20px;
  }

  .info-anatomic__text {
    font-size: 16px;
  }

  .item-info-anatomic__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 75px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75px;
            flex: 0 0 75px;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 14px;
  }

  .item-info-anatomic__price span._old {
    font-size: 14px;
  }

  .centres-page {
    padding-bottom: 50px;
  }

  .centres-page__other {
    margin-top: 20px;
  }

  .centres-page__blocks {
    margin-top: 20px;
  }

  .centres-page__list {
    row-gap: 20px;
  }

  .centres-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .centres-page__map #map {
    height: 500px;
  }

  .center-item__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }

  .center-item__img {
    min-height: 100%;
  }

  .center-item__other {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .center-item__phones {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
  }

  .center-item__phone {
    min-width: 150px;
  }

  .center-item__button {
    max-width: 220px;
  }

  .timework-center-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .timework-center-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    margin-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .card-centres-page {
    max-width: 260px;
  }

  .card-centres-page__image {
    height: 185px;
  }

  .card-centres-page__content {
    row-gap: 12px;
    padding: 15px;
  }

  .card-centres-page__body {
    row-gap: 12px;
  }

  .center {
    padding-bottom: 50px;
  }

  .center__content {
    row-gap: 20px;
  }

  .center__info {
    row-gap: 12px;
  }

  .center__name {
    font-size: 18px;
  }

  .center__body {
    row-gap: 12px;
  }

  .center__map iframe {
    height: 410px;
  }

  .center-medical {
    padding: 50px 0px;
  }

  .center-medical__content {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }

  .center-medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 2) / 3);
            flex: 0 0 calc((100% - 15px * 2) / 3);
  }

  .contacts {
    padding-bottom: 25px;
  }

  .contacts__content {
    margin-top: 20px;
  }

  .contacts__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .contacts-map {
    padding: 25px 0px 50px;
  }

  .contacts-map__body {
    margin-top: 20px;
  }

  .contacts-map__body #map {
    height: 500px;
  }

  .about {
    padding-bottom: 50px;
  }

  .gallery-about {
    margin-top: 50px;
  }

  .gallery-about__content {
    margin-top: 20px;
  }

  .gallery-about__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .login {
    padding: 50px 0px;
  }

  .account {
    padding-bottom: 50px;
  }

  .account__sidebar {
    display: none;
  }

  .main-account {
    background: #fff;
    border-radius: 8px;
    padding: 0px 20px;
  }

  .main-account__block {
    display: block !important;
  }

  .main-account__block:not(:last-child) {
    border-bottom: 1px solid #EBEBEB;
  }

  .main-account__body {
    padding: 0px;
    margin-bottom: 20px;
    display: none;
  }

  .order-main-account__title {
    display: none;
  }

  .order-main-account__content {
    margin-top: 0;
  }

  .order-main-account__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .favorite-main-account__title {
    display: none;
  }

  .favorite-main-account__content {
    margin-top: 0;
  }

  .favorite-main-account__body {
    margin-top: 20px;
  }

  .body-favorite-main-account__top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .favorite {
    padding-bottom: 50px;
  }

  .favorite__navigation {
    display: none;
  }

  .favorite__block {
    display: block;
    padding: 20px 0px;
  }

  .favorite__block:not(:last-child) {
    border-bottom: 1px solid #DEDEDE;
  }

  .favorite__body {
    margin-top: 20px;
    display: none;
  }

  .body-favorite__top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .medical-body-favorite {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 20px;
  }

  .medical-body-favorite__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 2) / 3);
            flex: 0 0 calc((100% - 15px * 2) / 3);
  }

  .result {
    padding-bottom: 50px;
  }

  .result__content {
    margin-top: 20px;
  }

  .result__name {
    font-size: 20px;
  }

  .disease-card {
    padding-bottom: 50px;
  }

  .disease-card__tabs {
    margin: 0px -20px;
    background: #F8F8F8;
    padding: 20px;
  }

  .tabel-disease-card {
    row-gap: 12px;
  }

  .tabel-disease-card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px;
  }

  .tabel-disease-card__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .tabel-disease-card__name._active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .tabel-disease-card__name::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    margin-left: auto;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: url(../images/icons/spoller-o.svg) center/cover no-repeat;
  }

  .tabel-disease-card__body {
    display: none;
  }

  .help {
    padding-bottom: 50px;
  }

  .help__wrapper {
    margin-top: 20px;
  }

  .help__sidebar {
    display: none;
  }

  .main-help {
    padding: 30px 20px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }

  .main-help__block {
    display: block;
    padding: 30px 0px;
  }

  .main-help__block:first-child {
    padding-top: 0;
  }

  .main-help__block:last-child {
    padding-bottom: 0;
  }

  .main-help__block:not(:last-child) {
    border-bottom: 1px solid #EBEBEB;
  }

  .main-help__body {
    background: none;
    overflow: visible;
    border-radius: 0px;
    padding: 0px;
    margin-top: 20px;
    display: none;
  }

  .main-help__title {
    font-size: 18px;
  }

  .main-help__description:not(:first-child) {
    margin-top: 12px;
  }

  .page {
    padding-top: 51px;
  }

  header._with-top .search-header__content {
    top: calc(51px + 36px);
  }

  header._with-top + .page {
    padding-top: calc(51px + 36px);
  }
}

@media (max-width: 991.98px) and (max-width: 720.98px) {
  .main-header .actions-header__item._account {
    display: none;
  }

  .main-header .main-header__language {
    display: none;
  }

  .main-header .actions-header__item._favorite {
    display: none;
  }
}

@media (max-width: 991.98px) and (max-width: 479.98px) {
  .main-header .other-header__cart {
    display: none;
  }
}

@media (max-width: 720.98px) {
  body._header-lock,
  body._map-open {
    overflow: hidden;
  }

  body._header-lock .header::after,
  body._map-open .header::after {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .registration-popup__head {
    padding: 20px;
  }

  .registration-popup__content {
    padding: 20px;
    row-gap: 20px;
  }

  .card-analize-popup__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
  }

  .main-card-analize-popup__actions {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .main-card-analize-popup__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .results-search-header__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cart-header {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cart-header__body {
    padding: 0px 20px 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
  }

  .cart-header__list {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
    max-height: 100%;
  }

  .cart-header__footer {
    -webkit-box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
            box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
    background: #fff;
    width: 100%;
    padding: 15px 20px;
    max-width: 100%;
  }

  .cart-header__button {
    width: 100%;
  }

  .cart-header-item {
    -ms-grid-columns: 1fr 100px;
    grid-template-columns: 1fr 100px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .cart-header-item__delete {
    display: none;
  }

  .cart-header-item-consultation {
    -ms-grid-columns: 1fr 100px;
    grid-template-columns: 1fr 100px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .cart-header-item-consultation__delete {
    display: none;
  }

  .main-footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .bottom-footer__payments {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .sale-alert__name {
    font-size: 16px;
  }

  .sale-alert__text {
    font-size: 14px;
  }

  .banner__item {
    height: calc((100vw - 40px) * 0.96);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 30px 20px;
  }

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

  .banner__image_md4 {
    display: block;
  }

  .navigation-banner-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .services__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .benefits__value {
    font-size: 32px;
  }

  .benefits__name {
    font-size: 16px;
  }

  .section-service__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }

  .news-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .news-section__item:not(:first-child) {
    display: none;
  }

  .registration._page .registration__image {
    margin: 0px !important;
  }

  .registration__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .medical-main-catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .specialist__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .specialist__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .specialist__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .recomendation-specialist__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .data-main-order__row {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .data-main-order__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 8px * 2) / 3);
            flex: 0 0 calc((100% - 8px * 2) / 3);
  }

  .data-main-order__column .select__value {
    padding: 10px 8px;
  }

  .item-analize {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .fields-page__head,
  .disease-page__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }

  .fields-page__title,
  .disease-page__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .fields-page__selects,
  .disease-page__selects {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .fields-page__item,
  .disease-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 2) / 3);
            flex: 0 0 calc((100% - 15px * 2) / 3);
  }

  .departament__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .medical-departament__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 1) / 2);
            flex: 0 0 calc((100% - 15px * 1) / 2);
  }

  .analize {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
  }

  .analize__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .analize__mod + .analize__mod {
    display: none;
  }

  .analize__actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .main-card-analize__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .main-card-analize__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .main-card-analize__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main-card-analize__actions {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .main-card-analize__button {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .main-analiz-card-second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .main-analiz-card-second__actions {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .main-analiz-card-second__button {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .promotion__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .other-promo__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .news-list-page__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .news-list-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .section-news-page__image {
    float: unset !important;
    margin: 0px 0px 30px !important;
    width: 100%;
    max-width: 100%;
  }

  .diagnostic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .diagnostic__actions {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .main-diagnostic-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .main-diagnostic-card__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .main-diagnostic-card__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .anatomic__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .nav-anatomic {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .nav-anatomic__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-width: 135px;
  }

  .centres-page__select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .centres-page__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .nav-centres-page {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .nav-centres-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .card-centres-page:not(._active) {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
  }

  .card-centres-page {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 8px 8px 0px 0px;
    background: #fff;
    min-height: 0px;
    max-height: 100%;
    top: auto;
    z-index: 999;
    padding: 15px 20px 0px;
    row-gap: 15px;
  }

  .card-centres-page__image {
    border-radius: 8px;
    overflow: hidden;
    height: auto;
    padding-bottom: 58%;
  }

  .card-centres-page__content {
    padding: 0px;
    row-gap: 15px;
    overflow: hidden;
  }

  .card-centres-page__body {
    row-gap: 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
  }

  .card-centres-page__footer {
    padding: 15px 20px;
    margin: 0px -20px;
    background: #fff;
    -webkit-box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
            box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
  }

  .center__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .center__video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    padding-bottom: 69%;
  }

  .center__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .center-medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 1) / 2);
            flex: 0 0 calc((100% - 15px * 1) / 2);
  }

  .contacts__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .about__navigation {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    width: 100%;
  }

  .gallery-about__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }

  .order-main-account__head > span > span {
    display: none;
  }

  .order-main-account__head {
    font-size: 14px;
    -ms-grid-columns: 80px 70px 70px 20px;
    grid-template-columns: 80px 70px 70px 20px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .item-order-main-account__main {
    font-size: 14px;
    -ms-grid-columns: 80px 70px 70px 20px;
    grid-template-columns: 80px 70px 70px 20px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .item-order-main-account-analize {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
  }

  .item-order-main-account-analize__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .item-order-main-account-consultation {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
  }

  .item-order-main-account-consultation__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .favorite-main-account__navigation {
    display: none;
  }

  .favorite-main-account__block {
    display: block;
    padding: 20px 0px;
  }

  .favorite-main-account__block:not(:last-child) {
    border-bottom: 1px solid #DEDEDE;
  }

  .favorite-main-account__block:first-child {
    padding-top: 0;
  }

  .favorite-main-account__block:last-child {
    padding-bottom: 0;
  }

  .favorite-main-account__body {
    display: none;
  }

  .medical-body-favorite-main-account__item .medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .medical-body-favorite-main-account__item .medical__body {
    padding: 12px;
    row-gap: 12px;
  }

  .medical-body-favorite-main-account__item .medical__name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .medical-body-favorite__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 1) / 2);
            flex: 0 0 calc((100% - 15px * 1) / 2);
  }

  .item-result {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .item-result__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .item-result__actions {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .info-disease-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .info-disease-card__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .info-disease-card__img {
    height: auto;
    padding-bottom: 69%;
  }

  .info-disease-card__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .fields-page__item,
  .disease-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 1) / 2);
            flex: 0 0 calc((100% - 15px * 1) / 2);
  }
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}

@media (max-width: 479.98px) {
  .wrapper {
    padding-bottom: 70px;
  }

  ._title {
    font-size: 24px;
  }

  .tooltip-anatomic {
    padding: 6px 12px;
    font-size: 16px;
  }

  .gm-style .gm-style-iw-c {
    width: 290px;
  }

  .gm-ui-hover-effect {
    top: -5px !important;
    right: -5px !important;
  }

  .qs-datepicker-container {
    padding: 10px;
  }

  .qs-datepicker .qs-square {
    padding: 10px 5px;
  }

  .pagging__list li:not(._active,
  ._more,
  :nth-child(-n+2), :last-child) {
    display: none;
  }

  .popup._active .popup__body {
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }

  .popup__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-height: 100%;
    overflow: hidden;
  }

  .popup__body {
    -webkit-transform: scale(1) translateY(100%);
        -ms-transform: scale(1) translateY(100%);
            transform: scale(1) translateY(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0px 0px;
  }

  .popup__head {
    padding: 20px 20px 15px;
  }

  .popup__title {
    font-size: 18px;
  }

  .popup__wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 15px 20px;
    overflow-y: auto;
  }

  .popup__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 15px 20px;
    background: #fff;
    -webkit-box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
            box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
    border-top: none;
  }

  .popup__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .add-to-cart__other {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .add-to-cart__price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
  }

  .registration-popup .popup__body {
    max-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .registration-popup .popup__body._picker._date .registration-popup__content {
    display: none;
  }

  .registration-popup .popup__body._picker._date .registration-popup__picker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .registration-popup .popup__body._picker._date .registration-popup__picker .picker-registration-popup__date {
    display: block;
  }

  .registration-popup .popup__body._picker._time .registration-popup__content {
    display: none;
  }

  .registration-popup .popup__body._picker._time .registration-popup__picker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .registration-popup .popup__body._picker._time .registration-popup__picker .picker-registration-popup__body {
    margin: 0px -20px;
  }

  .registration-popup .popup__body._picker._time .registration-popup__picker .picker-registration-popup__time {
    display: block;
  }

  .registration-popup__head {
    padding: 20px 20px 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .registration-popup__title {
    font-size: 18px;
  }

  .registration-popup__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow: hidden;
    row-gap: 0px;
  }

  .registration-popup__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
    padding-bottom: 20px;
  }

  .registration-popup__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .registration-popup__footer {
    -webkit-box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
            box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
    background: #fff;
    margin: 0px -20px -20px;
    padding: 15px 20px;
  }

  .picker-registration-popup__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
  }

  .picker-registration-popup__footer {
    -webkit-box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
            box-shadow: 0px -6px 12px 0px rgba(18, 25, 43, 0.08);
    background: #fff;
    margin: 0px -20px -20px;
    padding: 15px 20px;
  }

  .card-analize-popup__content > * {
    padding: 15px 0px;
  }

  .card-analize-popup__head {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .main-card-analize-popup__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .main-card-analize-popup__other {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .main-card-analize-popup__price span._old {
    font-size: 14px;
  }

  .characteristic-card-analize-popup__item {
    padding: 12px 15px;
  }

  .characteristic-card-analize-popup__name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px) / 2);
            flex: 0 0 calc((100% - 10px) / 2);
  }

  .characteristic-card-analize-popup__value {
    text-align: right;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px) / 2);
            flex: 0 0 calc((100% - 10px) / 2);
  }

  .review .popup__body {
    max-width: 100%;
    padding: 20px;
    overflow-y: auto;
  }

  .review__head {
    row-gap: 12px;
  }

  .review__title {
    font-size: 18px;
  }

  .review__body {
    margin-top: 15px;
  }

  .main-header__results {
    font-size: 13px;
    padding: 2px 8px;
  }

  .catalog-header__content {
    padding: 30px 20px;
  }

  .results-search-header__section {
    padding: 15px 0px;
  }

  .results-search-header__title {
    font-size: 16px;
  }

  .results-search-header__more {
    font-size: 14px;
  }

  .results-search-header__total {
    width: 100%;
    max-width: 100%;
  }

  .bottom-nav__item {
    row-gap: 5px;
    height: 63px;
  }

  .bottom-nav__name {
    font-size: 14px;
  }

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

  .cart-header-item__name {
    font-size: 14px;
  }

  .cart-header-item__price {
    font-size: 14px;
    text-align: right;
  }

  .cart-header-item-consultation__other {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .cart-header-item-consultation__price {
    font-size: 14px;
    text-align: right;
  }

  .footer__main {
    padding: 30px 0px;
  }

  .footer__bottom {
    padding: 15px 0px;
  }

  .bottom-footer__container {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .bottom-footer__copy {
    font-size: 14px;
  }

  .bottom-footer__dev {
    font-size: 14px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .sale-alert {
    right: 20px;
    max-width: calc(100% - 40px);
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }

  .sale-alert__info {
    padding: 12px;
  }

  .sale-alert__name {
    font-size: 14px;
  }

  .sale-alert__text {
    font-size: 12px;
  }

  .sale-alert__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 96px;
            flex: 0 0 96px;
    height: 96px;
    width: 96px;
  }

  .banner-section {
    padding: 20px 0px 15px;
  }

  .banner-section__wrapper {
    row-gap: 20px;
  }

  .banner__title {
    font-size: 28px;
  }

  .banner__title._click::after {
    width: 25px;
    height: 25px;
  }

  .banner__btn {
    margin-top: 20px;
    padding: 2px 10px;
  }

  .navigation-banner-section {
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
    row-gap: 1px;
    border: 1px solid #EBEAEA;
    border-radius: 8px;
    overflow: hidden;
  }

  .navigation-banner-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 1px) / 2 );
            flex: 0 0 calc((100% - 1px) / 2 );
    min-height: 60px;
    border-color: #2A9840;
    font-size: 15px;
    border: none;
    border-radius: 0px;
  }

  .navigation-banner-section__item:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #EBEAEA;
  }

  .navigation-banner-section__item:nth-child(odd) {
    border-right: 1px solid #EBEAEA;
  }

  .services {
    padding: 15px 0px 15px;
  }

  .services__title {
    font-size: 24px;
  }

  .services__content {
    row-gap: 30px;
    margin-top: 30px;
  }

  .services__item {
    height: 120px;
    padding: 30px 15px 20px;
  }

  .services__image {
    -webkit-transform: scale(0.6) translateX(33%) translateY(33%);
        -ms-transform: scale(0.6) translateX(33%) translateY(33%);
            transform: scale(0.6) translateX(33%) translateY(33%);
  }

  .explore {
    padding: 15px 0px 15px;
  }

  .explore__wrapper {
    padding: 30px 20px 0px;
  }

  .explore__info {
    row-gap: 15px;
  }

  .explore__title {
    font-size: 24px;
  }

  .explore__image {
    margin-top: -20px;
  }

  .nav-explore__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .nav-explore__link {
    width: 100%;
    max-width: 100%;
  }

  .benefits {
    padding: 15px 0px 15px;
  }

  .benefits__item {
    max-width: 75px;
  }

  .benefits__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    height: 32px;
    width: 32px;
  }

  .benefits__value {
    font-size: 22px;
  }

  .benefits__name {
    font-size: 14px;
  }

  .head-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .head-section__title {
    font-size: 24px;
  }

  .section-service {
    padding: 40px 0px;
    margin: 15px 0px;
  }

  .section-service__container {
    row-gap: 30px;
  }

  .news-section {
    padding: 15px 0px;
  }

  .news__info {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    font-size: 13px;
  }

  .registration._page {
    padding-bottom: 40px;
  }

  .registration._page .form-registration__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .registration {
    padding: 15px 0px;
  }

  .registration__wrapper {
    padding: 30px 15px;
  }

  .form-registration__title {
    font-size: 24px;
  }

  .form-registration__body {
    row-gap: 15px;
    margin-top: 20px;
  }

  .form-registration__row._double {
    row-gap: 15px;
  }

  .form-registration__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .form-registration__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .centres {
    padding: 20px 0px 40px;
  }

  .centres__wrapper {
    row-gap: 20px;
  }

  .centres__title {
    font-size: 24px;
  }

  .breadcrums {
    padding: 15px 0px;
  }

  .breadcrums__item:not(:last-child) {
    margin-right: 4px;
  }

  .breadcrums__item:not(:last-child)::after {
    margin-left: 4px;
  }

  .breadcrums__link {
    font-size: 12px;
  }

  .catalog {
    padding-bottom: 40px;
  }

  .head-catalog__title {
    font-size: 24px;
  }

  .head-catalog__filter-btn {
    font-size: 14px;
  }

  .head-catalog__filter-btn img,
  .head-catalog__filter-btn svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
  }

  .head-catalog__select {
    font-size: 14px;
  }

  .head-catalog__sel .select__value {
    font-size: 14px;
  }

  .head-catalog__sel .select__option {
    font-size: 14px;
  }

  .filter-catalog__row {
    padding: 15px 0px;
  }

  .filter-catalog__more._toggle span._more {
    display: none;
  }

  .filter-catalog__more._toggle span._less {
    display: block;
  }

  .list-filter-catalog._view-all .list-filter-catalog__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .list-filter-catalog__item:not(:nth-child(-n+8)) {
    display: none;
  }

  .medical-main-catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
  }

  .specialist {
    padding-bottom: 40px;
  }

  .specialist__title {
    font-size: 24px;
  }

  .description-specialist:not(._view-all) .description-specialist__body {
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 8;
  }

  .specialist-review {
    padding: 40px 0px;
  }

  .specialist-review__item {
    padding: 15px;
  }

  .recomendation-specialist {
    padding: 40px 0px;
  }

  .recomendation-specialist__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .order {
    padding-bottom: 40px;
  }

  .main-order__name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .data-main-order__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .payments-main-order__icons {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .item-consultation__other {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .item-consultation__price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
    font-size: 16px;
  }

  .item-analize__name {
    font-size: 14px;
  }

  .item-analize__price {
    font-size: 14px;
    text-align: right;
  }

  .fields-page,
  .disease-page {
    padding-bottom: 40px;
  }

  .fields-page__selects,
  .disease-page__selects {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 15px;
  }

  .fields-page__select,
  .disease-page__select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .fields-page__item .disease__body,
  .disease-page__item .disease__body {
    padding: 12px;
  }

  .departament {
    padding-bottom: 40px;
  }

  .departament__wrapper {
    row-gap: 30px;
  }

  .departament__img {
    height: auto;
    padding-bottom: 69%;
  }

  .departament__description._view-all .departament__more span._less {
    display: block;
  }

  .departament__description._view-all .departament__more span._more {
    display: none;
  }

  .departament__description:not(._view-all) > div {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 7;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }

  .medical-departament__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .analize {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    padding: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .analize__name {
    font-size: 14px;
  }

  .analize__other {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .analize__price {
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75px;
            flex: 0 0 75px;
    width: 75px;
  }

  .analize__price span._old {
    font-size: 14px;
  }

  .analize__actions {
    -webkit-column-gap: 2px;
       -moz-column-gap: 2px;
            column-gap: 2px;
  }

  .card-analize {
    padding-bottom: 40px;
  }

  .card-analize__wrapper {
    margin: 0px -20px;
  }

  .main-card-analize__content {
    row-gap: 15px;
  }

  .main-card-analize__title {
    font-size: 20px;
  }

  .characteristic-card-analize__value {
    text-align: right;
  }

  .analiz-card-second {
    padding-bottom: 40px;
  }

  .analiz-card-second__wrapper {
    margin: 0px -20px;
  }

  .promotion {
    padding-bottom: 40px;
  }

  .promo-page {
    padding-bottom: 40px;
  }

  .analize-list {
    padding: 40px 0px;
  }

  .other-promo {
    padding: 40px 0px;
  }

  .news-list-page {
    padding-bottom: 40px;
  }

  .head-news-page__other {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 5px;
  }

  .section-news-page__title {
    font-size: 18px;
  }

  .list-section-news-page__name {
    font-size: 16px;
  }

  .sidebar-news-page__section {
    padding: 40px 20px;
  }

  .diagnostic__price {
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75px;
            flex: 0 0 75px;
    width: 75px;
  }

  .diagnostic__price span._old {
    font-size: 14px;
  }

  .diagnostic__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 0;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    padding: 0px;
  }

  .diagnostic__button._disabled::after {
    background: url(../images/icons/cart-disabled.svg) center/cover no-repeat;
  }

  .diagnostic__button::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
    display: inline-block;
    background: url(../images/icons/cart.svg) center/cover no-repeat;
  }

  .diagnostic-card {
    padding-bottom: 40px;
  }

  .diagnostic-card__wrapper {
    margin: 0px -20px;
  }

  .main-diagnostic-card {
    row-gap: 15px;
  }

  .main-diagnostic-card__button {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .anatomic {
    padding-bottom: 40px;
  }

  .nav-anatomic__item {
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 5px * 2) / 3);
            flex: 0 0 calc((100% - 5px * 2) / 3);
    padding: 12px 5px;
    min-width: 0px;
  }

  .item-info-anatomic__name {
    font-size: 12px;
  }

  .centres-page {
    padding-bottom: 40px;
  }

  .nav-centres-page {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .nav-centres-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
    padding: 5px 10px;
  }

  .center-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .center-item__img {
    padding-bottom: 69%;
  }

  .center-item__phones {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .center-item__phone {
    min-width: 0px;
  }

  .center-item__button {
    max-width: 100%;
  }

  .timework-center-item__body {
    margin-top: 10px;
  }

  .center {
    padding-bottom: 40px;
  }

  .center__map iframe {
    height: 330px;
  }

  .center-medical {
    padding: 40px 0px;
  }

  .center-medical__content {
    margin-top: 20px;
  }

  .center-medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .contacts {
    padding-bottom: 20px;
  }

  .contacts-map {
    padding: 20px 0px 40px;
  }

  .about {
    padding-bottom: 40px;
  }

  .about__blocks {
    margin-top: 20px;
  }

  .gallery-about {
    margin-top: 40px;
  }

  .login {
    padding: 40px 0px;
  }

  .login__wrapper {
    padding: 20px;
  }

  .login__nav {
    margin: 0px -20px;
  }

  .login__blocks {
    margin-top: 20px;
  }

  .login__body {
    row-gap: 15px;
  }

  .login__form {
    row-gap: 15px;
  }

  .nav-login__item {
    font-size: 18px;
  }

  .connect__item {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .account {
    padding-bottom: 40px;
  }

  .data-account__title {
    font-size: 16px;
  }

  .data-account__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .data-account__row {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .data-account__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 8px * 2) / 3);
            flex: 0 0 calc((100% - 8px * 2) / 3);
  }

  .data-account__column .select__value {
    padding: 10px 10px;
  }

  .item-order-main-account__item {
    padding: 12px;
  }

  .item-order-main-account__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .item-order-main-account-analize__price {
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 80px;
  }

  .item-order-main-account-consultation__other {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .item-order-main-account-consultation__price {
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 80px;
  }

  .favorite-main-account__content {
    padding: 20px;
    background: #F8F8F8;
  }

  .favorite-main-account__body .inf__body {
    width: calc(100vw - 94px);
  }

  .favorite-main-account__body._md4 {
    margin: 20px -12px 0px;
  }

  .medical-body-favorite-main-account__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .medical-body-favorite-main-account__item .medical__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .medical-body-favorite-main-account__item .medical__list._price-list .medical__name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .favorite {
    padding-bottom: 40px;
  }

  .medical-body-favorite__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .result {
    padding-bottom: 40px;
  }

  .result__name {
    font-size: 18px;
  }

  .item-result {
    padding: 15px;
  }

  .item-result__name {
    font-size: 14px;
  }

  .item-result__details {
    padding: 7px 20px;
    min-height: 34px;
  }

  .error-page__wrapper {
    row-gap: 30px;
  }

  .error-page__title {
    font-size: 24px;
  }

  .error-page__button {
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
  }

  .disease-card {
    padding-bottom: 40px;
  }

  .help {
    padding-bottom: 40px;
  }

  .main-help {
    padding: 20px;
  }

  .main-help__block {
    padding: 20px 0px;
  }
}

@media (max-width: 1342px) and (min-width: 991.98px) {
  .banner__image_md2 {
    display: block;
  }
}

@media (max-width: 991.98px) and (min-width: 720.98px) {
  .banner__image_md3 {
    display: block;
  }

  .specialist__description {
    padding-top: 20px;
    border-top: 1px solid #E6E6E6;
  }
}

@media (min-width: 991.98px) and (max-width: 1342px) {
  .centres__body::after {
    width: 92px;
    height: 136px;
  }
}

@media (max-width: 1342px) and (min-width: 479.98px) {
  .medical__body {
    row-gap: 10px;
    padding: 15px 12px;
  }

  .medical__list._price-list .medical__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .medical__list._price-list .medical__name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media (any-hover: hover) {
  input[type=text]._date:hover,
  input[type=email]._date:hover,
  input[type=tel]._date:hover,
  input[type=password]._date:hover {
    background: url(../images/icons/calendar.svg) calc(100% - 20px) 50%/20px no-repeat, #F1F1F1 !important;
  }

  input[type=text]:hover:not(._circle),
  input[type=email]:hover:not(._circle),
  input[type=tel]:hover:not(._circle),
  input[type=password]:hover:not(._circle) {
    background: #F1F1F1;
    border-color: #F1F1F1;
  }

  input[type=text]._circle:hover,
  input[type=email]._circle:hover,
  input[type=tel]._circle:hover,
  input[type=password]._circle:hover {
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
            box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  }

  ._btn._orange:hover {
    background: #D96111;
    border-color: #D96111;
  }

  ._btn:hover {
    background: #248537;
    border-color: #248537;
  }

  ._btn-o._green:hover {
    color: #fff;
    background: #2A9840;
  }

  ._btn-o:hover {
    color: #fff;
    background: #EF7D00;
  }

  ._btn-o:hover svg path {
    fill: #fff;
  }

  .paggination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    background: rgba(49, 49, 49, 0.5);
  }

  .pagging__arrow:not(._disabled):hover {
    border-color: #EF7D00;
  }

  .pagging__arrow:not(._disabled):hover svg path {
    fill: #EF7D00;
  }

  .pagging__item:not(._active, ._more):hover {
    color: #313131;
    border-color: #313131;
  }

  .review__textarea:hover {
    background: #f1f1f1;
    border-color: #f1f1f1;
  }

  .top-header__details:hover {
    text-decoration: underline;
  }

  .nav-main-header__link:hover {
    color: #EF7D00;
  }

  .contacts-main-header__item:hover .contacts-main-header__value {
    color: #EF7D00;
  }

  .language-header__item:not(._active):hover {
    color: #313131;
  }

  .catalog-header__button:hover {
    background: #f7ebe4;
  }

  .catalog-header__item:hover .catalog-header__name {
    color: #2A9840;
  }

  .catalog-header__item:hover .catalog-header__arrow svg path {
    fill: #2A9840;
  }

  .results-search-header__item:hover .results-search-header__name {
    color: #EF7D00;
  }

  .results-search-header__more:hover {
    text-decoration: underline;
  }

  .actions-header__main:hover .actions-header__icon svg path {
    fill: #2A9840;
  }

  .cart-other-header__main:hover {
    background: #EF7D00;
    color: #fff;
  }

  .cart-other-header__main:hover .cart-other-header__value {
    color: #fff;
  }

  .cart-other-header__main:hover .cart-other-header__value span {
    color: #fff;
  }

  .cart-other-header__main:hover svg path:not(._stroke) {
    fill: #fff;
  }

  .cart-other-header__main:hover svg path._stroke {
    stroke: #fff;
  }

  .cart-header-item-consultation__name:hover strong {
    color: #EF7D00;
  }

  .profile-account-actions-header__item:hover {
    background: rgba(239, 125, 0, 0.1);
    color: #EF7D00;
  }

  .profile-account-actions-header__item:hover svg path {
    fill: #EF7D00;
  }

  .main-footer__link:hover {
    text-decoration: underline;
  }

  .nav-main-footer__link:hover {
    text-decoration: underline;
  }

  .socials-contacts-main-footer__item:hover {
    background: #FFEFDE;
  }

  .bottom-footer__dev:hover {
    opacity: 1;
  }

  .sale-alert__name:hover {
    text-decoration: underline;
  }

  .sale-alert__close:hover svg path[stroke] {
    stroke: #EF7D00;
  }

  .sale-alert__close:hover svg path[fill] {
    fill: #EF7D00;
  }

  .navigation-banner-section__item:hover:not(._sale) {
    border-color: #EF7D00;
    color: #EF7D00;
  }

  .head-section__btn:hover {
    color: #fff !important;
  }

  .head-section__btn:hover svg path {
    fill: #fff;
  }

  .section-service__arrow:hover {
    background: #EF7D00;
  }

  .section-service__arrow:hover svg path {
    fill: #fff;
  }

  .disease:hover {
    -webkit-box-shadow: 0px 4px 8px 0px rgba(11, 60, 40, 0.03);
            box-shadow: 0px 4px 8px 0px rgba(11, 60, 40, 0.03);
  }

  .disease__name:hover {
    color: #2A9840;
  }

  .list-disease__item:hover .list-disease__name {
    color: #2A9840;
  }

  .test:hover {
    -webkit-box-shadow: 0px 4px 8px 0px rgba(11, 60, 40, 0.03);
            box-shadow: 0px 4px 8px 0px rgba(11, 60, 40, 0.03);
  }

  .test__name:hover {
    color: #EF7D00;
  }

  .news:hover {
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
            box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  }

  .news__name:hover {
    color: #EF7D00;
  }

  .news__more:hover {
    background: #D96111;
  }

  .breadcrums__item a.breadcrums__link:hover {
    color: #313131;
  }

  .filter-catalog__more:hover {
    text-decoration: underline;
  }

  .mods-filter__delete:hover svg path {
    fill: #FC0A0A;
  }

  .list-filter-catalog__item:hover .list-filter-catalog__name {
    color: #EF7D00;
  }

  .medical__title:hover {
    color: #EF7D00;
  }

  .specialist__address a:hover {
    text-decoration: none;
    color: #2A9840;
  }

  .specialist-review__head .head-section__btn:hover svg path {
    fill: #fff !important;
  }

  .recomendation-specialist__arrow:hover {
    background: #EF7D00;
  }

  .recomendation-specialist__arrow:hover svg path {
    fill: #fff;
  }

  .main-order__account_link:hover {
    text-decoration: underline;
  }

  .item-consultation__name:hover strong {
    color: #EF7D00;
  }

  .item-analize__name:hover {
    color: #EF7D00;
  }

  .alert-sidebar-order__text a:hover {
    text-decoration: none;
  }

  .navigation__item:not(._active):hover {
    color: #EF7D00;
  }

  .analize:hover {
    -webkit-box-shadow: 0px 4px 8px 0px rgba(11, 60, 40, 0.03);
            box-shadow: 0px 4px 8px 0px rgba(11, 60, 40, 0.03);
  }

  .analize__name:hover {
    color: #EF7D00;
  }

  .description-main-card-analize__more:hover {
    text-decoration: underline;
  }

  .promo:hover {
    -webkit-box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.12);
            box-shadow: 0px 18px 32px 0px rgba(11, 60, 40, 0.12);
  }

  .promo__name:hover {
    color: #EF7D00;
  }

  .promo-page__body a:hover {
    text-decoration: none;
  }

  .other-promo__arrow:hover {
    background: #EF7D00;
  }

  .other-promo__arrow:hover svg path {
    fill: #fff;
  }

  .section-news-page__description a:hover {
    text-decoration: none;
  }

  .diagnostic__name:hover {
    text-decoration: none;
    color: #EF7D00;
  }

  .item-info-anatomic__name:hover {
    color: #EF7D00;
    text-decoration: none;
  }

  .center-item__name:hover {
    color: #EF7D00;
  }

  .center-item__map:hover {
    text-decoration: underline;
  }

  .center-item__phone:hover {
    color: #EF7D00;
  }

  .card-centres-page__phone:hover {
    color: #EF7D00;
  }

  .center__phone:hover {
    color: #2A9840;
  }

  .center__email:hover {
    color: #2A9840;
  }

  .contacts__phone:hover {
    color: #EF7D00;
  }

  .contacts__value a:hover {
    text-decoration: underline;
  }

  .contacts-map__more:hover {
    text-decoration: underline;
  }

  .gallery-about__arrow:hover {
    background: #EF7D00;
  }

  .gallery-about__arrow:hover svg path {
    fill: #fff;
  }

  .login__forget:hover {
    color: #EF7D00;
  }

  .login__back:hover {
    color: #EF7D00;
  }

  .login__back:hover svg path {
    fill: #EF7D00;
  }

  .nav-login__item:not(._active):hover {
    color: #313131;
  }

  .connect__item:hover {
    color: #313131;
    border-color: #313131;
  }

  .connect__item:hover .connect__name {
    color: #313131;
  }

  .sidebar-account__item:hover .sidebar-account__name {
    color: #EF7D00;
  }

  .sidebar-account__item:hover .sidebar-account__arrow svg path {
    fill: #EF7D00;
  }

  .item-order-main-account-analize__name:hover {
    text-decoration: none;
    color: #EF7D00;
  }

  .item-order-main-account-consultation__name:hover strong {
    color: #EF7D00;
  }

  .body-favorite__clear:hover {
    color: #EF7D00;
  }

  .body-favorite__clear:hover svg path {
    fill: #EF7D00;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }

  ._no-webp .iti__flag {
    background-image: url("../images/flags@2x.png"); }
}

._webp .iti__flag { background-image: url(../images/flags.webp); }

@media (min-width: 1342px) {

  ._webp .specialist-review { background: url(../images/specialist-review-bg.webp) center/cover no-repeat, #F8F8F8; }
}

@media (max-width: 991.98px) {

  ._webp .registration__wrapper { background: url(../images/bg-registration.webp) center/cover no-repeat, #F8F8F8; }
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {

  ._webp .iti__flag { background-image: url(../images/flags@2x.webp); }
}
