[data-link] {
  cursor: pointer;
}
.popup .message-success {
  padding: 40px 20px;
  font-weight: bold;
}
.conf .text.gray-text500 p:nth-child(1) {
    color: #667085;
    font-size: 1.125em;
    line-height: 155%;
    margin-bottom: 1em;
}
.conf .text.gray-text500 p:nth-child(2) {
    color: #667085;
    font-size: 1.125em;
    line-height: 155%;
    margin-bottom: 1em;
    margin-bottom: 3em;
}
.message-success {
    text-align: center;
    margin-top: 24px;
    font-size: 18px;
    line-height: 22px;
  }
.burger {
    padding: 0 .875em;
    height: 2.25em;
}
.burger {
    color: #344054;
    -webkit-box-shadow: 0 1px 2px rgba(16,24,40,.05);
    box-shadow: 0 1px 2px rgba(16,24,40,.05);
    border-radius: .5em;
    border: 1px solid #d0d5dd;
}
.burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .225s ease-out;
    -o-transition: .225s ease-out;
    transition: .225s ease-out;
    padding: 0;
    font-weight: 500;
    font-size: 1em;
}
@media screen and (max-width: 992px) {
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        width: 2.25em;
        background-image: url(/local/templates/medcenter/img/burger.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1.25em auto;
        margin-right: 8px;
    }
}

.analyzes__nav li > a + ul {
  display: none;
}
.analyzes__nav li > a.active + ul {
  display: block;
}

.review-preview__title {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}

.review-preview__text form {
  text-align: center;
}
.review-preview__text form input {
  
}

.mobile-menu {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  padding: 20px;
  z-index: 999;
  top: 63px;
}
.mobile-menu.active {
  display: block;
}

.mobile-menu-inner {
  padding: 16px;
  background: #fff;
}

.mobile-menu-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-inner > ul > li {
  border-bottom: 1px solid #e9e9ee;
}

.mobile-menu-inner li {
  position: relative;
}

.mobile-menu-inner a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 14px 0;
  color: #1f1f24;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.mobile-menu-inner a:hover {
  color: #7a5af8;
}

.mobile-menu-inner a svg {
  flex: 0 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.75;
}

.mobile-menu-inner li.parent > a {
  font-weight: 600;
}

