@charset "UTF-8";

:root {
  /* Color's =====> */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-background: #FFFFFF;
  --color-primary: #142c36;
  --color-border-primary: #edf0f8;
  --color-gray-100: #f8f8f8;
  --color-gray-400: #edf0f8;
  --color-gray-500: #e8eaee;
  --color-gray-600: #d1d5dd;
  --color-gray-700: #adb4c8;
  --color-gray-800: #8f8e8f;
  --color-gray-900: #7f7e7e;
  --color-green-100: #ECFAE2;
  --color-green-300: #A2C595;
  --color-green-400: #8bb77b;
  --color-green-500: #9DC65F;
  --color-green-600: #6ea55a;
  --color-green-700: #629A4E;
  --color-orange-100: #ffd8bd;
  --color-orange-900: #ff7f32;
  --color-orange-1000: #f7650d;
  --color-red-1000: #f50016;
  /* Box Shadow =====> */
  --shadow-primary: 0 15px 30px rgba(127,126,126,.4);
  /* Font-family =====> */
  --font-Montserrat: "Montserrat", Arial, sans-serif;
  /* Font-size =====> */
  --text-3xs: 0.5rem;
  /* 8px */
  --text-2xs: 0.625rem;
  /* 10px */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-2-5xl: 1.75rem;
  /* 28px */
  --text-3xl: 2rem;
  /* 32px */
  --text-3-5xl: 2.5rem;
  /* 40px */
  --text-4xl: 3rem;
  /* 48px */
  --text-5xl: 3.75rem;
  /* 60px */
  --text-title: 4.5rem;
  /* 72px */
  /* Border-radius =====> */
  --rounded: 0.25rem;
  /* 4px */
  --rounded-base: 1rem;
  /* 16px */
  --rounded-2xl: 1.5rem;
  /* 24px */
  --rounded-3xl: 2rem;
  /* 32px */
  --rounded-4xl: 2.5rem;
  /* 40px */
  --rounded-5xl: 3.75rem;
  /* 60px */
  --rounded-full: 100%;
  /* Transition's =====> */
  --transition-low: all 0.15s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
  --transition-high: all 0.6s ease-in-out;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Light.woff2?edf13a5bc67d59d6b421d1500bb2f5f4) format("woff2"), url(/fonts/Montserrat-Light.woff?049f19f3ac8d29f0e2ba383c73352b03) format("woff"), local("Montserrat Light"), url(/fonts/Montserrat-Light.ttf?409c7f79a42e56c785f50ed37535f0be) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Regular.woff2?a49596b140345bd7de271a35da47ffe2) format("woff2"), url(/fonts/Montserrat-Regular.woff?43208bae6d1ddf797843423ab3aa36b1) format("woff"), local("Montserrat Regular"), url(/fonts/Montserrat-Regular.ttf?ee6539921d713482b8ccd4d0d23961bb) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Medium.woff2?ce792ace742f8cf0c8c48b6eecc16a32) format("woff2"), url(/fonts/Montserrat-Medium.woff?d194e50992ca40d4752c6649f8684575) format("woff"), local("Montserrat Regular"), url(/fonts/Montserrat-Medium.ttf?41940db30d513f31c9adbf15f4a98a76) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Bold.woff2?d3c8255ab9467067c35258c722ac910d) format("woff2"), url(/fonts/Montserrat-Bold.woff?27b7541c09fd8e0ba0116f2c01c96019) format("woff"), local("Montserrat Bold"), url(/fonts/Montserrat-Bold.ttf?ade91f473255991f410f61857696434b) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #142C36;
  scroll-behavior: smooth;
  height: 100%;
}

body .pswp {
  z-index: 99999;
}

body {
  margin: 0;
  padding-top: 195px;
}

@media (max-width: 1023px) {
  body {
    padding-top: 118px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 116px;
  }
}

@media (max-width: 1023px) {
  body.mob-app-banner--closed {
    padding-top: 55px;
  }
}

html {
  overflow-x: hidden;
}

html.overflow-hidden {
  overflow: hidden;
}

html.overflow-hidden body {
  overflow: hidden;
}

.no-scroll-body {
  height: 100vh;
  overflow-y: hidden;
}

.no-scroll {
  overflow: hidden;
}

*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
}

.content {
  flex: 1 0 auto;
}

a,
button {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
}

a:focus,
button:focus {
  outline-color: transparent;
}

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

button.btn.btn-ico,
a.btn.btn-ico {
  border-radius: 40px;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  font-weight: 400;
}

.appointment-widget-holder-inline {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

table.MsoNormalTable {
  width: auto !important;
  padding-left: 0 !important;
}

table.MsoNormalTable td {
  width: 180px !important;
}

@media screen and (max-width: 767px) {
  table.MsoNormalTable td {
    width: 155px !important;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  min-width: 280px;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 80px 0 80px;
}

@media (max-width: 1279px) {
  .container {
    padding: 0 24px 0 24px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px 0 16px;
  }
}

@media (min-width: 1280px) {
  .hide-desktop-large {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1279px) {
  .hide-desktop-small {
    display: none;
  }
}

@media (min-width: 1025px) {
  .hide-desktop {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hide-tablet {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

.mobile-app-content {
  margin-top: 25px;
}

.mobile-app-content img {
  max-width: 200px;
}

button,
a[type=button],
.btn {
  border-radius: 40px;
}

.i-logo {
  width: 100%;
  height: 100%;
  /*Стили (kirill) от 04.08.2023*/
  -o-object-fit: contain;
     object-fit: contain;
  /********************/
}

.i-lk {
  width: 18px;
  height: 17px;
  fill: #ff7f32;
}

.i-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 8px;
}

.i-arrow-big {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 8px;
}

.i-search {
  display: inline-block;
  width: 23px;
  height: 23px;
}

.i-action {
  display: inline-block;
  width: 24px;
  height: 25px;
}

.i-timetable {
  display: inline-block;
  width: 23px;
  height: 24px;
}

.i-fb {
  width: 15px;
  height: 27px;
  fill: #ff7f32;
}

.i-inst {
  width: 26px;
  height: 26px;
  fill: #ff7f32;
}

.i-telegram {
  max-width: 22px;
  max-height: 18px;
}

.i-odn {
  max-width: 12px;
  max-height: 21px;
}

.i-ytb {
  max-width: 22px;
  max-height: 16px;
}

.i-vk {
  max-width: 26px;
  max-height: 15px;
}

.i-star {
  width: 18px;
  height: 18px;
}

.i-education {
  width: 18px;
  height: 12px;
}

.i-family {
  width: 22px;
  height: 24px;
}

.i-pharmacy {
  width: 24px;
  height: 24px;
}

.i-man {
  width: 24px;
  height: 24px;
}

.i-doctor {
  width: 30px;
  height: 35px;
  /*стили от 04.08.2023 (kirill)*/
  background: url("/images/development/main/note.svg") center center/cover no-repeat;
}

@media (min-width: 1280px) {
  .i-doctor {
    width: 70px;
    height: 78px;
  }
}

.i-doctor-hover {
  width: 30px;
  height: 35px;
}

@media (min-width: 1280px) {
  .i-doctor-hover {
    width: 70px;
    height: 78px;
  }
}

.i-diagnostics {
  width: 31px;
  height: 40px;
}

@media (min-width: 1280px) {
  .i-diagnostics {
    width: 74px;
    height: 77px;
  }
}

.i-diagnostics-hover {
  width: 31px;
  height: 40px;
}

@media (min-width: 1280px) {
  .i-diagnostics-hover {
    width: 74px;
    height: 77px;
  }
}

.i-analyzes {
  width: 35px;
  height: 34px;
  /*стили от 04.08.2023 (kirill)*/
  background: url("/images/development/main/colb.svg") center center/cover no-repeat;
}

@media (min-width: 1280px) {
  .i-analyzes {
    width: 70px;
    height: 77px;
  }
}

.i-analyzes-hover {
  width: 35px;
  height: 34px;
}

@media (min-width: 1280px) {
  .i-analyzes-hover {
    width: 70px;
    height: 77px;
  }
}

.i-house {
  width: 32px;
  height: 31px;
  /*стили от 04.08.2023 (kirill)*/
  background: url("/images/development/main/house.svg") center center/cover no-repeat;
}

@media (min-width: 1280px) {
  .i-house {
    width: 71px;
    height: 71px;
  }
}

.i-house-hover {
  width: 32px;
  height: 31px;
}

@media (min-width: 1280px) {
  .i-house-hover {
    width: 71px;
    height: 71px;
  }
}

.i-program {
  width: 31px;
  height: 34px;
  /*стили от 04.08.2023 (kirill)*/
  background: url("/images/development/main/calendar.svg") center center/cover no-repeat;
}

@media (min-width: 1280px) {
  .i-program {
    width: 70px;
    height: 77px;
  }
}

.i-program-hover {
  width: 31px;
  height: 34px;
}

@media (min-width: 1280px) {
  .i-program-hover {
    width: 70px;
    height: 77px;
  }
}

.i-telemedicine {
  width: 31px;
  height: 34px;
}

@media (min-width: 1280px) {
  .i-telemedicine {
    width: 69px;
    height: 77px;
  }
}

.i-telemedicine-hover {
  width: 31px;
  height: 34px;
}

@media (min-width: 1280px) {
  .i-telemedicine-hover {
    width: 69px;
    height: 77px;
  }
}

.i-docs {
  width: 261px;
  height: 241px;
}

@media (min-width: 1280px) {
  .i-docs {
    width: 368px;
    height: 241px;
  }
}

.i-tube {
  width: 219px;
  height: 241px;
}

@media (min-width: 1280px) {
  .i-tube {
    width: 307px;
    height: 241px;
  }
}

.i-schedule {
  width: 260px;
  height: 202px;
}

@media (min-width: 1280px) {
  .i-schedule {
    width: 308px;
    height: 243px;
  }
}

.i-pdf,
.i-document {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  flex-shrink: 0;
}

.i-doc-blue {
  width: 30px;
  height: 41px;
}

@media (min-width: 768px) {
  .i-doc-blue {
    width: 38px;
    height: 52px;
  }
}

.i-home-blue {
  width: 30px;
  height: 41px;
}

@media (min-width: 768px) {
  .i-home-blue {
    width: 39px;
    height: 44px;
  }
}

.i-complex {
  width: 33px;
  height: 41px;
}

@media (min-width: 768px) {
  .i-complex {
    width: 42px;
    height: 52px;
  }
}

.i-glasses {
  width: 33px;
  height: 41px;
}

@media (min-width: 768px) {
  .i-glasses {
    width: 42px;
    height: 52px;
  }
}

.i-hierarchy {
  width: 33px;
  height: 41px;
}

@media (min-width: 768px) {
  .i-hierarchy {
    width: 42px;
    height: 52px;
  }
}

.i-red-star {
  width: 30px;
  height: 30px;
}

.i-microscope {
  width: 30px;
  height: 41px;
}

@media (min-width: 768px) {
  .i-microscope {
    width: 38px;
    height: 52px;
  }
}

.i-complex-program {
  width: 30px;
  height: 30px;
}

.i-bottle {
  width: 30px;
  height: 30px;
}

.i-bag {
  width: 38px;
  height: 39px;
}

@media (min-width: 768px) {
  .i-bag {
    width: 41px;
    height: 52px;
  }
}

.i-arrow-sale {
  width: 38px;
  height: 52px;
}

.i-calculate {
  width: 38px;
  height: 44px;
}

@media (min-width: 768px) {
  .i-calculate {
    width: 38px;
    height: 52px;
  }
}

.i-clinic,
.i-clinic-default {
  width: 12px;
  height: 16px;
  margin-right: 8px;
  margin-top: 2px;
  stroke: none;
  flex-shrink: 0;
  align-self: baseline;
}

.i-hospital {
  width: 38px;
  height: 52px;
}

.i-inform-base {
  width: 38px;
  height: 52px;
}

.link-phone {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #444;
}

@media (min-width: 1280px) {
  .link-phone {
    font-size: 16px;
    line-height: 26px;
  }
}

.link-phone__data {
  cursor: pointer;
}

.link-phone.dashed:hover {
  border-bottom: 1px dashed transparent;
  color: #F50016;
}

.link-text {
  font-family: "Montserrat", Arial, sans-serif;
  display: inline;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #444;
  border-bottom: 1px solid #ff7f32;
  transition: all 0.3s;
}

.link-text:hover {
  border-bottom: 1px solid transparent;
  color: #ff7f32;
}

.link-text.inherit {
  font-size: inherit;
}

.note-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
  display: inline-block;
}

.note-text--black {
  color: #142c36;
}

.note-text.link {
  margin-top: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .note-text.link {
    margin-left: 24px;
    margin-top: 0;
  }
}

.note-text.link:hover {
  color: #ff7f32;
}

.note-text--services {
  margin-top: 30px;
}

.lk {
  display: block;
  cursor: pointer;
}

.lk .i-lk {
  transition: all 0.3s;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}

.lk__text {
  display: inline-block;
  color: #142c36;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s;
  line-height: 22px;
}

@media (min-width: 1280px) {
  .lk:hover {
    color: #F50016;
  }

  .lk:hover .lk__text {
    color: inherit;
  }

  .lk:hover .i-lk {
    fill: currentColor;
  }
}

.link-wrapper .section-popup:first-of-type {
  border-top: 1px solid transparent;
}

.link-wrapper .section-popup:last-of-type {
  margin-bottom: 32px;
}

.link-wrapper .popup-button .i-arrow {
  transform: translateY(-4px) rotate(-90deg);
}

.link-wrapper .btn {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .link-wrapper {
    display: none;
  }
}

.btn-ico-bg {
  border-radius: 50%;
  background: #ff7f32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .btn-ico-bg {
    margin-left: 0.75rem;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden !important;
}

.ps {
  position: relative;
  overflow: hidden !important;
}

.ps__rail-y {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 10px;
  border-radius: 5px;
  background-color: #e7eff7;
}

.ps__thumb-y {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 23;
  box-shadow: 0 4px 3px rgba(20, 44, 54, 0.1);
  border-radius: 5px;
  background-color: #4fa0f0;
}

.ps__rail-x {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  height: 10px;
  border-radius: 5px;
  background-color: #e7eff7;
}

.ps__thumb-x {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 23;
  box-shadow: 0 4px 3px rgba(20, 44, 54, 0.1);
  border-radius: 5px;
  background-color: #4fa0f0;
}

@media (min-width: 768px) {
  .section-row {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .section-row {
    margin-bottom: 64px;
  }
}

@media (min-width: 1280px) {
  .section-row {
    margin-bottom: 64px;
  }
}

.red {
  color: #F50016 !important;
}

.black {
  color: #142c36;
}

.select-wrapper {
  display: inline-flex;
}

.select-holder {
  position: relative;
}

.select-holder:focus {
  outline: none;
}

.select-holder *:focus {
  outline: none;
}

.select-holder .selection {
  display: inline-block;
}

.select-holder .select2-dropdown {
  border: none;
}

.select-holder .select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: #142c36;
}

.select-holder .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit;
  border-bottom: 1px dashed #ff7f32;
  padding: 0;
  transition: border-bottom-color 0.3s;
}

.select-holder .select2-container {
  width: auto !important;
  height: 100%;
}

.select-holder .select2-container:hover .select2-selection--single .select2-selection__rendered {
  border-bottom-color: transparent;
}

.select-holder .select2-container--open .select2-selection--single .select2-selection__rendered {
  border-bottom-color: transparent;
}

.select-holder .select2-container--open .select2-selection--single .select2-selection__rendered::after {
  transform: rotate(-45deg);
}

.select-holder .select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-family: "Montserrat", Arial, sans-serif;
  margin-top: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  cursor: pointer;
  width: auto;
  color: currentColor;
  display: inline-block;
  transition: border-bottom-color 0.3s;
}

.select-holder .select2-selection {
  height: 100%;
  border: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  background: transparent;
}

.select-holder .select2-selection__arrow {
  display: none;
}

.select-holder .select2-selection__rendered {
  padding-left: 0;
  transition: border-bottom-color 0.3s;
}

.select-holder .select2-selection__rendered::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  color: #4fa0f0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px;
  transform-origin: 50% 50%;
  transform: translateY(-25%) rotate(135deg);
}

.select-holder .select2-container--default .select2-results > .select2-results__options {
  max-height: none;
  position: absolute;
  display: block;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  z-index: 9;
  border-top: none;
  box-sizing: border-box;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  background: #fff;
  transition: all 0.3s ease-in-out;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .select-holder .select2-container--default .select2-results > .select2-results__options {
    padding: 0;
  }
}

.select-holder .select2-results__option {
  padding: 4px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
  font-size: 0.875rem;
  line-height: 1.375rem;
  display: block;
  cursor: pointer;
  transition: color 0.3s;
}

@media (min-width: 1280px) {
  .select-holder .select2-results__option {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
    padding: 8px 24px;
  }
}

.select-holder .select2-results__option:hover {
  background: transparent;
  color: #F50016;
}

.select-holder .select2-container--default .select2-results__option[aria-selected=true] {
  background: #e8eaee;
  color: #6b6b6b;
}

.select-holder .select2-container--default .select2-results__option[aria-selected=false] {
  background-color: transparent;
}

.select-holder .select2-container--default .select2-results__option[aria-selected=false]:hover {
  color: #F50016;
}

.info-list {
  margin-top: 8px;
  margin-bottom: 24px;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .info-list {
    margin-bottom: 30px;
  }
}

.info-list__item {
  margin-bottom: 17px;
}

.info-list__item:first-child {
  margin-top: 15px;
}

.info-list__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .info-list__item {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .info-list__item {
    margin-bottom: 4px;
  }
}

.info-list__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.375rem;
}

.info-list__wrapper {
  margin-bottom: 12px;
}

.info-list__link {
  display: inline-flex;
  align-items: center;
}

.info-list__top-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  display: inline;
  font-size: 0.875rem;
  line-height: 1.375rem;
}

@media (min-width: 768px) {
  .info-list__top-title {
    font-size: 1rem;
    line-height: 1.625rem;
  }
}

@media (min-width: 768px) {
  .info-list .note-text {
    font-weight: 300;
    color: #142c36;
  }
}

@media (min-width: 1280px) {
  .info-list .note-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
  }
}

.info-list .note-text.black {
  display: block;
  color: #142c36;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .info-list .note-text.black {
    margin-right: 42px;
    width: 167px;
  }
}

.info-list .link-text {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 20px;
  display: inline;
}

@media (min-width: 1280px) {
  .text-wrapper {
    display: flex;
  }
}

.text-wrapper p {
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .text-wrapper__left {
    margin-top: 0;
    width: 50%;
    max-width: 564px;
    padding-right: 64px;
    border-right: 1px solid #7f7e7e;
  }
}

.text-wrapper__left p:last-child {
  margin-bottom: 0;
}

.text-wrapper__right {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .text-wrapper__right {
    margin-top: 32px;
  }
}

@media (min-width: 1280px) {
  .text-wrapper__right {
    margin-top: 0;
    width: 50%;
    max-width: 564px;
    padding-left: 64px;
  }
}

.text-wrapper__img {
  width: 290px;
  height: 190px;
  margin-bottom: 32px;
}

.text-wrapper__img img {
  width: 100%;
  height: auto;
}

.row h2 {
  margin-bottom: 8px;
}

@media (min-width: 1280px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
}

.row .link-text {
  margin-bottom: 32px;
  display: inline-block;
}

@media (min-width: 1280px) {
  .row .link-text {
    order: 2;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .row__left {
    width: 335px;
    margin-right: 24px;
  }
}

.popular-link {
  display: flex;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .popular-link {
    margin-bottom: 50px;
  }
}

.popular-link .nav-menu {
  margin-left: 0;
}

.popular-link .nav-menu__item {
  color: #F50016;
}

@media (min-width: 1280px) {
  .popular-link .nav-menu__item:hover {
    color: #142c36;
  }
}

.popular-link .i-red-star {
  margin-right: 24px;
}

@media (min-width: 768px) {
  .service__item {
    margin-bottom: 24px;
  }
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .button-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .button-wrapper {
    display: flex;
  }
}

.button-wrapper .btn {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .button-wrapper .btn {
    margin-bottom: 0;
    margin-right: 24px;
  }
}

.col-small {
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .col-small {
    width: 734px;
  }
}

.ps {
  position: relative;
}

.ps__scrollbar-x-rail {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 4px;
  background-color: #edf0f8;
  width: 100%;
  height: 9px;
  border-radius: 5px;
}

.ps__scrollbar-x {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 23;
  height: 100%;
  box-shadow: 0 4px 3px rgba(20, 44, 54, 0.1);
  border-radius: 5px;
  background-color: #ff7f32;
}

.ps__scrollbar-y-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 4px;
  background-color: #edf0f8;
  width: 9px;
  border-radius: 5px;
}

.ps__scrollbar-y {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 23;
  box-shadow: 0 4px 3px rgba(20, 44, 54, 0.1);
  border-radius: 5px;
  background-color: #ff7f32;
}

.round-box {
  margin-right: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .round-box {
    margin-right: 32px;
    margin-bottom: 32px;
  }
}

.round-box__color {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .round-box__color {
    margin-bottom: 32px;
    width: 100px;
    height: 100px;
  }
}

.round-box__text {
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
}

.round-box-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -24px;
  margin-bottom: -24px;
}

@media (min-width: 768px) {
  .round-box-wrapper {
    margin-right: -32px;
    margin-bottom: -32px;
  }
}

