@charset "UTF-8";
:root {
  --font-family: "Arial", sans-serif;
  --second-family: "Nunito", sans-serif;
  --color-theme-main: #0677ec;
  --color-theme-main-light: #e7f2fe;
  --color-theme-main-light-rgba: 6, 119, 236;
  --online-record-size: calc(1168px + 40px + 40px);
  --online-record-color: #343d42;
  --online-record-bg-color: #ffffff;
  --green: #42a53b;
  --blue: #0677ec;
  --yellow: #ffd601;
  --magenta: #e4097f;
  --violet: #34358c;
  --violet-02: rgba(52, 53, 140, 0.2);
  --white: #fff;
  --white-02: rgba(255, 255, 255, 0.2);
  --dark: #343d42;
  --dark-07: rgba(52, 61, 66, 0.7);
  --grey: #869aa5;
  --light: #e3eef4;
  --content: rgba(52, 61, 66, 0.7);
  --orange: #f07c00;
}

.fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  min-inline-size: auto;
}

.modal-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

.container-small {
  max-width: 928px;
  width: 100%;
  margin: 0 auto;
}

.appointment-form__level {
  margin-bottom: 24px;
}
.appointment-form__level:last-of-type {
  margin-bottom: 0;
}
.appointment-form__format-label {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff !important;
  background-color: #42a53b;
  border-radius: 8px;
  padding: 20px 20px;
  height: 64px;
  line-height: 1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  min-width: 144px;
}
.appointment-form__format-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: circle(0 at 0 100%);
  clip-path: circle(0 at 0 100%);
  -webkit-transition: -webkit-clip-path 0.65s ease;
  transition: -webkit-clip-path 0.65s ease;
  transition: clip-path 0.65s ease, -webkit-clip-path 0.65s ease;
}
.appointment-form__format-label span {
  color: inherit;
}
.appointment-form__format-label:hover::before {
  -webkit-clip-path: circle(150% at 0 100%);
  clip-path: circle(150% at 0 100%);
}
.appointment-form__format-item input[type=radio]:checked + .appointment-form__format-label {
  background-color: #e4097f;
}
.appointment-form__title {
  margin: 0;
  display: block;
  margin-top: 0;
  margin-bottom: 27px;
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #343d42;
}
.appointment-form__date-select {
  max-width: 100%;
  width: 100%;
  display: block;
  margin-top: 5px;
}
.appointment-form__top {
  max-width: 100%;
  width: 100%;
}
.appointment-form__top-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
}
.appointment-form .months-slider {
  max-width: 420px;
  margin-left: auto;
}
.appointment-form__date-select {
  max-width: 100%;
  width: 100%;
  margin-bottom: -15px;
}
.appointment-form__body {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}
.appointment-form .calendar {
  width: 100%;
  max-width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .appointment-form__format-options {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .appointment-form__format-item {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .appointment-form__format-label {
    height: 50px;
    padding: 12px 20px;
    width: 100%;
    max-width: 100%;
  }
  .appointment-form .months-slider {
    max-width: 350px;
    margin: 0 auto;
    margin-top: -16px;
  }
  .appointment-form .switch-buttons-group {
    display: grid;
    gap: 8px;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
  }
  .appointment-form .switch-buttons-group .switch-button {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .appointment-form .switch-buttons-group .switch-button__label {
    max-width: 100%;
    width: 100%;
  }
  .appointment-form .appointment-form__format-options {
    grid-template-columns: repeat(1, 1fr);
  }
}

.custom-select {
  position: relative;
  width: 100%;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(52, 61, 66, 0.7);
}
.custom-select span {
  font-size: inherit;
}

.custom-select__label {
  display: block;
  font-size: 12px !important;
  line-height: 2.4em;
  color: #34358c;
  background-color: #fff;
  padding: 0 8px;
  position: absolute;
  top: 7px;
  left: 16px;
  -webkit-transform: translateY(-21px);
  transform: translateY(-21px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-select--has-value .custom-select__label {
  opacity: 1;
}

.custom-select--has-value .custom-select__value {
  color: #000000;
}

.custom-select:focus .custom-select__trigger {
  outline: 1px solid #34358c;
}

.custom-select__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5em 1em;
  border: 1px solid rgba(52, 53, 140, 0.2);
  border-radius: 8px;
  background: #fff;
  min-height: 64px;
}

.custom-select__icon {
  margin-left: 0.5em;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17 1.33331L9 9.33331L1 1.33331' stroke='%2334358C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 28px;
  height: 11px;
}

.custom-select--open .custom-select__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 0.25em);
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  -webkit-transition: max-height 0.2s ease;
  transition: max-height 0.2s ease;
  z-index: 10;
  opacity: 0;
  font-size: 18px;
}

.custom-select--open .custom-select__options {
  max-height: 200px; /* или auto, если число опций небольшое */
  opacity: 1;
  overflow-y: auto;
}

.custom-select__option {
  padding: 0.5em 1em;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.custom-select__option:hover {
  background: #f0f0f0;
}

.custom-select__option--selected {
  font-weight: bold;
}

.custom-select__input {
  display: none;
}

.custom-select__value {
  width: 100%;
  max-width: 100%;
}

.dialog-box {
  position: fixed;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  inset: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(52, 61, 66, 0.2);
  backdrop-filter: blur(8px); /* добавляем размытие */
  -webkit-backdrop-filter: blur(8px); /* для Safari */
}
.dialog-box__wrapper {
  position: relative;
  margin: 40px;
  width: 100%;
  max-width: 675px;
}
.dialog-box__body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 26px 32px 16px;
  background: #ffffff;
  border-radius: 16px;
  max-height: 90svh;
}
.dialog-box__body.has-scroll {
  padding-bottom: 0;
  border-radius: 16px 16px 0 0;
}
.dialog-box .cls-list {
  max-height: 60svh;
  overflow-y: auto;
}
.dialog-box__title {
  margin-top: 0;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #343d42;
}
.dialog-box__text {
  margin: 0;
  margin-bottom: 16px;
  display: block;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--content);
}
.dialog-box__close-button {
  position: absolute;
  top: -32px;
  right: -32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--online-record-color);
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
}
.dialog-box__close-button::before {
  content: "";
  background-image: url("../svg/close-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.dialog-box__close-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  position: relative;
}
.dialog-box__close-icon svg {
  width: 100%;
  height: auto;
}
.dialog-box .cls-list {
  margin-inline: -32px;
  padding-bottom: 32px;
}
.dialog-box .cls-list li:last-of-type {
  border-bottom: 1px solid #e3eef4;
}
.dialog-box.active {
  pointer-events: initial;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) {
  .dialog-box__body {
    padding: 20px 14px 40px;
  }
  .dialog-box__wrapper {
    margin: 20px 20px;
    width: 100%;
    max-width: 100%;
  }
  .dialog-box .cls-list {
    margin-inline: -14px;
  }
  .dialog-box__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .dialog-box__close-button {
    width: 50px;
    height: 50px;
    top: -22px;
    right: -10px;
  }
  .dialog-box__close-icon {
    width: 20px;
  }
  .dialog-box__body {
    max-height: 90svh;
  }
}

.custom-list-with-search {
  position: relative;
  max-width: 100%;
  width: 100%;
  font-family: var(--second-family);
}

.cls-search {
  width: 100%;
  padding: 15px 22px;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 40px;
  font-size: 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  height: 64px;
  padding-right: 46px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cls-search input {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
  font-size: 20px;
  color: var(--dark);
}
.cls-search input ::-webkit-input-placeholder {
  font-size: 20px;
}
.cls-search input ::-moz-placeholder {
  font-size: 20px;
}
.cls-search input :-ms-input-placeholder {
  font-size: 20px;
}
.cls-search input ::-ms-input-placeholder {
  font-size: 20px;
}
.cls-search input ::placeholder {
  font-size: 20px;
}
.cls-search:after {
  content: "";
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='7.5' cy='7.5' r='6.5' stroke='%23343D42' stroke-width='2' /%3e%3cpath d='M15 15L12.5 12.5' stroke='%23343D42' stroke-width='2' stroke-linecap='round' /%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 21px;
}

.cls-search:has(input:focus) {
  border: 1px solid #34358c;
}

.cls-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  border-top: 1px solid #e3eef4;
  border-radius: 0;
}

.cls-list li {
  padding: 11px 32px;
  cursor: pointer;
  border-bottom: 1px solid #e3eef4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(52, 61, 66, 0.7);
}

.cls-list li::before {
  display: none;
}

.cls-list li:last-child {
  border-bottom: none;
}

.cls-list li:hover {
  background: #f5f5f5;
}

.cls-list li.selected {
  background: #e1f5fe;
}

@media (max-width: 767px) {
  .cls-search {
    margin-bottom: 24px;
  }
  .cls-search:after {
    right: 16px;
  }
  .cls-search {
    padding: 15px 22px;
    margin-bottom: 20px;
    font-size: 20px;
    height: 60px;
    padding-right: 40px;
  }
  .cls-list li {
    font-size: 18px;
    padding: 13px 14px !important;
  }
}
.calendar {
  padding-top: 10px;
  max-width: 100%;
  width: 100%;
}
.calendar__slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: block;
}
.calendar__slide {
  width: 100%;
}
.calendar__table {
  width: 100%;
  max-width: 100%;
}
.calendar table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: auto;
  margin-bottom: 28px;
}
.calendar th {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #343d42;
  padding: 12px 16px;
  background: #ffd601;
  border-right: 1px solid #ffffff;
  text-align: left;
  text-transform: uppercase;
}
.calendar th:first-child {
  border-left: none;
  border-radius: 8px 0 0 0;
}
.calendar th:last-child {
  border: none;
  border-radius: 0 8px 0 0;
}
.calendar col {
  background: #ffffff;
  color: rgba(52, 61, 66, 0.7);
}
.calendar td {
  border: 1px solid #d6d7e8;
  padding: 8px 16px 11px;
  width: 14.2857142857%;
  font-family: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.calendar td span {
  display: block;
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  text-align: right;
  color: #343d42;
  font-family: inherit;
}
.calendar td small {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  margin: 0;
}
.calendar .past {
  opacity: 0.4;
  pointer-events: none;
}
.calendar .open,
.calendar td.open {
  background-color: #42a53b !important;
  color: #e3eef4 !important;
  font-family: inherit;
  cursor: pointer;
}
.calendar .open span,
.calendar td.open span {
  color: inherit;
  font-family: inherit;
}
.calendar .open:empty,
.calendar td.open:empty {
  background-color: #ffffff !important;
  cursor: initial;
}
.calendar .open {
  position: relative;
}
.calendar .open::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: circle(0 at 0 100%);
  clip-path: circle(0 at 0 100%);
  -webkit-transition: -webkit-clip-path 0.65s ease;
  transition: -webkit-clip-path 0.65s ease;
  transition: clip-path 0.65s ease;
  transition: clip-path 0.65s ease, -webkit-clip-path 0.65s ease;
}
.calendar .open:hover::before {
  -webkit-clip-path: circle(150% at 0 100%);
  clip-path: circle(150% at 0 100%);
}
.calendar td[value=choose] {
  background: #e4097f !important;
  border: 1px solid #d6d7e8;
  color: #ffffff;
}
.calendar td[value=choose] span {
  color: inherit;
}
.calendar__wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  padding: 0;
}
.calendar .empty {
  border: none;
}
@media (max-width: 768px) {
  .calendar__wrap {
    position: initial;
  }
  .calendar__button {
    top: 0;
    height: 32px;
    width: 32px;
  }
  .calendar__wrap {
    padding: 0;
  }
  .calendar td,
  .calendar th {
    padding: 0.5em;
    width: 44px;
    height: 44px;
    font-size: 16px;
    text-align: center;
  }
  .calendar td small {
    display: none;
  }
  .calendar td span {
    text-align: center;
    line-height: 1;
    font-size: 20px;
  }
}
@media (max-width: 425px) {
  .calendar__button {
    top: 16px;
  }
}

