@charset "UTF-8";
:root {
  /* Color's =====> */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-background: #FFFFFF;
  --color-primary: #000000;
  --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: #008489;
  --color-green-500: #015D52;
  --color-green-600: #015D52;
  --color-green-700: #629A4E;
  --color-orange-100: #ffd8bd;
  --color-orange-900: #FF4500;
  --color-orange-1000: #FF4500;
  --color-red-1000: #FF4500;
  /* Box Shadow =====> */
  --shadow-primary: 0 15px 30px rgba(127,126,126,.4);
  /* Font-family =====> */
  --font-Steppe: "Steppe", 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;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  outline: none;
  border: none;
  background: #F5F7FA;
  cursor: pointer;
  color: #FF4500;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}
.slider-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.slider-btn_bg_white {
  background: #fff;
}
.slider-btn_bg_blured {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.slider-btn_ico_white {
  color: #fff;
}
.slider-btn::after, .slider-btn::before {
  display: none;
}
.slider-btn.swiper-button-disabled {
  opacity: 0;
}
@media (hover: hover) {
  .slider-btn:hover {
    background: #015D52;
    color: #fff;
  }
}
.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}

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

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

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

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

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

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

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

.common-review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  max-width: 416px;
  background: #FFFFFF;
  height: auto;
}
.common-review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF820A;
}
.common-review-card__stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.common-review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.common-review-card__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #CFCFD1;
}
.common-review-card__name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 20px;
}
@media (max-width: 767px) {
  .common-review-card__name {
    height: auto;
  }
}
.common-review-card__clinic {
  margin-top: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .common-review-card__clinic {
    height: auto;
  }
}
.common-review-card__content {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: auto;
}
.common-review-card__content_initial {
  -webkit-line-clamp: 7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.common-review-card__more-btn {
  background: transparent;
  border: unset;
  padding: 0;
  outline: unset;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
  color: #FF820A;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}

.doctor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 16px 16px 16px;
  border-radius: 24px;
  background: linear-gradient(181.51deg, #F2F6FE 39.14%, #E3E7F0 78.92%);
  backdrop-filter: blur(16px);
  max-width: 308px;
  width: 100%;
  height: auto;
  min-height: 550px;
}
.doctor-card__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 100%;
  width: calc(100% - 16px);
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.doctor-card__image-leaf {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
          mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
  background: #fff;
}
.doctor-card__image-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 108%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  aspect-ratio: 1/1;
  -webkit-mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
          mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
  transform: translateY(-7.4%) translateX(0%);
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.doctor-card__image-preview_no_photo {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 129px;
  -webkit-mask-size: unset;
          mask-size: unset;
  -webkit-mask: unset;
          mask: unset;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor-card__clinics {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 8px;
}
.doctor-card__clinics span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9999A4;
  font-size: 14px;
}
.doctor-card__clinics svg {
  color: #9999A4;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 350ms ease-in-out;
}
.doctor-card__clinics ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  bottom: 102%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-height: 100px;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}
.doctor-card__clinics ul::-webkit-scrollbar {
  width: 2px;
}
.doctor-card__clinics ul::-webkit-scrollbar-track {
  background: transparent;
}
.doctor-card__clinics ul::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.doctor-card__clinics ul li {
  font-size: 12px;
  line-height: 18px;
  width: 100%;
  max-width: 100%;
  white-space: break-spaces;
  color: #000000;
}
.doctor-card__clinics:has(ul) {
  width: -moz-max-content;
  width: max-content;
}
.doctor-card__clinics:has(ul):hover span {
  color: #015D52;
}
.doctor-card__clinics:has(ul):hover svg {
  color: #015D52;
}
.doctor-card__clinics:has(ul):hover ul {
  opacity: 1;
  pointer-events: auto;
}
.doctor-card__name {
  margin-top: 22px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 20px;
}
.doctor-card__name span {
  display: block;
}
.doctor-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
}
.doctor-card__price {
  padding: 10px;
  margin-left: 10px;
}
.doctor-card__sign-up-btn.primary-button {
  padding: 10px 8px;
  min-height: 44px;
}
.doctor-card__info {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}
.doctor-card__info-list {
  position: relative;
}
.doctor-card__info-list:nth-child(1) {
  min-width: 85px;
}
.doctor-card__info-list:not(:only-child):nth-child(1) {
  max-width: 133px;
}
.doctor-card__info-list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.doctor-card__info-list-tooltip {
  width: -moz-max-content;
  width: max-content;
}
.doctor-card__info-list-tooltip + div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  bottom: 25%;
  left: -15%;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-height: 100px;
  width: -moz-max-content;
  width: max-content;
  max-width: 160px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}
.doctor-card__info-list-tooltip + div::-webkit-scrollbar {
  width: 2px;
}
.doctor-card__info-list-tooltip + div::-webkit-scrollbar-track {
  background: transparent;
}
.doctor-card__info-list-tooltip + div::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.doctor-card__info-list-tooltip + div span {
  font-size: 12px;
  line-height: 18px;
  width: 100%;
  max-width: 100%;
  white-space: break-spaces;
  color: #000000;
}
.doctor-card__info-list-tooltip:hover {
  color: #015D52;
}
.doctor-card__info-list-tooltip:hover + div {
  opacity: 1;
  pointer-events: auto;
}
.doctor-card__comment {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 4px 8px;
  z-index: 1;
}
.doctor-card__comment-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #FF4500;
}
.doctor-card__comment-count {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .doctor-card {
    max-width: 330px;
  }
  .doctor-card__image-preview {
    left: -4px;
  }
  .doctor-card__image-preview_no_photo {
    left: 50%;
  }
  .doctor-card__image-leaf {
    left: 4%;
    right: 4%;
    bottom: 0;
    top: auto;
    width: 92%;
    height: 92%;
  }
}