.button-wrapper-lib {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .button-wrapper-lib {
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
}

.button-wrapper-lib .btn {
  margin-bottom: 16px;
  margin-right: 24px;
  margin-left: 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .button-wrapper-lib .btn {
    margin-right: 24px;
    margin-bottom: 0;
  }
}

.button-wrapper-lib .note-text {
  display: block;
}

.library .checkbox {
  margin-right: 24px;
}

.library .c-radio {
  margin-right: 20px;
}

.section-step {
  display: block;
  margin-bottom: 32px;
}

.section-step h2 {
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .section-step h2 {
    margin-bottom: 24px;
  }
}

.section-step .filters-block {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .section-step .filters-block {
    padding-top: 32px;
  }
}

@media (min-width: 1280px) {
  .section-step .filters-block {
    display: block;
  }
}

.section-step .filters-block__select {
  margin-bottom: 16px;
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .section-step .filters-block__select {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1280px) {
  .section-step .filters-block__select {
    width: 320px;
  }
}

.section-step .filters-block__select .c-select--filter {
  width: 100%;
}

.show-form__btn.link-text {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", Arial, sans-serif;
}

.show-form__btn.close {
  display: inline-block;
}

.show-form .note-text {
  display: none;
}

.show-form.hidden .form-group {
  display: none;
}

.show-form.hidden .show-form__btn.close {
  display: none;
}

.show-form.hidden .filters-block__row {
  display: none;
}

.show-form.hidden .note-text {
  display: block;
}

.show-form--group {
  margin: 0 -24px;
  position: relative;
  border-top: 1px solid #ffffff;
  padding: 24px 24px 0px;
  margin-top: 24px;
}

@media (min-width: 1280px) {
  .show-form--group {
    margin: 0 0 24px;
    padding: 24px 0 0;
  }
}

.show-form--group.hidden {
  border-top: 1px solid transparent;
  padding: 0 24px;
}

@media (min-width: 1280px) {
  .show-form--group.hidden {
    padding: 0;
  }
}

.form-group-wrapper .form-group {
  width: 100%;
  display: inline-block;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.form-group-wrapper .form-group:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .form-group-wrapper .form-group {
    width: 238px;
    margin-bottom: 0;
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .form-group-wrapper .form-group {
    width: 290px;
  }
}

.form-group-wrapper__row {
  display: flex;
  width: 100%;
  margin-bottom: -16px;
}

.form-group-wrapper__row .form-group {
  width: calc(50% - 12px);
  margin-right: 24px;
}

.form-group-wrapper__row .form-group:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .form-group-wrapper__row {
    margin-bottom: 0;
  }

  .form-group-wrapper__row .form-group {
    width: 104px;
  }

  .form-group-wrapper__row .form-group .form-input {
    padding-left: 8px;
    padding-right: 8px;
  }

  .form-group-wrapper__row .form-group.flat {
    width: 69px;
  }
}

@media (min-width: 1280px) {
  .form-group-wrapper__row.flat {
    width: 104px;
  }
}

@media (min-width: 768px) {
  .form-group-wrapper .filters-block__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.test-page-wrapper {
  display: block;
}

@media (min-width: 1280px) {
  .test-page-wrapper {
    display: flex;
  }
}

.test-page-wrapper__left {
  display: block;
  z-index: 2;
  position: relative;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .test-page-wrapper__left {
    margin-bottom: 20px;
  }
}

@media (min-width: 1280px) {
  .test-page-wrapper__left {
    margin-bottom: 0;
    width: calc(50% - 12px);
    margin-right: 24px;
  }
}

.test-page-wrapper__left p {
  font-weight: 400;
}

@media (min-width: 768px) {
  .test-page-wrapper__left p {
    width: 604px;
  }
}

.test-page-wrapper__right {
  display: block;
}

@media (min-width: 1280px) {
  .test-page-wrapper__right {
    width: calc(50% - 12px);
  }
}

.places-wrapper {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.places-wrapper .place {
  display: flex;
  margin-bottom: 12px;
}

.places-wrapper .place:hover .place__text {
  color: #6b6b6b;
}

@media (min-width: 768px) {
  .places-wrapper {
    display: none;
  }
}

.scheme {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  display: inline-block;
  margin-right: 12px;
  color: #142c36;
  transition: color 0.3s;
}

a.scheme:hover {
  color: #F50016;
}

.card-hover {
  display: none;
}

@media (min-width: 1280px) {
  .card-hover {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    opacity: 0;
    background: transparent;
    transition: box-shadow 0.3s;
    pointer-events: none;
  }
}

.card-hover.active {
  opacity: 1;
  background: #FFFFFF;
  box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
  z-index: 2;
}

.tel {
  white-space: nowrap;
  display: inline-block;
}

.spoiler-wrapper-top-page {
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .spoiler-wrapper-top-page {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .spoiler-wrapper-top-page .spoiler-box__btn-show {
    margin-top: 0;
  }
}

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

.links-list li.active a {
  font-weight: bold;
}

@media (min-width: 1280px) {
  .links-list li.active a:hover {
    color: #142c36;
  }
}

.section-schedule .loader {
  display: none;
}

.section-schedule.loading .loader {
  display: block;
  width: 100px;
  height: 100px;
}

.block-wrapper h3,
.block-wrapper .h3 {
  margin-bottom: 12px;
}

.section-text {
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .section-text {
    margin-bottom: 48px;
  }
}

@media (min-width: 1280px) {
  .section-text {
    margin-bottom: 56px;
  }
}

@media (min-width: 1920px) {
  .section-text {
    margin-bottom: 48px;
  }
}

.slick-list {
  padding: 1px;
}

@media (min-width: 1280px) {
  .services-list .spoiler-wrapper a {
    margin-top: 1px;
    margin-left: 1px;
  }
}

@keyframes dropdown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes flyout {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

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

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: -webkit-clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease, -webkit-clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

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

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.1px;
  color: #142C36;
}

.title_extra_small {
  font-size: 16px;
  line-height: 20px;
}

.title_small {
  font-size: 20px;
  line-height: 26px;
}

.title_middle {
  font-size: 24px;
  line-height: 34px;
}

.title_fw_500 {
  font-weight: 500;
}

@media (max-width: 1024px) {
  .title {
    font-size: 24px;
  }

  .title_small {
    font-size: 16px;
  }

  .title_extra_small {
    font-size: 16px;
    line-height: 20px;
  }
}

.circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid transparent;
  outline: none;
  color: #ff7f32;
  cursor: pointer;
  transition: background 0.35s ease-in-out, color 0.35s ease-in-out, border 350ms ease-in-out;
}

.circle-btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/images/svg/circle-btn-arrow-right.svg") center center/cover no-repeat;
  transition: background 350ms ease-in-out;
}

.circle-btn_bg_transparent {
  background: transparent;
}

.circle-btn_border_color_orange {
  border-color: #FF7F32;
}

@media (hover: hover) {
  .circle-btn:hover {
    background: #6ea55a;
    border-color: #6ea55a;
    color: #fff;
  }

  .circle-btn:hover::after {
    background: url("/images/svg/circle-btn-arrow-right_white.svg") center center/cover no-repeat;
  }
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  outline: none;
  border: none;
  background: #F5F7FA;
  cursor: pointer;
  color: #FF7F32;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.slider-btn_bg_white {
  background: #fff;
}

.slider-btn_bg_blured {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.slider-btn_ico_white {
  color: #fff;
}

.slider-btn::after,
.slider-btn::before {
  display: none;
}

.slider-btn.swiper-button-disabled {
  opacity: 0;
}

@media (hover: hover) {
  .slider-btn:hover {
    background: #6ea55a;
    color: #fff;
  }
}

.preloader {
  display: none;
  position: absolute;
  width: 102px;
  height: 102px;
  left: 50%;
  top: 50%;
  min-height: 102px;
  transform: translateX(-50%) translateY(-50%);
}

.preloader_big-circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transform-origin: 50%;
  stroke: #FF7F32;
  animation: preloader-draw-big 1s 0.5s infinite alternate;
}

.preloader_small-circle {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transform-origin: 50%;
  stroke: #6EA55A;
  animation: preloader-draw-small 1s infinite alternate;
}

@keyframes preloader-draw-small {
  0% {
    stroke-dashoffset: 0;
    transform: rotate(0deg);
  }

  to {
    stroke-dashoffset: 210;
    transform: rotate(1turn);
  }
}

@keyframes preloader-draw-big {
  0% {
    stroke-dashoffset: 0;
    transform: rotateY(180deg) rotate(1turn);
  }

  to {
    stroke-dashoffset: 240;
    transform: rotateY(180deg) rotate(0deg);
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion__item {
  display: flex;
  flex-direction: column;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.accordion__header::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/images/refactor/home-page/accordion-arrow-down.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.accordion__item_active .accordion__header::after {
  background-image: url("/images/refactor/home-page/accordion-arrow-top.svg");
}

.accordion__item:not(.accordion__item_show) .accordion__body {
  display: none;
}

.accordion__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #142C36;
}

.common-review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  max-width: 416px;
  background: #FFFFFF;
  height: auto;
}

.common-review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF820A;
}

.common-review-card__stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.common-review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.common-review-card__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #CFCFD1;
}

.common-review-card__name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 20px;
}

@media (max-width: 767px) {
  .common-review-card__name {
    height: auto;
  }
}

.common-review-card__clinic {
  margin-top: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
  height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media (max-width: 767px) {
  .common-review-card__clinic {
    height: auto;
  }
}

.common-review-card__content {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #142C36;
  margin-bottom: auto;
}

.common-review-card__content_initial {
  -webkit-line-clamp: 7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.common-review-card__more-btn {
  background: transparent;
  border: unset;
  padding: 0;
  outline: unset;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
  color: #FF820A;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}

.doctor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 16px 16px 16px;
  border-radius: 24px;
  background: linear-gradient(181.51deg, #F2F6FE 39.14%, #E3E7F0 78.92%);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  max-width: 308px;
  width: 100%;
  height: auto;
  min-height: 550px;
}

.doctor-card__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 100%;
  width: calc(100% - 16px);
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.doctor-card__image-leaf {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
          mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
  background: #fff;
}

.doctor-card__image-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 108%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  aspect-ratio: 1/1;
  -webkit-mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
          mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
  transform: translateY(-7.4%) translateX(0%);
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.doctor-card__clinics {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 8px;
}

.doctor-card__clinics span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9999A4;
  font-size: 14px;
}

.doctor-card__clinics svg {
  color: #9999A4;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 350ms ease-in-out;
}

.doctor-card__clinics ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-height: 100px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}

.doctor-card__clinics ul::-webkit-scrollbar {
  width: 2px;
}

.doctor-card__clinics ul::-webkit-scrollbar-track {
  background: transparent;
}

.doctor-card__clinics ul::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}

.doctor-card__clinics ul li {
  font-size: 12px;
  line-height: 18px;
  color: #142c36;
}

.doctor-card__clinics:hover {
  border-color: #6ea55a;
  color: #6ea55a;
}

.doctor-card__clinics:hover svg {
  color: #6ea55a;
}

.doctor-card__clinics:hover ul {
  opacity: 1;
  pointer-events: auto;
}

.doctor-card__name {
  margin-top: 22px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 20px;
}

.doctor-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.doctor-card__sign-up-btn.primary-button {
  padding: 10px 24px;
  min-height: 44px;
}

.doctor-card__info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.doctor-card__info-list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
}

.doctor-card__comment {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 30px;
  left: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 4px 8px;
  z-index: 1;
}

.doctor-card__comment-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #FF7F32;
}

.doctor-card__comment-count {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
}

@media screen and (max-width: 1024px) {
  .doctor-card {
    max-width: 330px;
  }

  .doctor-card__image-preview {
    left: -4px;
  }

  .doctor-card__image-leaf {
    left: 4%;
    right: 4%;
    bottom: 0;
    top: auto;
    width: 92%;
    height: 92%;
  }
}

.btn {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  background: none;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  border: none;
  color: #142c36;
  border-radius: 3px;
  text-align: center;
  padding: 9px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .btn {
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 3px;
  }
}

.btn-text_grey {
  color: rgb(107, 107, 107);
}

.btn-ico.btn-ico_blog {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 0;
  transition: color 350ms ease-in-out;
}

.btn-ico.btn-ico_blog svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  stroke: #6B6B6B;
  transition: all 350ms ease-in-out;
}

@media (hover: hover) {
  .btn-ico.btn-ico_blog:hover {
    color: #ff7f32;
  }

  .btn-ico.btn-ico_blog:hover svg {
    stroke: #ff7f32;
  }
}

.btn-blue {
  background: #ff7f32;
  color: #ffffff;
  border: none;
}

.btn-blue.btn-ico .btn-ico-bg {
  background: #ff7f32;
}

.btn-blue.btn-ico .btn-ico-bg .i-arrow {
  fill: #ffffff;
}

@media (min-width: 1280px) {
  .btn-blue:hover {
    box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
    background: #f7650d;
  }
}

.btn-blue:active {
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  background: #f7650d;
}

.btn-blue .i-arrow-long {
  display: inline-block;
  transform: rotate(90deg);
  fill: #ffffff;
  width: 21px;
  height: 13px;
  margin-left: 12px;
}

.btn-small {
  padding: 9px 24px;
}

@media (min-width: 1280px) {
  .btn-small {
    padding: 14px 24px;
  }
}

.btn-outline-blue {
  background: transparent;
  border: 1px solid #ff7f32;
  padding: 13px 12px;
  min-height: 40px;
}

@media (min-width: 768px) {
  .btn-outline-blue {
    padding: 13px 24px;
    min-height: 50px;
  }
}

@media (min-width: 1280px) {
  .btn-outline-blue:hover {
    border-color: #F50016;
  }

  .btn-outline-blue:hover .i-star {
    fill: #F50016;
  }
}

.btn-outline-blue:active {
  border-color: #F50016;
}

.btn-outline-blue:active .i-star {
  fill: #F50016;
}

.btn-outline-blue .i-star {
  transition: fill 0.3s;
  fill: #ff7f32;
}

.btn-outline-blue.btn-ico-right {
  text-align: left;
  padding: 11px 16px;
  transition: border-color 0.3s;
}

@media (min-width: 768px) {
  .btn-outline-blue.btn-ico-right {
    padding: 9px 24px;
  }
}

@media (min-width: 1280px) {
  .btn-outline-blue.btn-ico-right:hover .btn-ico-bg {
    background: #F50016;
  }
}

.btn-outline-blue.btn-ico-right:active .btn-ico-bg {
  background: #F50016;
}

.btn-outline-blue.btn-ico-left {
  padding: 13px 24px;
}

@media (max-width: 767px) {
  .btn-outline-blue.btn-ico-left {
    padding: 13px 12px;
  }
}

.btn-outline-blue.btn-ico-left .i-star {
  transition: fill 0.3s;
  fill: #ff7f32;
}

.btn-outline-blue.btn-ico-left .i-phone {
  width: 17px;
  transition: fill 0.3s;
  height: 17px;
  fill: #ff7f32;
}

@media (min-width: 1280px) {
  .btn-outline-blue.btn-ico-left:hover .i-star,
  .btn-outline-blue.btn-ico-left:hover .i-phone {
    fill: #F50016;
  }
}

.btn-outline-blue.btn-ico-left .btn-ico-bg {
  margin-left: 0;
  margin-right: 12px;
}

@media (min-width: 768px) {
  .btn-outline-blue.btn-ico-left .btn-ico-bg {
    margin-right: 16px;
  }
}

.btn-outline-blue.btn-ico .btn-ico-bg {
  background: #ff7f32;
  transition: background 0.3s;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .btn-outline-blue.btn-ico .btn-ico-bg {
    margin-left: 16px;
    width: 30px;
    height: 30px;
  }
}

.btn-outline-blue.btn-ico .btn-ico-bg .i-arrow {
  fill: #ffffff;
}

.btn-outline-blue .i-star {
  margin-right: 12px;
}

.btn-outline-blue .i-phone {
  margin-right: 12px;
}

.btn-outline-white {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 7px 16px;
  min-height: 40px;
  background-color: transparent;
}

@media (min-width: 768px) {
  .btn-outline-white {
    min-height: 50px;
    padding: 9px 24px;
  }
}

.btn-outline-white::after {
  content: "";
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  left: -2px;
  top: -2px;
  transition: box-shadow 0.3s;
}

.btn-outline-white .btn-ico-bg {
  background: #ffffff;
  transition: background 0.3s;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .btn-outline-white .btn-ico-bg {
    margin-left: 16px;
    width: 30px;
    height: 30px;
  }
}

.btn-outline-white .i-arrow {
  transform: rotate(-90deg);
  fill: #ff7f32;
}

@media (min-width: 768px) {
  .btn-outline-white:hover {
    box-shadow: inset 0 2px 10px rgba(20, 44, 54, 0.3);
  }

  .btn-outline-white:hover::after {
    box-shadow: 0 0 10px rgba(20, 44, 54, 0.3);
  }

  .btn-outline-white:hover .i-arrow {
    fill: #F50016;
  }
}

.btn-outline-white.small {
  padding: 6.5px 16px 7px;
}

@media (min-width: 768px) {
  .btn-outline-white.small {
    padding: 11.5px 16px 12px;
  }
}

.btn-ico .btn-ico-bg {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}

@media (min-width: 768px) {
  .btn-ico .btn-ico-bg {
    margin-left: 16px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
  }
}

.btn-ico .i-arrow {
  transform: rotate(-90deg);
  fill: #ffffff;
}

.btn-ico.right .i-arrow {
  transform: rotate(-90deg);
  fill: #ffffff;
}

.btn-ico .close {
  display: none;
}

.btn-link {
  background: none;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.btn-reset {
  padding: 0;
  border: none;
  background: none;
  font-family: "Montserrat", Arial, sans-serif;
}

.btn[disabled] {
  background-color: #7f7e7e;
}

.btn[disabled]:hover {
  box-shadow: none;
}

.btn-video {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #6b6b6b;
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  width: 165px;
  padding: 0;
}

.btn-video .i-play {
  width: 70px;
  height: 70px;
  fill: #ff7f32;
  margin-right: 10px;
  flex-shrink: 0;
}

@media (min-width: 1280px) {
  .btn-video:hover .i-play {
    fill: #F50016;
  }
}

.btn-video:active .i-play {
  fill: #F50016;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 16px 0;
  background-color: #fff;
  z-index: 160;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 350ms ease-in-out;
}

.header_scroll {
  transform: translateY(-60px);
}

.header__bottom {
  display: flex;
  align-items: center;
}

.header__available-link {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 30px;
  cursor: pointer;
}

.header__available-link svg {
  width: 100%;
  height: 100%;
  color: #9dc65f;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .header__available-link:hover svg {
    color: #FF7F32;
  }
}

.header__top-navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 24px;
}

.header__top-navbar-link {
  display: block;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  color: #444;
  transition: color 350ms ease-in-out;
  background: none;
  outline: none;
  border: none;
  border-radius: unset;
  cursor: pointer;
  margin-right: 24px;
}

.header__top-navbar-link:last-child {
  margin-right: 0;
  margin-left: auto;
}

.header__top-navbar-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #FF7F32;
  transition: all 350ms;
}

.header .navbar__menu {
  align-items: center;
  justify-content: space-between;
}

.header__interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #EDF0F8;
}

.header__logo {
  position: relative;
  display: flex;
  justify-content: flex-start;
  max-width: 220px;
  z-index: 4;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__search {
  margin: 0 auto;
  width: 100%;
  margin-right: 16px;
  margin-left: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  margin: 0 16px 0 0;
  cursor: pointer;
  flex-shrink: 0;
}

.header__phone_mob {
  display: none;
}

.header__phone .link-phone {
  font-size: 14px;
  line-height: 22px;
  transition: color 350ms ease-in-out;
}

.header__phone img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.header .navbar {
  padding-top: 16px;
}

.header__feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
  min-height: 44px;
  color: #fff;
  border: 1px solid #FF7F32;
  background-color: #FF7F32;
  outline: none;
  cursor: pointer;
  transition: background-color 350ms ease-in-out, color 350ms ease-in-out;
}

.header__feedback-btn_bg_transparent {
  background-color: transparent;
  color: #444444;
}

.header__feedback-btn:not(:last-of-type) {
  margin-right: 16px;
}

.header__feedback-btn span:nth-child(1) {
  display: inline;
}

.header__feedback-btn span:nth-child(2) {
  display: none;
}

.header__menu {
  display: block;
  position: fixed;
  padding: 62px 0 0 0;
  left: 0;
  width: 79vw;
  max-height: 100dvh;
  height: 100%;
  transform: translateX(-200%);
  top: 0;
  background: #edf0f8;
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 1280px) {
  .header__menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header__menu {
    padding: 16px 0 0 0;
  }
}

.header__menu .nav-menu__item:last-child {
  margin-bottom: 0;
}

.header__menu-wrapper {
  display: inline-flex;
  justify-content: flex-end;
  position: relative;
  margin-left: auto;
  padding: 0;
}

@media (min-width: 768px) {
  .header__menu-wrapper {
    margin-bottom: 0;
    margin-left: 16px;
  }
}

@media (min-width: 1024px) {
  .header__menu-wrapper {
    display: none;
  }
}

.header__lk-button {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.header__lk-button::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("/images/lk/lk-header.svg") center center/contain no-repeat;
}

.header__lk-button span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .header__lk-button:hover span {
    color: #FF7F32;
  }
}

.header.opened .header__menu {
  z-index: 8;
  width: 100vw;
  transform: translateX(0%);
  pointer-events: all;
  transition: transform 0.3s linear;
}

.header.opened .header__menu .nav-menu__item {
  transform: translateX(0);
}

.header.opened .header__btn-menu:not(.js-btn-menu-open) .line:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
  right: 0;
}

.header.opened .header__btn-menu:not(.js-btn-menu-open) .line:nth-child(2) {
  opacity: 0;
}

.header.opened .header__btn-menu:not(.js-btn-menu-open) .line:nth-child(3) {
  transform: rotate(-45deg);
  right: 0;
  top: 11px;
}

.header__btn-menu {
  position: relative;
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  outline: none;
  width: 24px;
  height: 24px;
  z-index: 7;
  justify-self: flex-end;
  order: 4;
}

.header__btn-menu-notification {
  position: absolute;
  top: 2px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  z-index: 8;
}

.header__btn-menu-notification::after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: #FF7F32;
}

@media (min-width: 1024px) {
  .header__btn-menu {
    display: none;
  }
}

.header__btn-menu .line {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  left: calc(50% - 12px);
  background-color: black;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .header__btn-menu .line {
    right: 12px;
  }
}

.header__btn-menu .line:nth-child(1) {
  top: 6px;
}

.header__btn-menu .line:nth-child(2) {
  top: 11px;
}

.header__btn-menu .line:nth-child(3) {
  top: 16px;
}

.header__mobmenu-back-btn {
  position: relative;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-start;
  background: none;
  border: none;
  color: #444;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  transition: 0.35s;
  z-index: 7;
}

.header__mobmenu-back-btn span {
  margin: 0 auto;
  padding-left: 88px;
}

.header__mobmenu-back-btn svg {
  width: 24px;
  height: 24px;
}

.header__menu-interface {
  padding-bottom: 16px;
  border-bottom: 1px solid #FFFFFF;
}

.header__menu-interface .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__banner {
  display: none;
  background: linear-gradient(to left, #9DC65F 0%, #6EA55A 99.54%);
}

.header__banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  padding-top: 6px;
}

.header__banner-content {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header__banner-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__banner-close-btn {
  display: flex;
  align-items: center;
  justify-items: center;
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

.header__banner-close-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__banner-logo {
  display: flex;
  align-items: center;
  justify-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #EDF0F8;
}

.header__banner-logo img {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__banner-descr {
  max-width: 127px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1;
  text-align: left;
  color: #fff;
}

.header__banner-descr span:nth-child(1) {
  font-size: 12px;
}

.header__banner-descr span:nth-child(2) {
  font-size: 9px;
}

.header__banner-setup-button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-radius: 40px;
  padding: 7px 16px;
  background: #6EA55A;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.header__top-interface {
  padding: 12px 0 12px;
  margin-bottom: 14px;
  background: #F2F5FD;
  transform: translateY(0);
  transition: transform 350ms ease-in-out;
}

.header__top-interface-wrapper {
  display: flex;
  align-items: center;
}

.header__top-interface_hidden {
  transform: translateY(-100%);
}

.header__clinic-loc {
  display: inline-flex;
  padding: 2px;
  gap: 16px;
  border-radius: 10px;
  border: 1px solid #E5E5E9;
  background: #fff;
}

.header__clinic-loc-select {
  position: relative;
  display: inline-block;
}

.header__clinic-loc-city {
  background-color: #FF7F32;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  padding: 5px 8px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
}

.header__clinic-loc-city svg:nth-child(1) {
  width: 20px;
  height: 20px;
}

.header__clinic-loc-city svg:nth-child(3) {
  width: 20px;
  height: 20px;
}

.header__clinic-loc-city.open svg:nth-child(3) {
  transform: rotate(-180deg);
}

.header__clinic-loc-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1019607843);
  display: none;
  min-width: 100%;
  width: 100vw;
  max-width: 183px;
  z-index: 5;
}

.header__clinic-loc-dropdown.open {
  display: block;
}

.header__clinic-loc-dropdown-option {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #444444;
  padding: 5px;
  cursor: pointer;
  transition: color 0.35s ease-in-out;
}

.header__clinic-loc-dropdown-option:hover {
  color: #FF7F32;
}

.header__clinic-loc-dropdown-option.selected {
  color: #FF7F32;
}

.header__clinic-award {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 12px;
}

.header__clinic-award-svg {
  width: 28px;
  height: 16px;
}

.header__clinic-award-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}

@media (hover: hover) {
  .header__feedback-btn:hover {
    background-color: transparent;
    color: #444444;
  }

  .header__feedback-btn_bg_transparent:hover {
    background-color: #FF7F32;
    color: #FFF;
  }

  .header__top-navbar-link:hover {
    color: #FF7F32;
  }

  .header__top-navbar-link:hover::after {
    width: 100%;
  }

  .header__phone a:hover {
    color: #FF7F32;
  }
}