.months-slider {
  position: relative;
  margin-right: -6px;
}
.months-slider .swiper-slide {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  color: var(--dark);
  padding: 14px 60px;
}
.months-slider__button {
  position: absolute;
  width: 48px;
  height: 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.15);
  top: 50%;
}
.months-slider__button::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L9 9L1 17' stroke='%23343D42' stroke-width='2' /%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 11px;
  height: 20px;
  background-position: center;
  background-size: contain;
}
.months-slider .swiper-button-next,
.months-slider .swiper-rtl .swiper-button-prev {
  right: 6px;
  left: auto;
}
.months-slider .swiper-button-prev,
.months-slider .swiper-rtl .swiper-button-next {
  left: 6px;
  right: auto;
}
.months-slider .swiper-button-prev::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .months-slider .swiper-slide {
    font-size: 25px;
    padding: 16px 55px;
  }
}

.reception-time .reception-time__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  gap: 0;
  margin-right: -8px;
  margin-bottom: -8px;
}
.reception-time .reception-time__item {
  max-width: calc(16.6666666667% - 8px);
  width: 100%;
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #343d42;
  background-color: #fff;
  margin: 0;
  padding: initial;
  text-decoration: none;
  font-size: 16px;
  overflow: hidden;
  margin-bottom: 8px;
  margin-right: 8px;
}
.reception-time .reception-time__item::before {
  display: none;
}
.reception-time--mod .reception-time__item {
  max-width: 80px;
}
.reception-time label {
  color: inherit;
  font-family: inherit;
  padding: 12px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: inset 0 0 0 1px #d6d7e8;
  box-shadow: inset 0 0 0 1px #d6d7e8;
  border-radius: 8px;
  font-weight: 700;
}
.reception-time--mod label {
  font-size: 20px;
  padding: 10px 15px;
}
.reception-time input:not([disabled]) + label {
  background-color: #42a53b !important;
  color: #e3eef4 !important;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.reception-time input:not([disabled]) + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: circle(0 at 0 100%);
  clip-path: circle(0 at 0 100%);
  -webkit-transition: -webkit-clip-path 0.65s ease;
  transition: -webkit-clip-path 0.65s ease;
  transition: clip-path 0.65s ease;
  transition: clip-path 0.65s ease, -webkit-clip-path 0.65s ease;
}
.reception-time input:not([disabled]) + label:hover::before {
  -webkit-clip-path: circle(150% at 0 100%);
  clip-path: circle(150% at 0 100%);
}
.reception-time__button-show {
  padding: 12px 10px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border: none;
  background-color: transparent;
  border-radius: 8px;
}
.reception-time__button-show::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #42a53b;
  opacity: 0.1;
  border-radius: 8px;
}
.reception-time__button-show::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='19' height='10' viewBox='0 0 19 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.5 1L9.5 9L17.5 1' stroke='%2342A53B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 10px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.reception-time .isHide {
  display: none;
}
.reception-time.is-active .isHide {
  display: block;
}
.reception-time.is-active .reception-time__button-show::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.reception-time input:checked + label {
  background-color: #e4097f !important;
  color: #e3eef4 !important;
  font-family: inherit;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .reception-time .reception-time__item {
    max-width: calc(25% - 8px);
  }
  .reception-time--mod .reception-time__item {
    max-width: calc(33.3333333333% - 8px) !important;
  }
  .reception-time label {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .reception-time .reception-time__item {
    max-width: calc(50% - 8px);
  }
  .reception-time label {
    padding: 8px 10px;
  }
}

.text-field {
  margin: 0;
  padding: 0;
}

.simple-form-area__grid {
  display: grid;
  gap: 24px 32px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
}
.simple-form-area__item--mod {
  grid-column: span 2;
}
@media (max-width: 1200px) {
  .simple-form-area__grid {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .simple-form-area__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .simple-form-area__item--mod {
    grid-column: initial;
  }
}

.online-form-footer__grid {
  display: grid;
  gap: 24px 32px;
  grid-template-columns: 6fr 2fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.online-form-footer .btn {
  background-color: #0677ec;
  margin-left: auto;
  max-width: 100%;
}
.online-form-footer .checkbox {
  padding: 0;
  padding-left: 40px;
}
.online-form-footer .checkbox__label {
  max-width: 100%;
}
.online-form-footer .checkbox__label::before {
  border: 2px solid #0677ec;
}
.online-form-footer .checkbox input:checked + .checkbox__label::before {
  background-color: #0677ec;
}
@media (max-width: 767px) {
  .online-form-footer__grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .online-form-footer__col .btn {
    max-width: 100%;
    width: 100%;
  }
}

.selected-specialist__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.selected-specialist__photo {
  width: 128px;
  height: 128px;
  border-radius: 16px;
  overflow: hidden;
}
.selected-specialist__photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.selected-specialist__name {
  display: block;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--dark);
}
.selected-specialist__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--dark);
}
.selected-specialist__text span {
  font-weight: 700;
  color: var(--dark);
}
.selected-specialist__right {
  display: grid;
  gap: 14px;
  grid-template-columns: 90px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
}
.selected-specialist__label {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px !important;
  line-height: 133%;
  text-transform: uppercase;
  text-align: right;
  color: var(--dark);
  margin: 0;
  opacity: 0.5;
}
.selected-specialist__price {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  text-align: right;
  color: var(--dark);
}
.selected-specialist__price span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  text-align: right;
  color: var(--dark);
}
.selected-specialist__btn-reset {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border: none;
  background-color: var(--magenta);
  border-radius: 8px;
  padding: 8px;
  width: 32px;
  height: 32px;
  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;
  z-index: 999;
}
.selected-specialist__btn-reset svg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .selected-specialist__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 11px;
  }
  .selected-specialist__photo {
    width: 120px;
    height: 120px;
  }
  .selected-specialist__right {
    gap: 11px;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
  .selected-specialist__label {
    text-align: left;
  }
  .selected-specialist__price {
    font-size: 30px;
    text-align: left;
    line-height: 1;
  }
  .selected-specialist__price span {
    line-height: 1;
  }
  .selected-specialist__btn-reset {
    bottom: 24px;
  }
}
@media (max-width: 450px) {
  .selected-specialist__name {
    max-width: 225px;
  }
}