.bottom-sheet {
  display: flex;
  align-items: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 170;
  height: 100%;
  width: 100%;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}

.bottom-sheet[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bottom-sheet__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.4);
}

.bottom-sheet__content {
  background: #fff;
  position: relative;
  overflow-y: hidden;
  --default-transitions: transform 0.5s, border-radius 0.5s;
  transition: var(--default-transitions);
  transform: translateY(0);
  max-height: 100vh;
  height: 30vh;
  max-width: 70rem;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  padding: 8px 16px 16px;
  box-shadow: 0 -10px 16px 0 rgba(125, 137, 171, 0.2509803922);
  z-index: 11;
  flex-grow: 1;
}

.bottom-sheet__content:not(.not-selectable) {
  transition: var(--default-transitions), height 0.5s;
}

.bottom-sheet__content.fullscreen {
  border-radius: 0;
}

.bottom-sheet[aria-hidden=true] .bottom-sheet__content {
  transform: translateY(100%);
}

.bottom-sheet__draggable-area {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  cursor: grab;
}

.bottom-sheet__draggable-thumb {
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 8px;
  background: #cfcfd1;
}

.bottom-sheet__body {
  height: 100%;
  overflow-y: auto;
  gap: 1rem;
}

.clinic-info-sheet__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;
}
.clinic-info-sheet__info::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 8px;
  background: #CFCFD1;
  margin: 0 auto 16px auto;
}
.clinic-info-sheet__info.is-active {
  display: block;
  transform: translateY(0);
}
.clinic-info-sheet__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;
}
.clinic-info-sheet__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;
}
.clinic-info-sheet__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.1px;
  color: #000000;
}
.clinic-info-sheet__type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3px;
}
.clinic-info-sheet__type .clinic-card__ico {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
}
.clinic-info-sheet__type .clinic-card__ico .clinic-card__icon-image {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.clinic-info-sheet__type .clinic-card__ico .note-text {
  line-height: 1.28;
  letter-spacing: 0.2px;
  color: #000000;
}
.clinic-info-sheet__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.42;
  font-size: 14px;
  color: #000000;
  margin-bottom: 16px;
  max-width: 100%;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-decoration-thickness: from-font;
}
.clinic-info-sheet__address span {
  display: inline-block;
}
.clinic-info-sheet__address-copy {
  display: inline-flex;
  vertical-align: middle;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  margin-left: 8px;
}
.clinic-info-sheet__address-copy svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: #cfcfd1;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .clinic-info-sheet__address-copy:hover svg {
    color: #FF4500;
  }
}
.clinic-info-sheet__address-copy_active svg {
  color: #FF4500;
}
.clinic-info-sheet__schedule {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #F8F8F8;
  margin-bottom: 20px;
}
.clinic-info-sheet__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;
}
.clinic-info-sheet__schedule-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.1px;
  color: #015D52;
}
.clinic-info-sheet__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;
}
.clinic-info-sheet__schedule-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.clinic-info-sheet__schedule-row span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.28;
  letter-spacing: 0.2px;
  color: #000000;
}
.clinic-info-sheet__stations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.clinic-info-sheet__stations .place__round {
  width: 8px;
  height: 8px;
  margin-bottom: 0;
  margin-right: 4px;
}
.clinic-info-sheet__stations .place__text {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  font-weight: 400;
  gap: 2px;
}
.clinic-info-sheet__stations .place__time-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1px;
  color: #CFCFD1;
  margin-left: 12px;
}
.clinic-info-sheet__stations .place__time-text::before {
  display: block;
  content: "";
  flex-shrink: 0;
}
.clinic-info-sheet__stations .place__time-text.place__time-text_walking::before {
  width: 14px;
  height: 14px;
  background: url("/images/lk/walking.svg") center center/contain no-repeat;
}
.clinic-info-sheet__stations .place__time-text.place__time-text_transport::before {
  width: 16px;
  height: 16px;
  background: url("/images/lk/bus.svg") center center/contain no-repeat;
}
.clinic-info-sheet__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: #FF4500;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
}
.clinic-info-sheet__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;
}

.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: "—";
  position: absolute;
  right: 0;
  bottom: 0;
  color: #C7C7C7;
}
@media (min-width: 1280px) {
  .breadcrumbs__item:not(span):hover {
    color: #FF4500;
  }
}
@media (max-width: 767px) {
  .breadcrumbs__item {
    max-width: 90px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
@media (max-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}

.faq__title {
  margin-bottom: 48px;
  color: #015D52;
}
.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: "Steppe", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-right: 10px;
  color: #000000;
}
.faq__card-text {
  font-family: "Steppe", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
  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: #FF4500;
  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;
}

.home-licenses {
  padding-bottom: 60px;
}
.home-licenses__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  padding: 24px;
  background: #F2F5FD;
}
.home-licenses__col:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-licenses__col:nth-child(2) {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
}
.home-licenses__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 599px;
}
.home-licenses__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #FF4500;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-licenses__link:hover {
    color: #015D52;
  }
}
@media (max-width: 1024px) {
  .home-licenses {
    padding-bottom: 40px;
  }
  .home-licenses__wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
  }
  .home-licenses__col:nth-child(1) {
    gap: 16px;
  }
  .home-licenses__col:nth-child(2) {
    flex-wrap: wrap;
    gap: 24px;
  }
  .home-licenses__text {
    font-size: 14px;
    line-height: 18px;
  }
  .home-licenses__link {
    font-size: 14px;
    line-height: 18px;
  }
}