@media (max-width: 1279px) {
  .header__feedback-btn span:nth-child(1) {
    display: none;
  }

  .header__feedback-btn span:nth-child(2) {
    display: inline;
  }

  .header__logo {
    max-width: 146px;
  }
}

@media (max-width: 1023px) {
  .header {
    min-height: 56px;
    padding: 0 0 8px 0;
    overflow: unset;
    transform: unset;
  }

  .header__available-link {
    display: none;
    margin-right: 16px;
  }

  .header__banner_active {
    display: block;
  }

  .header__wrapper {
    padding-top: 8px;
  }

  .header__top-navbar,
  .header .navbar {
    display: none;
  }

  .header__interface {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    border-bottom: none;
    gap: 8px;
    min-height: 40px;
  }

  .header__interface .header__btn-menu {
    order: -1;
  }

  .header__top-interface {
    display: none;
  }

  .header__clinic-loc {
    margin-bottom: 16px;
  }

  .header__phone {
    display: none;
    justify-content: center;
    margin: 0;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid #9DC65F;
  }

  .header__phone::after {
    content: "";
    display: inline-flex;
    width: 16px;
    height: 16px;
    background: url("/images/header/phone.svg") center center/contain no-repeat;
  }

  .header__phone img,
  .header__phone a,
  .header__phone .link-phone {
    display: none;
  }

  .header__phone_mob {
    display: inline-flex;
    margin: 0;
  }

  .header__feedback-btn {
    padding: 7px;
    border-radius: 50%;
    margin-left: 4px;
    min-height: auto;
    background: transparent;
  }

  .header__feedback-btn_bg_transparent {
    display: none;
  }

  .header__feedback-btn span:nth-child(n) {
    display: none;
  }

  .header__feedback-btn::after {
    content: "";
    display: inline-flex;
    width: 16px;
    height: 16px;
    background: url("/images/header/calendar-edit.svg") center center/contain no-repeat;
  }

  .header__logo {
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
  }

  .header__menu .header__available-link {
    display: inline-block;
    margin-left: auto;
  }

  .header__menu .mobile-menu .search {
    height: 100%;
  }

  .header__menu .mobile-menu .search__input {
    height: 100%;
  }

  .header__menu .mobile-menu .search__input input {
    height: 40px;
    color: #6B6B6B;
    border-radius: 40px;
    border: none;
    background-color: #fff;
  }

  .header__menu .mobile-menu .search__input input:focus-visible {
    outline: none;
  }

  .header__menu .mobile-menu .search__input svg {
    display: none;
  }

  .header__lk-button {
    display: none;
  }

  .header__btn-menu {
    margin-right: 40px;
    flex-shrink: 0;
  }

  .header__search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    left: 34px;
    order: -1;
    margin: 0;
    max-width: 24px;
    transition: max-width 350ms ease-in-out, left 350ms ease-in-out;
    will-change: max-width, left;
  }

  .header__search .search {
    height: 40px;
  }

  .header__search .search__input .search__input-loupe {
    right: unset;
    left: 8px;
  }

  .header__search .search__input .search__input-loupe svg {
    fill: #CFCFD1;
  }

  .header__search .search__input input {
    padding: 0 8px 0 8px;
    background: transparent;
    border-color: transparent;
    pointer-events: none;
    color: #142C36;
    transition: background 350ms ease-in-out, border-color 350ms ease-in-out;
  }

  .header__search .search__input input:focus-visible + .search__input-loupe {
    opacity: 1;
  }

  .header__search .search__input input::-moz-placeholder {
    color: transparent;
  }

  .header__search .search__input input::placeholder {
    color: transparent;
  }

  .header__search .search__input input:focus-visible {
    outline: none;
  }

  .header__search_active {
    max-width: 100%;
    margin: 0;
    left: 0 !important;
  }

  .header__search_active .search__input input {
    padding: 0 32px 0 48px;
    border-color: #EDF0F8;
    background: #EDF0F8;
    pointer-events: auto;
  }

  .header__search_active .search__input-loupe svg {
    fill: #FF9C00 !important;
  }

  .header__search_active .search__input input::-moz-placeholder {
    color: #CFCFD1;
  }

  .header__search_active .search__input input::placeholder {
    color: #CFCFD1;
  }

  .header.opened .header__interface::after {
    background-color: #fff;
    z-index: 4;
  }

  .header.opened .header__menu .header__btn-menu {
    margin-right: 0;
  }

  .header.opened .header__logo.js-header-mob-menu-logo {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .header__logo {
    display: flex;
    justify-content: flex-start;
  }

  .header__phone img {
    width: 16px;
    height: 16px;
  }

  .header__phone .link-phone {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 450px) {
  .header__available-link {
    margin: 0;
  }

  .header__mobmenu-back-btn span {
    padding-left: 60px;
  }

  .header__menu-interface .container {
    gap: 16px;
  }
}

@media (max-width: 380px) {
  .header__feedback-btn {
    margin-left: 0;
  }

  .header__btn-menu {
    margin-right: 32px;
  }

  .header__search {
    left: 24px;
  }

  .header__clinic-loc {
    gap: 8px;
  }
}

.footer {
  position: relative;
  background-color: #EDF0F8;
  flex-shrink: 0;
}

.footer__header {
  padding: 40px 0;
  background: #f8f8f8;
}

.footer__header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__header-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer__header-tel {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.1px;
  margin-right: 24px;
  color: #142c36;
  transition: color 350ms ease-in-out;
}

.footer__header-btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  border-radius: 40px;
  border: 1px solid #ff7f32;
  color: #444444;
  padding: 10px 16px;
  min-height: 44px;
  transition: background-color 350ms ease-in-out, color 350ms ease-in-out, border-color 350ms ease-in-out;
}

.footer__header-btn:nth-of-type(1) {
  margin-right: 24px;
}

.footer__header-btn:nth-of-type(2) {
  background: #ff7f32;
  color: #fff;
}

.footer__header-social {
  margin-top: 0;
}

.footer__header-social .social__link {
  border: 1px solid #fff;
  transition: border-color 350ms ease-in-out;
}

.footer__body {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 60px;
  gap: 30px;
  border-bottom: 1px solid #cfcfd1;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
}

.footer__nav input {
  opacity: 0;
  width: 0;
  height: 0;
  background: transparent;
  border: none;
  outline: none;
}

.footer__nav-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #6ea55a;
}

.footer__nav-title svg {
  display: none;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}

.footer__nav-list-item {
  cursor: pointer;
}

.footer__nav-list-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #142c36;
  transition: color 350ms ease-in-out;
}

.footer__nav-list-link_with_icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__nav-list-link_with_icon svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer__bottom-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 40px 0;
  -moz-column-gap: 48px;
       column-gap: 48px;
}

.footer__bottom-text {
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
}

.footer__bottom-text a {
  display: inline-flex;
  align-items: center;
  color: #ff7f32;
  transition: color 350ms ease-in-out;
}

.footer__bottom-text a svg {
  width: 18px;
  height: 18px;
  margin-left: 4px;
}

.footer__bottom-client-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__additional-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.footer__info-panel {
  display: flex;
  grid-column: 2;
  grid-row: 1/4;
  align-items: flex-start;
  gap: 48px;
}

.footer__quality-control {
  display: grid;
  grid-template-columns: 48px 200px;
  justify-content: flex-start;
  padding: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 10px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 32px;
  background: #fff;
}

.footer__quality-control-img {
  grid-row: span 2;
  width: 48px;
  height: 48px;
}

.footer__quality-control-text {
  font-size: 12px;
  line-height: 16px;
  color: #444444;
}

.footer__quality-control-buttons {
  display: flex;
  align-items: center;
}

.footer__quality-control-button.btn {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  border-radius: 30px;
  border: 1px solid #ff7f32;
  padding: 5px 12px 5px 12px;
  transition: background-color 350ms ease-in-out, color 350ms ease-in-out, border-color 350ms ease-in-out;
}

.footer__quality-control-button:nth-child(1).btn {
  margin-right: 16px;
}

.footer__quality-control-button:nth-child(2).btn {
  border-color: #cfcfd1;
  background-color: #cfcfd1;
}

.footer__payments-methods {
  padding-top: 0;
}

.footer__payments-methods img {
  width: 100%;
  height: auto;
  max-width: 39px;
}

.footer__payments-methods img:not(:last-child) {
  margin-right: 13px;
}

.footer__payments-methods_mob {
  display: none;
}

@media (hover: hover) {
  .footer__nav-list-item:hover .footer__nav-list-link:not(.primary-button),
  .footer__header-tel:hover {
    color: #ff7f32;
  }

  .footer__bottom-text a:hover {
    color: #6b6b6b;
  }

  .footer__quality-control-button:nth-child(1).btn:hover {
    color: #fff;
    background-color: #ff7f32;
  }

  .footer__quality-control-button:nth-child(2).btn:hover {
    border-color: #ff7f32;
    color: #fff;
    background-color: #ff7f32;
  }

  .footer__header-btn:nth-of-type(1):hover {
    background: #ff7f32;
    color: #fff;
  }

  .footer__header-btn:nth-of-type(2):hover {
    background: transparent;
    color: #444444;
  }

  .footer__header-social .social__link:hover {
    border-color: #ff7f32;
  }
}

@media (max-width: 1279px) {
  .footer__info-panel {
    flex-direction: column;
    align-items: flex-end;
  }

  .footer__bottom-info {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 1023px) {
  .footer__body {
    gap: 10px;
  }

  .footer__header-social.social {
    justify-content: flex-start;
  }

  .footer__header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__header-info {
    margin-bottom: 16px;
  }

  .footer__bottom-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__quality-control,
  .footer__payments-methods {
    grid-row: unset;
    grid-column: unset;
    justify-self: flex-start;
  }

  .footer__payments-methods {
    display: none;
  }

  .footer__payments-methods_mob {
    display: block;
  }

  .footer__quality-control {
    grid-row: 3;
  }

  .footer__info-panel {
    grid-column: unset;
    grid-row: unset;
    align-items: flex-start;
    order: -1;
    gap: 40px;
  }

  .footer__info-panel .mob-app-info__title {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer__header-info {
    flex-direction: column;
    width: 100%;
  }

  .footer__header-btn {
    width: 100%;
  }

  .footer__header-social.social {
    justify-content: center;
  }

  .footer__header-btn:nth-of-type(1) {
    margin: 16px 0 16px 0;
  }

  .footer__header .container {
    align-items: center;
  }

  .footer__body {
    grid-template-columns: 1fr;
    align-items: unset;
    justify-content: unset;
    gap: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer__nav {
    row-gap: 0;
    overflow: hidden;
  }

  .footer__nav-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 24px;
    border-bottom: 1px solid #cfcfd1;
    background: #edf0f8;
  }

  .footer__nav-title svg {
    display: block;
    margin-left: 10px;
    flex-shrink: 0;
    transition: transform 350ms;
  }

  .footer__nav:first-child input + .footer__nav-title {
    border-top: 1px solid #cfcfd1;
  }

  .footer__nav-list {
    margin-bottom: -130%;
    overflow-y: hidden;
    transform: translate3d(0, 0, 0);
    transition: margin-bottom 350ms;
  }

  .footer__nav-list-item:last-child {
    padding-bottom: 16px;
  }

  .footer__nav-list-item:first-child {
    padding-top: 16px;
  }

  .footer__bottom-info {
    padding-bottom: 100px;
  }

  #about-company:checked ~ .footer__nav-list,
  #patients:checked ~ .footer__nav-list,
  #legal-information:checked ~ .footer__nav-list,
  #cooperation:checked ~ .footer__nav-list {
    max-height: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid #cfcfd1;
  }

  #about-company:checked ~ .footer__nav-title svg,
  #patients:checked ~ .footer__nav-title svg,
  #legal-information:checked ~ .footer__nav-title svg,
  #cooperation:checked ~ .footer__nav-title svg {
    transform: rotate(-180deg);
  }
}

@media (max-width: 450px) {
  .footer__quality-control {
    grid-template-columns: 48px 1fr;
    width: 100%;
    -moz-column-gap: 10px;
         column-gap: 10px;
    border-radius: 16px;
  }
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (min-width: 768px) {
  .nav-menu {
    display: block;
  }
}

.nav-menu li {
  display: inline-block;
  margin-right: 29px;
}

.nav-menu li:last-child {
  margin-right: 32px;
}

@media (min-width: 1280px) {
  .nav-menu li {
    margin-right: 55px;
  }

  .nav-menu li:last-of-type {
    margin-right: 56px;
  }
}

.nav-menu .nav-menu__first {
  margin-left: 0;
}

.nav-menu__item {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #142c36;
  display: inline-block;
  transition: color 0.3s;
  border: none;
  outline: none;
  border-radius: unset;
  background: none;
  padding: 0;
}

.nav-menu__item.nav-menu__mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
}

.nav-menu__item .i-arrow {
  transition: fill 0.3s;
  margin-left: 7px;
  fill: #6b6b6b;
}

.nav-menu__item .i-timetable {
  width: 16px;
  height: 17px;
  fill: #4fa0f0;
  transition: fill 0.3s;
}

.nav-menu__item .i-stock {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

@media (min-width: 1280px) {
  .nav-menu__item {
    font-size: 16px;
    line-height: 26px;
  }
}

.nav-menu__item:hover {
  color: #F50016;
}

.nav-menu__item:hover .i-arrow,
.nav-menu__item:hover .i-timetable {
  fill: currentColor;
}

.nav-menu__mobile-link.nav-menu__mobile-link_min.nav-menu__item {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.nav-menu__mobile-link.nav-menu__mobile-link_min.nav-menu__content-toggler::after {
  padding-bottom: 4px;
}

.nav-menu__mobile-link.nav-menu__item:hover {
  color: #ff7f32;
}

.nav-menu--top {
  font-family: "Montserrat", Arial, sans-serif;
}

.nav-menu--top li {
  margin-right: 36px;
}

.nav-menu--top .nav-menu__item {
  font-size: 14px;
  line-height: 22px;
}

.nav-menu--top .nav-menu__item .i-arrow {
  margin-left: 4px;
}

.nav-menu--services {
  display: flex;
  flex-direction: column;
  margin-left: 80px;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (min-width: 768px) {
  .nav-menu--services {
    margin-left: 56px;
  }
}

.nav-menu--services .nav-menu__item {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  margin-bottom: 8px;
  margin-right: auto;
}

.nav-menu--services .nav-menu li:last-child .nav-menu__item {
  margin-bottom: 0;
}

.nav-menu--search {
  position: relative;
  padding-top: 24px;
}

.nav-menu--search::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #7f7e7e;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-menu--search .nav-menu__item {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 22px;
}

.nav-menu--search .nav-menu li {
  margin: 0;
}

.nav-menu--search .nav-menu li:not(:last-child) {
  margin-right: 16px;
}

.nav-menu--search li {
  display: block;
}

.nav-menu__submenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 57px);
  transform: translateX(100%);
  padding: 16px;
  background-color: #EDF0F8;
  transition: 0.3s;
  visibility: hidden;
  overflow: hidden;
  z-index: 999;
  overscroll-behavior-y: contain;
}

.nav-menu__submenu_top_level {
  margin-top: 57px;
}

.nav-menu__submenu-container {
  min-width: 280px;
  padding-right: 0;
  padding-left: 0;
  margin: 0 auto !important;
  width: 100%;
}

@media (min-width: 768px) {
  .nav-menu__submenu-container {
    width: 768px;
    padding: 0 24px;
  }
}

@media screen and (min-width: 768px) {
  .nav-menu__submenu {
    padding: 24px;
    max-height: calc(100vh - 58px);
  }
}

.nav-menu__content-toggler::after {
  content: "\203A";
  display: inline-block;
  font-size: 38px;
  margin-left: 15px;
  transition: all 350ms;
  font-weight: 300;
  padding-bottom: 6px;
  line-height: 0;
}

.nav-menu__content-toggler_active + .nav-menu__submenu {
  transform: translateX(0);
  overflow-y: auto;
  overflow-x: hidden;
  visibility: visible;
}

.navbar {
  position: relative;
}

.navbar ul,
.navbar li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar a {
  display: block;
  text-decoration: none;
}

.navbar a:hover,
.navbar a:visited {
  text-decoration: none;
}

.navbar__items-devider {
  height: 1px;
  width: 100%;
  background: #EDF0F8;
}

.navbar__items-devider_mb_24 {
  margin-bottom: 24px;
}

.navbar__nested-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 56px;
  display: none;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 32px;
  background: #fff;
  padding: 32px;
  border-radius: 0 0 32px 32px;
  border: 1px solid #EDF0F8;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1);
  z-index: 910;
  transition: all 350ms;
}

.navbar__nested-menu_expandable {
  -moz-column-gap: 40px;
       column-gap: 40px;
  max-width: 100%;
  grid-template-columns: 1fr 2fr;
}

.navbar__nested-menu.navbar__nested-menu_expandable::after {
  content: "";
  position: absolute;
  top: 0;
  left: 33%;
  width: 1px;
  height: 100%;
  background: #EDF0F8;
}

.navbar__nested-menu.navbar__nested-menu_active {
  display: grid;
  transform-origin: top;
  animation: dropdown 0.2s ease-out;
}

.navbar__link {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  padding: 0;
  font-weight: 500;
  line-height: 22px;
  color: #444;
  transition: color 350ms;
  background: none;
  outline: none;
  border: none;
  border-radius: unset;
  cursor: pointer;
}

.navbar__link:not(.navbar__link-stock)::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #FF7F32;
  transition: all 350ms;
}

.navbar__link:not(:last-child) {
  margin-right: 32px;
}

@media screen and (max-width: 1280px) {
  .navbar__link:not(:last-child) {
    margin-right: 16px;
  }
}

.navbar__link.navbar__link-stock {
  display: flex;
  align-items: center;
}

.navbar__link.navbar__link-stock img {
  width: 24px;
  height: auto;
  margin-right: 8px;
}

.navbar__link.navbar__link-stock span::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #FF7F32;
  transition: all 350ms;
}

.navbar__link.navbar__link-stock:hover span::after {
  width: 100%;
}

.navbar__link:hover {
  color: #FF7F32;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link.navbar__link_active {
  color: #FF7F32;
}

.navbar__link.navbar__link_active::after,
.navbar__link.navbar__link-stock.navbar__link_active span::after {
  width: 100%;
}

.navbar__link[aria-haspopup=true].navbar__link_active::before {
  transform: rotate(-90deg) !important;
  color: #FF7F32 !important;
}

.navbar__nested-link {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  background: none;
  outline: none;
  border: none;
  border-radius: unset;
  padding: 0;
  color: #142C36;
  cursor: pointer;
}

.navbar__nested-link:not(:last-child) {
  margin-bottom: 8px;
}

.navbar__nested-link_bottom-level {
  color: #6B6B6B;
}

.navbar__nested-link.navbar__nested-link_with_icon {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.1px;
}

.navbar__nested-link.navbar__nested-link_with_icon:not(.navbar__nested-link[data-role=nested-menu-toggler])::after {
  content: "\203A";
  display: inline-block;
  font-size: 32px;
  float: right;
  margin-top: -4px;
  margin-left: 8px;
  color: #FF7F32;
  transform-origin: center;
  transition: all 350ms;
}

.navbar__nested-link.navbar__nested-link_with_icon:not(:last-child) {
  margin-bottom: 16px;
}

.navbar__nested-link_with_icon svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 24px;
}

.navbar__nested-link_with_icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: -33px;
  transform: translateY(-50%);
  width: 8px;
  height: 32px;
  border-radius: 0 16px 16px 0;
  background: transparent;
  transition: all 350ms;
}

.navbar__nested-link:hover,
.navbar__nested-link:focus-within,
.navbar__nested-link.navbar__nested-link_active {
  color: #FF7F32;
}

.navbar__nested-link.navbar__nested-link_with_icon:hover::before {
  background: #FF7F32;
}

.navbar__nested-link.navbar__nested-link_with_icon:focus-within::before {
  background: #FF7F32;
}

.navbar__nested-link.navbar__nested-link_active::before {
  background: #FF7F32;
}

.navbar__nested-content {
  display: none;
  -moz-column-count: auto;
       column-count: auto;
  -moz-column-width: 216px;
       column-width: 216px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.navbar__nested-content.navbar__nested-content_active {
  display: block;
  transform-origin: left;
  animation: flyout 0.2s ease-out;
}

.navbar__menu {
  display: flex;
}

.navbar__button-search.header__btn-search {
  padding: 0 0 15px 10px;
}

.navbar__mobile-back {
  display: none;
}

.navbar__menu > .navbar__link[aria-haspopup=true]:before {
  content: "\203A";
  display: inline-block;
  font-size: 30px;
  font-weight: 300;
  color: #8f8e8f;
  float: right;
  margin-top: -1px;
  margin-left: 15px;
  transform-origin: center;
  transform: rotate(90deg);
  transition: all 350ms;
}

.navbar__menu > .navbar__link:hover::after,
.navbar__menu > .navbar__link.navbar__link-stock:hover span::after {
  width: 100%;
}

.navbar__menu > .navbar__link[aria-haspopup=true]:hover,
.navbar__menu > .navbar__link[aria-haspopup=true]:hover:before {
  color: #FF7F32;
}

.navbar-checkbox {
  grid-column: span 2;
  justify-content: flex-start;
  width: -moz-min-content;
  width: min-content;
}

.navbar-checkbox__text.checkbox__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding: 0;
  color: rgba(139, 183, 123, 0.5);
}

.navbar-checkbox__text.checkbox__text:nth-last-child(2) {
  order: -2;
}

.navbar-checkbox__place.checkbox__place {
  margin: 0 10px;
  order: -1;
  width: 42px;
  height: 24px;
  border-radius: 16px;
  border: 1px solid #CFCFD1;
  background: #FF7F32;
}

.navbar-checkbox__place.checkbox__place .checkbox__ico {
  top: calc(50% - 10px);
  left: 1px;
  width: 20px;
  height: 20px;
}

.navbar-checkbox__place.checkbox__place .checkbox__ico::before,
.navbar-checkbox__place.checkbox__place .checkbox__ico::after {
  display: none;
}

.navbar-checkbox__input:checked + .navbar-checkbox__place.checkbox__place + .navbar-checkbox__text.checkbox__text + .navbar-checkbox__text.checkbox__text {
  color: #FF7F32;
}

.navbar-checkbox__input:not(:checked) + .navbar-checkbox__place.checkbox__place + .navbar-checkbox__text.checkbox__text {
  color: #FF7F32;
}

.navbar-checkbox__input:checked ~ .navbar-checkbox__place.checkbox__place {
  background: #6B6B6B;
}

.navbar-checkbox:hover .navbar-checkbox__place.checkbox__place {
  background: #FF7F32;
}

.navbar-checkbox .navbar-checkbox__input:checked ~ .navbar-checkbox__place.checkbox__place {
  background: #6B6B6B;
}

.section-popup {
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  margin-top: -1px;
}

.section-popup .note-text {
  display: inline-block;
  position: relative;
}

.section-popup .note-text::after {
  content: "...";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  transform: translateX(100%);
}

.section-popup__btn .i-arrow {
  transform: rotate(-90deg);
  fill: #ffffff;
  width: 11px;
  height: 7px;
}

@media (min-width: 768px) {
  .section-popup {
    display: none;
  }
}

.section-popup--bg {
  background: #e8eaee;
  border: none;
  padding: 32px 24px 40px;
  margin-bottom: 4rem;
}

.section-popup--bg h4 {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-popup--bg {
    display: block;
  }
}

.popup-button {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
  width: calc(100vw - 48px);
  margin: 0 auto;
  min-height: 57px;
  position: relative;
  padding: 15px 0;
}

.popup-button:last-of-type {
  border-top: none;
}

.popup-button .h4 {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .popup-button .h4 {
    font-size: 14px;
    line-height: 20px;
  }
}

.popup-button .note-text {
  margin-top: 8px;
}

.popup-button .i-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-20px) rotate(-90deg);
  position: absolute;
  fill: #ff7f32;
}