.custom-select__trigger:has(.selected-specialist) {
  padding: 24px;
  padding-right: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid var(--violet);
}

.custom-calendar__top-grid {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.custom-calendar__title {
  font-size: 28px;
}
@media (max-width: 767px) {
  .custom-calendar__top-grid {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.switch-button {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.switch-button__label {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff !important;
  background-color: #42a53b;
  border-radius: 8px;
  padding: 20px 20px;
  height: 64px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  min-width: 144px;
}
.switch-button__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: circle(0 at 0 100%);
  clip-path: circle(0 at 0 100%);
  -webkit-transition: -webkit-clip-path 0.65s ease;
  transition: -webkit-clip-path 0.65s ease;
  transition: clip-path 0.65s ease, -webkit-clip-path 0.65s ease;
}
.switch-button__label span {
  color: inherit;
}
.switch-button__label:hover::before {
  -webkit-clip-path: circle(150% at 0 100%);
  clip-path: circle(150% at 0 100%);
}
input[type=radio]:checked + .switch-button__label {
  background-color: #e4097f;
}
@media (max-width: 767px) {
  .switch-button__label {
    padding: 10px 20px;
    height: 50px;
  }
}

.switch-buttons-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-right: -8px;
  margin-bottom: -8px;
}
.switch-buttons-group .switch-button {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-right: 8px;
  margin-bottom: 8px;
}

.specialist-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 448px;
  max-height: 448px;
}
.specialist-photo__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.specialist-photo__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.specialist-photo .play-button-cust {
  position: absolute;
  bottom: 0;
  right: 0;
}

.mega-button {
  max-width: 100%;
  width: 100%;
  height: 64px;
  text-align: center;
  padding: 20px 20px;
  line-height: 1em;
  background-color: #0677ec;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  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;
}
.mega-button span {
  color: #fff;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 1;
  position: relative;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
}
.mega-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: circle(0 at 0 100%);
  clip-path: circle(0 at 0 100%);
  -webkit-transition: -webkit-clip-path 0.65s ease;
  transition: -webkit-clip-path 0.65s ease;
  transition: clip-path 0.65s ease;
  transition: clip-path 0.65s ease, -webkit-clip-path 0.65s ease;
}
.mega-button:hover::before {
  -webkit-clip-path: circle(150% at 0 100%);
  clip-path: circle(150% at 0 100%);
}
@media (max-width: 767px) {
  .mega-button {
    height: 60px;
  }
  .mega-button span {
    font-size: 14px;
  }
}