.home-consultation {
  padding-bottom: 60px;
  padding-top: 71px;
}
.home-consultation__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 45px 80px;
  border-radius: 16px;
  background: linear-gradient(263.04deg, #015D52 2.88%, #015D52 62.44%, #008489 95.47%);
  min-height: 200px;
  z-index: 0;
}
.home-consultation__wrapper::before {
  position: absolute;
  top: -71px;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  max-width: 382px;
  height: auto;
  background: url("/images/refactor/home-page/consultation_desktop.webp") center center/cover no-repeat;
  z-index: -1;
}
.home-consultation__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
  z-index: 1;
}
.home-consultation__content-descr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 514px;
}
.home-consultation__content-title, .home-consultation__content-text {
  color: #fff;
}
.home-consultation__button {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  min-height: 44px;
  padding: 10px 26px 10px 16px;
  border: none;
}
@media (hover: hover) {
  .home-consultation__button:hover {
    background: #015D52;
    color: #fff;
  }
}
@media (max-width: 1280px) {
  .home-consultation__wrapper {
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    padding: 32px 24px;
  }
  .home-consultation__wrapper::before {
    top: -71px;
    max-width: 480px;
  }
  .home-consultation__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-consultation__content-descr {
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .home-consultation {
    padding-top: 40px;
  }
  .home-consultation__wrapper {
    align-items: flex-start;
    padding: 32px 16px;
    overflow: hidden;
    min-height: 280px;
    background: linear-gradient(327.49deg, #015D52 8.82%, #015D52 69.4%, #008489 102.99%);
  }
  .home-consultation__wrapper::before {
    top: unset;
    bottom: 0;
    left: unset;
    right: -220px;
    width: 447px;
    height: 217px;
    background: url("/images/refactor/home-page/consultation_mob.webp") bottom right/contain no-repeat;
  }
  .home-consultation__content-title {
    font-size: 24px;
    line-height: 34px;
  }
  .home-consultation__content-text {
    max-width: 326px;
  }
}
@media (max-width: 480px) {
  .home-consultation__content-text {
    max-width: 230px;
  }
}
@media (max-width: 400px) {
  .home-consultation__wrapper::before {
    bottom: -40px;
    right: -285px;
  }
}

.doctor-articles {
  position: relative;
  padding: 0 0 60px 0;
}
.doctor-articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.doctor-articles__slider-nav {
  display: flex;
  align-items: center;
}
.doctor-articles__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF4500;
  background: #F5F7FA;
  backdrop-filter: blur(8px);
}
.doctor-articles__slider-nav-btn.swiper-button-lock {
  display: none !important;
}
.doctor-articles__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.doctor-articles__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}
.doctor-articles__slider-nav-link {
  font-weight: 500;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .doctor-articles__slider-nav-link:hover {
    color: #015D52;
  }
}
.doctor-articles__card {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 416px;
}
.doctor-articles__card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 48.08%;
  border-radius: 12px;
  margin-bottom: 16px;
}
.doctor-articles__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 350ms ease-in-out;
}
.doctor-articles__card-title {
  line-height: 1.375;
  margin-bottom: 16px;
  -webkit-line-clamp: 2; /* Число отображаемых строк */
  display: -webkit-box; /* Включаем флексбоксы */
  -webkit-box-orient: vertical; /* Вертикальная ориентация */
  overflow: hidden;
  transition: color 350ms ease-in-out;
}
.doctor-articles__card-date {
  font-size: 14px;
  line-height: 1.285;
  color: #CFCFD1;
  margin-top: auto;
}
@media (hover: hover) {
  .doctor-articles__card:hover .doctor-articles__card-image img {
    transform: scale(1.1);
  }
  .doctor-articles__card:hover .doctor-articles__card-title {
    color: #015D52;
  }
}
@media (max-width: 1024px) {
  .doctor-articles__card {
    max-width: 330px;
  }
}
@media (max-width: 1024px) {
  .doctor-articles {
    padding: 0 0 40px 0;
  }
  .doctor-articles__slider-nav-btn {
    display: none;
  }
  .doctor-articles__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .doctor-articles .doctor-slider-pagination {
    position: static;
    margin-top: 16px;
  }
}