.popup-button__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-right: 20px;
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .popup-button__title {
    font-size: 16px;
    line-height: 26px;
  }
}

.popup-button .round {
  width: 6px;
  height: 6px;
  vertical-align: top;
  margin-top: 10px;
}

.round {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
  margin-right: 4px;
  border-radius: 50%;
  display: inline-block;
}

@media (min-width: 768px) {
  .round {
    display: inline-block;
    margin-right: 0.5rem;
  }
}

.place {
  display: inline-flex;
  align-items: center;
  cursor: default;
}

.place__round {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .place__round {
    display: inline-block;
    margin-right: 0.5rem;
  }
}

.place__text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
  display: inline-block;
  font-weight: 300;
  transition: all 0.3s;
}

.place .i-location {
  display: inline-block;
  margin-right: 4px;
  margin-top: -2px;
  width: 12px;
  height: 16px;
  stroke: none;
  fill: #ff7f32;
  transition: fill 0.3s;
}

.place .i-clinic,
.place .i-clinic-default {
  fill: #ff7f32;
}

.place.many-places {
  cursor: pointer;
}

@media (min-width: 1280px) {
  .place.many-places:hover .place__text {
    color: #F50016;
    border-bottom-color: transparent;
  }

  .place.many-places:hover .i-location,
  .place.many-places:hover .i-clinic {
    fill: #F50016;
  }
}

.link-text {
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
}

.dashed {
  border-bottom: 1px dashed #ff7f32;
  display: inline;
}