.play-button-cust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 16px 0 16px 0;
  background-color: #0677ec;
  padding: 15.21px 20px;
  color: #ffffff !important;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.play-button-cust__label {
  color: inherit;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: width 0.3s, opacity 0.3s;
  transition: width 0.3s, opacity 0.3s;
  margin-right: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
}
.play-button-cust__icon {
  width: 24px;
  height: 24px;
  color: inherit;
}
.play-button-cust__icon svg {
  width: 100%;
  height: auto;
}
.play-button-cust:hover .play-button-cust__label {
  width: 98px;
  opacity: 1;
  visibility: initial;
  margin-right: 16px;
}

.personal-card-announcement {
  padding: 32px 0;
}
.personal-card-announcement__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  background: var(--white);
  text-decoration: none;
  max-width: 100%;
  width: 100%;
}
.personal-card-announcement__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 328px;
}
.personal-card-announcement__photo img {
  display: block;
  width: 100%;
  height: 100%;
}
.personal-card-announcement__bottom {
  padding: 25px 32px;
  background-color: transparent;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.personal-card-announcement__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  z-index: -1;
}
.personal-card-announcement__name {
  display: block;
  font-weight: 800;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.personal-card-announcement__lead {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--grey);
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.personal-card-announcement__experience {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}
.personal-card-announcement__link:hover {
  -webkit-box-shadow: 0 8px 32px 0 rgba(52, 61, 66, 0.2);
  box-shadow: 0 8px 32px 0 rgba(52, 61, 66, 0.2);
}
.personal-card-announcement__link:hover .personal-card-announcement__bottom::before {
  top: -30px;
}
.personal-card-announcement__link:hover .personal-card-announcement__name {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  color: var(--blue);
}
.personal-card-announcement__link:hover .personal-card-announcement__lead {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.document-card {
  padding: 32px 0;
}
.document-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  background: var(--white);
  text-decoration: none;
  max-width: 100%;
  width: 100%;
}
.document-card__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 328px;
}
.document-card__photo img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.document-card__bottom {
  padding: 25px 32px;
  background-color: transparent;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.document-card__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  z-index: -1;
  border-top: 1px solid rgba(227, 238, 244, 0.7);
}
.document-card__title {
  display: block;
  font-weight: 800;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.document-card__lead {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--grey);
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.document-card__experience {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}
.document-card__link:hover {
  -webkit-box-shadow: 0 8px 32px 0 rgba(52, 61, 66, 0.2);
  box-shadow: 0 8px 32px 0 rgba(52, 61, 66, 0.2);
}
.document-card__link:hover .document-card__bottom::before {
  top: -30px;
}
.document-card__link:hover .document-card__title {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  color: var(--blue);
}
.document-card__link:hover .document-card__lead {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.review-card-announce {
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  background: #f1f8fb;
  padding: 24px 22px 16px;
}
.review-card-announce__top {
  margin-bottom: 10px;
}
.review-card-announce__grid {
  display: grid;
  gap: 0 32px;
  grid-template-columns: 64px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.review-card-announce__author {
  margin-top: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--dark);
}
.review-card-announce__date {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 200%;
  color: var(--grey);
  margin-top: -4px;
  margin-bottom: 8px;
}
.review-card-announce__initials {
  width: 64px;
  height: 64px;
  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;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: var(--blue);
  font-family: var(--font-family);
  position: relative;
  z-index: 2;
}
.review-card-announce__initials::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../svg/review-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.review-card-announce__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--content);
  margin: 0;
  margin-bottom: 65px;
}
.review-card-announce__link {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--blue);
}
@media (max-width: 767px) {
  .review-card-announce__text {
    margin-bottom: 32px;
  }
  .review-card-announce__grid {
    gap: 12px;
  }
  .review-card-announce__author {
    font-size: 18px;
    padding: 2px;
  }
  .review-card-announce__date {
    margin-bottom: 3px;
  }
}