.mobile-menu-inner li.parent > ul {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  padding-left: 12px;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu-inner li.parent > ul > li {
  border-top: 1px solid #f3f3f7;
}

.mobile-menu-inner li.parent > ul a {
  min-height: 46px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: #4a4a57;
}

.mobile-menu-inner li.parent > ul a svg {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

/* активный раскрытый пункт */
.mobile-menu-inner li.parent.open > a {
  color: #7a5af8;
}

.mobile-menu-inner li.parent.open > a svg {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-menu-inner li.parent.open > ul {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
}

/* легкий акцент на дочерних пунктах */
.mobile-menu-inner li.parent > ul > li > a {
  position: relative;
  padding-left: 14px;
}

.mobile-menu-inner li.parent > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7d7e2;
  transform: translateY(-50%);
}

/* активный пункт */
.mobile-menu-inner a.active,
.mobile-menu-inner li.current > a,
.mobile-menu-inner li.active > a {
  color: #7a5af8;
}

/* приятнее на маленьких экранах */
@media (max-width: 767px) {
  .mobile-menu-inner {
    padding: 12px 16px 20px;
  }

  .mobile-menu-inner a {
    font-size: 15px;
    min-height: 50px;
  }

  .mobile-menu-inner li.parent > ul a {
    font-size: 14px;
    min-height: 42px;
  }
}

.review-preview__text form.search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.review-preview__text form.search-form .popup__input {
  flex: 1 1 auto;
  width: 100%;
  height: 56px;
  padding: 0 22px;
  border: 1px solid #d8d8e2;
  border-radius: 40px;
  background: #fff;
  font-size: 16px;
  color: #2d2d35;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-preview__text form.search-form .popup__input::placeholder {
  color: #a3a3b2;
}

.review-preview__text form.search-form .popup__input:focus {
  border-color: #8b6df6;
  box-shadow: 0 0 0 4px rgba(139, 109, 246, 0.12);
}

.review-preview__text form.search-form .popup__submit {
  flex: 0 0 180px;
  height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, #9a7cff 0%, #7f67f8 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.review-preview__text form.search-form .popup__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(127, 103, 248, 0.28);
}

.review-preview__text form.search-form .popup__submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .review-preview__text form.search-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .review-preview__text form.search-form .popup__input {
    height: 52px;
    font-size: 15px;
  }

  .review-preview__text form.search-form .popup__submit {
    flex: none;
    width: 100%;
    height: 52px;
    font-size: 15px;
  }
}

/*@media only screen and (max-width: 767.98px) {
    .contacts__items {
        position: static;
        height: auto;
        width: auto;
    }
}*/

/*.contacts-map-transparent-weaver {
  display: none;
}
@media (max-width: 768px) {
  .contacts__map {
    position: relative;
  }
  .contacts-map-transparent-weaver {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
  }
}*/

.news .container {
  overflow: hidden;
}

.header__nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.specialist-preview__name {
  min-height: 50px;
}

.breadcrumbs + .gallery {
  padding: 2px 0 70px;
}
.stocks__items-inner-section {
  grid-template-columns: repeat(3, 1fr);
}
.burger {
    display: none;
}
@media (max-width: 768px) {
  .burger {
    display: none!important;
  }
}

.contacts__wrapper {
  height: 400px;
  min-height: 400px;
}
@media (max-width: 768px) {
  .contacts__wrapper {
    height: auto;
    min-height: auto;
  }
}

.review-preview__rating i.gray {
  background-image: url(../img/icon-star-gray.svg);
}

.header__nav li.active > a {
  color: var(--color-primary);
}

.analyzes__table td a {
  color: #0a0a0a;
  text-decoration: none;
}
a.nav__item {
  text-decoration: none;
}

@media (max-width: 768px) {
  .analyzes__table td:nth-child(2) {
    white-space: nowrap;
  }
}

@media only screen and (max-width: 767.98px) {
    .direction__tags a {
        font-size: 16px;
        padding: 0 12px 4px;
        height: 34px;
    }
}

.doctors_selects .dselect__items {
    max-height: 258px;
    overflow-y: auto;
    overflow-x: hidden;
}

.table-price td:last-child {
  white-space: nowrap;
}
.table-price td:first-child {
  width: 85%;
}

.analyzes__table table td:first-child {
  width: 85%;
}

.work-card__title a {
  color: #222;
  text-decoration: none;
}
.work-card__prop-desc--purple a {
  color: #947aff;
  text-decoration: none;
}

.popup__agree input {
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  margin-left: 7px;
  margin-top: 7px;
}

.proof__agree input {
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  margin-left: 7px;
  margin-top: 7px;
}
.proof__field {
  position: relative;
}
.proof__field img.calendar-icon {
  position: absolute;
  top: 39px;
  right: 18px;
}
.error-message {
  color: #e73535;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 12px;
}
.alert.alert-danger {
  color: #e73535;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 12px;
}

.calendar__time.disabled {
  background-color: #f3f3f3;
  color: #cdcdcd;
  border-color: #e5e5e5;
  cursor: not-allowed!important;
}

.proof__form .message-success {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.2;
  color: #1f1f1f;
  text-align: center;
  margin-bottom: 12px;
}

.work-card__prop-desc--purple {
  color: var(--color-primary);
}
.work-card__prop-desc--purple a {
  color: var(--color-primary);
}
.works-filter__item label {
  border-color: var(--color-primary);
}
.works-filter__item input:checked~label {
  color: var(--color-primary);
}
.button-more {
  border-color: var(--color-primary);
}

.dselect__item strong {
  white-space: nowrap;
}

.dselect[data-select-child] .dselect__item {
    min-height: 43px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    line-height: 1.35;
}

@media only screen and (max-width: 767.98px) {
    .mob-menu__links {
      padding-top: 23px;
        margin-top: 25px;
    }
}
@media only screen and (max-width: 767.98px) {
    .mob-menu__phone {
        padding-top: 25px;
    }
}

.footer__copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: all 0.2s ease-out;
}

.description__wrapper {
  overflow: hidden;
}

/*.header__logo svg {
  width: unset;
  height: unset;
}
.header__logo svg path:nth-child(1) {
  fill: transparent;
}
.header__logo svg path:nth-child(2) {
  fill: var(--color-primary);
}*/

.main__image {
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767.98px) {
    .main__image {
        background-size: cover;
    }
}

.header__logo img {
  width: 42px;
  height: 42px;
}

@media only screen and (max-width: 767.98px) {
    .direction__tags a {
        font-size: 16px;
        padding: 0 9px 4px;
        height: 34px;
    }
}

@media only screen and (max-width: 367.98px) {
    .direction__tags a {
        font-size: 15px;
        padding: 0 6px 4px;
        height: 34px;
    }
}

body.eyed .header {
  padding-top: 0;
}
body.eyed .header__nav-fixed {
  display: none;
}

@media only screen and (max-width: 767.98px) {
    .main__slide {
        padding: 35px 202px 60px 16px;
        min-height: 260px;
        background-position: center center;
        background-size: cover;
    }
}

@media only screen and (max-width: 767.98px) {
    .main__column-left.main__column-left-full-size .main__slide {
        padding: 35px 202px 60px 16px;
        min-height: 260px;
        background-position: 17% center;
        background-size: cover;
    }
}

.header__nav {
  position: relative;
  top: 7px;
}
.header__nav.header__nav-fixed {
  position: fixed;
  top: 0;
  z-index: 100;
}

.header {
  padding: 25px 0 6px;
}

@media only screen and (max-width: 767.98px) {
  .header {
    padding: 11px 0 6px;
  }
  .header__nav.mob-menu {
    display: none;
  }
  ._open-burger-menu .header__nav.mob-menu {
    display: block;
  }
  .header__nav {
    top: -15px;
    padding-top: 32px;
  }
}