.i-metro {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.i-metro svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

.btn-spoiler {
  border: none;
  background: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #142c36;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}

@media (min-width: 1280px) {
  .btn-spoiler:hover {
    color: #F50016;
  }

  .btn-spoiler:hover .i-arrow {
    fill: #F50016;
  }
}

.btn-spoiler .i-arrow {
  transition: fill 0.3s;
}

.btn-spoiler--full-hidden .btn-spoiler__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: inline;
  border-bottom: 1px dashed #ff7f32;
  transition: border-bottom-color 0.3s;
}

@media (min-width: 1280px) {
  .btn-spoiler--full-hidden:hover .btn-spoiler__title {
    color: inherit;
    border-bottom-color: transparent;
  }
}

.stick {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #F50016;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625rem;
  padding: 8px 16px;
  z-index: 1;
}

.schedule {
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 16px;
}

.schedule .note-text {
  white-space: unset;
}

.schedule .note-text:not(.time) {
  width: auto;
  margin-right: 0;
}

.price {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  display: flex;
  align-items: baseline;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (min-width: 1280px) {
  .price {
    font-size: 24px;
    line-height: 34px;
  }
}

.price .currency {
  display: inline-block;
  margin-left: 4px;
}

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

.marker-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}

.marker-list li p {
  margin-bottom: 0;
}

.marker-list li:last-child {
  margin-bottom: 0;
}

.marker-list li::before {
  content: "";
  background-image: url(/images/leaf.svg?c9fe4148cf1814fe61f4c0301c9501d2);
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  z-index: 1;
}

.marker-list li a {
  color: #142c36;
}

.currency.rub {
  font-weight: 300;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: inherit;
  line-height: inherit;
}

.subtext {
  margin-bottom: 1.5rem;
  line-height: 16px;
  font-size: 12px;
  color: #6b6b6b;
}

.loader {
  position: relative;
  width: 42px;
  height: 42px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader::before,
.loader::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  color: #ff7f32;
  border: 2px solid;
  border-color: transparent transparent currentColor currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader::after {
  width: 75%;
  height: 75%;
  color: #f7650d;
  animation: spin 0.75s linear reverse infinite;
}

@media (min-width: 768px) {
  .map-wrapper {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .split-sidebar .map-wrapper {
    width: calc(100% + (100vw - 1280px + 48px) / 2);
  }
}

.map-container {
  width: 100vw;
  max-width: 100vw;
  height: 300px;
  margin-right: -24px;
  margin-left: -24px;
  position: relative;
  margin-bottom: 22px;
  transition: width 0.3s;
}

@media (min-width: 768px) {
  .map-container {
    order: 1;
    max-width: 100%;
    width: 441px;
    height: 600px;
    margin: 0;
    margin-left: 24px;
  }
}

@media (min-width: 1024px) {
  .map-container {
    width: 662px;
  }
}

@media (min-width: 1280px) {
  .map-container {
    width: 814px;
    height: 690px;
  }
}

@media (min-width: 1280px) {
  .split-sidebar .map-container {
    margin-left: 0;
  }
}

.map-container .map {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .map-container.small {
    width: 348px;
    overflow: hidden;
  }
}

@media (min-width: 1280px) {
  .map-container.small {
    width: 100%;
    overflow: visible;
  }
}

.map-clusterer {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.aside-map {
  flex-shrink: 0;
  position: relative;
  min-height: 200px;
}

@media (min-width: 768px) {
  .aside-map {
    width: 256px;
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .aside-map {
    width: 330px;
  }
}

@media (min-width: 1280px) {
  .aside-map {
    width: 394px;
    height: 690px;
  }

  .aside-map::after {
    display: none;
  }
}

@media (min-width: 1280px) {
  .split-sidebar .aside-map {
    display: none;
  }
}

@media (min-width: 768px) {
  .aside-map--row {
    margin-right: 24px;
    overflow: visible;
    order: 0;
    width: 256px;
    height: 600px;
    position: relative;
  }
}

@media (max-width: 767px) {
  .aside-map--row {
    margin: 0 -24px;
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .aside-map--row {
    width: 394px;
    height: 690px;
  }
}

.aside-map--row .scroll-content-wrap.visible {
  overflow: visible !important;
}

.aside-map--row .scroll-content-wrap.visible .clinic-card:not(.open) {
  display: none;
}

@media (max-width: 767px) {
  .aside-map--row .clinic-item {
    margin-top: 0;
    margin: 0;
    width: 258px;
    flex-shrink: 0;
    border-bottom: none;
    padding: 24px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .aside-map--row .clinic-item:last-child::after {
    display: none;
  }

  .aside-map--row .clinic-item::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e8eaee;
  }
}

.aside-map--row .clinic-item__info {
  display: block;
  min-height: auto;
}

.aside-map--list-spoiler .scroll {
  overflow: visible;
}

@media (min-width: 768px) {
  .aside-map--list-spoiler .scroll {
    overflow: hidden;
  }
}

.aside-map--list-spoiler .scroll-content-wrap.visible {
  overflow: visible !important;
}

.aside-map--list-spoiler .scroll-content-wrap.visible .clinic-card:not(.open) {
  display: none;
}

.btn-zoom-wrapper {
  display: none;
  box-shadow: 0 0 30px rgba(127, 126, 126, 0.4);
  border-radius: 18px;
  background-color: #ffffff;
  width: 32px;
  height: 72px;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .btn-zoom-wrapper {
    display: block;
  }
}

.btn-zoom-wrapper::after {
  content: "";
  top: 50%;
  position: absolute;
  left: calc(50% - 12px);
  width: 24px;
  height: 1px;
  display: block;
  background-color: #7f7e7e;
}

.zoom-in,
.zoom-out {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50%;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.3s;
}

.zoom-in:hover,
.zoom-out:hover {
  background: #e8eaee;
}

.i-plus {
  width: 16px;
  height: 16px;
}

.i-minus {
  width: 16px;
  height: 3px;
}

.map-detail-wrapper {
  margin-bottom: 60px;
}

.map-detail-wrapper .link-text {
  color: #6b6b6b;
}

@media (min-width: 768px) {
  .map-detail-wrapper {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1280px) {
  .map-detail-wrapper {
    width: 395px;
  }
}

.map-detail-wrapper .note-text {
  display: none;
}

@media (min-width: 768px) {
  .map-detail-wrapper .note-text {
    display: inline-block;
    color: #000;
    margin-right: 24px;
  }
}

.map-detail-container {
  width: 100vw;
  max-width: 100vw;
  height: 180px;
  margin-right: -24px;
  margin-left: -24px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .map-detail-container {
    order: 1;
    width: 100%;
    height: 350px;
    margin: 0;
    margin-bottom: 25px;
  }
}

@media (min-width: 1280px) {
  .map-detail-container {
    height: 190px;
  }
}

.map-detail-container .map {
  width: 100%;
  height: 100%;
}

.scroll-notation {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  pointer-events: none;
}

.scroll-notation div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  font-size: 1.8em;
  pointer-events: none;
}

input[type=search]::-moz-placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

input[type=search]::placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.help-block {
  font-size: 12px;
  line-height: 1;
  margin-top: 4px;
  display: none;
}

.form-group {
  margin-bottom: 24px;
}

.form-group.has-error {
  position: relative;
}

.form-group.has-error .form-input {
  border: 1px solid #F50016;
}

.form-group.has-error .help-block {
  margin-top: 4px;
  display: block;
  color: #F50016;
}

.form-group.has-error .form-label {
  color: #F50016;
}

.form-group.required .form-label {
  display: inline-block;
  position: relative;
}

.form-group.required .form-label:after {
  content: "*";
  display: block;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  position: absolute;
  right: -7px;
  top: -3px;
}

.form-group--checkbox .help-block {
  position: relative;
  margin-top: 8px;
}

.form-control {
  border-color: transparent;
  width: 100%;
  padding: 11px 54px 10px 20px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .form-control {
    padding: 17px 51px 14px 23px;
  }
}

.form-control::-moz-placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.form-control::placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.form-label {
  font-family: "Montserrat", Arial, sans-serif;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 6px;
}

.form-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 2px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  color: #142c36;
  font-size: 16px;
  line-height: 22px;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #7f7e7e;
  padding: 4px 24px 3px 16px;
  height: 40px;
  transition: border-color 0.3s;
}

@media (min-width: 1024px) {
  .form-input {
    height: 50px;
    padding: 9px 21px 8px 24px;
  }
}

.form-input::-moz-placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-overflow: ellipsis;
}

.form-input::placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-overflow: ellipsis;
}

.form-input:focus {
  outline: none;
}

@media (min-width: 768px) {
  .form-input {
    font-size: 16px;
  }
}

textarea.form-input {
  width: 100%;
  height: 100px;
  min-height: 100px;
  resize: none;
  overflow: hidden;
}

.form-datepicker {
  position: relative;
  width: 100%;
}

.form-datepicker__wrapper {
  position: relative;
}

.form-datepicker .i-calendar {
  transition: fill 0.3s;
  position: absolute;
  pointer-events: none;
  right: 16px;
  top: 39px;
  fill: #ff7f32;
  width: 18px;
  height: 18px;
  z-index: 2;
}

@media (min-width: 1024px) {
  .form-datepicker .i-calendar {
    right: 16px;
    top: 44px;
  }
}

@media (min-width: 1280px) {
  .form-datepicker .i-calendar {
    right: 24px;
  }
}

.search {
  width: 100%;
  height: 46px;
}

.search__input {
  position: relative;
  width: 100%;
  height: 100%;
}

.search__input-loupe,
.search__input-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 350ms ease-in-out;
}

.search__input-loupe svg,
.search__input-close svg {
  width: 100%;
  height: 100%;
  fill: #9DC65F;
}

.search__input-close {
  display: none;
  right: 8px;
}

.search__input-close svg {
  color: #CFCFD1;
}

.search__input input {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #444;
  width: 100%;
  height: 100%;
  padding: 0 16px 0 16px;
  border-radius: 40px;
  border: 1px solid #EDF0F8;
  background: #EDF0F8;
  outline-color: transparent;
  cursor: pointer;
  transition: outline 350ms ease-in-out;
}

.search__input input:focus-visible {
  outline-color: #ff7f32;
  border-color: transparent;
}

.search__input input:focus-visible + .search__input-loupe {
  opacity: 0;
}

@media (max-width: 1023px) {
  .search__input input {
    font-size: 16px;
    line-height: 20px;
  }
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .social {
    justify-content: flex-end;
    margin-top: 16px;
    width: 50%;
  }
}

.social li {
  margin-right: 37px;
}

.social li:last-of-type {
  margin-right: 0;
}

@media (min-width: 1024px) {
  .social li {
    margin-right: 21px;
  }

  .social li:last-of-type {
    margin-right: -5px;
  }
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}

.social__link svg {
  transition: all 0.3s;
}

.social__link:hover svg {
  fill: #F50016;
}

@media (min-width: 1024px) {
  .social {
    width: auto;
    justify-content: flex-end;
    margin-top: 12px;
    margin-bottom: 0;
  }
}

.popup {
  position: relative;
  background: #ffffff;
  width: 100%;
  margin: 0 auto;
  min-height: 20px;
  z-index: 1000;
  transform: translateX(100%);
  box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
  transition: all 0.3s;
  opacity: 0;
}

.popup h1,
.popup h2,
.popup h3,
.popup h4,
.popup h5 {
  margin-top: 0;
}

.popup__close {
  width: 26px;
  height: 26px;
  position: absolute;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  top: 9px;
  right: 9px;
  transition: all 0.3s;
}

.popup__close .i-close {
  fill: #ff7f32;
  width: 13px;
  height: 13px;
  transition: all 0.3s;
}

.popup__close:focus {
  outline: none;
}

.popup__header {
  height: 40px;
  border-bottom: 1px solid #7f7e7e;
}

.popup__back {
  border: none;
  background: none;
  padding: 0;
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  margin-left: 24px;
  font-size: 14px;
  line-height: 20px;
}

.popup__back .i-arrow-long {
  width: 20px;
  height: 16px;
  margin-right: 8px;
  transform: rotate(-180deg);
}

.popup__content {
  padding: 14px 12px 60px;
  z-index: 1000;
}

.popup__title {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .popup__title {
    margin-bottom: 10px;
  }
}

.popup__note {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  margin-top: 15px;
}

.popup__link {
  display: inline;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

@media (min-width: 1280px) {
  .popup__link:hover {
    border: none;
  }
}

.popup--common {
  width: 500px;
  padding: 48px 40px 56px;
}

@media (max-width: 1279px) {
  .popup--common {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .popup--common {
    width: 100%;
    padding: 32px 24px 48px;
  }
}

.popup--common .popup__title {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 42px;
  color: #142c36;
}

@media (max-width: 1279px) {
  .popup--common .popup__title {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .popup--common .popup__title {
    max-width: 240px;
  }
}

.popup--common .popup__text {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 26px;
  color: #142c36;
}

.popup--common .popup__close {
  width: 24px;
  height: 24px;
  top: 16px;
  right: 16px;
}

.popup--common .popup__close .i-close {
  width: 100%;
  height: 100%;
  fill: #6b6b6b;
}

.popup--timetable {
  width: 100vw;
  max-width: 320px;
  overflow: hidden;
}

.popup--timetable .popup__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup--timetable .popup__content {
  padding: 0;
  transition: transform 0.4s;
  width: 640px;
  align-items: flex-start;
  display: flex;
}

.popup--timetable .popup__content-left,
.popup--timetable .popup__content-right {
  width: 272px;
}

.popup--timetable .popup__content-left {
  padding: 12px 0px 24px;
  margin: 0 24px;
  height: 100%;
}

.popup--timetable .popup__content-right {
  width: 320px;
  max-height: 274px;
  overflow: hidden;
}

.popup--timetable .popup__back {
  visibility: hidden;
}

.popup--timetable.transform .popup__content {
  transform: translateX(-50%);
}

.popup--timetable.transform .popup__content-right {
  max-height: 100%;
  overflow: visible;
}

.popup--timetable.transform .popup__content-left.change-height {
  height: 0;
}

.popup--timetable.transform .popup__back {
  visibility: visible;
}

.popup--timetable .btn {
  border-radius: 3px;
  border: 1px solid #ff7f32;
  padding: 9px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.popup--timetable .btn .i-arrow {
  transform: rotate(-90deg);
  fill: #ffffff;
}

.popup--timetable .btn .btn-ico-bg {
  width: 30px;
  height: 30px;
}

.popup--timetable .btn.arrow-down .i-arrow {
  transform: rotate(0deg);
  fill: #ffffff;
}

.popup--confirmation {
  width: 272px;
}

@media (min-width: 768px) {
  .popup--confirmation {
    display: none;
  }
}

.popup--confirmation .h3 {
  margin-bottom: 12px;
}

.popup--confirmation .popup__content {
  padding: 16px 24px 24px;
}

.popup--confirmation .popup__bottom {
  display: flex;
}

.popup--confirmation .btn-outline-blue {
  width: 106px;
  margin-right: 16px;
}

.popup--confirmation .btn-blue {
  margin-left: auto;
  width: 89px;
}

.popup--confirmation-doctor {
  display: block;
}

@media (min-width: 768px) {
  .popup--confirmation-doctor {
    width: 320px;
  }
}

.popup--error {
  width: 300px;
}

.popup--error .popup__content {
  padding: 16px 24px 24px;
}

.popup--error .popup__bottom {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .popup--spoiler {
    display: none;
  }
}

.popup--spoiler .popup__content {
  padding: 24px 24px 0;
}

.popup--spoiler .spoiler-wrapper {
  margin: 24px 0px 0;
}

.popup--spoiler .spoiler-wrapper .spoiler-box:first-child {
  border-top: 1px solid #7f7e7e;
}

.popup--spoiler .spoiler-wrapper .spoiler-box__content {
  padding: 0 24px 12px;
}

.popup--spoiler .spoiler-wrapper .spoiler-box__header-btn {
  padding: 16px 24px;
}

.popup--spoiler a {
  color: inherit;
}

.popup--callback {
  max-width: 500px;
}

.popup--callback .popup__close {
  width: 24px;
  height: 24px;
  top: 14px;
  right: 14px;
}

.popup--callback .popup__close .i-close {
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  fill: #6b6b6b;
}

.popup--callback .popup__close:hover .i-close {
  fill: #ff7f32;
}

.popup--callback-success .callback-form {
  padding-right: 28px;
  padding-left: 28px;
}

.popup--appointment {
  max-width: 720px;
}

.popup--appointment .popup__content {
  padding: 0;
}

.mfp-container {
  padding: 0;
}

.mfp-bg {
  background: transparent;
}

.mfp-bg.bg-shadow {
  background: #142C36;
  opacity: 0.5;
}

.mfp-bg.slick .mfp-wrap .mfp-container .mfp-content .popup {
  transform: translateX(0);
}

.slick.mfp-ready .popup {
  transform: translateX(0);
  opacity: 1;
}

.mfp-removing.mfp-ready .popup {
  transform: translateX(-100%);
  opacity: 0;
}

.timetable-popup .mfp-content {
  vertical-align: top;
}

.c-select {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.c-select-wrapper {
  display: block;
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (min-width: 768px) {
  .c-select-wrapper {
    width: auto;
  }
}

.c-select-trigger {
  font-family: "Montserrat", Arial, sans-serif;
  margin-top: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  cursor: pointer;
  width: auto;
  display: inline-block;
  border-bottom: 1px dashed #ff7f32;
  transition: border-bottom-color 0.3s;
}

.c-select-trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  color: #ff7f32;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px;
  transform-origin: 50% 50%;
  transform: translateY(-25%) rotate(135deg);
}

@media (min-width: 1280px) {
  .c-select-trigger:hover::after {
    color: #F50016;
  }
}

.c-select.opened .c-select-trigger::after {
  transform: translateY(25%) rotate(-45deg);
}

.c-select.opened .c-select-options {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.c-select.disabled .c-select-trigger {
  pointer-events: none;
  z-index: 7;
}

.c-select-options {
  position: absolute;
  display: block;
  opacity: 0;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 100%;
  pointer-events: none;
  visibility: hidden;
  z-index: 9;
  border-top: none;
  box-sizing: border-box;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  background: #fff;
  transition: all 0.3s ease-in-out;
  width: 100%;
  padding: 12px 0;
  overflow: hidden;
  padding-top: 16px;
}

@media (min-width: 1280px) {
  .c-select-options {
    padding: 24px 0;
  }
}

.c-select-options .ps__scrollbar-x-rail {
  display: none;
}

.c-select-options .ps__scrollbar-x {
  display: none;
}

.c-select-options .ps__scrollbar-y-rail {
  display: none;
}

.c-select-options .ps__scrollbar-y {
  display: none;
}

.c-select-option {
  padding: 4px 38px 4px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
  font-size: 0.875rem;
  line-height: 1.375rem;
  display: block;
  cursor: pointer;
}

@media (min-width: 1280px) {
  .c-select-option {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
  }
}

.c-select-option.active {
  color: #6b6b6b;
  background: #e8eaee;
}

.c-select-option.hidden {
  display: none;
}

.c-select-option.disabled {
  color: #7f7e7e;
  pointer-events: none;
}

.c-select--filter {
  display: block;
  height: 40px;
  border-radius: 2px;
  color: #142c36;
  font-size: 14px;
  line-height: 33px;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 100%;
  padding-right: 0;
}

@media (min-width: 768px) {
  .c-select--filter {
    width: 255px;
  }
}

@media (min-width: 1024px) {
  .c-select--filter {
    width: 290px;
    height: 50px;
  }
}

.c-select--filter .c-select-trigger {
  height: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  padding: 7px 54px 5px 16px;
  border: none;
  width: 100%;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .c-select--filter .c-select-trigger {
    padding: 11px 51px 11px 24px;
  }
}

.c-select--filter .c-select-trigger::after {
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  color: #6b6b6b;
}

.c-select--filter .c-select-option {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  padding: 4px 23px 4px 23px;
}

.c-select--filter .c-select-option:not(.active):hover {
  color: #F50016;
}

.c-select--filter .c-select-options {
  top: 100%;
  margin-top: 4px;
  max-height: 262px;
  overflow: hidden;
  padding: 16px 2px;
}

.c-select--filter .c-select-options .ps__scrollbar-x-rail {
  display: none;
}

.c-select--filter .c-select-options .ps__scrollbar-x {
  display: none;
}

.c-select--filter .c-select-options .ps__scrollbar-y-rail {
  display: block;
}

.c-select--filter .c-select-options .ps__scrollbar-y {
  display: block;
}

.c-select--big {
  border: 1px solid #7f7e7e;
}

@media (min-width: 1280px) {
  .c-select--big {
    margin-bottom: 32px;
  }
}

.c-select--big .c-select-trigger {
  height: 100%;
}

@media (min-width: 1024px) {
  .c-select--big .c-select-trigger {
    padding: 11px 51px 11px 24px;
  }
}

.c-select--big .c-select-trigger:before,
.c-select--big .c-select-trigger:after {
  top: 50%;
}

select.c-select {
  display: none;
  opacity: 0;
  height: 0;
}

.checkbox {
  position: relative;
  min-height: 28px;
  margin-bottom: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

.checkbox__place {
  display: inline-block;
  width: 32px;
  height: 22px;
  position: relative;
  border-radius: 11px;
  background-color: #7f7e7e;
  transition: 0.25s -0.1s;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox__ico {
  z-index: 1;
  display: inline-block;
  position: absolute;
  top: calc(50% - 9px);
  border-radius: 20px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  left: 2px;
  right: auto;
}

.checkbox__ico::after,
.checkbox__ico::before {
  content: "";
  position: absolute;
  width: 10px;
  display: block;
  height: 1px;
  background: #6b6b6b;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  left: calc(50% - 5px);
  top: 48%;
}

.checkbox__ico::after {
  transform: rotate(45deg);
}

.checkbox__ico::before {
  transform: rotate(-45deg);
}

@media (min-width: 1280px) {
  .checkbox:hover .checkbox__place {
    background: #6b6b6b;
  }
}

.checkbox:active .checkbox__place {
  background: #6b6b6b;
}

.checkbox input:checked ~ .checkbox__place {
  background: #57c526;
}

.checkbox input:checked ~ .checkbox__place .checkbox__ico {
  left: auto;
  right: 2px;
  transition: left 0.3s, right 0.3s, background 0.3s;
}

.checkbox input:checked ~ .checkbox__place .checkbox__ico::before {
  background: #57c526;
  transform: translate(-30%, 100%) rotate(45deg) scale(0.6, 1);
}

.checkbox input:checked ~ .checkbox__place .checkbox__ico::after {
  background: #57c526;
  transform: translate(20%) rotate(-45deg);
}

.checkbox__text {
  display: inline-block;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625rem;
  padding-left: 12px;
  cursor: pointer;
}

.checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -14px;
}

.checkbox--simple {
  align-items: center;
}

.checkbox--simple .checkbox__place {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 2px solid #7f7e7e;
  background: #ffffff;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

@media (min-width: 1280px) {
  .checkbox--simple .checkbox__place {
    width: 18px;
    height: 18px;
  }
}

.checkbox--simple .checkbox__place::after,
.checkbox--simple .checkbox__place::before {
  content: "";
  position: absolute;
  width: 10px;
  display: block;
  height: 2px;
  background: #6b6b6b;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  left: calc(50% - 5px);
  top: 40%;
  opacity: 0;
}

.checkbox--simple .checkbox__ico {
  display: none;
}

.checkbox--simple .checkbox__text {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding-right: 0;
}

.checkbox--simple .checkbox__text .link-text {
  font-family: inherit;
}

.has-error .checkbox--simple .checkbox__place {
  border-color: #F50016;
}

.has-error .checkbox--simple .checkbox__text:hover {
  color: #6b6b6b;
}

.has-error .checkbox--simple .checkbox__text:hover .link-text {
  color: #6b6b6b;
}

.checkbox--simple input:checked ~ .checkbox__place {
  background: #ff7f32;
  border-color: #ff7f32;
}

.checkbox--simple input:checked ~ .checkbox__place::before {
  background: #ffffff;
  opacity: 1;
  transform: translate(-30%, 100%) rotate(45deg) scale(0.6, 1);
}

.checkbox--simple input:checked ~ .checkbox__place::after {
  background: #ffffff;
  opacity: 1;
  transform: translate(20%) rotate(-45deg);
}

.checkbox--simple input:disabled ~ .checkbox__place {
  background: #ffffff;
  border-color: #7f7e7e;
  cursor: default;
}

.checkbox--simple input:disabled ~ .checkbox__text {
  color: #7f7e7e;
  cursor: default;
}

@media (min-width: 1280px) {
  .checkbox--simple:hover .checkbox__place {
    background: transparent;
    border-color: #F50016;
  }

  .checkbox--simple:hover .checkbox__text {
    color: #F50016;
  }

  .checkbox--simple:hover input:checked ~ .checkbox__place {
    cursor: default;
  }

  .checkbox--simple:hover input:checked ~ .checkbox__text {
    color: #6b6b6b;
    cursor: default;
  }
}

.checkbox--simple:active .checkbox__place {
  background: transparent;
  border: 2px solid #6b6b6b;
}

.checkbox--simple.has-error .checkbox__place {
  border-color: #F50016;
}

.checkbox--simple.has-error .checkbox__text {
  color: #F50016;
  border-bottom-color: transparent;
}

.checkbox--simple.has-error .link-text {
  color: #F50016;
  border-bottom-color: transparent;
}

.checkbox--small .checkbox__ico {
  width: 18px;
  height: 18px;
}

.checkbox--small .checkbox__text {
  font-size: 12px;
  line-height: 22px;
}

@media (min-width: 1280px) {
  .checkbox--small .checkbox__text {
    font-size: 14px;
  }
}

.checkbox--card {
  width: 100%;
  margin-top: -1px;
}

.checkbox--card input:checked {
  z-index: 1;
  position: relative;
}

.checkbox--card input:checked ~ .test-card__item {
  z-index: 1;
  box-shadow: inset 0 0 0 1px #4FA0F0;
}

.checkbox--btn {
  width: 100%;
}

@media (min-width: 768px) {
  .checkbox--btn {
    width: auto;
  }
}

.checkbox--btn .checkbox__text {
  font-family: "Montserrat", Arial, sans-serif;
  padding: 9px 16px;
  background: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #ff7f32;
  transition: background-color 0.3s, color 0.3s;
}

@media (min-width: 1280px) {
  .checkbox--btn .checkbox__text {
    padding: 12px 16px;
  }
}

.checkbox--btn input:checked ~ .checkbox__text {
  background: #ff7f32;
  color: #ffffff;
}

@media (min-width: 1280px) {
  .checkbox--btn input:checked ~ .checkbox__text:hover {
    background: #6b6b6b;
    color: #ffffff;
  }
}

.checkbox--btn input:checked ~ .checkbox__text:active {
  background: #6b6b6b;
  color: #ffffff;
}

@media (min-width: 1280px) {
  .checkbox--btn:hover .checkbox__text {
    background: #f7650d;
    color: #ffffff;
  }
}

.checkbox--btn:active .checkbox__text {
  background: #f7650d;
  color: #ffffff;
}

.checkbox_new {
  justify-content: flex-start;
  width: -moz-min-content;
  width: min-content;
}

.checkbox_new .checkbox__place {
  margin: 0;
  order: -1;
  width: 42px;
  height: 24px;
  border-radius: 16px;
  border: 1px solid #cfcfd1;
  background: #CFCFD1;
}

.checkbox_new .checkbox__place .checkbox__ico {
  top: calc(50% - 10px);
  left: 1px;
  width: 20px;
  height: 20px;
}

.checkbox_new .checkbox__place .checkbox__ico::after,
.checkbox_new .checkbox__place .checkbox__ico::before {
  display: none;
}

.checkbox_new input:checked ~ .checkbox__place {
  background: #FF7F32;
}

.checkbox_new:hover .checkbox__place {
  background: #CFCFD1;
}

.checkbox_new:hover input:checked ~ .checkbox__place {
  background: #FF7F32;
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -14px;
}

.timepicker {
  font-family: "Montserrat", Arial, sans-serif;
  width: 71px;
  height: 40px;
  margin-right: 8px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 2px;
  color: #142c36;
  font-size: 16px;
  line-height: 26px;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  border: none;
  padding: 4px 16px 3px 16px;
}

.timepicker::-moz-placeholder {
  color: #6b6b6b;
}

.timepicker::placeholder {
  color: #6b6b6b;
}

.timepicker:last-child {
  margin-left: 8px;
  margin-right: 0;
}

@media (min-width: 1280px) {
  .timepicker {
    width: 87px;
    height: 50px;
  }
}

.timepicker-inner {
  display: flex;
  align-items: center;
}

.timepicker-panel {
  position: relative;
}

.timepicker-panel:last-child {
  margin-right: 0;
  margin-left: 0px;
}

.timepicker-panel-inner {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  z-index: 99;
  top: 4px;
  left: 0;
  width: 100%;
  font-size: 12px;
}

.timepicker-panel:not(.active) .timepicker-panel-inner {
  visibility: hidden;
}

.timepicker-col {
  width: 71px;
  background-color: #fff;
  box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
}

.timepicker-col:last-child {
  margin-left: auto;
}

.timepicker-col-wrap {
  width: 100%;
  display: flex;
}

.timepicker-col.hide {
  display: none;
}

@media (min-width: 1280px) {
  .timepicker-col {
    width: 87px;
  }
}

.timepicker-time {
  line-height: 35px;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
  font-size: 1rem;
  color: #142c36;
  cursor: pointer;
  font-weight: 300;
}

.timepicker-time:not(:first-child) {
  margin-top: -1px;
}

.timepicker-time:hover {
  color: #F50016;
}

.timepicker-time.disabled {
  opacity: inherit;
  visibility: inherit;
  color: #7f7e7e;
  cursor: default;
}

.timepicker-time.disabled:hover {
  background-color: transparent;
}

.timepicker-time.active {
  font-weight: 500;
}

.timepicker-time-list {
  list-style: none;
  margin: 0;
  padding: 11px 0;
}

.datepickers-container .datepicker {
  width: 320px;
  color: #142c36;
  box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
  border-radius: 4px;
  border: none;
}

@media (max-width: 767px) {
  .datepickers-container .datepicker {
    width: 288px;
  }
}

.datepickers-container .datepicker--cells {
  margin-right: -8px;
}

.datepickers-container .datepicker--pointer {
  display: none;
}

.datepickers-container .datepicker--content {
  position: relative;
  padding: 0 24px 5px;
}

.datepickers-container .datepicker--nav-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
}

.datepickers-container .datepicker--nav-title i {
  display: none;
  color: #7f7e7e;
}

.datepickers-container .datepicker--nav-title:hover {
  background-color: transparent;
}

@media (min-width: 1280px) {
  .datepickers-container .datepicker--nav-title:hover {
    border-radius: 0;
    background-color: #7f7e7e;
  }
}

.datepickers-container .datepicker--cell.-other-month- {
  overflow: hidden;
  visibility: hidden;
}

.datepickers-container .datepicker--day-name {
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: lowercase;
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
  width: calc((100% - 60px) / 7);
}

.datepickers-container .datepicker--day-name.-weekend-,
.datepickers-container .datepicker--cell.-weekend- {
  color: #F50016;
}

.datepickers-container .datepicker--cell-day {
  color: #142c36;
  font-weight: 300;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  width: calc((100% - 54px) / 7);
  margin-right: 8px;
  margin-bottom: 8px;
  line-height: 32px;
}

.datepickers-container .datepicker--cell-day:not(:nth-child(7n+1)) {
  margin-left: -1px;
}

.datepickers-container .datepicker--cell.-current- {
  background: #e8eaee;
  font-weight: 500;
}

.datepickers-container .datepicker--cell.-disabled- {
  color: #7f7e7e;
}

.datepickers-container .datepicker--cell.-disabled-:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #7f7e7e;
}

.datepickers-container .datepicker--cell.-focus- {
  border-radius: 0;
  background-color: #7f7e7e;
}

.datepickers-container .datepicker--nav {
  justify-content: center;
  padding-top: 18px;
  border-bottom: none;
  margin-bottom: 12px;
  margin-top: -3px;
}

.datepickers-container .datepicker--days-names {
  margin-bottom: 12px;
  display: flex;
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.datepickers-container .datepicker--days-names:not(:nth-child(7n+1)) {
  margin-left: -1px;
}

.datepickers-container .datepicker--cell.-range-to-,
.datepickers-container .datepicker--cell.-range-from- {
  border: none;
}

.datepickers-container .datepicker--cell.-selected- {
  border-radius: 0;
  position: relative;
  background: #6b6b6b;
  color: #fff;
  font-weight: 500;
}

.datepickers-container .datepicker--cell.-in-range- {
  background-color: #7f7e7e;
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}

.datepickers-container .datepicker--cell.-range-from-.-disabled- {
  background-color: transparent;
}

.datepickers-container .datepicker--cell-month,
.datepickers-container .datepicker--cell-year {
  width: 33.33%;
  height: 25%;
  border-right: 20px solid #ffffff;
  border-left: 20px solid #ffffff;
  border-top: 5.75px solid #ffffff;
  border-bottom: 5.75px solid #ffffff;
}

.datepickers-container .datepicker--nav-action {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  top: 9px;
}

.datepickers-container .datepicker--nav-action:hover .i-arrow-long {
  fill: #F50016;
}

.datepickers-container .datepicker--nav-action[data-action=next] {
  right: 20px;
}

.datepickers-container .datepicker--nav-action[data-action=prev] {
  left: 20px;
}

.datepickers-container .datepicker--nav-action .nextMonth,
.datepickers-container .datepicker--nav-action .prevMonth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.datepickers-container .datepicker--nav-action .prevMonth {
  transform: rotate(180deg);
  transform-origin: center;
}

.datepickers-container .datepicker--nav-action svg {
  width: 32px;
  height: 18px;
}

.datepickers-container .datepicker--nav-action:hover {
  background-color: #ffffff;
}

.datepickers-container .-selected-.datepicker--cell-day.-other-month-,
.datepickers-container .-selected-.datepicker--cell-year.-other-decade- {
  color: inherit;
}

.datepickers-container .-selected-.datepicker--cell-day.-other-month-.-focus-,
.datepickers-container .-selected-.datepicker--cell-year.-other-decade-.-focus- {
  background-color: #ffffff;
}

.datepickers-container .datepicker--body {
  margin-bottom: 8px;
}

.datepickers-container .datepicker--months {
  padding: 20px 20px 35px;
}

.datepickers-container .datepicker--years {
  height: auto;
  padding: 20px 20px 35px;
}

.mobile-menu {
  display: none;
  position: relative;
  padding: 0 16px 16px 16px;
  height: calc(100dvh - 56px);
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 280px;
  margin: 0 auto;
  overscroll-behavior: contain;
}

@media (max-width: 1024px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu__content {
  position: relative;
  border-top: none;
  padding-top: 16px;
  margin: 0 auto;
}

.mobile-menu__content:not(:first-child)::after {
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #fff;
  top: 0;
  transform: translateY(-50%);
  left: calc((100vw - 100%) / 2 * -1);
}

.mobile-menu__content .mob-app-info__links {
  flex-direction: column;
  max-width: 100%;
}

.mobile-menu__content .mob-app-info__link-text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.25;
}

.mobile-menu__content .mob-app-info__link-icon {
  width: 24px;
  height: 24px;
}

.mobile-menu__content .mob-app-info__title {
  display: none;
}

@media (min-width: 768px) {
  .mobile-menu__content {
    width: 768px;
    padding: 16px 24px 0 24px;
  }
}

@media (max-width: 767px) {
  .mobile-menu__content {
    padding: 16px 0 0 0;
  }
}

.mobile-menu__contacts {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  padding-bottom: 16px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 24px;
}

.mobile-menu__contacts-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.62;
  padding: 12.5px 20px;
  border-radius: 40px;
  border: 1px solid #FF7F32;
  background-color: #FF7F32;
  outline: none;
  color: #fff;
}

.mobile-menu__contacts-btn:last-child {
  grid-column: span 2;
}

.mobile-menu__contacts-feedback {
  background: transparent;
  padding: 7px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #444;
  text-align: center;
}

@media (max-width: 390px) {
  .mobile-menu__contacts {
    grid-template-columns: 1fr;
  }

  .mobile-menu__contacts-btn:last-child {
    grid-column: unset;
  }

  .mobile-menu__contacts-feedback {
    line-height: 1.62;
    padding: 12.5px 20px;
  }
}

.mobile-menu .links__btn {
  max-width: 100%;
  font-size: 14px;
  line-height: 22px;
  padding: 0 0 16px;
}

.mobile-menu .link-phone {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1px;
  color: #142C36;
}

.mobile-menu .mobile-menu__content .nav-menu li {
  margin-left: 0;
  margin-right: 0;
}

.mobile-menu .mobile-menu__content .mob-app-info {
  padding-bottom: 16px;
  border: none;
}

.mobile-menu .nav-menu {
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 1025px) {
  .mobile-menu .nav-menu {
    display: none;
  }
}

.mobile-menu .nav-menu li {
  display: block;
  margin-bottom: 16px;
}

.mobile-menu .nav-menu__item {
  font-size: 16px;
  line-height: 1.62;
}

.mobile-menu .nav-menu__item-top-level {
  justify-content: flex-start;
}

.mobile-menu .nav-menu__item-top-level::before {
  content: "";
  width: 16px;
  height: 16px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 16px;
}

.mobile-menu .nav-menu__item-top-level_lk sup {
  font-weight: 700;
  font-size: 11px;
  line-height: 11px;
  color: #FF7F32;
  padding-bottom: 10px;
  padding-left: 6px;
}

.mobile-menu .nav-menu__item-top-level_lk::before {
  background-image: url("/images/lk/min-lk-mob.svg");
}

.mobile-menu .nav-menu__item-top-level_prices::before {
  background-image: url("/images/lk/cubes.svg");
}

.mobile-menu .nav-menu__item-top-level_clinic::before {
  background-image: url("/images/lk/clinic.svg");
}

.mobile-menu .nav-menu__item-top-level_doctor::before {
  background-image: url("/images/lk/doctor.svg");
}

.mobile-menu .nav-menu__item-top-level_dental::before {
  background-image: url("/images/lk/teeth.svg");
}

.mobile-menu .nav-menu__item-top-level_program::before {
  background-image: url("/images/lk/programs.svg");
}

.mobile-menu .nav-menu__item-top-level_coupon::before {
  background-image: url("/images/lk/discounts.svg");
}

.mobile-menu .nav-menu__item-top-level_reviews::before {
  background-image: url("/images/lk/comments.svg");
}

.mobile-menu .nav-menu__item-top-level_reviews button {
  margin-left: auto;
  padding: 7px 16px;
  background: transparent;
  outline: none;
  border: 1px solid #FF7F32;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #444444;
  cursor: pointer;
  text-align: center;
}

.mobile-menu .nav-menu__item-top-level_cooperation::before {
  background-image: url("/images/lk/cooperation.svg");
}

.mobile-menu .nav-menu--top {
  display: block;
}

.mobile-menu .nav-menu--top .nav-menu__item {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  color: #ff7f32;
}

.mobile-menu .nav-menu--top .nav-menu__item:hover {
  color: #142c36;
}

.mobile-menu .social {
  position: relative;
  justify-content: center;
  padding-top: 16px;
}

.mobile-menu .social::after {
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #fff;
  top: 0;
  transform: translateY(-50%);
  left: calc((100vw - 100%) / 2 * -1);
}

.mobile-menu .social li:not(:last-child) {
  margin-right: 16px;
}

@media (max-width: 1024px) {
  .mobile-menu .social {
    width: 100% !important;
  }
}

.mobile-menu .search {
  margin-bottom: 16px;
}

.feedback-form {
  padding-top: 40px;
  border-top: 1px solid #7f7e7e;
}

.feedback-form h1 {
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .feedback-form h1 {
    margin-bottom: 24px;
  }
}

.feedback-form__main-content {
  width: 812px;
}

@media (max-width: 1024px) {
  .feedback-form__main-content {
    width: 100%;
  }
}

.feedback-form .form-group {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .feedback-form .form-group {
    flex-wrap: wrap;
  }
}

.feedback-form .form-group label {
  padding-top: 16px;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (max-width: 767px) {
  .feedback-form .form-group label {
    padding-top: 0;
    margin-bottom: 12px;
  }
}

.feedback-form .form-group textarea {
  width: 675px;
  font-size: 16px;
  line-height: 26px;
  color: #142c36;
}

@media (max-width: 1024px) {
  .feedback-form .form-group textarea {
    width: 582px;
  }
}

@media (max-width: 767px) {
  .feedback-form .form-group textarea {
    width: 100%;
  }
}

.feedback-form .form-group.has-error label {
  color: #F50016;
}

.feedback-form .form-group.has-error .help-block {
  position: absolute;
  top: 100%;
  left: 137px;
}

@media (max-width: 767px) {
  .feedback-form .form-group.has-error .help-block {
    left: 0;
  }
}

.feedback-form .btn {
  margin-left: calc(100% - 675px);
}

@media (max-width: 1024px) {
  .feedback-form .btn {
    margin-left: calc(100% - 582px);
  }
}

@media (max-width: 767px) {
  .feedback-form .btn {
    margin-left: 0;
  }
}

.feedback-form__contacts {
  margin-top: 40px;
  margin-bottom: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
}

@media (max-width: 767px) {
  .feedback-form__contacts {
    margin-top: 24px;
    padding: 24px 0;
  }
}

.feedback-form__contacts h3 {
  margin-bottom: 16px;
}

.feedback-form__contacts .btn-link {
  margin-top: 0;
  margin-left: 137px;
}

@media (max-width: 767px) {
  .feedback-form__contacts .btn-link {
    margin-left: 0;
  }
}

.feedback-form__contacts .notation {
  width: 460px;
  margin-bottom: 24px;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 767px) {
  .feedback-form__contacts .notation {
    width: 100%;
  }
}

.feedback-form__contacts.hidden {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}

.feedback-form__contacts.hidden .feedback-form__contacts-content {
  display: none;
}

.feedback-form__contacts .form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 492px;
}

@media (max-width: 767px) {
  .feedback-form__contacts .form-group {
    flex-wrap: wrap;
    width: 100%;
  }
}

.feedback-form__contacts .form-group label {
  padding-top: 0;
}

@media (max-width: 767px) {
  .feedback-form__contacts .form-group label {
    width: 100%;
    margin-bottom: 12px;
  }
}

.feedback-form__contacts .form-group input[type=text] {
  width: 355px;
}

@media (max-width: 767px) {
  .feedback-form__contacts .form-group input[type=text] {
    width: 100%;
  }
}

.feedback-form__contacts .form-group--checkbox {
  display: block;
}

.feedback-form__contacts .form-group--checkbox.has-error .help-block {
  position: relative;
}

.feedback-form__contacts .checkbox {
  margin-top: 0;
  margin-left: 137px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .feedback-form__contacts .checkbox {
    margin-left: 0;
  }
}

.feedback-form__contacts .help-block {
  padding-left: 137px;
}

@media (max-width: 767px) {
  .feedback-form__contacts .help-block {
    padding-left: 0;
  }
}

.feedback-form__error {
  width: 460px;
  margin-left: 137px;
  margin-top: 12px;
  color: #F50016;
  font-size: 12px;
  line-height: 16px;
}

@media (max-width: 767px) {
  .feedback-form__error {
    width: 100%;
    margin-left: 0;
  }
}

.feedback-form .hide-field {
  display: none;
}

.feedback-gratitude {
  margin-bottom: 120px;
}

@media (max-width: 1279px) {
  .feedback-gratitude {
    margin-bottom: 60px;
  }
}

.feedback-gratitude h1 {
  margin-bottom: 32px;
}

@media (max-width: 1279px) {
  .feedback-gratitude h1 {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .feedback-gratitude h1 {
    margin-bottom: 16px;
  }
}

.feedback-gratitude h3 {
  margin-bottom: 32px;
  margin-top: 64px;
}

@media (max-width: 1279px) {
  .feedback-gratitude h3 {
    margin-bottom: 24px;
    margin-top: 56px;
  }
}

@media (max-width: 767px) {
  .feedback-gratitude h3 {
    margin-top: 48px;
  }
}

.search-panel {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 10px 16px -10px rgba(127, 126, 126, 0.4);
  overflow: auto;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
}

@media (max-width: 1024px) {
  .search-panel {
    padding: 0 0 32px 0;
  }
}

.search-panel:not(.active) {
  display: none;
}

.search-panel .container {
  position: relative;
  display: flex;
  max-width: 100%;
  align-items: flex-start;
  padding: 32px 24px;
  min-width: 320px;
}

@media (max-width: 767px) {
  .search-panel .container {
    padding: 32px 16px;
  }
}

@media (max-width: 1023px) {
  .search-panel {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 101vw;
    height: 100vh;
  }

  .search-panel .container {
    min-width: 100%;
  }
}

.search-panel .search-panel-close {
  order: 1;
  position: sticky;
  z-index: 1;
  top: 40px;
  right: 0;
  margin-left: -70px;
  padding: 0;
  width: 70px;
  line-height: 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  background-color: #fff;
  border: none;
  box-shadow: 0 0 10px 10px #fff;
  cursor: pointer;
  transition: color 0.35s;
}

.search-panel .search-panel-close:hover {
  color: #FF7F32;
}

@media (max-width: 1024px) {
  .search-panel .search-panel-close {
    top: 10px;
    right: unset;
    left: 100%;
  }
}

.search-panel .search-panel-categories {
  position: sticky;
  top: 40px;
  left: 0;
  bottom: 40px;
  margin-right: -200px;
  width: 200px;
}

.search-panel .search-panel-categories .category-all:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .search-panel .search-panel-categories {
    display: none;
  }
}

.search-panel .search-panel-categories ul {
  margin: 0;
  padding: 0;
}

.search-panel .search-panel-categories li {
  margin: 0;
  line-height: 26px;
  font-size: 16px;
  font-weight: 300;
}

.search-panel .search-panel-categories li:not(:first-child) {
  margin-top: 8px;
}

.search-panel .search-panel-categories li.category-all {
  margin-bottom: 16px;
}

.search-panel .search-panel-categories li.active {
  font-weight: 500;
}

.search-panel .search-panel-categories li span {
  margin-left: 0.5em;
  color: #6b6b6b;
}

.search-panel .search-panel-categories a {
  color: inherit;
}

.search-panel .search-panel-categories a:hover {
  color: #FF7F32;
}

.search-panel .search-panel-categories a:focus {
  color: inherit;
}

.search-panel .search-panel-results {
  margin: 0 auto;
  width: calc(100% - 680px);
  padding-bottom: 140px;
}

@media (max-width: 1279px) {
  .search-panel .search-panel-results {
    margin-right: 0;
    width: calc(100% - 200px - 20px);
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .search-panel .search-panel-results {
    width: 100%;
  }
}

.search-panel .search-panel-results .title-empty {
  color: #6ea55a;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .search-panel .search-panel-results .title-empty {
    font-size: 28px;
    line-height: 34px;
  }
}

@media (max-width: 767px) {
  .search-panel .search-panel-results .title-empty {
    margin-top: 30px;
    font-size: 20px;
  }
}

.search-panel .search-panel-results .doctor-list__item {
  transition: border-color 0.3s;
  border-top: 1px solid #7f7e7e;
}

.search-panel .search-panel-results .doctor-list__item:not(:first-child) {
  margin-top: -1px;
}

.search-panel .search-panel-results .doctor-list__item .doctor-list__name {
  transition: color 0.3s;
}

@media (min-width: 1280px) {
  .search-panel .search-panel-results .doctor-list__item:hover {
    border-color: #F50016;
    z-index: 1;
  }

  .search-panel .search-panel-results .doctor-list__item:hover .doctor-list__name {
    color: #F50016;
  }
}

.search-panel .search-panel-results .action-list__item {
  transition: border-color 0.3s;
  border-top: 1px solid #7f7e7e;
}

.search-panel .search-panel-results .action-list__item:not(:first-child) {
  margin-top: -1px;
}

.search-panel .search-panel-results .action-list__item .h4 {
  transition: color 0.3s;
}

@media (min-width: 1280px) {
  .search-panel .search-panel-results .action-list__item:hover {
    border-color: #F50016;
    z-index: 1;
  }

  .search-panel .search-panel-results .action-list__item:hover .h4 {
    color: #F50016;
  }
}

.search-panel .search-panel-results.empty .search-panel-results-empty {
  display: block;
}

.search-panel .search-panel-results-empty {
  display: none;
}

.search-panel .search-result-section:not(:last-child) {
  padding-bottom: 32px;
}

.search-panel .search-result-section:not(:first-child) {
  padding-top: 24px;
  border-top: 1px solid #e8eaee;
}

.search-panel .search-result-section.single {
  margin: 0;
  padding: 0;
  border: none;
}

.search-panel .search-result-section.hidden {
  display: none;
}

.search-panel .search-result-section h3 {
  margin-bottom: 1rem;
  line-height: 34px;
  font-size: 24px;
}

@media (max-width: 767px) {
  .search-panel .search-result-section h3 {
    margin-bottom: 0.75rem;
  }
}

.search-panel .search-result-section p {
  margin-bottom: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal;
  line-height: 26px;
  font-size: 16px;
}

.search-panel .search-result-section p:last-child {
  margin-bottom: 0;
}

.search-panel .search-result-section p a {
  color: inherit;
}

.search-panel .search-result-section p a:hover {
  color: #FF7F32;
}

.search-panel .search-result-section .highlight {
  color: #FF7F32;
}

.search-panel .search-result-section .simple-spoiler[data-item-selector=".doctor-list__item"] .simple-spoiler-toggle {
  margin-top: 24px;
}

.search-panel .search-result-section .simple-spoiler-toggle {
  margin-top: 16px;
  padding: 8px 16px;
}

.search-panel .search-result-section .simple-spoiler-toggle .btn-ico-bg {
  width: 24px;
  height: 24px;
}

.search-panel .search-result-section .loading .simple-spoiler-toggle {
  display: none;
}

.search-panel .search-result-section .loader {
  margin-top: 16px;
}

.search-panel .search-result-section .action-list__item .place {
  margin-top: 0;
}

.callback-form {
  padding: 46px 28px 0;
}

@media (max-width: 1919px) {
  .callback-form {
    min-height: 494px;
  }
}

@media (max-width: 1279px) {
  .callback-form {
    padding-top: 18px;
  }
}

@media (max-width: 1024px) {
  .callback-form {
    min-height: 484px;
  }
}

@media (max-width: 767px) {
  .callback-form {
    min-height: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.callback-form__title {
  margin-bottom: 24px;
  line-height: 42px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: normal;
}

@media (max-width: 1279px) {
  .callback-form__title {
    font-size: 22px;
    line-height: 32px;
  }
}

.callback-form__text {
  margin-bottom: 32px;
  margin-top: -8px;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 1024px) {
  .callback-form .callback-confirm-checkbox {
    max-width: 400px;
  }
}

.callback-form .callback-confirm-checkbox .checkbox {
  cursor: auto;
}

.callback-form .callback-confirm-checkbox .checkbox .checkbox__text {
  cursor: auto;
}

.callback-form .callback-confirm-checkbox .checkbox:hover .checkbox__text {
  color: #6b6b6b;
}

.callback-form--full-screen {
  margin: 0 auto;
  background: url(/images/feedback_bg.png?8d8178ebf4c38925397615afc5b747ae) right center/cover no-repeat;
  color: white;
  position: relative;
  padding: 40px;
  border-radius: 32px;
}

@media (max-width: 1024px) {
  .callback-form--full-screen {
    background: #6ea55a;
  }
}

.callback-form--full-screen.show-success {
  min-height: auto;
}

.callback-form--full-screen.show-success .callback-block__content {
  display: none;
}

.callback-form--full-screen.show-success .callback-block__success {
  display: block;
}

.callback-form--full-screen.show-success .callback-block__decorative {
  display: none;
}

.callback-form--full-screen .callback-block .custom-checkbox:not(:last-of-type) {
  margin-bottom: 8px;
}

.callback-form--full-screen .callback-block .custom-checkbox label,
.callback-form--full-screen .callback-block .custom-checkbox a {
  color: #fff;
}

.callback-form--full-screen .callback-block .custom-checkbox__input + label::before {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}

@media (max-width: 480px) {
  .callback-form--full-screen .callback-block .custom-checkbox label,
  .callback-form--full-screen .callback-block .custom-checkbox a {
    font-size: 10px;
    line-height: 14px;
  }
}

.callback-form--full-screen .callback-block__title {
  margin-bottom: 12px;
  color: white;
  font-size: 50px;
  line-height: 62px;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .callback-form--full-screen .callback-block__title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block__title {
    font-size: 26px;
    line-height: 32px;
  }
}

.callback-form--full-screen .callback-block__notation {
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 22px;
  max-width: 500px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block__notation {
    margin-bottom: 24px;
  }
}

.callback-form--full-screen .callback-block__notation .link-text {
  color: white;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block__notation .link-text {
    display: inline-block;
  }
}

@media (hover: hover) {
  .callback-form--full-screen .callback-block__notation .link-text:hover {
    color: #ff7f32;
  }
}

.callback-form--full-screen .callback-block__success {
  display: none;
}

.callback-form--full-screen .callback-block__success .callback-form__text {
  margin-bottom: 0;
}

.callback-form--full-screen .callback-block__decorative {
  display: flex;
  width: 140px;
  height: 140px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-image: url(/images/medal.png?94bdc046efbfcaa503a1d1cc8632ea3f);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 50px;
  line-height: 62px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 1919px) {
  .callback-form--full-screen .callback-block__decorative {
    width: 140px;
    height: 140px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 1023px) {
  .callback-form--full-screen .callback-block__decorative {
    bottom: 16px;
    right: 16px;
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block__decorative {
    display: none;
  }
}

.callback-form--full-screen .callback-block form {
  display: grid;
  grid-template-columns: 710px auto;
  grid-column-gap: 24px;
}

@media (max-width: 1919px) {
  .callback-form--full-screen .callback-block form {
    display: block;
    max-width: 710px;
  }
}

.callback-form--full-screen .callback-block form .form-label {
  margin-bottom: 0;
}

.callback-form--full-screen .callback-block form .callback-confirm-checkbox {
  grid-column: span 2;
}

.callback-form--full-screen .callback-block form .callback-confirm-checkbox .form-group {
  margin: 0;
}

.callback-form--full-screen .callback-block form .callback-confirm-checkbox .form-group .checkbox__text {
  color: white;
  font-size: 14px;
  line-height: 22px;
}

.callback-form--full-screen .callback-block form .callback-confirm-checkbox .form-group .checkbox__text a {
  color: white;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .callback-confirm-checkbox .form-group .checkbox__text a {
    display: inline-block;
    height: 48px;
    line-height: 48px;
  }
}

@media (hover: hover) {
  .callback-form--full-screen .callback-block form .callback-confirm-checkbox .form-group .checkbox__text a:hover {
    color: #ff7f32;
  }
}

.callback-form--full-screen .callback-block form .form-fields {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  flex-shrink: 0;
  margin-right: 24px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields {
    display: block;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time):nth-child(3) {
  grid-column: span 2;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time):nth-child(2) {
    margin-top: 16px;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group {
  margin: 0;
  width: 100%;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.has-error .help-block {
  padding-left: 24px;
  color: #e8eaee;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.has-error .help-block {
    padding-left: 16px;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group .form-label {
  border-radius: 40px;
  overflow: hidden;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list {
  flex-direction: row;
  border-radius: 0;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list {
    gap: 16px;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list .radio-list__label {
  display: none;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list .c-radio {
  width: -moz-min-content;
  width: min-content;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list .c-radio input:checked ~ .c-radio__place {
  border-color: #ff7f32;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list .c-radio .c-radio__text {
  color: white;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list .c-radio .c-radio__text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list .c-radio .c-radio__place {
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid white;
  background: transparent;
  box-sizing: border-box;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group.radio-list .c-radio .c-radio__place::before {
  width: 12px;
  height: 12px;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group .form-input {
  background: #8BB77B;
  color: white;
  border: none;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group .form-input {
    font-size: 16px;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group .form-input::-moz-placeholder {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group .form-input::placeholder {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group .form-input::-moz-placeholder {
    font-size: 16px;
  }
  .callback-form--full-screen .callback-block form .form-fields .form-row:not(.form-row--time) .form-group .form-input::placeholder {
    font-size: 16px;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-row--time {
  grid-column: span 2;
  margin-top: 16px;
}

@media (min-width: 1280px) {
  .callback-form--full-screen .callback-block form .form-fields .form-row--time.active {
    margin-top: 0;
  }
}

.callback-form--full-screen .callback-block form .form-fields .form-input {
  height: 60px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-fields .form-input {
    height: 52px;
  }
}

.callback-form--full-screen .callback-block form .form-button {
  width: 100%;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-button {
    margin-top: 24px;
  }
}

.callback-form--full-screen .callback-block form .form-button .btn {
  padding: 13px 40px;
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block form .form-button .btn {
    width: 100%;
    padding: 11px 10px;
    font-size: 16px;
    line-height: 26px;
  }
}

.callback-form--full-screen .callback-block form .form-button .btn[disabled] {
  background-color: #ff7f32;
}

.callback-form--full-screen .callback-block .form-row .form-group .form-label__text {
  display: none;
}

.callback-form--full-screen .callback-block .select2-container .select2-selection.select2-selection--single {
  outline: none;
}

.callback-form--full-screen .callback-block .select2-container .select2-selection.select2-selection--single:active,
.callback-form--full-screen .callback-block .select2-container .select2-selection.select2-selection--single:focus {
  outline: none;
}

.callback-form--full-screen .callback-block .select2-container .select2-selection--single {
  height: 66px;
  border: none;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .select2-container .select2-selection--single {
    height: 40px;
  }
}

.callback-form--full-screen .callback-block .select2-container .select2-selection--single .select2-selection__rendered {
  height: 66px;
  font-size: 24px;
  color: white;
  font-weight: bold;
  line-height: 66px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .select2-container .select2-selection--single .select2-selection__rendered {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}

.callback-form--full-screen .callback-block .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 16px;
  }
}

.callback-form--full-screen .callback-block .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 10px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0;
  }
}

.callback-form--full-screen .callback-block .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: white;
}

.callback-form--full-screen .callback-block .form-row--time .form-date {
  width: 205px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .form-row--time .form-date {
    margin-bottom: 24px;
  }
}

.callback-form--full-screen .callback-block .form-row--time .form-time {
  width: 150px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .form-row--time .form-time {
    margin-bottom: 24px;
  }
}

.callback-form--full-screen .callback-block .form-row--time .form-label .select2-container {
  z-index: 3;
}

.callback-form--full-screen .callback-block .select2.select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: white;
}

.callback-form--full-screen .callback-block .callback-select-dropdown {
  background: #8BB77B;
  z-index: 2;
  border-radius: 32px 32px 24px 24px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .callback-select-dropdown {
    border-radius: 20px 20px 24px 24px;
  }
}

.callback-form--full-screen .callback-block .callback-select-dropdown .select2-results__option {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  color: white;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .callback-select-dropdown .select2-results__option {
    font-size: 14px;
    line-height: 22px;
  }
}

.callback-form--full-screen .callback-block .callback-select-dropdown .select2-results__option.select2-results__option--highlighted {
  background-color: #9DC65F;
  color: white;
}

.callback-form--full-screen .callback-block .callback-select-dropdown .select2-results__option[aria-selected=true] {
  background-color: #9DC65F;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .callback-select-dropdown--time .select2-results {
    height: 150px;
  }
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .callback-select-dropdown--time .select2-results__options {
    max-height: 150px !important;
  }
}

.callback-form--full-screen .callback-block .callback-select-dropdown--time.select2-dropdown--below {
  transform: translateY(-66px);
  padding-top: 74px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .callback-select-dropdown--time.select2-dropdown--below {
    transform: translateY(-40px);
    padding-top: 48px;
  }
}

.callback-form--full-screen .callback-block .callback-select-dropdown--time.select2-dropdown--above {
  transform: translateY(66px);
  padding-bottom: 74px;
  border-radius: 24px 24px 32px 32px;
}

@media (max-width: 767px) {
  .callback-form--full-screen .callback-block .callback-select-dropdown--time.select2-dropdown--above {
    transform: translateY(40px);
    padding-bottom: 48px;
    border-radius: 24px 24px 20px 20px;
  }
}

.callback-form--service,
.callback-form--doctors {
  min-height: auto;
}

.callback-form--doctors {
  padding: 0;
  margin: 32px 0;
}

@media (max-width: 1919px) {
  .callback-form--doctors {
    margin-top: 24px;
    margin-bottom: 0;
  }
}

.callback-form--doctors.show-success .callback-block {
  display: flex;
  height: 184px;
}

@media (max-width: 1024px) {
  .callback-form--doctors.show-success .callback-block {
    height: 236px;
  }
}

@media (max-width: 767px) {
  .callback-form--doctors.show-success .callback-block {
    height: 362px;
  }
}

.callback-form--doctors.show-success .callback-block__content {
  display: none;
}

.callback-form--doctors.show-success .callback-block__success {
  margin: auto 0;
  display: block;
}

.callback-form--doctors .callback-block {
  background-color: #FFF7F7;
  padding: 20px 32px 24px;
  position: relative;
}

@media (max-width: 1919px) {
  .callback-form--doctors .callback-block {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.callback-form--doctors .callback-block__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1023px) {
  .callback-form--doctors .callback-block__wrapper {
    margin-bottom: 16px;
  }
}

.callback-form--doctors .callback-block__title {
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 26px;
  color: #142c36;
}

@media (max-width: 767px) {
  .callback-form--doctors .callback-block__title {
    margin-bottom: 10px;
    padding-right: 48px;
  }
}

.callback-form--doctors .callback-block__content {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .callback-form--doctors .callback-block__content {
    display: block;
  }
}

.callback-form--doctors .callback-block__content form {
  display: flex;
}

@media (max-width: 767px) {
  .callback-form--doctors .callback-block__content form {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}

.callback-form--doctors .callback-block__content .form-group {
  margin: 0 0 0 16px;
}

@media (max-width: 767px) {
  .callback-form--doctors .callback-block__content .form-group {
    margin: 0;
  }
}

.callback-form--doctors .callback-block__content .form-group--phone {
  width: 343px;
}

@media (max-width: 1023px) {
  .callback-form--doctors .callback-block__content .form-group--phone {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .callback-form--doctors .callback-block__content .form-group--phone {
    margin-bottom: 16px;
    width: 100%;
  }
}

.callback-form--doctors .callback-block__content .form-label {
  margin-bottom: 0;
}

.callback-form--doctors .callback-block__content .form-input {
  height: 56px;
  padding: 17px 24px;
  font-size: 14px;
  color: #6b6b6b;
  background: #FFFFFF;
  border-radius: 40px;
  border: none;
}

@media (max-width: 767px) {
  .callback-form--doctors .callback-block__content .form-input {
    height: 52px;
    padding: 15px 24px;
  }
}

.callback-form--doctors .callback-block__content .form-input::-moz-placeholder {
  font-size: 14px;
}

.callback-form--doctors .callback-block__content .form-input::placeholder {
  font-size: 14px;
}

.callback-form--doctors .callback-block__content .btn {
  padding: 15px 40px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  min-height: 46px;
}

@media (max-width: 767px) {
  .callback-form--doctors .callback-block__content .btn {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.callback-form--doctors .callback-block__content .btn[disabled] {
  background-color: #ff7f32;
}

.callback-form--doctors .callback-block__notation {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
  color: #142c36;
}

.callback-form--doctors .callback-block__notation .link-phone {
  font-weight: 700;
  color: #142c36;
}

.callback-form--doctors .callback-block__success {
  display: none;
}

.callback-form--doctors .callback-block__success .callback-block__title {
  font-weight: 700;
}

.callback-form--doctors .callback-block__success .callback-form__text {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 14px;
  line-height: 22px;
}

.callback-form--doctors .callback-block .checkbox__text {
  width: 100%;
  margin-top: 24px;
  flex-shrink: 0;
  padding: 0;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1023px) {
  .callback-form--doctors .callback-block .checkbox__text {
    margin-top: 16px;
  }
}

.callback-form .select2 {
  width: 100% !important;
}

.callback-form .select2.select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow b {
  transform: rotate(135deg);
  border-left: 1px solid #F50016;
  border-bottom: 1px solid #F50016;
  top: 22px;
}

.callback-form .select2-container .select2-selection--single .select2-selection__rendered {
  height: 50px;
  padding-left: 24px;
  padding-right: 21px;
  line-height: 50px;
  font-size: 16px;
  color: #142c36;
  font-weight: 300;
}

@media (max-width: 1279px) {
  .callback-form .select2-container .select2-selection--single .select2-selection__rendered {
    height: 40px;
    line-height: 40px;
  }
}

.callback-form .select2-container .select2-selection--single {
  height: 50px;
  border: 1px solid #7f7e7e;
  border-radius: 2px;
}

@media (max-width: 1279px) {
  .callback-form .select2-container .select2-selection--single {
    height: 40px;
  }
}

.callback-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #142c36;
  font-size: 16px;
}

.callback-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 36px;
  height: 50px;
  top: 0;
  right: 0;
}

@media (max-width: 1279px) {
  .callback-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
  }
}

.callback-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  width: 9px;
  height: 9px;
  top: 20px;
  left: 17px;
  border: none;
  border-left: 1px solid #6b6b6b;
  border-bottom: 1px solid #6b6b6b;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

@media (max-width: 1279px) {
  .callback-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 16px;
  }
}

.callback-form .radio-list {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 26px;
}

.callback-form .radio-list__label {
  width: 100%;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 20px;
  color: #142c36;
  font-weight: 400;
  font-family: "Montserrat", Arial, sans-serif;
}

.callback-form .radio-list .c-radio {
  width: 100%;
}

.callback-form .radio-list .c-radio:first-of-type {
  margin-bottom: 16px;
}

.callback-form .form-row--time {
  display: flex;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.callback-form .form-row--time .form-date {
  width: 144px;
  margin-bottom: 32px;
}

.callback-form .form-row--time .form-time {
  width: 112px;
  margin-right: 24px;
  margin-bottom: 32px;
}

.callback-form .form-row--time.active {
  max-height: 120px;
}

.callback-form .form-row .form-label__text {
  display: inline-block;
  margin-bottom: 6px;
}

.callback-form .form-row .form-label .required {
  color: #F50016;
}

.callback-select-dropdown {
  margin-top: 4px;
  padding: 16px 2px;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  border-radius: 0;
}

.callback-select-dropdown .select2-results__option {
  margin-bottom: 8px;
  padding: 4px 0 4px 22px;
  font-size: 16px;
  line-height: 28px;
  color: #142c36;
}

.callback-select-dropdown .select2-results__option.select2-results__option--highlighted {
  background-color: #e8eaee;
  color: #142c36;
}

.callback-select-dropdown .select2-results__options {
  max-height: none !important;
}

.callback-select-dropdown--time {
  margin-top: 0;
  transform: translateY(-4px);
}

.callback-select-dropdown--time .select2-results {
  position: relative;
  height: 258px;
}

.callback-select-dropdown--time .select2-results .ps__scrollbar-x-rail {
  display: none;
}

.callback-select-dropdown--time .select2-results .ps__scrollbar-y-rail {
  right: 0 !important;
}

.callback-select-dropdown--time .select2-results__options {
  height: 258px !important;
}

.global-notification {
  padding: 8px 24px;
  text-align: center;
  font-weight: bold;
}

.global-notification ~ .container .top-page,
.global-notification ~ .container .section-blue.full-width {
  margin-top: 0;
}

a.global-notification-link {
  font-weight: normal;
  text-decoration: underline;
}

.fixed-bottom-panel {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 16px;
  min-width: 320px;
  z-index: 201;
  box-shadow: 0px -8px 15px 0px rgba(0, 0, 0, 0.1019607843);
}

.fixed-bottom-panel__wrapper a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.fixed-bottom-panel__wrapper a svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fixed-bottom-panel__wrapper a span {
  font-family: var(--font-Montserrat);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #444444;
}

@media (max-width: 767px) {
  .fixed-bottom-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .fixed-bottom-panel__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 44px;
    overflow: hidden;
    transition: all 350ms;
  }

  .fixed-bottom-panel__wrapper._hidden {
    height: 0;
  }
}

.simple-spoiler-content {
  overflow: hidden;
  position: relative;
  transition: margin 0.2s;
}

.simple-spoiler-content-wrap {
  overflow-y: hidden;
}

.simple-spoiler-toggle {
  cursor: pointer;
}

.simple-spoiler-toggle .btn-ico-bg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.simple-spoiler-toggle .i-arrow {
  display: block;
}

.simple-spoiler:not(.open) .simple-spoiler-toggle .open {
  display: block;
}

.simple-spoiler:not(.open) .simple-spoiler-toggle .close {
  display: none;
}

.simple-spoiler:not(.open) .simple-spoiler-toggle .i-arrow {
  transform: translateY(10%) rotate(0);
}

.simple-spoiler.open .simple-spoiler-toggle .open {
  display: none;
}

.simple-spoiler.open .simple-spoiler-toggle .close {
  display: block;
}

.simple-spoiler.open .simple-spoiler-toggle .i-arrow {
  transform: translateY(-10%) rotate(180deg);
}

.simple-spoiler.spoiler-disabled .simple-spoiler-toggle {
  display: none;
}

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

.action-list__item {
  display: block;
  margin: 0;
  padding: 24px;
  max-width: 570px;
  color: inherit;
  border: 1px solid #7f7e7e;
}

.action-list__item:not(:first-child) {
  border-top: none;
}

.action-list__item a {
  color: inherit;
}

.action-list__info {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .action-list__info {
    display: block;
  }
}

.action-list__place {
  display: block;
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .action-list__place {
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .action-list__place.many-places .place:hover .place__text {
    color: #F50016;
    border-bottom-color: transparent;
  }

  .action-list__place.many-places .place:hover .i-location {
    fill: #F50016;
  }
}

.action-list__badge {
  margin-right: auto;
  padding: 8px 16px;
  width: 140px;
  line-height: 26px;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  background-color: #F50016;
  border-radius: 2px 0;
}

@media (max-width: 767px) {
  .action-list__badge {
    margin-bottom: 12px;
  }
}

.action-list__text {
  width: calc(100% - 140px - 16px);
}

@media (max-width: 767px) {
  .action-list__text {
    width: 100%;
  }

  .action-list__text h4,
  .action-list__text .h4 {
    margin-bottom: 0.5rem;
  }
}

.doctor-list {
  list-style: none;
  margin: 8px -24px 32px;
  padding: 0;
  display: block;
}

@media (min-width: 768px) {
  .doctor-list {
    margin: 8px 0 32px;
  }
}

.doctor-list__item {
  display: block;
  margin-top: -1px;
  padding: 24px;
  color: inherit;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
}

.doctor-list__item:first-child {
  border-top: none;
}

@media (min-width: 768px) {
  .doctor-list__item {
    display: flex;
    align-items: flex-start;
    padding: 24px 0;
  }
}

.doctor-list__item.disabled .timetable-item {
  display: flex;
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .doctor-list__item.disabled .timetable-item {
    margin-bottom: 0;
    margin-right: 16px;
  }
}

.doctor-list__item.disabled .timetable-item--small {
  display: none;
  margin-bottom: 12px;
}

.doctor-list__item.disabled .timetable-wrapper {
  display: inline-block;
}

.doctor-list__item.disabled .doctor-list__link {
  display: block;
  cursor: pointer;
}

.doctor-list__item.disabled .doctor-list__timetable {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1280px) {
  .doctor-list__item.disabled .doctor-list__timetable {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.doctor-list__info {
  display: flex;
  margin-bottom: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .doctor-list__info {
    width: calc(50% - 12px);
    margin-right: 24px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .doctor-list__info {
    width: 32%;
  }
}

.doctor-list__text .h4 {
  display: block;
  margin-bottom: 0;
}

.doctor-list__text .note-text {
  margin-top: 4px;
}

.doctor-list__name {
  display: flex;
  align-items: center;
  min-height: 64px;
  margin-bottom: 6px;
  padding-left: 80px;
}

.doctor-list__name .doctor-list__name__link {
  color: inherit;
  transition: all 0.3s;
}

.doctor-list__name .doctor-list__name__link:visited {
  color: inherit;
}

.doctor-list__name .doctor-list__name__link:active {
  color: inherit;
}

@media (min-width: 768px) {
  .doctor-list__name {
    padding-left: 0;
    min-height: auto;
    margin-bottom: 8px;
  }
}

.doctor-list .doctor-list__name .doctor-list__name__link:hover {
  color: #6ea55a;
  transition: all 0.3s;
}

.doctor-list__link {
  display: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
}

.doctor-list__link .link-text {
  display: inline;
}

.doctor-list__image {
  width: 64px;
  height: 64px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
}

@media (min-width: 768px) {
  .doctor-list__image {
    position: relative;
    margin-right: 16px;
  }
}

.doctor-list__image--not-round {
  border-radius: 0;
}

.doctor-list__image img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.doctor-list__timetable {
  display: block;
  margin-bottom: -12px;
}

@media (min-width: 768px) {
  .doctor-list__timetable {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1280px) {
  .doctor-list__timetable {
    width: auto;
  }
}

.doctor-list__timetable .timetable-item {
  min-width: 146px;
  width: auto;
  display: none;
}

.doctor-list__timetable .timetable-item:nth-of-type(2n) {
  margin-right: 12px;
}

.doctor-list__timetable .timetable-item--small {
  display: inline-flex;
  min-width: 56px;
}

.doctor-list__place {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.doctor-list__place .i-clinic,
.doctor-list__place .i-clinic-default {
  transition: fill 0.3s;
  fill: #ff7f32;
}

@media (min-width: 1280px) {
  .doctor-list__place:hover .place.many-places {
    cursor: pointer;
  }

  .doctor-list__place:hover .place.many-places .place__text {
    color: #F50016;
    border-bottom-color: transparent;
  }

  .doctor-list__place:hover .i-location,
  .doctor-list__place:hover .i-clinic {
    fill: #F50016;
  }

  .doctor-list__place:hover .i-clinic-default {
    fill: #ff7f32;
  }
}

.doctor-list--slider {
  margin: 16px 0 32px;
}

@media (min-width: 768px) {
  .doctor-list--slider {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .doctor-list--slider .slider {
    display: none;
  }
}

@media (min-width: 768px) {
  .doctor-list--slider .slider--timetable {
    width: 100%;
    border: none;
    margin-bottom: 24px;
  }

  .doctor-list--slider .slider--timetable:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .doctor-list--slider .slider--timetable.date {
    border: none;
  }
}

.doctor-list--slider .doctor-list__info {
  padding: 0 24px;
}

@media (min-width: 768px) {
  .doctor-list--slider .doctor-list__info {
    padding: 0 12px;
    width: 100%;
    margin: 0 0 16px;
  }
}

@media (min-width: 1280px) {
  .doctor-list--slider .doctor-list__info {
    width: auto;
    padding: 0;
    margin-right: 24px;
  }
}

.doctor-list--slider .doctor-list__item {
  padding: 0;
  margin-bottom: 32px;
  border: none;
  width: 100%;
  flex-wrap: wrap;
}

@media (min-width: 1280px) {
  .doctor-list--slider .doctor-list__item {
    flex-wrap: nowrap;
    margin-bottom: 24px;
  }
}

.doctor-list--slider .doctor-list__item:last-child {
  margin: 0;
}

.doctor-list--slider .doctor-list__item.different .timetable-specialty-text {
  display: block;
}

.doctor-list--slider .doctor-list__item .timetable-item:not(.timetable-item--small) {
  margin-bottom: 0;
}

.doctor-list--slider .doctor-list__text .note-text {
  display: block;
}

.doctor-list--slider.popup-button .h4 {
  display: inline-block;
}

.doctor-list--slider .section-popup {
  margin: -1px 0 0;
}

.search-result-section .doctor-list__item {
  display: block;
  margin: 0;
  padding: 24px;
  max-width: 570px;
  border: 1px solid #7f7e7e;
}

.search-result-section .doctor-list__item:not(:first-child) {
  border-top: none;
}

.search-result-section .doctor-list__info {
  margin: 0;
  width: 100%;
}

.search-result-section .doctor-list__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0px 15px rgba(127, 126, 126, 0.4);
}

@media (max-width: 767px) {
  .search-result-section .doctor-list__image {
    width: 64px;
    height: 64px;
  }
}

.search-result-section .doctor-list__specialty {
  margin-top: 4px;
  line-height: 22px;
  font-size: 14px;
  color: #6b6b6b;
}

.search-result-section .doctor-list__place {
  margin-top: 12px;
}

.search-result-section .i-clinic {
  fill: #ff7f32;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  z-index: 3;
  position: relative;
  overflow: auto;
  max-width: 100%;
  width: 100%;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.breadcrumbs::-webkit-scrollbar {
  width: 0;
  -webkit-appearance: none;
  background: transparent;
}

.breadcrumbs::-webkit-scrollbar-track {
  background: transparent;
}

.breadcrumbs::-webkit-scrollbar-thumb {
  background: transparent;
}

.breadcrumbs li:last-child .breadcrumbs__item {
  color: #6b6b6b;
}

.breadcrumbs li:last-child .breadcrumbs__item::after {
  display: none;
}

.breadcrumbs__item {
  color: #C7C7C7;
  display: block;
  position: relative;
  white-space: nowrap;
  padding-right: 16px;
  font-size: 12px;
  line-height: 1.33;
  transition: color 0.35s ease-in-out, opacity 350ms ease-in-out;
}

.breadcrumbs__item::after {
  content: "\2014";
  position: absolute;
  right: 0;
  bottom: 0;
  color: #C7C7C7;
}

@media (min-width: 1280px) {
  .breadcrumbs__item:not(span):hover {
    color: #ff7f32;
  }
}

@media (max-width: 767px) {
  .breadcrumbs__item {
    max-width: 90px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}

.faq__title {
  margin-bottom: 48px;
  color: #6EA55A;
}

.faq__card {
  padding: 20px 24px 20px 24px;
  border-radius: 32px;
  border: 1px solid #edf0f8;
  background: #ffffff;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}

.faq__card:not(:last-child) {
  margin-bottom: 16px;
}

.faq__card_open {
  background: #F8F8F8;
}

.faq__card:not(.faq__card_open):hover {
  border-color: #CFCFD1;
}

.faq__card-toggler {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__card-name {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-right: 10px;
  color: #142c36;
}

.faq__card-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #142c36;
  height: 0;
  overflow: hidden;
  transition: all 350ms linear;
  will-change: max-height, margin-top;
}

.faq__card-text_open {
  margin-top: 20px;
  height: auto;
  padding-bottom: 10px;
}

.faq__card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  cursor: pointer;
  background: #F8F8F8;
  transition: background 350ms;
}

.faq__card-button span {
  background-color: #ff7f32;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 350ms;
}

.faq__card-button span:nth-child(1) {
  width: 40%;
  height: 5%;
  transform: translate(-50%, -50%);
}

.faq__card-button span:nth-child(2) {
  width: 5%;
  height: 40%;
  transform: translate(-50%, -50%);
}

.faq__card-button_open {
  background: #ffffff;
}

.faq__card-button_open span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.disease .faq,
.symptom .faq {
  padding-bottom: 100px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
  color: #fff;
  border: 1px solid #ff7f32;
  background-color: #ff7f32;
  outline: none;
  cursor: pointer;
  transition: border-color 350ms ease-in-out, background-color 0.35s ease-in-out, color 0.35s ease-in-out;
}

.primary-button_with_ico {
  gap: 10px;
}

.primary-button_with_ico svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: color 0.35s ease-in-out;
}

.primary-button_bg_transparent {
  background-color: transparent;
  color: #142C36;
}

.primary-button_bg_green {
  background-color: #9DC65F;
  border-color: #9DC65F;
  color: #fff;
}

@media (hover: hover) {
  .primary-button:hover {
    background-color: transparent;
    color: #444;
  }

  .primary-button_bg_transparent:hover {
    background-color: #ff7f32 !important;
    color: #fff !important;
  }

  .primary-button_bg_green:hover {
    background-color: #ff7f32;
    border-color: #ff7f32;
    color: #fff;
  }
}

.cookies-note {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  bottom: 20px;
  left: 20px;
  max-width: 331px;
  width: 100%;
  padding: 12px;
  background-color: rgba(237, 240, 248, 0.9);
  border-radius: 8px;
  z-index: 100000000000000000;
}

.cookies-note p {
  color: #444444;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin: 0 16px 0 0;
}

.cookies-note p a {
  text-decoration: underline;
  color: #444444;
  transition: all 350ms ease-in-out;
}

.cookies-note__close-btn {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 0;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
}

.cookies-note__close-btn::after,
.cookies-note__close-btn::before {
  content: "";
  position: absolute;
  background: #292D32;
  height: 1.5px;
  width: 18.3px;
  left: 5px;
  right: 5px;
}

.cookies-note__close-btn::before {
  transform: rotate(-45deg);
}

.cookies-note__close-btn::after {
  transform: rotate(45deg);
}

.cookies-note.show {
  display: flex;
}

@media (hover: hover) {
  .cookies-note p a:hover {
    color: #f7650d;
    text-decoration: none;
  }
}

@media screen and (max-width: 1023px) {
  .cookies-note {
    left: 50%;
    transform: translateX(-50%);
    max-width: 320px;
  }

  .cookies-note p {
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
  }

  .cookies-note p a {
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
  }
}

@media screen and (max-width: 767px) {
  .cookies-note {
    bottom: 95px;
    max-width: 300px;
  }
}

.mob-app-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: 298px;
}

.mob-app-info__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #444444;
  grid-column: span 2;
}

.mob-app-info__qr-code {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid #CFCFD1;
}

.mob-app-info__qr-code-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.mob-app-info__qr-code-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mob-app-info__qr-code-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.2px;
  color: #444444;
  text-align: center;
}

.mob-app-info__links {
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.mob-app-info__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mob-app-info__link-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.mob-app-info__link-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2px;
  text-align: left;
  color: #444444;
  max-width: 98px;
}

.mob-app-info__link-text span {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1px;
  text-align: left;
  color: #444444;
}

@media (max-width: 1023px) {
  .mob-app-info {
    width: 100%;
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    border-bottom: 1px solid #CFCFD1;
  }

  .mob-app-info__qr-code {
    display: none;
  }

  .mob-app-info__links {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 360px;
  }

  .mob-app-info__title {
    grid-column: unset;
  }
}

.tapbar-map {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 100%;
  height: 100dvh;
  display: none;
}

.tapbar-map__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tapbar-map__item {
  width: 100%;
  height: 100%;
}

.tapbar-map__item .ymaps-2-1-79-map-copyrights-promo,
.tapbar-map__item .ymaps-2-1-79-copyright {
  display: none !important;
}

.tapbar-map__item .ymaps-2-1-79-controls__control {
  inset: 50vh 16px auto auto !important;
  transform: translateY(-50%) !important;
}

.tapbar-map__close-btn {
  position: absolute;
  top: 24px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #EDF0F8;
  box-shadow: 0 0 12px 0 rgba(182, 182, 182, 0.2509803922);
  cursor: pointer;
  background: #fff;
  outline: none;
  z-index: 1;
}

.tapbar-map__close-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("/images/lk/closs-fx-panel-map-icon.svg") center center/contain no-repeat;
}

.tapbar-map__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
  z-index: 10;
}

.tapbar-map__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.tapbar-map__clinic-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  padding: 8px 16px 16px 16px;
  box-shadow: 0 -10px 16px 0 rgba(125, 137, 171, 0.2509803922);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
  background-color: #fff;
  z-index: 11;
  height: -moz-max-content;
  height: max-content;
  overflow-y: auto;
  touch-action: none;
}

.tapbar-map__clinic-info::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 8px;
  background: #CFCFD1;
  margin: 0 auto 16px auto;
}

.tapbar-map__clinic-info.is-active {
  display: block;
  transform: translateY(0);
}

.tapbar-map__clinic-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 46.25%;
  margin-bottom: 16px;
}

.tapbar-map__clinic-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.tapbar-map__clinic-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.1px;
  color: #142C36;
}

.tapbar-map__clinic-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3px;
}

.tapbar-map__clinic-type .clinic-card__ico {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
}

.tapbar-map__clinic-type .clinic-card__ico .clinic-card__icon-image {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.tapbar-map__clinic-type .clinic-card__ico .note-text {
  line-height: 1.28;
  letter-spacing: 0.2px;
  color: #142C36;
}

.tapbar-map__clinic-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.42;
  font-size: 14px;
  color: #142C36;
  margin-bottom: 16px;
  max-width: 100%;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-decoration-thickness: from-font;
}

.tapbar-map__clinic-address span {
  display: inline-block;
}

.tapbar-map__clinic-address-copy {
  display: inline-flex;
  vertical-align: middle;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  margin-left: 8px;
}

.tapbar-map__clinic-address-copy svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: #cfcfd1;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .tapbar-map__clinic-address-copy:hover svg {
    color: #FF7F32;
  }
}

.tapbar-map__clinic-address-copy_active svg {
  color: #FF7F32;
}

.tapbar-map__clinic-schedule {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #F8F8F8;
  margin-bottom: 20px;
}

.tapbar-map__clinic-schedule::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  display: block;
  width: 100%;
  max-width: 75px;
  transform: translateY(-50%);
  height: calc(100% - 16px);
  max-height: 78px;
  background: url("/images/lk/leaf.svg") center center/contain no-repeat;
}

.tapbar-map__clinic-schedule-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.1px;
  color: #9DC65F;
}

.tapbar-map__clinic-schedule-phone::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("/images/lk/call-calling.svg") center center/contain no-repeat;
}

.tapbar-map__clinic-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tapbar-map__clinic-schedule-row span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.28;
  letter-spacing: 0.2px;
  color: #142C36;
}

.tapbar-map__clinic-stations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.tapbar-map__clinic-stations .place__round {
  width: 8px;
  height: 8px;
  margin-bottom: 0;
  margin-right: 4px;
}

.tapbar-map__clinic-stations .place__text {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  color: #142C36;
  font-weight: 400;
  gap: 2px;
}

.tapbar-map__clinic-stations .place__time-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1px;
  color: #CFCFD1;
  margin-left: 12px;
}

.tapbar-map__clinic-stations .place__time-text::before {
  display: block;
  content: "";
  flex-shrink: 0;
}

.tapbar-map__clinic-stations .place__time-text.place__time-text_walking::before {
  width: 14px;
  height: 14px;
  background: url("/images/lk/walking.svg") center center/contain no-repeat;
}

.tapbar-map__clinic-stations .place__time-text.place__time-text_transport::before {
  width: 16px;
  height: 16px;
  background: url("/images/lk/bus.svg") center center/contain no-repeat;
}

.tapbar-map__clinic-route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  min-height: 44px;
  text-align: center;
  background: #FF7F32;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
}

.tapbar-map__clinic-route-btn::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("/images/lk/route-icon.svg") center center/contain no-repeat;
}

.btn-zoom-wrapper.tapbar-map-zoom {
  box-shadow: 0 0 12px 0 rgba(182, 182, 182, 0.2509803922);
  border: 1px solid #EDF0F8;
  border-radius: 40px;
  width: 48px;
  height: 92px;
  transform: unset;
  display: block;
}

.btn-zoom-wrapper.tapbar-map-zoom .zoom-out,
.btn-zoom-wrapper.tapbar-map-zoom .zoom-in {
  position: relative;
}

.btn-zoom-wrapper.tapbar-map-zoom .zoom-out svg,
.btn-zoom-wrapper.tapbar-map-zoom .zoom-in svg {
  transform: unset;
}

.btn-zoom-wrapper.tapbar-map-zoom .zoom-in::after,
.btn-zoom-wrapper.tapbar-map-zoom .zoom-in::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: #142C36;
}

.btn-zoom-wrapper.tapbar-map-zoom .zoom-in::after,
.btn-zoom-wrapper.tapbar-map-zoom .zoom-in .zoom-out::before {
  height: 2px;
  width: 14px;
}

.btn-zoom-wrapper.tapbar-map-zoom .zoom-in::before {
  height: 14px;
  width: 2px;
  transform: translate(-50%, -50%) rotate(180deg);
}

.btn-zoom-wrapper.tapbar-map-zoom .zoom-out::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: #142C36;
  height: 2px;
  width: 14px;
}

.btn-zoom-wrapper.tapbar-map-zoom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  background-color: #F6F6F6;
}

.home-licenses {
  padding-bottom: 60px;
}

.home-licenses__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  padding: 24px;
  background: #F2F5FD;
}

.home-licenses__col:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-licenses__col:nth-child(2) {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
}

.home-licenses__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 599px;
}

.home-licenses__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #FF7F32;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .home-licenses__link:hover {
    color: #6ea55a;
  }
}

@media (max-width: 1024px) {
  .home-licenses__wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
  }

  .home-licenses__col:nth-child(1) {
    gap: 16px;
  }

  .home-licenses__col:nth-child(2) {
    flex-wrap: wrap;
    gap: 24px;
  }

  .home-licenses__text {
    font-size: 14px;
    line-height: 18px;
  }

  .home-licenses__link {
    font-size: 14px;
    line-height: 18px;
  }
}

.home-consultation {
  padding-bottom: 60px;
  padding-top: 71px;
}

.home-consultation__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 45px 80px;
  border-radius: 16px;
  background: linear-gradient(263.04deg, #6EA55A 2.88%, #9DC65F 62.44%, #C2EB84 95.47%);
  min-height: 200px;
  z-index: 0;
}

.home-consultation__wrapper::before {
  position: absolute;
  top: -71px;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  max-width: 382px;
  height: auto;
  background: url("/images/refactor/home-page/consultation_desktop.webp") center center/cover no-repeat;
  z-index: -1;
}

.home-consultation__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
  z-index: 1;
}

.home-consultation__content-descr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 514px;
}

.home-consultation__content-title,
.home-consultation__content-text {
  color: #fff;
}

.home-consultation__button {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  min-height: 44px;
  padding: 10px 26px 10px 16px;
  border: none;
}

@media (hover: hover) {
  .home-consultation__button:hover {
    background: #6ea55a;
    color: #fff;
  }
}

@media (max-width: 1280px) {
  .home-consultation__wrapper {
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    padding: 32px 24px;
  }

  .home-consultation__wrapper::before {
    top: -71px;
    max-width: 480px;
  }

  .home-consultation__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-consultation__content-descr {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .home-consultation {
    padding-top: 40px;
  }

  .home-consultation__wrapper {
    align-items: flex-start;
    padding: 32px 16px;
    overflow: hidden;
    min-height: 280px;
    background: linear-gradient(327.49deg, #6EA55A 8.82%, #9DC65F 69.4%, #C2EB84 102.99%);
  }

  .home-consultation__wrapper::before {
    top: unset;
    bottom: 0;
    left: unset;
    right: -220px;
    width: 447px;
    height: 217px;
    background: url("/images/refactor/home-page/consultation_mob.webp") bottom right/contain no-repeat;
  }

  .home-consultation__content-title {
    font-size: 24px;
    line-height: 34px;
  }

  .home-consultation__content-text {
    max-width: 326px;
  }
}

@media (max-width: 480px) {
  .home-consultation__content-text {
    max-width: 230px;
  }
}

@media (max-width: 400px) {
  .home-consultation__wrapper::before {
    bottom: -40px;
    right: -285px;
  }
}

.doctor-articles {
  position: relative;
  padding: 40px 0 40px 0;
}

.doctor-articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.doctor-articles__slider-nav {
  display: flex;
  align-items: center;
}

.doctor-articles__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF7F32;
  background: #F5F7FA;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.doctor-articles__slider-nav-btn.swiper-button-lock {
  display: none;
}

.doctor-articles__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}

.doctor-articles__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}

.doctor-articles__slider-nav-link {
  font-weight: 500;
  color: #FF7F32;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .doctor-articles__slider-nav-link:hover {
    color: #6EA55A;
  }
}

