@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;
}

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

.icon-el {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  margin: 0 -24px;
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .icon-el {
    margin-bottom: 0;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .icon-el {
    display: none;
    position: static;
    margin: 0;
    border: none;
    margin-top: 30px;
  }
}

.icon-el__item {
  text-align: center;
  color: #142c36;
  min-width: 108px;
  width: 100%;
  min-height: 127px;
  border-right: 1px solid #ffffff;
  padding: 24px 11px 16px;
  transition: color 0.3s;
}

.icon-el__item:focus {
  outline: none;
}

.icon-el__item:last-of-type {
  border-right: none;
}

.icon-el__item .i-lk,
.icon-el__item .i-action,
.icon-el__item .i-timetable {
  fill: #ff7f32;
  transition: fill 0.3s;
}

.icon-el__item .i-lk {
  width: 22px;
  height: 26px;
}

@media (min-width: 768px) {
  .icon-el__item {
    min-height: 71px;
    padding: 20px 11px 16px;
  }
}

@media (min-width: 1024px) {
  .icon-el__item {
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    min-width: auto;
    width: 100%;
    min-height: auto;
    margin-bottom: 0.25rem;
  }

  .icon-el__item .i-lk,
  .icon-el__item .i-action,
  .icon-el__item .i-timetable {
    fill: #ff7f32;
    width: 16px;
    height: 17px;
  }
}

.icon-el__item:hover {
  color: #F50016;
}

.icon-el__item:hover .i-lk,
.icon-el__item:hover .i-action,
.icon-el__item:hover .i-timetable {
  fill: #F50016;
}

.icon-el__icon {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .icon-el__icon {
    margin-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .icon-el__icon {
    margin-right: 10px;
    height: 20px;
  }
}

.icon-el__icon svg {
  display: block;
}

@media (min-width: 768px) {
  .icon-el__title {
    display: inline-block;
  }
}

.icon-el--row {
  display: block;
  margin: 0;
  width: 100%;
  margin-bottom: 8px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .icon-el--row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .icon-el--row {
    margin-bottom: 48px;
  }
}

.icon-el--row .icon-el__item {
  padding: 0;
  width: 100%;
  min-height: auto;
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .icon-el--row .icon-el__item {
    display: block;
    text-align: left;
    max-width: 25%;
    flex-shrink: 1;
    margin-right: 36px;
    margin-bottom: 0;
  }

  .icon-el--row .icon-el__item:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .icon-el--row .icon-el__item {
    display: flex;
    margin-right: 20px;
  }
}

.icon-el--row .icon-el__item:hover {
  color: #142c36;
}

.icon-el--row .icon-el__item.number .icon-el__icon {
  width: auto;
  height: auto;
}

@media (min-width: 1280px) {
  .icon-el--row .icon-el__item.number .icon-el__icon {
    margin-right: 16px;
  }
}

.icon-el--row .icon-el__icon {
  margin-right: 18px;
  margin-bottom: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #F50016;
  font-weight: 400;
  width: 38px;
  height: 52px;
}

@media (min-width: 768px) {
  .icon-el--row .icon-el__icon {
    margin-right: 0;
    margin-bottom: 9px;
    font-size: 48px;
    line-height: 52px;
  }
}

@media (min-width: 1280px) {
  .icon-el--row .icon-el__icon {
    margin-right: 30px;
    margin-bottom: 0;
  }
}

.icon-el--row .icon-el__title {
  text-align: left;
  font-weight: 300;
  line-height: 26px;
}

@media (min-width: 768px) {
  .icon-el--row .icon-el__title {
    display: block;
  }
}

.icon-el--row .icon-el__title .link-text {
  color: #142c36;
  display: inline;
}

.icon-el--corporate {
  margin: 10px 0 24px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .icon-el--corporate {
    display: flex;
    flex-wrap: wrap;
    margin: 12px -24px -8px 0;
    width: calc(100% + 24px);
  }
}

@media (min-width: 1280px) {
  .icon-el--corporate {
    justify-content: space-between;
    margin: 0 0 32px;
  }
}

.icon-el--corporate .icon-el__item {
  align-items: flex-start;
  margin: 0 0 24px 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .icon-el--corporate .icon-el__item {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 24px);
    max-width: calc(50% - 24px);
    margin: 0 24px 52px 0;
  }
}

@media (min-width: 1280px) {
  .icon-el--corporate .icon-el__item {
    max-width: calc(50% - 20px);
    margin: 0 20px 24px 0;
  }
}

@media (min-width: 768px) {
  .icon-el--corporate .icon-el__icon {
    margin-right: 24px;
  }
}

.icon-el--quality {
  margin: 24px 0 40px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .icon-el--quality {
    display: block;
    margin: 32px 0 40px;
  }
}

@media (min-width: 1280px) {
  .icon-el--quality {
    margin: 46px 0;
  }
}

.icon-el--quality .icon-el__item {
  display: block;
  text-align: left;
  margin: 0 0 24px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .icon-el--quality .icon-el__item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin: 0 0 8px;
  }
}

@media (min-width: 1280px) {
  .icon-el--quality .icon-el__item {
    flex-shrink: 0;
    max-width: calc(33.3% - 120px);
    width: auto;
    margin-right: 129px;
  }
}

.icon-el--quality .icon-el__title {
  font-weight: 500;
}

.icon-el--quality .icon-el__title p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
}

.icon-el--quality .icon-el__icon {
  width: 38px;
  height: 52px;
  margin: 0 0 16px;
}

.icon-el--quality .icon-el__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .icon-el--quality .icon-el__icon {
    margin: 0 24px 0 0;
  }
}

@media (min-width: 1280px) {
  .icon-el--quality .icon-el__icon {
    margin: 0 0 24px;
  }
}

.icon-el--insurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
  max-height: none;
  margin-bottom: 42px;
}

@media (max-width: 1279px) {
  .icon-el--insurance {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 16px;
  }
}

.icon-el--insurance .icon-el__item {
  width: calc((100% - 54px) / 3);
  max-width: none;
  height: auto;
  max-height: none;
  margin-bottom: 40px;
  align-items: flex-start;
}

@media (max-width: 1279px) {
  .icon-el--insurance .icon-el__item {
    display: flex;
    width: calc((100% - 24px) / 2);
    padding: 0;
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .icon-el--insurance .icon-el__item {
    display: flex;
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
    min-height: 0;
  }
}

.icon-el--insurance .icon-el__icon {
  height: 52px;
  margin-bottom: 0;
  margin-right: 24px;
}

@media (max-width: 1279px) {
  .icon-el--insurance .icon-el__icon {
    width: 30px;
    height: 41px;
    margin-right: 16px;
  }

  .icon-el--insurance .icon-el__icon svg {
    width: 100%;
    height: 100%;
  }
}

.icon-el--insurance .icon-el__title {
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

.links__btn {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 16px 0;
  width: 100%;
}

@media (min-width: 768px) {
  .links__btn {
    max-width: 768px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .links__btn {
    width: auto;
    border: none;
    cursor: default;
    margin: 0 0 14px 0;
    padding: 0;
  }

  .links__btn .i-arrow {
    display: none;
  }
}

.links__item {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #6b6b6b;
  padding: 4px 0;
}

.links__item a {
  color: inherit;
  transition: all 0.3s;
}

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

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

.links__item:last-child {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .links__title {
    max-width: 100%;
    position: static;
    margin: 0;
    border: none;
  }
}

.links__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@media (min-width: 1024px) {
  .links__list {
    display: block;
  }
}

.section {
  margin-bottom: 4rem;
}

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

@media (min-width: 768px) {
  .section.info h3,
  .section.info .spoiler-text {
    display: block;
  }
}

.section.gray {
  background: #e8eaee;
  width: 100vw;
  margin-left: -24px;
  margin-right: -24px;
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .section.gray {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .section.gray {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .section.gray {
    max-width: 1280px;
  }
}

.section.alphabet,
.section.other-diagnostics {
  background: #e8eaee;
  width: 100vw;
  margin-left: -24px;
  margin-right: -24px;
  padding: 56px 24px 32px;
}

@media (min-width: 768px) {
  .section.alphabet,
  .section.other-diagnostics {
    margin-left: calc((100vw - 100%) / -2);
    padding-left: calc((100vw - 100%) / 2);
  }
}

.section.alphabet .spoiler-box__btn-show,
.section.other-diagnostics .spoiler-box__btn-show {
  margin-top: 24px;
}

.section.logo-wrapper {
  margin-bottom: 40px;
}

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

@media (min-width: 1280px) {
  .section.logo-wrapper .logo-wrapper-content {
    margin: 0 -19px -24px 0;
  }
}

.section--spoiler.gray {
  padding: 0px 24px 0;
}

@media (min-width: 1280px) {
  .section--lk {
    margin-top: 144px;
  }
}

.section--lk h2,
.section--lk p {
  z-index: 1;
  position: relative;
}

@media (min-width: 1280px) {
  .section--map-scheme .section {
    margin-bottom: 4rem;
  }
}

.section--map-scheme .section__left {
  display: none;
}

@media (min-width: 768px) {
  .section--map-scheme .section__left {
    display: block;
    width: calc(50% - 12px);
    margin-bottom: 60px;
  }
}

@media (min-width: 1280px) {
  .section--map-scheme .section__left {
    width: 813px;
  }
}

.section--map-scheme .section__left.opened .section__content {
  max-height: 4000px;
  overflow: visible;
  transition: max-height 0.5s;
}

.section--map-scheme .section__left.opened .btn-spoiler .open {
  display: none;
}

.section--map-scheme .section__left.opened .btn-spoiler .close {
  display: inline-block;
}

.section--map-scheme .section__left.opened .btn-spoiler .i-arrow {
  transform: rotate(180deg);
}

.section--map-scheme .section__left .btn-spoiler .i-arrow {
  fill: #6b6b6b;
}

.section--map-scheme .section__left .btn-spoiler .close {
  display: none;
}

@media (min-width: 1280px) {
  .section--map-scheme .section__left .btn-spoiler:hover .i-arrow {
    fill: #F50016;
  }
}

@media (min-width: 768px) {
  .section--map-scheme .section__row {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .section--map-scheme .section__row h2 {
    display: none;
  }
}

.section--map-scheme .section__content {
  max-height: 260px;
  overflow: hidden;
  margin-bottom: 48px;
}

@media (min-width: 1280px) {
  .section--map-scheme .section__content {
    max-height: 146px;
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .section__row--box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .section__row--box {
    margin-bottom: 12px;
  }
}

.section__row--box .spoiler-box {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section__row--box .spoiler-box {
    width: 442px;
    margin-left: 24px;
  }
}

@media (min-width: 1024px) {
  .section__row--box .spoiler-box {
    width: 813px;
  }
}

.section__row--box .action-block--small {
  order: -1;
}

@media (min-width: 768px) {
  .section__row--box .action-block--small {
    width: 255px;
  }
}

@media (min-width: 1024px) {
  .section__row--box .action-block--small {
    width: 395px;
  }
}

@media (min-width: 768px) {
  .section--text .section__row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
  }
}

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

.section--text .section__row .spoiler-box {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section--text .section__row .spoiler-box {
    width: 442px;
    margin-left: 24px;
  }
}

@media (min-width: 1024px) {
  .section--text .section__row .spoiler-box {
    width: 813px;
  }
}

.section--text .section__row .action-block--small {
  order: -1;
}

@media (min-width: 768px) {
  .section--text .section__row .action-block--small {
    width: 255px;
  }
}

@media (min-width: 1024px) {
  .section--text .section__row .action-block--small {
    width: 395px;
  }
}

.section--action-right {
  margin-top: 40px;
}

@media (min-width: 1280px) {
  .section--action-right .section__row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.section--action-right .section__left {
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .section--action-right .section__left {
    width: 813px;
    flex-shrink: 0;
    margin-right: 24px;
    margin-bottom: 0;
  }
}

.section--action-right .section__right {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 1280px) {
  .section--action-right .section__right {
    width: 394px;
    display: block;
  }
}

.section--action-right .section__right .action-block {
  width: 100%;
  margin-top: 0;
}

@media (min-width: 1280px) {
  .section--diagnose-price .section__right {
    margin-top: 57px;
  }
}

.section--price {
  margin-top: 40px;
}

@media (min-width: 1280px) {
  .section--price .section__row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (min-width: 1280px) {
  .section--price .section__row.many-tables .section__right {
    margin-top: 57px;
  }
}

.section--price .section__left {
  margin-bottom: 64px;
}

@media (min-width: 1280px) {
  .section--price .section__left {
    width: 813px;
    flex-shrink: 0;
    margin-right: 24px;
    margin-bottom: 0;
  }
}

.section--price .section__right {
  margin: 0 -24px;
  position: relative;
  background: #e8eaee;
  padding: 24px 24px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section--price .section__right {
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .section--price .section__right {
    margin-top: 0;
    width: 394px;
  }
}

@media (min-width: 1280px) {
  .section--price .section__right .spoiler-wrapper .spoiler-text__header .h4 {
    font-size: 16px;
    line-height: 26px;
  }
}

.section--price .section__right .spoiler-wrapper .marker-list {
  margin: 16px 0;
}

.section--price .section__right::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  transform: rotate(-224deg);
  border: 18px solid transparent;
  border-bottom: 18px solid #7f7e7e;
}

@media (min-width: 1280px) {
  .section--price .section__right--illness {
    margin-top: 86px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .section--price .section__right--illness {
    padding: 12px 24px;
  }
}

.section--price .section__right--illness::after {
  content: none;
}

.section--price .section__right--illness:first-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .section--price .section__right--services {
    padding: 12px 24px;
  }
}

.section--price .section__right--services::after {
  content: none;
}

.section__illness--price {
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .section__illness--price .table-wrapper__item .spoiler-box__btn-show {
    margin-top: 16px;
  }
}

.section.analyzes-page {
  margin-top: 12px;
}

@media (min-width: 1024px) {
  .section.analyzes-page {
    margin-top: 48px;
  }
}

@media (min-width: 1024px) {
  .section.analyzes-page .section__row {
    display: flex;
    align-items: flex-start;
  }
}

.section.analyzes-page .section__left {
  flex-shrink: 0;
}

@media (min-width: 1280px) {
  .section.analyzes-page .section__right {
    margin: -10px -30px -40px;
    width: 873px;
  }
}

@media (min-width: 1280px) {
  .section.analyzes-page .pagination-nav {
    margin-left: 30px;
    margin-top: 37px;
  }
}

.section.analyzes-page .h2 {
  color: #817f7f;
  font-size: 50px;
  font-weight: 700;
  line-height: 3.825rem;
}

@media (max-width: 767px) {
  .section.analyzes-page .h2 {
    font-size: 30px;
  }
}

@media (min-width: 1280px) {
  .section.analyzes-page .h2 {
    margin-left: 30px;
  }
}

@media (min-width: 1280px) {
  .section.analyzes-page .test-card {
    margin: 0 auto;
  }

  .section.analyzes-page .test-card__item {
    max-width: 813px;
    margin: 0 auto;
  }

  .section.analyzes-page .test-card__item:first-child {
    margin-top: 15px;
  }

  .section.analyzes-page .test-card__item:last-child {
    margin-bottom: 40px;
  }
}

@media (min-width: 1280px) {
  .section--form {
    margin-top: -50px;
  }
}

.section--form .section__row {
  display: block;
}

@media (min-width: 1024px) {
  .section--form .section__row {
    display: flex;
    justify-content: space-between;
  }
}

.section__buttons {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .section__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section__buttons .btn {
  margin-right: 24px;
}

@media (max-width: 767px) {
  .section__buttons .btn {
    margin-right: 0;
  }

  .section__buttons .btn:not(:first-child) {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .section__buttons--diagnose {
    flex-direction: column;
    align-items: flex-start;
  }

  .section__buttons--diagnose .btn {
    margin-right: 0;
  }

  .section__buttons--diagnose .btn:first-child {
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .section__text p {
    max-width: calc((100% - 48px) / 3 * 2 + 24px);
  }
}

.section.service-additional {
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .section.service-additional {
    margin-bottom: 2.5rem;
  }
}

.section.service-options .section__buttons {
  margin-top: 32px;
}

.section-slider {
  padding: 24px 24px;
  max-width: 100vw;
  left: 50%;
  position: relative;
  right: 50%;
  width: auto;
  margin: 0 -50vw;
}

@media (min-width: 768px) {
  .section-slider {
    padding: 2px 24px 0;
  }
}

@media (min-width: 1280px) {
  .section-slider {
    padding: 56px 24px 32px;
  }
}

.section-slider__wrapper {
  width: calc(100vw - 48px);
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .section-slider__wrapper {
    width: 976px;
  }
}

@media (min-width: 1280px) {
  .section-slider__wrapper {
    width: 1232px;
  }
}

.section-slider p {
  margin-bottom: 16px;
  max-width: 816px;
}

@media (min-width: 768px) {
  .section-slider p {
    padding-right: 213px;
  }
}

@media (min-width: 1280px) {
  .section-slider p {
    padding-right: 0;
  }
}

.section-blue {
  background: #edf0f8;
  padding: 27px 24px 32px 24px;
  max-width: 100vw;
  left: 50%;
  position: relative;
  right: 50%;
  width: auto;
  margin: 0 -50vw 34px;
}

.section-blue .page-content h3,
.section-blue .page-content .h3 {
  margin-bottom: 16px;
}

.section-blue.section {
  margin: 0 -50vw 64px;
  padding: 53px 24px 63px 24px;
}

@media (min-width: 1280px) {
  .section-blue.section {
    padding: 65px 24px 81px 24px;
    margin: 0 -50vw 80px;
  }

  .section-blue.section h2,
  .section-blue.section .h2 {
    margin-bottom: 32px;
  }
}

.section-blue.contained,
.section-blue.full-width {
  left: 0;
  right: 0;
  margin: 0 0 56px;
  padding: 24px 24px 64px;
  z-index: 5;
}

@media (max-width: 1024px) {
  .section-blue.contained,
  .section-blue.full-width {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .section-blue.contained,
  .section-blue.full-width {
    margin-bottom: 32px;
    padding-bottom: 40px;
  }
}

.section-blue.contained .section-blue__text,
.section-blue.full-width .section-blue__text {
  margin: 24px 0 0;
}

.section-blue.contained .section-blue__buttons,
.section-blue.full-width .section-blue__buttons {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767px) {
  .section-blue.contained .section-blue__buttons,
  .section-blue.full-width .section-blue__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-blue.contained .section-blue__buttons .btn,
.section-blue.full-width .section-blue__buttons .btn {
  margin-right: 24px;
}

@media (max-width: 767px) {
  .section-blue.contained .section-blue__buttons .btn,
  .section-blue.full-width .section-blue__buttons .btn {
    margin-right: 0;
  }

  .section-blue.contained .section-blue__buttons .btn:not(:first-child),
  .section-blue.full-width .section-blue__buttons .btn:not(:first-child) {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .section-blue.contained .section-blue__buttons .btn:not(:first-child),
  .section-blue.full-width .section-blue__buttons .btn:not(:first-child) {
    margin-top: 24px;
  }
}

.section-blue.contained .section-blue__buttons .btn.btn-blue,
.section-blue.full-width .section-blue__buttons .btn.btn-blue {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 767px) {
  .section-blue.contained .section-blue__buttons .btn.btn-blue,
  .section-blue.full-width .section-blue__buttons .btn.btn-blue {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.section-blue.contained .section-blue__buttons-inner,
.section-blue.full-width .section-blue__buttons-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .section-blue.contained .section-blue__buttons-inner,
  .section-blue.full-width .section-blue__buttons-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .section-blue.contained .section-blue__buttons--diagnose,
  .section-blue.full-width .section-blue__buttons--diagnose {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-blue.contained .section-blue__buttons--diagnose .btn,
  .section-blue.full-width .section-blue__buttons--diagnose .btn {
    margin-right: 0;
  }

  .section-blue.contained .section-blue__buttons--diagnose .btn:first-child,
  .section-blue.full-width .section-blue__buttons--diagnose .btn:first-child {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .section-blue.contained .section-blue__buttons--diagnose .btn:first-child,
  .section-blue.full-width .section-blue__buttons--diagnose .btn:first-child {
    margin-bottom: 0;
  }
}

.section-blue.contained .section-blue__buttons--with-slider .section-blue__buttons-inner,
.section-blue.full-width .section-blue__buttons--with-slider .section-blue__buttons-inner {
  width: 100%;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .section-blue.contained .section-blue__buttons--with-slider .section-blue__buttons-inner,
  .section-blue.full-width .section-blue__buttons--with-slider .section-blue__buttons-inner {
    margin: 0;
  }
}

.section-blue.contained .section-blue__buttons--with-slider .section-blue__buttons-inner .btn.btn-blue,
.section-blue.full-width .section-blue__buttons--with-slider .section-blue__buttons-inner .btn.btn-blue {
  padding-left: 24px;
  padding-right: 24px;
}

.section-blue.full-width {
  margin-top: -24px;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  padding: 24px calc((100vw - 100%) / 2) 42px;
}

@media (min-width: 768px) {
  .section-blue.full-width {
    padding: 24px calc((100vw - 100%) / 2) 64px;
  }
}

@media (min-width: 1280px) {
  .section-blue.full-width {
    padding: 40px calc((100vw - 100%) / 2) 64px;
    margin-top: -32px;
  }
}

.section-blue.contained {
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .section-blue {
    padding: 32px 24px 24px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .section-blue {
    padding: 55px 24px 47px;
  }
}

@media (min-width: 1280px) {
  .section-blue {
    padding: 41px 24px 47px;
    margin-bottom: 55px;
  }
}

@media (max-width: 1279px) {
  .section-blue br {
    display: none;
  }
}

@media (min-width: 768px) {
  .section-blue__bottom {
    text-align: right;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .section-blue__bottom {
    padding-left: 320px;
    text-align: left;
    margin-bottom: 45px;
  }
}

@media (min-width: 1280px) {
  .section-blue__bottom {
    padding-left: 407px;
  }
}

.section-blue__text {
  font-family: "Montserrat", Arial, sans-serif;
  margin-top: -8px;
}

.section-blue__text.h2 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
}

@media (min-width: 768px) {
  .section-blue__text.h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (min-width: 1024px) {
  .section-blue__text.h2 {
    max-width: 813px;
  }
}

.section-blue__text.h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-blue__text.h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

.section-blue__text--illness {
  margin-top: 0;
}

.section-blue p {
  max-width: 813px;
}

.section-blue__bg {
  opacity: 0.1;
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1280px) {
  .section-blue__bg {
    max-width: 1232px;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-blue__bg::after,
  .section-blue__bg::before {
    content: "";
    display: block;
    width: 320px;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .section-blue__bg::after {
    right: 0;
    background: linear-gradient(90deg, rgba(231, 239, 247, 0) 0%, #E7EFF7 57.5%);
  }

  .section-blue__bg::before {
    left: 0;
    background: linear-gradient(90deg, #E7EFF7 0%, rgba(231, 239, 247, 0) 57.5%);
  }
}

.section-blue__wrapper {
  width: calc(100vw - 48px);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-blue__wrapper {
    width: 720px;
  }
}

@media (min-width: 1024px) {
  .section-blue__wrapper {
    width: 976px;
    position: relative;
  }
}

@media (min-width: 1280px) {
  .section-blue__wrapper {
    width: 1232px;
  }
}

.section-blue__wrapper .spoiler-wrapper {
  margin: 0 0 32px;
}

.section-blue__wrapper .spoiler-wrapper .spoiler-box {
  width: 100%;
  margin: 0;
}

.section-blue__wrapper .spoiler-wrapper .spoiler-box:first-child {
  border-top: 1px solid #7f7e7e;
}

.section-blue__wrapper .spoiler-wrapper .spoiler-box:last-child {
  border-bottom: 1px solid #7f7e7e;
}

.section-blue__wrapper .spoiler-wrapper .spoiler-box__header-btn {
  padding: 16px 0;
}

@media (min-width: 1280px) {
  .section-blue__wrapper .spoiler-wrapper .spoiler-box__header-btn {
    padding: 24px 0;
  }
}

.section-blue__wrapper .spoiler-wrapper .spoiler-box h3,
.section-blue__wrapper .spoiler-wrapper .spoiler-box .h3 {
  margin-right: 16px;
}

@media (min-width: 768px) {
  .section-blue__wrapper .spoiler-wrapper .spoiler-box h3,
  .section-blue__wrapper .spoiler-wrapper .spoiler-box .h3 {
    margin-right: 24px;
  }
}

.section-blue__wrapper .spoiler-wrapper .spoiler-box p {
  max-width: 100%;
}

@media (max-width: 767px) {
  .section-blue__buttons .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .section-blue__buttons .btn.btn-outline-blue.btn-ico-left {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.section-blue .marker-list {
  margin: 16px 0 24px;
}

@media (min-width: 768px) {
  .section-blue .marker-list {
    margin: 24px 0 24px;
  }
}

.section-blue__img {
  display: none;
  width: 665px;
  height: 333px;
  position: absolute;
  top: 50%;
  transform: translateY(-56%);
  left: 608px;
}

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

@media (min-width: 1024px) {
  .section-blue--bg {
    padding: 57px 24px 16px;
  }
}

.section-blue--bg .marker-list {
  margin: 16px 0 24px;
}

@media (min-width: 768px) {
  .section-blue--bg .marker-list {
    margin: 24px 0 32px;
  }
}

@media (min-width: 1024px) {
  .section-blue--bg .marker-list {
    margin: 40px 0 32px;
  }
}

.section-blue .spoiler-box.whitening .spoiler-box__content-wrapper::after {
  background: linear-gradient(180deg, rgba(231, 239, 247, 0.0001) 22.07%, #e7eff7 100%);
}

.section-blue .swiper-gallery {
  margin: 54px 0 24px;
}

@media (max-width: 767px) {
  .section-blue .swiper-gallery {
    margin: 32px 0;
  }
}

.section-blue .swiper-gallery__controls {
  margin: 0 0 0 auto;
}

.section-quote {
  background: linear-gradient(90deg, #398BDC 0%, #519DF0 100%);
  padding: 40px 24px 32px;
  max-width: 100vw;
  left: 50%;
  position: relative;
  right: 50%;
  width: auto;
  margin: 0 -50vw 32px;
  color: #e8eaee;
}

@media (min-width: 768px) {
  .section-quote {
    padding: 72px 24px 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1280px) {
  .section-quote {
    padding: 80px 99px 48px;
    margin-bottom: 64px;
  }
}

.section-quote__name {
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 768px) {
  .section-quote__name {
    font-size: 24px;
    line-height: 34px;
  }
}

.section-quote__wrapper {
  width: calc(100vw - 48px);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-quote__wrapper {
    width: 720px;
  }
}

@media (min-width: 1280px) {
  .section-quote__wrapper {
    width: 976px;
    position: relative;
  }
}

.section-quote__name {
  text-align: right;
}

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

@media (min-width: 1024px) {
  .section-quote__name {
    margin-right: 27px;
  }
}

.section-quote p {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.9;
  position: relative;
}

@media (min-width: 768px) {
  .section-quote p {
    width: 640px;
    margin-left: auto;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 18px;
  }
}

@media (min-width: 1024px) {
  .section-quote p {
    width: auto;
    margin-left: 0;
    max-width: 816px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .section-quote p {
    margin-bottom: 9px;
  }
}

.section-quote p:after {
  content: "";
  display: block;
  width: 120px;
  height: 107px;
  background-image: url(/images/quote.png?f7cf7a03b376f361e12e97d4086b18c7);
  position: absolute;
  top: -23px;
  left: -38px;
}

@media (min-width: 768px) {
  .section-quote p:after {
    top: -37px;
    left: -101px;
  }
}

@media (min-width: 1280px) {
  .section-quote p:after {
    top: -39px;
    left: -98px;
  }
}

.section-quote span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  display: block;
  width: 50%;
  margin-left: auto;
}

@media (min-width: 768px) {
  .section-quote span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
  }
}

@media (min-width: 1024px) {
  .section-quote span {
    margin-right: 27px;
  }
}

.section-request {
  position: relative;
  width: 100vw;
  margin: 0 -24px 32px;
  padding: 56px 24px 64px;
  background: #edf0f8;
  max-width: 816px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .section-request {
    padding: 49px 24px 45px;
    width: 100%;
    margin: 0 0 32px;
  }
}

@media (min-width: 1024px) {
  .section-request {
    width: 610px;
    margin: 0 24px 0 0;
  }
}

@media (min-width: 1280px) {
  .section-request {
    width: 816px;
    padding: 56px 40px 56px;
  }
}

.section-request .loader-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section-request__row {
    display: flex;
    justify-content: space-between;
    max-width: 532px;
  }
}

.section-request__title {
  font-size: 24px;
  line-height: 34px;
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0 0 24px;
}

@media (min-width: 768px) {
  .section-request .form-group {
    width: calc(50% - 16px);
  }
}

@media (min-width: 1024px) {
  .section-request .form-group {
    width: 347px;
  }
}

.section-request .form-group:last-child {
  margin-bottom: 36px;
}

.section-request .form-group--checkbox {
  margin: 0 0 24px;
}

@media (min-width: 768px) {
  .section-request .form-group--checkbox {
    margin: 0 0 32px;
  }
}

.section-request .form-input {
  border-color: transparent;
}

.section-request .show-form {
  margin-bottom: 32px;
}

.section-request .btn {
  display: flex;
}

.top-page {
  background: #edf0f8;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
  padding: 24px 0 24px 0;
}

@media (min-width: 1280px) {
  .top-page {
    padding-top: 40px;
  }
}

.top-page__content {
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

@media (min-width: 1280px) {
  .top-page__content {
    width: 100%;
    max-width: 100%;
  }
}

.top-page .breadcrumbs {
  margin: 0 0 20px 0;
}

.top-page a:not(.breadcrumbs__item, .btn) {
  color: inherit;
}

.top-page .link-phone {
  font-family: "Montserrat", Arial, sans-serif;
  color: inherit;
  font-size: 16px;
  line-height: 26px;
}

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

.top-page__btn .i-star {
  width: 18px;
  height: 18px;
  fill: #ff7f32;
  margin-bottom: -3px;
  margin-right: 0.5rem;
}

.top-page__buttons {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767px) {
  .top-page__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .top-page__buttons > * {
    width: 100%;
  }
}

.top-page__buttons > *:not(:last-child) {
  margin-right: 24px;
}

@media (max-width: 767px) {
  .top-page__buttons > *:not(:last-child) {
    width: 100%;
    margin: 0 0 24px;
  }
}

@media (max-width: 767px) {
  .top-page__buttons .btn.btn-outline-blue {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.top-page__buttons .btn.btn-blue {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 767px) {
  .top-page__buttons .btn.btn-blue {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.top-page .top-page__buttons .btn-blue {
  color: #ffffff;
}

.top-page__popup {
  border-top: 1px solid #ffffff;
  margin: 24px -24px 0;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .top-page__popup {
    border-top: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s;
  }
}

.top-page__popup .spoiler-box__content {
  padding-bottom: 0;
  display: none;
}

@media (min-width: 768px) {
  .top-page__popup .spoiler-box__content {
    display: block;
  }
}

.top-page__popup .spoiler-box__header-btn {
  padding: 15px 0;
}

.top-page__popup .spoiler-box .i-arrow {
  display: block !important;
}

.top-page__popup .popup-button {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.top-page__popup .popup-button .i-arrow {
  position: relative;
  top: auto;
  right: -3px;
}

@media (min-width: 768px) {
  .top-page__popup .popup-button .i-arrow {
    transform: rotate(0deg);
    fill: #6b6b6b;
    margin-left: 12px;
  }
}

@media (min-width: 768px) {
  .top-page__popup .popup-button {
    width: 100%;
  }
}

.top-page__popup .popup-button__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.top-page__popup .popup-button .h4 {
  margin-right: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .top-page__popup .popup-button .h4 {
    width: auto;
  }
}

@media (min-width: 768px) {
  .top-page__text-item {
    margin-top: 11px;
    width: calc(50% - 24px);
    margin-right: 34px;
  }
}

.top-page.doctor {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .top-page.doctor {
    min-height: auto;
    padding-bottom: 0;
  }
}

.top-page.doctor .top-page__content {
  padding-top: 70px;
}

@media (min-width: 1024px) {
  .top-page.doctor .top-page__content {
    padding-top: 7px;
  }
}

.top-page.clinic {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: auto;
  margin-bottom: 64px;
}

@media (max-width: 1279px) {
  .top-page.clinic {
    background-image: none !important;
  }
}

.top-page.clinic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(270deg, rgba(245, 248, 252, 0.4) 0%, #e7eff7 62%);
}

.top-page.clinic .top-page__content {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .top-page.clinic .top-page__content {
    padding-bottom: 64px;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .top-page.clinic .top-page__content {
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .top-page.clinic h1 {
    margin-bottom: 1rem;
  }
}

.top-page.service {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: auto;
  margin-bottom: 24px;
  padding-bottom: 0;
  z-index: 6;
  overflow: initial;
}

@media (max-width: 767px) {
  .top-page.service {
    background-image: none !important;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1280px) {
  .top-page.service {
    padding-top: 40px;
  }
}

.top-page.service::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e7eff7;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .top-page.service::after {
    background-color: transparent;
    background-image: linear-gradient(270deg, rgba(245, 248, 252, 0.4) 0%, #e7eff7 62%);
  }
}

.top-page.service .whitening .spoiler-box__content-wrapper::after {
  background: linear-gradient(180deg, rgba(231, 239, 247, 0.0001) 22.07%, #e7eff7);
}

.top-page.service .top-page__content {
  padding-top: 0;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .top-page.service .top-page__content {
    padding: 0 0 64px;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .top-page.service .top-page__content {
    padding-bottom: 80px;
  }
}

.top-page.service .top-page-info__bottom {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .top-page.service .top-page-info__bottom {
    flex-direction: row;
  }
}

.top-page.service .top-page-info__bottom .btn-blue {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .top-page.service .top-page-info__bottom .btn-blue {
    margin: 0 24px 0 0;
  }
}

.top-page.service .top-page-info__bottom .btn-outline-blue {
  width: auto;
}

@media (min-width: 768px) {
  .top-page.service h1 {
    margin-bottom: 1rem;
  }
}

.top-page.analyzes p span {
  margin-right: 12px;
}

@media (min-width: 768px) {
  .top-page.analyzes .top-page__content {
    padding-bottom: 64px;
  }
}

@media (min-width: 1280px) {
  .top-page.analyzes .top-page__content {
    margin: 0;
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .top-page.analyzes .top-page-info__row {
    align-items: flex-start;
    margin-top: 24px;
  }
}

@media (min-width: 1280px) {
  .top-page.analyzes .top-page-info__row {
    margin-top: 32px;
    max-width: 904px;
  }
}

.top-page.action {
  background-image: none;
  position: relative;
  margin-bottom: 32px;
  min-height: 314px;
}

@media (min-width: 1280px) {
  .top-page.action {
    margin-bottom: 40px;
  }
}

.top-page.action .container {
  position: relative;
}

.top-page.action::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e7eff7;
  opacity: 0.8;
}

@media (min-width: 1279px) {
  .top-page.action::after {
    opacity: 1;
    background-color: transparent;
    background-image: linear-gradient(270deg, rgba(245, 248, 252, 0.4) 0%, #e7eff7 62%);
  }
}

@media (min-width: 768px) {
  .top-page.action .places-wrapper {
    display: block;
  }
}

.top-page.action .top-page__content {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .top-page.action .top-page__content {
    padding-bottom: 49px;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .top-page.action .top-page__content {
    padding-bottom: 65px;
  }
}

.top-page.action .top-page__image {
  background: none;
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: 0 center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  max-width: 586px;
}

@media (max-width: 1279px) {
  .top-page.action .top-page__image {
    position: static;
    height: auto;
    margin: 0 auto 24px;
  }
}

@media (min-width: 1280px) {
  .top-page.action .top-page__image {
    background-position: right center;
  }
}

@media (max-width: 1279px) {
  .top-page.action .top-page__image::before {
    display: block;
    content: "";
    padding-bottom: 56.5%;
  }
}

.top-page.action .top-page-info h1 {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .top-page.action .top-page-info h1 {
    width: 60%;
  }
}

.top-page.action .top-page-info__place {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .top-page.action .top-page-info__place {
    margin-bottom: 0;
    width: 611px;
  }
}

@media (min-width: 1280px) {
  .top-page.action .top-page-info__place {
    width: 760px;
  }
}

.top-page.action .top-page-info__place .h4 {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .top-page.action .top-page-info__place .h4 {
    margin-bottom: 32px;
  }
}

.top-page.action .top-page-info__place .h4 span {
  margin-bottom: 10px;
  margin-right: 12px;
}

@media (min-width: 768px) {
  .top-page.action .top-page-info__place .h4 span {
    margin-bottom: 0;
  }
}

.top-page.action .top-page-info__place .place {
  display: none;
  margin-bottom: 16px;
  margin-right: 28px;
}

@media (min-width: 768px) {
  .top-page.action .top-page-info__place .place {
    display: inline-flex;
  }
}

.top-page.about {
  position: relative;
  width: 100vw;
  margin: -24px 0 0 calc((100vw - 100%) / -2);
  padding: 24px calc((100vw - 100%) / 2) 19px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: #ffffff;
  /* &::after,
   &::before {
       content: '';
       display: block;
       position: absolute;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
   }*/
}

@media (min-width: 768px) {
  .top-page.about {
    padding: 24px calc((100vw - 100%) / 2) 51px;
  }
}

@media (min-width: 1280px) {
  .top-page.about {
    padding: 60px calc((100vw - 100%) / 2) 80px;
  }
}

@media (max-width: 767px) {
  .top-page.about .btn-video {
    display: none;
  }
}

.top-page.about .top-page__content p {
  max-width: 606px;
}

@media (min-width: 768px) {
  .top-page.about .top-page__content p {
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .top-page.about .top-page__content p {
    margin-bottom: 38px;
  }
}

.top-page.corporate {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% center;
  padding: 24px 24px 64px;
}

@media (min-width: 768px) {
  .top-page.corporate {
    background-position: 100% center;
    margin: -24px 0 48px calc((100vw - 100%) / -2);
    padding: 24px calc((100vw - 100%) / 2) 64px;
  }

  .top-page.corporate p {
    max-width: 606px;
  }
}

@media (min-width: 1280px) {
  .top-page.corporate {
    margin: -24px 0 55px calc((100vw - 100%) / -2);
  }
}

.top-page.corporate::after,
.top-page.corporate::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top-page.corporate::before {
  background: #ff7f32;
  opacity: 0.5;
}

.top-page.corporate::after {
  background: linear-gradient(69deg, #ffefef 0%, rgba(255, 255, 255, 0.47) 65.77%, #4fa0f0 98.26%);
}

.top-page.corporate .top-page-info__bottom {
  display: block;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .top-page.corporate .top-page-info__bottom {
    display: flex;
    margin-top: 32px;
  }
}

.top-page.corporate .top-page-info__bottom .btn {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .top-page.corporate .top-page-info__bottom .btn {
    margin: 0 24px 0 0;
  }
}

.top-page.corporate .top-page-info .info-list {
  padding: 0;
  margin: 0;
}

.top-page.corporate .top-page-info .info-list .link-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.blue-wrapper {
  background: #ff7f32;
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .blue-wrapper {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .blue-wrapper {
    padding: 0 calc((100vw - 100%) / 2);
  }
}

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

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

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

.block-info__left {
  position: relative;
}

@media (min-width: 768px) {
  .block-info__left {
    width: 143px;
    margin-right: 38px;
    align-self: flex-end;
  }
}

@media (min-width: 1024px) {
  .block-info__left {
    margin-right: 10px;
    width: 321px;
    min-height: 443px;
  }
}

@media (min-width: 1280px) {
  .block-info__left {
    margin-right: 100px;
  }
}

.block-info__left::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ffffff;
  top: 52px;
  left: 50%;
  transform: translateX(-53%);
  display: none;
}

@media (min-width: 768px) {
  .block-info__left::before {
    display: block;
    width: 406px;
    height: 406px;
  }
}

@media (min-width: 1024px) {
  .block-info__left::before {
    width: 510px;
    height: 510px;
    transform: translateX(-44%);
  }
}

.block-info__right {
  z-index: 2;
}

@media (min-width: 768px) {
  .block-info__right {
    margin-right: 38px;
    max-width: 500px;
    width: 100%;
    padding-bottom: 64px;
  }
}

@media (min-width: 1024px) {
  .block-info__right {
    margin-right: 0;
    padding-bottom: 80px;
    max-width: 100%;
  }
}

.block-info__right .btn-big.btn-blue {
  display: none;
}

@media (min-width: 768px) {
  .block-info__right .btn-big.btn-blue {
    display: inline-block;
    margin-right: 24px;
  }
}

@media (max-width: 767px) {
  .block-info__right .btn-blue {
    min-height: 50px;
    margin: 0 0 24px 0;
  }
}

@media (max-width: 767px) {
  .block-info__right .btn-ico.btn-ico_blog {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .block-info__bottom {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .block-info__bottom {
    display: flex;
    align-items: center;
  }

  .block-info__bottom .btn {
    margin-right: 24px;
  }
}

.block-info__bottom--archive {
  flex-direction: column;
  padding: 32px;
  background-color: #ff7f32;
  color: #ffffff;
  align-items: flex-start;
  border-radius: 32px;
  overflow: hidden;
}

@media (max-width: 1919px) {
  .block-info__bottom--archive {
    max-width: 687px;
  }
}

@media (max-width: 1023px) {
  .block-info__bottom--archive {
    width: 100%;
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .block-info__bottom--archive {
    min-width: 280px;
    padding: 16px;
    border-radius: 24px;
    margin: 0 -4px;
  }
}

.block-info__bottom--archive p {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}

@media (max-width: 1023px) {
  .block-info__bottom--archive p {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .block-info__bottom--archive p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 26px;
  }
}

.block-info__bottom--archive .btn {
  padding: 15px 40px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  border-radius: 40px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .block-info__bottom--archive .btn {
    padding: 10px 22px;
    font-size: 16px;
    line-height: 26px;
  }
}

.block-info__bottom--archive .btn span {
  color: #ff7f32;
}

@media (hover: hover) {
  .block-info__bottom--archive .btn:hover {
    box-shadow: 0 56px 56px rgba(0, 0, 0, 0.2);
  }

  .block-info__bottom--archive .btn:hover span {
    color: #6EA55A;
  }
}

.block-info__spoiler {
  display: none;
}

@media (min-width: 768px) {
  .block-info__spoiler {
    display: flex;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
}

.block-info__spoiler .spoiler-box {
  display: none;
}

@media (min-width: 768px) {
  .block-info__spoiler .spoiler-box {
    display: block;
    width: calc(50% - 24px);
    margin-right: 24px;
    margin-bottom: 24px;
  }

  .block-info__spoiler .spoiler-box p {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .block-info__spoiler .spoiler-box {
    margin-right: 24px;
    max-height: 100%;
  }
}

@media (min-width: 1280px) {
  .block-info__spoiler .spoiler-box {
    width: calc(50% - 32px);
  }
}

.block-info__spoiler .spoiler-box__header-btn {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.block-info__spoiler .spoiler-box__header-btn .i-metro {
  margin-right: 8px;
}

.block-info__spoiler .spoiler-box__header-btn .i-clinic {
  fill: #ff7f32;
}

.block-info__spoiler .spoiler-box__header-btn .i-arrow {
  margin-left: 4px;
}

@media (min-width: 1024px) {
  .block-info__spoiler .spoiler-box__header-btn .i-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .block-info__spoiler .spoiler-box__header-btn span {
    display: inline;
    border-bottom: 1px dashed #ff7f32;
  }
}

@media (min-width: 1024px) {
  .block-info__spoiler .spoiler-box__header-btn span {
    border-bottom: none;
  }
}

.block-info__spoiler .spoiler-box__content {
  margin-top: 10px;
  padding: 0;
}

.block-info__spoiler .spoiler-box.opened .spoiler-box__header .i-arrow {
  transform: rotate(180deg);
}

.block-info__image {
  width: 220px;
  height: 188px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .block-info__image {
    width: 228px;
    height: 347px;
    margin-bottom: 0;
    margin-left: -66px;
  }
}

@media (max-width: 1024px) {
  .block-info__image {
    overflow: hidden;
  }
}

@media (min-width: 1025px) {
  .block-info__image {
    width: 386px;
    height: 443px;
    margin-bottom: 0;
    margin-left: 0;
    overflow: visible;
  }
}

.block-info__image img {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}

.block-info__image::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ffffff;
  top: 22px;
  left: calc(50% - 110px);
}

@media (min-width: 768px) {
  .block-info__image::before {
    display: none;
  }
}

.block-info__image.stub img {
  height: 136px;
  margin-top: auto;
}

@media (min-width: 768px) {
  .block-info__image.stub img {
    height: 237px;
    margin-left: 21px;
  }
}

@media (min-width: 1024px) {
  .block-info__image.stub img {
    height: 293px;
    margin-left: 0;
  }
}

.block-info__ico-block {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .block-info__ico-block {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .block-info__ico-block {
    margin-bottom: 30px;
  }
}

.block-info__block {
  border: 1px solid #142c36;
  position: relative;
  display: inline-block;
  padding: 5px 25px 5px 11px;
  margin-bottom: 0.75rem;
  border-radius: 0 16px 0 0;
  margin-right: 1.5rem;
  height: 32px;
}

.block-info__block .i-star {
  fill: #142c36;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .block-info__block {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .block-info__block {
    padding: 6px 36px 6px 11px;
    height: 42px;
    margin-right: 12px;
  }
}

.block-info__block::after {
  content: "";
  width: 14px;
  height: 15px;
  border: 1px solid #142c36;
  position: absolute;
  right: -1px;
  background: #e7eff7;
  top: -1px;
  border-top-color: transparent;
  border-right-color: transparent;
}

.block-info__block::before {
  content: "";
  width: 1px;
  height: 19px;
  background: #142c36;
  display: block;
  position: absolute;
  top: -3px;
  z-index: 2;
  right: 6px;
  transform: rotate(-45deg);
}

.block-info__text {
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 1024px) {
  .block-info__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    margin-left: 0;
  }
}

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

.timetable {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

@media (min-width: 768px) {
  .timetable {
    display: block;
  }
}

.timetable-item {
  width: 100%;
  background: #cbf3cd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 50px;
  transition: all 0.3s;
  cursor: pointer;
  margin-bottom: 0.5rem;
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
}

@media (min-width: 1280px) {
  .timetable-item:hover {
    background: #6b6b6b;
  }

  .timetable-item:hover .timetable-item__time {
    color: #ffffff;
  }
}

.timetable-item.slick-slide {
  display: flex;
}

.timetable-item.disabled {
  background: #e8eaee;
  font-weight: 400;
  cursor: default;
}

@media (min-width: 1280px) {
  .timetable-item.disabled:hover {
    background: #e8eaee;
  }

  .timetable-item.disabled:hover__text {
    color: #6b6b6b;
  }

  .timetable-item.disabled:hover__time {
    color: #6b6b6b;
  }
}

.timetable-item.disabled .timetable-item__time,
.timetable-item.disabled .timetable-item__text {
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
}

.timetable-item.no-active {
  background: #e8eaee;
  cursor: default;
}

@media (min-width: 1280px) {
  .timetable-item.no-active:hover {
    background: #e8eaee;
    color: inherit;
  }
}

.timetable-item.no-active .timetable-item__text {
  display: none;
}

.timetable-item.no-active .timetable-item__time {
  display: block;
  color: #6b6b6b;
}

.timetable-item.hidden {
  height: 0;
  margin: 0;
  font-size: 0;
  min-height: 0;
}

.timetable-item.hidden .note-text {
  font-size: 0;
}

.timetable-item__time {
  display: block;
}

.timetable-item__text {
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.timetable-item--small {
  background: #cbf3cd;
  width: calc(50% - 6px);
  min-height: 32px;
  margin-right: 0.75rem;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.timetable-item--small.disabled {
  cursor: default;
  color: #142c36;
  font-weight: 300;
  pointer-events: none;
}

.timetable-item--small.checked {
  background: #6b6b6b;
}

.timetable-item--small.checked .timetable-item__time.c-radio__text {
  color: #ffffff;
}

.timetable-item--small:nth-of-type(2n) {
  margin-right: 0;
}

.timetable-item--small .timetable-item__time.c-radio__text {
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
  text-align: center;
}

@media (min-width: 1280px) {
  .timetable-item--small:hover .timetable-item__time.c-radio__text {
    color: #ffffff;
  }

  .timetable-item--small:hover.disabled .timetable-item__time.c-radio__text {
    color: inherit;
  }
}

.timetable-item--small.disabled .timetable-item__time.c-radio__text {
  font-weight: 300;
}

.timetable-item--clinic {
  background: #ffffff;
  display: inline-block;
  width: 107px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  cursor: default;
}

@media (min-width: 1280px) {
  .timetable-item--clinic:hover {
    background: #ffffff;
    color: #142c36;
  }
}

.timetable__date {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 400;
}

.timetable__place {
  margin-left: 1.5rem;
  align-items: center;
  display: flex;
  margin-bottom: 1.5rem;
}

@media (min-width: 1280px) {
  .timetable__place {
    margin-left: 32px;
    margin-bottom: 24px;
  }
}

.timetable__place .note-text {
  display: inline-block;
}

.timetable__range {
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
}

.timetable-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timetable-close {
  padding: 0;
  width: 17px;
  height: 17px;
}

.timetable-close .i-close {
  width: 13px;
  height: 13px;
  fill: #ff7f32;
}

.timetable-close:focus {
  outline: none;
}

@media (min-width: 1280px) {
  .timetable-close:focus::before {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 3px;
    border: 1px solid #F50016;
    left: -2px;
    top: -1px;
  }
}

@media (min-width: 1280px) {
  .timetable-close:hover .i-close {
    width: 13px;
    height: 13px;
    fill: #F50016;
  }
}

.timetable--xs {
  display: block;
  margin-bottom: 32px;
}

.timetable--xs .timetable-item {
  width: 50%;
  min-height: 40px;
  margin-bottom: 0px;
}

.timetable--xs .timetable-item.disabled .note-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.timetable--xs .timetable-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.timetable--xs .timetable-item-wrapper .date {
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  flex-shrink: 0;
}

.timetable-specialty {
  width: 100%;
  border: 1px solid #7f7e7e;
  margin-top: -1px;
  padding: 24px 0;
}

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

.timetable-specialty-wrapper {
  width: 100%;
  z-index: 1;
  position: relative;
}

@media (min-width: 1280px) {
  .timetable-specialty-wrapper {
    width: 814px;
    margin-left: auto;
  }
}

.timetable-specialty-text {
  display: none;
  font-family: "Montserrat", Arial, sans-serif;
  margin-left: 12px;
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 768px) {
  .timetable-specialty-text {
    margin-bottom: 10px;
  }
}

@media (min-width: 1280px) {
  .timetable-specialty-text {
    margin-left: 24px;
  }
}

.timetable-specialty .slider--timetable {
  border-bottom: none;
  padding: 0;
}

.table {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0 -24px;
  position: relative;
  margin-bottom: 1.5rem;
  border-top: 2px solid #e8eaee;
  border-bottom: 2px solid #e8eaee;
}

@media (min-width: 1280px) {
  .table {
    border: 2px solid #e8eaee;
    margin: 0 0 32px;
    width: 100%;
  }
}

.split-sidebar .table {
  margin-bottom: 1rem;
}

.table__item {
  min-height: 56px;
  display: block;
}

.table__item:nth-of-type(2n) {
  background: #e8eaee;
}

.table__item-inner {
  max-width: calc(100% - 48px);
  display: flex;
  padding: 16px 0;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .table__item-inner {
    padding: 24px 0;
  }
}

.table__item p {
  margin: 0;
  margin-left: 48px;
  flex-shrink: 0;
}

.table__item .small {
  margin-left: 0;
  flex-shrink: 1;
  font-size: 14px;
  color: #142c36;
  line-height: 22px;
}

@media (min-width: 768px) {
  .table__item .small {
    font-size: 16px;
    line-height: 26px;
  }
}

.table__item a {
  color: inherit;
  border-bottom: 1px solid #ff7f32;
  transition: all 0.3s;
}

.table__item a:hover {
  border-bottom-color: transparent;
  color: #F50016;
}

.table__header {
  display: block;
}

.table--prices {
  border: 1px solid #e8eaee;
}

.table--prices .table__item {
  border: 1px solid #e8eaee;
}

.table--cropped {
  margin: 0;
  border: none;
}

.table--cropped .table__item {
  padding: 0 24px;
  width: 100%;
}

.table--cropped .table__item-inner {
  margin: 0;
  max-width: 100%;
}

.table--clinic {
  border: none;
  margin-bottom: 32px;
}

@media (min-width: 1280px) {
  .table--clinic {
    margin: 0 0 32px;
  }
}

.table--clinic .tooltip {
  color: #F50016;
  border-bottom-color: #F50016;
}

.table--clinic .download-error {
  margin-top: 24px;
}

.table--clinic .table__item {
  display: block;
  color: #142c36;
  border: 1px solid #7f7e7e;
  border-right: none;
  border-left: none;
  margin-top: -1px;
  max-width: 100%;
  transition: all 0.3s;
  margin-right: 0;
}

.table--clinic .table__item:nth-of-type(2n) {
  background: transparent;
}

.table--clinic .table__item:first-of-type {
  border-top: none;
}

.table--clinic .table__item p {
  margin: 0;
}

@media (min-width: 768px) {
  .table--clinic .table__item {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .table--clinic .table__item {
    padding-left: 0;
  }
}

@media (min-width: 1280px) {
  .table--clinic .table__item:hover {
    background: #edf0f8;
    color: #F50016;
    border-color: transparent;
  }

  .table--clinic .table__item:hover .note-text {
    color: #6b6b6b;
  }

  .table--clinic .table__item:hover ~ .table__item {
    border-top-color: transparent;
  }

  .table--clinic .table__item:hover .c-radio__text {
    color: #142c36;
  }
}

.table--clinic .table__item.c-radio {
  overflow: visible;
}

.table--clinic .table__item .table__column {
  display: block;
}

.table--clinic .table__item .table__column.place {
  display: inline-flex;
}

.table--clinic .table__item .table__column.place .action-block__place {
  margin-bottom: 0;
}

.table--clinic .table__item .table__column.address {
  display: none;
}

@media (min-width: 1280px) {
  .table--clinic .table__item .table__column.address {
    display: block;
    width: 24%;
  }
}

.table--clinic .table__item-wrapper {
  width: 100%;
  display: block;
  padding: 18px 24px 10px;
}

@media (min-width: 768px) {
  .table--clinic .table__item-wrapper {
    display: flex;
    align-items: center;
    padding: 17px 24px 15px;
  }
}

@media (min-width: 1280px) {
  .table--clinic .table__item-wrapper {
    padding: 15px 24px 16px 0;
  }
}

.table--clinic .table__header {
  padding: 19px 24px 17px;
  background: #edf0f8;
  min-height: 58px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .table--clinic .table__header {
    display: flex;
    padding: 19px 24px 16px;
  }
}

@media (min-width: 1280px) {
  .table--clinic .table__header {
    padding-left: 0;
  }
}

.table--clinic .table__header .h4 {
  margin-bottom: 0;
}

.table--clinic .table__header .table__column {
  margin-bottom: 0;
}

.table--clinic .table__column {
  margin-bottom: 8px;
  flex-shrink: 0;
  padding-right: 0;
}

.table--clinic .table__column.place {
  display: none;
}

.table--clinic .table__column:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .table--clinic .table__column.place {
    display: inline-flex;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .table--clinic .table__column {
    padding-right: 24px;
    margin-bottom: 0;
  }

  .table--clinic .table__column.clinic {
    width: 40%;
  }

  .table--clinic .table__column.place {
    width: 34%;
  }

  .table--clinic .table__column.date {
    width: 24%;
    padding-right: 0;
  }
}

@media (min-width: 1280px) {
  .table--clinic .table__column {
    width: 26%;
    margin-bottom: 0;
    padding-right: 24px;
  }

  .table--clinic .table__column.clinic {
    padding-left: 24px;
  }

  .table--clinic .table__column.clinic .note-text {
    display: none;
  }
}

.table--clinic.no-metro .table__column--metro,
.table--clinic.no-metro .place {
  display: none;
}

.table--clinic .loader {
  width: 100px;
  height: 100px;
  margin-top: 20px;
}

.table--services ~ .note-text--services {
  margin-top: 0;
}

.table-wrapper__item {
  margin-bottom: 32px;
}

.table-wrapper__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .table-wrapper__item {
    margin-bottom: 40px;
  }

  .table-wrapper__item .table {
    margin: 0 0 32px;
  }
}

.table-wrapper__item .spoiler-box {
  margin: 0 -24px;
}

.table-wrapper__item .spoiler-box__btn-show {
  margin-left: 24px;
}

@media (min-width: 1280px) {
  .table-wrapper__item .spoiler-box__btn-show {
    margin-left: 0;
  }
}

.table-wrapper__item .spoiler-box .table {
  margin: 0;
}

@media (min-width: 1280px) {
  .table-wrapper__item .spoiler-box {
    margin: 0;
  }
}

.table-wrapper--prices .table--prices {
  border-radius: 30px;
}

.table-wrapper--prices .table__item:first-child {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.table-wrapper--prices .table__item:last-child {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.table-wrapper--prices .note-text {
  margin: 12px 16px 0;
}

@media (min-width: 768px) {
  .table-wrapper--prices .note-text {
    margin: 12px 24px 0;
  }
}

@media (min-width: 1280px) {
  .table-wrapper--prices .note-text {
    margin: 12px 0;
  }
}

.slider__wrapper {
  max-width: calc(100% - 48px);
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

@media (min-width: 1024px) {
  .slider__wrapper {
    max-width: 928px;
  }
}

@media (min-width: 1280px) {
  .slider__wrapper {
    max-width: 1166px;
  }
}

.slider__item {
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}

.slider__item h4 {
  margin: 0;
}

.slider__item:focus {
  outline: none;
}

.slider__btn {
  position: absolute;
  transform: rotate(90deg);
  left: -24px;
  top: calc(50% - 15px);
  padding: 0;
  background: none;
  border: none;
  height: 30px;
  width: 30px;
  outline: none;
}

@media (min-width: 1024px) {
  .slider__btn {
    left: -32px;
  }
}

@media (min-width: 1280px) {
  .slider__btn {
    left: -40px;
  }

  .slider__btn:hover .i-arrow {
    fill: #F50016;
  }
}

.slider__btn.slick-disabled .i-arrow,
.slider__btn.slick-disabled .i-arrow-slider,
.slider__btn.slick-disabled .i-arrow-big {
  fill: #7f7e7e;
}

.slider__btn--right {
  right: -24px;
  left: auto;
  transform: rotate(-90deg);
}

@media (min-width: 1024px) {
  .slider__btn--right {
    right: -32px;
  }
}

@media (min-width: 1280px) {
  .slider__btn--right {
    right: -40px;
  }
}

.slider__btn .i-arrow {
  transition: fill 0.3s;
  fill: #6b6b6b;
}

.slider__btn:active::before,
.slider__btn:focus::before {
  display: none;
}

.slider.hidden {
  width: 100%;
  height: 115px;
  overflow: hidden;
  visibility: hidden;
}

.slider--timetable {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #7f7e7e;
  margin: 0 -24px;
  position: relative;
  padding-top: 28px;
  z-index: 4;
}

@media (min-width: 1024px) {
  .slider--timetable {
    border-right: 1px solid #7f7e7e;
    border-left: 1px solid #7f7e7e;
    margin-right: 0;
    margin-left: 0;
  }

  .slider--timetable:first-of-type {
    border-right: none;
    border-left: none;
  }
}

@media (min-width: 1280px) {
  .slider--timetable {
    padding-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .slider--timetable h4 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.slider--timetable .slider__item {
  cursor: default;
}

.slider--timetable .slider__item .h4 {
  z-index: 4;
}

.slider--timetable .slider__btn {
  transform: rotate(0);
}

.slider--timetable .slider__btn .i-arrow-slider {
  width: 14px;
  height: 14px;
  stroke: #6b6b6b;
  transform: rotate(-180deg);
}

.slider--timetable .slider__btn--right .i-arrow-slider {
  transform: rotate(0);
}

.slider--timetable .slider__btn:hover .i-arrow-slider {
  fill: #F50016;
  stroke: #F50016;
}

.slider--timetable .slider__btn.slick-disabled .i-arrow-slider {
  fill: #7f7e7e;
  stroke: #7f7e7e;
}

.slider--timetable .slick-slide {
  width: 124px;
  margin-right: 1.5rem;
}

@media (min-width: 1024px) {
  .slider--timetable .slick-slide {
    width: 112px;
  }
}

@media (min-width: 1280px) {
  .slider--timetable .slick-slide {
    width: 146px;
  }
}

.slider--timetable.date {
  padding-top: 21px;
}

@media (min-width: 1280px) {
  .slider--timetable.date {
    padding-bottom: 32px;
  }
}

.slider--datetable-xs {
  height: 74px;
  border-bottom: 1px solid #7f7e7e;
  width: 320px;
  align-items: center;
  display: flex;
  margin-bottom: 24px;
}

.slider--datetable-xs .slider__wrapper {
  width: 100%;
}

.slider--datetable-xs .slider__btn {
  left: 0;
  z-index: 2;
}

.slider--datetable-xs .slider__btn--right {
  right: 0;
  left: auto;
}

.slider--datetable-xs .timetable-wrapper {
  margin-right: -16px;
  margin-bottom: -16px;
}

.slider--datetable-xs .timetable-item--small {
  width: 56px;
  margin-right: 16px;
  margin-bottom: 16px;
}

.slider--datetable-xs .timetable-item--small:nth-child(2n) {
  margin-right: 16px;
}

.slider--timetable-xs .slider__wrapper {
  width: 272px;
  max-width: 100%;
  margin-bottom: 24px;
}

.slider--timetable-xs .timetable-wrapper {
  margin-right: -16px;
  margin-bottom: -16px;
}

.slider--timetable-xs .timetable-item--small {
  width: 56px;
  margin-right: 16px;
  margin-bottom: 16px;
}

.slider--timetable-xs .timetable-item--small:nth-child(2n) {
  margin-right: 16px;
}

.slider--banner {
  border: none;
  padding: 0 0 0;
  width: 100vw;
  max-width: 100vw;
  min-width: 320px;
  margin: 0 -24px;
  position: relative;
}

@media (min-width: 768px) {
  .slider--banner {
    margin: 0 24px 0 0;
    width: calc(50% - 12px);
  }
}

@media (min-width: 1280px) {
  .slider--banner {
    padding: 0;
    width: 813px;
    margin: 0 24px 24px 0;
  }
}

.slider--banner.hidden-before-init .slider__wrapper {
  overflow: hidden;
}

.slider--banner .slick-slide {
  width: auto;
  margin-right: 0;
}

@media (min-width: 1024px) {
  .slider--banner .slick-slide {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .slider--banner .slick-slide {
    width: auto;
  }
}

.slider--banner .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}

@media (min-width: 1280px) {
  .slider--banner .slick-dots {
    margin-top: -44px;
    z-index: 1;
  }
}

.slider--banner .slick-dots li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ff7f32;
  opacity: 0.5;
  margin-right: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.slider--banner .slick-dots li:last-child {
  margin-right: 0;
}

.slider--banner .slick-dots li:hover {
  border-color: #ffffff;
  box-shadow: 0px 2px 10px #142c36;
}

.slider--banner .slick-dots li button {
  display: none;
}

.slider--banner .slick-dots li.slick-active {
  background: #ff7f32;
}

@media (min-width: 1280px) {
  .slider--banner .slick-dots li.slick-active {
    background: rgba(255, 255, 255, 0.5);
  }
}

@media (min-width: 1280px) {
  .slider--banner .slick-dots li {
    margin-right: 11px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.slider--banner .slider__wrapper {
  width: 100%;
  max-width: 100vw;
  min-width: 320px;
  height: auto;
}

@media (min-width: 768px) {
  .slider--banner .slider__wrapper {
    width: 100%;
    height: 241px;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .slider--banner .slider__wrapper {
    height: 323px;
  }
}

@media (min-width: 1280px) {
  .slider--banner .slider__wrapper {
    height: 477px;
  }
}

.slider--banner .slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  /****************/
}

.slider--banner .slider__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.slider--banner .slider__item {
  position: relative;
  width: 100%;
  min-width: 320px;
  text-align: left;
}

@media (min-width: 768px) {
  .slider--banner .slider__item {
    padding: 32px 24px;
    min-height: 200px;
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .slider--banner .slider__item {
    height: 270px;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .slider--banner .slider__item {
    height: 477px;
    padding: 32px 72px;
  }
}

.slider--banner .slider__item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
}

@media (max-width: 767px) {
  .slider--banner .slider__item-link {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.slider--banner .slider__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider--banner .slider__item .slider__content {
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .slider--banner .slider__item .slider__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .slider--banner .slider__item::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.5%;
  }
}

@media (max-width: 767px) {
  .slider--banner .slider__item-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.slider--banner .slider__btn-link {
  color: #ffffff;
  border-color: #ffffff;
  margin-right: 24px;
}

@media (max-width: 767px) {
  .slider--banner .slider__btn-link {
    margin-right: 0;
  }
}

.slider--banner .slider__btn-link .btn-ico-bg {
  background: #ffffff;
}

.slider--banner .slider__btn-link .i-arrow {
  transform: rotate(-90deg);
  fill: #ff7f32;
  transition: fill 0.3s;
}

.slider--banner .slider__btn-link:hover .i-arrow {
  fill: #F50016;
}

.slider--banner .slider__btn {
  display: none;
}

.slider--banner .slider__btn .i-arrow-slider {
  display: none;
}

@media (min-width: 1280px) {
  .slider--banner .slider__btn {
    display: flex;
    height: 100%;
    width: 56px;
    left: 0;
    top: 0;
    padding: 0;
    transform: rotate(0deg);
    z-index: 1;
  }

  .slider--banner .slider__btn::after {
    content: "";
    width: 35px;
    height: 35px;
    display: block;
    box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.35);
    position: absolute;
    left: calc(50% - 1px);
    top: calc(50% - 17px);
    transform: rotate(135deg);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .slider--banner .slider__btn .i-arrow-slider {
    display: block;
    transform: rotate(180deg);
    fill: #ffffff;
    width: 27px;
    height: 50px;
    z-index: 1;
  }
}

.slider--banner .slider__btn--right {
  right: 0;
  left: auto;
}

.slider--banner .slider__btn--right::after {
  left: auto;
  right: calc(50% - 1px);
  transform: rotate(-45deg);
}

.slider--banner .slider__btn--right .i-arrow-slider {
  transform: rotate(0deg);
}

.slider--banner .slider__btn:active::before,
.slider--banner .slider__btn:focus::before {
  display: none;
}

.slider--banner .slider__btn:hover::after {
  opacity: 1;
}

.slider--banner .slider__link {
  display: flex;
  align-items: center;
}

.slider--banner .slider__link .link-text {
  position: relative;
  display: flex;
  align-items: center;
}

.slider--banner .slider__link .link-text-arrow {
  display: block;
  flex-shrink: 0;
  width: 0;
  right: -10px;
  opacity: 0;
  height: 1px;
  position: relative;
  vertical-align: middle;
  transition: all 0.3s;
  background: #ffffff;
}

.slider--banner .slider__link .link-text-arrow::after,
.slider--banner .slider__link .link-text-arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 1px;
  background: #ffffff;
  right: 0;
  top: 0;
}

.slider--banner .slider__link .link-text-arrow::after {
  transform: rotate(135deg);
  top: 3px;
  right: -2px;
}

.slider--banner .slider__link .link-text-arrow::before {
  transform: rotate(-135deg);
  top: -3px;
  right: -2px;
}

.slider--banner .slider__link .link-text:hover .link-text-arrow {
  width: 27px;
  opacity: 1;
}

.slider--banner .note-text,
.slider--banner p {
  color: #F50016;
  font-size: 32px !important;
  font-weight: 700;
}

.slider--banner .note-text .slider__text__small,
.slider--banner p .slider__text__small {
  font-size: 12px;
}

.slider--banner .note-text .slider__text__dark,
.slider--banner p .slider__text__dark {
  color: #6D6C6C;
  font-weight: 900;
}

.slider--banner .note-text .slider__text__light,
.slider--banner p .slider__text__light {
  color: #6D6C6C;
  font-weight: 100;
}

.slider--banner .note-text {
  margin-bottom: 13px;
}

@media (min-width: 1280px) {
  .slider--banner .note-text {
    font-size: 1rem;
    line-height: 1.625rem;
  }
}

.slider--banner p {
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 32px;
}

@media (min-width: 1280px) {
  .slider--banner p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.125rem;
  }
}

.slider--banner .link-text {
  display: inline-block;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  border-bottom: none;
}

.slider--logo {
  margin: 0;
  border-bottom: none;
  padding: 0;
}

@media (min-width: 768px) {
  .slider--logo {
    width: 588px;
    margin: 37px auto 0;
  }
}

@media (min-width: 1024px) {
  .slider--logo {
    width: 761px;
  }
}

@media (min-width: 1280px) {
  .slider--logo {
    width: 1020px;
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .slider--logo.spoiler-box {
    overflow: visible;
  }

  .slider--logo.spoiler-box .spoiler-box__content {
    overflow: visible;
  }

  .slider--logo.spoiler-box .spoiler-box__content-wrapper {
    overflow: visible;
  }
}

.slider--logo .slider__wrapper {
  margin: 0;
  max-width: 100%;
  margin-bottom: 34px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .slider--logo .slider__wrapper {
    max-height: 100%;
    overflow: visible;
  }
}

.slider--logo .slider__card-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.slider--logo .slider__btn {
  display: none;
}

@media (min-width: 768px) {
  .slider--logo .slider__btn {
    display: block;
    height: 102px;
    width: 56px;
    left: -80px;
    top: 0;
    padding: 0;
    transform: rotate(0deg);
    z-index: 1;
  }

  .slider--logo .slider__btn .i-arrow-slider {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #edf0f8;
    padding: 15px;
    color: #adb4c8;
    border: none;
    transform: rotate(180deg);
  }
}

@media (min-width: 768px) and (hover: hover) {
  .slider--logo .slider__btn .i-arrow-slider:hover {
    background-color: #ff7f32;
    fill: white;
  }
}

@media (min-width: 1024px) {
  .slider--logo .slider__btn {
    left: -123px;
  }
}

@media (min-width: 1280px) {
  .slider--logo .slider__btn {
    left: -123px;
  }
}

@media (hover: hover) {
  .slider--logo .slider__btn:hover .i-arrow-slider {
    background-color: #ff7f32;
    fill: white;
  }
}

.slider--logo .slider__btn--right {
  right: -80px;
  left: auto;
}

.slider--logo .slider__btn--right .i-arrow-slider {
  transform: rotate(0deg);
}

@media (min-width: 1024px) {
  .slider--logo .slider__btn--right {
    right: -123px;
  }
}

@media (min-width: 1280px) {
  .slider--logo .slider__btn--right {
    right: -123px;
  }
}

.slider--logo .slider__btn:active::before,
.slider--logo .slider__btn:focus::before {
  display: none;
}

@media (max-width: 1279px) {
  .slider--logo .slider__btn:active .i-arrow-slider {
    fill: #ff7f32;
  }
}

.slider--logo .slider__btn.slick-disabled {
  opacity: 0.35;
  cursor: auto;
}

@media (min-width: 768px) {
  .slider--logo .btn-spoiler {
    display: none;
  }
}

.slider--logo .btn-spoiler .i-arrow {
  fill: #6b6b6b;
}

.slider--logo .btn-spoiler .close {
  display: none;
}

.slider--logo .slick-disabled {
  pointer-events: none;
}

.slider--logo .slick-disabled .i-arrow-slider {
  fill: #7f7e7e;
}

.slider--tabs {
  display: none;
}

@media (min-width: 768px) {
  .slider--tabs {
    display: block;
    margin-top: 32px;
  }
}

.slider--tabs .slider__wrapper {
  max-width: 627px;
  margin: 0;
}

@media (min-width: 1024px) {
  .slider--tabs .slider__wrapper {
    max-width: 881px;
  }
}

@media (min-width: 1280px) {
  .slider--tabs .slider__wrapper {
    max-width: 1097px;
  }
}

.slider--tabs .slider__btn {
  position: absolute;
  display: none;
  top: calc(50% - 14px);
  right: -70px;
  left: auto;
  padding: 0;
  display: none !important;
}

@media (min-width: 1024px) {
  .slider--tabs .slider__btn {
    display: block;
  }
}

@media (min-width: 1280px) {
  .slider--tabs .slider__btn {
    right: -122px;
  }
}

.slider--tabs .slider__btn:hover .i-arrow-slider {
  fill: #F50016;
}

.slider--tabs .slider__btn .i-arrow-slider {
  width: 16px;
  height: 16px;
  fill: #6b6b6b;
  transform: rotate(90deg);
}

.slider--tabs .slider__btn--right {
  left: auto;
  top: calc(50% - 14px);
  right: -103px;
}

@media (min-width: 1280px) {
  .slider--tabs .slider__btn--right {
    right: -142px;
  }
}

.slider--tabs .slider__btn--right .i-arrow-slider {
  transform: rotate(90deg);
}

.slider--tabs .nav-tabs {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .slider--tabs .nav-tabs li a {
    letter-spacing: 0;
  }
}

@media (max-width: 1023px) {
  .slider--tabs-main .slider__wrapper {
    max-width: none;
  }
}

.slider--doctors {
  max-width: 257px;
  margin: 0 auto 24px;
}

@media (min-width: 768px) {
  .slider--doctors {
    max-width: 100%;
    margin: 0 0 82px;
  }
}

.slider--doctors .slick-track {
  display: flex;
  align-items: stretch;
}

.slider--doctors .slick-track .slick-slide {
  height: auto;
}

@media (min-width: 1920px) {
  .split-sidebar .slider--doctors {
    width: calc(100% + (100vw - 1280px) / 2 + 24px);
    max-width: none;
  }
}

.slick-slide .slider--doctors li {
  width: 257px;
}

.slider--doctors .card li {
  width: 100%;
  align-self: stretch;
}

.slider--doctors .card__item {
  min-height: 448px;
}

@media (max-width: 767px) {
  .slider--doctors .slick-slide .card__item {
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .slider--doctors .slick-list {
    padding-bottom: 30px;
  }
}

.slider--doctors .card__list-doctor-spoiler__btn {
  margin-top: 24px;
}

.slider--doctors .card__list-doctor-spoiler__btn.hide {
  display: none;
}

.slider--doctors .slider__btn {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: -30px;
  transform: none;
  z-index: 1;
}

.slider--doctors .slider__btn .i-arrow-slider {
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}

.slider--doctors .slider__btn--right {
  right: -30px;
  left: auto;
}

.slider--doctors .slider__btn--right .i-arrow-slider {
  transform: rotate(0deg);
}

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

@media (min-width: 768px) {
  .slider--doctors .slider__counter {
    display: none;
  }
}

.slider--team {
  width: 100%;
  margin: 0 auto 24px;
}

@media (min-width: 768px) {
  .slider--team {
    max-width: 100%;
    margin: 0;
  }
}

.slider--team .slick-slide {
  width: 320px;
}

.slider--team .slider__btn {
  left: 0;
}

.slider--team .slider__btn--right {
  right: 0;
  left: auto;
}

.hidden-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.hidden-content__item {
  width: 56px;
  height: 32px;
}

@media (min-width: 768px) {
  .card {
    display: block;
  }
}

.card__list {
  list-style: none;
  padding: 0;
}

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

@media (min-width: 1280px) {
  .card__list {
    overflow: visible;
  }
}

@media (min-width: 768px) {
  .card__list li:nth-child(4) {
    display: none;
  }
}

@media (min-width: 1280px) {
  .card__list li:nth-child(4) {
    display: block;
  }
}

@media (min-width: 1280px) {
  .split-sidebar .card__list {
    max-width: 640px;
    flex-wrap: wrap;
  }
}

@media (min-width: 1025px) {
  .split-sidebar .card__list {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 1280px) {
  .split-sidebar .card__list {
    overflow: visible;
    max-width: 976px;
  }
}

.split-sidebar .card__list .slick-track {
  display: flex;
}

.split-sidebar .card__list .slick-track::before,
.split-sidebar .card__list .slick-track::after {
  content: none;
}

.split-sidebar .card__list .slick-slide {
  height: auto;
}

.card li {
  width: 100%;
  flex-shrink: 0;
  margin-left: 0;
}

@media (min-width: 768px) {
  .card li {
    width: 33.4%;
    max-width: 100%;
    min-width: auto;
  }
}

@media (min-width: 1280px) {
  .card li {
    width: 25%;
  }
}

.card__item {
  min-height: 442px;
  flex-shrink: 0;
  padding: 24px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  border: 1px solid rgba(127, 126, 126, 0.4);
  color: #7F7E7E;
  transition: border-color 0.3s;
}

@media (min-width: 768px) {
  .card__item {
    max-width: 100%;
    min-width: auto;
  }
}

.card__item:first-child {
  margin-left: 0;
}

.card__item .note-text {
  transition: color 0.3s ease-in-out;
}

@media (min-width: 1280px) {
  .card__item:hover .card__bottom .note-text {
    color: #142c36;
  }
}

.split-sidebar .card__item {
  max-width: 256px;
  border: none;
  box-shadow: 1px 1px 0 0 #d6d6d6, inset 1px 1px 0 0 #d6d6d6;
  height: auto;
}

@media (min-width: 1280px) {
  .split-sidebar .card__item {
    max-width: 320px;
  }
}

@media (min-width: 1280px) {
  .split-sidebar .card__item:hover {
    box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  }
}

.split-sidebar .card__item:active {
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  border-color: transparent;
}

@media (min-width: 1280px) and (max-width: 1919px) {
  .split-sidebar .card__item:nth-child(2) ~ .card__item {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .split-sidebar .card__item {
    max-width: 33.3%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .split-sidebar .card__item:nth-child(3) ~ .card__item {
    display: none;
  }
}

@media (max-width: 767px) {
  .split-sidebar .card__item {
    box-shadow: inset 0 0 0 1px #d6d6d6;
  }
}

.split-sidebar .slick-slider .card__item {
  max-width: 257px;
}

.card__image {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

.card__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: 100%;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 0 15px rgba(127, 126, 126, 0.4);
}

.card .note-text {
  margin-bottom: 1rem;
}

.card .round {
  width: 14px;
  height: 14px;
  margin-bottom: 0;
  margin-right: 0.5rem;
}

.card__place {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.card__place .i-clinic,
.card__place .i-clinic-default {
  transition: fill 0.3s;
  fill: #ff7f32;
}

@media (min-width: 1280px) {
  .card__place:hover .place.many-places {
    cursor: pointer;
  }

  .card__place:hover .place.many-places .place__text {
    color: #F50016;
    border-bottom-color: transparent;
  }

  .card__place:hover .i-location,
  .card__place:hover .i-clinic {
    fill: #F50016;
  }

  .card__place:hover .i-clinic-default {
    fill: #ff7f32;
  }
}

.card__place .tooltip {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
}

.card__place .tooltip .i-metro {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ff7f32;
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.card__place .tooltip .i-metro svg {
  fill: #ff7f32;
  flex-shrink: 0;
}

.card__place .place__text {
  text-align: left;
}

.card__place .note-text {
  min-height: auto;
  margin-bottom: 0;
}

.card__title {
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.card__top {
  margin-bottom: 0.75rem;
}

.card__bottom .note-text {
  margin-bottom: 0;
}

.card__btn {
  padding: 9px 16px;
  max-width: 115px;
}

.card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.card__price {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
  .card input[type=range] {
    display: none;
  }
}

.card .note-text.link {
  color: #142c36;
  margin-left: 24px;
  margin-bottom: 0;
  min-height: auto;
}

.card--all li {
  width: 100%;
  margin: 0 auto;
}

.card--all .card__list {
  flex-wrap: wrap;
  overflow: visible;
}

@media (max-width: 767px) {
  .card--all .card__list .card__item {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .card--all .card__list {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .card--all .card__list {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .card--all .card__list {
    max-width: 1280px;
  }
}

@media (min-width: 768px) {
  .card--all .card__list li:nth-child(4) {
    display: block;
  }
}

@media (max-width: 767px) {
  .card__btn-block {
    display: flex;
    flex-direction: column;
  }
}

.card__btn-block .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.card__btn-block .pagination-nav {
  margin: 0;
}

@media (max-width: 767px) {
  .card__btn-block .pagination-nav {
    margin-bottom: 40px;
  }
}

.card__btn-block--archive {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1279px) {
  .card__btn-block--archive {
    justify-content: center;
  }
}

.card__btn-block--archive .btn {
  margin: 0;
}

@media (max-width: 767px) {
  .card__btn-block--archive .btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.symptom + .doctors-grid {
  padding-top: 4rem;
}

@media (min-width: 1280px) {
  .symptom + .doctors-grid {
    padding-top: 5rem;
  }
}

.doctors-grid .card {
  margin-top: 3rem;
  margin-bottom: 52px;
}

.doctors-grid .card__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 52px;
  margin: 0;
  scroll-snap-type: x mandatory;
}

.doctors-grid .card__list li {
  margin: 0;
  width: 100%;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .doctors-grid .card__list li {
    width: 100%;
  }
}

@media (max-width: 567px) {
  .doctors-grid .card__list {
    grid-template-columns: auto;
    gap: 16px;
    padding: 3px 3px 36px 3px;
    grid-auto-flow: column;
    overflow: hidden;
    overflow-x: auto;
  }

  .doctors-grid .card__list li {
    min-width: 280px;
  }
}

@media (max-width: 380px) {
  .doctors-grid .card__list li {
    min-width: 260px;
  }
}

@media (max-width: 567px) {
  .doctors-grid .card {
    margin-bottom: 16px;
  }
}

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;
  }
}

.spoiler-timetable {
  width: 100%;
  overflow: hidden;
}

.spoiler-timetable.active .spoiler-timetable__content {
  display: block;
}

.spoiler-timetable__content-wrapper {
  overflow-y: hidden;
}

.spoiler-timetable__content {
  overflow-y: hidden;
  transition: margin 0.4s;
  display: none;
}

.spoiler-timetable__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.spoiler-timetable__list:focus {
  outline: none;
}

.spoiler-timetable.slider__item .spoiler-box__content {
  margin-bottom: 8px;
  display: block;
}

.spoiler-wrapper .spoiler-box {
  border-bottom: 1px solid #7f7e7e;
}

.spoiler-wrapper .spoiler-box .spoiler-box__content {
  padding: 0 24px;
}

.spoiler-wrapper .spoiler-box .spoiler-box__content a {
  color: #FF7F32;
}

.spoiler-wrapper .spoiler-box__header-btn {
  align-items: center;
  padding: 12px 24px;
}

.spoiler-wrapper .spoiler-box__header-ico {
  margin-right: 24px;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.spoiler-wrapper .spoiler-box__header-ico svg {
  width: 100%;
  height: 100%;
}

.spoiler-wrapper .spoiler-box .i-arrow {
  flex-shrink: 0;
  margin-left: auto;
}

.spoiler-wrapper .spoiler-box:last-child {
  border-bottom: none;
}

@media (min-width: 1280px) {
  .spoiler-wrapper .spoiler-box .h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
  }
}

.spoiler-wrapper .marker-list {
  padding: 0 24px;
}

.spoiler-wrapper--compare .table-list__item:last-child {
  border-bottom: none;
}

.spoiler-wrapper--compare .spoiler-box {
  cursor: pointer;
  margin: 0 -24px;
  position: relative;
  margin-top: -2px;
}

@media (min-width: 1280px) {
  .spoiler-wrapper--compare .spoiler-box {
    margin: 0;
    margin-top: -2px;
  }
}

.spoiler-wrapper--compare .spoiler-box:last-child {
  border-bottom: 1px solid #7f7e7e;
  margin-bottom: -1px;
}

.spoiler-wrapper--compare .spoiler-box__header-btn {
  background: #e8eaee;
  padding-left: 24px;
  padding-right: 24px;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
}

.spoiler-wrapper--compare .spoiler-box__header-btn span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@media (min-width: 1280px) {
  .spoiler-wrapper--compare .spoiler-box__header-btn span {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (min-width: 1280px) {
  .spoiler-wrapper--compare .spoiler-box__header-btn {
    padding: 16px 24px;
    border: 1px solid #7f7e7e;
  }
}

.spoiler-wrapper--compare .spoiler-box__content {
  padding-bottom: 0;
}

@media (min-width: 1280px) {
  .spoiler-wrapper--compare .spoiler-box__content {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .spoiler-wrapper--mobile {
    position: relative;
    -moz-column-count: 2;
         column-count: 2;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}

@media (min-width: 1280px) {
  .spoiler-wrapper--mobile {
    -moz-column-count: 3;
         column-count: 3;
  }
}

.spoiler-wrapper--mobile .spoiler-box {
  margin: 0 -24px;
  position: relative;
  margin-top: -1px;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.spoiler-wrapper--mobile .spoiler-box:last-child {
  border-bottom: 1px solid #7f7e7e;
}

@media (min-width: 768px) {
  .spoiler-wrapper--mobile .spoiler-box {
    max-height: 100% !important;
    margin: 0;
    border: none;
    margin-bottom: 24px;
    overflow: visible;
  }

  .spoiler-wrapper--mobile .spoiler-box:last-child {
    border-bottom: none;
  }
}

@media (min-width: 1280px) {
  .spoiler-wrapper--mobile .spoiler-box {
    margin-bottom: 50px;
  }
}

.spoiler-wrapper--mobile .spoiler-box:last-child .spoiler-box__content {
  padding-bottom: 0;
}

.spoiler-wrapper--mobile .spoiler-box:last-child.opened {
  border-bottom-color: transparent;
}

.spoiler-wrapper--mobile .spoiler-box__header-btn {
  padding: 16px 24px;
  justify-content: flex-start;
}

.spoiler-wrapper--mobile .spoiler-box__header-btn h3,
.spoiler-wrapper--mobile .spoiler-box__header-btn .h3 {
  font-family: "Montserrat", Arial, sans-serif;
  margin-right: 20px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .spoiler-wrapper--mobile .spoiler-box__header-btn {
    margin-bottom: 16px;
    padding: 0;
    border: none;
  }
}

.spoiler-wrapper--mobile .spoiler-box__header-btn .i-arrow {
  margin-left: auto;
}

@media (min-width: 768px) {
  .spoiler-wrapper--mobile .spoiler-box__header-btn .i-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .spoiler-wrapper--mobile .spoiler-box__content {
    padding-bottom: 0;
  }
}

.spoiler-wrapper--mobile .popup-button {
  display: flex;
  align-items: center;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
  padding: 15px 24px;
  margin: 0 -24px;
  position: relative;
  min-width: 320px;
  margin-top: -1px;
  width: 100vw;
}

@media (min-width: 768px) {
  .spoiler-wrapper--mobile .popup-button {
    margin: 0;
    width: auto;
    min-width: auto;
    min-height: auto;
    display: inline-flex;
    border: none;
    padding: 0;
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .spoiler-wrapper--mobile .popup-button {
    margin-bottom: 50px;
  }
}

.spoiler-wrapper--mobile .popup-button__ico {
  width: 30px;
  height: 30px;
  margin-right: 24px;
}

.spoiler-wrapper--mobile .popup-button__title {
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 1280px) {
  .spoiler-wrapper--mobile .popup-button__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.spoiler-wrapper--mobile .popup-button .i-arrow {
  position: relative;
  right: auto;
  top: auto;
  margin-left: auto;
  transform: translateY(0) rotate(-90deg);
}

@media (min-width: 768px) {
  .spoiler-wrapper--mobile .popup-button .i-arrow {
    display: none;
  }
}

.spoiler-wrapper--doctor-page {
  margin: 0;
}

@media (min-width: 768px) {
  .spoiler-wrapper--doctor-page {
    position: relative;
  }
}

.spoiler-wrapper--doctor-page .spoiler-text {
  margin: 0 -24px;
  position: relative;
  position: relative;
  margin-top: -1px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
}

.spoiler-wrapper--doctor-page .spoiler-text:last-child {
  border-bottom: 1px solid #7f7e7e;
}

@media (min-width: 768px) {
  .spoiler-wrapper--doctor-page .spoiler-text {
    max-height: 100% !important;
    margin: 0;
    border: none;
    margin-bottom: 24px;
    overflow: visible;
  }

  .spoiler-wrapper--doctor-page .spoiler-text:last-child {
    border-bottom: none;
  }
}

@media (min-width: 1280px) {
  .spoiler-wrapper--doctor-page .spoiler-text {
    margin-bottom: 50px;
  }
}

.spoiler-wrapper--doctor-page .spoiler-text:last-child .spoiler-text__content {
  padding-bottom: 0;
}

.spoiler-wrapper--doctor-page .spoiler-text:last-child.opened {
  border-bottom-color: transparent;
}

.spoiler-wrapper--doctor-page .spoiler-text__header {
  padding: 16px 24px;
}

.spoiler-wrapper--doctor-page .spoiler-text__header span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  margin-right: 20px;
}

@media (min-width: 1280px) {
  .spoiler-wrapper--doctor-page .spoiler-text__header span {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 768px) {
  .spoiler-wrapper--doctor-page .spoiler-text__header {
    margin-bottom: 24px;
    padding: 0;
    border: none;
  }
}

@media (min-width: 768px) {
  .spoiler-wrapper--doctor-page .spoiler-text__header .i-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .spoiler-wrapper--doctor-page .spoiler-text__content {
    padding-bottom: 0;
  }
}

.spoiler-wrapper--doctor-page .popup-button {
  display: flex;
  align-items: center;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
  padding: 15px 24px;
  margin: 0 -24px;
  position: relative;
  min-width: 320px;
  margin-top: -1px;
  width: 100vw;
}

@media (min-width: 768px) {
  .spoiler-wrapper--doctor-page .popup-button {
    margin: 0;
    width: auto;
    min-width: auto;
    min-height: auto;
    display: inline-flex;
    border: none;
    padding: 0;
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .spoiler-wrapper--doctor-page .popup-button {
    margin-bottom: 50px;
  }
}

.spoiler-wrapper--doctor-page .popup-button__ico {
  width: 30px;
  height: 30px;
  margin-right: 24px;
}

.spoiler-wrapper--doctor-page .popup-button__title {
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 1280px) {
  .spoiler-wrapper--doctor-page .popup-button__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.spoiler-wrapper--doctor-page .popup-button .i-arrow {
  position: relative;
  right: auto;
  top: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .spoiler-wrapper--doctor-page .popup-button .i-arrow {
    display: none;
  }
}

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

.nav-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
  margin-top: 0;
}

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

  .clinic-tabs .nav-tabs {
    justify-content: flex-end;
  }
}

@media (min-width: 1280px) {
  .nav-tabs {
    margin-bottom: 30px;
  }
}

.nav-tabs__link {
  margin-top: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #142c36;
  display: block;
  transition: color 0.3s, border-bottom 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-bottom: 1px dashed #ff7f32;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-tabs__link {
    margin-bottom: 0;
  }
}

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

.nav-tabs__item {
  text-align: center;
  margin-right: 50px;
}

@media (min-width: 768px) {
  .nav-tabs__item {
    margin-bottom: 0;
  }
}

.nav-tabs__item:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.nav-tabs__item.active .nav-tabs__link {
  cursor: default;
  border-bottom: 1px dashed transparent;
}

.nav-tabs__item.active .nav-tabs__link:hover {
  color: currentColor;
}

.nav-tabs__item.disabled {
  pointer-events: none;
}

.nav-tabs--button {
  margin: 0 -24px;
  position: relative;
  padding: 24px;
  background: #edf0f8;
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .nav-tabs--button {
    margin-bottom: 72px;
  }
}

@media (min-width: 1280px) {
  .nav-tabs--button {
    margin: 0 0 72px;
    width: 100%;
  }
}

.nav-tabs--button li {
  width: calc(50% - 6px);
  margin-right: 12px;
  background: #ffffff;
  margin-top: 12px;
  transition: background-color 0.3s;
}

.nav-tabs--button li:nth-child(2n) {
  margin-right: 0;
}

.nav-tabs--button li:first-child,
.nav-tabs--button li:nth-child(2) {
  margin-top: 0;
}

@media (min-width: 768px) {
  .nav-tabs--button li {
    width: calc(25% - 9px);
    margin: 12px 12px 0 0;
  }

  .nav-tabs--button li:nth-child(2n) {
    margin-right: 12px;
  }

  .nav-tabs--button li:first-child,
  .nav-tabs--button li:nth-child(2) {
    margin-top: 12px;
  }

  .nav-tabs--button li:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .nav-tabs--button li {
    width: auto;
  }
}

.nav-tabs--button li.active {
  background: #ff7f32;
}

.nav-tabs--button li.active .nav-tabs__link {
  color: #ffffff;
  border-bottom: none;
}

@media (min-width: 1280px) {
  .nav-tabs--button li.active:hover {
    background: #ff7f32;
  }
}

@media (min-width: 1280px) {
  .nav-tabs--button li:hover {
    background: #f7650d;
  }

  .nav-tabs--button li:hover .nav-tabs__link {
    color: #ffffff;
  }
}

.nav-tabs--button li .nav-tabs__link {
  border-bottom: none;
  color: #ff7f32;
  padding: 9px 7px;
  font-size: 14px;
  line-height: 22px;
  height: 100%;
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .nav-tabs--button li .nav-tabs__link {
    padding: 7px 24px;
  }
}

@media (min-width: 1024px) {
  .nav-tabs--button li .nav-tabs__link {
    padding: 10px 24px;
  }
}

.nav-tabs--button li .nav-tabs__item {
  width: 100%;
}

.nav-tabs--counting {
  display: flex;
  margin-right: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  counter-reset: item;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .nav-tabs--counting {
    margin-bottom: 16px;
  }
}

.nav-tabs--counting .nav-tabs__item {
  text-align: left;
  position: relative;
  margin-bottom: 8px;
  margin-right: 12px;
  padding-right: 8px;
}

@media (min-width: 768px) {
  .nav-tabs--counting .nav-tabs__item {
    margin-right: 10px;
    margin-bottom: 8px;
    padding-right: 18px;
  }
}

@media (min-width: 1280px) {
  .nav-tabs--counting .nav-tabs__item {
    margin-right: 32px;
  }
}

.nav-tabs--counting .nav-tabs__item:last-child {
  margin-right: 0;
}

.nav-tabs--counting .nav-tabs__item:last-of-type::after {
  display: none;
}

.nav-tabs--counting .nav-tabs__item::before {
  position: absolute;
  content: counters(item, "") ".";
  counter-increment: item;
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  top: 0;
  left: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.nav-tabs--counting .nav-tabs__item .tab-content {
  max-width: 100vw;
  display: block;
}

@media (min-width: 768px) {
  .nav-tabs--counting .nav-tabs__item .tab-content {
    display: none;
  }
}

.nav-tabs--counting .nav-tabs__item.mobile-hide {
  display: none;
}

@media (min-width: 768px) {
  .nav-tabs--counting .nav-tabs__item.mobile-hide {
    display: block;
  }
}

.nav-tabs--counting .nav-tabs__item.active .nav-tabs__link {
  color: #F50016;
  border-bottom: none;
}

.nav-tabs--counting .nav-tabs__item.active::before {
  color: #F50016;
}

.nav-tabs--counting .nav-tabs__item.filled .nav-tabs__link {
  border-bottom: 1px dashed #ff7f32;
}

.nav-tabs--counting .nav-tabs__link {
  font-family: "Montserrat", Arial, sans-serif;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  border-bottom: none;
  padding-left: 16px;
  padding-right: 8px;
  letter-spacing: 0;
  position: relative;
  display: inline;
}

.nav-tabs--counting .nav-tabs__link::after {
  content: "";
  position: absolute;
  right: 0;
  background: #7f7e7e;
  height: 14px;
  display: block;
  width: 1px;
  transform: rotate(27deg);
  bottom: 2px;
}

.nav-tabs--big-button {
  margin: 0 -24px;
  position: relative;
  margin: 0 0 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .nav-tabs--big-button {
    border-bottom: 1px solid #7f7e7e;
    margin: 32px 0;
    padding: 0;
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .nav-tabs--big-button {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .nav-tabs--big-button {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .nav-tabs--big-button.hidden-xs {
    display: none;
  }
}

.nav-tabs--big-button .nav-tabs__item {
  width: calc(50% - 6px);
  margin-right: 12px;
  background: #e8eaee;
  margin-top: 12px;
  transition: background-color 0.3s;
}

.nav-tabs--big-button .nav-tabs__item:nth-child(2n) {
  margin-right: 0;
}

.nav-tabs--big-button .nav-tabs__item:first-child,
.nav-tabs--big-button .nav-tabs__item:nth-child(2) {
  margin-top: 0;
}

@media (min-width: 768px) {
  .nav-tabs--big-button .nav-tabs__item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 185px;
    width: 100%;
    margin: 0;
    border: 1px solid #ffffff;
    border-bottom: none;
    border-top: none;
    margin-right: -1px;
  }
}

.nav-tabs--big-button .nav-tabs__item.active {
  background: #ff7f32;
  border-color: transparent;
}

.nav-tabs--big-button .nav-tabs__item.active .nav-tabs__link {
  color: #ffffff;
  border-bottom: none;
}

@media (min-width: 1280px) {
  .nav-tabs--big-button .nav-tabs__item.active:hover {
    background: #ff7f32;
  }

  .nav-tabs--big-button .nav-tabs__item.active:hover .nav-tabs__link {
    color: #ffffff;
  }
}

@media (min-width: 1280px) {
  .nav-tabs--big-button .nav-tabs__item:hover {
    background: #f7650d;
  }

  .nav-tabs--big-button .nav-tabs__item:hover .nav-tabs__link {
    color: #ffffff;
  }
}

.nav-tabs--big-button .nav-tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 7px;
  width: 100%;
  height: 100%;
  font-size: 13px;
  line-height: 22px;
  color: #142c36;
  border-bottom: none;
}

@media (min-width: 768px) {
  .nav-tabs--big-button .nav-tabs__link {
    padding: 12px 16px;
  }
}

.nav-tabs .tab-content {
  position: relative;
}

.nav-tabs .tab-content > .active {
  margin-top: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .nav-tabs .tab-content {
    display: none;
  }
}

.tab-pane {
  display: block;
}

.tab-pane--rec-form .loader {
  width: 100px;
  height: 100px;
}

.tab-content {
  position: relative;
}

.tab-content > .tab-pane {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.tab-content > .active {
  position: relative;
  clip: auto;
  width: auto;
  height: auto;
  margin: auto;
  overflow: visible;
}

.clinic-tabs__wrapper {
  position: relative;
  min-height: 690px;
}

@media (max-width: 1279px) {
  .clinic-tabs__wrapper {
    min-height: 1200px;
  }
}

.clinic-tabs .tab-pane.clinic-tab-section {
  opacity: 0;
  height: 0;
}

.clinic-tabs .tab-pane.clinic-tab-section.show {
  opacity: 1;
  height: -moz-fit-content;
  height: fit-content;
}

.clinic-tabs .select-holder .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ff7f32;
  border-bottom-style: solid !important;
}

.card-item-wrapper {
  display: block;
}

@media (min-width: 768px) {
  .card-item-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: -24px;
    margin-right: -24px;
  }
}

.card-item {
  border: 1px solid #7f7e7e;
  border-right: none;
  border-left: none;
  background-color: #ffffff;
  margin: -1px -24px 0;
  position: relative;
  transition: border-color 0.3s;
}

@media (min-width: 768px) {
  .card-item {
    width: calc(50% - 24px);
    border: 1px solid #7f7e7e;
    margin: 24px 24px 0 0;
    min-height: 363px;
  }
}

@media (min-width: 1280px) {
  .card-item {
    width: calc(33.3333333333% - 24px);
  }
}

@media (min-width: 1280px) {
  .card-item:hover {
    border-color: transparent;
    align-self: flex-start;
    z-index: 2;
  }

  .card-item:hover .card-item__inner {
    position: absolute;
    left: 0;
    top: 0;
    min-height: calc(100% + 82px);
    padding: 32px 22px 111px 24px;
    box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
    justify-content: flex-start;
  }

  .card-item:hover .card-item__bottom {
    display: flex;
  }
}

.card-item .action-block__place {
  margin-bottom: 0;
  margin-top: -1px;
}

.card-item__inner {
  background-color: #ffffff;
  width: 100%;
  padding: 16px 22px 16px 16px;
  transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
  .card-item__inner {
    padding: 24px 22px 111px 16px;
  }
}

@media (min-width: 1280px) {
  .card-item__inner {
    padding: 32px 22px 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.card-item__image {
  display: none;
}

@media (min-width: 768px) {
  .card-item__image {
    display: block;
    width: 100%;
    height: 200px;
    margin-right: 0;
  }
}

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

.card-item__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  transition: color 0.3s, border-bottom 0.3s;
  color: #142c36;
}

.card-item__title .i-arrow {
  fill: #ff7f32;
  transform: rotate(-90deg);
  margin-left: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .card-item__title {
    margin-bottom: 21px;
    align-items: flex-start;
  }

  .card-item__title .i-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .card-item__title {
    min-height: 52px;
  }
}

.card-item__middle {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 0;
  gap: 16px;
}

.card-item__row {
  display: flex;
  align-items: baseline;
}

.card-item__row .i-round {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.card-item__ico {
  margin-right: 12px;
}

@media (min-width: 768px) {
  .card-item__ico {
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .card-item__info {
    display: block;
    min-height: 122px;
  }

  .card-item__info .note-text {
    display: inline-block;
    margin-bottom: 4px;
    white-space: nowrap;
  }

  .card-item__info .note-text:not(.time) {
    width: 37px;
    margin-right: 16px;
  }
}

@media (min-width: 768px) {
  .card-item__top-wrapper {
    min-height: 191px;
  }
}

@media (min-width: 1280px) {
  .card-item__top-wrapper {
    min-height: 206px;
  }
}

.card-item__bottom {
  display: none;
}

@media (min-width: 768px) {
  .card-item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 21px;
  }
}

.card-item__bottom .note-text {
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
  flex-shrink: 0;
  font-weight: 400;
}

@media (min-width: 1280px) {
  .card-item__bottom .note-text {
    display: none;
  }
}

@media (min-width: 768px) {
  .card-item__bottom {
    position: absolute;
    bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .card-item__bottom {
    display: none;
    margin-top: 32px;
  }
}

.card-item__btn {
  max-width: 187px;
  padding: 14px 16px;
  margin-right: 16px;
  flex-shrink: 0;
}

.card-item__time {
  display: none;
}

@media (min-width: 768px) {
  .card-item__time {
    display: block;
  }
}

.card-item__text {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .card-item__text {
    margin-bottom: 16px;
    min-height: 52px;
  }
}

.card-item .place {
  display: none;
}

@media (min-width: 768px) {
  .card-item .place {
    display: flex;
  }
}

@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;
}

.text {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.text .link-phone {
  font-size: 1rem;
  line-height: 1.625rem;
  flex-shrink: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

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

  .text p {
    margin-right: 13px;
  }
}

.text__map {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .text__map {
    margin-bottom: 15px;
  }
}

.text__map-phone {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767px) {
  .text__map-phone {
    gap: 0;
  }
}

.text__map .header__btn {
  margin-left: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .text__map .header__btn {
    font-size: 14px;
    line-height: 18px;
    padding: 15px 20px;
  }
}

.text__map .link-phone {
  border-bottom: 1px solid #ff7f32;
  color: #142c36;
  transition: all 0.3s;
}

@media (hover: hover) {
  .text__map .link-phone:hover {
    color: #F50016;
    border-bottom: 1px solid transparent;
  }
}

.text__header {
  color: #6EA55A;
}

@media (max-width: 767px) {
  .text__header {
    line-height: inherit;
    margin-bottom: 20px;
  }
}

.ico-card {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .ico-card {
    margin: 0;
    width: calc(50% - 12px);
    height: calc(100% - 60px);
  }
}

@media (min-width: 1280px) {
  .ico-card {
    max-width: 395px;
  }
}

.ico-card__item-inner {
  width: 50%;
  border: 1px solid #d6d6d6;
  /*стили от 04.08.2023 (kirill)*/
}

.ico-card__item-inner:first-child {
  border-right: none;
  border-bottom: none;
}

.ico-card__item-inner:nth-child(3) {
  border-right: none;
}

.ico-card__item-inner:nth-child(2) {
  border-bottom: none;
}

@media (min-width: 768px) {
  .ico-card__item-inner {
    border: 1px solid #d6d6d6;
  }
}

@media screen and (min-width: 1024px) {
  .ico-card__item-inner {
    min-height: 162px;
  }
}

@media (min-width: 1280px) {
  .ico-card__item-inner {
    margin-bottom: -1px;
    text-align: left;
    width: 100%;
    min-height: 100%;
  }

  .ico-card__item-inner:first-child {
    border-top: 1px solid #d6d6d6;
    border-right: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
  }

  .ico-card__item-inner:nth-child(3) {
    border-right: 1px solid #d6d6d6;
  }

  .ico-card__item-inner:nth-child(2) {
    border-bottom: 1px solid #d6d6d6;
  }
}

@media (min-width: 1280px) {
  .ico-card__item-inner:hover {
    /*Стили от 04.08.2023 (kirill)*/
    opacity: 0.6;
  }
}

.ico-card__item {
  display: block;
  background-color: #ffffff;
  color: #142c36;
  text-align: center;
  padding: 22px 12px 24px;
  transition: box-shadow 0.3s, border-color 0.3s;
  height: 100%;
}

@media (min-width: 1024px) {
  .ico-card__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .ico-card__item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 18px 38px 21px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .ico-card__item {
    display: flex;
    align-items: center;
    text-align: start;
  }
}

.ico-card__ico {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  position: relative;
  /*стили от 04.08.2023 (kirill)*/
  flex-shrink: 0;
  /*стили от 04.08.2023 (kirill)*/
}

@media (min-width: 1280px) {
  .ico-card__ico {
    margin-right: 27px;
  }
}

@media (max-width: 1023px) {
  .ico-card__ico {
    margin: 0 auto 4px auto;
  }
}

@media (max-width: 767px) {
  .ico-card__ico {
    margin: 0 20px 0 0;
  }
}

.ico-card__ico .i-doctor,
.ico-card__ico .i-analyzes,
.ico-card__ico .i-house,
.ico-card__ico .i-program {
  margin: 0 20px 4px 0;
}

.ico-card__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1rem;
}

@media (min-width: 1280px) {
  .ico-card__title {
    font-size: 1rem;
    line-height: 1.625rem;
  }
}

.ico-card__arrow {
  display: none;
  flex-shrink: 0;
  width: 0;
  opacity: 0;
  height: 1px;
  position: relative;
  vertical-align: middle;
  background: #6b6b6b;
  margin: 0 0 0 12px;
  transition: width 0.3s;
}

.ico-card__arrow::after,
.ico-card__arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 1px;
  background: #6b6b6b;
  right: 0;
  top: 0;
}

.ico-card__arrow::after {
  transform: rotate(135deg);
  top: 3px;
  right: -2px;
}

.ico-card__arrow::before {
  transform: rotate(-135deg);
  top: -3px;
  right: -2px;
}

@media (min-width: 1280px) {
  .ico-card__arrow {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .ico-card--row {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 16px;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .ico-card--row {
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .ico-card--row .ico-card__item-inner {
    width: 25%;
    border-right: none;
  }

  .ico-card--row .ico-card__item-inner:first-child {
    border-bottom: 1px solid #d6d6d6;
  }

  .ico-card--row .ico-card__item-inner:last-child {
    border-right: 1px solid #d6d6d6;
  }

  .ico-card--row .ico-card__item-inner:nth-child(2) {
    border-bottom: 1px solid #d6d6d6;
  }
}

@media (min-width: 1280px) {
  .ico-card--row .ico-card__item-inner {
    width: calc(100% - 24px);
    min-width: 290px;
    margin-right: 24px;
    border-right: 1px solid #d6d6d6;
  }

  .ico-card--row .ico-card__item-inner:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .ico-card--row .ico-card__item-inner:hover {
    border-color: transparent;
  }
}

@media (min-width: 768px) {
  .ico-card--row .ico-card__item {
    padding: 22px 16px 24px;
  }
}

@media (min-width: 1280px) {
  .ico-card--row .ico-card__item {
    padding: 18px 23px 23px;
  }
}

@media (min-width: 768px) {
  .ico-card--row .ico-card__ico {
    min-height: 40px;
  }
}

@media (min-width: 1280px) {
  .ico-card--row .ico-card__ico {
    margin-right: 16px;
  }
}

.ico-card--row .ico-card__title {
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 768px) {
  .ico-card--row .ico-card__title {
    font-size: 14px;
    line-height: 20px;
  }
}

.ico-card--row .ico-card__arrow {
  display: none;
}

.ico-card--blue {
  margin-bottom: 48px;
  width: 100vw;
}

@media (min-width: 768px) {
  .ico-card--blue {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .ico-card--blue {
    max-width: 100%;
    margin-bottom: 64px;
  }
}

.ico-card--blue .ico-card__item-inner {
  width: 100%;
  border: none;
  min-height: 81px;
  height: auto;
  margin: 0 0 16px 0;
}

@media (min-width: 768px) {
  .ico-card--blue .ico-card__item-inner {
    margin: 0 24px 0 0;
    width: calc(50% - 12px);
  }
}

.ico-card--blue .ico-card__item-inner:last-child {
  margin-right: 0;
}

@media (min-width: 1280px) {
  .ico-card--blue .ico-card__item-inner:hover {
    z-index: auto;
    border-color: transparent;
  }
}

.ico-card--blue .ico-card__item {
  display: flex;
  background-color: #edf0f8;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 24px 58px;
  height: auto;
}

@media (min-width: 768px) {
  .ico-card--blue .ico-card__item {
    padding: 20px 70px;
  }
}

@media (min-width: 1024px) {
  .ico-card--blue .ico-card__item {
    flex-direction: row;
    min-height: auto;
  }
}

@media (min-width: 1280px) {
  .ico-card--blue .ico-card__item {
    padding: 22px 58px 21px;
  }
}

.ico-card--blue .ico-card__item:hover {
  z-index: auto;
  border-color: transparent;
}

.ico-card--blue .ico-card__item:hover svg {
  fill: #F50016 !important;
}

.ico-card--blue .ico-card__arrow {
  display: none;
}

.ico-card--blue .ico-card__ico {
  margin-bottom: 0;
  margin-right: 24px;
}

.ico-card--blue .ico-card__title {
  text-align: left;
}

@media (min-width: 1280px) {
  .ico-card--blue.ico-card--row .ico-card__title {
    font-size: 1rem;
    line-height: 1.625rem;
  }
}

.text-block {
  list-style: none;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  min-width: 320px;
  margin: 0 -24px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .text-block {
    width: 100%;
    margin: 0;
    margin-top: 28px;
  }
}

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

.text-block li {
  width: 100%;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .text-block li {
    width: 33.3%;
    margin: 0 24px 0 0;
  }

  .text-block li:last-child {
    margin-right: 0;
  }
}

.text-block li:last-child {
  margin-bottom: 0;
}

.text-block__item {
  background-color: #e8eaee;
  padding: 24px 40px 24px 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  transition: box-shadow 0.3s;
  transition-delay: 0s;
  display: block;
  color: #142c36;
  height: 100%;
}

@media (max-width: 767px) {
  .text-block__item {
    background-image: none !important;
  }
}

@media (min-width: 768px) {
  .text-block__item {
    padding: 42px 24px 38px;
    padding-right: 50%;
  }
}

@media (min-width: 1280px) {
  .text-block__item {
    margin-bottom: 0;
    padding: 40px 32px;
  }
}

@media (min-width: 1280px) {
  .text-block__item:hover {
    box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  }
}

.text-block .h4 {
  z-index: 1;
  position: relative;
  margin-bottom: 18px;
}

@media (min-width: 1280px) {
  .text-block .h4 {
    font-size: 24px;
    line-height: 34px;
  }
}

.text-block .btn-blue {
  z-index: 1;
  position: relative;
}

@media (min-width: 1280px) {
  .text-block .btn-blue {
    width: 100%;
    max-width: 170px;
    padding: 14px 24px;
  }
}

@media (max-width: 767px) {
  .text-block .btn-blue {
    position: absolute;
    bottom: 20px;
  }
}

.text-block p {
  z-index: 1;
  position: relative;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .text-block p {
    min-height: 52px;
  }
}

.text-block--main .price,
.text-block--main .h2 {
  display: none;
}

.text-block--main .h4,
.text-block--main h4 {
  margin-bottom: 16px;
}

.text-block--main p {
  min-height: auto;
  margin-bottom: 0;
}

.text-block--main .text-block__item {
  overflow: hidden;
  min-height: 206px;
  padding-bottom: 82px;
}

@media (min-width: 768px) {
  .text-block--main .text-block__item {
    min-height: 238px;
    padding-bottom: 98px;
  }
}

@media (min-width: 1280px) {
  .text-block--main .text-block__item {
    min-height: 256px;
    padding-bottom: 108px;
  }
}

.text-block--main .text-block p {
  margin-bottom: 0;
  font-weight: 300;
}

.text-block--main .text-block__bottom {
  position: absolute;
  bottom: 24px;
}

@media (min-width: 768px) {
  .text-block--main .text-block__bottom {
    bottom: 40px;
  }
}

@media (min-width: 1280px) {
  .text-block--lk {
    max-width: 1256px;
    width: 100vw;
    margin: 0 -11px;
    margin-top: -207px;
  }
}

.text-block--lk .text-block__item {
  margin-bottom: 0;
  position: relative;
  transition: background-color 0.3s;
  transition-delay: 0s;
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item {
    width: 33.3%;
  }
}

.text-block--lk .text-block__item.left {
  background-color: #cbf3cd;
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item.left {
    background-color: transparent;
  }
}

.text-block--lk .text-block__item.left .text-block__ico {
  top: calc(50% - 101px);
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item.left .text-block__ico {
    top: 167px;
    left: calc(50% - 154px);
  }
}

.text-block--lk .text-block__item.center {
  background-color: #edf0f8;
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item.center {
    background-color: transparent;
  }
}

.text-block--lk .text-block__item.center .text-block__ico {
  top: calc(50% - 120px);
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item.center .text-block__ico {
    top: 167px;
    left: calc(50% - 154px);
  }
}

.text-block--lk .text-block__item.right {
  background-color: #f7e5e8;
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item.right {
    background-color: transparent;
  }
}

.text-block--lk .text-block__item.right .text-block__ico {
  top: calc(50% - 120px);
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item.right .text-block__ico {
    top: 167px;
    left: calc(50% - 185px);
  }
}

@media (min-width: 768px) {
  .text-block--lk .text-block__item {
    padding: 71px 24px;
    padding-right: 50%;
  }
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item {
    padding: 267px 12px 54px;
    margin-right: 0;
    min-height: 463px;
  }
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__item:hover {
    box-shadow: none;
  }

  .text-block--lk .text-block__item:hover.left {
    background-color: #cbf3cd;
  }

  .text-block--lk .text-block__item:hover.center {
    background-color: #edf0f8;
  }

  .text-block--lk .text-block__item:hover.right {
    background-color: #f7e5e8;
  }

  .text-block--lk .text-block__item:hover .text-block__ico {
    opacity: 1;
  }
}

.text-block--lk .text-block__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 16px;
  z-index: 2;
  position: relative;
}

.text-block--lk .text-block .note-text {
  z-index: 2;
  position: relative;
}

.text-block--lk .text-block__ico {
  position: absolute;
  display: none;
  right: 24px;
}

@media (min-width: 768px) {
  .text-block--lk .text-block__ico {
    display: block;
  }
}

@media (min-width: 1280px) {
  .text-block--lk .text-block__ico {
    transition: opacity 0.3s;
    top: 167px;
    opacity: 0;
  }
}

.text-block--more-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.text-block--more-content li {
  width: 100%;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .text-block--more-content li {
    position: relative;
    min-height: 350px;
  }
}

@media (min-width: 768px) {
  .text-block--more-content li {
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .text-block--more-content li {
    width: calc(50% - 12px);
    margin-right: 24px;
  }

  .text-block--more-content li:nth-child(2n) {
    margin-right: 0;
  }

  .text-block--more-content li:first-child,
  .text-block--more-content li:nth-child(2) {
    margin-top: 0;
  }
}

.text-block--more-content li:last-child {
  margin-bottom: 0;
}

.text-block--more-content .text-block__item {
  padding: 16px 24px 24px;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  background-position: 100% center;
  color: #142c36;
}

@media (min-width: 768px) {
  .text-block--more-content .text-block__item {
    border: none;
    background-size: 343px 100%;
    padding: 16px 32px 24px;
  }
}

@media (min-width: 1280px) {
  .text-block--more-content .text-block__item {
    padding: 16px 32px 32px;
    background-size: 356px;
  }
}

@media (max-width: 767px) {
  .text-block--more-content .text-block__item {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .text-block--more-content .text-block__bg-wrapper {
    background-size: cover;
    height: 454px;
    background: #e7eff7;
    width: 454px;
    position: absolute;
    overflow: hidden;
    right: -109px;
    top: calc(50% - 224px);
    border-radius: 50%;
  }
}

@media (min-width: 1280px) {
  .text-block--more-content .text-block__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.text-block--more-content .h4 {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@media (min-width: 768px) {
  .text-block--more-content .h4 {
    font-size: 14px;
    line-height: 22px;
  }
}

.text-block--more-content .h2 {
  z-index: 1;
  position: relative;
  margin-bottom: 8px;
}

@media (min-width: 1280px) {
  .text-block--more-content .btn {
    padding: 14px 24px;
    width: auto;
  }
}

.text-block--more-content p {
  margin-bottom: 18px;
}

@media (min-width: 1280px) {
  .text-block--more-content p {
    margin-bottom: 10px;
  }
}

.text-block .price {
  z-index: 1;
  position: relative;
  margin-bottom: 16px;
}

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

@media (min-width: 1280px) {
  .text-block .price {
    margin-bottom: 0;
  }
}

.text-block__image {
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: 0;
  bottom: -10px;
  padding: 10px 0;
  max-width: 360px;
  background-color: #e7eff7;
  border-top-left-radius: 50px 50%;
  border-bottom-left-radius: 50px 50%;
}

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

.text-block__image img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  opacity: 0.3;
}

.video-block {
  width: 100vw;
  max-width: 100vw;
  margin: 0 -24px;
  background-color: #e8eaee;
  padding: 56px 24px;
  position: relative;
}

@media (min-width: 768px) {
  .video-block {
    margin-left: calc((100vw - 100%) / -2);
    padding: 56px calc((100vw - 100%) / 2);
  }
}

@media (min-width: 1280px) {
  .video-block {
    padding: 64px calc((100vw - 100%) / 2);
  }
}

.video-block p {
  margin-bottom: 24px;
  width: 512px;
  display: none;
}

@media (min-width: 768px) {
  .video-block p {
    display: block;
    margin-bottom: 49px;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .video-block__left {
    flex-shrink: 0;
    width: auto;
  }
}

@media (min-width: 1280px) {
  .video-block__left {
    display: block;
    width: 710px;
    margin-right: 24px;
    height: 397px;
    flex-shrink: 0;
  }

  .video-block__left .video-item {
    width: 100%;
    margin: 0;
    display: block;
    height: 100%;
    position: relative;
    padding-right: 0;
  }

  .video-block__left .video-item__video {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1280px) and (min-width: 1280px) {
  .video-block__left .video-item__img {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1280px) and (min-width: 1280px) {
  .video-block__left .video-item__note {
    display: none;
  }
}

@media (min-width: 1280px) and (min-width: 1280px) {
  .video-block__left .video-item__ico .i-play {
    fill: #ffffff;
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 1280px) and (min-width: 1280px) {
  .video-block__left .video-item__text {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.85);
    bottom: 0;
    right: 0;
    max-width: 530px;
    padding: 20px 24px;
  }
}

@media (min-width: 1280px) and (min-width: 1280px) {
  .video-block__left .video-item__title {
    font-size: 1.5rem;
    line-height: 2.125rem;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .video-block__left .video-item__author {
    display: block;
    background-color: #edf0f8;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .video-block__right {
    flex-shrink: 0;
    width: auto;
  }
}

@media (min-width: 768px) {
  .video-block__right {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 32px;
    padding-bottom: 34px;
    overflow-x: hidden;
  }

  .video-block__right.ps .ps__scrollbar-x-rail {
    display: block;
  }

  .video-block__right.ps .ps__scrollbar-y-rail {
    display: none;
  }
}

@media (min-width: 1280px) {
  .video-block__right {
    overflow: visible;
    display: block;
    margin: 0 0 0 -24px;
    padding: 0 0 0 24px;
  }

  .video-block__right.ps .ps__scrollbar-y-rail {
    display: block;
  }

  .video-block__right.ps .ps__scrollbar-x-rail {
    display: none;
  }
}

@media (min-width: 1280px) and (min-width: 1280px) {
  .video-block__right.hidden {
    max-height: 397px;
    overflow-x: visible;
    overflow-y: hidden;
  }
}

.video-block__right .ps__scrollbar-x-rail {
  display: none;
}

.video-block .btn .i-arrow {
  transform: rotate(-90deg);
  fill: #ffffff;
}

@media (min-width: 1280px) {
  .video-block .btn {
    position: absolute;
    top: -104px;
    right: 0;
  }

  .video-block .btn .i-arrow {
    width: 11px;
    height: 7px;
  }
}

.video-block--detail {
  padding: 24px 24px 40px;
}

@media (min-width: 768px) {
  .video-block--detail {
    margin-left: calc((100vw - 100%) / -2);
    padding: 30px calc((100vw - 100%) / 2) 40px;
  }
}

@media (min-width: 1280px) {
  .video-block--detail {
    padding: 56px calc((100vw - 100%) / 2) 64px;
  }
}

.video-block--detail .video-item {
  padding-right: 0;
}

.video-block--detail .video-block__content {
  margin-bottom: 0;
  overflow: hidden;
}

.video-block--detail .video-block__header {
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .video-block--detail .video-block__header {
    margin-bottom: 32px;
  }
}

.video-block--detail .btn {
  margin: 0 auto;
  display: flex;
}

@media (min-width: 768px) {
  .video-block--detail .btn {
    display: inline-flex;
    margin: 0;
  }
}

.video-block--detail.opened .video-block__content {
  margin-bottom: 32px;
}

.video-block--detail .h3 {
  max-width: calc(100% - 54px);
  margin-bottom: 0;
}

.video-block--detail .btn-ico-bg .i-arrow {
  transform: rotate(0);
}

@media (min-width: 768px) {
  .video-block--detail .btn {
    position: relative;
    top: auto;
    right: auto;
  }
}

.video-item {
  display: flex;
  margin-bottom: 32px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .video-item {
    display: block;
    margin-bottom: 0;
    width: 348px;
    margin-right: 24px;
    flex-shrink: 0;
  }
}

@media (min-width: 1280px) {
  .video-item {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    align-items: center;
    padding-right: 20px;
  }

  .video-item:first-child {
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .video-item:hover .video-item__ico .i-play {
    fill: #F50016;
  }

  .video-item:hover .video-item__title {
    color: #F50016;
  }
}

.video-item__ico {
  margin-right: 16px;
  z-index: 2;
}

.video-item__ico .i-play {
  position: relative;
  z-index: 4;
  width: 37px;
  height: 37px;
  fill: #ff7f32;
  transition: fill 0.3s;
}

@media (min-width: 768px) {
  .video-item__ico {
    position: absolute;
  }

  .video-item__ico .i-play {
    fill: #ffffff;
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 1280px) {
  .video-item__ico .i-play {
    width: 37px;
    height: 37px;
  }
}

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

  .video-item:hover .video-item .i-play {
    fill: #F50016;
  }
}

.video-item__img {
  display: none;
}

@media (min-width: 768px) {
  .video-item__img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .video-item__img img {
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
  }
}

.video-item__img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(20, 44, 54, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.video-item__video {
  box-shadow: none;
  transition: box-shadow 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .video-item__video {
    display: flex;
    width: 100%;
    height: 193px;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .video-item__video {
    width: 153px;
    height: 116px;
    margin-bottom: 0;
    margin-right: 16px;
    flex-shrink: 0;
  }
}

.video-item__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 8px;
  transition: color 0.3s ease-in-out;
}

.video-item__note {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
  color: #6b6b6b;
}

.video-item__author {
  display: none;
}

.video-item-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

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

@media (min-width: 768px) {
  .video-item-wrapper--detail {
    display: flex;
    flex-wrap: wrap;
    margin-right: -24px;
  }
}

.video-item__active {
  width: 710px;
}

.video-item--detail {
  display: block;
}

@media (min-width: 768px) {
  .video-item--detail {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 24px);
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .video-item--detail {
    width: calc(33% - 24px);
    margin-top: 0;
    margin-bottom: 32px;
  }
}

.video-item--detail .video-item__video {
  display: block;
  overflow: hidden;
  width: 272px;
  position: relative;
  margin-bottom: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .video-item--detail .video-item__video {
    margin-right: 24px;
    margin-bottom: 0;
    width: 100px;
    height: 76px;
  }
}

.video-item--detail .video-item__img {
  width: 100%;
  height: 152px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .video-item--detail .video-item__img {
    width: 100px;
    height: 76px;
  }
}

.video-item--detail .video-item__img img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 1280px) {
  .video-item--detail .video-item__img img {
    width: auto;
    height: 100%;
  }
}

.video-item--detail .video-item__title {
  text-align: left;
}

.video-item--detail .video-item__note {
  text-align: left;
}

.video-item--detail .video-item__ico {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .video-item--detail .video-item__ico {
    width: 32px;
    height: 32px;
  }
}

.video-item--detail .video-item__ico .i-play {
  fill: #ffffff;
  width: 64px;
  height: 64px;
}

@media (min-width: 768px) {
  .video-item--detail .video-item__ico .i-play {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .video-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 32px;
    padding-bottom: 34px;
    overflow-x: hidden;
  }

  .video-scroll-wrapper.ps .ps__scrollbar-x-rail {
    display: block;
  }

  .video-scroll-wrapper.ps .ps__scrollbar-y-rail {
    display: none;
  }
}

@media (min-width: 1280px) {
  .video-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .video-scroll-wrapper.ps .ps__scrollbar-x-rail {
    display: none;
  }

  .video-scroll-wrapper.ps .ps__scrollbar-y-rail:not(.video-block__right.ps .ps__scrollbar-y-rail) {
    display: none;
  }
}

.card-logo {
  width: calc(50% - 12px);
  margin-right: 24px;
  margin-top: 24px;
}

.card-logo:nth-child(2n) {
  margin-right: 0;
}

.card-logo:first-child,
.card-logo:nth-child(2) {
  margin-top: 0;
}

@media (min-width: 768px) {
  .card-logo {
    width: 172px;
    height: auto;
    margin: 0 12px;
  }

  .card-logo:nth-child(2n) {
    margin: 0 12px;
  }
}

@media (min-width: 1280px) {
  .card-logo {
    margin: 0 17px;
  }

  .card-logo:nth-child(2n) {
    margin: 0 17px;
  }
}

@media (min-width: 1280px) {
  .card-logo:hover .card-logo__note {
    transform: translateY(0);
  }
}

.card-logo__img {
  display: block;
  width: 100%;
  height: 74px;
  border: 1px solid transparent;
  margin-bottom: 16px;
  padding: 10px 24px;
}

@media (min-width: 768px) {
  .card-logo__img {
    height: 102px;
  }
}

@media (min-width: 1280px) {
  .card-logo__img {
    margin-bottom: 24px;
  }
}

.card-logo__img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-logo__note {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
  color: #6b6b6b;
  transition: transform 0.3s;
}

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

@media (min-width: 1280px) {
  .card-logo__note {
    transform: translateY(20px);
  }
}

.card-logo-row {
  display: flex;
  flex-wrap: wrap;
}

.card-logo-row .card-logo {
  height: 54px;
}

@media (min-width: 768px) {
  .card-logo-row .card-logo {
    display: block;
    width: calc(33.3% - 19px);
    height: 100px;
    margin: 0 19px 24px 0;
  }
}

@media (min-width: 1280px) {
  .card-logo-row .card-logo {
    display: block;
    width: calc(20% - 21px);
    margin: 0 21px 32px 0;
  }
}

.card-logo-row .card-logo__img {
  display: block;
  height: 54px;
  min-height: auto;
  padding: 6px 16px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .card-logo-row .card-logo__img {
    height: 100px;
    padding: 17px 36px;
  }
}

@media (min-width: 1280px) {
  .card-logo-row .card-logo__img {
    height: 111px;
    padding: 17px 36px;
  }
}

.card-logo-row .card-logo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.author {
  position: absolute;
  left: 0;
  top: 0;
  width: 182px;
  height: 100%;
}

.author__wrapper {
  padding: 50px 24px;
  text-align: center;
  height: 100%;
}

.author__logo {
  margin-bottom: 26px;
}

.author__logo .i-logo-in-video {
  width: 120px;
  height: 81px;
}

.author__image {
  width: 97px;
  height: 97px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.author__image img,
.author__image svg {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.author__image svg path {
  fill: #ff7f32;
}

.author__info {
  color: #000000;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
}

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

.filters-block {
  background-color: #edf0f8;
  position: relative;
  padding: 24px;
  z-index: 3;
  display: block;
}

@media (min-width: 768px) {
  .filters-block {
    padding-bottom: 9px;
  }
}

@media (min-width: 1280px) {
  .filters-block {
    display: flex;
    align-items: flex-start;
    padding: 24px 32px 58px;
  }
}

.filters-block__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}

.filters-block__row:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .filters-block__row {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block__row {
    margin-right: 43px;
  }
}

.filters-block__row .search-filter-wrapper {
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .filters-block__row .search-filter-wrapper {
    width: 255px;
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .filters-block__row .search-filter-wrapper {
    width: 290px;
    display: inline-block;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .filters-block__row .checkbox--ico {
    margin-top: 12px;
  }
}

@media (min-width: 1280px) {
  .filters-block__row .checkbox--ico {
    margin-top: 24px;
  }
}

@media (min-width: 768px) {
  .filters-block__row .c-select {
    margin-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .filters-block__row .c-select {
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block__row {
    margin-right: 32px;
    align-items: center;
  }

  .filters-block__row:last-child {
    margin-right: 0;
  }
}

.filters-block__button {
  border: 1px solid #ff7f32;
  height: 40px;
  padding: 8px 24px;
}

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

.filters-block__select {
  width: 100%;
}

@media (min-width: 768px) {
  .filters-block__select {
    width: auto;
    display: block;
  }
}

.filters-block__select-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.filters-block__select .map-link {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 22px;
  transition: color 0.3s;
}

@media (min-width: 1280px) {
  .filters-block__select .map-link:hover {
    color: #F50016;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .filters-block--doctors-list .filters-block__row .search-filter-wrapper {
    width: calc(50% - 24px);
  }
}

@media (min-width: 768px) {
  .filters-block--clinic-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 24px 32px 24px;
  }
}

@media (min-width: 1280px) {
  .filters-block--clinic-detail {
    margin: 0 0 32px 0;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .filters-block--clinic-detail .filters-block__row {
    margin-right: 32px;
    align-items: center;
    margin-bottom: 0;
  }

  .filters-block--clinic-detail .filters-block__row:last-child {
    margin-right: 0;
  }
}

.filters-block--clinic-detail .filters-block__row .search-filter-wrapper {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .filters-block--clinic-detail .filters-block__row .checkbox {
    margin-top: 24px;
  }
}

.filters-block--services {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .filters-block--services {
    margin-bottom: 32px;
    padding-bottom: 3px;
  }
}

@media (min-width: 1280px) {
  .filters-block--services {
    padding-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .filters-block--services .filters-block__row {
    display: inline-flex;
    margin-right: 32px;
    margin-bottom: 0;
  }

  .filters-block--services .filters-block__row:last-child {
    margin-right: 0;
  }
}

.filters-block--services .filters-block__select {
  display: block;
}

.filters-block--recording {
  padding-bottom: 32px;
}

@media (min-width: 1280px) {
  .filters-block--recording {
    display: block;
    padding-bottom: 43px;
  }
}

@media (min-width: 768px) {
  .filters-block--recording .checkbox {
    margin-top: 28px;
  }
}

@media (min-width: 1280px) {
  .filters-block--recording .checkbox {
    margin-top: 24px;
  }
}

.filters-block--recording .filters-block__row {
  flex-direction: column;
  width: auto;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .filters-block--recording .filters-block__row {
    flex-direction: row;
    align-items: center;
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .filters-block--recording .filters-block__row {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .filters-block--recording .filters-block__row .search-filter-wrapper {
    width: 534px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block--recording .filters-block__row .search-filter-wrapper {
    width: 580px;
  }
}

.filters-block--recording .filters-block__row:last-child {
  margin-bottom: 0;
}

.filters-block--form {
  padding-bottom: 24px;
}

.filters-block--form .filters-block {
  margin-bottom: 8px;
}

.filters-block--form .filters-block__row {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .filters-block--form .filters-block__row {
    margin-bottom: 0;
    flex-wrap: nowrap;
  }
}

@media (min-width: 1280px) {
  .filters-block--form .filters-block__row {
    margin-bottom: 0;
  }
}

.filters-block--form .filters-block__row .search-filter-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .filters-block--form .filters-block__row .search-filter-wrapper {
    width: 286px;
    margin-right: 24px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block--form .filters-block__row .search-filter-wrapper {
    width: 362px;
    margin-bottom: 0;
  }
}

.filters-block--form .filters-block__row .form-datepicker {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .filters-block--form .filters-block__row .form-datepicker {
    width: 218px;
    margin-right: 24px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block--form .filters-block__row .form-datepicker {
    width: 290px;
  }
}

.filters-block--form .filters-block__row .c-select {
  width: 100%;
  margin-bottom: 0;
}

.filters-block--form .filters-block__select {
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .filters-block--form .filters-block__select {
    width: 255px;
  }
}

@media (min-width: 1280px) {
  .filters-block--form .filters-block__select {
    margin-bottom: 0px;
    margin-right: 24px;
    width: 290px;
  }

  .filters-block--form .filters-block__select .c-select-wrapper {
    width: 100%;
  }
}

.filters-block--checkbox-list {
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .filters-block--checkbox-list {
    display: flex;
    align-items: flex-start;
  }
}

@media (min-width: 1280px) {
  .filters-block--checkbox-list {
    padding-bottom: 43px;
  }
}

.filters-block--checkbox-list .filters-block__row {
  flex-direction: column;
  width: auto;
  align-items: flex-start;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .filters-block--checkbox-list .filters-block__row {
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .filters-block--checkbox-list .filters-block__row {
    margin: 0 56px 0 0;
  }
}

@media (min-width: 768px) {
  .filters-block--checkbox-list .filters-block__row .search-filter-wrapper {
    width: 440px;
    margin-bottom: 16px;
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block--checkbox-list .filters-block__row .search-filter-wrapper {
    width: 540px;
  }
}

.filters-block--checkbox-list .button-wrapper {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .filters-block--checkbox-list .button-wrapper {
    margin-bottom: 0;
  }
}

.filters-block .form-input {
  border: 1px solid #ffffff;
}

.filters-block--radio-list {
  padding-bottom: 40px;
  margin-bottom: 24px;
}

.filters-block--radio-list .button-wrapper {
  margin-bottom: 0;
}

.filters-block--radio-list .search-filter-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .filters-block--radio-list .search-filter-wrapper {
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block--radio-list .search-filter-wrapper {
    margin-bottom: 16px;
  }
}

.filters-block--actions {
  padding: 24px;
  display: block;
  z-index: 3;
}

@media (min-width: 1280px) {
  .filters-block--actions {
    padding-bottom: 32px;
  }
}

.filters-block--actions .filters-block__row {
  width: 100%;
}

@media (min-width: 768px) {
  .filters-block--actions .filters-block__row {
    width: calc(50% - 11px);
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .filters-block--actions .filters-block__row {
    margin-bottom: 24px;
    width: 290px;
  }
}

.filters-block--actions .filters-block__select {
  width: 100%;
}

.filters-block--actions .c-select--filter {
  width: 100%;
}

.filters-block--actions .spoiler-box {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1025px) {
  .filters-block--actions .spoiler-box {
    margin-bottom: 0;
  }
}

.filters-block--actions .spoiler-box .nav-tabs {
  margin: 0 0 24px;
  padding: 0;
}

.filters-block--actions .spoiler-box__content-wrapper {
  width: 100%;
}

.filters-block--analyzes-page {
  z-index: 5;
}

@media (min-width: 768px) {
  .filters-block--analyzes-page {
    padding-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .filters-block--analyzes-page {
    padding-bottom: 8px;
  }
}

@media (min-width: 1280px) {
  .filters-block--analyzes-page {
    padding-bottom: 24px;
  }
}

.filters-block--analyzes-page .filters-block__select {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .filters-block--analyzes-page .filters-block__select {
    margin-top: 0;
    order: 1;
  }
}

@media (min-width: 1024px) {
  .filters-block--analyzes-page .filters-block__select {
    order: 2;
  }
}

@media (min-width: 768px) {
  .filters-block--analyzes-page .filters-block__row {
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .filters-block--analyzes-page .checkbox--ico {
    order: 2;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .filters-block--analyzes-page .checkbox--ico {
    order: 1;
    margin-top: 12px;
    margin-right: 16px;
  }
}

@media (min-width: 1280px) {
  .filters-block--analyzes-page .checkbox--ico {
    margin-top: 24px;
    margin-right: 24px;
  }
}

@media (min-width: 768px) {
  .filters-block--analyzes-page .search-filter-wrapper {
    width: 440px;
  }
}

@media (min-width: 1024px) {
  .filters-block--analyzes-page .search-filter-wrapper {
    width: 461px;
  }
}

@media (min-width: 1280px) {
  .filters-block--analyzes-page .search-filter-wrapper {
    width: 572px;
  }
}

.filters-block--licenses {
  padding: 24px;
  display: block;
  z-index: 3;
  margin: 0 -24px 24px;
}

@media (min-width: 768px) {
  .filters-block--licenses {
    margin: 0 -24px 32px;
  }
}

@media (min-width: 1280px) {
  .filters-block--licenses {
    padding-bottom: 32px;
  }
}

.filters-block--licenses .filters-block__row {
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid #ffffff;
  padding-top: 24px;
}

@media (min-width: 768px) {
  .filters-block--licenses .filters-block__row {
    margin-bottom: 0;
  }
}

.filters-block--licenses .filters-block__select {
  width: 100%;
}

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

@media (min-width: 1280px) {
  .filters-block--licenses .filters-block__select {
    width: 292px;
  }
}

.filters-block--licenses .c-select--filter {
  width: 100%;
  margin-bottom: 0;
}

.filters-block--licenses .nav-tabs {
  padding: 0;
  margin: 0;
  max-width: 100%;
  background: none;
}

@media (min-width: 768px) {
  .filters-block--licenses .nav-tabs {
    margin-right: -12px;
  }
}

@media (min-width: 768px) {
  .filters-block--licenses .nav-tabs li {
    width: auto;
    margin: 12px 12px 0 0;
  }
}

@media (min-width: 768px) {
  .filters-block--licenses .nav-tabs__item {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .filters-block--schedule {
    padding-bottom: 24px;
  }
}

@media (max-width: 1279px) {
  .filters-block--referral {
    margin-bottom: 24px;
  }
}

.search-filter-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  vertical-align: top;
  width: 100%;
}

@media (min-width: 768px) {
  .search-filter-wrapper {
    margin-right: 10px;
  }
}

.search-filter-wrapper.empty .search-filter__clear-btn {
  display: none;
}

.search-filter-wrapper .note-text {
  position: absolute;
  bottom: -28px;
  left: 0;
  display: none;
}

@media (min-width: 1280px) {
  .search-filter-wrapper .note-text {
    display: block;
  }
}

.search-filter-wrapper .loader-wrapper {
  display: block;
  position: relative;
}

.search-filter-wrapper .suggest-list {
  overflow: hidden;
}

.search-filter-wrapper.suggest-available .suggest-list {
  max-height: 686px;
  pointer-events: all;
  z-index: 10;
  opacity: 1;
}

.search-filter-wrapper.suggest-available .suggest-list .ps__scrollbar-x-rail {
  display: none;
}

.search-filter-wrapper .hint {
  display: none;
  position: absolute;
  bottom: -40px;
  left: 0;
}

@media (min-width: 1280px) {
  .search-filter-wrapper .hint {
    display: block;
  }
}

.search-filter {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 2px;
  color: #142c36;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  background-color: #ffffff;
  height: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 4px 43px 3px 16px;
  transition: box-shadow 0.3s;
  text-overflow: ellipsis;
}

@media (min-width: 1024px) {
  .search-filter {
    padding: 9px 51px 8px 24px;
    height: 50px;
  }
}

.search-filter::-moz-placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-overflow: ellipsis;
}

.search-filter::placeholder {
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-overflow: ellipsis;
}

.search-filter:-ms-input-placeholder {
  color: #6b6b6b;
}

.search-filter:focus {
  outline: none;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
}

@media (min-width: 768px) {
  .search-filter {
    font-size: 16px;
  }
}

.search-filter__clear-btn {
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: fill 0.3s ease-in-out;
}

.search-filter__clear-btn .i-close {
  fill: #ff7f32;
  width: 13px;
  height: 13px;
  transition: all 0.3s;
}

.suggest-list {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 100%;
  max-height: 0;
  padding: 16px 24px 12px;
  overflow: hidden;
  pointer-events: none;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  background-color: #ffffff;
  z-index: 0;
  opacity: 0;
  margin: 0;
  list-style: none;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .suggest-list {
    max-height: 686px;
  }
}

.suggest-list__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 16px;
  margin-bottom: 24px;
}

.suggest-list__sub-list-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .suggest-list__sub-list-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
}

.suggest-list__item {
  margin-bottom: 0px;
}

.suggest-list--checkbox {
  padding: 16px 24px 0px 16px;
}

@media (min-width: 768px) {
  .suggest-list--checkbox {
    padding: 32px 24px 0 24px;
  }
}

.suggest-list--checkbox .price {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  font-family: "Montserrat", Arial, sans-serif;
  margin-left: 32px;
}

@media (min-width: 768px) {
  .suggest-list--checkbox .price {
    margin-left: 16px;
  }
}

@media (min-width: 768px) {
  .suggest-list--checkbox .suggest-list__item {
    margin-bottom: 12px;
  }
}

.suggest-list--checkbox .suggest-item {
  padding-bottom: 0;
  cursor: default;
}

.suggest-list--checkbox .suggest-item .checkbox {
  margin-top: 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .suggest-list--checkbox .suggest-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

.suggest-list--checkbox-card {
  margin-top: 0;
  padding-top: 24px;
  padding-right: 16px;
  padding-left: 16px;
}

@media (min-width: 768px) {
  .suggest-list--checkbox-card {
    padding-right: 38px;
  }
}

@media (min-width: 1280px) {
  .suggest-list--checkbox-card {
    padding-right: 30px;
  }
}

@media (min-width: 768px) {
  .suggest-list--checkbox-card .suggest-list__item {
    margin-bottom: 0;
  }
}

.suggest-list--checkbox-card .suggest-list__sub-list.test-card {
  margin-top: 16px;
}

.suggest-list--checkbox-card .suggest-list__sub-list .suggest-list__item:first-child .test-card__item {
  margin-top: 0;
}

.suggest-list--checkbox-card .suggest-list__sub-list-item {
  margin-bottom: 24px;
}

.suggest-item {
  cursor: pointer;
}

.suggest-item__title {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #142c36;
  margin-bottom: 0;
  transition: color 0.3s ease-in-out;
}

.suggest-item a {
  padding: 4px 0px 4px 0px;
  display: block;
}

.suggest-item a:hover p,
.suggest-item a:focus p {
  color: #F50016;
}

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

.nav-pagination {
  list-style: none;
  padding: 0;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  margin-top: 0;
}

.nav-pagination__item {
  margin: 0 1px;
  display: inline-block;
}

.nav-pagination__item:last-of-type {
  margin-right: 0;
}

.nav-pagination__item span {
  display: inline-block;
  padding: 8px 16px;
}

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

@media (max-width: 767px) {
  .nav-pagination__item:last-of-type,
  .nav-pagination__item:first-of-type {
    display: block;
  }
}

.nav-pagination__link {
  font-size: 1rem;
  line-height: 1.625rem;
  color: #142c36;
  transition: all 0.3s;
  padding: 7px 16px;
  border-radius: 3px;
}

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

.nav-pagination__link--active {
  background: #e8eaee;
}

@media (min-width: 1280px) {
  .nav-pagination__link--active:hover {
    color: inherit;
  }
}

@media (max-width: 767px) {
  .nav-pagination__link--active {
    margin: 0 16px;
  }
}

@media (min-width: 768px) {
  .nav-pagination {
    font-size: 16px;
  }
}

.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 27px;
}

@media (min-width: 1280px) {
  .pagination-nav {
    margin-top: 48px;
    margin-bottom: 0;
    justify-content: flex-start;
  }
}

.pagination-arrow {
  display: inline-block;
}

.pagination-arrow__link {
  display: block;
  line-height: 0;
}

.pagination-arrow__link .i-arrow-long {
  width: 29px;
  height: 16px;
  stroke: #6b6b6b;
  transition: stroke 0.3s;
}

.pagination-arrow__link--previous {
  transition: all 0.3s;
}

.pagination-arrow__link--previous .i-arrow-long {
  transform: rotate(-180deg);
}

.pagination-arrow__link--next {
  transition: all 0.3s;
}

.pagination-arrow__link__arrow {
  transition: all 0.3s;
}

.pagination-arrow.disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.pagination-arrow:hover .i-arrow-long {
  stroke: #F50016;
}

.top-page-info__ico-block {
  margin-bottom: 21px;
}

@media (min-width: 768px) {
  .top-page-info__ico-block {
    display: flex;
    margin-bottom: 24px;
  }
}

.top-page-info__ico-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .top-page-info__ico-item {
    margin-right: 32px;
  }
}

.top-page-info__ico-item p {
  margin: 0;
}

.top-page-info__ico-item .note-text {
  margin-left: 12px;
}

.top-page-info__ico-item .svg {
  width: 24px;
  height: 24px;
  margin-left: -3px;
}

.top-page-info__place {
  margin-bottom: 26px;
}

.top-page-info__place .place {
  margin-right: 21px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .top-page-info__place {
    margin-bottom: 9px;
  }
}

.top-page-info__spoiler {
  width: 100vw;
  max-width: 100vw;
  min-width: 320px;
  margin: 0 -24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .top-page-info__spoiler {
    width: 100%;
    margin: 0 0 32px;
    max-width: 100%;
    display: flex;
  }
}

@media (min-width: 1280px) {
  .top-page-info__spoiler {
    margin-bottom: 48px;
  }
}

.top-page-info__spoiler .red {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.625rem;
}

@media (max-width: 768px) {
  .top-page-info__spoiler .red {
    display: none;
  }
}

.top-page-info__spoiler .spoiler-box {
  width: 100%;
  padding: 0 24px;
  border-top: 1px solid #ffffff;
  margin-bottom: 0;
}

.top-page-info__spoiler .spoiler-box:last-child {
  border-bottom: 1px solid #ffffff;
}

@media (min-width: 768px) {
  .top-page-info__spoiler .spoiler-box {
    width: 206px;
    margin-right: 73px;
    border: none;
    padding: 0;
  }

  .top-page-info__spoiler .spoiler-box:last-child {
    border: none;
  }
}

@media (min-width: 1280px) {
  .top-page-info__spoiler .spoiler-box {
    margin-right: 107px;
  }
}

.top-page-info__spoiler .spoiler-box__header-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: default;
}

.top-page-info__spoiler .spoiler-box__header-btn .h4 {
  margin-bottom: 0px;
}

.top-page-info__spoiler .spoiler-box__content {
  padding-bottom: 14px;
}

@media (min-width: 768px) {
  .top-page-info__spoiler .spoiler-box__content {
    padding-bottom: 4px;
  }
}

@media (min-width: 768px) {
  .top-page-info__spoiler .spoiler-box {
    overflow: visible;
    max-height: 100%;
  }
}

@media (min-width: 768px) {
  .top-page-info__spoiler .spoiler-box .i-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .top-page-info__row {
    display: flex;
    align-items: center;
  }
}

.top-page-info__bottom {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .top-page-info__bottom {
    justify-content: flex-start;
    align-items: center;
  }
}

.top-page-info__bottom .btn {
  flex-shrink: 0;
}

.top-page-info__bottom .btn.btn-blue {
  color: #fff;
}

.top-page-info__bottom .link {
  display: none;
}

@media (min-width: 768px) {
  .top-page-info__bottom .link {
    display: inline-block;
    color: #000;
    font-family: "Montserrat", Arial, sans-serif;
  }
}

.top-page-info__bottom .btn-blue {
  color: #fff;
}

@media (min-width: 768px) {
  .top-page-info__bottom .btn-blue {
    margin-right: 24px;
  }
}

@media (max-width: 767px) {
  .top-page-info__bottom .btn-outline-blue {
    padding: 0;
    width: 50px;
    height: 50px;
  }

  .top-page-info__bottom .btn-outline-blue .i-star {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .top-page-info__bottom .btn-outline-blue {
    margin-right: 24px;
  }
}

.top-page-info .marker-list {
  margin: 26px 0 31px;
}

.action-block {
  width: 100%;
  min-height: 154px;
  border: 1px solid #7f7e7e;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}

@media (min-width: 768px) {
  .action-block {
    min-height: 180px;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .action-block {
    min-height: 224px;
  }

  .action-block:hover {
    box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
    border-color: transparent;
  }
}

.action-block a {
  display: block;
}

.action-block__left {
  display: block;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.action-block h4 {
  color: #142c36;
  display: block;
  margin-bottom: 12px;
}

@media (min-width: 1280px) {
  .action-block h4 {
    font-size: 1.5rem;
    line-height: 2.125rem;
    margin-bottom: 12px;
  }
}

.action-block__right {
  position: relative;
  width: 100%;
  padding: 24px 24px 24px;
  color: #142c36;
}

@media (min-width: 1024px) {
  .action-block__right {
    padding: 27px 24px;
  }
}

@media (min-width: 1280px) {
  .action-block__right {
    padding-bottom: 32px;
  }
}

.action-block__right p {
  color: #142c36;
}

@media (min-width: 768px) {
  .action-block__right p {
    display: none;
  }
}

@media (min-width: 1024px) {
  .action-block__right p {
    display: block;
  }
}

.action-block__image {
  position: relative;
  display: block;
  max-width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .action-block__image {
    height: 154px;
  }
}

@media (min-width: 1024px) {
  .action-block__image {
    height: 224px;
  }
}

.action-block__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.action-block__place {
  display: block;
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .action-block__place {
    margin-bottom: 24px;
  }
}

.action-block__place .tooltip {
  display: none;
  color: #6b6b6b;
  font-weight: 400;
  border-bottom: none;
  font-size: 14px;
  line-height: 22px;
}

.action-block__place .tooltip-text {
  width: 176px;
  border-right: 3px;
}

.action-block__place .place {
  display: flex;
}

.action-block__place.many-places .tooltip {
  display: inline-flex;
  align-items: center;
}

.action-block__place.many-places .place {
  display: none;
}

.action-block__place .i-metro {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ff7f32;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  transition: border-color 0.3s;
}

.action-block__place .i-metro svg {
  fill: #ff7f32;
  flex-shrink: 0;
  transition: fill 0.3s;
}

.action-block--small {
  display: block;
  padding: 16px;
  padding-right: 18px;
  border: none;
  background: #e8eaee;
  min-height: 100%;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .action-block--small {
    padding: 24px;
    padding-bottom: 32px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .action-block--small {
    padding: 24px;
    padding-right: 35px;
  }
}

.action-block--small a {
  display: inline;
}

.action-block--small .action-block__inner {
  display: flex;
}

@media (min-width: 768px) {
  .action-block--small .action-block__inner {
    display: block;
  }
}

@media (min-width: 1280px) {
  .action-block--small .action-block__inner {
    display: flex;
    align-items: center;
  }
}

.action-block--small .action-block__left {
  width: auto;
  margin-right: 8px;
  color: #F50016;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  font-family: "Montserrat", Arial, sans-serif;
  height: auto;
}

@media (min-width: 768px) {
  .action-block--small .action-block__left {
    font-size: 38px;
    font-weight: 400;
    line-height: 52px;
    margin-right: 0;
    margin-bottom: 12px;
  }
}

@media (min-width: 1280px) {
  .action-block--small .action-block__left {
    font-size: 48px;
    line-height: 52px;
    margin-right: 16px;
    margin-bottom: 0;
  }
}

.action-block--small .action-block__right {
  width: auto;
  padding: 0;
}

.action-block--small .action-block__right .link-text {
  color: #6b6b6b;
}

@media (min-width: 768px) {
  .action-block--small .action-block__right p {
    display: block;
    margin-bottom: 8px;
  }

  .action-block--small .action-block__right p:last-child {
    margin-bottom: 0;
  }
}

.action-block--single {
  max-width: 272px;
  margin: 0 auto;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .action-block--single {
    max-width: 100%;
    align-items: flex-start;
    display: block;
    min-height: 154px;
  }
}

@media (min-width: 1024px) {
  .action-block--single {
    min-height: 224px;
  }
}

.action-block--single a {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .action-block--single a {
    display: flex;
    align-items: center;
    min-height: 154px;
  }
}

@media (min-width: 1024px) {
  .action-block--single a {
    min-height: 224px;
  }
}

.action-block--single h4 {
  padding: 0;
}

@media (min-width: 768px) {
  .action-block--single h4 {
    display: block;
  }
}

@media (max-width: 1023px) {
  .action-block--single .btn {
    display: none;
  }
}

@media (min-width: 768px) {
  .action-block--single .action-block__image {
    width: 272px;
  }
}

@media (min-width: 1024px) {
  .action-block--single .action-block__image {
    width: 395px;
    height: 224px;
  }
}

.action-block--single .action-block__right {
  width: 100%;
}

@media (min-width: 768px) {
  .action-block--single .action-block__right {
    padding: 0;
    display: flex;
    width: auto;
    justify-content: center;
    flex-direction: column;
    margin-left: 24px;
  }
}

.action-block--single .action-block__left {
  width: 100%;
}

@media (min-width: 768px) {
  .action-block--single .action-block__left {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .action-block--single .action-block__place {
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .action-block--all {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 100%;
  }
}

.action-block--all h4 {
  display: block;
  padding: 24px 24px 0;
}

@media (min-width: 1024px) {
  .action-block--all h4 {
    padding: 27px 24px 0;
  }
}

@media (min-width: 1280px) {
  .action-block--all h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 10px;
  }
}

.action-block--all .btn {
  display: none;
}

@media (min-width: 1280px) {
  .action-block--all .btn {
    display: inline-flex;
  }
}

.action-block--all .action-block {
  display: block;
}

.action-block--all .action-block__link {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.action-block--all .action-block__place {
  display: block;
}

.action-block--all .action-block__left {
  width: 100%;
  display: block;
}

.action-block--all .action-block__left::before {
  display: none;
}

@media (min-width: 768px) {
  .action-block--all .action-block__image {
    height: 196px;
  }
}

@media (min-width: 1024px) {
  .action-block--all .action-block__image {
    height: 224px;
  }
}

.action-block--all .action-block__bottom {
  display: block;
}

.action-block--all .action-block__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
}

@media (min-width: 768px) {
  .action-block--all .action-block__right {
    min-height: 70px;
  }
}

@media (min-width: 1280px) {
  .action-block--all .action-block__right {
    min-height: auto;
  }
}

@media (min-width: 768px) {
  .action-block--one {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 100%;
  }
}

.action-block--one a {
  width: 100%;
}

.action-block--one h4 {
  display: block;
  padding: 24px 24px 0;
}

@media (min-width: 1024px) {
  .action-block--one h4 {
    padding: 27px 24px 0;
  }
}

@media (min-width: 1280px) {
  .action-block--one h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 10px;
  }
}

.action-block--one .btn {
  display: none;
}

@media (min-width: 1280px) {
  .action-block--one .btn {
    display: inline-flex;
  }
}

.action-block--one .action-block {
  display: block;
}

.action-block--one .action-block__place {
  display: block;
}

.action-block--one .action-block__left {
  width: 100%;
  display: block;
}

.action-block--one .action-block__left::before {
  display: none;
}

@media (min-width: 768px) {
  .action-block--one .action-block__image {
    height: 196px;
  }
}

@media (min-width: 1024px) {
  .action-block--one .action-block__image {
    height: 174px;
  }
}

@media (min-width: 1280px) {
  .action-block--one .action-block__image {
    height: 224px;
  }
}

.action-block--one .action-block__bottom {
  display: block;
}

.action-block--one .action-block__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
}

.action-wrapper {
  margin: 0;
  padding: 0;
  margin-bottom: 48px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

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

  .action-wrapper.row-half-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .action-wrapper.row-half-item .action-block {
    width: calc(50% - 12px);
    min-height: auto;
    margin-bottom: 0;
  }

  .action-wrapper.row-half-item .action-block__right {
    padding: 24px;
  }

  .action-wrapper.row-half-item .action-block__right p {
    display: none;
  }

  .action-wrapper.row-half-item .action-block__left {
    width: 290px;
    height: 164px;
  }

  .action-wrapper.row-half-item .action-block .h4 {
    font-size: 1rem;
    line-height: 1.625rem;
    margin-bottom: 16px;
  }
}

.action-wrapper-all {
  list-style: none;
  padding: 0;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  justify-content: center;
}

@media (min-width: 768px) {
  .action-wrapper-all {
    justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .action-wrapper-all {
    padding-top: 80px;
  }
}

@media (max-width: 567px) {
  .action-wrapper-all {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

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

.gallery-wrapper-all {
  overflow: hidden;
  margin-bottom: 32px;
}

.gallery__item {
  width: calc(50% - 24px);
  display: block;
  height: 240px;
  margin: 12px;
}

@media (min-width: 1024px) {
  .gallery__item {
    width: calc(33.3% - 24px);
    position: relative;
    overflow: hidden;
    height: 213px;
  }
}

@media (min-width: 1280px) {
  .gallery__item {
    width: calc(25% - 24px);
    height: 197px;
  }
}

@media (min-width: 1280px) {
  .gallery__item:hover img {
    width: 125%;
    height: 125%;
    max-width: 125%;
    max-height: 125%;
  }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 100%;
  max-height: 100%;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, max-height 0.3s ease-in-out, max-width 0.3s ease-in-out;
}

.gallery__item--panorama {
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .gallery__item--panorama {
    width: 476px;
    height: 329px;
  }
}

@media (min-width: 1280px) {
  .gallery__item--panorama {
    width: 604px;
    height: 418px;
  }
}

.gallery__item--panorama::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(79, 160, 240, 0.5);
}

.gallery__item--panorama .i-play {
  position: absolute;
  left: calc(50% - 36px);
  top: calc(50% - 36px);
  width: 37px;
  height: 37px;
  fill: #ff7f32;
  transition: fill 0.3s;
  z-index: 1;
}

.gallery__item--panorama .i-panorama {
  width: 71px;
  height: 33px;
  position: absolute;
  top: 34px;
  left: calc(50% - 30px);
  z-index: 1;
}

@media (min-width: 768px) {
  .gallery__item--panorama .i-play {
    fill: #ffffff;
    width: 72px;
    height: 72px;
  }
}

.gallery-wrapper {
  display: flex;
  margin: -12px -12px 12px;
  flex-wrap: wrap;
  align-items: stretch;
}

.gallery-wrapper.lightbox-gallery {
  flex-wrap: wrap;
}

.gallery .btn-ico .btn-ico-bg .i-arrow {
  transform: rotate(0);
}

.gallery .btn-ico .open {
  display: inline;
}

.gallery .btn-ico .close {
  display: none;
}

.c-radio {
  position: relative;
  cursor: pointer;
  min-height: 28px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .c-radio {
    display: inline-block;
    margin-right: 20px;
  }
}

.c-radio:last-child .c-radio__text {
  margin-bottom: 0;
}

.c-radio__place {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #7f7e7e;
  border-radius: 50%;
  transition: border-color 0.1s;
  background-color: #ffffff;
}

.c-radio__place::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff7f32;
  transition: background-color 0.1s;
  opacity: 0;
}

.c-radio__text {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  padding-left: 29px;
}

@media (min-width: 768px) {
  .c-radio__text {
    margin-bottom: 0;
    font-size: 14px;
  }
}

.c-radio input[type=radio] {
  opacity: 0;
  position: absolute;
  left: -100%;
}

.c-radio input:checked ~ .c-radio__place {
  border-color: #ff7f32;
  cursor: default;
}

.c-radio input:checked ~ .c-radio__text {
  cursor: default;
}

@media (min-width: 1280px) {
  .c-radio:hover input:checked ~ .c-radio__text {
    color: #142c36;
  }
}

.c-radio input:checked ~ .c-radio__place:before {
  opacity: 1;
}

.c-radio input:disabled ~ .c-radio__place {
  background-color: #7f7e7e;
  cursor: default;
}

.c-radio input:disabled ~ .c-radio__text {
  cursor: default;
  color: #7f7e7e;
}

@media (min-width: 1280px) {
  .c-radio:hover .c-radio__place {
    border-color: #F50016;
  }

  .c-radio:hover .c-radio__place:before {
    background-color: #ff7f32;
  }

  .c-radio:hover input:checked ~ .c-radio__place:before {
    background-color: #ff7f32;
  }

  .c-radio:hover .c-radio__text {
    color: #F50016;
  }
}

.c-radio.table__item input:checked ~ .c-radio__text {
  z-index: 1;
  background: #edf0f8;
}

.c-radio.nav-tabs__item {
  height: 100%;
}

.c-radio.nav-tabs__item .c-radio__text {
  font-weight: 400;
  color: #ff7f32;
  font-family: "Montserrat", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-radio.nav-tabs__item input:checked ~ .c-radio__text {
  color: #ffffff;
  background: #ff7f32;
}

.radio-list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .radio-list {
    flex-wrap: nowrap;
    align-items: center;
  }
}

.radio-list__left,
.radio-list__rigth {
  width: calc(50% - 20px);
}

@media (min-width: 768px) {
  .radio-list__left,
  .radio-list__rigth {
    width: auto;
  }
}

.radio-list__label {
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .radio-list__label {
    width: auto;
    margin-right: 24px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
  }
}

@media (min-width: 1280px) {
  .radio-list__label {
    margin-right: 40px;
  }
}

.radio-list__left {
  margin-right: 40px;
}

@media (min-width: 768px) {
  .radio-list__left {
    margin-right: 0;
  }
}

.radio-list .c-radio {
  vertical-align: middle;
  min-height: auto;
}

.radio-list .c-radio__text {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .radio-list .c-radio__text {
    margin-bottom: 0;
  }
}

.compare-block {
  margin: 0 -24px;
  position: relative;
  padding: 24px 24px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .compare-block {
    padding: 16px 24px;
  }
}

@media (min-width: 1280px) {
  .compare-block {
    padding: 24px;
  }
}

.compare-block__filters > .checkbox {
  display: none;
}

@media (min-width: 1280px) {
  .compare-block__filters > .checkbox {
    display: inline-flex;
  }
}

.compare-block__program-row {
  order: 0;
}

@media (min-width: 1280px) {
  .compare-block__program-row {
    max-width: 897px;
    width: 100%;
    margin-left: auto;
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .compare-block__program-row > .checkbox {
    display: none;
  }
}

.compare-block__row {
  margin-bottom: 12px;
}

.compare-block__row.fixed .compare-block__row-wrapper {
  top: -1px;
  left: 0;
  position: fixed;
  z-index: 2;
  width: 100%;
  flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .compare-block__row.fixed .compare-block__row-wrapper {
    transform: translateX(-24px);
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .compare-block__row-wrapper {
    width: 1232px;
    transform: translateX(0);
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .compare-block__filters {
    min-height: 100%;
    align-self: stretch;
    width: 100%;
    margin-right: -1px;
  }
}

.compare-block__row.fixed .compare-block__program-row {
  flex-shrink: 0;
}

.compare-block__row.fixed .checkbox {
  display: none;
}

.compare-block__row.fixed .choose-program {
  background: #ffffff;
  margin: 0;
}

@media (min-width: 768px) {
  .compare-block__row.fixed .choose-program {
    margin-left: -1px;
    margin-right: -1px;
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .choose-program {
    min-height: 100%;
    height: 100%;
    width: 100%;
  }

  .compare-block__row.fixed .choose-program:after {
    content: "";
    width: 100%;
    height: 8px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -8px;
    background: linear-gradient(180deg, #D6D6D6 0%, rgba(255, 255, 255, 0.0001) 100%);
  }
}

.compare-block__row.fixed .choose-program__content .checkbox {
  display: flex;
}

@media (min-width: 768px) {
  .compare-block__row.fixed .choose-program__content .checkbox {
    display: inline-flex;
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .choose-program__content .checkbox {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .choose-program__header {
    margin-bottom: 0;
    min-height: 100%;
    height: 100%;
    width: 100%;
  }
}

.compare-block__row.fixed .choose-program.hidden {
  display: none;
}

.compare-block__row.fixed .program-card-wrapper {
  margin-top: -1px;
  margin-bottom: 0;
}

.compare-block__row.fixed .program-card-wrapper__inner {
  margin: 0;
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .program-card-wrapper__inner {
    max-width: 897px;
    left: auto;
  }
}

.compare-block__row.fixed .program-card {
  background: #ffffff;
}

.compare-block__row.fixed .program-card::after {
  content: "";
  width: 100%;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  background: linear-gradient(180deg, #D6D6D6 0%, rgba(255, 255, 255, 0.0001) 100%);
}

.compare-block__row.fixed .program-card__inner {
  padding: 9px 24px 10px;
}

@media (min-width: 768px) {
  .compare-block__row.fixed .program-card__inner {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px 2px;
    min-height: 46px;
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .program-card__inner {
    padding: 10px 16px;
  }
}

.compare-block__row.fixed .program-card__price {
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 768px) {
  .compare-block__row.fixed .program-card__price {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .program-card__price {
    font-size: 14px;
    line-height: 22px;
  }
}

.compare-block__row.fixed .program-card__title {
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .compare-block__row.fixed .program-card__title {
    margin-bottom: 0;
    margin-right: 16px;
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .program-card__title {
    margin-bottom: 8px;
  }
}

.compare-block__row.fixed .program-card__button {
  display: none;
}

@media (min-width: 768px) {
  .compare-block__row.fixed .program-card__btn-delete {
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1280px) {
  .compare-block__row.fixed .program-card__btn-delete {
    right: 3px;
    top: 3px;
    width: 35px;
    height: 35px;
  }
}

.compare-block .checkbox {
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .compare-block .checkbox {
    align-self: flex-end;
    order: 0;
    margin-bottom: 16px;
  }
}

.compare-block .row {
  align-items: flex-start;
}

.choose-program {
  margin: 0 -24px;
  width: 100vw;
  position: relative;
  opacity: 1;
  transition: visibility 0.3s, opacity 0.3s;
}

@media (min-width: 768px) {
  .choose-program {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .choose-program {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .choose-program {
    margin: 0;
    width: 320px;
  }
}

.choose-program .checkbox {
  display: flex;
}

@media (min-width: 768px) {
  .choose-program .checkbox {
    display: inline-flex;
    margin-right: 32px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .choose-program .checkbox {
    display: flex;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.choose-program .radio-list {
  flex-wrap: nowrap;
  padding-left: 10px;
}

.choose-program .radio-list__left {
  border-right: 1px solid #7f7e7e;
  margin-right: 0;
}

.choose-program .radio-list__left,
.choose-program .radio-list__right {
  width: 50%;
  padding: 16px;
  flex-shrink: 0;
}

.choose-program__content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #ffffff;
  padding: 16px 24px 12px;
  transition: opacity 0.3s;
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  box-shadow: 0 4px 4px rgba(107, 107, 107, 0.5);
}

@media (min-width: 1280px) {
  .choose-program__content {
    padding: 16px 24px 10px;
  }
}

.choose-program__content .note-text {
  display: block;
  color: #142c36;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .choose-program__content .note-text {
    margin-bottom: 16px;
  }
}

.choose-program__content .checkbox {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .choose-program__content .checkbox {
    margin-bottom: 2px;
  }
}

.choose-program__content .checkbox__text {
  font-size: 12px;
  line-height: 16px;
}

.choose-program__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  padding: 11px 24px;
  border-top: 1px solid #7f7e7e;
  border-bottom: 1px solid #7f7e7e;
  cursor: pointer;
  transition: background-color 0.4s;
}

@media (min-width: 768px) {
  .choose-program__header {
    border: 1px solid #7f7e7e;
  }
}

@media (min-width: 1280px) {
  .choose-program__header {
    margin-bottom: 40px;
  }

  .choose-program__header:hover {
    background: #7f7e7e;
  }
}

.choose-program.open .choose-program__content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.choose-program.open .choose-program__header .i-arrow {
  transform: rotate(180deg);
}

.choose-program.hidden {
  display: none;
}

@media (min-width: 1280px) {
  .choose-program.hidden {
    visibility: hidden;
    opacity: 0;
    display: flex;
  }
}

.table-list__item {
  font-family: "Montserrat", Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7f7e7e;
  padding: 8px 0px;
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 768px) {
  .table-list__item {
    padding-bottom: 15px;
  }
}

@media (min-width: 1280px) {
  .table-list__item {
    flex-wrap: nowrap;
    padding: 9px 0px 7px;
  }
}

.table-list__item-title {
  width: 100%;
  color: #142c36;
  margin-bottom: 4px;
  padding: 0 24px;
}

.table-list__item-title span {
  display: inline-block;
  margin-left: 12px;
  color: #6b6b6b;
}

@media (min-width: 1280px) {
  .table-list__item-title {
    width: 335px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

.table-list__item-info {
  color: #6b6b6b;
  width: 100%;
  padding: 0 24px;
}

@media (min-width: 1280px) {
  .table-list__item-info {
    padding: 0 16px;
  }
}

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

.table-list__item-info .sign {
  font-size: 16px;
}

.table-list__item-info span {
  display: inline-block;
  max-width: 118px;
}

@media (min-width: 768px) {
  .table-list__item-info span {
    max-width: 168px;
  }
}

@media (min-width: 1280px) {
  .table-list__item-info span {
    max-width: 212px;
  }
}

.table-list__info-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.table-list__info-wrapper.different .table-list__item-info {
  color: #F50016;
}

.program-card {
  max-width: calc(100% + 1px);
  border: 1px solid #7f7e7e;
  margin-left: -1px;
  display: inline-block;
  position: relative;
  width: calc(100% + 1px);
  overflow: visible;
  visibility: visible;
  transition: all 0.3s;
}

.program-card:first-child {
  margin-left: 0;
}

@media (min-width: 1280px) {
  .program-card:hover {
    box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
    border: 1px solid transparent;
  }

  .program-card:hover .program-card__title span {
    border-bottom: 1px solid transparent;
    color: #F50016;
  }
}

.program-card.hidden {
  max-width: 0%;
  overflow: hidden;
  opacity: 0;
  border: none;
  visibility: hidden;
  transition: max-width 0.3s;
  margin-left: 0;
  white-space: nowrap;
}

.program-card__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
  margin-bottom: 10px;
  color: #6b6b6b;
}

.program-card__title .link-text {
  transition: all 0.3s;
  border-bottom: 1px solid #ff7f32;
  display: inline;
}

@media (min-width: 1024px) {
  .program-card__title {
    margin-right: 16px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .program-card__title {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.program-card__price {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #142c36;
}

.program-card__bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media (min-width: 1280px) {
  .program-card__bottom {
    flex-direction: row;
    align-items: center;
  }
}

.program-card__bottom .btn {
  padding: 12px 32px;
}

.program-card__button {
  display: none;
}

@media (min-width: 1280px) {
  .program-card__button {
    display: inline-block;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.program-card__btn-delete {
  border: none;
  padding: 0;
  background: none;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.program-card__btn-delete .i-close {
  width: 13px;
  height: 13px;
  fill: #6b6b6b;
}

@media (min-width: 1280px) {
  .program-card__btn-delete:hover .i-close {
    fill: #F50016;
  }
}

@media (min-width: 768px) {
  .program-card__btn-delete {
    right: 4px;
    top: 4px;
    width: 35px;
    height: 35px;
  }
}

.program-card__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 16px 34px 24px 24px;
}

@media (min-width: 768px) {
  .program-card__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 17px 37px 15px 27px;
  }
}

@media (min-width: 1280px) {
  .program-card__inner {
    display: block;
    padding: 16px 16px 24px;
  }
}

@media (max-width: 768px) {
  .program-card__inner {
    gap: 10px;
  }
}

.program-card-wrapper {
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .program-card-wrapper {
    margin-bottom: 0;
  }
}

.program-card-wrapper__inner {
  position: relative;
  display: flex;
  width: 100vw;
  margin: 0 -24px;
  max-width: 768px;
}

@media (min-width: 1024px) {
  .program-card-wrapper__inner {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .program-card-wrapper__inner {
    margin: 0;
    width: 100%;
  }
}

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

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

.aside-coupon {
  background: #e8eaee;
}

.aside-coupon__header {
  display: block;
  padding: 0 24px 24px;
}

@media (min-width: 768px) {
  .aside-coupon__header {
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .aside-coupon__header {
    padding-bottom: 40px;
  }
}

.aside-coupon__header .h3 {
  margin-bottom: 0;
}

.aside-coupon__list {
  list-style: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #7f7e7e;
}

.aside-coupon__list-item {
  position: relative;
  border-top: 1px solid #7f7e7e;
  padding: 20px 24px 16px 24px;
}

.aside-coupon__list-item::before {
  display: none;
}

@media (min-width: 768px) {
  .aside-coupon__list-item {
    padding: 20px 24px 16px 24px;
  }
}

.aside-coupon__item-number {
  margin-bottom: 4px;
}

.aside-coupon__item-title {
  display: block;
  margin-bottom: 16px;
  padding-right: 16px;
  font-size: 14px;
}

.aside-coupon__item-remove {
  position: absolute;
  top: 21px;
  right: 23px;
}

.aside-coupon__item-remove .i-close {
  transition: fill 0.3s;
  width: 13px;
  height: 13px;
  fill: #6b6b6b;
}

.aside-coupon__item-remove:active .i-close {
  fill: #F50016;
}

@media (min-width: 1280px) {
  .aside-coupon__item-remove:hover .i-close {
    fill: #F50016;
  }
}

.aside-coupon__item-note-text {
  font-weight: 300;
  margin-top: -8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.aside-coupon__item-note-text .i-timetable {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.aside-coupon__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aside-coupon .price {
  font-size: 16px;
  line-height: 26px;
  color: #F50016;
}

.aside-coupon__info {
  display: block;
  padding: 32px 24px 24px;
  border-bottom: 1px solid #7f7e7e;
}

.aside-coupon__info .small {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #142c36;
  margin-bottom: 4px;
}

.aside-coupon__total-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F50016;
  padding: 0 24px;
  padding-top: 10px;
}

@media (min-width: 768px) {
  .aside-coupon__total-sum {
    padding-top: 32px;
  }
}

@media (min-width: 1280px) {
  .aside-coupon__total-sum {
    padding-top: 40px;
  }
}

.aside-coupon__total-sum .h3 {
  margin-bottom: 0;
}

.aside-coupon__place {
  padding: 0 24px;
  margin-bottom: 20px;
  display: block;
}

.aside-coupon__place > p {
  margin: 0;
}

.aside-coupon--analyzes .aside-coupon__header {
  padding-bottom: 0px;
}

.aside-coupon--analyzes .aside-coupon__place {
  padding-top: 24px;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .aside-coupon--analyzes .aside-coupon__place {
    padding-top: 32px;
  }
}

.aside-coupon--analyzes .aside-coupon__list {
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .aside-coupon--analyzes .aside-coupon__list {
    margin-bottom: 0;
  }
}

.aside-coupon--analyzes .aside-coupon__list-item {
  padding-top: 16px;
  padding-bottom: 24px;
}

@media (min-width: 1280px) {
  .aside-coupon--analyzes .aside-coupon__list-item {
    padding-bottom: 16px;
  }
}

.aside-coupon--analyzes .aside-coupon__item-number {
  margin-bottom: 12px;
}

.aside-coupon--selected-list {
  background: #ffffff;
}

.aside-coupon--selected-list .aside-coupon__list {
  border-bottom: none;
  margin-bottom: 24px;
}

.aside-coupon--selected-list .aside-coupon__list:last-child {
  margin-bottom: 0;
}

.aside-coupon--selected-list .aside-coupon__list-item {
  border: 1px solid #7f7e7e;
  margin-top: -1px;
  padding: 16px;
}

.aside-coupon--selected-list .aside-coupon__item-number {
  margin-bottom: 12px;
}

.aside-coupon--selected-list .aside-coupon__item-bottom {
  display: block;
}

.aside-coupon--selected-list .aside-coupon__item-bottom .c-radio {
  margin-right: 30px;
}

.aside-coupon--selected-list .price {
  margin-bottom: 20px;
}

.aside-coupon--visit .aside-coupon {
  padding-bottom: 32px;
}

.aside-coupon--visit .aside-coupon__list {
  border-bottom: none;
}

.aside-coupon--visit .aside-coupon__list-item {
  padding-top: 16px;
}

@media (max-width: 767px) {
  .aside-coupon--visit .aside-coupon__list-item {
    padding-top: 20px;
  }
}

.aside-coupon--visit .aside-coupon__header {
  padding-bottom: 24px;
}

@media (max-width: 1279px) {
  .aside-coupon--visit .aside-coupon__header {
    padding-bottom: 16px;
  }
}

.aside-coupon--visit .aside-coupon__item-title {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (max-width: 1279px) {
  .aside-coupon--visit .aside-coupon__item-title {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .aside-coupon--visit .aside-coupon__item-title {
    margin-bottom: 4px;
  }
}

.aside-coupon--visit .aside-coupon__info {
  padding-top: 0;
  padding-bottom: 16px;
}

.aside-coupon--visit .aside-coupon__info .note-text {
  color: #142c36;
}

.aside-coupon--visit .aside-coupon__info .note-text--address {
  color: #6b6b6b;
}

@media (max-width: 767px) {
  .aside-coupon--visit .aside-coupon__info .small {
    margin-top: 12px;
    margin-bottom: -1px;
  }
}

.aside-coupon--visit .aside-coupon__total-sum {
  padding-top: 20px;
}

@media (max-width: 1279px) {
  .aside-coupon--visit .aside-coupon__total-sum {
    padding-top: 16px;
  }
}

.contact-details {
  padding-top: 16px;
  display: block;
}

@media (min-width: 768px) {
  .contact-details {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 32px;
    border-top: 1px solid #7f7e7e;
  }
}

.contact-details__aside {
  margin: 0 -24px;
  position: relative;
  display: block;
  padding: 24px 0;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .contact-details__aside {
    margin: 0 24px 0 0;
    padding: 32px 0;
    width: 254px;
    flex-shrink: 0;
  }
}

@media (min-width: 1280px) {
  .contact-details__aside {
    width: 290px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .contact-details__aside--visit {
    margin-bottom: 24px;
  }
}

.contact-details__form {
  width: 100%;
}

.contact-details__form p {
  margin-bottom: 24px;
}

.contact-details__form-row {
  display: block;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contact-details__form-row {
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .contact-details__form-row {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}

.contact-details__form-row .form-group {
  display: block;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contact-details__form-row .form-group {
    width: 255px;
    margin-bottom: 24px;
  }

  .contact-details__form-row .form-group:first-child {
    width: 348px;
  }
}

@media (min-width: 1280px) {
  .contact-details__form-row .form-group {
    width: calc(33.33% - 16px);
    max-width: 290px;
    margin-bottom: 32px;
    margin-right: 24px;
  }

  .contact-details__form-row .form-group:first-child {
    width: calc(33.33% - 16px);
  }

  .contact-details__form-row .form-group:nth-child(3n) {
    margin-right: 0;
  }
}

.contact-details__form-col .form-group {
  width: 350px;
}

@media (max-width: 1279px) {
  .contact-details__form-col .form-group {
    width: 250px;
  }
}

.contact-details__form-col .form-group--phone,
.contact-details__form-col .form-datepicker {
  width: 200px;
}

.contact-details__btn {
  height: 30px;
}

.contact-details__btn.close {
  margin-bottom: 0;
  margin-top: 16px;
}

.contact-details__btn.open {
  display: inline-block;
}

.contact-details__checkbox.checkbox:not(.checkbox--simple) {
  margin-bottom: 16px;
}

.contact-details__checkbox:not(.checkbox--simple) {
  align-items: flex-start;
}

.contact-details__checkbox.checkbox--simple {
  margin-top: 8px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contact-details__checkbox.checkbox--simple {
    margin-top: 16px;
  }
}

.contact-details__bottom {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

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

.contact-details__bottom .form-group {
  position: relative;
}

.contact-details__bottom .form-group .help-block {
  position: absolute;
  bottom: 0;
  margin-top: 0;
}

.contact-details__comment {
  margin-bottom: 16px;
  width: 100%;
}

@media (min-width: 1280px) {
  .contact-details__comment {
    margin-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .contact-details__comment textarea.form-input {
    width: 604px;
  }
}

.total-record-form {
  border-top: 1px solid #7f7e7e;
  padding-top: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .total-record-form .h3 {
    margin-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .total-record-form .h3 {
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .total-record-form {
    padding-top: 32px;
  }
}

.total-record-form__item {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .total-record-form__item {
    display: flex;
  }
}

.total-record-form__item-left {
  margin-bottom: 4px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .total-record-form__item-left {
    width: 160px;
    margin: 0 24px 0 0;
  }
}

.total-record-form__item .total-record-form__list {
  margin-bottom: 0;
}

.total-record-form__item .total-record-form__list-wrapper {
  margin-left: 0;
  margin-bottom: 0;
}

.total-record-form__item:last-of-type {
  margin-bottom: 8px;
}

.total-record-form__info p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .total-record-form__info p {
    width: auto;
  }
}

@media (min-width: 768px) {
  .total-record-form__info .note-text {
    margin-top: 4px;
  }
}

.total-record-form__info .currency.rub {
  font-weight: 500;
}

.total-record-form__bottom {
  margin-top: -8px;
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", Arial, sans-serif;
}

.total-record-form__bottom .note-text {
  display: inline-block;
  color: #000;
  font-family: "Montserrat", Arial, sans-serif;
  margin-right: 24px;
}

@media (min-width: 768px) {
  .total-record-form__bottom {
    margin-left: 184px;
  }
}

.total-record-form__list {
  margin: 0;
  padding: 0;
  padding-left: 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .total-record-form__list {
    margin-bottom: 32px;
  }
}

.total-record-form__list-item {
  margin-bottom: 16px;
}

.total-record-form__list-item p {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .total-record-form__list-item p {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .total-record-form__list-item .text {
    width: 100%;
    max-width: 436px;
  }
}

@media (min-width: 768px) {
  .total-record-form__list-item-inner {
    display: flex;
    justify-content: space-between;
  }
}

.total-record-form__list .price {
  margin-left: -18px;
}

@media (min-width: 768px) {
  .total-record-form__list .price {
    margin-left: 0;
  }
}

@media (min-width: 1280px) {
  .total-record-form__list .price {
    font-size: 16px;
    line-height: 24px;
  }
}

.total-record-form__list-wrapper {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .total-record-form__list-wrapper {
    width: 534px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .total-record-form__list-wrapper {
    width: 548px;
  }
}

.total-record-form__list-wrapper .total-record-form__bottom {
  margin-left: 0;
  margin-top: 24px;
}

.total-record-form__list-wrapper .total-record-form__bottom .note-text {
  margin-bottom: 10px;
}

.tooltip {
  position: relative;
  border-bottom: 1px dashed #ff7f32;
  transition: all 0.3s;
  cursor: pointer;
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.tooltip .i-clinic {
  transition: fill 0.3s;
  fill: #ff7f32;
}

.tooltip.dashed {
  transition: border-bottom-color 0.3s;
}

.tooltip .dashed {
  transition: border-bottom-color 0.3s;
}

.tooltip:hover {
  color: #F50016;
  border-color: transparent;
}

.tooltip:hover .i-clinic {
  fill: #F50016;
}

.tooltip:hover .i-metro {
  border-color: #F50016;
}

.tooltip:hover .i-metro svg {
  fill: #F50016;
}

.tooltip:hover.dashed {
  border-color: transparent;
}

.tooltip:hover .dashed {
  border-color: transparent;
}

.tooltip--warning {
  border-bottom: none;
  cursor: auto;
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
  font-weight: 400;
}

.tooltip--warning .tooltip-ico {
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}

.tooltip--warning .tooltip-ico .i-warning {
  transition: fill 0.3s;
  fill: #ff7f32;
  width: 17px;
  height: 14px;
}

.tooltip--warning .tooltip-btn {
  cursor: pointer;
  display: inline-block;
  border-bottom: 1px dashed #ff7f32;
  vertical-align: middle;
}

.tooltip--warning .tooltip-text {
  width: 272px;
  left: auto;
  right: 0;
}

.tooltip--warning .tooltip-text::after {
  right: 12px;
  left: auto;
}

@media (min-width: 768px) {
  .tooltip--warning .tooltip-text {
    width: auto;
    min-width: 287px;
    right: auto;
    left: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
  }

  .tooltip--warning .tooltip-text::after {
    border: 3px solid transparent;
    border-right: 3px solid #6b6b6b;
    position: absolute;
    left: -6px;
    right: auto;
    bottom: 50%;
    transform: translateY(50%);
  }
}

.tooltip--warning:hover {
  border-bottom: none;
}

.tooltip--warning:hover .tooltip-btn {
  border-bottom: 1px dashed transparent;
}

.tooltip--warning:hover .tooltip-ico .i-warning {
  fill: #F50016;
}

.tooltip--price {
  border-bottom: none;
}

.tooltip--price:hover {
  border-bottom: none;
}

.tooltip--price .tooltip-text {
  white-space: nowrap;
  min-width: 90px;
}

@media (min-width: 1280px) {
  .tooltip--large .tooltip-text {
    width: 331px;
  }
}

.tooltip--xs.right .tooltip-text {
  right: 0;
  width: 263px;
  left: auto;
}

.tooltip--xs.right .tooltip-text::after {
  right: 12px;
  left: auto;
}

.tooltip--xs.left .tooltip-text {
  left: 0;
  width: 263px;
}

.tooltip--xs.left .tooltip-text::after {
  left: 12px;
}

@media (min-width: 768px) {
  .tooltip--xs .tooltip-text {
    display: none;
  }
}

.tooltipster-sidetip {
  max-width: 288px;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-box {
  background: #6b6b6b;
  box-shadow: 0px 7px 20px rgba(79, 160, 240, 0.4);
  border-radius: 3px;
  border: none;
  padding: 8px 12px;
  z-index: 99;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-content {
  font-family: "Montserrat", Arial, sans-serif;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  padding: 0;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow {
  z-index: 99;
  bottom: -4px;
  width: 10px;
  height: 10px;
  left: 3px;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border {
  border: 6px solid transparent;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -11px;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border {
  top: 7px;
  border-bottom: 5px solid #6b6b6b;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-uncropped {
  top: -1px;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border {
  bottom: 7px;
  border-top: 5px solid #6b6b6b;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border {
  bottom: 7px;
  border-right: 5px solid #6b6b6b;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow {
  right: 1px;
  left: auto;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border {
  bottom: 7px;
  border-left: 5px solid #6b6b6b;
}

.selected-item {
  background: #ffffff;
  font-size: 12px;
  line-height: 22px;
  display: flex;
  white-space: nowrap;
  min-height: 40px;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 8px;
  margin-right: 8px;
}

@media (min-width: 1280px) {
  .selected-item {
    font-size: 14px;
  }
}

.selected-item .btn-link::before,
.selected-item .btn-link::after {
  display: none;
}

.selected-item .btn-link:hover .i-close {
  fill: #F50016;
}

.selected-item .i-close {
  transition: fill 0.3s;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  fill: #6b6b6b;
}

.selected-item-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -8px;
  margin-right: -8px;
}

@media (min-width: 768px) {
  .selected-item-list {
    padding-top: 28px;
  }
}

.selected-item-list--analyzes {
  margin-right: 0;
  padding-top: 0;
}

.selected-item-list--analyzes .selected-item {
  border: 1px solid #7f7e7e;
}

.dragdealer {
  background: #edf0f8;
  height: 10px;
  border-radius: 5px;
  width: 100vw;
  max-width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .dragdealer {
    height: 100%;
    top: 0;
    width: 10px;
    right: 0;
    left: auto;
    margin: 0;
  }
}

.handle {
  width: 50px;
  height: 10px;
  box-shadow: 0 4px 3px rgba(20, 44, 54, 0.1);
  border-radius: 5px;
  background-color: #ff7f32;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .handle {
    width: 10px;
    height: auto;
    top: 0;
    bottom: auto;
  }
}

.scroll {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .scroll {
    height: 600px;
  }
}

.scroll-content-wrap {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .scroll-content-wrap {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}

.scroll-content-wrap.visible {
  overflow: visible !important;
}

.scroll {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .scroll {
    height: 100%;
  }
}

.scroll.visible {
  overflow: visible;
}

.test-card {
  width: 100%;
  list-style: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

.test-card__header {
  padding: 0 24px 24px;
}

@media (min-width: 768px) {
  .test-card__header {
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .test-card__header {
    padding-bottom: 40px;
  }
}

.test-card__header .h3 {
  margin-bottom: 0;
}

.test-card__item-inner {
  display: block;
  padding: 16px;
  color: #142c36;
}

@media (min-width: 768px) {
  .test-card__item-inner {
    padding: 16px 24px 16px 24px;
  }
}

.test-card__item {
  position: relative;
  width: 100%;
  box-shadow: inset 0 0 0 1px #7f7e7e;
  margin-top: -1px;
}

.test-card__item::before {
  display: none;
}

.test-card__item:first-child {
  margin-top: 0;
}

.test-card__item:first-of-type {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.test-card__item:last-of-type {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.test-card__item-number {
  margin-bottom: 12px;
  position: static;
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .test-card__item-number {
    margin-bottom: 4px;
  }
}

.test-card__item-title {
  color: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  display: block;
  transition: color 0.3s;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .test-card__item-title {
    max-width: 593px;
    line-height: 22px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .test-card__item-title {
    max-width: 645px;
  }
}

@media (hover: hover) {
  .test-card__item-title:hover {
    color: #ff7f32;
  }
}

.test-card__item-remove {
  display: none;
  position: absolute;
  top: 21px;
  right: 23px;
}

.test-card__item-remove .i-close {
  transition: fill 0.3s;
  width: 13px;
  height: 13px;
  fill: #6b6b6b;
}

.test-card__item-remove:hover .i-close {
  fill: #F50016;
}

.test-card__item-note-text {
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.test-card__item-note-text .note-text {
  min-width: 76px;
}

.test-card__item-note-text .i-timetable {
  fill: #ff7f32;
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.test-card__item-bottom {
  display: none;
}

.test-card__item-bottom .c-radio {
  margin-right: 30px;
}

@media (min-width: 768px) {
  .test-card__item-bottom .c-radio {
    margin-right: 12px;
  }
}

.test-card__item-bottom p {
  margin: 0;
  display: inline-block;
}

@media (min-width: 768px) {
  .test-card__item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
  }
}

.test-card__item .home-ico {
  display: none;
  margin-left: 32px;
}

.test-card__item .home-ico .i-home-blue {
  width: 14px;
  height: 19px;
  flex-shrink: 0;
  margin-right: 12px;
}

.test-card__item.has-error {
  padding-bottom: 9px;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px #F50016;
  z-index: 1;
}

@media (min-width: 768px) {
  .test-card__item.has-error {
    padding-bottom: 16px;
  }
}

.test-card__item.home-available .home-ico {
  display: flex;
}

.test-card__description {
  display: none;
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (min-width: 768px) {
  .test-card__description {
    max-width: 593px;
  }
}

@media (min-width: 1024px) {
  .test-card__description {
    max-width: 645px;
  }
}

.test-card .note-text {
  position: static;
}

.test-card .radio-list {
  display: inline-flex;
}

@media (min-width: 768px) {
  .test-card .radio-list {
    margin-right: 20px;
  }
}

.test-card .price {
  font-size: 16px;
  line-height: 26px;
  color: #F50016;
  margin-bottom: 20px;
  margin-left: 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .test-card .price {
    margin-bottom: 0;
  }
}

.test-card__icon-row {
  display: flex;
  align-items: flex-start;
}

.test-card.selected .test-card__item {
  margin-top: -1px;
}

@media (min-width: 768px) {
  .test-card.selected .test-card__item-title {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (min-width: 768px) {
  .test-card.selected .test-card__item-inner {
    padding: 16px 62px 16px 24px;
  }
}

.test-card.selected .test-card__item-note-text {
  margin-bottom: 16px;
}

.test-card.selected .test-card__item-remove {
  display: block;
}

.test-card.selected .test-card__item-bottom {
  display: block;
}

.test-card--with-text {
  margin-bottom: 32px;
}

.test-card--with-text .test-card__item {
  border: 2px solid #e8eaee;
  transition: box-shadow 0.3s;
  box-shadow: none;
}

.test-card--with-text .test-card__item:nth-child(2n) {
  background: #e8eaee;
  border: none;
}

@media (min-width: 768px) {
  .test-card--with-text .test-card__item-row {
    margin-bottom: 4px;
  }
}

@media (min-width: 1280px) {
  .test-card--with-text .test-card__item:hover {
    box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
    z-index: 2;
  }
}

@media (min-width: 768px) {
  .test-card--with-text .test-card__description {
    display: block;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .test-card--with-text .test-card__icon-row {
    margin-top: 16px;
  }
}

.test-card-wrapper {
  margin-bottom: 0;
}

.test-card-wrapper:first-child {
  margin-bottom: 16px;
}

.test-card-wrapper .spoiler-box__header-btn {
  border-bottom: 1px solid #e8eaee;
  padding: 16px 0;
  justify-content: space-between;
}

@media (min-width: 1280px) {
  .test-card-wrapper .spoiler-box__header-btn {
    margin: 0 30px 13px;
    padding: 8px 0 21px;
  }
}

.test-card-wrapper .spoiler-box__header-btn h3,
.test-card-wrapper .spoiler-box__header-btn .h3 {
  margin-right: 24px;
}

@media (min-width: 768px) {
  .test-card-wrapper.opened {
    margin-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .test-card-wrapper.opened {
    margin-bottom: -2px;
  }
}

@media (min-width: 1280px) {
  .test-card-wrapper.opened .spoiler-box__content-wrapper {
    margin-top: -16px;
  }
}

@media (min-width: 1280px) {
  .test-card-wrapper.opened .spoiler-box__header-btn {
    margin-bottom: 0;
  }
}

.filter-checkbox {
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

@media (min-width: 768px) {
  .filter-checkbox {
    border-top: 1px solid #ffffff;
    padding-top: 16px;
  }
}

@media (min-width: 1280px) {
  .filter-checkbox {
    padding-top: 24px;
  }
}

.filter-checkbox__item {
  margin-bottom: 12px;
  margin-right: 12px;
}

.page-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #142c36;
}

@media (min-width: 1280px) {
  .page-content--analyzes {
    padding-left: 30px;
  }
}

.page-content > h3:first-child,
.page-content > h2:first-child,
.page-content > h4:first-child {
  margin-top: 0;
}

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

.page-content h2,
.page-content .h2 {
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 32px;
}

.page-content h3,
.page-content .h3 {
  margin-top: 32px;
}

.page-content h4,
.page-content .h4 {
  margin-top: 24px;
}

.page-content a {
  border-bottom: 1px solid #ff7f32;
  color: #142c36;
  transition: all 0.3s;
}

@media (min-width: 1280px) {
  .page-content a:hover {
    color: #F50016;
    border-bottom: 1px solid transparent;
  }
}

.page-content ul {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (min-width: 768px) {
  .page-content ul {
    margin: 0 0 38px 0;
  }
}

@media (min-width: 1280px) {
  .page-content ul {
    margin-bottom: 24px;
  }
}

.page-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}

.page-content ul li::before,
.page-content ul 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;
}

.page-content ul li .sub-info {
  margin-top: 8px;
  margin-left: -30px;
  line-height: 22px;
  font-size: 14px;
  color: #6b6b6b;
}

.page-content span.red {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  line-height: 22px;
  color: #F50016;
  font-weight: 400;
}

.page-content span.red a {
  color: inherit;
  border-bottom: none;
}

.page-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 24px;
  margin-bottom: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-content .spoiler-box__header-btn {
  margin-bottom: 16px;
}

.page-content .spoiler-box__btn-show {
  margin-top: 0;
}

.split-container .page-content h4,
.split-container .page-content .h4 {
  margin-top: 2rem;
}

.split-container .page-content p {
  margin-bottom: 1rem;
}

.page-content ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: item;
}

.page-content ol li {
  margin-bottom: 16px;
}

.page-content ol li.h4 {
  margin-bottom: 24px;
}

.page-content ol li:last-child {
  margin-bottom: 0;
}

.page-content ol li::before {
  counter-increment: item;
  content: counters(item, ".") ". ";
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

.page-content ol li ol {
  margin-top: 12px;
}

.page-content ol li ol li {
  display: block;
  margin-bottom: 8px;
}

.page-content ol li ol li::before {
  content: counters(item, ".") ". ";
  font-weight: 300;
  font-family: "Montserrat", Arial, sans-serif;
}

.page-content ol li ol li p {
  display: inline;
  margin-bottom: 0;
}

.page-content ol li ol li ol {
  margin-left: 12px;
}

.page-content ol li ol li ol li::before {
  content: counters(item, ".", ". ") ". ";
}

.page-content ol li ol li ul {
  margin: 8px 0 0 12px;
}

.page-content ol li ol li ul li {
  display: block;
}

.page-content ol li ol li ul li::before {
  content: "- ";
  counter-increment: none;
}

.page-content ol ul {
  margin: 12px 0 24px 16px;
}

.page-content ol ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  counter-increment: none;
}

.page-content ol ul li::before,
.page-content ol ul li::after {
  content: "";
  display: block;
  position: absolute;
  counter-increment: none;
}

.page-content ol ul li::after {
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #ff7f32;
  border-radius: 50%;
}

.page-content ol ul li::before {
  z-index: 1;
  left: 5px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(-45deg);
}

.page-content .table-wrap {
  width: 100%;
  overflow: auto;
  overflow-y: hidden;
}

.page-content .table-wrap + p,
.page-content .table-wrap + ul,
.page-content .table-wrap + ol,
.page-content .table-wrap + .table-wrap,
.page-content .table-wrap + div,
.page-content .table-wrap + span {
  margin-top: 24px;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
}

.page-content table th,
.page-content table td {
  padding: 7px;
  border: 1px solid black;
  min-width: 200px;
}

.page-content table th {
  text-align: center;
  font-weight: bold;
}

.clinic-card {
  border: 1px solid #7f7e7e;
  border-left: none;
  border-right: none;
  width: 100vw;
  margin: -1px -24px 0;
  transition: all 0.3s;
}

.clinic-card:first-child {
  border-top: none;
}

.clinic-card__number {
  display: none;
}

@media (min-width: 768px) {
  .clinic-card {
    min-height: 192px;
    background-color: #ffffff;
    margin: -1px 24px 24px 0;
    padding: 16px 12px 24px 0;
    position: relative;
    transition: border-color 0.3s;
  }

  .clinic-card:first-child {
    border-top: 1px solid #7f7e7e;
  }
}

@media (min-width: 1280px) {
  .clinic-card {
    min-height: 160px;
  }
}

.clinic-card__btn {
  margin-bottom: 24px;
}

.clinic-card__link-map {
  color: #142c36;
  margin-right: 16px;
}

@media (min-width: 768px) {
  .clinic-card__link-map span {
    transition: all 0.3s;
    border-bottom: 1px dashed #ff7f32;
  }
}

@media (min-width: 1280px) {
  .clinic-card__link-map span:hover {
    color: #F50016;
    border-bottom: 1px solid transparent;
  }
}

.clinic-card__link-map span:active {
  color: #F50016;
  border-bottom: 1px solid transparent;
}

.clinic-card__image {
  display: none;
}

@media (min-width: 768px) {
  .clinic-card__image {
    width: 263px;
    height: 180px;
    margin-right: 24px;
    margin-bottom: 32px;
  }

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

.clinic-card__title {
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 21px;
  transition: all 0.3s;
}

.clinic-card__title a {
  color: #142c36;
}

.clinic-card__title-link {
  display: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 21px;
  transition: all 0.3s;
  color: #142c36;
}

.clinic-card__title-link .i-arrow {
  transform: rotate(-90deg);
  fill: #ff7f32;
  height: 10px;
  vertical-align: inherit;
}

.clinic-card__middle {
  display: flex;
  align-items: flex-start;
  margin-bottom: 11px;
}

.clinic-card__row {
  display: flex;
  align-items: baseline;
}

.clinic-card__row .i-round {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.clinic-card__row .note-text {
  white-space: nowrap;
}

.clinic-card__ico {
  margin-right: 12px;
}

@media (min-width: 768px) {
  .clinic-card__ico {
    margin-bottom: 16px;
  }
}

.clinic-card__icon-image {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.clinic-card__info {
  min-height: 122px;
}

.clinic-card__info .note-text {
  display: inline-block;
  margin-bottom: 4px;
}

.clinic-card__info .note-text:not(.time) {
  width: 37px;
  margin-right: 16px;
}

@media (min-width: 1280px) {
  .clinic-card__text {
    margin-bottom: 15px;
    width: 100%;
  }
}

.clinic-card__close {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
}

.clinic-card__close .i-close {
  width: 13px;
  height: 13px;
  fill: #ff7f32;
}

.clinic-card__time .clinic-card__row {
  justify-content: flex-start;
}

.clinic-card--row {
  border: none;
  border-right: 1px solid #7f7e7e;
  padding: 20px 24px 11px;
  width: 258px;
  max-width: 100vw;
  flex-shrink: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .clinic-card--row {
    border: 1px solid #7f7e7e;
    border-left: none;
    border-right: none;
    width: 100%;
    margin: -1px 37px 0 0;
    padding: 16px 0px 24px 0;
  }

  .clinic-card--row:first-child {
    padding-top: 0;
  }

  .clinic-card--row:nth-child(2n) {
    margin-right: 26px;
  }
}

@media (min-width: 1280px) {
  .clinic-card--row:nth-child(3n),
  .clinic-card--row:nth-child(2n) {
    margin-right: 26px;
  }
}

@media (min-width: 1280px) {
  .clinic-card--row:hover {
    border-bottom: 1px solid #7f7e7e;
  }

  .clinic-card--row:hover .card-item__inner {
    min-height: 100%;
    box-shadow: none;
  }
}

.clinic-card--row .clinic-card__inner {
  display: flex;
  flex-wrap: wrap;
}

.clinic-card--row .clinic-card__top {
  display: block;
}

@media (min-width: 1280px) {
  .clinic-card--row .clinic-card__top {
    display: flex;
    flex-wrap: wrap;
  }
}

.clinic-card--row .clinic-card__middle {
  display: block;
}

.clinic-card--row .clinic-card__row {
  flex-wrap: wrap;
}

@media (min-width: 1280px) {
  .clinic-card--row .clinic-card__row {
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

.clinic-card--row .clinic-card__time .clinic-card__row {
  justify-content: flex-start;
}

.clinic-card--row .clinic-card__title {
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .clinic-card--row .clinic-card__title {
    width: 100%;
    max-width: 280px;
  }
}

.clinic-card--row .clinic-card__ico {
  margin-bottom: 8px;
  display: inline-block;
}

@media (min-width: 1280px) {
  .clinic-card--row .clinic-card__ico {
    width: auto;
    max-width: 280px;
    margin-right: 2px;
    margin-bottom: 0;
  }
}

.clinic-card--row .clinic-card__ico .note-text {
  display: none;
}

.clinic-card--row .clinic-card__ico-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .clinic-card--row .clinic-card__ico-wrapper {
    display: block;
  }
}

.clinic-card--row .clinic-card__text {
  padding-right: 63px;
}

@media (min-width: 768px) {
  .clinic-card--row .clinic-card__text {
    margin-bottom: 8px;
  }
}

@media (min-width: 1280px) {
  .clinic-card--row .clinic-card__text {
    width: 100%;
  }
}

.clinic-card--row .clinic-card__info {
  min-height: 100%;
}

@media (min-width: 768px) {
  .clinic-card--row .clinic-card__info {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.clinic-card--row .clinic-card__info .card-item__row {
  justify-content: flex-start;
}

.clinic-card--row .clinic-card__info .scheme,
.clinic-card--row .clinic-card__info .btn {
  display: none;
}

.clinic-card--row .clinic-card__info .scheme {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .clinic-card--row .clinic-card__info .scheme {
    display: none;
  }
}

.clinic-card--row .clinic-card__info .btn {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .clinic-card--row .clinic-card__info .btn {
    display: none;
  }
}

.clinic-card--row .clinic-card__info .places-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .clinic-card--row .clinic-card__info .places-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -24px;
    margin-bottom: 8px;
  }
}

.clinic-card--row .clinic-card__info .places-wrapper .place {
  margin-right: 24px;
  margin-bottom: 8px;
}

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

.clinic-card--spoiler {
  width: 100vw;
  margin: -1px -24px 0;
  border: 1px solid #7f7e7e;
  border-left: none;
  border-right: none;
  transition: max-height 0.3s;
}

.clinic-card--spoiler:first-child {
  border-top: none;
}

@media (min-width: 768px) {
  .clinic-card--spoiler {
    width: 100%;
    margin: -1px 37px 0 0;
    padding: 16px 0 24px 0;
  }

  .clinic-card--spoiler:first-child {
    padding-top: 0;
  }
}

@media (min-width: 1280px) {
  .clinic-card--spoiler {
    margin: -1px 16px 0 0;
  }
}

.clinic-card--spoiler .clinic-card:nth-child(2) {
  margin-top: -1px;
}

.clinic-card--spoiler .clinic-card__top {
  padding: 24px 24px;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__top {
    padding: 0;
  }
}

@media (min-width: 1280px) {
  .clinic-card--spoiler .clinic-card__top {
    display: flex;
    flex-wrap: wrap;
  }
}

.clinic-card--spoiler .clinic-card__ico {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__ico {
    margin-bottom: 0;
  }
}

.clinic-card--spoiler .clinic-card__ico svg {
  width: 100%;
  height: 100%;
}

.clinic-card--spoiler .clinic-card__ico .note-text {
  display: none;
}

.clinic-card--spoiler .clinic-card__time .clinic-card__row {
  justify-content: flex-start;
}

.clinic-card--spoiler .clinic-card__ico-wrapper {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__ico-wrapper {
    display: block;
  }
}

@media (min-width: 1280px) {
  .clinic-card--spoiler .clinic-card__ico-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 0;
    margin-left: 24px;
  }
}

.clinic-card--spoiler .clinic-card__title {
  width: 100%;
  margin-bottom: 11px;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__title {
    margin-bottom: 16px;
  }

  .clinic-card--spoiler .clinic-card__title .i-arrow {
    display: none;
  }
}

@media (min-width: 1280px) {
  .clinic-card--spoiler .clinic-card__title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
  }
}

.clinic-card--spoiler .clinic-card__row {
  flex-wrap: wrap;
}

@media (min-width: 1280px) {
  .clinic-card--spoiler .clinic-card__inner .spoiler-box__content-wrapper {
    overflow-y: visible;
  }
}

.clinic-card--spoiler .clinic-card__info {
  padding: 0 24px;
  min-height: 78px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__info {
    padding: 0;
    margin-bottom: 0;
    overflow-y: visible;
  }
}

.clinic-card--spoiler .clinic-card__info .scheme {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__info .scheme {
    display: none;
  }
}

.clinic-card--spoiler .clinic-card__info .places-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-right: -24px;
  margin-bottom: 8px;
}

.clinic-card--spoiler .clinic-card__info .places-wrapper .place {
  margin-right: 24px;
  margin-bottom: 8px;
}

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

.clinic-card--spoiler .clinic-card__info .btn {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__info .btn {
    display: none;
  }
}

.clinic-card--spoiler .clinic-card__text {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .clinic-card--spoiler .clinic-card__text {
    margin-bottom: 8px;
  }
}

@media (min-width: 1280px) {
  .clinic-card--spoiler .clinic-card__text {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .clinic-card--spoiler .clinic-card__link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .clinic-card--spoiler .clinic-card__link-wrapper .i-arrow {
    flex-shrink: 0;
  }
}

.clinic-card.open {
  width: 349px;
  z-index: 3;
  overflow: visible;
  position: absolute;
  left: -1px;
  top: -1px;
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  border-color: transparent;
  padding: 0;
}

@media (min-width: 768px) {
  .clinic-card.open {
    height: 601px;
    overflow: hidden;
  }
}

.clinic-card.open.ps .ps__scrollbar-y-rail {
  display: block;
}

.clinic-card.open.ps .ps__scrollbar-x-rail {
  display: none;
}

@media (min-width: 1280px) {
  .clinic-card.open {
    width: 395px;
    height: 691px;
  }
}

.clinic-card.open .spoiler-box__content-wrapper {
  order: 3;
}

.clinic-card.open .clinic-card__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
}

@media (max-width: 1280px) {
  .clinic-card.open .clinic-card__top {
    width: 380px;
  }
}

.clinic-card.open .clinic-card__image {
  display: block;
  order: 0;
}

.clinic-card.open .clinic-card__link-wrapper {
  display: none;
}

.clinic-card.open .clinic-card__title-link {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  margin-bottom: 12px;
}

.clinic-card.open .clinic-card__top {
  order: 1;
}

.clinic-card.open .clinic-card__top .clinic-card__title-link:hover {
  color: #F50016;
}

.clinic-card.open .clinic-card__top .clinic-card__title-link:hover .i-arrow {
  fill: #F50016;
}

.clinic-card.open .clinic-card__info .places-wrapper {
  display: flex;
  margin-bottom: 16px;
}

.clinic-card.open .clinic-card__info .scheme {
  display: block;
}

.clinic-card.open .clinic-card__info .btn {
  display: block;
}

.clinic-card.open .clinic-card__ico {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  width: auto;
  height: auto;
  cursor: default;
  background-size: 24px 24px;
  background-position: left;
}

.clinic-card.open .clinic-card__ico svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.clinic-card.open .clinic-card__ico .note-text {
  display: block;
}

.clinic-card.open .clinic-card__ico-wrapper {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .clinic-card.open .clinic-card__ico-wrapper {
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .clinic-card.open .clinic-card__ico-wrapper {
    margin-left: 0;
    display: block;
  }
}

.clinic-card.open .clinic-card__icon-image {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -100%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: left;
}

.clinic-card.open .clinic-card__close {
  display: flex;
  cursor: pointer;
}

.clinic-card.open .clinic-card__close .i-close {
  transition: fill 0.3s;
}

.clinic-card.open .clinic-card__close:hover .i-close {
  fill: #F50016;
}

.clinic-card.open .clinic-card__text {
  margin-bottom: 8px;
}

.clinic-card.open .clinic-card__number {
  display: block;
}

.clinic-card.opened .clinic-card__number {
  display: block;
}

.clinic-card__schedule-btn {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  color: #FF7F32;
  text-decoration: underline;
  padding: 0;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .clinic-card__schedule-btn:hover {
    color: #6EA55A;
  }
}

.text-info {
  color: #142c36;
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

.text-info__title {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
}

.text-info__left {
  flex-shrink: 0;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .text-info__left {
    width: 150px;
    margin-right: 36px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .text-info__left {
    width: 170px;
  }
}

.text-info__left .text-info__text {
  color: #142c36;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .text-info__left .text-info__text {
    font-size: 16px;
    line-height: 26px;
  }
}

.text-info__text {
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .text-info__text {
    color: #142c36;
    font-size: 16px;
    line-height: 26px;
  }
}

.text-info__row {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .text-info__row {
    display: flex;
    margin-bottom: 8px;
  }
}

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

.text-info__header {
  margin-bottom: 12px;
}

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

.text-info__header .text-info__row {
  margin-bottom: 0;
}

.text-item {
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", Arial, sans-serif;
  display: flex;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .text-item {
    flex-wrap: wrap;
    width: calc(50% - 12px);
    margin-right: 24px;
  }

  .text-item:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .text-item {
    width: calc(50% - 74px);
    margin-right: 40px;
  }
}

.text-item__left {
  margin-right: 8px;
  font-family: "Montserrat", Arial, sans-serif;
}

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

.text-item .note-text {
  width: 100%;
}

@media (min-width: 768px) {
  .text-item .tooltip {
    border-bottom: none;
    cursor: default;
  }

  .text-item .tooltip:hover {
    color: #142c36;
  }

  .text-item .tooltip:hover .tooltip-text {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

.clinic-timetable {
  border: 1px solid #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  padding: 0 16px;
  display: none;
  max-width: 1191px;
}

@media (min-width: 768px) {
  .clinic-timetable {
    display: block;
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .clinic-timetable {
    padding: 0 37px 24px 24px;
  }
}

.clinic-timetable__header {
  width: 100%;
  margin: 0 0 12px auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  height: 40px;
  border-bottom: 1px solid #ffffff;
}

@media (min-width: 1280px) {
  .clinic-timetable__header {
    border-bottom: none;
    margin-bottom: 0;
    height: 54px;
    max-width: 821px;
  }
}

.clinic-timetable__header-item {
  width: 100%;
  min-width: 91px;
  margin-right: 8px;
  display: inline-block;
  text-align: center;
  padding: 7px 0;
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 1280px) {
  .clinic-timetable__header-item {
    padding: 16px 0;
    margin-right: 12px;
    width: 107px;
  }
}

.clinic-timetable__header-item:last-child {
  margin-right: 0;
}

.clinic-timetable__item {
  list-style: none;
  min-height: 50px;
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .clinic-timetable__item {
    display: flex;
    align-items: center;
  }
}

.clinic-timetable__item-list {
  display: inline-flex;
  width: 100%;
  margin: 0;
  margin-left: auto;
  padding: 0;
}

@media (min-width: 1280px) {
  .clinic-timetable__item-list {
    max-width: 821px;
  }
}

.clinic-timetable__item-list .timetable-item {
  margin-right: 8px;
  width: 100%;
  margin-bottom: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 91px;
  min-height: 45px;
}

@media (min-width: 1280px) {
  .clinic-timetable__item-list .timetable-item {
    margin-right: 12px;
    width: 107px;
    min-height: 50px;
  }
}

.clinic-timetable__item-list .timetable-item:last-child {
  margin-right: 0;
}

.clinic-timetable__item-title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 8px;
  margin-right: 24px;
}

@media (min-width: 1280px) {
  .clinic-timetable__item-title {
    margin-bottom: 0;
  }
}

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

.spoiler-box.empty .spoiler-box__header-btn {
  cursor: default;
}

.spoiler-box__header-ico {
  margin-right: 16px;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .spoiler-box__header-ico {
    margin-right: 24px;
  }
}

.spoiler-box__header-btn {
  align-items: center;
  display: flex;
  cursor: pointer;
}

.spoiler-box__header-btn .open,
.spoiler-box__header-btn .close {
  margin-right: 0.5em;
}

.spoiler-box__header-btn .i-arrow {
  transition: fill 0.3s;
  margin-left: auto;
  flex-shrink: 0;
}

.spoiler-box__header-btn h2,
.spoiler-box__header-btn .h2,
.spoiler-box__header-btn h3,
.spoiler-box__header-btn .h3,
.spoiler-box__header-btn h4,
.spoiler-box__header-btn .h4 {
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .spoiler-box__header-btn:hover .i-arrow {
    fill: #F50016;
  }
}

.spoiler-box__header-btn:active .i-arrow {
  fill: #F50016;
}

.spoiler-box__content-wrapper {
  overflow-y: hidden;
}

.spoiler-box__content-wrapper .page-content ul.spoiler-box__content-list--doctor-detail {
  border-radius: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .spoiler-box__content-wrapper .page-content ul.spoiler-box__content-list--doctor-detail {
    margin-bottom: 16px;
  }
}

.spoiler-box__content {
  overflow-y: hidden;
  transition: margin 0.4s;
}

.spoiler-box__content p {
  max-width: 813px;
}

.split-sidebar .spoiler-box__content p:last-child {
  margin-bottom: 0;
}

.split-sidebar .spoiler-box__content ul:last-child {
  margin-bottom: 0;
}

.split-sidebar .spoiler-box__content ul:last-child li:last-child {
  margin-bottom: 0;
}

.spoiler-box__btn-show {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .spoiler-box__btn-show {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .spoiler-box__btn-show {
    margin-top: 0;
  }
}

.spoiler-box__btn-show .close {
  display: none;
}

.spoiler-box__btn-show.btn-ico .i-arrow {
  transform: rotate(0);
}

@media (min-width: 768px) {
  .spoiler-box__btn-ico {
    display: none;
  }
}

.spoiler-box__btn-ico.btn-reset {
  display: none;
}

.spoiler-box__btn-ico .i-arrow {
  transform: rotate(0);
}

.spoiler-box.whitening .spoiler-box__content-wrapper {
  position: relative;
}

.spoiler-box.whitening .spoiler-box__content-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 124px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0001) 22.07%, #FFFFFF 100%);
  opacity: 1;
  transition: opacity 0.3s;
}

.spoiler-box.whitening .spoiler-box__content-wrapper .spoiler-box__content-wrapper::after {
  display: none;
}

.spoiler-box--swap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .spoiler-box--swap {
    display: block;
  }
}

@media (min-width: 768px) {
  .spoiler-box--whitening .spoiler-box__content-wrapper {
    position: relative;
  }

  .spoiler-box--whitening .spoiler-box__content-wrapper:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 124px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.0001) 22.07%, #FFFFFF 100%);
    opacity: 1;
    transition: opacity 0.3s;
  }
}

.spoiler-box--whitening.opened .spoiler-box__content-wrapper:after {
  opacity: 0;
}

.spoiler-box.opened .spoiler-box__btn-show .close {
  display: inline-block;
}

.spoiler-box.opened .spoiler-box__btn-show .open {
  display: none;
}

.spoiler-box.opened .spoiler-box__btn-ico {
  order: 1;
  margin-right: 24px;
}

.spoiler-box.opened .spoiler-box__btn-ico:last-child {
  margin-right: 0;
}

.spoiler-box.opened .spoiler-box__btn-ico .close {
  display: inline-block;
}

.spoiler-box.opened .spoiler-box__btn-ico .open {
  display: none;
}

.spoiler-box.opened .spoiler-box__btn-ico.btn-reset {
  display: inline-block;
}

.spoiler-box.opened .spoiler-box__btn-ico .i-arrow {
  transform: rotate(180deg);
}

.spoiler-box.opened .spoiler-box__content-wrapper:after {
  display: none;
}

.spoiler-box .services-header {
  cursor: default;
}

.spoiler-box .services-header.pointer {
  cursor: pointer;
}

.spoiler-box .services-header h3 a {
  color: inherit;
}

.spoiler-box--services {
  margin: 0 -24px;
}

@media (min-width: 1280px) {
  .spoiler-box--services {
    margin: 0;
  }
}

.spoiler-box--services .spoiler-box__btn-show {
  margin-top: 32px;
}

@media (max-width: 1279px) {
  .spoiler-box--services .spoiler-box__btn-show {
    margin-left: 24px;
  }
}

.spoiler-box--services .table {
  margin: 0;
}

.wrapper-text {
  border: 1px solid #7f7e7e;
  border-right: none;
  border-left: none;
  padding: 16px 24px 0;
  position: relative;
  margin-top: -1px;
}

@media (min-width: 768px) {
  .wrapper-text {
    border: none;
    padding: 0;
    margin: 0;
  }
}

.wrapper-text__title {
  margin-bottom: 16px;
}

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

.spoiler-box-wrapper {
  margin: 0px -24px 0;
}

.spoiler-box-wrapper .wrapper-text:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .spoiler-box-wrapper {
    margin: 0;
  }
}

.spoiler-box-wrapper--doctor-page {
  margin: 0;
}

.services-list .spoiler-wrapper--mobile .popup-button .i-arrow {
  display: block;
}

.services-list .popup-button {
  transition: color 0.3s;
}

.services-list .popup-button svg {
  fill: #ff7f32;
  transition: fill 0.3s;
}

@media (min-width: 1280px) {
  .services-list .popup-button:hover {
    color: #F50016;
  }

  .services-list .popup-button:hover .i-arrow {
    fill: #F50016;
  }

  .services-list .popup-button:hover svg {
    fill: #F50016;
  }
}

@media (min-width: 768px) {
  .services-list .spoiler-wrapper {
    margin-right: -16px;
  }

  .services-list .spoiler-wrapper .spoiler-box {
    margin-right: 16px;
  }
}

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

.aside-nav {
  margin: 0 0 12px;
  width: 100%;
  transition: box-shadow 0.3s;
  position: relative;
  max-width: 768px;
}

@media (min-width: 768px) {
  .aside-nav {
    margin: 0;
    margin-bottom: 12px;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .aside-nav {
    width: 32%;
    margin-right: 24px;
  }
}

.aside-nav__header {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  border: none;
  background: #e8eaee;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border-radius: 0;
}

@media (min-width: 1024px) {
  .aside-nav__header {
    display: none;
  }
}

.aside-nav__header-burger {
  position: relative;
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  outline: none;
  width: 19px;
  height: 30px;
  margin-right: 16px;
}

.aside-nav__header-burger .line {
  width: 18px;
  height: 1px;
  display: block;
  position: absolute;
  right: 0;
  margin-bottom: 6px;
  background-color: black;
  transform-origin: 0 4px;
  transition: opacity 0.3s, ease-in-out-cubic 0s, transform 0.24s, ease-in-out-cubic 0s;
}

@media (min-width: 768px) {
  .aside-nav__header-burger .line {
    right: 4px;
  }
}

.aside-nav__header-burger .line:nth-child(1) {
  top: 10px;
}

.aside-nav__header-burger .line:nth-child(2) {
  top: 15px;
}

.aside-nav__header-burger .line:nth-child(3) {
  top: 20px;
}

.aside-nav__content {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  top: auto;
  width: 100%;
  z-index: 2;
  transition: opacity 0.3s, visibility 0.3s;
}

@media (min-width: 1024px) {
  .aside-nav__content {
    position: relative;
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    left: auto;
    top: auto;
  }
}

.aside-nav__content::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 70px);
  box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
  opacity: 0;
  position: absolute;
  left: 0;
  top: -70px;
  transition: opacity 0.3s;
}

@media (min-width: 1024px) {
  .aside-nav__content::before {
    display: none;
  }
}

.aside-nav.visible .aside-nav__content {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

.aside-nav.visible .aside-nav__content::before {
  opacity: 1;
}

.aside-nav__item {
  border-bottom: 1px solid #ffffff;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
  z-index: 9;
  background: #e8eaee;
  position: relative;
}

@media (min-width: 1024px) {
  .aside-nav__item {
    border: none;
    margin-bottom: 16px;
  }
}

.aside-nav__item svg {
  transition: fill 0.3s, stroke 0.3s;
}

.aside-nav__item .i-red-star {
  fill: #F50016;
}

.aside-nav__item a {
  color: inherit;
}

.aside-nav__item .i-bottle .circle {
  fill: #ffffff;
}

.aside-nav__item .i-bottle .bottle {
  stroke: #F50016;
  fill: transparent;
}

.aside-nav__item .i-bottle .bottle-row {
  fill: #F50016;
}

.aside-nav__item .i-complex-program .circle {
  fill: #ffffff;
}

.aside-nav__item .i-complex-program .stroke {
  fill: #F50016;
}

.aside-nav__item.active .aside-nav__item-inner {
  background: #ff7f32;
  color: #ffffff;
}

.aside-nav__item.active .aside-nav__item-inner .i-arrow,
.aside-nav__item.active .aside-nav__item-inner .i-red-star {
  fill: #ffffff;
}

.aside-nav__item.active .aside-nav__item-inner .i-bottle .circle {
  fill: transparent;
}

.aside-nav__item.active .aside-nav__item-inner .i-bottle .bottle {
  stroke: #ffffff;
}

.aside-nav__item.active .aside-nav__item-inner .i-bottle .bottle-row {
  fill: #ffffff;
}

.aside-nav__item.active .aside-nav__item-inner .i-complex-program .circle {
  fill: transparent;
}

.aside-nav__item.active .aside-nav__item-inner .i-complex-program .stroke {
  fill: #ffffff;
}

.aside-nav__item.active .aside-nav__item-inner:hover .i-arrow {
  fill: #ffffff;
}

.aside-nav__item.active .aside-nav__item-inner a {
  color: inherit;
}

.aside-nav__item .popular-link {
  margin-bottom: 0;
  color: #142c36;
  align-items: center;
}

.aside-nav__item .alphabet-list {
  margin-top: 16px;
  padding: 0 24px;
}

@media (max-width: 1279px) {
  .aside-nav__item .alphabet-list {
    padding: 0 10px;
  }
}

@media (max-width: 1023px) {
  .aside-nav__item .alphabet-list {
    padding: 0 19px;
  }
}

.aside-nav__item h4,
.aside-nav__item .h4 {
  margin-bottom: 0;
}

.aside-nav__item .popular-link .i-red-star {
  margin-right: 16px;
}

@media (min-width: 768px) {
  .aside-nav__item .popular-link .i-red-star {
    margin-right: 24px;
  }
}

.aside-nav__item-inner {
  display: flex;
  padding: 16px 24px;
}

@media (min-width: 1280px) {
  .aside-nav__item-inner {
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .aside-nav__item.link {
    background: #ffffff;
    border-bottom: 1px solid #7f7e7e;
    border-top: 1px solid #7f7e7e;
    margin-top: -1px;
    margin-bottom: 0;
    transition: background 0.3s;
  }
}

@media (min-width: 1280px) {
  .aside-nav__item.link:hover {
    background: #e8eaee;
  }
}

@media (min-width: 1280px) {
  .aside-nav__item.link .aside-nav__item-inner {
    padding: 16px 24px;
  }
}

.aside-nav__item.link.active {
  background: #ff7f32;
  color: #ffffff;
}

.aside-nav__item.link.active .i-red-star {
  fill: #ffffff;
}

.aside-nav__item.link.active a {
  color: inherit;
}

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

.alphabet-list__item {
  display: flex;
  align-items: baseline;
}

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

.alphabet-list__list .links-list li {
  padding-left: 0;
  padding-right: 0;
}

.alphabet-list__ico {
  color: #F50016;
  flex-shrink: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #ffffff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  margin-right: 16px;
  line-height: normal;
}

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

.alphabet-list li {
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .alphabet-list li {
    margin-bottom: 12px;
  }
}

.alphabet-list li .i-arrow {
  display: none;
}

.alphabet-list li p {
  margin-bottom: 0;
}

.alphabet-list li a {
  color: #142c36;
  transition: color 0.3s;
}

.alphabet-list li a:active {
  color: #F50016;
}

@media (min-width: 1280px) {
  .alphabet-list li a:hover {
    color: #F50016;
  }
}

.alphabet-list li.strong a {
  font-weight: 700;
}

@media (min-width: 768px) {
  .alphabet-list--column {
    -moz-column-count: 2;
         column-count: 2;
    max-width: 813px;
  }
}

.alphabet-list--column .alphabet-list__item {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.alphabet-list--spoiler .alphabet-list__item .i-arrow {
  display: inline-block;
}

.alphabet-list--spoiler .alphabet-list__list {
  width: 100%;
}

.alphabet-list--spoiler .alphabet-list__list .spoiler-box__header-btn p {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
}

.alphabet-list--spoiler .alphabet-list__list .spoiler-box__content .note-text {
  display: block;
  color: #142c36;
  margin-bottom: 0;
  transition: color 0.3s;
}

.alphabet-list--spoiler .alphabet-list__list .spoiler-box__content .note-text:first-child {
  margin-top: 0;
}

.alphabet-list--spoiler .alphabet-list__list .spoiler-box__content .note-text.active {
  font-weight: bold;
}

@media (min-width: 1280px) {
  .alphabet-list--spoiler .alphabet-list__list .spoiler-box__content .note-text:hover {
    color: #F50016;
  }
}

@media (min-width: 768px) {
  .alphabet-list--spoiler .alphabet-list__ico {
    margin-right: 24px;
  }
}

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

.number-item {
  color: #ffffff;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  width: calc(25% - 16px);
}

@media (max-width: 1024px) {
  .number-item {
    width: calc(50% - 8px);
  }
}

@media (max-width: 567px) {
  .number-item {
    width: 100%;
  }
}

.number-item:last-child {
  margin-right: 0;
}

.number-item__number {
  font-size: 56px;
  line-height: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 1279px) {
  .number-item__number {
    font-size: 36px;
  }
}

.number-item__number span {
  vertical-align: middle;
}

.number-item__text {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}

@media (max-width: 1279px) {
  .number-item__text {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 1024px) {
  .number-item__text {
    max-width: 250px;
  }
}

.number-item .number {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 768px) {
  .number-item .number {
    font-size: 72px;
    line-height: 52px;
  }
}

.number-item-list {
  list-style: none;
  padding: 0;
  width: 100%;
}

.gallery-clinic {
  margin: 0 -24px;
}

.gallery-clinic-wrapper {
  position: relative;
}

@media screen and (min-width: 1280px) {
  .gallery-clinic-wrapper {
    margin-bottom: 32px;
  }
}

.gallery-clinic-wrapper__controls {
  display: none;
}

@media screen and (min-width: 768px) {
  .gallery-clinic-wrapper__controls {
    display: flex;
    position: absolute;
    right: calc((100vw - 768px) / 2 - 3px);
    top: -104px;
    margin: 0;
  }
}

@media screen and (min-width: 1280px) {
  .gallery-clinic-wrapper__controls {
    top: -99px;
    right: calc((100vw - 1280px) / 2 + 100px);
  }
}

.gallery-clinic__item {
  margin: 0 4px;
}

@media screen and (min-width: 768px) {
  .gallery-clinic__item {
    margin: 0 12px;
  }
}

@media screen and (min-width: 1280px) {
  .gallery-clinic__item {
    margin: 0 20px;
  }
}

.gallery-clinic__img {
  width: 276px;
  height: 196px;
  border-radius: 3px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .gallery-clinic__img {
    width: 689px;
    height: 491px;
  }
}

.gallery-clinic__img img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .gallery-clinic__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.gallery-clinic__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  color: #142c36;
  width: 272px;
}

@media screen and (min-width: 768px) {
  .gallery-clinic__title {
    width: 688px;
  }
}

@media screen and (min-width: 1280px) {
  .gallery-clinic__title {
    font-size: 30px;
    line-height: 38px;
  }
}

.gallery-clinic__btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: #ff7f32;
  border: none;
  margin-right: 16px;
  box-shadow: none;
  transition: background 0.3s, box-shadow 0.3s;
}

@media screen and (min-width: 768px) {
  .gallery-clinic__btn {
    width: 56px;
    height: 56px;
    margin-right: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .gallery-clinic__btn {
    margin-right: 16px;
  }

  .gallery-clinic__btn:hover {
    box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
    background: #f7650d;
  }
}

.gallery-clinic__btn .i-arrow-big {
  width: 20px;
  height: 20px;
  transition: fill 0.3s;
  fill: #ffffff;
  margin-left: -1px;
  transform: rotate(-180deg);
}

.gallery-clinic__btn--right {
  margin-right: 0;
}

.gallery-clinic__btn--right .i-arrow-big {
  margin-left: 1px;
  transform: rotate(0deg);
}

.gallery-clinic .slick-track {
  margin-left: 24px;
}

@media screen and (min-width: 768px) {
  .gallery-clinic .slick-track {
    margin-left: 21px;
  }
}

@media screen and (min-width: 1280px) {
  .gallery-clinic .slick-track {
    margin-left: -287px;
  }
}

@media screen and (min-width: 1920px) {
  .gallery-clinic .slick-track {
    margin-left: 231px;
  }
}

.gallery-clinic .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 8px;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .gallery-clinic .slick-dots {
    margin: 32px 0 40px;
  }
}

@media screen and (min-width: 1280px) {
  .gallery-clinic .slick-dots {
    margin: 38px 0 16px;
  }
}

.gallery-clinic .slick-dots li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ff7f32;
  margin-right: 16px;
  cursor: pointer;
  position: relative;
}

@media (min-width: 1280px) {
  .gallery-clinic .slick-dots li {
    margin-right: 11px;
  }
}

.gallery-clinic .slick-dots li::after {
  content: "";
  display: block;
  background: #ff7f32;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
  border-radius: 50%;
}

.gallery-clinic .slick-dots li:last-child {
  margin-right: 0;
}

.gallery-clinic .slick-dots li button {
  display: none;
}

.gallery-clinic .slick-dots li.slick-active::after {
  transform: translate(-50%, -50%) scale(2);
}

@media (min-width: 1280px) {
  .gallery-clinic .slick-dots li.slick-active:hover::after {
    transform: translate(-50%, -50%) scale(2);
  }
}

@media (max-width: 1279px) {
  .gallery-clinic .slick-dots li:active::after {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (min-width: 1280px) {
  .gallery-clinic .slick-dots li:hover::after {
    transform: translate(-50%, -50%) scale(1);
  }
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0 -24px 32px;
  width: 100vw;
}

@media screen and (min-width: 768px) {
  .advantage-list {
    margin: 24px -2px 40px 0;
    width: auto;
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1024px) {
  .advantage-list {
    margin: 0 -24px 40px 0;
  }
}

.advantage-list__item {
  border-bottom: 2px solid #ffffff;
  background: #e8eaee;
  padding: 24px 24px 19px;
}

@media screen and (min-width: 768px) {
  .advantage-list__item {
    width: calc(50% - 2px);
    border: none;
    margin: 0 2px 2px 0;
    padding: 31px 24px 23px;
  }
}

@media screen and (min-width: 1024px) {
  .advantage-list__item {
    width: calc(50% - 24px);
    margin: 0 24px 24px 0;
    padding: 41px 30px 26px;
  }
}

.advantage-list__item-title {
  color: #F50016;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 52px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .advantage-list__item-title {
    width: 55%;
  }
}

@media (min-width: 1024px) {
  .advantage-list__item-title {
    display: flex;
    align-items: center;
    width: 80%;
  }
}

@media (min-width: 1280px) {
  .advantage-list__item-title {
    width: 70%;
  }
}

.advantage-list__item-title p {
  font-family: inherit;
  font-weight: normal;
}

@media (min-width: 1024px) {
  .advantage-list__item-title p {
    margin-bottom: 0;
    font-weight: normal;
  }
}

.advantage-list__item-title .number {
  font-size: 38px;
  line-height: 52px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .advantage-list__item-title .number {
    margin-right: 16px;
    font-size: 48px;
    line-height: 52px;
  }
}

@media screen and (min-width: 1024px) {
  .advantage-list p {
    width: 80%;
  }
}

.team-list {
  list-style: none;
  padding: 0;
  width: 320px;
  margin: 0 -24px;
}

@media (min-width: 321px) {
  .team-list {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .team-list {
    max-width: 768px;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -24px 26px;
  }
}

@media (min-width: 1024px) {
  .team-list {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1024px;
    margin: 0 -24px 32px;
  }
}

@media (min-width: 1280px) {
  .team-list {
    max-width: 1280px;
  }
}

.team-list__item-wrapper {
  width: 320px;
  margin: 0 auto 2px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .team-list__item-wrapper {
    width: 425px;
    margin: 0 auto 16px;
  }
}

@media (min-width: 1024px) {
  .team-list__item-wrapper {
    width: calc(33.3% - 1px);
    margin: 0 1px 0 0;
  }
}

.team-list__item-wrapper:focus {
  outline: none;
}

.team-list__item {
  height: 100%;
}

.team-list__item-text {
  text-align: center;
  background: #edf0f8;
  padding: 16px 24px 14px;
}

@media (min-width: 768px) {
  .team-list__item-text {
    padding: 24px 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .team-list__item-text {
    padding: 31px 26px 32px;
    height: calc(100% - 245px);
  }
}

.team-list__item-img {
  height: 185px;
  width: 100%;
}

@media (min-width: 768px) {
  .team-list__item-img {
    height: 245px;
  }
}

@media (min-width: 1024px) {
  .team-list__item-img {
    height: 185px;
  }
}

@media (min-width: 1280px) {
  .team-list__item-img {
    height: 245px;
  }
}

.team-list__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.team-list__item-name {
  margin-bottom: 9px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 1280px) {
  .team-list__item-name {
    margin-bottom: 15px;
  }
}

.team-list__item-note {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
}

@media (min-width: 768px) {
  .team-list__item-note {
    min-height: 66px;
  }
}

.team-list--small {
  width: 320px;
  margin: 0 -32px 16px;
}

@media (min-width: 768px) {
  .team-list--small {
    max-width: 768px;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -24px 16px;
  }
}

@media (min-width: 1024px) {
  .team-list--small {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .team-list--small {
    max-width: 1280px;
  }
}

@media (min-width: 768px) {
  .team-list--small .team-list__item-wrapper {
    width: 50%;
    margin: 0 -1px -1px 0;
  }
}

@media (min-width: 1024px) {
  .team-list--small .team-list__item-wrapper {
    width: 33.3%;
  }
}

.team-list--small .team-list__item {
  padding: 24px;
  border: 1px solid #edf0f8;
  height: 100%;
}

@media (min-width: 768px) {
  .team-list--small .team-list__item {
    padding: 45px 24px 40px;
  }
}

@media (min-width: 1280px) {
  .team-list--small .team-list__item {
    padding: 45px 24px 56px;
  }
}

.team-list--small .team-list__item-text {
  background: transparent;
}

@media (min-width: 768px) {
  .team-list--small .team-list__item-text {
    padding-bottom: 0;
    height: calc(100% - 214px);
  }
}

@media (min-width: 768px) {
  .team-list--small .team-list__item-note {
    min-height: 44px;
  }
}

.team-list--small .team-list__item-img {
  width: 135px;
  height: 223px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-list--small .team-list__item-img {
    height: 214px;
  }
}

@media (min-width: 768px) {
  .team-list--four-row .team-list__item-wrapper {
    width: 33.3%;
  }
}

@media (min-width: 1024px) {
  .team-list--four-row .team-list__item-wrapper {
    width: 25%;
  }
}

.team-list--four-row .team-list__item {
  padding: 24px;
  border: 1px solid #edf0f8;
}

@media (min-width: 768px) {
  .team-list--four-row .team-list__item {
    padding: 40px 24px 12px;
  }
}

@media (min-width: 768px) {
  .team-list--four-row .team-list__item {
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .team-list--four-row .team-list__item-img {
    width: 120px;
  }
}

@media (min-width: 768px) {
  .team-list--four-row .team-list__item-text {
    padding: 0;
    padding-top: 24px;
    height: calc(100% - 214px);
  }
}

@media (min-width: 1280px) {
  .team-list--four-row .team-list__item-text {
    padding: 22px 26px 0;
  }
}

@media (min-width: 1280px) {
  .team-list--four-row .team-list__item-note {
    min-height: 44px;
  }
}

.team-list--single {
  margin: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .team-list--single {
    max-width: 342px;
  }
}

@media (min-width: 1280px) {
  .team-list--single {
    max-width: 396px;
  }
}

.team-list--single .team-list__item {
  width: 100%;
  border: 1px solid #7f7e7e;
  padding: 40px 11px 40px;
}

@media (min-width: 768px) {
  .team-list--single .team-list__item {
    width: 100%;
    padding: 40px 40px 50px;
  }
}

@media (min-width: 1024px) {
  .team-list--single .team-list__item {
    height: 100%;
    margin-left: auto;
    padding: 40px 40px 100px;
  }
}

.team-list--single .team-list__item-img {
  width: 151px;
  height: 214px;
  margin: 0 auto 24px;
}

.team-list--single .team-list__item-name {
  min-height: auto;
}

.team-list--single .team-list__item-text {
  background: transparent;
  padding: 0;
}

@media (min-width: 768px) {
  .team-list--single .team-list__item-text {
    display: block;
  }
}

.team-list--single .team-list__item-note {
  min-height: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .team-list--single .team-list__item-note {
    min-height: auto;
  }
}

.team-list--single .team-list__item-link {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-family: "Montserrat", Arial, sans-serif;
}

.team-list--single .team-list__item-link a {
  color: #142c36;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
}

.team-list--single .team-list__item-link .mail {
  margin-top: 4px;
  transition: all 0.3s;
  border-bottom: 1px solid #ff7f32;
}

@media (min-width: 1280px) {
  .team-list--single .team-list__item-link .mail:hover {
    border-bottom-color: transparent;
    color: #F50016;
  }
}

.team-list--single .team-list__item-link .mail:active {
  border-bottom-color: transparent;
  color: #F50016;
}

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

.license-wrapper .h3,
.license-wrapper h3 {
  margin-bottom: 8px;
}

.license-wrapper-item {
  margin-bottom: 16px;
  margin-left: -24px;
  padding-left: 24px;
}

@media (min-width: 768px) {
  .license-wrapper-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}

@media (min-width: 1280px) {
  .license-wrapper-item {
    margin-bottom: 4px;
  }
}

.license-wrapper__main {
  margin: 0 0 16px;
}

@media (min-width: 768px) {
  .license-wrapper__main {
    margin: 0 40px 24px 0;
  }

  .license-wrapper__main:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .license-wrapper__main {
    margin: 0 56px 24px 0;
  }

  .license-wrapper__main:last-child {
    margin-right: 0;
  }
}

.license-wrapper__main-title {
  font-size: 14px;
  line-height: 22px;
  color: #6b6b6b;
  max-width: 272px;
}

@media (min-width: 768px) {
  .license-wrapper__main-title {
    max-width: 241px;
  }
}

.license-wrapper__main-img {
  display: flex;
  flex-wrap: wrap;
}

.license-wrapper__download-document {
  display: inline-block;
  vertical-align: middle;
}

.license-wrapper__download-document svg {
  color: #ff7f32;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .license-wrapper__download-document:hover svg {
    color: #6ea55a;
  }
}

.license-item {
  width: 56px;
  height: 79px;
  margin: 0 12px 8px 0;
  transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
  .license-item {
    width: 112px;
    height: 158px;
    margin: 1px 16px 8px 0;
  }
}

.license-item:hover {
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
}

.license-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}

.license-item-thumb {
  width: calc(25% - 24px);
  height: 86px;
  background: #FFFFFF;
  display: block;
  margin: 0 24px 24px 0;
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.3s, opacity 0.3s;
}

.license-item-thumb.hidden {
  opacity: 0;
  transform: scale(1.1);
}

@media (min-width: 1280px) {
  .license-item-thumb {
    width: 126px;
    height: 86px;
  }
}

.license-item-thumb::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #F50016;
  opacity: 0;
  transition: opacity 0.3s;
}

.license-item-thumb.active::before {
  opacity: 1;
}

.license-item-thumb img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.lightbox-gallery {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1280px) {
  .lightbox-gallery {
    overflow: hidden;
  }
}

.lightbox-gallery-wrapper {
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .lightbox-gallery-wrapper {
    margin-bottom: 30px;
  }
}

.lightbox-gallery-title {
  margin-bottom: 6px;
}

.lightbox-gallery__item {
  display: block;
  height: 54px;
  width: auto;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

@media (min-width: 1280px) {
  .lightbox-gallery__item {
    margin-bottom: 0;
  }
}

.lightbox-gallery__item img {
  height: 100%;
  width: auto;
}

.lightbox-gallery__item.show-amount .amount {
  display: flex;
}

.lightbox-gallery__close {
  width: 56px;
  height: 56px;
  position: absolute;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  top: -58px;
  right: -16px;
  transition: all 0.3s;
}

.lightbox-gallery__close .i-close-big {
  transition: all 0.3s;
}

@media (min-width: 1280px) {
  .lightbox-gallery__close {
    top: -11px;
    right: -60px;
  }
}

.lightbox-gallery__close:focus {
  outline: none;
}

.lightbox-gallery__btn {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #7f7e7e;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  outline: none;
}

@media (min-width: 1280px) {
  .lightbox-gallery__btn {
    cursor: pointer;
  }
}

.lightbox-gallery__btn .i-arrow-small {
  width: 18px;
  height: 13px;
}

.lightbox-gallery__btn:active,
.lightbox-gallery__btn:focus {
  outline: none;
}

@media (min-width: 1280px) {
  .lightbox-gallery__btn:hover {
    background-color: #F50016;
    border-color: #F50016;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
  }
}

.lightbox-gallery__btn .i-arrow-small {
  transform: rotate(90deg);
  margin-left: -4px;
}

.lightbox-gallery__btn--right {
  right: 0;
  left: auto;
  padding: 0;
}

.lightbox-gallery__btn--right .i-arrow-small {
  transform: rotate(-90deg);
  margin-left: 4px;
}

.lightbox {
  cursor: default;
}

.lightbox.mfp-bg {
  background: rgba(20, 44, 54, 0.7);
}

.lightbox .mfp-image-holder .mfp-content,
.lightbox .mfp-iframe-holder .mfp-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  max-width: 80%;
}

.lightbox .mfp-image-holder .mfp-figure:after,
.lightbox .mfp-iframe-holder .mfp-figure:after {
  display: none;
}

.lightbox .mfp-image-holder .mfp-figure .close,
.lightbox .mfp-iframe-holder .mfp-figure .close {
  position: absolute;
  top: 56px;
  right: 16px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}

@media (hover: hover) {
  .lightbox .mfp-image-holder .mfp-figure .close:hover .i-close,
  .lightbox .mfp-iframe-holder .mfp-figure .close:hover .i-close {
    fill: #ff7f32;
  }
}

@media (max-width: 767px) {
  .lightbox .mfp-image-holder .mfp-figure .close,
  .lightbox .mfp-iframe-holder .mfp-figure .close {
    top: 48px;
    right: 8px;
    width: 16px;
    height: 16px;
    z-index: 1;
  }
}

.lightbox .mfp-image-holder .mfp-figure .close:active .i-close,
.lightbox .mfp-iframe-holder .mfp-figure .close:active .i-close {
  fill: #ff7f32;
}

.lightbox .mfp-image-holder .mfp-figure .close .i-close,
.lightbox .mfp-iframe-holder .mfp-figure .close .i-close {
  display: block;
  width: 100%;
  height: 100%;
  fill: #adb4c8;
}

.lightbox .mfp-image-holder .mfp-bottom-bar,
.lightbox .mfp-iframe-holder .mfp-bottom-bar {
  position: relative;
}

.lightbox .mfp-image-holder .mfp-title,
.lightbox .mfp-iframe-holder .mfp-title {
  text-align: left;
  padding: 0;
  color: #142c36;
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .lightbox .mfp-image-holder .mfp-title,
  .lightbox .mfp-iframe-holder .mfp-title {
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .lightbox .mfp-image-holder .mfp-title,
  .lightbox .mfp-iframe-holder .mfp-title {
    font-size: 26px;
    line-height: 32px;
  }
}

.lightbox .mfp-image-holder .mfp-img,
.lightbox .mfp-iframe-holder .mfp-img {
  cursor: default;
}

.lightbox .mfp-image-holder .mfp-counter,
.lightbox .mfp-iframe-holder .mfp-counter {
  text-align: left;
  color: #7f7e7e;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
}

@media (min-width: 768px) {
  .lightbox .mfp-image-holder .mfp-counter,
  .lightbox .mfp-iframe-holder .mfp-counter {
    text-align: center;
  }
}

.lightbox .mfp-image-holder .mfp-arrow,
.lightbox .mfp-iframe-holder .mfp-arrow {
  left: -24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: #edf0f8;
  transition: background 0.3s, box-shadow 0.3s;
  outline: none;
  margin: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  color: #adb4c8;
}

@media (min-width: 768px) {
  .lightbox .mfp-image-holder .mfp-arrow,
  .lightbox .mfp-iframe-holder .mfp-arrow {
    width: 56px;
    height: 56px;
    bottom: auto;
  }
}

.lightbox .mfp-image-holder .mfp-arrow .i-arrow,
.lightbox .mfp-iframe-holder .mfp-arrow .i-arrow {
  width: 12px;
  height: 8px;
  fill: currentColor;
  transform: rotate(90deg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .lightbox .mfp-image-holder .mfp-arrow .i-arrow,
  .lightbox .mfp-iframe-holder .mfp-arrow .i-arrow {
    width: 24px;
    height: 15px;
  }
}

.lightbox .mfp-image-holder .mfp-arrow:after,
.lightbox .mfp-image-holder .mfp-arrow:before,
.lightbox .mfp-iframe-holder .mfp-arrow:after,
.lightbox .mfp-iframe-holder .mfp-arrow:before {
  display: none;
}

.lightbox .mfp-image-holder .mfp-arrow:active,
.lightbox .mfp-iframe-holder .mfp-arrow:active {
  background: #ff7f32;
  color: white;
}

.lightbox .mfp-image-holder .mfp-arrow-right,
.lightbox .mfp-iframe-holder .mfp-arrow-right {
  left: auto;
  right: -24px;
}

.lightbox .mfp-image-holder .mfp-arrow-right .i-arrow,
.lightbox .mfp-iframe-holder .mfp-arrow-right .i-arrow {
  transform: rotate(-90deg);
}

@media (min-width: 1280px) {
  .lightbox .mfp-image-holder .mfp-arrow:hover,
  .lightbox .mfp-iframe-holder .mfp-arrow:hover {
    box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
    background: #ff7f32;
    color: white;
  }
}

.lightbox .mfp-iframe-holder .mfp-close {
  right: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 50px;
  line-height: 24px;
  color: #ff7f32;
}

.thumbnails-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -24px;
}

.contacts {
  margin: 64px 0;
}

.contacts-wrapper {
  margin: 24px 0 32px;
}

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

.contacts-item {
  margin: 0 0 24px;
}

@media (min-width: 768px) {
  .contacts-item {
    width: calc(33.3% - 54px);
    margin: 0 32px 0 0;
  }
}

@media (min-width: 1280px) {
  .contacts-item {
    width: calc(33.3% - 45px);
  }
}

.contacts-item a {
  margin-bottom: 4px;
  display: inline-block;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
}

@media (min-width: 768px) {
  .contacts-item a {
    margin-bottom: 8px;
  }
}

.contacts-item a.h3 {
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 1280px) {
  .contacts-item a.h3 {
    font-size: 24px;
    line-height: 34px;
  }
}

@media (min-width: 1024px) {
  .contacts-item .note-text {
    font-size: 16px;
    line-height: 26px;
  }
}

.contacts p {
  max-width: 813px;
}

.contacts .btn-blue {
  min-width: 179px;
}

.other-diagnostics h3 {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .other-diagnostics__list {
    -moz-columns: 2;
         columns: 2;
  }
}

@media (min-width: 1280px) {
  .other-diagnostics__list {
    -moz-columns: 3;
         columns: 3;
  }
}

.other-diagnostics__list li {
  margin-bottom: 8px;
}

.other-diagnostics__list li a {
  cursor: pointer;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #142c36;
  transition: color 0.3s;
}

.other-diagnostics__list li a:hover {
  color: #F50016;
}

.rating {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .rating {
    flex-wrap: wrap;
  }
}

.rating.has-error .rating-value-mark {
  stroke: #F50016;
}

.rating-label {
  font-family: "Montserrat", Arial, sans-serif;
  margin-right: 32px;
  font-size: 14px;
  line-height: 18px;
  color: #142c36;
}

@media (max-width: 767px) {
  .rating-label {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
}

.rating-value {
  display: flex;
}

.rating-value[data-rating^="1"]:not([data-rating-hover]) .rating-value-mark:nth-child(-n+1),
.rating-value[data-rating^="2"]:not([data-rating-hover]) .rating-value-mark:nth-child(-n+2),
.rating-value[data-rating^="3"]:not([data-rating-hover]) .rating-value-mark:nth-child(-n+3),
.rating-value[data-rating^="4"]:not([data-rating-hover]) .rating-value-mark:nth-child(-n+4),
.rating-value[data-rating^="5"]:not([data-rating-hover]) .rating-value-mark:nth-child(-n+5),
.rating-value[data-rating-hover="1"] .rating-value-mark:nth-child(-n+1),
.rating-value[data-rating-hover="2"] .rating-value-mark:nth-child(-n+2),
.rating-value[data-rating-hover="3"] .rating-value-mark:nth-child(-n+3),
.rating-value[data-rating-hover="4"] .rating-value-mark:nth-child(-n+4),
.rating-value[data-rating-hover="5"] .rating-value-mark:nth-child(-n+5) {
  fill: #57c526;
  opacity: 1;
}

.rating-value-mark {
  opacity: 1;
  fill: #7f7e7e;
  cursor: pointer;
  transition: fill 0.1s linear;
}

.rating-value-mark:not(:last-child) {
  padding-right: 8px;
}

.rating-value-mark.hover {
  fill: #57c526;
}

.rating-value-mark svg {
  display: block;
  width: 32px;
  height: 32px;
}

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

.schedule-page {
  margin: 0px -24px 0;
}

@media (min-width: 768px) {
  .schedule-page {
    margin: 0px -12px 0;
  }
}

@media (min-width: 1024px) {
  .schedule-page {
    margin: 0;
  }
}

.schedule-page-spoiler.opened .spoiler-box__header-btn {
  border-bottom-color: transparent;
}

.schedule-page-spoiler .spoiler-box__header-btn {
  padding: 16px 0 16px;
  border-bottom: 1px solid #7f7e7e;
  margin: 0 12px;
}

@media (max-width: 767px) {
  .schedule-page-spoiler .spoiler-box__header-btn {
    margin: 0 24px;
  }
}

@media (min-width: 1024px) {
  .schedule-page-spoiler .spoiler-box__header-btn {
    margin: 0;
    padding: 24px 0 24px;
  }
}

.schedule-page-spoiler .timetable {
  display: block;
}

.schedule-page-spoiler .timetable__text {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .schedule-page-spoiler .timetable__text {
    display: none;
  }
}

.schedule-page-spoiler .timetable__place {
  margin-left: 12px;
}

@media (min-width: 1280px) {
  .schedule-page-spoiler .timetable__place {
    margin-left: 24px;
  }
}

.schedule-page-spoiler .timetable .slider__wrapper {
  max-width: calc(100% - 24px);
}

@media (min-width: 1024px) {
  .schedule-page-spoiler .timetable .slider__wrapper {
    max-width: calc(100% - 48px);
  }
}

@media (min-width: 1280px) {
  .schedule-page-spoiler .timetable .slider__btn {
    left: -32px;
  }
}

@media (min-width: 1280px) {
  .schedule-page-spoiler .timetable .slider__btn--right {
    left: auto;
    right: -32px;
  }
}

@media (max-width: 767px) {
  .schedule-page-spoiler .timetable .slider--timetable {
    display: none;
  }
}

@media (min-width: 768px) {
  .schedule-page-spoiler .timetable .slider--timetable {
    margin: 0 0 24px;
  }
}

.schedule-page-spoiler .timetable .slider--timetable:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .schedule-page-spoiler .timetable .slider--timetable.date {
    border: none;
    margin: 0;
    margin-left: auto;
    overflow: hidden;
    margin-bottom: 16px;
    padding: 8px 0 20px;
  }
}

@media (min-width: 1280px) {
  .schedule-page-spoiler .timetable .slider--timetable.date {
    width: 814px;
    padding: 8px 0 11px;
  }
}

.schedule-page-spoiler .timetable .slider--timetable.date.fixed .slider__btn {
  left: -8px;
}

.schedule-page-spoiler .timetable .slider--timetable.date.fixed .slider__btn--right {
  right: -8px;
  left: auto;
}

.schedule-page-spoiler .timetable .slider--timetable.date.fixed .slider__wrapper {
  top: -1px;
  left: 0;
  position: fixed;
  z-index: 10;
  flex-wrap: nowrap;
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  padding: 20px 12px;
  width: 745px;
}

@media (min-width: 1024px) {
  .schedule-page-spoiler .timetable .slider--timetable.date.fixed .slider__wrapper {
    width: 976px;
    padding: 20px 24px;
  }
}

@media (min-width: 1280px) {
  .schedule-page-spoiler .timetable .slider--timetable.date.fixed .slider__wrapper {
    width: 814px;
  }
}

@media (min-width: 1280px) {
  .schedule-page-spoiler .timetable .slider--timetable .slick-slide {
    width: 134px;
  }
}

.legal-info-page-top {
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .legal-info-page-top {
    margin-bottom: 64px;
  }
}

.legal-info-page .info-list {
  padding: 0;
}

.legal-info-page .info-list__link {
  margin-bottom: 18px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .legal-info-page .info-list__link {
    align-items: center;
  }
}

.legal-info-page .info-list__link:last-child {
  margin-bottom: 0;
}

.legal-info-page .spoiler-box {
  margin-top: -1px;
}

.legal-info-page .spoiler-box.opened .spoiler-box__header-btn {
  border-bottom-color: transparent;
}

.legal-info-page .spoiler-box.opened .spoiler-box__header-btn .i-arrow {
  transform: rotate(180deg);
}

.legal-info-page .spoiler-box__btn-show {
  margin: 16px 0;
}

@media (min-width: 1280px) {
  .legal-info-page .spoiler-box__btn-show {
    margin: 16px 0 27px;
  }

  .legal-info-page .spoiler-box__btn-show:hover {
    color: #F50016;
    border-bottom-color: transparent;
  }
}

.legal-info-page .spoiler-box__header-btn {
  padding: 16px 0px 16px;
  border-bottom: 1px solid #7f7e7e;
  border-top: 1px solid #7f7e7e;
}

@media (min-width: 1024px) {
  .legal-info-page .spoiler-box__header-btn {
    margin: 0;
    padding: 24px 0 24px;
  }
}

.legal-info-page table {
  margin-bottom: 32px;
}

.legal-info-page table td {
  padding: 10px;
}

.legal-info-page a:not(.info-list__link) {
  border-bottom: 1px solid #ff7f32;
  color: #142c36;
  transition: all 0.3s;
}

@media (min-width: 1280px) {
  .legal-info-page a:not(.info-list__link):hover {
    color: #F50016;
    border-bottom: 1px solid transparent;
  }
}

.legal-info-page ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: item;
}

.legal-info-page ol li {
  margin-bottom: 16px;
}

.legal-info-page ol li.h4 {
  margin-bottom: 24px;
}

.legal-info-page ol li:last-child {
  margin-bottom: 0;
}

.legal-info-page ol li::before {
  counter-increment: item;
  content: counters(item, ".") ". ";
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", Arial, sans-serif;
}

.legal-info-page ol li ol {
  margin-top: 12px;
}

.legal-info-page ol li ol li {
  display: inline-block;
  margin-bottom: 8px;
}

.legal-info-page ol li ol li::before {
  content: counters(item, ".") ". ";
  font-weight: 300;
  font-family: "Montserrat", Arial, sans-serif;
}

.legal-info-page ol li ol li p {
  display: inline;
  margin-bottom: 0;
}

.legal-info-page ol li ol li ol {
  margin-left: 12px;
}

.legal-info-page ol li ol li ol li::before {
  content: counters(item, ".", ". ") ". ";
}

.legal-info-page ol li ol li ul {
  margin: 8px 0 0 12px;
}

.legal-info-page ol li ol li ul li {
  display: block;
}

.legal-info-page ol li ol li ul li::before {
  content: "- ";
  counter-increment: none;
}

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

.map-popover {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  max-width: 276px;
  z-index: 1060;
  background-color: #ffffff;
}

.map-popover .arrow {
  display: none;
}

.map-popover__inner {
  width: 243px;
  padding: 16px 12px 12px;
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  border-radius: 12px;
}

.map-popover__title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", Arial, sans-serif;
}

.map-popover__title::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-bottom: 1px solid #ff7f32;
  border-right: 1px solid #ff7f32;
  transform: rotate(-45deg);
}

.map-popover__content {
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #6b6b6b;
}

.map-popover__address {
  margin-bottom: 8px;
}

.map-popover__row {
  display: flex;
  width: 100%;
  margin-bottom: 4px;
}

.map-popover__row span:first-child {
  width: 35px;
  margin-right: 22px;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #edf0f8;
}

@media (max-width: 1279px) {
  .error-page {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 184px 117px 40px;
  }
}

@media (max-width: 767px) {
  .error-page {
    padding: 48px 24px 60px;
  }
}

.error-page__content {
  display: flex;
  width: 1180px;
}

@media (max-width: 1919px) {
  .error-page__content {
    width: 1076px;
  }
}

@media (max-width: 1279px) {
  .error-page__content {
    width: 100%;
    flex-direction: column;
  }
}

.error-page__left-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 472px;
  height: 472px;
  margin-right: 80px;
  border-radius: 50%;
  background-color: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 1919px) {
  .error-page__left-img {
    width: 392px;
    height: 392px;
    margin-right: 56px;
  }
}

@media (max-width: 1279px) {
  .error-page__left-img {
    width: 104px;
    height: 104px;
    margin-right: 0;
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .error-page__left-img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }
}

.error-page__left-img img {
  width: 245px;
  height: 285px;
}

@media (max-width: 1919px) {
  .error-page__left-img img {
    width: 203px;
    height: 237px;
  }
}

@media (max-width: 1279px) {
  .error-page__left-img img {
    width: 54px;
    height: 63px;
  }
}

@media (max-width: 767px) {
  .error-page__left-img img {
    width: 33px;
    height: 39px;
  }
}

.error-page__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.error-page__title {
  margin-bottom: 24px;
  font-size: 38px;
  line-height: 52px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #142c36;
}

@media (max-width: 1279px) {
  .error-page__title {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 767px) {
  .error-page__title {
    margin-bottom: 24px;
  }
}

.error-page__text {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #6b6b6b;
}

.error-page__text a {
  display: inline-block;
  color: #142c36;
  font-family: inherit;
  line-height: inherit;
  border-bottom: 1px solid #ff7f32;
}

.error-page .btn {
  margin-top: 32px;
  align-self: flex-start;
}

.doctor-schedule__mobile {
  display: none;
}

@media (max-width: 767px) {
  .doctor-schedule__mobile {
    display: block;
  }
}

.doctor-schedule__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -24px;
  padding: 16px 25px;
  background-color: #e8eaee;
}

.doctor-schedule__mobile-header .i-arrow {
  margin-left: 16px;
  fill: #6b6b6b;
}

.doctor-schedule__mobile-cards {
  max-height: 378px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.doctor-schedule__mobile-cards.opened {
  max-height: 800px;
}

.doctor-schedule__mobile-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.doctor-schedule__mobile.opened .doctor-schedule__mobile-content {
  max-height: 500px;
}

.doctor-schedule__mobile .note-text::after {
  display: none;
}

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

.show-more-cards-button .btn-ico-bg {
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

.show-more-cards-button.opened .btn-ico-bg {
  transform: rotate(180deg);
}

.btn-up {
  border-radius: 50%;
  border: none;
  width: 48px;
  height: 48px;
  background: #ff7f32;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  position: absolute;
  right: 24px;
  top: -54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .btn-up {
    top: -62px;
  }
}

@media (min-width: 1280px) {
  .btn-up {
    top: -70px;
  }
}

.btn-up .i-arrow-long {
  height: 11px;
  width: 23px;
  fill: #ffffff;
  transform: rotate(-90deg);
}

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

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

.time-slot {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 28px;
  margin-right: 0;
  cursor: pointer;
  overflow: hidden;
}

.time-slot__text {
  padding-left: 0;
  transition: color 0.3s;
  margin: 0 auto;
}

.time-slot input[type=radio] {
  opacity: 0;
  position: absolute;
  left: -100%;
}

.time-slot input:checked ~ .time-slot__text {
  cursor: default;
  color: #ffffff;
}

.highlight-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 50px 48px;
  text-align: center;
  background-color: #f2f2f2;
}

@media (max-width: 1024px) {
  .highlight-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 50px 40px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .highlight-block {
    padding: 24px 16px;
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media (min-width: 1025px) {
  .highlight-block-item:not(:first-child) {
    margin-top: 32px;
  }
}

@media (max-width: 1024px) {
  .highlight-block-item {
    width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 767px) {
  .highlight-block-item {
    display: flex;
    width: 100%;
  }

  .highlight-block-item:not(:first-child) {
    margin-top: 14px;
  }
}

.highlight-block-item--highlight {
  color: #F50016;
}

@media (max-width: 767px) {
  .highlight-block-item--highlight {
    color: inherit;
  }
}

.highlight-block-value {
  margin: 0;
  line-height: 52px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .highlight-block-value {
    line-height: 48px;
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .highlight-block-value {
    margin-right: 8px;
    line-height: 26px;
    font-size: 16px;
  }
}

.highlight-block-property {
  margin: 4px 0 0;
  line-height: 26px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .highlight-block-property {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 300;
  }
}

.requirements-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.requirements-section {
  width: 100%;
}

@media (min-width: 1025px) {
  .requirements-section {
    width: calc((100% - 20px) / 2);
  }
}

.requirements-section ul {
  margin: 0;
}

.franchise .top-page {
  margin-bottom: 5rem;
  padding-top: 24px;
  padding-bottom: 64px;
  background-image: linear-gradient(90deg, #ffefef 0%, rgba(255, 255, 255, 0.05) 82.62%, #4fa0f0 117.72%);
  background-size: auto 100%;
  background-position: 100% 50%;
}

@media (max-width: 1024px) {
  .franchise .top-page {
    margin-bottom: 4rem;
  }
}

.franchise .top-page .info-list {
  margin: 0;
  padding: 0;
}

.franchise .top-page .icon-el {
  margin: 24px 0 32px;
  border: none;
}

@media (max-width: 1024px) {
  .franchise .top-page .icon-el {
    margin: 24px 0;
  }
}

@media (max-width: 767px) {
  .franchise .top-page .icon-el--row {
    margin: 16px 0 24px;
  }
}

.franchise .top-page .icon-el--row .icon-el__item {
  display: block;
  border: none;
}

@media (max-width: 767px) {
  .franchise .top-page .icon-el--row .icon-el__item {
    display: flex;
    margin-bottom: 12px;
  }
}

@media (min-width: 1025px) {
  .franchise .top-page .icon-el--row .icon-el__icon {
    margin-bottom: 8px;
    line-height: 52px;
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .franchise .top-page .icon-el--row .icon-el__icon {
    line-height: 1;
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .franchise .top-page .icon-el--row .icon-el__icon {
    margin-right: 10px;
    line-height: 26px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .franchise .top-page .top-page-info__bottom {
    display: block;
  }

  .franchise .top-page .top-page-info__bottom .info-list {
    margin-top: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .franchise .section-blue__wrapper .spoiler-wrapper {
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .franchise .section-blue__wrapper .spoiler-wrapper .spoiler-box:last-child {
    border: none;
  }
}

@media (max-width: 1024px) {
  .franchise .section--description .split-container {
    margin-bottom: 32px;
  }
}

@media (max-width: 1024px) {
  .franchise .section--description ul:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .franchise .section--description .highlight-block {
    padding: 32px 40px 40px;
  }
}

@media (max-width: 767px) {
  .franchise .section--description .highlight-block {
    padding: 24px 16px 32px;
  }
}

@media (max-width: 1024px) {
  .franchise .section--description .highlight-block-item {
    flex: 1 1 0;
  }

  .franchise .section--description .highlight-block-item:nth-child(2) {
    flex-grow: 1.5;
    padding-right: 20px;
  }
}

.franchise .section--icons {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .franchise .section--icons {
    padding-top: 24px;
  }
}

.franchise .section--icons .icon-el {
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .franchise .section--icons .icon-el {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .franchise .section--icons .icon-el {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.franchise .section--icons .icon-el__item {
  align-items: center;
}

@media (max-width: 1024px) {
  .franchise .section--icons .icon-el__item {
    display: block;
    padding-right: 20px;
    width: 33.3333333333%;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .franchise .section--icons .icon-el__item {
    display: flex;
    align-items: stretch;
    padding: 0;
    width: 100%;
  }
}

.franchise .section--icons .icon-el__item:hover {
  color: #142c36;
}

@media (max-width: 1024px) {
  .franchise .section--icons .icon-el__icon {
    display: block;
    height: 52px;
    width: 38px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .franchise .section--icons .icon-el__icon {
    width: 30px;
    height: 41px;
  }
}

.franchise .section--icons .icon-el__title {
  font-weight: 300;
}

@media (max-width: 1024px) {
  .franchise .section--icons .icon-el__title {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .franchise .section--icons .icon-el__title {
    display: flex;
    align-items: center;
    margin: 0;
  }
}

.franchise .section--requirements {
  padding: 3.5rem 0;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1024px) {
  .franchise .section--requirements {
    padding: 3.5rem 1.5rem 4rem;
    background-position: 55% 0;
  }
}

@media (max-width: 767px) {
  .franchise .section--requirements {
    background-image: none !important;
  }
}

@media (min-width: 1025px) {
  .franchise .section--requirements .section-blue__wrapper .spoiler-wrapper {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 1024px) {
  .franchise .section--requirements .section-blue__wrapper .spoiler-wrapper {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .franchise .section--requirements .section-blue__wrapper .spoiler-wrapper {
    margin-bottom: 32px;
  }
}

@media (min-width: 1025px) {
  .franchise .section--requirements .section-blue__wrapper .spoiler-wrapper .spoiler-box {
    width: calc((100% - 20px) / 2);
  }
}

@media (min-width: 768px) {
  .franchise .section--requirements .section-blue__wrapper .spoiler-wrapper .spoiler-box {
    border: none;
  }
}

@media (max-width: 767px) {
  .franchise .section--requirements .section-blue__wrapper .spoiler-wrapper .spoiler-box {
    margin: 0 -24px;
    padding: 0 24px;
    width: auto;
  }
}

.franchise .section--requirements .section-blue__wrapper .spoiler-wrapper .spoiler-box__header-btn {
  cursor: default;
}

@media (min-width: 768px) {
  .franchise .section--requirements .section-blue__wrapper .spoiler-wrapper .spoiler-box__header-btn {
    padding: 0 0 1rem;
  }
}

.franchise .section--requirements .section-blue__wrapper .spoiler-wrapper .spoiler-box .h4 {
  line-height: 26px;
  font-size: 16px;
  cursor: default;
}

.franchise .section--requirements .page-content ul {
  margin: 0;
}

@media (max-width: 1024px) {
  .franchise .section--requirements .page-content ul {
    margin-bottom: 32px;
  }
}

.franchise .section--form {
  margin-top: -24px;
}

@media (max-width: 1024px) {
  .franchise .section--form {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .franchise .section--form .checkbox__text {
    line-height: 1.5;
    font-size: 12px;
  }
}

.franchise .section--form .checkbox__text a {
  font-size: inherit;
}

.franchise .split-container {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .services-list .popup-button .popup-button__title {
    flex-grow: 2;
  }
}

.services-list .popup-button .popup-button__title span {
  position: relative;
}

@media (max-width: 767px) {
  .services-list .popup-button .popup-button__title span {
    display: block;
    width: 100%;
  }
}

.services-list .popup-button .popup-button__title span svg {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

@media (max-width: 767px) {
  .services-list .popup-button .popup-button__title span svg {
    right: -20px;
  }
}

.analyzes__mobile-spoilers {
  display: none;
}

@media (max-width: 767px) {
  .analyzes__mobile-spoilers {
    display: block;
    margin-bottom: 16px;
  }
}

.analyzes__mobile-spoilers .spoiler-box__header-btn {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 16px 24px;
  background-color: #e8eaee;
}

@media (max-width: 767px) {
  .analyzes .nav-tabs,
  .analyzes .tab-content {
    display: none;
  }
}

.analyzes-prices {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  background-color: #ecfae2;
  border-radius: 24px;
  padding: 24px;
  margin: 0 0 24px 0;
}

.analyzes-prices div:nth-child(1).h2 {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  margin: 0;
}

.analyzes-prices a {
  width: 100%;
  max-width: 250px;
  background: #6EA55A;
}

@media (max-width: 1023px) {
  .analyzes-prices {
    margin: 0 0 32px 0;
  }
}

@media (max-width: 670px) {
  .analyzes-prices {
    padding: 24px 16px 24px 16px;
    gap: 16px;
    flex-direction: column;
  }

  .analyzes-prices div {
    text-align: center;
  }
}

.analyzes-page .price {
  opacity: 0;
}

.top-page.about .breadcrumbs {
  margin: 0 0 2.5em 0;
}

.top-page.about::after {
  content: url("/images/about/sloy10.png");
  position: absolute;
  bottom: -251px;
  right: 0;
  width: 50%;
  height: 100%;
}

.top-page-info h1 {
  margin-bottom: 5.5rem;
}

.about.section-bg {
  position: relative;
  width: 100vw;
  margin: -24px 0 0 calc((100vw - 100%) / -2);
  padding: 24px calc((100vw - 100%) / 2) 19px;
  background: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/images/about/section_about_bg.jpg);
  min-height: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about.section-bg .wrap {
  padding: 0 25vw 0 0;
}

.about.section-bg .wrap h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.about.section-bg .wrap p {
  color: white;
}

.about.section-tooday {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: -6em;
}

.about.section-tooday__content {
  margin-left: 2em;
}

.about__descr {
  display: grid;
  grid-template-columns: 2.384fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.about__descr-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 80px 200px;
  border-radius: 32px;
  background: #F7F7FC;
}

.about__descr-content::before {
  content: url(/images/about/nrmed-logo-about.png);
  position: absolute;
  bottom: 41px;
  left: 0;
  width: 100%;
  max-width: 192px;
  height: auto;
}

.about__descr-content p {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  text-align: left;
}

.about__descr-content p span {
  font-weight: 400;
}

.about__descr-content p a {
  word-break: break-word;
  color: #ff7f32;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .about__descr-content p a:hover {
    color: #9DC65F;
  }
}

.about__descr-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about__descr-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 24px;
  border-radius: 16px;
}

.about__descr-link::before {
  position: absolute;
  width: 100%;
  max-width: 81px;
  height: 100%;
  max-height: 81px;
  right: 12px;
  bottom: 11px;
}

.about__descr-link:nth-child(1) {
  background: #9DC65F;
}

.about__descr-link:nth-child(1)::before {
  content: url(/images/about/like-about.svg);
}

.about__descr-link:nth-child(2) {
  background: #6EA55A;
}

.about__descr-link:nth-child(2)::before {
  content: url(/images/about/archive-book-about.svg);
}

.about__descr-link-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  color: #fff;
}

.about__descr-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: none;
  outline: none;
  color: #ff7f32;
  cursor: pointer;
  transition: all 350ms ease-in-out;
}

@media (hover: hover) {
  .about__descr-link:hover .about__descr-link-icon {
    background: #ff7f32;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  .about__descr {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .about__descr-links {
    grid-template-columns: 1fr 1fr;
  }

  .about__descr-content {
    order: 3;
    padding: 24px;
  }

  .about__descr-content::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .about__descr-links {
    grid-template-columns: 1fr;
  }
}

.icon-item-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 48px;
}

.icon-item-list .icon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.icon-item-list .icon-item__icon img {
  width: 100%;
}

.icon-item-list .icon-item__text {
  margin-left: 2em;
}

@media (max-width: 1024px) {
  .icon-item-list {
    padding: 48px 0 48px 0;
  }
}

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

.section-green {
  background-color: #9ec660;
  max-width: 100vw;
  left: 50%;
  position: relative;
  right: 50%;
  width: auto;
  margin: 0 -50vw 0;
  padding: 45px 0 50px 0;
}

.section-green__wrapper {
  position: relative;
  margin: 0 auto;
}

.top-page-info h1 {
  font-size: 60px;
  letter-spacing: 1px;
  color: #828282;
  font-weight: 700;
}

.section-about {
  max-width: 100vw;
  left: 50%;
  position: relative;
  right: 50%;
  width: auto;
  margin: 0 -50vw 34px;
  padding: 0 0 50px 0;
}

.section-about__wrapper {
  display: flex;
}

.section-about .svg-container {
  width: 400px;
  height: 95px;
  margin-top: 95px;
  margin-left: -23px;
  margin-right: 52px;
}

.section-about .logo-wrapper {
  width: 100%;
  display: flex;
}

.section-about .about-line {
  height: 1px;
  background-color: black;
  width: 370px;
  margin-top: 160px;
}

.section-about .about-wrapper__container .wrap {
  padding: 30px 380px 20px 99px;
}

.section-about .about-wrapper__container .wrap p {
  margin-bottom: 28px;
  line-height: 24px;
}

.section-about .about-wrapper__container .wrap p a {
  word-break: break-word;
  color: #ff7f32;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .section-about .about-wrapper__container .wrap p a:hover {
    color: #9DC65F;
  }
}

.about-card-section .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-card-section .title {
  padding-bottom: 8px;
}

.about-card-section .title span {
  font-size: 132px;
  letter-spacing: 1px;
  color: #e8eaee;
  font-weight: 700;
}

.about-card-section .line-about {
  height: 1px;
  background-color: black;
  width: 330px;
}

.about-card-section__lead {
  color: #828282;
  margin-left: 50px;
  font-size: 37px;
  font-weight: 700;
}

.about-card-section__lead span {
  font-size: 36px;
  letter-spacing: 0px;
  color: #9ec660;
  font-weight: 700;
}

.staff-card-section {
  text-align: center;
  padding-top: 88px;
}

.staff-card-section .wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.staff-card-section__wrapper {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-bottom: 50px;
}

.staff-card-section__cardbody {
  padding-bottom: 28px;
  border-radius: 30px;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.13);
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  min-height: 578px;
  height: 100%;
}

.staff-card-section__cardbody::before {
  content: url("/images/about/transplogo.png");
  position: absolute;
  position: absolute;
  bottom: -22px;
  left: -10px;
}

.staff-card-section__photo {
  max-height: 305px;
  overflow: hidden;
}

.staff-card-section__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.staff-card-section__name {
  padding: 36px 4% 17px 4%;
}

.staff-card-section__name span {
  font-size: 24px;
  letter-spacing: 0px;
  color: #817f7f;
  font-weight: 600;
}

.staff-card-section__position {
  padding-left: 16px;
  padding-right: 16px;
}

.staff-card-section__position span {
  font-size: 16px;
  letter-spacing: 0px;
  color: #000000;
  font-weight: 300;
}

.staff-card-section__link {
  position: absolute;
  bottom: 28px;
  left: calc(50% - 70px);
}

.staff-card-section__link a {
  font-size: 16px;
  letter-spacing: 0px;
  color: #9ec660;
  font-weight: 400;
}

.offer-section {
  padding-top: 144px;
  padding-bottom: 40px;
}

.offer-section__title {
  margin-bottom: 45px;
}

.offer-section__title span {
  font-size: 60px;
  letter-spacing: 1px;
  color: #828282;
  font-weight: 700;
}

.offer-section__desc {
  padding-right: 150px;
  margin-bottom: 55px;
}

.offer-section__desc p {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #000000;
  font-weight: 300;
}

.offer-section__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: space-between;
}

.offer-section__col {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-bottom: 30px;
}

.offer-section__link {
  border-radius: 43px;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.13);
  background-color: #ffffff;
  text-align: center;
  display: flex;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  height: 87px;
}

.offer-section__link:hover {
  background-color: #9ec660;
}

.offer-section__link:hover > div span {
  color: #ffffff;
  border: none;
}

.offer-section__link span {
  display: inline;
  border-bottom: 1px dashed #7ba159;
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #a0a0a0;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-green__wrapper {
    width: 720px;
  }
}

@media (min-width: 1024px) {
  .section-green__wrapper {
    width: 976px;
    position: relative;
  }
}

@media (min-width: 1280px) {
  .section-green__wrapper {
    width: 1232px;
  }
}

@media screen and (max-width: 1900px) {
  .section-about .about-wrapper__container .wrap {
    padding: 30px 330px 20px 99px;
  }
}

@media screen and (max-width: 1750px) {
  .section-about .about-wrapper__container .wrap {
    padding: 30px 180px 20px 99px;
  }
}

@media screen and (max-width: 1600px) {
  .section-about .about-wrapper__container .wrap {
    padding: 30px 60px 20px 99px;
  }
}

@media screen and (max-width: 1500px) {
  .section-about .about-wrapper__container .wrap {
    padding: 30px 160px 20px 99px;
  }
}

@media screen and (max-width: 1420px) {
  .section-about__wrapper {
    flex-wrap: wrap;
  }

  .section-about__wrapper .img-container {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
  }

  .section-about__wrapper .img-container img {
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .about-wrapper__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-about .about-wrapper__container .wrap {
    padding: 30px 50px 20px 119px;
  }

  .section-about .svg-container {
    margin-left: 0;
  }

  .about-card-section__lead {
    font-size: 24px;
  }

  .about-card-section__lead span {
    font-size: 26px;
  }
}

@media screen and (max-width: 1024px) {
  .about-card-section .title span {
    font-size: 100px;
  }

  .about-card-section .line-about {
    width: 100px;
  }

  .staff-card-section__wrapper {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .offer-section__link span {
    font-size: 15px;
  }

  .section-green {
    padding: 0px 0 0px 0;
  }

  .top-page.about .top-page__content p {
    max-width: 100%;
  }

  .top-page.about::after {
    display: none;
  }

  .top-page-info h1 {
    margin-bottom: 1.5rem;
  }

  .section-about {
    padding: 0 0 0 0;
  }

  .offer-section {
    padding-top: 20px;
  }
}

@media screen and (max-width: 992px) {
  .offer-section__desc {
    padding-right: 0px;
  }
}

@media screen and (max-width: 768px) {
  .section-about .about-wrapper__container .wrap {
    padding: 30px 0px 20px 0px;
  }

  .about-wrapper__container {
    width: 100%;
  }

  .about-card-section__lead {
    font-size: 18px;
  }

  .about-card-section__lead span {
    font-size: 18px;
  }

  .about-card-section .title span {
    font-size: 60px;
  }

  .about-card-section__lead {
    margin-left: 25px;
  }

  .offer-section__title span {
    font-size: 38px;
  }

  .offer-section__col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .section-green {
    padding: 20px 0 20px 0px;
  }

  .top-page-info h1 {
    font-size: 32px;
  }
}

@media (min-width: 320px) and (max-width: 576px) {
  .about-card-section .title span {
    font-size: 38px;
  }

  .about-card-section .line-about {
    display: none;
  }

  .about-card-section__lead {
    margin-left: 0;
  }

  .staff-card-section__wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .staff-card-section__position {
    margin-bottom: 30px;
  }

  .offer-section__col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .icon-item-list {
    flex-wrap: wrap;
  }

  .section-about .svg-container {
    margin-top: 0;
  }

  .section-about .about-line {
    margin-top: 55px;
  }

  .offer-section {
    padding-bottom: 0px;
  }

  .top-page-info h1 {
    font-size: 22px;
    margin-bottom: 32px;
  }
}

.about-video-section__wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.about-video-section__wrapper::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.about-video-section video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.letter-chunk {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 130px;
}

.letter-chunk li {
  padding: 10px;
  width: 33%;
}

.letter-chunk.hidden {
  display: none;
}

.diseases-list__letter .hidden {
  display: none;
}

.alphabet-search {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.alphabet-list ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
}

.alphabet-list ul li {
  padding: 10px;
  margin-bottom: 0px;
}

.alphabet-list ul li a {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #142c36;
  font-weight: 400;
}

.diseases-search-panel {
  background-color: #e8eaee;
  padding: 28px 15px 9px 15px;
  margin-bottom: 42px;
}

.diseases-search-panel input {
  outline: none;
  padding: 20px 220px 20px 30px;
  border: none;
}

.diseases-search-panel input::-moz-placeholder {
  font-size: 16px;
  letter-spacing: 0px;
  color: #a3a3a3;
  font-weight: 400;
}

.diseases-search-panel input::placeholder {
  font-size: 16px;
  letter-spacing: 0px;
  color: #a3a3a3;
  font-weight: 400;
}

.diseases-search-panel p {
  font-size: 14px;
  letter-spacing: 0px;
  color: #959595;
  font-weight: 300;
}

.diseases-list__letter {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  min-height: 212px;
  height: 100%;
  scroll-margin-top: 200px !important;
}

.letter-chunk a {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #142c36;
  font-weight: 400;
}

.show-more-container {
  display: flex;
  justify-content: flex-end;
}

.show-more {
  border-bottom: 1px dashed #ff7f32;
  font-size: 16px;
  letter-spacing: 0px;
  color: #142c36;
  font-weight: 275;
}

.diseases-list h3 {
  font-size: 115px;
  letter-spacing: 1px;
  line-height: 175px;
  color: #ff7f32;
  font-weight: 800;
  position: absolute;
  left: 16px;
}

.diseases-list__letter[data-letter-section]::before {
  position: absolute;
  display: inline-block;
  top: -178px;
  left: -40px;
  width: 100%;
  opacity: 0.1;
  font-size: 250px;
  letter-spacing: 3px;
  line-height: 562px;
  color: #ff7f32;
  font-weight: 800;
  content: attr(data-letter-section);
  display: none;
}

@media screen and (max-width: 1280px) {
  .alphabet-list ul li {
    padding: 5px;
  }

  .letter-chunk {
    padding-left: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .diseases-search-panel input {
    padding: 20px 200px 20px 30px;
    margin-right: 15px;
  }

  .letter-chunk a {
    font-size: 14px;
  }

  .letter-chunk li {
    padding: 5px;
  }
}

@media screen and (max-width: 768px) {
  .diseases-search-panel input {
    padding: 20px 80px 20px 30px;
  }

  .letter-chunk li {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .alphabet-search {
    flex-wrap: wrap;
  }

  .diseases-search-panel input {
    padding: 20px 40px 20px 30px;
    width: 100%;
  }

  .diseases-list h3 {
    left: 5px;
    top: 0;
    font-size: 40px;
  }

  .letter-chunk {
    padding-left: 30px;
  }

  .letter-chunk a {
    font-size: 12px;
    line-height: 15px;
    word-break: break-all;
  }
}

.top-page.disease {
  background-color: #ffffff;
  overflow: unset;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .top-page.disease {
    margin: 0;
    padding: 0;
  }
}

.top-page.disease .breadcrumbs {
  margin: 0 0 2.5em 0;
}

.top-page.disease .spoiler-box__content p {
  max-width: 1000px;
}

.top-page.disease h1 {
  margin-bottom: 40px;
}

.top-page.disease .illness-dates {
  margin: 0 0 40px;
}

@media (max-width: 767px) {
  .top-page.disease .illness-dates .l-date {
    flex-direction: column;
    align-items: flex-start;
  }
}

.top-page.disease h4 {
  font-size: 22px;
  font-weight: 600;
  color: #817f7f;
  margin-bottom: 2rem;
}

.top-page.disease .spoiler-box {
  margin-bottom: 2rem;
}

.top-page.disease .section__right--illness .spoiler-box {
  margin-bottom: 0;
}

.top-page.disease .section__illness--price .spoiler-box {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .top-page.disease .section__illness--price .section__left h2 {
    margin-bottom: 24px;
  }
}

.symptoms-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em 2em;
}

li.symptoms-list__item {
  padding: 18px;
  flex: 0 0 calc(33.3333333333% - 2rem);
  background-color: #EDF0F9;
  border-radius: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  li.symptoms-list__item {
    flex: 0 0 calc(50% - 2rem);
  }
}

.section-doctors h2 {
  color: #6ea55a;
  margin-bottom: initial;
}

.section-doctors .h4 span {
  color: #817f7f;
}

.section-doctors .h4 {
  margin-top: 0;
  font-family: "Montserrat";
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #6ea55a;
  margin-bottom: 0;
}

.section-doctors .card__list {
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .section-doctors .card__list {
    justify-content: space-between;
  }
}

.section-doctors .card__list li:not(:last-child) {
  margin-right: 80px;
}

@media (max-width: 1279px) {
  .section-doctors .card__list li:not(:last-child) {
    margin-right: 40px;
  }
}

@media (max-width: 767px) {
  .section-doctors .card__list li:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .section-doctors .card__list .card__item {
    width: calc(100% - 8px);
    margin: 0 4px;
  }
}

.top-page.vacancy {
  background-color: #ffffff;
}

.top-page.vacancy .top-page-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-page.vacancy .top-page-info h1 {
  margin-bottom: unset;
}

@media screen and (max-width: 576px) {
  .top-page.vacancy .top-page-info h1 {
    font-size: 16px;
  }
}

.top-page.vacancy .top-page-info .c-select--filter {
  width: 330px;
}

@media screen and (max-width: 576px) {
  .top-page.vacancy .top-page-info .c-select--filter {
    height: unset;
    line-height: unset;
  }
}

.top-page.vacancy .top-page-info .c-select-trigger {
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #828282;
  font-weight: 600;
}

@media screen and (max-width: 576px) {
  .top-page.vacancy .top-page-info .c-select-trigger {
    font-size: 16px;
  }
}

.section__vacancy {
  border-top: 1px solid #d1d5dd;
  max-width: 100vw;
  left: 50%;
  position: relative;
  right: 50%;
  width: auto;
  margin: 0 -50vw 0;
  padding: 45px 0 45px 0;
  transition: 0.5s;
}

.section__vacancy:hover {
  background-color: #f2f4fa;
}

.section__vacancy:nth-child(2n+1) .section__vacancy-clinic__metro .ellipse {
  background-color: #ff7f32;
}

.section__vacancy:last-child {
  border-bottom: 1px solid #d1d5dd;
}

.section__vacancy-item {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .section__vacancy-item {
    width: 720px;
  }
}

@media (min-width: 1024px) {
  .section__vacancy-item {
    width: 976px;
    flex-direction: row;
  }
}

@media (min-width: 1280px) {
  .section__vacancy-item {
    width: 1232px;
    flex-direction: row;
  }
}

@media screen and (max-width: 768px) {
  .section__vacancy-item {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}

.section__vacancy-name {
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #000000;
  font-weight: 600;
  max-width: 31%;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .section__vacancy-name {
    max-width: 25%;
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .section__vacancy-name {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .section__vacancy-name {
    max-width: 100%;
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.section__vacancy-name a {
  color: #000000;
  transition: 0.3s;
}

.section__vacancy-name a:hover {
  color: #9bc45b;
}

.section__vacancy-clinic {
  max-width: 21%;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .section__vacancy-clinic {
    max-width: 27%;
  }
}

@media screen and (max-width: 768px) {
  .section__vacancy-clinic {
    max-width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}

.section__vacancy-clinic__map {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.section__vacancy-clinic__map a {
  font-size: 14px;
  letter-spacing: 0px;
  color: #142c36;
  font-weight: 275;
  border-bottom: 1px dashed #ff7f32;
  transition: 0.5s;
  margin-left: 15px;
}

.section__vacancy-clinic__map a:hover {
  border-bottom: none;
  color: #ff7f32;
}

@media screen and (max-width: 768px) {
  .section__vacancy-clinic__map {
    justify-content: center;
  }
}

.section__vacancy-clinic__metro {
  display: flex;
  align-items: center;
}

.section__vacancy-clinic__metro .ellipse {
  width: 13px;
  height: 13px;
  border-radius: 6px;
  background-color: #0572b9;
  margin-right: 15px;
}

.section__vacancy-clinic__metro span {
  font-size: 14px;
  letter-spacing: 0px;
  color: #000000;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .section__vacancy-clinic__metro {
    justify-content: center;
  }
}

.section__vacancy-all {
  max-width: 29%;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .section__vacancy-all {
    max-width: 30%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .section__vacancy-all {
    max-width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}

.section__vacancy-all a {
  font-size: 14px;
  letter-spacing: 0px;
  color: #000000;
  font-weight: 500;
  text-align: center;
  border: 1px dashed #9bc45b;
  border-radius: 27px;
  padding: 20px 43px;
  font-weight: 700;
  transition: 0.5s;
}

.section__vacancy-all a:hover {
  background-color: #9bc45b;
  color: #ffffff;
}

@media screen and (max-width: 1280px) {
  .section__vacancy-all a {
    padding: 20px 20px;
  }
}

@media screen and (max-width: 1024px) {
  .section__vacancy-all a {
    padding: 20px 6px;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .section__vacancy-all a {
    max-width: 100%;
    text-align: center;
    display: inline-block;
    padding: 20px 20px;
    font-size: 14px;
  }
}

.section__vacancy-button {
  max-width: 11%;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .section__vacancy-button {
    max-width: 14%;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .section__vacancy-button {
    max-width: 100%;
    text-align: center;
  }
}

.section__vacancy-button a {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #ff7f32;
  font-weight: 500;
  transition: 0.3s;
}

.section__vacancy-button a:hover {
  color: #9dc65f;
}

@media screen and (max-width: 1024px) {
  .section__vacancy-button a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .section__vacancy-button a {
    font-size: 18px;
  }
}

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

.section__work {
  position: relative;
  width: 100vw;
  margin: 40px 0 0 calc((100% - 100vw) / 2);
  padding: 24px calc((100vw - 100%) / 2) 127px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.section__work-wrapper {
  max-width: 55%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 57px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .section__work-wrapper {
    max-width: 100%;
  }
}

.section__work::after {
  content: url("/images/vacancy/teamvc_new.png");
  position: absolute;
  top: 0;
  left: -10vmin;
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 1280px) {
  .section__work::after {
    display: none;
  }
}

@media screen and (max-width: 1660px) {
  .section__work::after {
    left: -21vmin;
  }
}

.section__work .logo-wrapper {
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 52px;
}

@media screen and (max-width: 576px) {
  .section__work .logo-wrapper {
    margin-bottom: 20px;
  }
}

.section__work .svg-container {
  width: 415px;
  height: 95px;
}

.section__work .work-line {
  width: 248px;
  height: 1px;
  background-color: #ff7f32;
  margin-bottom: 18px;
}

@media screen and (max-width: 576px) {
  .section__work .work-line {
    margin-bottom: 32px;
  }
}

.section__work-resume {
  max-width: 560px;
  text-align: right;
}

.section__work-resume__title {
  font-size: 36px;
  letter-spacing: 0px;
  color: #4e4e4e;
  font-weight: 700;
  margin-bottom: 17px;
}

.section__work-resume__title span {
  color: #ff7f32;
}

@media screen and (max-width: 576px) {
  .section__work-resume__title {
    font-size: 21px;
    margin-bottom: 17px;
  }
}

.section__work-resume__desc p {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #000000;
  font-weight: 300;
}

.section__work-resume__desc p .link-phone__data,
.section__work-resume__desc p a {
  color: #ff7f32;
}

.section__work-resume__desc p .link-phone__data:hover,
.section__work-resume__desc p a:hover {
  color: #9dc65f;
}

@media screen and (max-width: 576px) {
  .section__work-resume__desc p {
    font-size: 15px;
  }
}

.section__work-resume__button .btn {
  padding: 23px 67px;
}

@media screen and (max-width: 576px) {
  .section__work-resume__button .btn {
    padding: 15px 15px;
  }
}

.section__work-resume__button .btn img {
  display: block;
}

@media screen and (max-width: 576px) {
  .section__work {
    margin: 0px 0 0 calc((100vw - 100%) / -2);
    padding-top: 0px;
    padding: 24px calc((100vw - 100%) / 2) 0px;
  }
}

.top-page.vacancy__item {
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-page.vacancy__item {
    padding: 24px 24px 15px 24px;
  }
}

.top-page.vacancy__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 15px;
  background-color: #d1d5dd;
  width: 100vw;
}

.top-page.vacancy__item .top-page-info {
  display: flex;
  padding: 45px 0 0 0;
}

.top-page.vacancy__item .top-page-info .img-container {
  max-width: 49%;
  width: 100%;
}

.top-page.vacancy__item .vacancy__info {
  max-width: 51%;
  width: 100%;
}

.top-page.vacancy__item .vacancy__info-title {
  font-size: 42px;
  letter-spacing: 0px;
  color: #9dc660;
  font-weight: 800;
  margin-bottom: 88px;
}

@media screen and (max-width: 1024px) {
  .top-page.vacancy__item .vacancy__info-title {
    font-size: 28px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .top-page.vacancy__item .vacancy__info-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.top-page.vacancy__item .vacancy__info-counter {
  display: flex;
  flex-wrap: wrap;
}

.top-page.vacancy__item .vacancy__info-count {
  display: flex;
  align-items: center;
  max-width: 50%;
  width: 100%;
  margin-bottom: 15px;
}

.top-page.vacancy__item .vacancy__info-count .num {
  font-size: 48px;
  letter-spacing: 0px;
  color: #818181;
  font-weight: 700;
  margin-right: 26px;
}

@media screen and (max-width: 1024px) {
  .top-page.vacancy__item .vacancy__info-count .num {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .top-page.vacancy__item .vacancy__info-count .num {
    font-size: 16px;
    margin-right: 15px;
  }
}

.top-page.vacancy__item .vacancy__info-count .text-v p {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #a9b0bd;
  font-weight: 600;
  margin-bottom: unset;
}

@media screen and (max-width: 1024px) {
  .top-page.vacancy__item .vacancy__info-count .text-v p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .top-page.vacancy__item .vacancy__info-count .text-v p {
    font-size: 12px;
    line-height: 15px;
  }
}

@media screen and (max-width: 576px) {
  .top-page.vacancy__item .vacancy__info-count {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 576px) {
  .top-page.vacancy__item .vacancy__info {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top-page.vacancy__item .img-container {
    position: relative;
  }
}

@media screen and (max-width: 576px) {
  .top-page.vacancy__item .img-container {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  .top-page.vacancy__item .img-container img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top-page.vacancy__item .img-container img {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

#vacancy__desc {
  display: flex;
}

@media screen and (max-width: 1280px) {
  #vacancy__desc {
    margin: 0 -15px;
  }
}

@media screen and (max-width: 768px) {
  #vacancy__desc {
    flex-wrap: wrap;
  }
}

#vacancy__desc .vacancy__col {
  max-width: 50%;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  #vacancy__desc .vacancy__col {
    padding: 0 15px;
  }
}

@media screen and (max-width: 768px) {
  #vacancy__desc .vacancy__col {
    max-width: 100%;
  }
}

#vacancy__desc .vacancy__col-duties {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #vacancy__desc .vacancy__col-duties {
    margin-bottom: 40px;
  }
}

#vacancy__desc .vacancy__col-request {
  margin-bottom: 50px;
}

#vacancy__desc .vacancy__col-title {
  font-size: 24px;
  letter-spacing: 0px;
  color: #9dc65f;
  font-weight: 700;
  margin-bottom: 22px;
}

#vacancy__desc .vacancy__col-desc p {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #4b585e;
  font-weight: 400;
  margin-bottom: 23px;
}

@media screen and (max-width: 1024px) {
  #vacancy__desc .vacancy__col-desc p {
    font-size: 14px;
  }
}

#vacancy__desc .vacancy__card {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  max-width: 561px;
  width: 100%;
  padding: 35px 35px 35px 40px;
  margin-left: auto;
}

#vacancy__desc .vacancy__card-title {
  font-size: 24px;
  letter-spacing: 0px;
  color: #7f807c;
  font-weight: 700;
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  #vacancy__desc .vacancy__card-title {
    margin-bottom: 50px;
  }
}

#vacancy__desc .vacancy__card-desc p {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #828282;
  font-weight: 700;
  margin-bottom: unset;
}

@media screen and (max-width: 1280px) {
  #vacancy__desc .vacancy__card-desc p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  #vacancy__desc .vacancy__card-desc p {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  #vacancy__desc .vacancy__card-desc p {
    font-size: 13px;
  }
}

#vacancy__desc .vacancy__card-list {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #vacancy__desc .vacancy__card-list {
    flex-direction: column;
  }
}

#vacancy__desc .vacancy__card-icon {
  margin-right: 60px;
}

@media screen and (max-width: 1280px) {
  #vacancy__desc .vacancy__card-icon {
    margin-right: 20px;
  }
}

@media screen and (max-width: 576px) {
  #vacancy__desc .vacancy__card-icon img {
    max-width: 25px;
  }
}

#vacancy__desc .vacancy__card-item {
  display: flex;
  align-items: center;
}

#vacancy__desc .vacancy__card-item:not(:last-child) {
  margin-bottom: 35px;
}

@media screen and (max-width: 1024px) {
  #vacancy__desc .vacancy__card {
    padding: 35px 15px 35px 15px;
  }
}

@media screen and (max-width: 768px) {
  #vacancy__desc .vacancy__card {
    max-width: 100%;
    margin-left: unset;
  }
}

.section__maptabs {
  padding-top: 125px;
}

@media screen and (max-width: 768px) {
  .section__maptabs {
    padding-top: 50px;
  }
}

.section__maptabs h1,
.section__maptabs .h1 {
  font-size: 42px;
  letter-spacing: 0px;
  color: #9dc660;
  font-weight: 800;
}

.section__maptabs h1 .selection,
.section__maptabs .h1 .selection {
  font-size: 42px;
  letter-spacing: 0px;
}

@media screen and (max-width: 576px) {
  .section__maptabs h1 .selection,
  .section__maptabs .h1 .selection {
    font-size: 23px;
  }
}

@media screen and (max-width: 576px) {
  .section__maptabs h1,
  .section__maptabs .h1 {
    font-size: 23px;
  }
}

.section__tslider {
  background-image: url("/images/vacancy/Sloy_12.jpg");
  position: relative;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  width: auto;
  margin: 0 -50vw 0;
  height: 100%;
  padding-top: 310px;
}

.section__tslider-row {
  margin: 0 auto;
  display: flex;
}

@media (min-width: 768px) {
  .section__tslider-row {
    width: 720px;
  }
}

@media (min-width: 1024px) {
  .section__tslider-row {
    width: 976px;
  }
}

@media (min-width: 1280px) {
  .section__tslider-row {
    width: 1232px;
  }
}

.section__tslider-row .image__container {
  max-width: 81%;
  width: 100%;
}

.section__tslider-row .image__container img {
  width: 100%;
}

.section__tslider-row .image__title {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #000000;
  font-weight: 600;
}

.section__tslider-row .image__subtitle {
  font-size: 14px;
  letter-spacing: 0px;
  color: #000000;
  font-weight: 300;
}

.section__tslider-row .slider-for {
  margin-top: 83px;
}

.section__tslider-row .slider-for__wrapper p {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #000000;
  font-weight: 600;
}

.section__tslider-row .slider-for::before {
  content: "";
  background-image: url("/images/vacancy/crsr.png");
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: -11px;
  top: -38px;
  width: 40px;
  height: 30px;
}

.section__tslider-row .slider-for::after {
  content: "";
  background-image: url("/images/vacancy/crsr.png");
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: -17px;
  bottom: -12px;
  width: 40px;
  height: 30px;
}

.section__tslider-row .slider-nav {
  margin-top: 55px;
}

.section__tslider-row .slick-slide {
  display: block;
}

@media (max-width: 767px) {
  .section__tslider-row .slick-slide {
    margin: 0 24px;
  }
}

.section__tslider-row .slick-slide:focus {
  outline: none;
}

.section__tslider-row .slick-slide .slick__image-wrapper {
  border-radius: 50%;
  position: relative;
  box-shadow: 9.351px 9.031px 19px rgba(0, 0, 0, 0.13);
  background: linear-gradient(197deg, rgb(0, 0, 0) -46%, rgba(217, 217, 217, 0.4822303922) 48%);
  cursor: pointer;
  max-width: 90%;
  width: 100%;
}

.section__tslider-row .slick-slide .slick__image-wrapper::before {
  content: "";
  padding-top: 100%;
  display: block;
}

@media (max-width: 1280px) {
  .section__tslider-row .slick-slide .slick__image-wrapper {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.13);
  }
}

.section__tslider-row .slick-slide .slick__image-wrapper .layout {
  opacity: 0;
  transition: 0.5s;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(180, 210, 136, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
}

.section__tslider-row .slick-slide .slick__image-wrapper:hover > .layout {
  top: 0;
  opacity: 1;
}

.section__tslider-row .slick-slide .slick__image-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1280px) {
  .section__tslider-row .slick-slide .slick__image-wrapper {
    max-width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .section__tslider-row .slick-slide .slick__image-wrapper {
    max-width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .section__tslider-row .slick-slide .slick__image-wrapper {
    max-width: 100%;
  }
}

.image__big-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.image__big-wrapper .image__container {
  position: relative;
  box-shadow: 9.351px 9.031px 19px rgba(0, 0, 0, 0.13);
  background: linear-gradient(197deg, black -46%, rgba(217, 217, 217, 0.4822303922) 48%);
  border-radius: 50%;
  height: 280px;
  width: 280px;
}

.image__big-wrapper .image__container::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0;
  background-image: url(/images/nrcard.png?0b65a7706ff7b4c69126072dfa152c03);
  width: 85px;
  height: 85px;
  background-repeat: no-repeat;
  background-size: cover;
}

.image__big-wrapper .image__container img {
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.col__work-33 {
  max-width: 33%;
  width: 100%;
}

.col__work-33 .work__title {
  font-size: 48px;
  letter-spacing: 0px;
  color: #828282;
  font-weight: 700;
  margin-bottom: 11px;
}

.col__work-33 .work__subtitle p {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #ff7f32;
  font-weight: 600;
}

.col__work-66 {
  max-width: 66%;
  width: 100%;
}

.col__work-66 .work__desc {
  position: relative;
}

.col__work-66 .work__desc p {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #000000;
  font-weight: 300;
  margin-bottom: 30px;
}

.col__work-66 .work__desc .work__line {
  height: 1px;
  background-color: #d1d5dd;
  max-width: 40%;
  width: 100%;
}

.top-page.work {
  background-color: #ffffff;
}

.top-page.work .top-page-info {
  display: flex;
  flex-wrap: wrap;
}

.top-page.work .top-page-info .col__work-100 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}

.top-page.work .top-page-info .col__work-100 .img-container img {
  max-width: 85px;
}

.top-page.work .top-page-info .col__work-100 .vacancy__info__wrapper {
  display: flex;
  max-width: 89%;
  width: 100%;
}

.top-page.work .top-page-info .col__work-100 .vacancy__info-count {
  display: flex;
  align-items: center;
  max-width: 50%;
  width: 100%;
  margin-bottom: unset;
}

.top-page.work .top-page-info .col__work-100 .vacancy__info-count .num {
  font-size: 48px;
  letter-spacing: 0px;
  color: #9dc65f;
  font-weight: 700;
  margin-right: 5px;
}

@media screen and (max-width: 1024px) {
  .top-page.work .top-page-info .col__work-100 .vacancy__info-count .num {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .top-page.work .top-page-info .col__work-100 .vacancy__info-count .num {
    font-size: 16px;
    margin-right: 15px;
  }
}

.top-page.work .top-page-info .col__work-100 .vacancy__info-count .text-v p {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #9dc65f;
  font-weight: 600;
  margin-bottom: unset;
}

@media screen and (max-width: 1024px) {
  .top-page.work .top-page-info .col__work-100 .vacancy__info-count .text-v p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .top-page.work .top-page-info .col__work-100 .vacancy__info-count .text-v p {
    font-size: 12px;
    line-height: 15px;
  }
}

@media screen and (max-width: 576px) {
  .top-page.work .top-page-info .col__work-100 .vacancy__info-count {
    margin-bottom: 15px;
  }
}

.vacancy__empty {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.slider-nav .slick-list {
  padding-bottom: 30px !important;
}

@media (max-width: 1600px) and (min-width: 1280px) {
  .section__work .logo-wrapper {
    width: 85%;
  }

  .section__work-resume__desc p {
    font-size: 16px;
    max-width: 390px;
    margin-left: auto;
  }
}

.container.insurance {
  position: relative;
  margin-top: 50px;
}

.container.insurance .top-page.corporate::after,
.container.insurance .top-page.corporate::before {
  background: none;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 120%;
  height: 100%;
}

.container.insurance .top-page.corporate {
  background: none;
  overflow: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  /*  margin-bottom: 30px; */
}

.container.insurance .top-page.corporate::after {
  background: url(/images/insuranceNew.png?69836f545337c16c8091378a5515396f) no-repeat right bottom;
}

@media (max-width: 1280px) {
  .container.insurance .top-page.corporate::after {
    width: 140%;
  }
}

@media (max-width: 1024px) {
  .container.insurance .top-page.corporate::after {
    background: none;
  }
}

.container.insurance .team-list__item-text {
  background: none;
  text-align: start;
  padding: 0;
  margin: 0;
}

.container.insurance .team-list__item-text p {
  word-wrap: break-word;
}

.container.insurance .team-list__item-name {
  color: #9dc65f;
  font-size: 32px;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 10px;
}

.container.insurance .team-list__item-note {
  font-size: 16px;
}

.container.insurance .team-list__item-link {
  margin-top: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50px;
}

.container.insurance .icon-el.icon-el--insurance {
  margin-top: 0;
  background-color: #9dc65f;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  position: relative;
}

@media (max-width: 1280px) {
  .container.insurance .icon-el.icon-el--insurance {
    display: flex;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.container.insurance .icon-el.icon-el--insurance::after,
.container.insurance .icon-el.icon-el--insurance::before {
  background-color: #9dc65f;
  display: block;
  position: absolute;
  padding: 0;
  margin: 0;
  content: " ";
  width: 100%;
  height: 100%;
}

.container.insurance .icon-el.icon-el--insurance::after {
  left: -100%;
}

.container.insurance .icon-el.icon-el--insurance::before {
  right: -100%;
}

.container.insurance .icon-el__item {
  margin: 0;
  padding: 0;
  color: white;
}

@media (max-width: 1280px) {
  .container.insurance .icon-el__item {
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .container.insurance .icon-el__item {
    border: none;
    align-items: center;
  }
}

.container.insurance .icon-el__icon svg path {
  fill: white;
}

.spoiler-box-analyzes .alphabet-list--spoiler .alphabet-list__list .spoiler-box__header-btn p {
  font-weight: 600;
  color: #817f7f;
}

.card__list-doctor-spoiler {
  display: flex;
  flex-wrap: wrap;
  transition: all 1s;
}

.card__list-doctor-spoiler .i-arrow {
  transform: rotate(-90deg);
}

.card__list-doctor-spoiler__btn.open .open {
  display: none;
}

.card__list-doctor-spoiler__btn.open .close {
  display: block;
}

.card__list-doctor-spoiler__btn.open .i-arrow {
  transform: rotate(0deg);
}

.doctor__spoiler .card {
  padding-top: 64px;
  padding-bottom: 40px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .doctor__spoiler .card {
    padding: 40px 0 40px 0;
  }
}

@media (max-width: 767px) {
  .doctor__spoiler {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 300px;
  }
}

/* .modal__job {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 100;




    &__conteiner {
        position: relative;
        padding: 50px;
        width: 600px;
        height: 800px;
        background: white;
        -webkit-box-shadow: 2px 5px 14px 5px rgba(34, 60, 80, 0.2);
        -moz-box-shadow: 2px 5px 14px 5px rgba(34, 60, 80, 0.2);
        box-shadow: 2px 5px 14px 5px rgba(34, 60, 80, 0.2);

    }

    &__close {
        width: 50px;
        height: 50px;
        position: absolute;
        right: 0;
        top: 0;

        .i-close:hover {
            color: red;
        }

    }
} */

.modal__plug {
  position: fixed;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 100;
}

.modal__plug__conteiner {
  display: flex;
  flex-direction: column;
  margin-top: 200px;
  position: relative;
  padding: 50px;
  width: 400px;
  height: 200px;
  background: white;
  box-shadow: 2px 5px 14px 5px rgba(34, 60, 80, 0.2);
}

.modal__plug__btn {
  width: 100px;
  margin-left: 100px;
}

.modal__plug__text {
  margin-bottom: 10px;
}

.modal__plug__hidden {
  display: none;
}

.pregnancy-program {
  width: 100%;
}

.pregnancy-program__table__header {
  display: flex;
  justify-content: flex-end;
}

.pregnancy-program__title {
  width: 30%;
  transition: all 0.5s;
  border: 1px solid #7f7e7e;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
}

.pregnancy-program__title div {
  margin-top: 10px;
}

.pregnancy-program__title:first-child {
  transition: all 0.5s;
  border-left: 1px solid #7f7e7e;
}

.pregnancy-program__title:hover {
  box-shadow: 0px 15px 30px rgba(127, 126, 126, 0.4);
  border: 1px solid transparent;
}

.pregnancy-program__title:hover + .pregnancy-program__title {
  border-left: 1px solid #7f7e7e;
}

.pregnancy-program__inner {
  display: flex;
  flex-direction: inherit;
  justify-content: space-around;
  align-items: center;
}

.pregnancy-program__inner .program-card__title {
  margin-bottom: 0;
}

.pregnancy-program__conplex-servise {
  padding: 16px 24px;
  border: 1px solid #7f7e7e;
  background: #e8eaee;
}

.pregnancy-program__servise {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 9px 0px 7px;
  font-size: 14px;
  line-height: 22px;
  border-bottom: 1px solid #7f7e7e;
}

.pregnancy-program__servise + .pregnancy-program__conplex-servise {
  border-top: 1px solid transparent;
}

.pregnancy-program__servise__total {
  width: 30%;
  display: flex;
  justify-content: center;
}

.pregnancy-program__servise__title {
  width: 40%;
  padding-left: 24px;
}

.posts {
  width: 100%;
  margin-bottom: 50px;
}

.spoiler-box__content .blog-description {
  max-width: none;
}

.posts-wrapper {
  width: 100%;
}

.posts__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

@media screen and (max-width: 768px) {
  .posts__list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
}

.posts__list__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border: 1px solid black;
  padding: 20px;
  transition: all 0.5s;
}

.posts__list__item__date {
  position: absolute;
  left: 0;
  top: 0;
  background: #9dc65f;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}

.posts__list__item__title {
  width: 100%;
  font-size: 1.1rem;
  color: #9dc65f;
  font-weight: 600;
}

.posts__list__item__description {
  font-size: 0.8rem;
  overflow: hidden;
  line-height: 1.4rem;
  text-align: justify;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.posts__list__item__description:not(:last-of-type) {
  margin-bottom: 16px;
}

.posts__list__item__btn-wrapper {
  width: 180px;
  margin-top: auto;
}

@media (max-width: 480px) {
  .posts__list__item__btn-wrapper {
    width: 100%;
  }

  .posts__list__item__btn-wrapper .btn {
    width: 100%;
  }
}

.posts__list__item:hover {
  border: 1px solid transparent;
  box-shadow: 0px 0px 26px 6px rgba(0, 0, 0, 0.18);
}

.post__detail .illness-dates {
  margin: 0 0 40px;
}

.post__detail__description {
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: "Montserrat";
  margin-top: 0;
  font-weight: 300;
}

.post__detail__content {
  padding-top: 30px;
}

.others__post {
  margin-top: 50px;
}

.swiper-gallery {
  overflow: hidden;
}

.swiper-gallery .swiper-wrapper {
  height: 267px;
}

@media (max-width: 767px) {
  .swiper-gallery .swiper-wrapper {
    height: 312px;
  }
}

.swiper-gallery__item {
  display: block;
  height: 100%;
}

.swiper-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

.swiper-gallery__controls {
  display: flex;
  align-items: flex-start;
}

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

.swiper-gallery .swiper-gallery__pagination {
  position: static;
  margin: 24px 0 0;
  text-align: right;
}

@media (min-width: 768px) {
  .swiper-gallery .swiper-gallery__pagination {
    display: none;
  }
}

.swiper-gallery .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #FF7F32;
  opacity: 1;
}

.swiper-gallery .swiper-pagination-bullet-active {
  background: #FF7F32;
}

.swiper-gallery__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid #ff7f32;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .swiper-gallery__button:hover {
    opacity: 0.7;
  }
}

.swiper-gallery__button svg {
  width: 16px;
  height: 20px;
  fill: #ff7f32;
}

.swiper-gallery__button.next {
  margin: 0 0 0 8px;
}

.swiper-gallery__button.next svg {
  transform: rotate(180deg);
}

.swiper-gallery__button.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}

.swiper-gallery .swiper-gallery__controls {
  justify-content: flex-end;
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .swiper-gallery .swiper-gallery__pagination {
    text-align: center;
  }
}

.appointment-widget-popup {
  z-index: 100001;
}

.appointment-widget-popup.mfp-ready .popup {
  transform: translateX(0);
  opacity: 1;
}

.appointment-widget-popup.mfp-bg {
  background: #0b0b0b;
  opacity: 0.8;
  z-index: 100001;
}

.appointment-popup__holder {
  height: 640px;
}

@media (max-width: 767px) {
  .appointment-popup__holder {
    height: 100vh;
  }
}

.appointment-popup iframe {
  height: 100%;
}

.reviews {
  margin-top: 5rem;
}

.reviews .review-card {
  background-color: white;
  padding: 35px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.18);
  border-radius: 25px;
}

@media (max-width: 767px) {
  .reviews .review-card {
    padding: 20px;
  }
}

.reviews .review-card__stars {
  fill: #ff7f32;
  margin-bottom: 15px;
}

.reviews .review-card__stars .rating {
  margin: 0;
}

.reviews .review-card__stars svg {
  fill: #ff7f32;
}

@media (max-width: 767px) {
  .reviews .review-card__stars svg {
    width: 22px;
    height: 22px;
  }
}

.reviews .review-card__text-wrapper {
  margin-bottom: 15px;
  max-height: 260px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .reviews .review-card__text-wrapper {
    max-height: 160px;
  }
}

.reviews .review-card__text {
  line-height: 20px;
}

.reviews .review-card__image {
  width: 128px;
  height: 128px;
  margin: 0 auto 15px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(127, 126, 126, 0.4);
  overflow: hidden;
}

.reviews .review-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.reviews .review-card__title {
  border-bottom: 1px solid #7F7E7E;
  margin: 0 15px 15px;
  color: #7F7E7E;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.reviews .review-card__links {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.reviews .review-card__links a {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  color: #142c36;
  font-size: 14px;
  line-height: 22px;
  border-bottom: 1px solid #ff7f32;
}

@media (hover: hover) {
  .reviews .review-card__links a:hover {
    color: #ff7f32;
    border-bottom-color: transparent;
  }
}

.reviews .review-card__btn {
  margin-bottom: 15px;
  display: none;
}

.reviews .review-card.hide-content .review-card__btn {
  display: inline-block;
}

.reviews .review-card.hide-content .review-card__text-wrapper::before {
  background-image: linear-gradient(to top, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  top: 220px;
}

@media (max-width: 767px) {
  .reviews .review-card.hide-content .review-card__text-wrapper::before {
    top: 120px;
  }
}

.reviews .review-card .collapsable-content__toggle {
  display: none;
}

.reviews .review-card .collapsable-content__wrapper {
  max-height: -moz-fit-content;
  max-height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.reviews .review-card .collapsable-content__wrapper::after {
  content: none;
}

@media (max-width: 767px) {
  .reviews h2 {
    margin-bottom: 2rem;
  }
}

.reviews .swiper-slide {
  padding: 20px;
}

@media (max-width: 767px) {
  .reviews .swiper-slide {
    padding: 0 0 24px;
  }
}

.reviews .swiper-buttons {
  width: 150px;
  display: flex;
  justify-content: space-between;
}

.reviews .swiper-buttons > * {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #edf0f8;
  padding: 15px;
  color: #adb4c8;
}

@media (max-width: 767px) {
  .reviews .swiper-buttons > * {
    display: none;
  }
}

@media (hover: hover) {
  .reviews .swiper-buttons > *:hover {
    background-color: #ff7f32;
    color: white;
  }
}

.reviews .swiper-buttons > *:after {
  font-size: 25px;
}

.reviews .card__list {
  margin-right: auto;
  flex-wrap: wrap;
}

.banner__container {
  margin: 0 auto;
  margin-bottom: 24px;
  position: relative;
}

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

.banner__container ~ .container .top-page,
.banner__container ~ .container .section-blue.full-width {
  margin-top: 0;
}

.banner__container.slider-init .banner__button {
  display: inline-block;
}

@media (max-width: 767px) {
  .banner__container.slider-init .banner__button {
    right: 10px;
  }
}

.banner__container .swiper-container {
  margin: 0;
  overflow: hidden;
}

@media (max-width: 450px) {
  .banner__container .swiper-container {
    margin: 0;
    overflow: hidden;
  }
}

.banner__container .swiper-pagination {
  z-index: 1;
}

.banner__container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #D1D4DC;
  box-shadow: 0 0 12px rgba(20, 44, 54, 0.2);
  opacity: 1;
  cursor: pointer;
}

.banner__container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
}

@media (min-width: 768px) {
  .banner__container .swiper-pagination {
    display: none;
  }
}

.banner__wrapper.swiper-wrapper {
  height: auto;
}

.banner__slide {
  position: relative;
}

.banner__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.banner__slide picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1023px) {
  .banner__slide picture {
    position: relative;
    height: 0;
    padding-bottom: 16%;
  }

  .banner__slide picture img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (max-width: 767px) {
  .banner__slide picture {
    padding-bottom: 33%;
  }
}

.banner__slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner__slide.swiper-slide {
  height: auto;
}

.banner__button {
  position: absolute;
  display: none;
  top: 50%;
  right: 23px;
  background: none;
  border: none;
  width: 60px;
  height: 60px;
  padding: 16px 23px;
  box-shadow: none;
  cursor: pointer;
  z-index: 1;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .banner__button:hover {
    color: #ff7f32;
  }

  .banner__button:hover svg {
    stroke: #ff7f32;
  }
}

.banner__button.prev {
  transform: rotate(180deg) translateY(50%);
  left: 23px;
}

@media (max-width: 767px) {
  .banner__button.prev {
    left: 10px;
  }
}

.banner__button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: #6b6b6b;
  stroke-width: 2px;
}

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

.banner-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 8px;
  font-weight: 400;
  border-radius: 32px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.5);
  color: #142c36;
  z-index: 13;
}

.banner-tag_text_only {
  padding: 0;
  background: transparent;
  border-radius: unset;
  color: #a9a9a9;
}

.banner-tag_pos_static {
  position: static;
}

@media screen and (max-width: 480px) {
  .banner-tag {
    font-size: 6px;
  }
}

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

.slider-block {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 1025px) {
  .slider-block {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.slider-block__header {
  display: flex;
  margin-bottom: 56px;
  position: relative;
  align-items: center;
  height: 60px;
}

@media (max-width: 1919px) {
  .slider-block__header {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .slider-block__header {
    height: -moz-fit-content;
    height: fit-content;
  }
}

.slider-block__title {
  margin: 0;
  font-size: 50px;
  line-height: 62px;
  color: #6EA55A;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .slider-block__title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .slider-block__title {
    font-size: 26px;
    line-height: 32px;
  }
}

.slider-block__wrapper {
  display: flex;
  z-index: 2;
}

.slider-block__pagination {
  width: 128px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-left: auto;
}

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

.slider-block__pagination button {
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
}

.slider-block__button {
  margin-top: 56px;
}

@media (max-width: 1919px) {
  .slider-block__button {
    margin-top: 32px;
  }
}

.slider-block__button .btn {
  justify-content: space-between;
  padding: 20px 32px;
  font-size: 28px;
  line-height: 32px;
  color: #6b6b6b;
}

@media (max-width: 767px) {
  .slider-block__button .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 26px;
  }
}

.slider-block__button .btn:first-child {
  margin-right: 32px;
}

@media (max-width: 1023px) {
  .slider-block__button .btn:first-child {
    margin-right: 0;
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .slider-block__button .btn:first-child {
    margin-bottom: 24px;
  }
}

.slider-block__button .btn .flex-wrapper {
  width: 100%;
}

@media (max-width: 767px) {
  .slider-block__button .btn img {
    margin-left: auto;
  }
}

.slider-block__button_medium .btn {
  font-size: 20px;
  line-height: 26px;
  padding: 20px 32px;
}

.slider-block__button_medium .btn .btn-ico-bg .i-arrow {
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
}

.slider-block__button_medium .btn.btn-outline-blue.btn-ico .btn-ico-bg {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.slider-block__button_no_mg .btn:nth-child(n) {
  margin: 0;
}

.slider-block .swiper-container {
  height: -moz-min-content;
  height: min-content;
  overflow: hidden;
}

.slider-block .slider-block__pagination > * {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #edf0f8;
  padding: 15px;
  color: #adb4c8;
  border: none;
}

@media (max-width: 767px) {
  .slider-block .slider-block__pagination > * {
    display: none;
  }
}

@media (hover: hover) {
  .slider-block .slider-block__pagination > *:hover {
    background-color: #ff7f32;
    color: white;
  }
}

.slider-block .slider-block__pagination > *:after {
  font-size: 25px;
}

.slider-block .slider-block__item {
  width: 395px;
  height: 536px;
  display: inline-block;
  margin: 0;
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0 0 12px rgba(20, 44, 54, 0.2);
  background: white;
}

@media (max-width: 1919px) {
  .slider-block .slider-block__item {
    width: 309px;
    height: 419px;
    padding: 18px;
    border-radius: 24px;
  }
}

@media (max-width: 1023px) {
  .slider-block .slider-block__item {
    width: 255px;
    height: 346px;
    padding: 24px;
    border-radius: 32px;
  }
}

@media (max-width: 767px) {
  .slider-block .slider-block__item {
    width: 235px;
    height: 319px;
    padding: 16px;
  }
}

.slider-block .slider-block__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.slider-block .circle {
  display: none;
}

@media (min-width: 1920px) {
  .slider-block .circle {
    display: inline-block;
    position: absolute;
    left: -164px;
    top: -24px;
    z-index: 1;
  }
}

.slider-block--clinics-photo .slider-block__item {
  width: 394px;
  height: 267px;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

@media (max-width: 1023px) {
  .slider-block--clinics-photo .slider-block__item {
    width: 348px;
    height: 236px;
  }
}

@media (max-width: 767px) {
  .slider-block--clinics-photo .slider-block__item {
    width: 235px;
    height: 160px;
  }
}

.slider-block--clinics-photo .slider-block__item img {
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-block--advantages {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 40px;
  padding-top: 40px;
  background-color: #edf0f8;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .slider-block--advantages {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.slider-block--advantages .slider-block__item {
  width: 394px;
  height: -moz-min-content;
  height: min-content;
  padding: 32px;
  border-radius: 32px;
}

@media (max-width: 1023px) {
  .slider-block--advantages .slider-block__item {
    width: 348px;
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .slider-block--advantages .slider-block__item {
    width: 235px;
  }
}

.slider-block--advantages .slider-block__item-title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .slider-block--advantages .slider-block__item-title {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .slider-block--advantages .slider-block__item-title {
    font-size: 16px;
    line-height: 26px;
  }
}

.slider-block--advantages .slider-block__item-text {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 26px;
}

.slider-block--advantages .slider-block__pagination button {
  background-color: #FFFFFF;
}

.slider-block--reviews {
  margin-top: 0;
  padding-top: 40px;
}

@media (min-width: 1025px) {
  .slider-block--reviews {
    margin-top: 0;
    padding-top: 80px;
  }
}

.slider-block--reviews .review-card__wrapper {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.slider-block--reviews .review-card__doctor-info {
  margin-top: auto;
}

.slider-block--reviews .review-card__doctor-info .doctor-info {
  position: relative;
}

.slider-block--reviews .review-card__top {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .slider-block--reviews .review-card__top {
    margin-bottom: 16px;
  }
}

.slider-block--reviews .slider-block__item {
  width: 646px;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 1919px) {
  .slider-block--reviews .slider-block__item {
    width: 464px;
  }
}

@media (max-width: 1023px) {
  .slider-block--reviews .slider-block__item {
    width: 348px;
  }
}

@media (max-width: 767px) {
  .slider-block--reviews .slider-block__item {
    width: 235px;
  }
}

.slider-block--reviews .slider-block__decor {
  width: 384px;
  height: 396px;
  position: absolute;
  top: -80px;
  left: -114px;
  background-image: url("/images/review-block/decorative.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1919px) {
  .slider-block--reviews .slider-block__decor {
    display: none;
  }
}

.slider-block--reviews .review-card__wrapper {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.slider-block--reviews .review-card__doctor-info {
  margin-top: auto;
}

.slider-block--reviews .review-card__top {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .slider-block--reviews .review-card__top {
    margin-bottom: 16px;
  }
}

.slider-block--reviews .collapsable-content__wrapper {
  max-height: 159px;
  min-height: 159px;
}

@media (max-width: 1023px) {
  .slider-block--reviews .collapsable-content__wrapper {
    max-height: 159px;
    min-height: 159px;
  }
}

@media (max-width: 767px) {
  .slider-block--reviews .collapsable-content__wrapper {
    max-height: 159px;
    min-height: 159px;
  }
}

@media (max-width: 767px) {
  .slider-block .review-card__clinic a {
    font-size: 12px;
    line-height: 18px;
  }
}

.slider-block__advantages-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 32px;
}

.slider-block__advantages-grid::after {
  content: "";
  display: block;
  width: calc(33% - 32px);
  flex: 1 0 auto;
}

.slider-block__advantages-grid .slider-block__item {
  width: calc(33% - 32px);
  flex: 1 1 auto;
  height: auto;
  max-width: 33%;
  box-shadow: unset;
}

.slider-block__advantages-grid .slider-block__item:nth-child(5n+1),
.slider-block__advantages-grid .slider-block__item:nth-child(5n+2) {
  width: calc(50% - 32px);
  max-width: 50%;
}

.slider-block__licenses-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.slider-block__licenses .btn {
  width: auto;
}

.slider-block__licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 380px;
  gap: 32px;
}

.slider-block__licenses-grid .slider-block__item {
  width: 100%;
  height: 100%;
}

.slider-block__licenses-item:nth-child(n) {
  padding: 0;
  border-radius: 10px;
}

.slider-block__licenses-item:nth-child(n) img {
  border-radius: 10px;
}

@media screen and (max-width: 1279px) {
  .slider-block__advantages-grid .slider-block__item,
  .slider-block__advantages-grid::after {
    width: calc(50% - 32px);
    max-width: 50%;
  }
}

@media screen and (max-width: 1023px) {
  .slider-block__licenses-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 340px;
  }
}

@media screen and (max-width: 992px) {
  .slider-block__advantages-grid {
    flex-wrap: unset;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    width: 100vw;
    padding: 0 24px 0;
    margin-left: -24px;
    gap: 16px;
  }

  .slider-block__advantages-grid .slider-block__item,
  .slider-block__advantages-grid .slider-block__item:nth-child(5n+1),
  .slider-block__advantages-grid .slider-block__item:nth-child(5n+2) {
    scroll-snap-align: start;
    flex: 1 0 auto;
    width: 348px;
    max-width: 100%;
  }

  .slider-block__advantages-grid::after {
    display: none;
    width: 0;
    height: 0;
    flex: unset;
  }
}

@media screen and (max-width: 767px) {
  .slider-block__button_medium .btn {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 26px;
  }

  .slider-block__button_medium .btn.btn-outline-blue.btn-ico .btn-ico-bg {
    width: 18px;
    height: 18px;
  }

  .slider-block__button_medium .btn .btn-ico-bg .i-arrow {
    width: 12px;
    height: 12px;
  }

  .slider-block__licenses-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-auto-rows: 410px;
    gap: 16px;
  }
}

@media screen and (max-width: 624px) {
  .slider-block__licenses-grid {
    grid-auto-rows: 330px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .slider-block__licenses-grid {
    grid-auto-rows: 270px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .slider-block__licenses-grid .slider-block__item {
    max-width: 310px;
  }

  .slider-block__licenses-buttons {
    flex-direction: column;
    flex-wrap: unset;
  }
}

@media screen and (max-width: 425px) {
  .slider-block__licenses-grid {
    grid-auto-rows: 230px;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .slider-block__advantages-grid .slider-block__item,
  .slider-block__advantages-grid .slider-block__item:nth-child(5n+1),
  .slider-block__advantages-grid .slider-block__item:nth-child(5n+2) {
    width: 280px;
  }
}

@media screen and (max-width: 380px) {
  .slider-block__licenses-grid {
    grid-auto-rows: 210px;
  }
}

.promotion-banner {
  padding: 0 10px;
  position: relative;
  background-color: #FFF7F7;
  width: 100%;
  margin-bottom: 32px;
}

.promotion-banner.swiper-horizontal > .swiper-pagination-bullets,
.promotion-banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.promotion-banner .swiper-pagination-custom,
.promotion-banner .swiper-pagination-fraction {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.promotion-banner__container {
  padding: 40px 0;
  position: relative;
  width: calc(90% - 50px);
  margin: auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .promotion-banner__container {
    padding: 20px 0 40px 0;
    width: 90%;
  }
}

.promotion-banner__wrapper {
  width: 80%;
  margin: auto;
}

.promotion-banner .promotion-banner__item {
  display: flex;
}

@media (max-width: 768px) {
  .promotion-banner .promotion-banner__item {
    flex-direction: column;
    min-height: 38px;
  }
}

@media (max-width: 450px) {
  .promotion-banner .promotion-banner__item {
    min-height: 57px;
  }
}

.promotion-banner__text {
  width: 70%;
  color: #ff7f32;
  font-weight: 700;
}

@media (max-width: 768px) {
  .promotion-banner__text {
    width: 100%;
    text-align: center;
    min-height: 38px;
  }
}

@media (max-width: 450px) {
  .promotion-banner__text {
    font-size: 14px;
    min-height: 57px;
  }
}

.promotion-banner__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #edf0f8;
  padding: 15px;
  color: #adb4c8;
  border: none;
}

.promotion-banner__button.next {
  right: 10px;
}

@media (hover: hover) {
  .promotion-banner__button:hover {
    background-color: #ff7f32;
    color: white;
  }
}

@media (max-width: 768px) {
  .promotion-banner__button {
    display: none;
  }
}

.promotion-banner__button--prev:after {
  content: "prev";
  font-size: 12px;
  font-family: swiper-icons;
}

.promotion-banner__button--next:after {
  content: "next";
  font-size: 12px;
  font-family: swiper-icons;
}

.promotion-banner__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: underline;
  margin-left: auto;
  transition: color 0.3s;
}

.promotion-banner__link:hover {
  text-decoration: none;
  color: #ff7f32;
}

.promotion-banner__link:hover > svg {
  color: #ff7f32;
  fill: #ff7f32;
}

@media (max-width: 768px) {
  .promotion-banner__link {
    margin: 10px auto 0 auto;
    font-size: 12px;
    position: absolute;
    bottom: -27px;
    right: -3px;
    z-index: 20;
  }
}

.promotion-banner__link > svg {
  transition: color 0.3s;
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .promotion-banner__link > svg {
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }
}

.service-callback {
  width: calc(100% - 48px);
  background-color: #ECFAE2;
  border-radius: 24px;
  padding: 24px 24px 32px;
  margin: 60px 24px;
}

@media (max-width: 1279px) {
  .service-callback {
    padding: 20px 24px;
    margin: 64px 24px;
  }
}

@media (max-width: 767px) {
  .service-callback {
    padding: 20px 24px;
    width: 100%;
    margin: 64px 0;
    border-radius: 0;
  }
}

.service-callback__title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #142c36;
}

.service-callback__content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .service-callback__content {
    flex-wrap: wrap;
  }
}

.service-callback__content .checkbox__text {
  width: 268px;
  font-size: 12px;
  line-height: 16px;
  padding-left: 0;
}

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

@media (max-width: 767px) {
  .service-callback__content .checkbox__text {
    padding-left: 0;
  }
}

.service-callback__content .checkbox__text .link-text {
  font-size: 12px;
  line-height: 16px;
}

.service-callback__content .checkbox__text span {
  display: block;
}

@media (max-width: 1024px) {
  .service-callback__content .checkbox__text span {
    display: inline;
  }
}

@media (max-width: 767px) {
  .service-callback__content .checkbox__text span {
    display: block;
  }
}

.service-callback form {
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .service-callback form {
    flex-wrap: wrap;
    gap: 16px 0;
  }
}

@media (max-width: 767px) {
  .service-callback form .form-button {
    width: 100%;
  }
}

.service-callback form .form-group {
  margin: 0;
  width: 100%;
}

.service-callback form .form-group--phone {
  margin: 0;
}

.service-callback form .form-group .form-input {
  width: 343px;
  height: 56px;
  padding: 17px 24px;
  font-size: 14px;
  color: #142c36;
  background: #FFFFFF;
  border-radius: 40px;
  border: none;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-input {
    height: 52px;
    padding: 15px 24px;
    width: 100%;
  }
}

.service-callback form .form-group .form-input::-moz-placeholder {
  font-size: 14px;
}

.service-callback form .form-group .form-input::placeholder {
  font-size: 14px;
}

.service-callback form .form-group .form-label {
  margin-bottom: 0;
}

.service-callback form .form-group .callback-confirm-checkbox {
  grid-column: span 2;
}

.service-callback form .form-group .callback-confirm-checkbox .form-group {
  margin: 0;
}

.service-callback form .form-group .callback-confirm-checkbox .form-group .checkbox__text {
  color: white;
  font-size: 14px;
  line-height: 22px;
}

.service-callback form .form-group .callback-confirm-checkbox .form-group .checkbox__text a {
  color: white;
}

@media (hover: hover) {
  .service-callback form .form-group .callback-confirm-checkbox .form-group .checkbox__text a:hover {
    color: #ff7f32;
  }
}

.service-callback form .form-group .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) {
  .service-callback form .form-group .form-fields {
    display: block;
  }
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time):nth-child(3) {
  grid-column: span 2;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-fields .form-row:not(.form-row--time):nth-child(2) {
    margin-top: 16px;
  }
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).has-error .help-block {
  padding-left: 24px;
  color: #e8eaee;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-fields .form-row:not(.form-row--time).has-error .help-block {
    padding-left: 16px;
  }
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time) .form-label {
  border-radius: 40px;
  overflow: hidden;
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list {
  flex-direction: row;
  border-radius: 0;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list {
    flex-direction: column;
  }
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list .radio-list__label {
  display: none;
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list .c-radio {
  width: -moz-min-content;
  width: min-content;
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list .c-radio input:checked ~ .c-radio__place {
  border-color: #ff7f32;
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list .c-radio .c-radio__text {
  color: white;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list .c-radio .c-radio__text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
  }
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list .c-radio .c-radio__place {
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid white;
  background: transparent;
  box-sizing: border-box;
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time).radio-list .c-radio .c-radio__place::before {
  width: 12px;
  height: 12px;
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time) .form-input {
  background: #8BB77B;
  color: white;
  border: none;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-fields .form-row:not(.form-row--time) .form-input {
    font-size: 16px;
  }
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time) .form-input::-moz-placeholder {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.service-callback form .form-group .form-fields .form-row:not(.form-row--time) .form-input::placeholder {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-fields .form-row:not(.form-row--time) .form-input::-moz-placeholder {
    font-size: 16px;
  }
  .service-callback form .form-group .form-fields .form-row:not(.form-row--time) .form-input::placeholder {
    font-size: 16px;
  }
}

.service-callback form .form-group .form-row--time {
  grid-column: span 2;
  margin-top: 16px;
}

@media (min-width: 1280px) {
  .service-callback form .form-group .form-row--time.active {
    margin-top: 0;
  }
}

.service-callback form .form-group .form-input {
  height: 60px;
}

@media (max-width: 767px) {
  .service-callback form .form-group .form-input {
    height: 52px;
  }
}

.service-callback form .form-row {
  width: 100%;
}

.service-callback form .form-button .btn {
  padding: 15px 40px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 1279px) {
  .service-callback form .form-button .btn {
    font-size: 14px;
    line-height: 22px;
    padding: 17px 40px;
  }
}

@media (max-width: 767px) {
  .service-callback form .form-button .btn {
    width: 100%;
    padding: 18px 98px;
    font-size: 12px;
    line-height: 16px;
  }
}

.service-callback form .form-button .btn[disabled] {
  background-color: #ff7f32;
}

.service-callback .callback-block__success {
  display: none;
  height: 102px;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .service-callback .callback-block__success {
    height: 134px;
  }
}

@media (max-width: 767px) {
  .service-callback .callback-block__success {
    height: 210px;
  }
}

.service-callback .callback-block__success .callback-block__title {
  margin-bottom: 12px;
}

.callback-form--service {
  padding: 0;
  margin: 32px -24px;
}

.callback-form--service.show-success .service-callback__title,
.callback-form--service.show-success .service-callback__content {
  display: none;
}

.callback-form--service.show-success .callback-block__success {
  display: flex;
}

.quality-control__title {
  color: #142c36;
  line-height: 68px;
}

@media (max-width: 767px) {
  .quality-control__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}

.quality-control__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #142c36;
  margin: 56px 0 40px;
}

@media (max-width: 1279px) {
  .quality-control__text {
    margin: 32px 0;
  }
}

@media (max-width: 767px) {
  .quality-control__text {
    margin: 24px 0;
  }
}

.quality-control__title-form {
  margin-bottom: 32px;
}

.feedback-form-redesign {
  width: 100vw;
  border: none;
  background-color: #F8F8F8;
  padding: 32px 16px 50px;
  margin-left: -24px;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (min-width: 768px) {
  .feedback-form-redesign {
    margin-left: calc(-1 * (100vw - 768px) / 2 - 24px);
    padding: 40px 0 64px;
  }
}

@media (min-width: 1024px) {
  .feedback-form-redesign {
    margin-left: calc(-1 * (100vw - 1024px) / 2 - 24px);
  }
}

@media (min-width: 1280px) {
  .feedback-form-redesign {
    margin-left: calc(-1 * (100vw - 1280px) / 2 - 24px);
  }
}

.feedback-form-redesign.success form {
  display: none;
}

.feedback-form-redesign.success .feedback-form-redesign__success {
  display: block;
}

.feedback-form-redesign__title {
  color: #142c36;
  font-size: 50px;
  line-height: 62px;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .feedback-form-redesign__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}

.feedback-form-redesign__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #142c36;
  margin: 56px 0 40px;
}

.feedback-form-redesign__wrapper {
  margin: auto;
}

.feedback-form-redesign__wrapper .custom-checkbox:not(:last-of-type) {
  margin-top: 24px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .feedback-form-redesign__wrapper .custom-checkbox label,
  .feedback-form-redesign__wrapper .custom-checkbox a {
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-form-redesign__wrapper .custom-checkbox__input + label::before {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .feedback-form-redesign__wrapper {
    width: 768px;
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .feedback-form-redesign__wrapper {
    width: 1024px;
    padding: 0 24px;
  }
}

@media (min-width: 1280px) {
  .feedback-form-redesign__wrapper {
    width: 1280px;
  }
}

.feedback-form-redesign__wrapper .checkbox__text {
  font-size: 14px;
  line-height: 22px;
  color: #142c36;
  display: block;
  padding: 0;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__wrapper .checkbox__text {
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-form-redesign__wrapper .checkbox__text .link-text {
  font-size: 14px;
  line-height: 22px;
  color: #142c36;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__wrapper .checkbox__text .link-text {
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-form-redesign__content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__content {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .feedback-form-redesign__content {
    gap: 16px;
  }
}

.feedback-form-redesign__content .rating {
  margin: 0;
}

.feedback-form-redesign__group {
  width: calc(33.3333333333% - 16px);
  position: relative;
}

@media (max-width: 1279px) {
  .feedback-form-redesign__group {
    width: calc(50% - 12px);
  }
}

@media (max-width: 1024px) {
  .feedback-form-redesign__group {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .feedback-form-redesign__group {
    width: 100%;
  }
}

.feedback-form-redesign__group.has-error .feedback-form-redesign__help-block {
  display: block;
}

.feedback-form-redesign__group-area {
  width: 100%;
  margin: 32px 0 0;
  display: block;
  position: relative;
}

@media (max-width: 767px) {
  .feedback-form-redesign__group-area {
    margin: 17px 0 0;
  }
}

.feedback-form-redesign__group-area.has-error .feedback-form-redesign__help-block {
  display: block;
}

.feedback-form-redesign__group-clinic input {
  display: none;
}

.feedback-form-redesign__input {
  padding: 15px 50px 15px 24px;
  border-radius: 30px;
  border: 1px solid #edf0f8;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #6b6b6b;
  width: 100%;
  height: auto;
  font-family: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-form-redesign__input:focus {
  outline: none;
  border: 1px solid #edf0f8;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__input {
    padding: 13px 50px 13px 16px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-form-redesign__input {
    padding: 12px 50px 12px 12px;
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-form-redesign__input-select .c-select-trigger {
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  height: auto;
  display: block;
}

.feedback-form-redesign__input-select .c-select--filter {
  height: auto;
  border: 1px solid #edf0f8;
}

.feedback-form-redesign__input-area {
  min-width: 100%;
  max-width: 100%;
  border: 1px solid #edf0f8;
  border-radius: 20px;
  min-height: 154px;
  padding: 24px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #6b6b6b;
  font-family: "Montserrat", Arial, sans-serif;
}

.feedback-form-redesign__input-area:focus {
  outline: none;
  border: 1px solid #edf0f8;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__input-area {
    min-height: 112px;
    padding: 16px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-form-redesign__input-area {
    padding: 12px;
    font-size: 12px;
    line-height: 16px;
  }
}

@media (hover: hover) {
  .feedback-form-redesign__input-area:hover {
    border: 1px solid #edf0f8;
    outline: none;
  }
}

.feedback-form-redesign__button.btn-blue {
  margin: 24px 0 0;
  width: 217px;
  padding: 15px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .feedback-form-redesign__button.btn-blue {
    width: 268px;
  }
}

.feedback-form-redesign__help-block {
  position: absolute;
  bottom: -18px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #F50016;
  left: 24px;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__help-block {
    left: 13px;
  }
}

.feedback-form-redesign__help-block__rating {
  bottom: 2px;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__help-block__rating {
    left: 16px;
    bottom: -10px;
  }
}

.feedback-form-redesign__help-block__rating.has-error .help-block {
  display: block;
}

.feedback-form-redesign__rating-wrapper,
.feedback-form-redesign__rating-wrapper .new-form__rating {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .feedback-form-redesign__rating-wrapper,
  .feedback-form-redesign__rating-wrapper .new-form__rating {
    display: flex;
    align-items: center;
  }
}

.feedback-form-redesign__rating-wrapper.has-error .feedback-form-redesign__help-block {
  display: block;
}

.feedback-form-redesign__rating {
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 767px) {
  .feedback-form-redesign__rating {
    flex-wrap: wrap;
  }
}

.feedback-form-redesign__rating.has-error .rating-value-mark {
  stroke: #F50016;
}

.feedback-form-redesign__rating-label {
  font-family: "Montserrat", Arial, sans-serif;
  margin-right: 32px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #142c36;
  margin-left: 25px;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__rating-label {
    margin-left: 16px;
    font-size: 14px;
    line-height: 22px;
    margin-right: 24px;
  }
}

@media (max-width: 767px) {
  .feedback-form-redesign__rating-label {
    margin-left: 15px;
    font-size: 12px;
    line-height: 16px;
    width: auto;
    margin-bottom: 0;
    margin-right: 22px;
  }
}

.feedback-form-redesign__rating-value {
  display: flex;
}

.feedback-form-redesign__rating-value[data-rating^="1"]:not([data-rating-hover]) .feedback-form-redesign__rating-value-mark:nth-child(-n+1),
.feedback-form-redesign__rating-value[data-rating-hover="1"] .feedback-form-redesign__rating-value-mark:nth-child(-n+1) {
  fill: #ff7f32;
  opacity: 1;
}

.feedback-form-redesign__rating-value[data-rating^="2"]:not([data-rating-hover]) .feedback-form-redesign__rating-value-mark:nth-child(-n+2),
.feedback-form-redesign__rating-value[data-rating-hover="2"] .feedback-form-redesign__rating-value-mark:nth-child(-n+2) {
  fill: #ff7f32;
  opacity: 1;
}

.feedback-form-redesign__rating-value[data-rating^="3"]:not([data-rating-hover]) .feedback-form-redesign__rating-value-mark:nth-child(-n+3),
.feedback-form-redesign__rating-value[data-rating-hover="3"] .feedback-form-redesign__rating-value-mark:nth-child(-n+3) {
  fill: #ff7f32;
  opacity: 1;
}

.feedback-form-redesign__rating-value[data-rating^="4"]:not([data-rating-hover]) .feedback-form-redesign__rating-value-mark:nth-child(-n+4),
.feedback-form-redesign__rating-value[data-rating-hover="4"] .feedback-form-redesign__rating-value-mark:nth-child(-n+4) {
  fill: #ff7f32;
  opacity: 1;
}

.feedback-form-redesign__rating-value[data-rating^="5"]:not([data-rating-hover]) .feedback-form-redesign__rating-value-mark:nth-child(-n+5),
.feedback-form-redesign__rating-value[data-rating-hover="5"] .feedback-form-redesign__rating-value-mark:nth-child(-n+5) {
  fill: #ff7f32;
  opacity: 1;
}

.feedback-form-redesign__rating-value-mark {
  opacity: 1;
  fill: none;
  cursor: pointer;
  transition: fill 0.1s linear;
  width: 32px;
  height: 24px;
}

.feedback-form-redesign__rating-value-mark:not(:last-child) {
  padding-right: 8px;
}

.feedback-form-redesign__rating-value-mark.hover {
  fill: #ff7f32;
}

.feedback-form-redesign__rating-value-mark svg {
  display: block;
  width: 24px;
  height: 24px;
}

.feedback-form-redesign__list {
  display: none;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  padding: 0;
}

.feedback-form-redesign__list.active {
  display: block;
}

@media (max-width: 767px) {
  .feedback-form-redesign__list.active {
    max-height: 400px;
  }
}

.feedback-form-redesign__list-item {
  padding: 4px 23px 4px 23px;
  cursor: pointer;
  font-size: 16px;
  line-height: 26px;
  color: #142c36;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__list-item {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-form-redesign__list-item {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding: 4px 23px 4px 23px;
  }
}

@media (hover: hover) {
  .feedback-form-redesign__list-item:hover {
    color: #F50016;
  }
}

.feedback-form-redesign__success {
  display: none;
}

.feedback-form-redesign__agreement {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1024px) {
  .feedback-form-redesign__agreement {
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-form-redesign__arrow {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  border-radius: 0;
  position: absolute;
  right: 16px;
  top: calc(50% - 12px);
  transition: transform 0.4s;
}

.feedback-form-redesign__arrow svg {
  width: 100%;
  height: 100%;
}

.feedback-form-redesign__arrow.active {
  transform: rotate(180deg);
}

.feedback-form-redesign__group-doctor {
  position: relative;
}

.feedback-form-redesign .c-select--filter .c-select-option {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.feedback-page .breadcrumbs {
  margin-bottom: 24px;
}

.feedback-page__title {
  margin-bottom: 56px;
  font-size: 60px;
  line-height: 68px;
  font-weight: 700;
  color: #142c36;
}

@media (max-width: 1919px) {
  .feedback-page__title {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .feedback-page__title {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 48px;
  }
}

.feedback-page__block {
  padding: 24px;
  border-radius: 24px;
  background: #F8F8F8;
  margin-bottom: 40px;
}

@media (max-width: 1919px) {
  .feedback-page__block {
    padding-top: 20px;
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .feedback-page__block {
    margin-left: -24px;
    margin-right: -24px;
    padding: 20px 16px 24px;
    border-radius: 0;
  }
}

.feedback-page__block-title {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #142c36;
}

@media (max-width: 1919px) {
  .feedback-page__block-title {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-page__block-title {
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-page__block-bottom {
  display: flex;
}

@media (max-width: 767px) {
  .feedback-page__block-bottom {
    flex-direction: column;
  }
}

.feedback-page__block-bottom .btn {
  flex-shrink: 0;
  background: #ff7f32;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: box-shadow 0.3s;
}

@media (max-width: 767px) {
  .feedback-page__block-bottom .btn {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
    line-height: 16px;
  }
}

@media (hover: hover) {
  .feedback-page__block-bottom .btn:hover {
    box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  }
}

.feedback-page__block-bottom .btn-outline {
  color: #444444;
  background: #ffffff;
  border: 1px solid #ff7f32;
  transition: border-color 0.3s;
}

@media (hover: hover) {
  .feedback-page__block-bottom .btn-outline:hover {
    box-shadow: none;
    border-color: #9dc65f;
  }
}

.feedback-page__block-bottom .btn:first-child {
  margin-right: 32px;
}

@media (max-width: 1919px) {
  .feedback-page__block-bottom .btn:first-child {
    margin-right: 24px;
  }
}

@media (max-width: 767px) {
  .feedback-page__block-bottom .btn:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.feedback-page__wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 64px;
}

@media (max-width: 1023px) {
  .feedback-page__wrapper {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .feedback-page__wrapper {
    margin-bottom: 32px;
  }
}

.feedback-page__filters {
  width: 290px;
  flex-direction: column;
  padding: 0;
  margin: 0;
  background: none;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .feedback-page__filters {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 32px;
  }
}

.feedback-page__filters .filters-block__row {
  width: 100%;
  margin: 0 0 32px 0;
}

@media (max-width: 1023px) {
  .feedback-page__filters .filters-block__row {
    flex-shrink: 0;
  }
}

@media (max-width: 1023px) {
  .feedback-page__filters .filters-block__row:first-child,
  .feedback-page__filters .filters-block__row:nth-child(2) {
    width: calc(50% - 16px);
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .feedback-page__filters .filters-block__row:first-child,
  .feedback-page__filters .filters-block__row:nth-child(2) {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .feedback-page__filters .filters-block__row:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}

.feedback-page__filters .filters-block__row .search-filter-wrapper {
  width: 100%;
  margin: 0;
}

.feedback-page__filters .filters-block__row .search-filter-wrapper.suggest-available .suggest-list {
  max-height: 262px;
}

.feedback-page__filters .filters-block__select {
  width: 100%;
}

.feedback-page__filters .filters-block__select .c-select--filter {
  width: 100%;
  height: 56px;
  color: #142c36;
}

@media (max-width: 1279px) {
  .feedback-page__filters .filters-block__select .c-select--filter {
    height: 48px;
  }
}

@media (max-width: 767px) {
  .feedback-page__filters .filters-block__select .c-select--filter {
    height: 40px;
  }
}

.feedback-page__filters .filters-block__select .c-select-options {
  width: calc(100% + 2px);
  left: -1px;
}

.feedback-page__filters .filters-block__select .c-select-option {
  padding-left: 24px;
}

@media (max-width: 1279px) {
  .feedback-page__filters .filters-block__select .c-select-option {
    padding-left: 16px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-page__filters .filters-block__select .c-select-option {
    padding-left: 12px;
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-page__filters .form-label {
  margin-bottom: 8px;
  color: #142c36;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .feedback-page__filters .form-label {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-page__filters .form-label {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-page__filters .c-select-wrapper,
.feedback-page__filters .loader-wrapper {
  border: 1px solid #CFCFD1;
  border-radius: 4px;
}

.feedback-page__filters .search-filter,
.feedback-page__filters .c-select-trigger {
  font-family: "Montserrat";
  padding: 15px 46px 15px 24px;
  height: 56px;
}

@media (max-width: 1279px) {
  .feedback-page__filters .search-filter,
  .feedback-page__filters .c-select-trigger {
    padding: 13px 44px 13px 16px;
    height: 48px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-page__filters .search-filter,
  .feedback-page__filters .c-select-trigger {
    padding: 12px 42px 12px 12px;
    height: 40px;
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-page__filters .c-select-trigger {
  color: #142c36;
}

.feedback-page__filters .suggest-list {
  padding-left: 24px;
}

@media (max-width: 1279px) {
  .feedback-page__filters .suggest-list {
    padding-left: 16px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .feedback-page__filters .suggest-list {
    padding-left: 12px;
    font-size: 12px;
    line-height: 16px;
  }
}

.feedback-page__filters .suggest-list .suggest-item__title {
  font-size: inherit;
  line-height: inherit;
}

.feedback-page__filters .suggest-list a {
  padding-top: 6px;
  padding-bottom: 6px;
}

.feedback-page__filters .search-filter::-moz-placeholder {
  color: #6b6b6b;
}

.feedback-page__filters .search-filter::placeholder {
  color: #6b6b6b;
}

@media (max-width: 1279px) {
  .feedback-page__filters .search-filter::-moz-placeholder {
    font-size: 14px;
  }
  .feedback-page__filters .search-filter::placeholder {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .feedback-page__filters .search-filter::-moz-placeholder {
    font-size: 12px;
  }
  .feedback-page__filters .search-filter::placeholder {
    font-size: 12px;
  }
}

.feedback-page__filters .c-select {
  margin: 0;
}

.feedback-page .reviews {
  margin-top: 0;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .feedback-page .reviews {
    margin-bottom: 40px;
  }
}

.feedback-page .reviews.section .collapsable-content__toggle-wrapper {
  display: none;
}

.feedback-page .reviews__list {
  width: 886px;
}

@media (max-width: 1919px) {
  .feedback-page .reviews__list {
    width: 100%;
    margin-right: 40px;
  }
}

@media (max-width: 1023px) {
  .feedback-page .reviews__list {
    margin-right: 0;
  }
}

.feedback-page .card__btn-block .pagination-nav.partials {
  margin: 0;
}

@media (max-width: 1919px) {
  .feedback-page .card__btn-block .pagination-nav.partials {
    justify-content: flex-start;
  }
}

.review-card {
  padding: 24px;
  border: 1px solid #edf0f8;
  box-shadow: 6px 6px 16px rgba(62, 58, 56, 0.1);
  border-radius: 32px;
}

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

.review-card:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .review-card:not(:last-child) {
    margin-bottom: 32px;
  }
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

@media (max-width: 1919px) {
  .review-card__top {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .review-card__top {
    margin-bottom: 16px;
  }
}

.review-card__top .icon {
  flex-shrink: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: #ff7f32;
}

.review-card__top .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.review-card__stars {
  margin-bottom: 0;
  fill: #ff7f32;
}

.review-card__stars .rating {
  margin: 0;
}

.review-card__stars .rating-value-mark {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .review-card__stars .rating-value-mark {
    width: 20px;
    height: 20px;
  }
}

.review-card__stars .rating-value-mark:not(:last-child) {
  margin-right: 8px;
}

.review-card__stars .rating-value-mark svg {
  width: 100%;
  height: 100%;
  fill: #ff7f32;
}

@media (max-width: 767px) {
  .review-card__stars .rating-value-mark svg {
    width: 22px;
    height: 22px;
  }
}

.review-card__text {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 24px;
  color: #142c36;
}

@media (max-width: 1919px) {
  .review-card__text {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .review-card__text {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 16px;
  }
}

.review-card__text p {
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
}

.review-card__doctor-info {
  display: flex;
  align-items: center;
}

@media (hover: hover) {
  .review-card__doctor-info:hover .doctor-info p:first-child {
    color: #ff7f32;
  }
}

.review-card__doctor-info .doctor-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 16px;
  filter: drop-shadow(0px 0px 12px rgba(20, 44, 54, 0.2));
  overflow: hidden;
}

@media (max-width: 767px) {
  .review-card__doctor-info .doctor-image {
    width: 64px;
    height: 64px;
  }
}

.review-card__doctor-info .doctor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.review-card__doctor-info .doctor-info p {
  margin: 0;
  color: #6b6b6b;
  transition: color 0.3s;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 767px) {
  .review-card__doctor-info .doctor-info p {
    font-size: 12px;
    line-height: 16px;
  }
}

.review-card__doctor-info .doctor-info p:first-child {
  margin-bottom: 4px;
  font-weight: bold;
  color: #142c36;
}

.review-card__clinic {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .review-card__clinic {
    margin-top: 16px;
  }
}

@media (hover: hover) {
  .review-card__clinic:hover a {
    color: #ff7f32;
  }
}

.review-card__clinic .icon {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  width: 12px;
  height: 16px;
  color: #ff7f32;
  margin-right: 10px;
  transition: color 0.3s;
}

.review-card__clinic .icon::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100%;
  border: 1px solid #ff7f32;
  top: 4px;
  left: 4px;
}

.review-card__clinic .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.review-card__clinic a {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 22px;
}

.collapsable-content {
  font-family: "Montserrat", Arial, sans-serif;
}

.collapsable-content.no-collapse .collapsable-content__wrapper {
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.collapsable-content.no-collapse .collapsable-content__toggle {
  display: none;
}

.collapsable-content__wrapper {
  position: relative;
  max-height: 442px;
  min-height: 442px;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
}

@media (max-width: 1919px) {
  .collapsable-content__wrapper {
    max-height: 384px;
    min-height: 384px;
  }
}

@media (max-width: 1023px) {
  .collapsable-content__wrapper {
    max-height: 472px;
    min-height: 472px;
  }
}

@media (max-width: 767px) {
  .collapsable-content__wrapper {
    max-height: 548px;
    min-height: 548px;
  }
}

.collapsable-content__wrapper::after {
  background-image: linear-gradient(0deg, #fff, hsla(0, 0%, 100%, 0));
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 44px;
  left: 0;
  position: absolute;
  width: 100%;
}

.collapsable-content__toggle {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #ff7f32;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .collapsable-content__toggle {
    font-size: 12px;
  }
}

@media (hover: hover) {
  .collapsable-content__toggle:hover {
    color: #F50016;
  }
}

.collapsable-content__toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  padding: 3px 5px;
  transition: transform 0.3s ease-in-out;
}

.collapsable-content.opened .collapsable-content__toggle svg {
  transform: rotate(180deg);
}

.collapsable-content.opened .collapsable-content__wrapper::after {
  content: none;
}

.collapsable-content .review-card__clinic {
  align-items: flex-start;
}

.collapsable-content .review-card__clinic .icon {
  margin-top: 3px;
}

@media (max-width: 767px) {
  .collapsable-content .review-card__clinic .icon {
    margin-top: 1px;
  }
}

.anchor-navigation {
  min-height: 63px;
}

@media (max-width: 1279px) {
  .anchor-navigation {
    min-height: 61px;
  }
}

@media (max-width: 767px) {
  .anchor-navigation {
    min-height: 34px;
  }
}

.anchor-navigation__wrapper {
  padding: 12px 0 24px;
  border-bottom: 1px solid #CFCFD1;
}

@media (max-width: 767px) {
  .anchor-navigation__wrapper {
    padding: 8px 0;
  }
}

.anchor-navigation__list-wrapper {
  display: flex;
  align-items: center;
  margin: 0 -16px;
}

@media (max-width: 1024px) {
  .anchor-navigation__list-wrapper {
    margin: 0 -12px;
  }
}

@media (max-width: 767px) {
  .anchor-navigation__list-wrapper {
    margin: 0 -8px;
  }
}

.anchor-navigation__item {
  display: flex;
  align-items: center;
}

.anchor-navigation__item.hide {
  display: none;
}

.anchor-navigation__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 -14px;
  width: 24px;
  height: 24px;
}

@media (max-width: 1279px) {
  .anchor-navigation__icon-wrapper {
    margin: 0 0 0 -10px;
  }
}

@media (max-width: 767px) {
  .anchor-navigation__icon-wrapper {
    width: 16px;
    height: 16px;
    margin: 0 0 0 -6px;
  }
}

.anchor-navigation__icon {
  width: 100%;
  height: 100%;
}

.anchor-navigation .anchor-navigation__link {
  padding: 0 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #142c36;
  transition: 0.3s ease-in-out;
  transition-property: color, border;
}

@media (max-width: 1279px) {
  .anchor-navigation .anchor-navigation__link {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 1024px) {
  .anchor-navigation .anchor-navigation__link {
    padding: 0 12px;
  }
}

@media (max-width: 767px) {
  .anchor-navigation .anchor-navigation__link {
    padding: 0 8px;
    font-size: 12px;
    line-height: 16px;
  }
}

@media (hover: hover) {
  .anchor-navigation .anchor-navigation__link:hover {
    color: #ff7f32;
  }
}

.anchor-navigation .anchor-navigation__link span {
  border-bottom: 1px solid currentColor;
  transition: 0.3s ease-in-out;
  transition-property: border;
}

@media (max-width: 767px) {
  .anchor-navigation .anchor-navigation__link .full-text {
    display: none;
  }
}

.anchor-navigation .anchor-navigation__link .short-text {
  display: none;
}

@media (max-width: 767px) {
  .anchor-navigation .anchor-navigation__link .short-text {
    display: block;
  }
}

.anchor-navigation.fixed .anchor-navigation__wrapper {
  position: fixed;
  top: 135px;
  left: 0;
  right: 0;
  background-color: #F8F8F8;
  padding-left: calc((100% - 1232px) / 2);
  padding-right: calc((100% - 1232px) / 2);
  padding-bottom: 12px;
  z-index: 100;
  border-top: 1px solid #CFCFD1;
}

@media (max-width: 1023px) {
  .anchor-navigation.fixed .anchor-navigation__wrapper {
    top: 118px;
  }
}

@media (max-width: 767px) {
  .anchor-navigation.fixed .anchor-navigation__wrapper {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
  }
}

@media (max-width: 1279px) {
  .anchor-navigation.fixed .anchor-navigation__list-wrapper {
    width: 1024px;
    margin: 0 auto;
    padding: 0 8px 0 8px;
  }
}

@media (max-width: 1024px) {
  .anchor-navigation.fixed .anchor-navigation__list-wrapper {
    width: 768px;
  }
}

@media (max-width: 768px) {
  .anchor-navigation.fixed .anchor-navigation__list-wrapper {
    width: 768px;
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .mob-app-banner--closed .anchor-navigation.fixed .anchor-navigation__wrapper {
    top: 55px;
  }
}

.services-doctors .filters-block {
  margin: 0;
}

.services-doctors__empty-stub {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  margin: 16px 0;
}

.disease-banner {
  display: block;
  width: 100%;
  height: 200px;
  margin: 64px 0;
}

@media (max-width: 1024px) {
  .disease-banner {
    height: 184px;
  }
}

@media (max-width: 767px) {
  .disease-banner {
    height: 160px;
    margin: 64px 0 64px -8px;
    width: calc(100% + 16px);
  }
}

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

@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;
}

.swiper,
swiper-container {
  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-wrapper {
  transform: translate3d(0px, 0, 0);
}

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

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

.swiper-slide,
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,
.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 {
  transform-style: preserve-3d;
}

.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-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-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

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

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

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

.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-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.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-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.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,
swiper-container: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: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,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.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-button-lock {
  display: none;
}

.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: 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,
:host(.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;
  -ms-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,
swiper-container .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,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.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-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

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

.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-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-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-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-cards {
  overflow: visible;
}

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

.l-date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.l-date__icon {
  margin: 0 4px 0 0;
  fill: #ff7f32;
  width: 24px;
  height: 24px;
}

.l-date__item {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.l-date__item:not(:last-child) {
  margin-right: 40px;
}

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

: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;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pagination__arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #EDF0F8;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #444444;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}

.pagination__arrow-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pagination__arrow-link_previous {
  margin-right: 20px;
}

.pagination__arrow-link_previous svg {
  transform: scaleX(-1);
}

.pagination__arrow-link_next {
  margin-left: 20px;
}

@media (hover: hover) {
  .pagination__arrow-link:hover {
    background: #EDF0F8;
  }
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  background: transparent;
  color: #142C36;
  cursor: pointer;
  transition: background 350ms ease-in-out;
}

.pagination__link_active {
  background: #EDF0F8;
}

@media (hover: hover) {
  .pagination__link:hover {
    background: #EDF0F8;
  }
}

.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);
  }
}

.input {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}

.input__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: #142c36;
}

.input__area {
  border-radius: 12px;
  border: 1px solid #CFCFD1;
  outline: none;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #142c36;
  transition: border 350ms ease-in-out;
}

.input__area:focus-visible {
  border-color: #FF7F32;
}

.input__area::-moz-placeholder {
  color: #CFCFD1;
}

.input__area::placeholder {
  color: #CFCFD1;
}

.input.error .input__area {
  border-color: #f50016;
}

.input__error {
  font-size: 10px;
  line-height: 1;
  color: #f50016;
}

.input .select2-dropdown {
  top: 4px;
  border: none !important;
  border-bottom-right-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.1);
}

.input .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: #ff7f32 !important;
}

.input .select2-dropdown .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #e8eaee !important;
}

.input .select2-results__options {
  scrollbar-width: thin;
  scrollbar-color: #FF7F32 #FFF;
}

.input .select2-results__options::-webkit-scrollbar {
  width: 1px;
}

.input .select2-results__options::-webkit-scrollbar-track {
  background: #FFF;
}

.input .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #FF7F32;
}

.input .c-select-options {
  overflow: hidden !important;
  overflow-y: auto !important;
  box-shadow: unset !important;
  scrollbar-width: thin;
  scrollbar-color: #FF7F32 #FFF;
}

.input .c-select-options::-webkit-scrollbar {
  width: 3px;
}

.input .c-select-options::-webkit-scrollbar-track {
  background: #FFF;
}

.input .c-select-options::-webkit-scrollbar-thumb {
  background-color: #FF7F32;
}

.input .c-select-option {
  transition: color 350ms ease-in-out;
}

.input .c-select-option:hover {
  color: #FF7F32 !important;
}

.input .ps__scrollbar-x-rail,
.input .ps__scrollbar-y-rail {
  display: none !important;
}

.input .select2-container--default .select2-selection--single,
.input .select2-container--default .select2-selection--multiple {
  border: 1px solid #CFCFD1 !important;
  outline: none !important;
  border-radius: 12px !important;
  transition: border 350ms ease-in-out;
}

.input .select2-container--default .select2-selection--single:focus-visible,
.input .select2-container--default .select2-selection--single[aria-expanded=true],
.input .select2-container--default .select2-selection--multiple:focus-visible,
.input .select2-container--default .select2-selection--multiple[aria-expanded=true] {
  border-color: #FF7F32 !important;
}

.input .select2-container {
  width: 100% !important;
  height: 100% !important;
}

.input .select2-container .select2-selection--single {
  height: 100% !important;
}

.input .select2-container .select2-selection--single .select2-selection__rendered,
.input .select2-selection.select2-selection--multiple {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 18px !important;
  padding-right: 32px !important;
  height: 100% !important;
}

.input .select2-container--default .select2-search--inline .select2-search__field {
  pointer-events: none;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #CFCFD1;
}

.input .select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #CFCFD1;
}

.input .select2-container--default .select2-search--inline .select2-search__field::placeholder {
  color: #CFCFD1;
}

.input .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #142C36 !important;
  line-height: 24px !important;
}

.input .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: -6px;
  padding: 0 !important;
}

.input .select2-container--default .select2-selection--multiple {
  cursor: pointer !important;
}

.input .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: rgb(0, 0, 0) !important;
  opacity: 0.2;
}

.input .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  transform: translateY(-25%) rotate(135deg) !important;
  transform-origin: 50% 50% !important;
  right: 14px;
  width: 8px !important;
  height: 8px !important;
  bottom: 0;
  margin: auto;
}

.input .select2-container .select2-search--inline {
  float: unset !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding-left: 6px !important;
}

.input .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #CFCFD1 !important;
}

.input .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: unset !important;
  border-width: unset !important;
  border-style: unset !important;
  left: unset !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-top: 2px solid currentColor !important;
  border-right: 2px solid currentColor !important;
  border-radius: 2px !important;
  transform-origin: 50% 50% !important;
  margin: auto !important;
  color: #6b6b6b !important;
  position: static !important;
  top: unset !important;
}

.input .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-25%) rotate(-45deg) !important;
}

.input .c-select--filter.opened {
  outline: 1px solid #FF7F32;
}

.input .c-select-wrapper,
.input .c-select--filter {
  width: 100% !important;
  height: auto !important;
  padding: 0;
  border-radius: 12px;
  line-height: 0;
}

.input .c-select--filter .c-select-trigger {
  border-radius: 12px;
  width: 100% !important;
  padding: 12px 32px 12px 18px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  border: 1px solid transparent;
  color: #142C36;
}

.input .c-select--filter .c-select-trigger::after {
  right: 14px;
}

.input__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.input__tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 10px;
  background: #EDF0F8;
  border-radius: 40px;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid transparent;
  transition: border 350ms ease-in-out;
}

.input__tag-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #142C36;
}

.input__tag-btn {
  border: none;
  outline: none;
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.input__tag-btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/images/svg/close-cross.svg") center center/contain no-repeat;
}

.input .select2-container--default .select2-selection--multiple .select2-selection__choice {
  float: unset !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px !important;
  gap: 10px;
  background: #EDF0F8;
  border-radius: 40px !important;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid transparent !important;
  line-height: 1;
  transition: border 350ms ease-in-out;
}

.input .select2-selection__choice__remove {
  position: relative;
  color: transparent !important;
  background: transparent;
  margin: 0 !important;
  padding: 0;
  flex-shrink: 0;
  order: 2;
}

.input .select2-selection__choice__remove::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/images/svg/close-cross.svg") center center/contain no-repeat;
}

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

.primary-map {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
}

.primary-map__item {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.primary-map .ymaps-2-1-79-map-copyrights-promo,
.primary-map .ymaps-2-1-79-copyright {
  display: none !important;
}

.primary-map .ymaps-2-1-79-controls__control {
  inset: 264px 16px auto auto !important;
}

.primary-map .btn-zoom-wrapper {
  display: block !important;
}

.primary-map .btn-zoom-wrapper.primary-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;
}

.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-out,
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in {
  position: relative;
}

.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-out svg,
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in svg {
  transform: unset;
}

.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::after,
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: #6B6B6B;
}

.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::after,
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in .primary-map__zoom-out::before {
  height: 2px;
  width: 14px;
}

.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::before {
  height: 14px;
  width: 2px;
  transform: translate(-50%, -50%) rotate(180deg);
}

.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-out::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: #6B6B6B;
  height: 2px;
  width: 14px;
}

.primary-map .btn-zoom-wrapper.primary-map__zoom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  background-color: #F6F6F6;
}

.primary-map__clinics-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  width: 100%;
}

.primary-map__clinic-select {
  position: relative;
  width: 100%;
  border: 2px solid #FF7F32;
  border-radius: 12px;
  max-width: 358px;
  background: #fff;
}

.primary-map__clinic-select-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 14px 12px 50px;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  border-radius: 12px;
  color: #142C36;
}

.primary-map__clinic-select-input::-moz-placeholder {
  color: #CFCFD1;
}

.primary-map__clinic-select-input::placeholder {
  color: #CFCFD1;
}

.primary-map__clinic-select-options {
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  display: none;
  list-style: none;
  margin: 0;
  border-radius: 16px;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1019607843);
  overflow: hidden;
}

.primary-map__clinic-select-options-list {
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10px 0 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}

.primary-map__clinic-select-options-list::-webkit-scrollbar {
  width: 2px;
}

.primary-map__clinic-select-options-list::-webkit-scrollbar-track {
  background: transparent;
}

.primary-map__clinic-select-options-list::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}

.primary-map__clinic-select-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 18px 10px 18px;
  cursor: pointer;
  border-bottom: 1px solid #EDF0F8;
  transition: background 350ms ease-in-out;
}

.primary-map__clinic-select-option:last-child {
  border-bottom: none;
}

.primary-map__clinic-select-option:not([style*="display: none"]):last-of-type {
  border-bottom: none;
}

.primary-map__clinic-select-option_default {
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  color: #142C36;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}

.primary-map__clinic-select-option-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  color: #142C36;
  transition: color 350ms ease-in-out;
}

.primary-map__clinic-select-option-address {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
  font-style: normal;
  color: #142C36;
}

.primary-map__clinic-select-option .place:not(:last-child) {
  margin-bottom: 4px;
}

.primary-map__clinic-select-option .place__round {
  width: 8px;
  height: 8px;
  margin-bottom: 0;
  margin-right: 4px;
}

.primary-map__clinic-select-option .place__text {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  gap: 2px;
  color: #142C36;
}

.primary-map__clinic-select-option .place__time-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #CFCFD1;
  margin-left: 8px;
}

.primary-map__clinic-select-option .place__time-text::before {
  display: block;
  content: "";
  flex-shrink: 0;
}

.primary-map__clinic-select-option .place__time-text.place__time-text_walking::before {
  width: 14px;
  height: 14px;
  background: url(/images/lk/walking.svg) center center/contain no-repeat;
}

.primary-map__clinic-select-option .place__time-text.place__time-text_transport::before {
  width: 16px;
  height: 16px;
  background: url(/images/lk/bus.svg) center center/contain no-repeat;
}

.primary-map__clinic-select-option:hover {
  background-color: #EDF0F8;
}

.primary-map__clinic-select-option:hover .primary-map__clinic-select-option-title {
  color: #FF7F32;
}

.primary-map__clinic-select-option_default:hover .primary-map__clinic-select-option_default {
  color: #FF7F32;
}

.primary-map__clinic-select.open .primary-map__clinic-select-options {
  display: flex;
}

.primary-map__clinic-select-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  outline: none;
  pointer-events: none;
  padding: 9px 8px 9px 16px;
  flex-shrink: 0;
}

.primary-map__clinic-select-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #142C36;
}

.primary-map__clinic-detail-copy {
  display: inline-flex;
  vertical-align: middle;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  margin-left: 8px;
}

.primary-map__clinic-detail-copy svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: #cfcfd1;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .primary-map__clinic-detail-copy:hover svg {
    color: #FF7F32;
  }
}

.primary-map__clinic-detail-copy_active svg {
  color: #FF7F32;
}

.primary-map__clinic-detail-pagination {
  bottom: 8px !important;
  line-height: 1;
}

.primary-map__clinic-detail-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #FFE4CA;
  opacity: 1;
  margin: 0 9px;
}

.primary-map__clinic-detail-pagination .swiper-pagination-bullet-active {
  background: #FF7F32;
}

.primary-map__clinic-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 39%;
  margin-bottom: 16px;
}

.primary-map__clinic-detail-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;
}

.primary-map__clinic-detail-slider {
  width: 100%;
  margin-bottom: 16px;
}

.primary-map__clinic-detail-slider .primary-map__clinic-detail-img {
  margin-bottom: 0;
}

.primary-map__clinic-detail-info {
  padding: 0 16px 1px 16px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 330px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
  -webkit-overflow-scrolling: touch;
}

.primary-map__clinic-detail-info::-webkit-scrollbar {
  width: 2px;
}

.primary-map__clinic-detail-info::-webkit-scrollbar-track {
  background: transparent;
}

.primary-map__clinic-detail-info::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}

.primary-map__clinic-detail-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  color: #142c36;
  margin-bottom: 4px;
}

.primary-map__clinic-detail-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3px;
}

.primary-map__clinic-detail-type .clinic-card__ico {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
}

.primary-map__clinic-detail-type .clinic-card__ico .clinic-card__icon-image {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}

.primary-map__clinic-detail-type .clinic-card__ico .clinic-card__ico .note-text {
  line-height: 1.28;
  color: #142C36;
}

.primary-map__clinic-detail-type .note-text {
  color: #142c36;
  font-size: 14px;
  line-height: 1.42;
}

.primary-map__clinic-detail-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.42;
  font-size: 14px;
  color: #142C36;
  margin-bottom: 16px;
  max-width: 308px;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-decoration-thickness: from-font;
}

.primary-map__clinic-detail-address span {
  display: inline-block;
}

.primary-map__clinic-detail-schedule {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #f8f8f8;
  margin-bottom: 20px;
}

.primary-map__clinic-detail-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) 50%/contain no-repeat;
}

.primary-map__clinic-detail-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.primary-map__clinic-detail-schedule-row span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.28;
  color: #142C36;
}

.primary-map__clinic-detail-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  color: #9dc65f;
}

.primary-map__clinic-detail-phone:before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url(/images/lk/call-calling.svg) 50%/contain no-repeat;
}

.primary-map__clinic-detail-stations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.primary-map__clinic-detail-stations .place {
  gap: 8px;
  flex-wrap: wrap;
}

.primary-map__clinic-detail-stations .place__round {
  width: 8px;
  height: 8px;
  margin-bottom: 0;
  margin-right: 4px;
}

.primary-map__clinic-detail-stations .place__text {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.33;
  color: #142C36;
  font-weight: 500;
  gap: 4px;
}

.primary-map__clinic-detail-stations .place__time-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  color: #cfcfd1;
}

.primary-map__clinic-detail-stations .place__time-text:before {
  display: block;
  content: "";
  flex-shrink: 0;
}

.primary-map__clinic-detail-stations .place__time-text.place__time-text_transport:before {
  width: 16px;
  height: 16px;
  background: url(/images/lk/bus.svg) 50%/contain no-repeat;
}

.primary-map__clinic-detail-stations .place__time-text.place__time-text_walking:before {
  width: 14px;
  height: 14px;
  background: url(/images/lk/walking.svg) 50%/contain no-repeat;
}

.primary-map__clinic-detail-btn {
  width: 100%;
  min-height: 44px;
  background: transparent;
  color: #142C36;
}

@media (hover: hover) {
  .primary-map__clinic-detail-btn:hover {
    background: #FF7F32;
    color: #fff;
  }
}

.primary-map__clinic-back-btn {
  position: absolute;
  left: 18px;
  top: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  gap: 4px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 350ms ease-in-out;
  cursor: pointer;
  border: none;
  outline: none;
  min-height: 28px;
}

.primary-map__clinic-back-btn span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
}

.primary-map__clinic-back-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #142C36;
}

@media (hover: hover) {
  .primary-map__clinic-back-btn:hover {
    background: rgb(255, 255, 255);
  }
}

.primary-map__clinic-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid #EDF0F8;
  background: #fff;
  padding: 11px 16px;
  border-radius: 16px;
  width: 100%;
  max-width: 172px;
  z-index: 1;
  cursor: pointer;
  transition: border 350ms ease-in-out;
}

.primary-map__clinic-toggle-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-map__clinic-toggle-name svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.primary-map__clinic-toggle-name span {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #142C36;
}

.primary-map__clinic-toggle-name_disable span {
  color: #cfcfd1;
}

.primary-map__clinic-toggle .checkbox__place {
  flex-shrink: unset;
}

.primary-map__clinic-toggle:has(.checkbox input:checked) {
  border-color: #FF7F32;
}

@media (hover: hover) {
  .primary-map__clinic-toggle:hover {
    border-color: #FF7F32;
  }
}

.primary-map__clinic-not-found {
  padding: 0 10px 20px 10px;
  font-size: 14px;
  line-height: 18px;
  color: #142C36;
}

.primary-map .js-primary-map-clinic-overlay {
  width: 100%;
  padding-bottom: 20px;
}

.primary-map [data-role=clinic-list] {
  display: flex;
}

.primary-map [data-role=clinic-detail] {
  display: none;
}

@media (max-width: 1024px) {
  .primary-map .ymaps-2-1-79-controls__control {
    inset: 264px 8px auto auto !important;
  }
}

@media (max-width: 767px) {
  .primary-map__clinic-toggle {
    width: auto;
  }

  .primary-map__clinic-toggle .checkbox {
    display: none;
  }

  .primary-map__clinics-wrapper {
    top: 8px;
    left: 8px;
    right: 8px;
  }
}

@media (max-width: 576px) {
  .primary-map__clinics-wrapper {
    width: auto;
  }

  .primary-map__clinic-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-radius: 50%;
    padding: 8px;
  }

  .primary-map__clinic-toggle-name span {
    display: none;
  }

  .primary-map__clinic-select {
    max-width: 100%;
    width: calc(100% - 40px);
  }

  .primary-map__clinic-select-options {
    visibility: hidden;
    width: 100vw;
    max-width: calc(100% + 40px);
  }

  .primary-map__clinic-select-options[data-role=clinic-detail] {
    height: 66vh;
    bottom: 8px;
    min-height: 526px;
  }

  .primary-map__clinic-select-options[data-role=clinic-detail] .js-primary-map-clinic-overlay {
    height: 100%;
    padding-bottom: calc(39% + 35px);
  }

  .primary-map__clinic-select-options_active {
    visibility: visible;
  }

  .primary-map__clinic-detail-info {
    max-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .primary-map__clinic-detail-btn {
    margin-top: auto;
  }
}

@media (max-width: 480px) {
  .primary-map {
    border-radius: 16px;
  }

  .primary-map__clinic-detail-img {
    padding-bottom: 50%;
  }

  .primary-map__clinic-select-options[data-role=clinic-detail] .js-primary-map-clinic-overlay {
    padding-bottom: calc(50% + 35px);
  }
}

.custom-balloon {
  background: #ff7a00;
  color: white;
  border-radius: 50px;
  padding: 4px 16px 4px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
  height: 48px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  text-align: left;
}

.custom-balloon__header {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.custom-balloon__btn {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #FFFFFF;
  text-decoration: underline;
}

.custom-balloon__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.custom-balloon__icon-wrapper {
  width: 40px;
  height: 40px;
}

.masonry {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.masonry .masonry__item {
  display: block;
  margin-bottom: 24px;
  width: 100%;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

@media (max-width: 1023px) {
  .masonry {
    -moz-column-count: 2;
         column-count: 2;
  }
}

@media (max-width: 991px) {
  .masonry {
    -moz-column-count: 2;
         column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry {
    -moz-column-count: 1;
         column-count: 1;
  }
}

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

.policy {
  padding-top: 80px;
  padding-bottom: 80px;
}

.policy__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.policy__wrapper a {
  color: #142c36;
  text-decoration: underline;
  transition: color 350ms ease-in-out, -webkit-text-decoration 350ms ease-in-out;
  transition: color 350ms ease-in-out, text-decoration 350ms ease-in-out;
  transition: color 350ms ease-in-out, text-decoration 350ms ease-in-out, -webkit-text-decoration 350ms ease-in-out;
}

.policy__wrapper a:hover {
  color: #ff7f32;
  text-decoration: none;
}

.policy__wrapper h1 {
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #142c36;
}

.policy__wrapper h2 {
  font-size: 28px;
  line-height: 32px;
  color: #142c36;
  margin-bottom: 24px;
}

.policy__wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
}

.policy__wrapper ul li {
  font-size: 16px;
  line-height: 22px;
}

.policy__wrapper ul ul {
  gap: 8px;
  padding-top: 16px;
  padding-left: 48px;
  list-style: disc;
}

@media (max-width: 576px) {
  .policy {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .policy__wrapper {
    gap: 32px;
  }

  .policy__wrapper h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .policy__wrapper h2 {
    font-size: 24px;
    line-height: 28px;
    color: #142c36;
    margin-bottom: 16px;
  }

  .policy__wrapper ul {
    padding-left: 8px;
  }

  .policy__wrapper ul ul {
    padding-left: 28px;
  }
}

.custom-checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-checkbox__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox__input + label {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.200000003px;
  color: #142C36;
  cursor: pointer;
}

.custom-checkbox__input + label a {
  border: none;
  text-decoration: underline;
  color: #142C36;
}

.custom-checkbox__input + label a:hover {
  color: #FF7F32 !important;
  border: none;
}

.custom-checkbox__input + label::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90% 90%;
  background-color: #FFFFFF;
}

.custom-checkbox__input:checked + label::before {
  background-color: #FF7F32;
  background-image: url("/images/svg/checked.svg");
}

.custom-checkbox__error {
  font-size: 12px;
  line-height: 1;
  color: #F50016;
}

.payment-popup {
  display: none;
  flex-direction: column;
  position: relative;
  border-radius: 16px;
  padding: 24px 32px 16px 24px;
  width: 95%;
  max-height: 90dvh;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #EDF0F8;
}

.payment-popup .select2-search {
  display: none !important;
}

.payment-popup .select2-dropdown {
  top: 4px;
  border: none !important;
  border-bottom-right-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.1);
}

.payment-popup .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: #FF7F32 !important;
}

.payment-popup .select2-dropdown .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #e8eaee !important;
}

.payment-popup .select2-results__options {
  scrollbar-width: thin;
  scrollbar-color: #FF7F32 #FFF;
}

.payment-popup .select2-results__options::-webkit-scrollbar {
  width: 1px;
}

.payment-popup .select2-results__options::-webkit-scrollbar-track {
  background: #FFF;
}

.payment-popup .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #FF7F32;
}

.payment-popup_disabled::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.payment-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
  padding-left: 8px;
}

.payment-popup__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.1000000015px;
  color: #142C36;
  margin: 0;
}

.payment-popup__close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.payment-popup__close-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.payment-popup__close-btn span {
  display: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  color: #FF7F32;
}

.payment-popup__content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 8px;
}

.payment-popup__content-col:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-left: 8px;
  max-width: 788px;
  width: 100%;
  padding-right: 24px;
  border-right: 1px solid #CDD6EC;
}

.payment-popup__content-col:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.payment-popup__content-buttons {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 12px;
  background: #fff;
  width: 100%;
  max-width: 325px;
}

.payment-popup__content-buttons_disabled {
  background: rgba(0, 0, 0, 0.3);
  cursor: default;
  pointer-events: none;
}

.payment-popup__content-buttons_disabled .payment-popup__content-button {
  background: transparent;
  color: #fff;
}

.payment-popup__content-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  text-align: center;
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  color: #6B6B6B;
  transition: color 350ms ease-in-out, background 350ms ease-in-out;
}

.payment-popup__content-button_active {
  background: #FF7F32;
  color: #fff;
}

.payment-popup__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.payment-popup__form-error {
  font-size: 10px;
  line-height: 1;
  color: #F50016;
}

.payment-popup__form .c-select-options {
  overflow: hidden !important;
  overflow-y: auto !important;
  box-shadow: unset !important;
  scrollbar-width: thin;
  scrollbar-color: #FF7F32 #FFF;
}

.payment-popup__form .c-select-options::-webkit-scrollbar {
  width: 3px;
}

.payment-popup__form .c-select-options::-webkit-scrollbar-track {
  background: #FFF;
}

.payment-popup__form .c-select-options::-webkit-scrollbar-thumb {
  background-color: #FF7F32;
}

.payment-popup__form .c-select-option {
  transition: color 350ms ease-in-out;
}

.payment-popup__form .c-select-option:hover {
  color: #FF7F32 !important;
}

.payment-popup__form .ps__scrollbar-x-rail,
.payment-popup__form .ps__scrollbar-y-rail {
  display: none !important;
}

.payment-popup__form_disabled .payment-popup__form-item input,
.payment-popup__form_disabled .payment-popup__form-item input:disabled,
.payment-popup__form_disabled .payment-popup__form-item .c-select-wrapper,
.payment-popup__form_disabled .payment-popup__form-item .c-select-trigger,
.payment-popup__form_disabled .payment-popup__form-item .c-select--filter {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: transparent !important;
  pointer-events: none !important;
  cursor: default !important;
  color: #CFCFD1 !important;
}

.payment-popup__form_disabled .payment-popup__form-item .c-select--filter .c-select-trigger::after {
  pointer-events: none !important;
  cursor: default !important;
  color: #CFCFD1 !important;
}

.payment-popup__form-grid {
  display: grid;
  gap: 16px;
}

.payment-popup__form-grid:nth-child(4) {
  grid-template-columns: 1fr 1fr 1fr;
}

.payment-popup__form-grid:nth-child(5) {
  grid-template-columns: 1fr 1fr;
}

.payment-popup__form-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}

.payment-popup__form-item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.200000003px;
  color: #142C36;
}

.payment-popup__form-item input,
.payment-popup__form-item select {
  border-radius: 12px;
  border: 1px solid #F8F8F8;
  width: 100% !important;
  padding: 12px 18px;
  background: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  color: #142C36;
}

.payment-popup__form-item .select2-container--default .select2-selection--single {
  border: none !important;
  border-radius: 12px !important;
}

.payment-popup__form-item .select2-container {
  width: 100% !important;
  height: 100% !important;
}

.payment-popup__form-item .select2-container .select2-selection--single {
  height: 100% !important;
}

.payment-popup__form-item .select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 18px !important;
  padding-right: 32px !important;
  height: 100% !important;
}

.payment-popup__form-item .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #142C36 !important;
  line-height: 24px !important;
}

.payment-popup__form-item .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: rgb(0, 0, 0) !important;
  opacity: 0.2;
}

.payment-popup__form-item .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  transform: translateY(-25%) rotate(135deg) !important;
  transform-origin: 50% 50% !important;
  right: 14px;
  width: 8px !important;
  height: 8px !important;
  bottom: 0;
  margin: auto;
}

.payment-popup__form-item .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #CFCFD1 !important;
}

.payment-popup__form-item .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: unset !important;
  border-width: unset !important;
  border-style: unset !important;
  left: unset !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-top: 2px solid currentColor !important;
  border-right: 2px solid currentColor !important;
  border-radius: 2px !important;
  transform-origin: 50% 50% !important;
  margin: auto !important;
  color: #6b6b6b !important;
  position: static !important;
  top: unset !important;
}

.payment-popup__form-item .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-25%) rotate(-45deg) !important;
}

.payment-popup__form-item input:focus-visible,
.payment-popup__form-item select:focus-visible,
.payment-popup__form-item .c-select--filter.opened {
  outline: 1px solid #FF7F32;
}

.payment-popup__form-item input::-moz-placeholder {
  color: #CFCFD1;
}

.payment-popup__form-item input::placeholder {
  color: #CFCFD1;
}

.payment-popup__form-item .c-select-wrapper,
.payment-popup__form-item .c-select--filter {
  width: 100% !important;
  height: auto !important;
  padding: 0;
  border-radius: 12px;
  line-height: 0;
}

.payment-popup__form-item .c-select--filter .c-select-trigger {
  border-radius: 12px;
  width: 100% !important;
  padding: 12px 32px 12px 18px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  border: 1px solid transparent;
  color: #142C36;
}

.payment-popup__form-item .c-select--filter .c-select-trigger::after {
  right: 14px;
}

.payment-popup__form-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.11px;
  margin-bottom: 0;
  color: #142C36;
}

.payment-popup__form-certificates {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  gap: 32px;
  background: #fff;
}

.payment-popup__form-certificates-picture {
  width: 100%;
  max-width: 302px;
}

.payment-popup__form-certificates-picture img {
  width: 100%;
  max-width: 100%;
}

.payment-popup__form-certificates-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 422px;
}

.payment-popup__form-certificates-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.11px;
  color: #6EA55A;
  margin-bottom: 32px;
}

.payment-popup__form-certificates-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
  color: #142C36;
}

.payment-popup__form-certificates-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.payment-popup__form-certificates-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.12px;
  color: #142C36;
  padding: 10px 20px;
  border: 1px solid #EDF0F8;
  border-radius: 12px;
  outline: none;
  background: #fff;
  cursor: pointer;
  transition: background 350ms ease-in-out, color 350ms ease-in-out, border-color 350ms ease-in-out;
}

.payment-popup__form-certificates-button_active {
  background: #FF7F32;
  border-color: #FF7F32;
  color: #fff;
}

@media (hover: hover) {
  .payment-popup__form-certificates-button:hover {
    background: #FF7F32;
    border-color: #FF7F32;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  .payment-popup__form-certificates-picture {
    max-width: 360px;
  }

  .payment-popup__form-certificates-info {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .payment-popup__form-certificates {
    flex-direction: column;
  }

  .payment-popup__form-certificates-picture {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .payment-popup__form-certificates {
    gap: 16px;
  }

  .payment-popup__form-certificates-title {
    margin-bottom: 16px;
  }
}

.payment-popup__cost {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 16px;
  border-radius: 12px;
  background: #F8F8F8;
  width: 100%;
  gap: 16px;
}

.payment-popup__cost-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  border-bottom: 1px dotted #142C36;
}

.payment-popup__cost-row div {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.200000003px;
  color: #142C36;
}

.payment-popup__cost-row div:nth-child(1) {
  margin-bottom: -3px;
}

.payment-popup__cost-row div:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 2px;
  left: 0;
  background-color: #F8F8F8;
}

.payment-popup__cost-row div:nth-child(2) {
  color: #6EA55A;
  margin-bottom: -3px;
}

.payment-popup__cost-row div:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 2px;
  left: 0;
  background-color: #F8F8F8;
}

.payment-popup__cost-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  color: #142C36;
}

.payment-popup__cost-total {
  padding-top: 16px;
}

.payment-popup__cost-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.1000000015px;
  color: #6EA55A;
}

.payment-popup__checkboxes {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

.payment-popup__submit-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.payment-popup__submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  border: 1px solid transparent;
  outline: none;
  width: 100%;
  background: #FF7F32;
  color: #fff;
  cursor: pointer;
  transition: color 350ms ease-in-out, background 350ms ease-in-out, border 350ms ease-in-out;
}

.payment-popup__submit-button_disabled,
.payment-popup__submit-button:disabled {
  background: rgb(0, 0, 0);
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

@media (hover: hover) {
  .payment-popup__submit-button:hover {
    background: transparent;
    border-color: #FF7F32;
    color: #142C36;
  }
}

.payment-popup__reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  border: none;
  outline: none;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  color: #ADB6CE;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .payment-popup__reset-button:hover {
    color: #FF7F32;
  }
}

.payment-popup__checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-popup__checkbox-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.payment-popup__checkbox-input + label {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.200000003px;
  color: #142C36;
  cursor: pointer;
}

.payment-popup__checkbox-input + label a {
  text-decoration: underline;
  color: #142C36;
  transition: color 350ms ease-in-out, -webkit-text-decoration 350ms ease-in-out;
  transition: color 350ms ease-in-out, text-decoration 350ms ease-in-out;
  transition: color 350ms ease-in-out, text-decoration 350ms ease-in-out, -webkit-text-decoration 350ms ease-in-out;
}

@media (hover: hover) {
  .payment-popup__checkbox-input + label a:hover {
    color: #ff7f32;
    text-decoration: none;
  }
}

.payment-popup__checkbox-input + label span sup {
  line-height: 0;
  top: 4px;
  right: -2px;
  position: relative;
}

.payment-popup__checkbox-input + label::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90% 90%;
  background-color: #FFFFFF;
}

.payment-popup__checkbox-input:checked + label::before {
  background-color: #FF7F32;
  background-image: url("/images/svg/checked.svg");
}

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

.payment-popup__preloader_small-circle {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transform-origin: 50%;
  animation: 1s draw-small infinite alternate;
}

.payment-popup__preloader_big-circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transform-origin: 50%;
  animation: 1s draw-big infinite alternate 0.5s;
}

.payment-popup_certificates .payment-popup__header {
  justify-content: flex-end;
}

.payment-popup_certificates .payment-popup__content-col .payment-popup__cost .payment-popup__cost-total {
  padding-top: 0;
}

@media (max-width: 1023px) {
  .payment-popup {
    padding: 24px;
  }

  .payment-popup__content {
    flex-direction: column;
    padding: 0 8px 0 8px;
  }

  .payment-popup__content-col:nth-child(1) {
    padding-left: 0;
    max-width: 100%;
    padding-right: 0;
    border-right: none;
  }

  .payment-popup__content-col:nth-child(2) {
    gap: 24px;
    width: 100%;
  }

  .payment-popup_certificates .payment-popup__header {
    margin-bottom: 0;
    position: absolute;
    right: 8px;
    top: 8px;
  }
}

@media (max-width: 576px) {
  .payment-popup {
    padding: 32px 8px;
    border-radius: 30px;
    width: 80%;
  }

  .payment-popup__title {
    font-size: 20px;
    line-height: 26px;
    max-width: 263px;
  }

  .payment-popup__form-grid:nth-child(4),
  .payment-popup__form-grid:nth-child(5) {
    grid-template-columns: 1fr;
  }

  .payment-popup.payment-popup__cost {
    padding: 16px;
  }

  .payment-popup_certificates .payment-popup__header {
    right: 12px;
    top: 12px;
  }

  .payment-popup_certificates .payment-popup__header .payment-popup__close-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 425px) {
  .payment-popup {
    width: 95%;
  }
}

.payment-service-overlay {
  background: rgba(0, 0, 0, 0.4);
  overflow: unset !important;
}

.payment-service-overlay .payment-popup {
  display: flex !important;
}

.payment-service-overlay.mfp-wrap {
  overflow: unset !important;
}

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

  100% {
    stroke-dashoffset: 210;
    transform: rotate(360deg);
  }
}

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

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

.order-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 50dvh;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #EDF0F8;
}

.order-success__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.order-success__title {
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #142c36;
  max-width: 500px;
  margin-bottom: 0;
}

.order-success__descr {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1000000015px;
  text-align: center;
  color: #142c36;
}

.order-success__descr span {
  color: #6ea55a;
  text-decoration: underline;
}

.order-success__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  color: #fff;
  border: 1px solid #FF7F32;
  border-radius: 40px;
  width: 100%;
  max-width: 320px;
  background-color: #FF7F32;
  outline: none;
  cursor: pointer;
  transition: background-color 350ms ease-in-out, color 350ms ease-in-out;
}

@media (hover: hover) {
  .order-success__button:hover {
    background: transparent;
    color: #142c36;
  }
}

@media (max-width: 576px) {
  .order-success {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .order-success__wrapper {
    gap: 24px;
  }

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

  .order-success.order-success__descr {
    font-size: 16px;
    line-height: 26px;
  }
}

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

.tax-deduction {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tax-deduction__title {
  margin: 0;
}

.tax-deduction__content-header {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.37;
  letter-spacing: 0.1px;
  color: #000;
  margin-bottom: 16px;
}

.tax-deduction__content-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.1px;
  color: #000;
}

.tax-deduction__content-text p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.tax-deduction__content-text ol,
.tax-deduction__content-text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 0 19px;
  margin: 0;
}

.tax-deduction__content-text ol li ol,
.tax-deduction__content-text ol li ul,
.tax-deduction__content-text ul li ol,
.tax-deduction__content-text ul li ul {
  padding-top: 16px;
}

.tax-deduction__content-text ul li {
  position: relative;
}

.tax-deduction__content-text ul li:before {
  content: "";
  background-image: url(/images/leaf.svg);
  display: block;
  position: absolute;
  left: -25px;
  top: 7px;
  width: 15px;
  height: 15px;
  z-index: 1;
}

.tax-deduction__content-text a {
  color: #000000;
  text-decoration: underline;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .tax-deduction__content-text a:hover {
    color: #FF7F32;
  }
}

.tax-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 64px;
  border: 1px solid #CFCFD1;
  border-radius: 16px;
  overflow: hidden;
}

.tax-form_disabled::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.tax-form__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tax-form__block_disactive {
  display: none;
}

.tax-form__block .custom-checkbox__input + label::before {
  border: 1px solid #CFCFD1;
}

.tax-form__block .custom-checkbox__input:checked + label::before {
  border-color: #FF7F32;
}

.tax-form__block .custom-checkbox__input + label span a {
  transition: color 350ms ease-in-out;
}

.tax-form__block-error {
  font-size: 10px;
  line-height: 1;
  color: #f50016;
}

.tax-form__submit-area {
  gap: 32px;
}

.tax-form__submit-area .primary-button {
  max-width: 300px;
  min-height: 44px;
}

.tax-form [data-field=taxpayer] .tax-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tax-form [data-field=taxpayer] .tax-form__grid .input:last-child {
  grid-column: span 2;
}

.tax-form [data-field=patient] .tax-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tax-form [data-field=patient] .tax-form__grid .tax-form__subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-column: span 3;
}

.tax-form [data-field=patient] .tax-form__grid .tax-form__subgrid + .input {
  grid-column: span 3;
}

.tax-form [data-field=where-to-direct] .custom-checkbox__input + label::before {
  border-radius: 100%;
}

.tax-form [data-field=where-to-direct] .custom-checkbox__input:checked + label::before {
  background-color: transparent;
  background-image: url(/images/svg/circle-checked.svg);
}

.tax-form__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.1px;
  margin: 0;
  color: #6EA55A;
}

.tax-form__thanks-title {
  font-size: 22px;
  line-height: 28px;
}

.tax-form__thanks-title a {
  color: #FF7F32;
  text-decoration: underline;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .tax-form__thanks-title a:hover {
    color: #6EA55A;
  }
}

.tax-form__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1px;
  margin: 0;
  color: #142C36;
}

.tax-form__switcher {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tax-form__switcher .checkbox.checkbox_new {
  flex-shrink: 0;
}

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

.tax-form__preloader_small-circle {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transform-origin: 50%;
  animation: 1s draw-small infinite alternate;
}

.tax-form__preloader_big-circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transform-origin: 50%;
  animation: 1s draw-big infinite alternate 0.5s;
}

.tax-form__checkbox-policy {
  width: -moz-max-content;
  width: max-content;
}

.tax-form__clinics-select .select2-results__option,
.tax-form__period-select .select2-results__option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tax-form__clinics-select .select2-results__option::before,
.tax-form__period-select .select2-results__option::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 4px;
  border: 1px solid #ff7f32;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 90% 90%;
}

.tax-form__clinics-select .select2-results__option[aria-selected=true]::before,
.tax-form__period-select .select2-results__option[aria-selected=true]::before {
  background-color: #ff7f32;
  background-image: url(/images/svg/checked.svg);
}

.tax-form__clinics-select .select2-results__option--highlighted[aria-selected]::before,
.tax-form__period-select .select2-results__option--highlighted[aria-selected]::before {
  border-color: #fff;
}

.tax-form__clinics-select .select-icon .select2-results__option:before,
.tax-form__clinics-select .select-icon .select2-results__option[aria-selected=true]:before,
.tax-form__period-select .select-icon .select2-results__option:before,
.tax-form__period-select .select-icon .select2-results__option[aria-selected=true]:before {
  display: none !important;
}

.tax-form__documents-clinics-select {
  padding-left: 33px;
}

@media (max-width: 1023px) {
  .tax-form [data-field=taxpayer] .tax-form__grid,
  .tax-form [data-field=patient] .tax-form__grid {
    grid-template-columns: 1fr;
  }

  .tax-form [data-field=taxpayer] .tax-form__grid .input:last-child,
  .tax-form [data-field=patient] .tax-form__grid .tax-form__subgrid + .input {
    grid-column: unset;
  }

  .tax-form [data-field=patient] .tax-form__grid .tax-form__subgrid {
    grid-template-columns: 1fr;
    grid-column: unset;
  }

  .tax-form__documents-clinics-select {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .tax-form {
    padding: 24px 16px;
    border-radius: 30px;
  }
}

@media (max-width: 567px) {
  .tax-form__submit-area .primary-button {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tax-form {
    padding: 0;
    border-radius: 0;
    border: none;
  }
}

.price-sync {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 16px;
  padding: 32px;
  background: linear-gradient(98.01deg, #F2F6FE 16.41%, #EDF0F8 99.02%);
}

.price-sync__descr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 840px;
}

.price-sync__descr-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #142C36;
  text-align: left;
}

.price-sync__descr-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #142C36;
  text-align: left;
}

.price-sync__link {
  background: transparent;
  min-height: 44px;
  padding: 9px 16px;
  color: #142C36;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}

.price-sync__link svg {
  color: #FF7F32;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .price-sync__link:hover {
    background: #FF7F32;
    color: #fff;
  }

  .price-sync__link:hover svg {
    color: #fff;
  }
}

@media (max-width: 1023px) {
  .price-sync {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 16px;
  }

  .price-sync__descr {
    gap: 24px;
  }
}

@media (max-width: 380px) {
  .price-sync__link {
    width: 100%;
  }
}

.consultation-form {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 56px 32px 24px 32px;
  background: #fff;
  border-radius: 16px;
}

.consultation-form .f-button.is-close-btn {
  top: 24px !important;
  right: 32px !important;
  width: 24px;
  height: 24px;
  color: #FF7F32;
  opacity: 1;
  background: transparent !important;
}

.consultation-form__area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.consultation-form__title {
  font-weight: 700;
  line-height: 1;
  font-size: 36px;
  color: #6EA55A;
}

.consultation-form__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #142C36;
}

.consultation-form__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consultation-form__footer .custom-checkbox__input + label::before {
  border: 1px solid #CFCFD1;
}

.consultation-form__footer .custom-checkbox__input:checked + label::before {
  border-color: #ff7f32;
}

.consultation-form__footer .custom-checkbox__input + label a {
  transition: color 350ms ease-in-out;
}

.consultation-form__submit-button {
  width: 100%;
  min-height: 44px;
}

.consultation-form__submit-button[disabled] {
  background: #000;
  border-color: #000;
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.consultation-form__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.consultation-form__contacts-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #142C36;
}

.consultation-form__contacts-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9DC65F;
  transition: color 350ms ease-in-out;
}

.consultation-form__contacts-tel svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.consultation-form__contacts-tel span {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #9DC65F;
  transition: color 350ms ease-in-out;
}

.consultation-form__thanks {
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
  color: #6EA55A;
  padding: 0 0 32px 0;
}

.consultation-form__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 16px;
  background: hsla(0, 0%, 100%, 0.7);
}

.consultation-form__overlay .preloader {
  position: static;
  display: block;
  transform: unset;
  left: unset;
  top: unset;
}

@media (hover: hover) {
  .consultation-form__contacts-tel:hover,
  .consultation-form__contacts-tel:hover span {
    color: #ff7f32;
  }
}

@media (max-width: 480px) {
  .consultation-form {
    max-width: 100%;
    padding: 56px 24px 24px 24px;
  }

  .consultation-form .f-button.is-close-btn {
    right: 24px !important;
  }

  .consultation-form__title {
    font-size: 24px;
  }

  .consultation-form__contacts {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fancybox__form-overlay {
  --fancybox-bg: rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
  .fancybox__form-overlay .fancybox__slide {
    padding: 0;
  }
}

.coupons-recording {
  padding: 40px;
  border-radius: 16px;
  background: #F8F8F8;
  max-width: 472px;
}

.coupons-recording__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #142C36;
  text-align: center;
  margin-bottom: 10px;
}

.coupons-recording__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #142C36;
  text-align: center;
  margin-bottom: 24px;
}

.coupons-recording__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.coupons-recording__button {
  min-height: 44px;
  width: 100%;
}

.coupons-recording__contacts {
  display: inline-flex;
  flex-direction: column;
  margin: 0 auto;
}

.coupons-recording__contacts-text,
.coupons-recording__contacts-tel,
.coupons-recording__contacts-feedback {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #142C36;
  margin-bottom: 8px;
  transition: color 350ms ease-in-out;
}

.coupons-recording__contacts-tel {
  font-weight: 700;
}

.coupons-recording__contacts-feedback {
  text-decoration: underline;
  color: #FF7F32;
  margin: 0;
}

.coupons-recording .f-button.is-close-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  background: #F8F8F8 !important;
  opacity: 1 !important;
  top: -24px !important;
  right: -32px !important;
  --f-button-color: #808080 !important;
  --f-button-svg-width: 14px !important;
  --f-button-svg-height: 14px !important;
  transition: color 350ms ease-in-out, background 350ms ease-in-out;
}

.coupons-recording .f-button.is-close-btn svg {
  stroke-width: 4px;
}

@media (hover: hover) {
  .coupons-recording__contacts-tel:hover,
  .coupons-recording__contacts-feedback:hover {
    color: #9DC65F;
  }

  .coupons-recording .f-button.is-close-btn:hover {
    background: #FF7F32 !important;
    color: #fff;
  }

  .coupons-recording__button:not(.primary-button_bg_transparent, .primary-button_bg_green):hover {
    background-color: #9DC65F;
    border-color: #9DC65F;
    color: #fff;
  }
}

@media (max-width: 576px) {
  .coupons-recording {
    padding: 40px 24px 40px 24px;
  }

  .coupons-recording .f-button.is-close-btn {
    top: 8px !important;
    right: 8px !important;
  }
}

.promotions-card {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 24px 16px;
  border-radius: 16px;
  background: #F8FAFF;
}

.promotions-card__image {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 53.57%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.promotions-card__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.35s ease-in-out;
}

@media (hover: hover) {
  .promotions-card__image img:hover {
    transform: scale(1.05);
  }
}

.promotions-card__tags {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 280px;
  margin-bottom: 10px;
}

.promotions-card__tags svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #FF7F32;
}

.promotions-card__tags span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #142C36;
}

.promotions-card__tags span:nth-child(1) {
  max-width: 315px;
}

.promotions-card__tags .promotions-card__tags-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 32px;
  background: #EDF0F8;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}

.promotions-card__tags .promotions-card__tags-tooltip:hover {
  background: #FF7F32;
  color: #fff;
}

.promotions-card__tags .promotions-card__tags-tooltip:hover ul {
  opacity: 1;
  pointer-events: all;
}

.promotions-card__tags ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1019607843);
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease-in-out;
  cursor: default;
  max-height: 115px;
  width: 100%;
  max-width: 270px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #cfcfd1 transparent;
}

.promotions-card__tags ul li {
  font-size: 12px;
  line-height: 18px;
  word-wrap: break-word;
  white-space: break-spaces;
  color: #142c36;
}

.promotions-card__title {
  margin-bottom: 20px;
}

.promotions-card__title a {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #142C36;
  transition: color 350ms ease-in-out;
}

@media (hover: hover) {
  .promotions-card__title a:hover {
    color: #ff7f32;
  }
}

.promotions-card__button {
  width: 100%;
  min-height: 44px;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin-top: auto;
  color: #142C36;
}

@media (hover: hover) {
  .promotions-card__button:hover {
    background: #ff7f32;
    color: #fff;
  }
}

.promotions {
  padding-top: 16px;
  padding-bottom: 60px;
}

.promotions__title {
  margin-bottom: 20px;
}

.promotions__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promotions__content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promotions__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.promotions__filters {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 16px;
  background: #EDF0F8;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}

.promotions__filters .input {
  min-width: 200px;
}

.promotions__filters .input .select2-container--default .select2-selection--single,
.promotions__filters .input .select2-container--default .select2-selection--multiple {
  border: unset !important;
  border-radius: 8px !important;
}

.promotions__filters-tabs {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 4px;
  border-radius: 8px;
  background: #fff;
}

.promotions__filters-tab-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: #6B6B6B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}

.promotions__filters-tab input:checked ~ .promotions__filters-tab-text {
  color: #FFF;
  background: #FF7F32;
}

.promotions__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: hsla(0, 0%, 100%, 0.7);
}

.promotions__overlay .preloader {
  position: static;
  display: block;
  transform: unset;
  left: unset;
  top: unset;
}

@media (hover: hover) {
  .promotions .promotions__filters-tab:hover .promotions__filters-tab-text {
    color: #FFF;
    background: #FF7F32;
  }
}

@media (max-width: 1024px) {
  .promotions__filters {
    padding: 8px 16px;
  }
}

@media (max-width: 767px) {
  .promotions__filters {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .promotions__filters-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .promotions__filters-tabs {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .promotions__filters-tabs {
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior: contain;
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
  }

  .promotions__filters-tabs::-webkit-scrollbar {
    width: 3px;
  }

  .promotions__filters-tabs::-webkit-scrollbar-track {
    background: transparent;
  }

  .promotions__filters-tabs::-webkit-scrollbar-thumb {
    background-color: transparent;
  }

  .promotions__filters-tab {
    flex-shrink: 0;
  }
}

body {
  overflow-x: hidden;
}

#feedback_ajax_id {
  position: absolute;
}

@media (min-width: 1280px) {
  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-menu li:last-child a {
    display: flex;
    align-items: center;
  }

  .nav-menu li:last-child a img {
    margin-right: 10px;
  }
}

@media (min-width: 1280px) and (max-width: 768px) {
  .nav-menu > img {
    display: none;
  }
}

@media (min-width: 1280px) {
  .nav-menu li {
    margin-right: 20px;
    margin-left: 20px;
  }

  .nav-menu li .nav-menu__item {
    color: #7f7e7e;
  }

  .header__btn {
    padding: 19px 25px;
  }
}

#banners-coupons .ico-card .ico-card__item-inner {
  border-radius: 60px;
  border: 0;
  margin-bottom: 27px;
}

@media (max-width: 767px) {
  #banners-coupons .ico-card .ico-card__item-inner {
    width: 100%;
  }
}

#banners-coupons .ico-card .ico-card__item-inner .ico-card__item {
  border-radius: 60px;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
  padding: 10px 38px 10px;
}

#banners-coupons .ico-card .ico-card__item-inner .ico-card__item .ico-card__title {
  color: #7F7E7E;
}

#banners-coupons .ico-card .img-wrap {
  margin-left: auto;
}

#banners-coupons .ico-card__arrow {
  display: none;
}

#banners-coupons .slider--banner .slick-dots {
  transform: rotate(90deg);
  margin-top: -30%;
  margin-left: 90%;
}

#banners-coupons .slider--banner .slick-dots li {
  background-color: #D1D5DD;
  opacity: 1;
  width: 17px;
  height: 17px;
}

#banners-coupons .slider--banner .slick-dots li.slick-active {
  background-color: #ff7f32;
}

@media (min-width: 1280px) {
  #banners-coupons {
    /********************/
    /*Стили от 03.08.2023*/
    /********************/
  }

  #banners-coupons .slider__btn--right {
    /*Стили от 03.08.2023*/
    top: 20px !important;
    left: 70px !important;
    /********************/
  }

  #banners-coupons .js-btn-prev {
    /*Стили от 03.08.2023*/
    top: 20px !important;
    left: 20px !important;
    /********************/
  }

  #banners-coupons .slider--banner .slider__btn .i-arrow-slider {
    width: 35px;
    height: 35px;
    padding: 5px;
    border-radius: 50%;
    display: block;
    /*Стили от 03.08.2023*/
    background: #edf0f8;
    border: none;
    fill: #adb4c8;
    box-shadow: none;
    /********************/
  }

  #banners-coupons .slider--banner .slider__btn .i-arrow-slider:hover {
    background-color: #ff7f32;
    fill: white;
  }

  #banners-coupons .slider--banner .slider__btn {
    width: 35px;
    height: 35px;
  }

  #banners-coupons .slider--banner .slider__btn::after {
    content: "";
    width: 17px;
    height: 17px;
    display: block;
    box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.35);
    position: absolute;
    left: calc(50% - 1px);
    top: calc(50% - 9px);
  }

  #banners-coupons .slider--banner .slider__btn:hover::after {
    display: none;
  }
}

#doctors-list-main > h2 {
  color: #6ea55a;
  font-size: 54px;
  font-weight: 700;
}

#doctors-list-main > h2 span {
  color: #7F7E7E;
  font-size: 20px;
  font-weight: 300;
}

#doctors-list-main > h2 .underline {
  display: inline-block;
  width: 138px;
  border-bottom: 1px solid #7F7E7E;
  margin-right: 20px;
  margin-left: 20px;
}

#doctors-list-main > p {
  width: 100%;
  text-align: end;
}

#doctors-list-main > p span {
  font-size: 109px;
  color: #D1D4DC !important;
  font-weight: 700;
}

#doctors-list-main .btn-outline-blue {
  font-size: 28px;
  padding: 20px 28px !important;
  height: 72px;
  color: #817f7f;
}

@media (max-width: 767px) {
  #doctors-list-main .btn-outline-blue {
    width: 100%;
    font-size: 22px;
    height: 50px;
    justify-content: space-between;
  }
}

#doctors-list-main .nav-tabs__link {
  border-radius: 30px;
  background-color: #f1f2f5;
  padding: 10px 70px;
  text-decoration: none;
  border-bottom: none;
  color: #858484;
}

#doctors-list-main .slider--doctors {
  margin-bottom: 130px;
}

#doctors-list-main .slick-initialized .slick-slide {
  display: flex;
  align-items: center;
}

#doctors-list-main .slick-initialized .slick-slide img {
  margin-left: 50px;
}

#doctors-list-main .slick-initialized .slick-slide:last-child img {
  display: none;
}

#annual-maintenance-programs {
  padding-top: 150px;
}

#annual-maintenance-programs > h2 {
  color: #6ea55a;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 2px;
  position: relative;
}

#annual-maintenance-programs > h2 .calendar {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
  /*Стили от 04.08.2023 (kirill)*/
  background: url("/storage/new-images/calendar.png") center center/cover no-repeat;
  max-width: 333px;
  width: 100%;
  height: 356px;
}

#annual-maintenance-programs > h2 .circle {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: -1;
  /*Стили от 04.08.2023 (kirill)*/
  background: url("/storage/new-images/circle1.png") center center/cover no-repeat;
  max-width: 251px;
  width: 100%;
  height: 251px;
}

@media (max-width: 767px) {
  #annual-maintenance-programs > h2 .circle {
    display: none;
  }
}

#annual-maintenance-programs > p {
  border-left: 1px solid #6ea55a;
  margin-left: 66%;
  padding-left: 30px;
  font-size: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #7F7E7E;
  margin-bottom: 50px;
}

#annual-maintenance-programs > p a {
  border-bottom: 1px solid #ff7f32;
  margin-bottom: 30px;
  display: inline-block;
}

li .text-block__item {
  border-radius: 30px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
}

li .text-block__item .h4 {
  display: flex;
  align-items: center;
  font-size: 20px;
}

li .text-block__item .h4 img {
  margin-right: 10px;
}

li .text-block__item .h4 .underline {
  display: inline-block;
  width: 138px;
  border-bottom: 1px solid #7F7E7E;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
}

li .text-block__item .h2 {
  color: #7F7E7E;
  font-weight: 700;
  font-size: 43px;
}

@media (min-width: 1280px) {
  li .text-block__item .h2 {
    width: 340px;
    line-height: 3.5rem;
  }
}

@media (max-width: 767px) {
  li .text-block__item .h2 {
    font-size: 30px;
  }
}

li .text-block__item .price {
  flex-shrink: 0;
  font-size: 16px;
  color: #6ea55a;
}

li .text-block__item .text-block__bottom {
  align-items: unset;
  width: 70%;
}

li .text-block__item .text-block__bottom .price {
  font-weight: 700;
}

li .text-block__item .text-block__bottom p {
  width: 260px;
  margin-left: 12px;
  color: #7F7E7E;
}

li .text-block__item .text-block__image {
  border-top-left-radius: 80px 50%;
  border-bottom-left-radius: 200px 75%;
}

li .text-block__item .text-block__image img {
  opacity: 1;
  max-width: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}

li .btn.btn-blue.btn-small:not(.card__btn) {
  margin-top: -15px;
  margin-left: 30px;
  max-width: 300px;
  width: 300px;
}

@media (max-width: 767px) {
  li .btn.btn-blue.btn-small:not(.card__btn) {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

.fixed_line {
  position: fixed;
  bottom: 0;
  z-index: 900;
  background-color: white;
  box-shadow: 0 15px 30px rgba(127, 126, 126, 0.4);
}

.fixed_line .fixed-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed_line .fixed-wrap .btn {
  border-radius: 30px;
  color: #7F7E7E;
  width: 19%;
  height: 60px;
}

.fixed_line .fixed-wrap .btn:last-child {
  width: 22%;
}

.fixed_line .fixed-wrap .btn:nth-child(4) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed_line .fixed-wrap .btn-blue {
  background-color: #ffd8bd;
}

.fixed_line .fixed-wrap .btn-gray {
  background-color: #f1f2f4;
}

.fixed_line .fixed-wrap .btn-gray span {
  border-bottom: 1px solid #ff7f32;
}

.flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-wrapper img {
  margin-left: 30px;
}

#corporate-clients > h2 {
  color: #817f7f;
  /*  font-size: 50px; */
  font-weight: 700;
}

@media (max-width: 767px) {
  #corporate-clients > h2 {
    font-size: 30px;
    line-height: 2.5rem;
    margin-bottom: 10px;
  }
}

#corporate-clients .underline {
  display: inline-block;
  width: 138px;
  border-bottom: 1px solid #7F7E7E;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
}

#corporate-clients .i-arrow-slider {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #edf0f8;
  padding: 15px;
  color: #adb4c8;
  border: none;
}

@media (hover: hover) {
  #corporate-clients .i-arrow-slider:hover {
    background-color: #ff7f32;
    fill: white;
  }
}

@media (min-width: 1280px) {
  .nav-menu li:last-of-type {
    margin-right: 25px;
  }
}

.btn--archive {
  font-size: 16px;
  line-height: 26px;
  color: #CFCFD1;
}

@media (hover: hover) {
  .btn--archive:hover {
    color: #6EA55A;
  }
}

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

.card.card--all {
  margin: 0;
  padding: 64px 0 104px 0;
}

@media (max-width: 1023px) {
  .card.card--all {
    padding: 40px 0 64px 0;
  }
}

.card.card--all .card__list {
  max-width: none;
}

.card__list {
  width: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 50px;
  color: #D1D4DC;
  max-width: none;
}

.card__list li {
  position: relative;
  width: 100%;
}

.card__list .card__title {
  border-bottom: 1px solid #7F7E7E;
  margin-left: 15px;
  margin-right: 15px;
  color: #7F7E7E;
  font-weight: 700;
}

.card__list .note-text {
  color: #7F7E7E;
}

.card__list .card__price {
  position: absolute;
  transform: rotate(-90deg);
  left: -65px;
  top: 100px;
  font-weight: 700;
}

.card__list .card__price:before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: #7F7E7E;
  margin-right: 20px;
  margin-bottom: 5px;
}

.card__list .card__btn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  padding: 10px 20px;
  min-width: 160px;
  max-width: 160px;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .card__list .card__btn {
    padding: 13px 20px;
  }
}

.spoiler-box__content .nav-menu {
  align-items: start;
}

.spoiler-box__content .nav-menu li {
  margin-left: 0;
}

@media (max-width: 1280px) {
  .text-block--more-content .text-block__item {
    border: 0;
  }

  .social li {
    margin-right: 25px;
  }

  .btn-up {
    display: none !important;
  }

  .icon-el {
    display: none;
  }

  .slider {
    margin-bottom: 35px;
  }

  .slider--doctors {
    margin-bottom: 82px;
  }

  .header__bottom {
    display: none !important;
  }

  .mobile-menu__content .nav-menu img {
    display: none !important;
  }

  .slick-dots {
    display: none !important;
  }

  #annual-maintenance-programs > p a {
    margin-bottom: 15px;
  }

  .header--main .header__search h1 span {
    padding-bottom: 0;
    line-height: 140%;
  }

  .ico-card__item .img-wrap {
    display: none;
  }

  #doctors-list-main > h2 {
    font-size: 40px;
  }

  #doctors-list-main > h2 .underline {
    display: none;
  }

  #doctors-list-main > p span {
    font-size: 30px;
  }

  #annual-maintenance-programs {
    padding-top: 50px;
  }

  #annual-maintenance-programs > h2 {
    font-size: 32px;
  }

  #annual-maintenance-programs > p {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }

  #annual-maintenance-programs > p .link-text {
    border-bottom: 0;
  }

  #corporate-clients > h2 .underline {
    display: none;
  }
}

@media (max-width: 1280px) and (max-width: 767px) {
  .clinics > h1,
  .clinics > .h1 {
    font-size: 30px;
  }
}

.header__btn-search {
  padding: 14px 4px;
}

.nav-menu li {
  margin-left: 17px;
  margin-right: 17px;
}

.table {
  border-radius: 30px;
}

.table .table__item:first-child {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.table .table__item:last-child {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

@media (min-width: 768px) {
  .top-page.service::after {
    background: #e8eaee;
  }

  .section--price .section__right::after {
    display: none;
  }

  .section__right {
    padding: 0px 24px 0 !important;
  }

  .section__right {
    border-radius: 30px;
  }
}

h1,
.h1 {
  color: #6ea55a;
  font-size: 60px;
  font-weight: 700;
}

h2 {
  color: #817f7f;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.page-content h2 {
  color: #6ea55a;
}

h3 {
  color: #6ea55a;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

button:focus {
  outline: none;
}

button:active {
  outline: none;
}

.title-city {
  color: black;
}

@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }
}

@media (min-width: 320px) and (max-width: 576px) {
  h1,
  .h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }
}

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

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

.map-wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .map-wrapper {
    display: flex;
    flex-direction: column;
  }

  .map-wrapper .scroll {
    display: flex;
    flex-wrap: wrap;
  }

  .map-wrapper .opened {
    order: -1;
  }

  .map-wrapper .clinic-card.opened .clinic-card__inner {
    display: flex;
    flex-wrap: wrap;
  }

  .map-wrapper .clinic-card.opened .clinic-card__top {
    width: 100%;
  }

  .map-wrapper .clinic-card.opened .clinic-card__image {
    display: block;
    margin-left: 20px;
    margin-right: 50px;
  }

  .map-wrapper .clinic-card.opened .clinic-card__image img {
    width: 300px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .aside-map--list-spoiler {
    width: 100%;
  }

  .clinic-card.open {
    height: 280px;
  }

  .ico-card {
    justify-content: space-around;
  }

  .ico-card .ico-card__item-inner {
    width: 46%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .clinic-card.open {
    height: auto;
  }
}

@media (min-width: 768px) {
  .map-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .map-wrapper .map-container {
    width: 100%;
    margin: 0;
  }

  .map-wrapper .clinic-card {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .map-wrapper {
    flex-direction: row;
  }

  .aside-map--list-spoiler {
    width: 394px;
    margin: 0;
  }
}

.clinics {
  margin-top: 4rem;
}

@media (min-width: 1280px) {
  .clinics {
    margin-top: 40px;
  }
}

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