.review-stars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
}

.review-stars__item {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath opacity='0.3' d='M8 0L9.88854 6.11146H16L11.0557 9.88854L12.9443 16L8 12.2229L3.05573 16L4.94427 9.88854L0 6.11146H6.11146L8 0Z' fill='%230677EC' /%3e%3c/svg%3e");
}
.review-stars[data-rating="1"] .review-stars__item:nth-child(-n+1) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 0L9.88854 6.11146H16L11.0557 9.88854L12.9443 16L8 12.2229L3.05573 16L4.94427 9.88854L0 6.11146H6.11146L8 0Z' fill='%23E4097F' /%3e%3c/svg%3e");
}
.review-stars[data-rating="2"] .review-stars__item:nth-child(-n+2) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 0L9.88854 6.11146H16L11.0557 9.88854L12.9443 16L8 12.2229L3.05573 16L4.94427 9.88854L0 6.11146H6.11146L8 0Z' fill='%23E4097F' /%3e%3c/svg%3e");
}
.review-stars[data-rating="3"] .review-stars__item:nth-child(-n+3) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 0L9.88854 6.11146H16L11.0557 9.88854L12.9443 16L8 12.2229L3.05573 16L4.94427 9.88854L0 6.11146H6.11146L8 0Z' fill='%23E4097F' /%3e%3c/svg%3e");
}
.review-stars[data-rating="4"] .review-stars__item:nth-child(-n+4) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 0L9.88854 6.11146H16L11.0557 9.88854L12.9443 16L8 12.2229L3.05573 16L4.94427 9.88854L0 6.11146H6.11146L8 0Z' fill='%23E4097F' /%3e%3c/svg%3e");
}
.review-stars[data-rating="5"] .review-stars__item:nth-child(-n+5) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 0L9.88854 6.11146H16L11.0557 9.88854L12.9443 16L8 12.2229L3.05573 16L4.94427 9.88854L0 6.11146H6.11146L8 0Z' fill='%23E4097F' /%3e%3c/svg%3e");
}