.doctor-preview {
  padding-bottom: 60px;
  padding-top: 16px;
}
.doctor-preview + section {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.doctor-preview__slider {
  width: 100%;
  max-width: 462px;
  height: 240px;
  margin: 0;
  grid-column: 2;
  border-radius: 16px;
  overflow: hidden;
}
.doctor-preview__slider-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.doctor-preview__slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.doctor-preview__slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 0;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.doctor-preview__slider-title {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: 356px;
  color: #fff;
}
.doctor-preview__slider-text {
  font-weight: 400;
  line-height: 1.4;
  max-width: 240px;
  color: #fff;
}
.doctor-preview__slider-btn {
  top: unset;
  right: unset;
  bottom: 24px;
  margin: 0;
  transition: background 350ms ease-in-out;
}
.doctor-preview__slider-btn.swiper-button-lock {
  display: none !important;
}
@media (hover: hover) {
  .doctor-preview__slider-btn:hover {
    background: #FF4500;
  }
}
.doctor-preview__slider-btn_prev {
  left: 24px;
}
.doctor-preview__slider-btn_next {
  left: 80px;
}
.doctor-preview__slider-btn svg {
  color: #000000;
}
.doctor-preview__slider-feedback {
  display: none;
}
.doctor-preview__image {
  position: sticky;
  top: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 440px;
  width: 100%;
  aspect-ratio: 1/1;
}
.doctor-preview__image-main {
  position: absolute;
  top: 4.5%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 103%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  aspect-ratio: 1/1;
  -webkit-mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
          mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
  transform: translateY(-7.4%) translateX(0%);
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.doctor-preview__image-main_no_photo {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 255px;
  -webkit-mask-size: unset;
          mask-size: unset;
  -webkit-mask: unset;
          mask: unset;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor-preview__image-leaf {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
          mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
  background: linear-gradient(109.5deg, #008489 -2.44%, #015D52 101.96%);
}
.doctor-preview__image-leaf_no_photo {
  background: #F2F5FD;
}
.doctor-preview__image-wrap img {
  width: 600px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-preview__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.doctor-preview__wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  gap: 80px;
}
.doctor-preview__title {
  margin: 12px 0 12px 0;
}
.doctor-preview__tags {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}
.doctor-preview__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.285;
  padding: 8px 20px;
  background: #F2F5FD;
}
.doctor-preview__regalia {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.doctor-preview__regalia-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.doctor-preview__regalia-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.doctor-preview__regalia-item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #FF4500;
  padding-top: 4px;
}
.doctor-preview__regalia-item:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF4500;
  position: absolute;
  top: calc(50% + 2px);
  left: -12px;
  transform: translateY(-50%);
}
.doctor-preview__description {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  max-width: 500px;
  color: #000000;
  width: 100%;
  margin-bottom: 40px;
}
.doctor-preview__description a {
  display: inline;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
.doctor-preview__description a:hover {
  color: #015D52;
}
.doctor-preview__price-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.doctor-preview__price-button {
  padding: 10px 24px;
}
.doctor-preview__benefits {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 100%;
}
.doctor-preview__benefits-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.doctor-preview__benefits-card-img {
  width: 80px;
  height: 80px;
}
.doctor-preview__benefits-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-preview__benefits-card-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
  color: #000000;
}
.doctor-preview__promo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 40px;
  width: 100%;
}
.doctor-preview__clinics {
  width: 100%;
  margin-top: 40px;
}
.doctor-preview__clinics-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 220px);
  gap: 16px;
}
.doctor-preview__clinics-title {
  margin-bottom: 24px;
}
.doctor-preview__clinics-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  min-height: 200px;
  border-radius: 16px;
  background: #F2F5FD;
}
.doctor-preview__clinics-card-address {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
.doctor-preview__clinics-card-stations {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.doctor-preview__clinics-card-stations .place__text {
  line-height: 18px;
  color: #000000;
  font-weight: 500;
  font-size: 12px;
}
.doctor-preview__clinics-card-stations .place__round {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  margin-bottom: 0;
}
.doctor-preview__clinics-card-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #FF4500;
  margin-top: auto;
  transition: all 350ms;
}
@media (hover: hover) {
  .doctor-preview__clinics-card-link:hover {
    color: #015D52;
  }
}
.doctor-preview__clinics-card-link._mob {
  display: none;
}
.doctor-preview__clinics-card-title {
  max-width: 160px;
}
.doctor-preview__video {
  position: relative;
  background: linear-gradient(109.5deg, #008489 -2.44%, #015D52 101.96%);
  background-clip: border-box;
  border-radius: 16px;
  overflow: hidden;
  width: 22.223%;
  height: 29.26%;
  border: 4px solid transparent;
}
.doctor-preview__video-poster {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-preview__video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 37.5%;
  height: 28%;
  max-width: 42px;
  max-height: 42px;
}
.doctor-preview__more-btn {
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  background: #F2F5FD;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  border-radius: 12px;
  padding: 11px 16px;
  width: 100%;
  color: #FF4500;
}
@media (max-width: 1279px) {
  .doctor-preview__wrapper {
    gap: 48px;
  }
}
@media (max-width: 1024px) {
  .doctor-preview {
    padding-bottom: 40px;
  }
  .doctor-preview__promo {
    gap: 16px;
  }
  .doctor-preview__promo .doctor-slider-pagination {
    display: none;
  }
  .doctor-preview__slider .swiper-slide {
    padding: 18px;
    gap: 8px;
  }
  .doctor-preview__slider-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    max-width: 280px;
  }
  .doctor-preview__slider-text {
    font-size: 14px;
    line-height: 18px;
    max-width: 210px;
  }
  .doctor-preview__clinics-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .doctor-preview {
    padding-bottom: 0;
    background: #ECEEF6;
    backdrop-filter: blur(16px);
  }
  .doctor-preview__slider {
    max-width: 100%;
    width: 100%;
    overflow: visible;
  }
  .doctor-preview__info {
    background: #fff;
    margin: 0 -16px 0 -16px;
    padding: 16px 16px 0 16px;
    width: 100vw;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    overflow: hidden;
  }
  .doctor-preview__wrapper {
    flex-direction: column;
    gap: 0;
  }
  .doctor-preview__image {
    top: auto;
    max-width: 100%;
    position: relative;
  }
  .doctor-preview__image_no_photo {
    align-items: center;
    justify-content: center;
  }
  .doctor-preview__image-leaf {
    display: none;
  }
  .doctor-preview__image-main {
    position: static;
    -o-object-position: top center;
       object-position: top center;
    aspect-ratio: 1/1;
    -webkit-mask: unset;
            mask: unset;
    transform: unset;
    -webkit-mask-size: unset;
            mask-size: unset;
    height: 100%;
  }
  .doctor-preview__image-main_no_photo {
    max-width: 100%;
    height: 75%;
  }
  .doctor-preview__image:not(:has(.doctor-preview__image-main)) {
    display: none;
  }
  .doctor-preview__video {
    display: none;
  }
  .doctor-preview__description {
    max-width: 100%;
    margin-bottom: 0;
  }
  .doctor-preview__slider {
    display: block;
    height: auto;
  }
  .doctor-preview__slider .swiper-slide {
    height: 280px;
  }
  .doctor-preview__slider-btn {
    display: none;
  }
  .doctor-preview__slider-feedback {
    display: none;
  }
  .doctor-preview__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: auto;
    gap: 16px;
  }
  .doctor-preview__promo {
    padding-top: 40px;
    padding-bottom: 32px;
    gap: 16px;
  }
  .doctor-preview__promo .doctor-slider-pagination {
    display: none;
  }
  .doctor-preview__tags {
    position: relative;
    margin-bottom: 24px;
  }
  .doctor-preview__clinics {
    width: 100vw;
    border-radius: 24px;
    padding: 40px 16px 40px 16px;
    background: #F2F5FD;
    margin: 40px -16px 0 -16px;
  }
  .doctor-preview__clinics-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .doctor-preview__clinics-card {
    position: relative;
    width: 100%;
    gap: 0;
    padding: 12px;
    min-height: 94px;
    background: #FFF;
  }
  .doctor-preview__clinics-card-link {
    display: none;
  }
  .doctor-preview__clinics-card-link._mob {
    display: block;
    margin-top: 8px;
  }
  .doctor-preview__clinics-card-title {
    margin-bottom: 10px;
  }
  .doctor-preview__clinics-card-stations {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }
  .doctor-preview__clinics-card-address {
    margin-bottom: 10px;
  }
  .doctor-preview__clinics-card: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;
  }
  .doctor-preview__title {
    margin: 0 0 16px 0;
    order: -1;
  }
  .doctor-preview__regalia {
    margin-bottom: 12px;
  }
  .doctor-preview__benefits {
    flex-wrap: nowrap;
    margin-top: 24px;
    gap: 16px;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .doctor-preview__benefits-card {
    flex-shrink: 0;
  }
  .doctor-preview__price-buttons {
    display: none;
  }
  .doctor-preview__more-btn {
    display: flex;
  }
  .doctor-preview__revers-mob {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .doctor-preview__slider .swiper-slide {
    height: 240px;
  }
}
@media (max-width: 480px) {
  .doctor-preview__slider .swiper-slide {
    height: 172px;
  }
}

.doctor-reviews {
  position: relative;
  padding: 0 0 60px;
  background: #F2F5FD;
}
.doctor-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.doctor-reviews__slider-nav {
  display: flex;
  align-items: center;
}
.doctor-reviews__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF4500;
  background: #F5F7FA;
  backdrop-filter: blur(8px);
}
.doctor-reviews__slider-nav-btn.swiper-button-lock {
  display: none !important;
}
.doctor-reviews__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.doctor-reviews__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}
.doctor-reviews__slider-nav-link {
  font-weight: 500;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .doctor-reviews__slider-nav-link:hover {
    color: #015D52;
  }
}
.doctor-reviews__more-btn .doctor-more-button-item {
  display: none;
  margin-top: 16px;
  background: #fff;
}
@media (max-width: 1024px) {
  .doctor-reviews {
    padding: 0 0 40px;
  }
  .doctor-reviews__slider-nav-btn {
    display: none;
  }
  .doctor-reviews__slider .swiper-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .doctor-reviews__slider .common-review-card {
    max-width: 100%;
  }
  .doctor-reviews__slider .common-review-card:nth-child(n+4) {
    display: none;
  }
  .doctor-reviews__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .doctor-reviews__more-btn .doctor-more-button-item {
    display: inline-flex;
  }
}