.doctor-articles__card {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 416px;
}

.doctor-articles__card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 48.08%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.doctor-articles__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 350ms ease-in-out;
}

.doctor-articles__card-title {
  line-height: 1.375;
  margin-bottom: 16px;
  -webkit-line-clamp: 2;
  /* Число отображаемых строк */
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
  overflow: hidden;
  transition: color 350ms ease-in-out;
}

.doctor-articles__card-date {
  font-size: 14px;
  line-height: 1.285;
  color: #CFCFD1;
  margin-top: auto;
}

@media (hover: hover) {
  .doctor-articles__card:hover .home-news__card-image img {
    transform: scale(1.1);
  }

  .doctor-articles__card:hover .home-news__card-title {
    color: #6ea55a;
  }
}

@media (max-width: 1024px) {
  .doctor-articles__card {
    max-width: 330px;
  }
}

@media (max-width: 1024px) {
  .doctor-articles {
    padding: 40px 0 64px 0;
  }

  .doctor-articles__slider-nav-btn {
    display: none;
  }

  .doctor-articles__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
}

.doctor-preview {
  padding-bottom: 40px;
  padding-top: 20px;
}

.doctor-preview + section {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.doctor-preview__slider {
  width: 100%;
  max-width: 462px;
  height: 240px;
  margin: 0;
  grid-column: 2;
  border-radius: 16px;
  overflow: hidden;
}

.doctor-preview__slider-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.doctor-preview__slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

.doctor-preview__slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 0;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.doctor-preview__slider-title {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: 356px;
  color: #fff;
}

.doctor-preview__slider-text {
  font-weight: 400;
  line-height: 1.4;
  max-width: 240px;
  color: #fff;
}

.doctor-preview__slider-btn {
  top: unset;
  right: unset;
  bottom: 24px;
  margin: 0;
  transition: background 350ms ease-in-out;
}

.doctor-preview__slider-btn.swiper-button-lock {
  display: none;
}

@media (hover: hover) {
  .doctor-preview__slider-btn:hover {
    background: #FF7F32;
  }
}

.doctor-preview__slider-btn_prev {
  left: 24px;
}

.doctor-preview__slider-btn_next {
  left: 80px;
}

.doctor-preview__slider-btn svg {
  color: #142c36;
}

.doctor-preview__slider-feedback {
  display: none;
}

.doctor-preview__image {
  position: sticky;
  top: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 440px;
  width: 100%;
  aspect-ratio: 1/1;
}

.doctor-preview__image-main {
  position: absolute;
  top: 4.5%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 103%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  aspect-ratio: 1/1;
  -webkit-mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
          mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
  transform: translateY(-7.4%) translateX(0%);
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.doctor-preview__image-leaf {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
          mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
  background: linear-gradient(109.5deg, #BEE639 -2.44%, #7EB332 101.96%);
}

.doctor-preview__image-wrap img {
  width: 600px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-preview__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.doctor-preview__wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  gap: 80px;
}

.doctor-preview__title {
  margin: 12px 0 12px 0;
}

.doctor-preview__tags {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.doctor-preview__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.285;
  padding: 8px 20px;
  background: #F2F5FD;
}

.doctor-preview__regalia {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.doctor-preview__regalia-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.doctor-preview__regalia-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.doctor-preview__regalia-item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.37;
  color: #FF7F32;
}

.doctor-preview__regalia-item:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF7F32;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
}

.doctor-preview__description {
  font-weight: 500;
  line-height: 18px;
  color: #142C36;
  width: 100%;
  margin-bottom: 40px;
}

.doctor-preview__description a {
  display: inline;
  color: #FF7F32;
  transition: color 350ms ease-in-out;
}

.doctor-preview__price-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor-preview__price-button {
  padding: 10px 24px;
}

.doctor-preview__benefits {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 100%;
}

.doctor-preview__benefits-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80px;
}

.doctor-preview__benefits-card-img {
  width: 60px;
  height: 60px;
}

.doctor-preview__benefits-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.doctor-preview__benefits-card-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
  max-width: 60px;
  color: #142C36;
}