.address-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--blue);
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Nunito", sans-serif;
}
.address-custom::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 28px;
  margin-right: 12px;
  background-image: url(../svg/icon-geo-mark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.address-custom + * {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .address-custom {
    padding-right: 36px;
    font-size: 16px;
  }
  .address-custom::before {
    margin-right: 8px;
  }
}

.title {
  margin-top: 0;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 44px;
  line-height: 109%;
  color: var(--dark);
  margin-bottom: 1rem;
}

.decorate-select {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--dark-07);
  background: var(--white);
  border: 1px solid var(--violet-02);
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  padding: 16px 24px;
  height: 64px;
  position: relative;
  margin-bottom: 24px;
}
.decorate-select::after {
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(/local/templates/main/img/icon1.svg);
  width: 18px;
  height: 11px;
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -6px;
}

.big-button {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  text-decoration: none;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--white) !important;
  background-color: var(--green);
  border-radius: 8px;
  padding: 20px 30px;
  height: 64px;
  line-height: 1;
}
.big-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: circle(0 at 0 100%);
  clip-path: circle(0 at 0 100%);
  -webkit-transition: -webkit-clip-path 0.65s ease;
  transition: -webkit-clip-path 0.65s ease;
  transition: clip-path 0.65s ease, -webkit-clip-path 0.65s ease;
}
.big-button span {
  color: inherit;
}
.big-button:hover::before {
  -webkit-clip-path: circle(150% at 0 100%);
  clip-path: circle(150% at 0 100%);
}

.special-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.special-price__label {
  max-width: 90px;
  margin-right: 5px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
}
.special-price__details {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--dark);
}
@media (max-width: 767px) {
  .special-price__label {
    display: inline-block;
  }
}

.mini-slider-dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.mini-slider-dates__viewport {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}
.mini-slider-dates__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 64px;
  --font-family: "Nunito", sans-serif;
}
.mini-slider-dates__item--weekend .mini-slider-dates__weekday {
  color: #e4097f;
}
.mini-slider-dates__item--selected {
  border-color: #e4097f;
  background-color: rgba(228, 9, 127, 0.08);
}
.mini-slider-dates__item--selected .mini-slider-dates__label, .mini-slider-dates__item--selected .mini-slider-dates__day, .mini-slider-dates__item--selected .mini-slider-dates__weekday {
  color: #e4097f;
}
.mini-slider-dates__label {
  display: block;
  padding: 0 8px;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: -12px;
  left: 10px;
  z-index: 2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.mini-slider-dates__label::before {
  content: "";
  background-color: var(--white);
  position: absolute;
  bottom: 6px;
  width: 100%;
  height: 50%;
  left: 0;
  z-index: -1;
}
.mini-slider-dates__label:empty {
  display: none;
}
.mini-slider-dates__day {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: #000;
  margin-bottom: 6px;
}
.mini-slider-dates__weekday {
  margin-top: 2px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000;
  -ms-flex-item-align: start;
  align-self: flex-start;
  opacity: 0.9;
}
.mini-slider-dates .swiper {
  margin-inline: 64px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.mini-slider-dates .swiper-slide {
  width: 94px !important;
}
.mini-slider-dates .swiper-button-next,
.mini-slider-dates .swiper-button-prev {
  position: absolute;
  width: 48px;
  height: 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.15);
  top: auto;
  -webkit-transform: none;
  transform: none;
  margin: 0;
}
.mini-slider-dates .swiper-button-next::after,
.mini-slider-dates .swiper-button-prev::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L9 9L1 17' stroke='%23343D42' stroke-width='2' /%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 11px;
  height: 20px;
  background-position: center;
  background-size: contain;
}
.mini-slider-dates .swiper-button-prev::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 1379px) {
  .mini-slider-dates .swiper-button-next,
  .mini-slider-dates .swiper-button-prev {
    opacity: 0;
    visibility: hidden;
  }
  .mini-slider-dates .swiper {
    margin-inline: 0;
  }
  .mini-slider-dates .swiper-slide {
    width: 90px !important;
  }
  .mini-slider-dates__item {
    padding: 8px 12px;
    min-height: 60px;
  }
  .mini-slider-dates__day {
    margin-bottom: 4px;
  }
}