#doctor-page-reviews:target {
  scroll-margin-top: 200px !important;
}

.doctor-profile {
  padding: 60px 0 60px;
  background: #F2F5FD;
}
.doctor-profile__title {
  margin-bottom: 24px;
}
.doctor-profile__grid {
  display: grid;
  grid-template-columns: 416px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.doctor-profile__menu {
  position: sticky;
  top: 140px;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}
.doctor-profile__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.doctor-profile__content-card {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
}
.doctor-profile__content-wrap {
  display: flex;
  flex-direction: column;
}
.doctor-profile__content-wrap ul,
.doctor-profile__content-wrap ol {
  list-style: disc;
  padding-left: 24px;
  line-height: 26px;
}
.doctor-profile__content-wrap ol {
  list-style: decimal;
}
.doctor-profile__content-anchor {
  position: absolute;
  top: -210px;
}
.doctor-profile__content-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.doctor-profile__content-title svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.doctor-profile__content-video {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 358px;
  max-height: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.doctor-profile__content-video-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-profile__content-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}
.doctor-profile__content-stage {
  display: flex;
  gap: 8px;
  padding-left: 4px;
}
.doctor-profile__content-stage:not(:last-child) {
  margin-bottom: 4px;
}
.doctor-profile__content-stage-ruler {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.doctor-profile__content-stage-ruler svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #CFCFD1;
}
.doctor-profile__content-stage-ruler::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #CFCFD1;
}
.doctor-profile__content-stage-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.doctor-profile__content-stage:not(:last-child) .doctor-profile__content-stage-info {
  padding-bottom: 32px;
}
.doctor-profile__content-stage-year {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #FF4500;
}
.doctor-profile__content-stage-footer {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.doctor-profile__content-wrap .doctor-profile__content-cropped {
  -webkit-line-clamp: 7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#fff 50%, transparent);
          mask-image: linear-gradient(#fff 50%, transparent);
}
.doctor-profile__content-wrap .doctor-profile__content-cropped_blocks {
  -webkit-line-clamp: unset;
  display: block;
  -webkit-box-orient: unset;
  -webkit-mask-image: unset;
          mask-image: unset;
}
.doctor-profile__content-wrap .doctor-profile__content-cropped_blocks > *:nth-child(n+4) {
  display: none;
}
.doctor-profile__content-wrap .doctor-profile__content-cropped_blocks._expanded > *:nth-child(n+4) {
  display: flex;
}
.doctor-profile__content-wrap .doctor-profile__content-cropped._expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
  -webkit-mask-image: none;
          mask-image: none;
}
.doctor-profile__content-more-btn {
  display: block;
  margin-top: 16px;
}
.doctor-profile__menu-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style-type: none;
  counter-reset: counter-nav 0;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
.doctor-profile__menu-nav-list::-webkit-scrollbar {
  width: 0;
  -webkit-appearance: none;
  background: transparent;
}
.doctor-profile__menu-nav-list::-webkit-scrollbar-track {
  background: transparent;
}
.doctor-profile__menu-nav-list::-webkit-scrollbar-thumb {
  background: transparent;
}
.doctor-profile__menu-nav-list:has(.doctor-profile__menu-nav-item_active) .doctor-profile__menu-nav-item:not(.doctor-profile__menu-nav-item_active) {
  border-color: transparent;
}
.doctor-profile__menu-nav-list:has(.doctor-profile__menu-nav-item_active) .doctor-profile__menu-nav-item:not(.doctor-profile__menu-nav-item_active)::before {
  color: #D9E1F6;
}
.doctor-profile__menu-nav-item {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  counter-increment: counter-nav 1;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 40px;
  padding: 10px 20px;
  transition: border 350ms ease-in-out;
}
.doctor-profile__menu-nav-item::before {
  content: counter(counter-nav);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #D9E1F6;
  transition: color 350ms ease-in-out;
  pointer-events: none;
  min-width: 10px;
}
.doctor-profile__menu-nav-item:nth-child(1):not(.doctor-profile__menu-nav-item_active) {
  border-color: #000000;
}
.doctor-profile__menu-nav-item:nth-child(1):not(.doctor-profile__menu-nav-item_active)::before {
  color: #000000;
}
.doctor-profile__menu-nav-item_active {
  border-color: #000000;
}
.doctor-profile__menu-nav-item_active::before {
  color: #000000;
}
@media (hover: hover) {
  .doctor-profile__menu-nav-item:hover {
    border-color: #000000 !important;
  }
  .doctor-profile__menu-nav-item:hover::before {
    color: #000000 !important;
  }
}
.doctor-profile__menu-nav-link {
  line-height: 26px;
}
.doctor-profile__certificate {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.doctor-profile__certificate:not(:last-child) {
  margin-bottom: 16px;
}
.doctor-profile__certificate-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.doctor-profile__certificate-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.doctor-profile__speciality-name {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #000000;
}
.doctor-profile__languages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
}
.doctor-profile__languages-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.doctor-profile__languages-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.doctor-profile__languages-level {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.doctor-profile__slider {
  width: 100%;
}
.doctor-profile__half {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .doctor-profile {
    padding: 40px 0 40px;
    width: 100%;
  }
  .doctor-profile__grid {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .doctor-profile__menu {
    position: static;
    width: 100%;
    background: transparent;
    padding: 0;
  }
  .doctor-profile__menu-nav {
    width: 100%;
  }
  .doctor-profile__menu-nav-list {
    flex-direction: row;
    gap: unset;
  }
  .doctor-profile__menu-nav-item {
    display: inline-flex;
    width: auto;
    flex-shrink: 0;
    padding: 5px 12px;
    gap: 6px;
    border-color: #000000;
  }
  .doctor-profile__menu-nav-item::before {
    content: counter(counter-nav) ".";
    font-weight: 500;
    transition: unset;
    color: #000000;
  }
  .doctor-profile__menu-nav-item.swiper-slide-thumb-active {
    background: #000000;
  }
  .doctor-profile__menu-nav-item.swiper-slide-thumb-active .doctor-profile__menu-nav-link {
    color: #fff;
  }
  .doctor-profile__menu-nav-item.swiper-slide-thumb-active::before {
    color: #fff !important;
  }
  .doctor-profile__menu-nav-link {
    font-weight: 500;
    pointer-events: none;
  }
  .doctor-profile__content {
    flex-direction: row;
    gap: unset;
  }
  .doctor-profile__content-card {
    padding: 16px;
  }
  .doctor-profile__content-card_video {
    background: transparent;
    padding: 0;
  }
  .doctor-profile__content-card_video .doctor-profile__content-title {
    display: none;
  }
  .doctor-profile__slider-pagination {
    position: static;
    bottom: 0 !important;
  }
  .doctor-profile__languages {
    grid-template-columns: 1fr;
  }
  .doctor-profile__half {
    grid-template-columns: repeat(1, 1fr);
  }
  .doctor-profile__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .doctor-profile {
    margin-top: 40px;
  }
}

#doctor-profile:target {
  scroll-margin-top: 200px !important;
}

.doctor-showcase {
  position: relative;
}
.doctor-showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.doctor-showcase__slider-nav {
  display: flex;
  align-items: center;
}
.doctor-showcase__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF4500;
  background: #F5F7FA;
  backdrop-filter: blur(8px);
}
.doctor-showcase__slider-nav-btn.swiper-button-lock {
  display: none !important;
}
.doctor-showcase__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.doctor-showcase__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}
.doctor-showcase__slider-nav-link {
  font-weight: 500;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .doctor-showcase__slider-nav-link:hover {
    color: #015D52;
  }
}
@media (max-width: 1024px) {
  .doctor-showcase__slider-nav-btn {
    display: none;
  }
  .doctor-showcase__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .doctor-showcase .doctor-slider-pagination {
    position: static;
    margin-top: 16px;
  }
}