.doctor-preview__promo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 40px;
  width: 100%;
}

.doctor-preview__clinics {
  width: 100%;
  margin-top: 40px;
}

.doctor-preview__clinics-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 220px);
  gap: 16px;
}

.doctor-preview__clinics-title {
  margin-bottom: 20px;
}

.doctor-preview__clinics-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  min-height: 200px;
  border-radius: 16px;
  background: #F2F5FD;
}

.doctor-preview__clinics-card-address {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
}

.doctor-preview__clinics-card-stations {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.doctor-preview__clinics-card-stations .place__text {
  line-height: 18px;
  color: #142C36;
  font-weight: 500;
  font-size: 12px;
}

.doctor-preview__clinics-card-stations .place__round {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  margin-bottom: 0;
}

.doctor-preview__clinics-card-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #FF7F32;
  margin-top: auto;
  transition: all 350ms;
}

@media (hover: hover) {
  .doctor-preview__clinics-card-link:hover {
    color: #6EA55A;
  }
}

.doctor-preview__clinics-card-link._mob {
  display: none;
}

.doctor-preview__clinics-card-title {
  max-width: 160px;
}

.doctor-preview__video {
  position: relative;
  background: linear-gradient(109.5deg, #BEE639 -2.44%, #7EB332 101.96%);
  background-clip: border-box;
  border-radius: 16px;
  overflow: hidden;
  width: 22.223%;
  height: 29.26%;
  border: 4px solid transparent;
}

.doctor-preview__video-poster {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-preview__video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 37.5%;
  height: 28%;
  max-width: 42px;
  max-height: 42px;
}

.doctor-preview__more-btn {
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  background: #F2F5FD;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  border-radius: 12px;
  padding: 11px 16px;
  width: 100%;
  color: #FF7F32;
}

@media (max-width: 1279px) {
  .doctor-preview__wrapper {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .doctor-preview__promo .doctor-slider-pagination {
    display: none;
  }

  .doctor-preview__slider {
    max-width: 100%;
    width: 100%;
    height: 240px;
    margin: 0;
    overflow: visible;
  }

  .doctor-preview__slider .swiper-slide {
    padding: 18px;
    gap: 8px;
  }

  .doctor-preview__slider-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    max-width: 280px;
  }

  .doctor-preview__slider-text {
    font-size: 14px;
    line-height: 18px;
    max-width: 210px;
  }
}

@media (max-width: 767px) {
  .doctor-preview {
    padding-bottom: 0;
    background: #ECEEF6;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
  }

  .doctor-preview__info {
    background: #fff;
    margin: 0 -16px 0 -16px;
    padding: 16px 16px 0 16px;
    width: 100vw;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    overflow: hidden;
  }

  .doctor-preview__wrapper {
    flex-direction: column;
    gap: 0;
  }

  .doctor-preview__image {
    top: auto;
    max-width: 100%;
    position: relative;
  }

  .doctor-preview__image-leaf {
    display: none;
  }

  .doctor-preview__image-main {
    position: static;
    -o-object-position: top center;
       object-position: top center;
    aspect-ratio: 1/1;
    -webkit-mask: unset;
            mask: unset;
    transform: unset;
    -webkit-mask-size: unset;
            mask-size: unset;
    height: 100%;
  }

  .doctor-preview__image:not(:has(.doctor-preview__image-main)) {
    display: none;
  }

  .doctor-preview__video {
    display: none;
  }

  .doctor-preview__description {
    max-width: 100%;
    margin-bottom: 0;
  }

  .doctor-preview__slider {
    display: block;
    height: auto;
  }

  .doctor-preview__slider .swiper-slide {
    height: 280px;
  }

  .doctor-preview__slider-btn {
    display: none;
  }

  .doctor-preview__slider-feedback {
    display: none;
  }

  .doctor-preview__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: auto;
    gap: 16px;
  }

  .doctor-preview__promo {
    padding-top: 40px;
    padding-bottom: 32px;
    gap: 16px;
  }

  .doctor-preview__promo .doctor-slider-pagination {
    display: block;
    bottom: 0 !important;
  }

  .doctor-preview__tags {
    position: relative;
    margin-bottom: 24px;
  }

  .doctor-preview__clinics {
    width: 100vw;
    border-radius: 24px;
    padding: 40px 16px 40px 16px;
    background: #F2F5FD;
    margin: 40px -16px 0 -16px;
  }

  .doctor-preview__clinics-title {
    margin-bottom: 16px;
  }

  .doctor-preview__clinics-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .doctor-preview__clinics-card {
    width: 100%;
    gap: 0;
    padding: 12px;
    min-height: 94px;
    background: #FFF;
  }

  .doctor-preview__clinics-card-link {
    display: none;
  }

  .doctor-preview__clinics-card-link._mob {
    display: block;
    margin-top: 8px;
  }

  .doctor-preview__clinics-card-title {
    margin-bottom: 10px;
  }

  .doctor-preview__clinics-card-stations {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }

  .doctor-preview__clinics-card-address {
    margin-bottom: 10px;
  }

  .doctor-preview__title {
    margin: 0 0 12px 0;
    order: -1;
  }

  .doctor-preview__regalia {
    margin-bottom: 12px;
  }

  .doctor-preview__benefits {
    flex-wrap: nowrap;
    margin-top: 24px;
    gap: 16px;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .doctor-preview__price-buttons {
    display: none;
  }

  .doctor-preview__more-btn {
    display: flex;
  }

  .doctor-preview__revers-mob {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  .doctor-preview__slider .swiper-slide {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .doctor-preview__slider .swiper-slide {
    height: 172px;
  }
}

.doctor-reviews {
  position: relative;
  padding: 0 0 60px;
  background: #F2F5FD;
}

.doctor-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.doctor-reviews__slider-nav {
  display: flex;
  align-items: center;
}

.doctor-reviews__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF7F32;
  background: #F5F7FA;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.doctor-reviews__slider-nav-btn.swiper-button-lock {
  display: none;
}

.doctor-reviews__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}

.doctor-reviews__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}