.mobile-accordion__button {
  display: none;
}
@media (max-width: 767px) {
  .mobile-accordion {
    position: relative;
  }
  .mobile-accordion:last-of-type {
    border-bottom: none;
  }
  .mobile-accordion__button {
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
    padding: 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    height: 40px;
  }
  .mobile-accordion__icon {
    width: 18px;
    height: auto;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .mobile-accordion .--hide {
    display: none;
  }
  .mobile-accordion.isActive .--hide {
    display: block;
  }
  .mobile-accordion.isActive .mobile-accordion__icon {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

.reviews-logotypes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.reviews-logotypes__link {
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 80px;
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 16px 32px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.reviews-logotypes__link img {
  display: block;
}
.reviews-logotypes__link:hover {
  background-color: rgba(130, 187, 245, 0.2);
  border: 1px solid var(--blue);
}
@media (max-width: 767px) {
  .reviews-logotypes__link {
    padding: 10px 20px;
    height: 60px;
  }
}
@media (max-width: 500px) {
  .reviews-logotypes__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}

.doctor-appointment-item {
  padding: 15px 34px !important;
}
.doctor-appointment-item__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.doctor-appointment-item__photo {
  width: 104px;
  height: 104px;
  border-radius: 8px;
  overflow: hidden;
}
.doctor-appointment-item__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.doctor-appointment-item__details {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark) !important;
}
.doctor-appointment-item__details span {
  font-weight: 700;
  color: var(--dark) !important;
}
.doctor-appointment-item__name {
  display: block;
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 10px;
}
.doctor-appointment-item__photo-placeholder {
  background-color: gray;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .doctor-appointment-item__grid {
    gap: 20px;
    padding: 0 6px;
  }
  .doctor-appointment-item__photo {
    width: 80px;
    height: 80px;
  }
  .doctor-appointment-item__name {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .doctor-appointment-item__details {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark);
  }
}

.doctor-card-full {
  margin-top: 14px;
}
.doctor-card-full__hero {
  margin-bottom: 64px;
}
.doctor-card-full__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.doctor-card-full__col-left {
  grid-column: span 5;
}
.doctor-card-full__col-right {
  grid-column: span 7;
}
.doctor-card-full__name {
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 48px;
  line-height: 117%;
  color: var(--dark);
  max-width: 520px;
}
.doctor-card-full__specializations {
  display: inline-block;
  margin-right: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: var(--dark);
}
.doctor-card-full__experience {
  display: inline-block;
  border-radius: 8px;
  padding: 6px 12px;
  width: 120px;
  height: 32px;
  background: rgba(6, 119, 236, 0.15);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
}
.doctor-card-full__lead {
  display: block;
  margin-top: 22px;
  margin-bottom: 34px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--content);
}
.doctor-card-full__buttons-group {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 490px;
  width: 100%;
}
.doctor-card-full .btn {
  text-align: center;
  height: 56px;
  padding: 20px 20px;
}
.doctor-card-full__details-text {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2; /* две колонки */
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px; /* расстояние */
}
.doctor-card-full__details-text ul {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid; /* Запрет разрыва списков */
  page-break-inside: avoid; /* Для старых браузеров */
  margin-bottom: 14px;
}
.doctor-card-full__details-text h3,
.doctor-card-full__details-text h4 {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  page-break-inside: avoid;
}
.doctor-card-full__details-text h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 12px;
}
.doctor-card-full__details-text h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--content);
  margin-bottom: 12px;
}
@media (max-width: 1023px) {
  .doctor-card-full__grid {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .doctor-card-full__hero {
    margin-bottom: 42px;
  }
  .doctor-card-full__name {
    font-size: 35px;
  }
  .doctor-card-full__lead {
    margin-top: 12px;
    margin-bottom: 24px;
  }
  .doctor-card-full__buttons-group {
    gap: 16px;
    max-width: 100%;
    width: 100%;
  }
  .doctor-card-full__buttons-group .btn {
    font-size: 13px;
    line-height: 1;
  }
  .doctor-card-full__buttons-group .btn span {
    font-size: inherit;
    line-height: inherit;
  }
  .doctor-card-full__details-text {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 1;
    -moz-column-gap: 1;
    column-gap: 1;
  }
}
@media (max-width: 767px) {
  .doctor-card-full__grid {
    display: block;
  }
  .doctor-card-full .specialist-photo {
    margin-bottom: 16px;
  }
  .doctor-card-full__name {
    font-size: 35px;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .doctor-card-full .reception-time li {
    max-width: calc(33.3333333333% - 8px);
  }
  .doctor-card-full__specializations {
    margin-right: 0;
    margin-bottom: 14px;
  }
  .doctor-card-full__buttons-group {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.reviews-cust {
  padding: 25px 0;
}
.reviews-cust__head {
  margin-bottom: 12px;
}
.reviews-cust__slider {
  margin: -29px;
}
.reviews-cust__slider .swiper {
  padding: 29px;
}
@media (max-width: 767px) {
  .reviews-cust .swiper-button-prev {
    left: 0px;
  }
  .reviews-cust .swiper-button-next {
    right: 0px;
  }
  .reviews-cust .review-card-announce {
    padding: 24px 38px 16px;
  }
}

.our-experts {
  padding: 25px 0;
}
.our-experts__slider {
  margin: -29px;
}
.our-experts__slider .swiper {
  padding: 29px;
}
.our-experts__slider .swiper-button-next,
.our-experts__slider .swiper-button-prev {
  top: 35%;
}

.documents-announce {
  padding: 25px 0;
}
.documents-announce__slider {
  margin: -29px;
}
.documents-announce__slider .swiper {
  padding: 29px;
}
.documents-announce__slider .swiper-button-next,
.documents-announce__slider .swiper-button-prev {
  top: 35%;
}

.appointment-section__header {
  margin-bottom: 24px;
}

.doctor-appointment {
  -webkit-box-shadow: 0 8px 32px 0 rgba(52, 61, 66, 0.2);
  box-shadow: 0 8px 32px 0 rgba(52, 61, 66, 0.2);
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 16px;
  margin-bottom: 50px;
}
.doctor-appointment__wrapper {
  padding: 0 44px;
}
.doctor-appointment__group {
  padding-top: 42px;
  padding-bottom: 48px;
}
.doctor-appointment__head {
  border-bottom: 1px solid #d9d9d9;
  padding-top: 25px;
  padding-bottom: 25px;
}
.doctor-appointment__footer {
  padding-top: 36px;
  padding-bottom: 28px;
}
.doctor-appointment__footer .doctor-appointment__item {
  border: none;
}
.doctor-appointment__item {
  border-bottom: 1px solid #d9d9d9;
}
.doctor-appointment__item:last-of-type {
  border-bottom: none;
}
.doctor-appointment__head-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.doctor-appointment__title {
  line-height: 1.2;
  margin: 0;
}
.doctor-appointment__group-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(12, 1fr);
}
.doctor-appointment__group-left {
  grid-column: span 5;
}
.doctor-appointment__group-right {
  grid-column: 7/span 6;
}
.doctor-appointment .custom-select {
  margin-bottom: 27px;
}
.doctor-appointment .online-form-footer__grid {
  grid-template-columns: repeat(2, 1fr);
}
.doctor-appointment .text-field {
  margin: 0;
  padding: 0;
}
.doctor-appointment .mini-slider-dates {
  margin-top: -10px;
  margin-bottom: 3px;
}
.doctor-appointment .mega-button {
  max-width: 520px;
}
.doctor-appointment .switch-button__label {
  height: 40px;
  padding: 10px;
  min-width: auto;
}
.doctor-appointment .switch-buttons-group {
  margin-right: -10px;
  margin-bottom: -10px;
}
.doctor-appointment .switch-button {
  margin-right: 10px;
  margin-bottom: 10px;
}
.mobile-accordion:last-of-type .doctor-appointment__item {
  border-bottom: none;
}
@media (max-width: 1023px) {
  .doctor-appointment {
    border: 2px solid var(--blue);
  }
  .doctor-appointment__head-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .doctor-appointment__group-grid {
    display: block;
  }
  .doctor-appointment__group-left {
    grid-column: initial;
  }
  .doctor-appointment__group-right {
    grid-column: initial;
  }
  .doctor-appointment .special-price {
    margin-bottom: 27px;
  }
  .doctor-appointment .mini-slider-dates {
    margin-top: 0;
    margin-bottom: 26px;
  }
  .doctor-appointment .mega-button {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .doctor-appointment__head {
    padding-top: 15px;
    padding-bottom: 29px;
  }
  .doctor-appointment__title {
    font-size: 30px;
  }
  .doctor-appointment__wrapper {
    padding: 0 18px;
  }
  .doctor-appointment .switch-button__label {
    padding: 10px 10px;
    min-width: auto;
  }
  .doctor-appointment__group {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .doctor-appointment .switch-button__label {
    height: 40px;
  }
  .doctor-appointment .custom-select {
    margin-bottom: 16px;
  }
  .doctor-appointment .special-price {
    margin-bottom: 6px;
  }
  .doctor-appointment .mega-button {
    margin-top: 20px;
  }
  .doctor-appointment .mini-slider-dates {
    margin-bottom: 10px;
  }
}

.doctor-appointment-page main {
  padding-bottom: 0;
}
.doctor-appointment-page .breadcrumbs {
  margin-bottom: 18px;
}
.doctor-appointment-page .footer {
  margin-top: 40px;
}

.online-appointment-doctor-page .main {
  padding-bottom: 0;
}