.doctor-videos {
  position: relative;
  padding: 0 0 60px 0;
}
.doctor-videos__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.doctor-videos__slider-nav {
  display: flex;
  align-items: center;
}
.doctor-videos__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF4500;
  background: #F5F7FA;
  backdrop-filter: blur(8px);
}
.doctor-videos__slider-nav-btn.swiper-button-lock {
  display: none !important;
}
.doctor-videos__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.doctor-videos__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}
.doctor-videos__slider-nav-link {
  font-weight: 500;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .doctor-videos__slider-nav-link:hover {
    color: #015D52;
  }
}
.doctor-videos__card {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 416px;
}
.doctor-videos__card-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
}
.doctor-videos__card-poster {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  transition: filter 350ms ease-in-out;
  filter: brightness(0.6);
}
.doctor-videos__card-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  margin-top: 10px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 350ms ease-in-out;
}
.doctor-videos__card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  z-index: 1;
}
@media (hover: hover) {
  .doctor-videos__card:hover .doctor-videos__card-poster {
    filter: brightness(1);
  }
}
@media (max-width: 1024px) {
  .doctor-videos__card {
    max-width: 330px;
  }
}
@media (max-width: 1024px) {
  .doctor-videos {
    padding: 0 0 40px 0;
  }
  .doctor-videos__slider-nav-btn {
    display: none;
  }
  .doctor-videos__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .doctor-videos .doctor-slider-pagination {
    position: static;
    margin-top: 16px;
  }
}