.doctor-reviews__slider-nav-link {
  font-weight: 500;
  color: #FF7F32;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .doctor-reviews__slider-nav-link:hover {
    color: #6EA55A;
  }
}

.doctor-reviews__more-btn .doctor-more-button-item {
  display: none;
  margin-top: 16px;
  background: #fff;
}

@media (max-width: 1024px) {
  .doctor-reviews__slider-nav-btn {
    display: none;
  }

  .doctor-reviews__slider .swiper-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .doctor-reviews__slider .common-review-card {
    max-width: 100%;
  }

  .doctor-reviews__slider .common-review-card:nth-child(n+4) {
    display: none;
  }

  .doctor-reviews__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .doctor-reviews__more-btn .doctor-more-button-item {
    display: inline-flex;
  }
}

.doctor-profile {
  padding: 60px 0 60px;
  background: #F2F5FD;
}

.doctor-profile__title {
  margin-bottom: 24px;
}

.doctor-profile__grid {
  display: grid;
  grid-template-columns: 416px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.doctor-profile__menu {
  position: sticky;
  top: 140px;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

.doctor-profile__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doctor-profile__content-card {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
}

.doctor-profile__content-wrap {
  display: flex;
  flex-direction: column;
}

.doctor-profile__content-wrap ul,
.doctor-profile__content-wrap ol {
  list-style: disc;
  padding-left: 24px;
  line-height: 26px;
}

.doctor-profile__content-wrap ol {
  list-style: decimal;
}

.doctor-profile__content-anchor {
  position: absolute;
  top: -210px;
}

.doctor-profile__content-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.doctor-profile__content-title svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.doctor-profile__content-video {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 358px;
  max-height: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.doctor-profile__content-video-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-profile__content-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.doctor-profile__content-stage {
  display: flex;
  gap: 8px;
  padding-left: 4px;
}

.doctor-profile__content-stage:not(:last-child) {
  margin-bottom: 4px;
}

.doctor-profile__content-stage-ruler {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.doctor-profile__content-stage-ruler svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #CFCFD1;
}

.doctor-profile__content-stage-ruler::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #CFCFD1;
}

.doctor-profile__content-stage-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.doctor-profile__content-stage:not(:last-child) .doctor-profile__content-stage-info {
  padding-bottom: 32px;
}

.doctor-profile__content-stage-year {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #FF7F32;
}

.doctor-profile__content-stage-footer {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #142C36;
}

.doctor-profile__content-more-btn {
  display: none;
  margin-top: 16px;
}

.doctor-profile__menu-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style-type: none;
  counter-reset: counter-nav 0;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.doctor-profile__menu-nav-list::-webkit-scrollbar {
  width: 0;
  -webkit-appearance: none;
  background: transparent;
}

.doctor-profile__menu-nav-list::-webkit-scrollbar-track {
  background: transparent;
}

.doctor-profile__menu-nav-list::-webkit-scrollbar-thumb {
  background: transparent;
}

.doctor-profile__menu-nav-item {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  counter-increment: counter-nav 1;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 40px;
  padding: 10px 20px;
  transition: border 350ms ease-in-out;
}

.doctor-profile__menu-nav-item::before {
  content: counter(counter-nav);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #D9E1F6;
  transition: color 350ms ease-in-out;
  pointer-events: none;
}

.doctor-profile__menu-nav-item_active {
  border-color: #142C36;
}

.doctor-profile__menu-nav-item_active::before {
  color: #142C36;
}

@media (hover: hover) {
  .doctor-profile__menu-nav-item:hover {
    border-color: #142C36;
  }

  .doctor-profile__menu-nav-item:hover::before {
    color: #142C36;
  }
}

.doctor-profile__menu-nav-link {
  line-height: 26px;
}

.doctor-profile__certificate {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.doctor-profile__certificate:not(:last-child) {
  margin-bottom: 16px;
}

.doctor-profile__certificate-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #142C36;
}

.doctor-profile__certificate-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #142C36;
}

.doctor-profile__languages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
}

.doctor-profile__languages-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.doctor-profile__languages-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #142C36;
}

.doctor-profile__languages-level {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.doctor-profile__slider {
  width: 100%;
}

.doctor-profile__half {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .doctor-profile {
    width: 100%;
  }

  .doctor-profile__grid {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .doctor-profile__menu {
    position: static;
    width: 100%;
    background: transparent;
    padding: 0;
  }

  .doctor-profile__menu-nav {
    width: 100%;
  }

  .doctor-profile__menu-nav-list {
    flex-direction: row;
    gap: unset;
  }

  .doctor-profile__menu-nav-item {
    display: inline-flex;
    width: auto;
    flex-shrink: 0;
    padding: 5px 12px;
    gap: 6px;
    border-color: #142C36;
  }

  .doctor-profile__menu-nav-item::before {
    content: counter(counter-nav) ".";
    font-weight: 500;
    transition: unset;
    color: #142C36;
  }

  .doctor-profile__menu-nav-item.swiper-slide-thumb-active {
    background: #142C36;
  }

  .doctor-profile__menu-nav-item.swiper-slide-thumb-active .doctor-profile__menu-nav-link {
    color: #fff;
  }

  .doctor-profile__menu-nav-item.swiper-slide-thumb-active::before {
    color: #fff;
  }

  .doctor-profile__menu-nav-link {
    font-weight: 500;
    pointer-events: none;
  }

  .doctor-profile__content {
    flex-direction: row;
    gap: unset;
  }

  .doctor-profile__content-card {
    padding: 16px;
  }

  .doctor-profile__content-card_video {
    background: transparent;
    padding: 0;
  }

  .doctor-profile__content-card_video .doctor-profile__content-title {
    display: none;
  }

  .doctor-profile__content-card-wrap .doctor-profile__content-cropped {
    -webkit-line-clamp: 7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(#fff 50%, transparent);
            mask-image: linear-gradient(#fff 50%, transparent);
  }

  .doctor-profile__content-card-wrap .doctor-profile__content-cropped._expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
    -webkit-mask-image: none;
            mask-image: none;
  }

  .doctor-profile__content-more-btn {
    display: block;
  }

  .doctor-profile__slider-pagination {
    position: static;
    bottom: 0 !important;
  }

  .doctor-profile__languages {
    grid-template-columns: 1fr;
  }

  .doctor-profile__half {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 767px) {
  .doctor-profile {
    margin-top: 40px;
  }
}

.doctor-showcase {
  position: relative;
  padding: 60px 0 9px 0;
}

.doctor-showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.doctor-showcase__slider-nav {
  display: flex;
  align-items: center;
}

.doctor-showcase__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF7F32;
  background: #F5F7FA;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.doctor-showcase__slider-nav-btn.swiper-button-lock {
  display: none;
}

.doctor-showcase__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}

.doctor-showcase__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}

.doctor-showcase__slider-nav-link {
  font-weight: 500;
  color: #FF7F32;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .doctor-showcase__slider-nav-link:hover {
    color: #6EA55A;
  }
}

@media (max-width: 1024px) {
  .doctor-showcase {
    padding: 40px 0 24px;
  }

  .doctor-showcase__slider-nav-btn {
    display: none;
  }

  .doctor-showcase__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .doctor-showcase .doctor-slider-pagination {
    bottom: 0 !important;
  }
}

.doctor-videos {
  position: relative;
  padding: 40px 0 40px 0;
}

.doctor-videos__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.doctor-videos__slider-nav {
  display: flex;
  align-items: center;
}

.doctor-videos__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF7F32;
  background: #F5F7FA;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.doctor-videos__slider-nav-btn.swiper-button-lock {
  display: none;
}

.doctor-videos__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}

.doctor-videos__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}

.doctor-videos__slider-nav-link {
  font-weight: 500;
  color: #FF7F32;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .doctor-videos__slider-nav-link:hover {
    color: #6EA55A;
  }
}

.doctor-videos__card {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 416px;
}

.doctor-videos__card-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
}

.doctor-videos__card-poster {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  transition: filter 350ms ease-in-out;
  filter: brightness(0.6);
}

.doctor-videos__card-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
  margin-top: 10px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 350ms ease-in-out;
}

.doctor-videos__card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  z-index: 1;
}

@media (hover: hover) {
  .doctor-videos__card:hover .doctor-videos__card-poster {
    filter: brightness(1);
  }
}

@media (max-width: 1024px) {
  .doctor-videos__card {
    max-width: 330px;
  }
}

@media (max-width: 1024px) {
  .doctor-videos {
    padding: 0 0 64px 0;
  }

  .doctor-videos__slider-nav-btn {
    display: none;
  }

  .doctor-videos__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
}

.doctor-overview {
  background: #F2F5FD;
  padding-bottom: 60px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.doctor-overview__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .doctor-overview__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.doctor-overview__title:has(.doctor-overview__dropdown-block) .doctor-overview__dropdown {
  cursor: pointer;
}

.doctor-overview__title:has(.doctor-overview__dropdown-block) .doctor-overview__dropdown:before {
  content: "\203A";
  position: absolute;
  width: 24px;
  height: 24px;
  right: -30px;
  top: 50%;
  display: inline-block;
  font-size: 40px;
  font-weight: 300;
  color: #FF7F32;
  transform-origin: center;
  transform: rotate(90deg) translateY(-50%);
  transition: all 350ms;
}

.doctor-overview__prices-card {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 24px;
  background: #fff;
}

.doctor-overview__prices-card:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.doctor-overview__prices-card:nth-last-child(-n+2) {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.doctor-overview__prices-card:not(:last-child) {
  border-bottom: 1px solid #EDF0F8;
}

.doctor-overview__prices-card:nth-child(n+6) {
  display: none;
}

.doctor-overview__prices-card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #142C36;
  max-width: 850px;
}

.doctor-overview__prices-card-value {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
}

.doctor-overview__prices-card-discount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.doctor-overview__prices-card-discount svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.doctor-overview__prices-card-discount span {
  color: #FF7F32;
}

.doctor-overview__prices-card-total_crossed {
  text-decoration: line-through;
}

.doctor-overview__prices-card-record {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  overflow: hidden;
  width: 0;
  opacity: 0;
  padding: 0;
  transition: all 350ms;
}

@media screen and (max-width: 1024px) {
  .doctor-overview__prices-card-record {
    width: 46px;
    opacity: 1;
  }
}

@media (hover: hover) {
  .doctor-overview__prices-card-record:hover .doctor-overview__prices-card-icon {
    stroke: #FF7F32;
  }
}

.doctor-overview__prices-card-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  stroke: #fff;
  transition: all 350ms;
}

.doctor-overview__prices-card-help {
  position: relative;
  cursor: pointer;
}

.doctor-overview__prices-card-help:hover .doctor-overview__prices-card-tooltip {
  opacity: 1;
  pointer-events: auto;
}

.doctor-overview__prices-card-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #F2F5FD;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-width: 200px;
}

@media (hover: hover) {
  .doctor-overview__prices-card:hover .doctor-overview__prices-card-record {
    width: 46px;
    opacity: 1;
  }
}

.doctor-overview__prices-more-btn {
  margin-top: 8px;
}

.doctor-overview__prices-more-btn .doctor-more-button-item {
  background: #fff;
  transition: color 350ms ease-in-out, background 350ms ease-in-out;
}

@media (hover: hover) {
  .doctor-overview__prices-more-btn .doctor-more-button-item:hover {
    color: #fff;
    background: #FF7F32;
  }
}

.doctor-overview__prices-content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 350ms;
}

.doctor-overview__prices-content._active {
  visibility: visible;
  height: auto;
  opacity: 1;
}

.doctor-overview__faq {
  padding-top: 40px;
}

.doctor-overview__faq-title {
  margin-bottom: 24px;
}

.doctor-overview__faq-accordion {
  gap: 8px;
}

.doctor-overview__faq-accordion-header {
  padding: 24px;
}

.doctor-overview__faq-accordion-header::after {
  width: 46px;
  height: 46px;
  background-image: url(/images/refactor/doctor/doctor-accordion-arrow-down.svg);
  background-size: 44% 44%;
  background-color: #F2F5FD;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  flex-shrink: 0;
  transition: background 100ms ease-in-out;
}

.doctor-overview__faq-accordion-item {
  border-radius: 16px;
  background: #fff;
}

.doctor-overview__faq-accordion-item.accordion__item_active .accordion__header::after {
  background-image: url(/images/refactor/doctor/doctor-accordion-arrow-up.svg);
  background-color: #FF7F32;
}

.doctor-overview__faq-accordion-content {
  padding: 0 24px 24px 24px;
}

.doctor-overview__diseases {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

.doctor-overview__diseases-title {
  margin-bottom: 24px;
}

.doctor-overview__diseases-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doctor-overview__diseases-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #142C36;
  background: #fff;
  border-radius: 32px;
  transition: all 350ms;
}

.doctor-overview__diseases-tag_show_more {
  color: #9999A4;
}

@media (hover: hover) {
  .doctor-overview__diseases-tag:hover {
    color: #FF7F32;
  }
}

.doctor-overview__dropdown {
  position: relative;
  display: flex;
  align-items: center;
  color: #FF7F32;
  padding-left: 10px;
}

.doctor-overview__dropdown-block {
  position: absolute;
  top: 110%;
  right: -20px;
  display: none;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 16px;
  background: #fff;
  padding: 32px;
  border-radius: 0 0 32px 32px;
  border: 1px solid #EDF0F8;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1);
  z-index: 10;
  transition: all 350ms;
}

.doctor-overview__dropdown-block._active {
  display: grid;
  transform-origin: top;
  animation: dropdown 0.2s ease-out;
}

.doctor-overview__dropdown-block-item {
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 767px) {
  .doctor-overview__dropdown-block-item {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .doctor-overview__dropdown-block {
    max-width: none;
    right: 0;
    padding: 24px;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .doctor-overview__dropdown {
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .doctor-overview__prices-card {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 24px;
  }

  .doctor-overview__prices-card-value {
    margin-left: unset;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    gap: 4px;
  }

  .doctor-overview__prices-card-discount {
    flex-direction: row-reverse;
    width: 100%;
    justify-content: flex-end;
  }

  .doctor-overview__prices-card-discount svg {
    margin-left: auto;
  }

  .doctor-overview__prices-card-total_crossed {
    flex-shrink: 0;
  }

  .doctor-overview__diseases-tag:nth-child(n+6):not(.doctor-overview__diseases-tag_show_more) {
    display: none;
  }
}

.doctor-overview .doctor-overview__diseases-content {
  display: none;
}

.doctor-overview .doctor-overview__diseases-content._active {
  display: block;
}

.doctor-slider-pagination {
  display: none;
  bottom: 32px !important;
  line-height: 1;
}

@media (max-width: 1024px) {
  .doctor-slider-pagination {
    display: block;
  }

  .doctor-slider-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #FFE4CA;
    opacity: 1;
    margin: 0 9px;
  }

  .doctor-slider-pagination .swiper-pagination-bullet-active {
    background: #FF7F32;
  }
}

.doctor-more-button {
  position: relative;
}

.doctor-more-button-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  background: #F2F5FD;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  border-radius: 12px;
  padding: 11px 16px;
  width: 100%;
  color: #FF7F32;
}

.doctor-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F2F6FE;
  color: #FF7F32;
  border-color: transparent;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 10px 20px;
  font-size: 14px;
  min-height: 44px;
  line-height: 18px;
  border-radius: 40px;
}

.doctor-booking-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-bottom: 16px;
}

.doctor-booking-panel__button.primary-button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  min-height: 44px;
}