.doctor-overview {
  background: #F2F5FD;
  padding-bottom: 60px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  margin-bottom: 60px;
}
.doctor-overview__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .doctor-overview__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.doctor-overview__title:has(.doctor-overview__dropdown-block) .doctor-overview__dropdown {
  cursor: pointer;
}
.doctor-overview__title:has(.doctor-overview__dropdown-block) .doctor-overview__dropdown:before {
  content: "›";
  position: absolute;
  width: 24px;
  height: 24px;
  right: -32px;
  top: 12px;
  align-items: center;
  justify-content: flex-start;
  display: inline-flex;
  font-size: 40px;
  font-weight: 300;
  color: #FF4500;
  transform-origin: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
@media (max-width: 1024px) {
  .doctor-overview__title:has(.doctor-overview__dropdown-block) .doctor-overview__dropdown:before {
    top: 7px;
  }
}
.doctor-overview__prices-showcase {
  padding-bottom: 60px;
}
.doctor-overview__prices-card {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 24px;
  background: #fff;
}
.doctor-overview__prices-card:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.doctor-overview__prices-card:nth-last-child(-n+2) {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.doctor-overview__prices-card:not(:last-child) {
  border-bottom: 1px solid #EDF0F8;
}
.doctor-overview__prices-card:nth-child(n+6) {
  display: none;
}
.doctor-overview__prices-card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  max-width: 850px;
}
.doctor-overview__prices-card-value {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
}
.doctor-overview__prices-card-discount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.doctor-overview__prices-card-discount svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.doctor-overview__prices-card-discount span {
  color: #FF4500;
}
.doctor-overview__prices-card-total_crossed {
  text-decoration: line-through;
}
.doctor-overview__prices-card-record {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  overflow: hidden;
  width: 0;
  opacity: 0;
  padding: 0;
  transition: all 350ms;
}
@media screen and (max-width: 1024px) {
  .doctor-overview__prices-card-record {
    width: 46px;
    opacity: 1;
  }
}
@media (hover: hover) {
  .doctor-overview__prices-card-record:hover .doctor-overview__prices-card-icon {
    stroke: #FF4500;
  }
}
.doctor-overview__prices-card-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  stroke: #fff;
  transition: all 350ms;
}
.doctor-overview__prices-card-help {
  position: relative;
  cursor: pointer;
}
.doctor-overview__prices-card-help:hover .doctor-overview__prices-card-tooltip {
  opacity: 1;
  pointer-events: auto;
}
.doctor-overview__prices-card-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #F2F5FD;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-width: 200px;
}
@media (hover: hover) {
  .doctor-overview__prices-card:hover .doctor-overview__prices-card-record {
    width: 46px;
    opacity: 1;
  }
}
.doctor-overview__prices-more-btn {
  margin-top: 8px;
}
.doctor-overview__prices-more-btn .doctor-more-button-item {
  background: #fff;
  transition: color 350ms ease-in-out, background 350ms ease-in-out;
}
@media (hover: hover) {
  .doctor-overview__prices-more-btn .doctor-more-button-item:hover {
    color: #fff;
    background: #FF4500;
  }
}
.doctor-overview__prices-content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 350ms;
}
.doctor-overview__prices-content._active {
  visibility: visible;
  height: auto;
  opacity: 1;
}
.doctor-overview__faq {
  padding-bottom: 60px;
}
.doctor-overview__faq-title {
  margin-bottom: 24px;
}
.doctor-overview__faq-accordion {
  gap: 8px;
}
.doctor-overview__faq-accordion-header {
  padding: 24px;
}
.doctor-overview__faq-accordion-header::after {
  width: 46px;
  height: 46px;
  background-image: url(/images/refactor/doctor/doctor-accordion-arrow-down.svg);
  background-size: 44% 44%;
  background-color: #F2F5FD;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  transition: background 100ms ease-in-out;
}
.doctor-overview__faq-accordion-item {
  border-radius: 16px;
  background: #fff;
}
.doctor-overview__faq-accordion-item.accordion__item_active .accordion__header::after {
  background-image: url(/images/refactor/doctor/doctor-accordion-arrow-up.svg);
  background-color: #FF4500;
}
.doctor-overview__faq-accordion-content {
  padding: 0 24px 24px 24px;
}
.doctor-overview__diseases {
  display: flex;
  flex-direction: column;
}
.doctor-overview__diseases-title {
  margin-bottom: 24px;
}
.doctor-overview__diseases-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.doctor-overview__diseases-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  background: #fff;
  border-radius: 32px;
  transition: all 350ms;
}
.doctor-overview__diseases-tag_show_more {
  color: #9999A4;
}
@media (hover: hover) {
  .doctor-overview__diseases-tag:hover {
    color: #FF4500;
  }
}
.doctor-overview__dropdown {
  position: relative;
  display: flex;
  align-items: center;
  color: #FF4500;
  padding-left: 10px;
}
.doctor-overview__dropdown-block {
  position: absolute;
  top: 110%;
  right: -20px;
  display: none;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 16px;
  background: #fff;
  padding: 32px;
  border-radius: 0 0 32px 32px;
  border: 1px solid #EDF0F8;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1);
  z-index: 10;
  transition: all 350ms;
}
.doctor-overview__dropdown-block._active {
  display: grid;
  transform-origin: top;
  animation: dropdown 0.2s ease-out;
}
.doctor-overview__dropdown-block-item {
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 767px) {
  .doctor-overview__dropdown-block-item {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .doctor-overview__dropdown-block {
    max-width: none;
    right: 0;
    padding: 24px;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .doctor-overview__dropdown {
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .doctor-overview {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .doctor-overview__prices-card {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 24px;
  }
  .doctor-overview__prices-card-value {
    margin-left: unset;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    gap: 4px;
  }
  .doctor-overview__prices-card-discount {
    flex-direction: row-reverse;
    width: 100%;
    justify-content: flex-end;
  }
  .doctor-overview__prices-card-discount svg {
    margin-left: auto;
  }
  .doctor-overview__prices-card-total_crossed {
    flex-shrink: 0;
  }
  .doctor-overview__faq {
    padding-bottom: 40px;
  }
  .doctor-overview__faq-title {
    margin-bottom: 16px;
  }
  .doctor-overview__diseases-tag:nth-child(n+6):not(.doctor-overview__diseases-tag_show_more) {
    display: none;
  }
  .doctor-overview__title {
    margin-bottom: 16px;
  }
}
.doctor-overview .doctor-overview__diseases-content {
  display: none;
}
.doctor-overview .doctor-overview__diseases-content._active {
  display: block;
}

.doctor-slider-pagination {
  display: none;
  bottom: 32px !important;
  line-height: 1;
}
@media (max-width: 1024px) {
  .doctor-slider-pagination {
    display: block;
  }
  .doctor-slider-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #FFE4CA;
    opacity: 1;
    margin: 0 9px;
  }
  .doctor-slider-pagination .swiper-pagination-bullet-active {
    background: #FF4500;
  }
}

.doctor-more-button {
  position: relative;
}
.doctor-more-button-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  background: #F2F5FD;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  border-radius: 12px;
  padding: 11px 16px;
  width: 100%;
  color: #FF4500;
}

.doctor-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F2F6FE;
  color: #FF4500;
  border-color: transparent;
  backdrop-filter: blur(16px);
  padding: 10px 20px;
  font-size: 14px;
  min-height: 44px;
  line-height: 18px;
  border-radius: 40px;
}

.doctor-booking-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-bottom: 16px;
}
.doctor-booking-panel__button.primary-button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  min-height: 44px;
}