@charset "UTF-8";
* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: transparent;
  border: 1px solid white;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.send_button_form {
  background-color: rgb(61, 173, 114);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: none;
  outline: none;
  border-radius: 44px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 14px;
  padding: 13px;
  cursor: pointer;
}
.send_button_form:hover {
  background-color: #29d179;
}
@media screen and (max-width: 610px) {
  .send_button_form {
    font-size: 13px;
  }
}
.send_button_form:disabled {
  opacity: 0.4;
  cursor: auto;
}
.send_button_form:disabled:hover {
  background-color: rgb(61, 173, 114);
}

button.close_popup {
  width: 16px;
  height: 16px;
}
button.close_popup:hover {
  opacity: 0.6;
}

.standart_btn {
  display: block;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: rgb(61, 173, 114);
  padding: 12px 33px;
  border: 1px solid rgba(61, 173, 114, 0.5);
  border-radius: 0 51px 51px 30px;
  margin-bottom: 9px;
}
.standart_btn:hover {
  background-color: rgb(61, 173, 114);
  color: white;
}
.standart_btn.green {
  background-color: rgb(61, 173, 114);
  color: white;
}
.standart_btn.green:hover {
  opacity: 0.8;
}
.standart_btn.green_whitish {
  background-color: rgba(61, 173, 114, 0.2);
  color: rgb(61, 173, 114);
  border: none;
}
.standart_btn.green_whitish:hover {
  opacity: 0.8;
}
.standart_btn.white {
  background-color: white;
  color: rgb(61, 173, 114);
}
.standart_btn.white:hover {
  opacity: 0.8;
}
.standart_btn.white_transparent {
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  color: white;
}
.standart_btn.white_transparent:hover {
  opacity: 0.8;
}

.more_link {
  color: rgb(61, 173, 114);
}
.more_link:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.btn_app img {
  width: 100%;
}

.search_block .wrap_search {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px 11px 26px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.search_block input {
  outline: none;
  border: none;
  width: 100%;
  font-size: 13px;
}

.error_rating {
  font-size: 14px;
  padding: 5px;
  margin: 5px;
  background-color: red;
  color: white;
  border-radius: 4px;
}

.rating_block {
  width: object-fit;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
}
.rating_block .stars,
.rating_block img {
  width: 146px;
  height: 26px;
  max-width: unset;
}
.rating_block .stars {
  position: relative;
  overflow: hidden;
}
.rating_block .stars .wrap_star_green {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
}
.rating_block .rating_number {
  font-weight: 600;
  font-size: 13px;
  color: #000;
}

section .breadcrumb {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 149%;
  color: #000;
}
section .breadcrumb .breadcrumbs__current {
  opacity: 0.66;
}
section .breadcrumb a {
  opacity: 0.66;
}
section .breadcrumb a:hover {
  opacity: 1;
}

.menu_all_sites .nav_block {
  margin-bottom: 5px;
  text-align: right;
  display: none;
}
.menu_all_sites .nav_block svg {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.menu_all_sites .wrap_menu {
  display: flex;
  flex-flow: row-reverse nowrap;
  gap: 71px;
}
.menu_all_sites .wrap_menu .city_title {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 19px;
}
.menu_all_sites .wrap_menu .site {
  margin-bottom: 18px;
}
.menu_all_sites .wrap_menu .site a {
  font-weight: 500;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 1060px) {
  .menu_all_sites .wrap_menu {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .menu_all_sites .wrap_menu .site a {
    white-space: wrap;
  }
}

.header-top .city__name a.change_clinics {
  margin-left: 11px;
}

@media screen and (max-width: 767px) {
  .header-mobile .city ul.menu_all_sites {
    position: fixed;
    width: 100%;
    top: 0;
    left: 50%;
    padding: 16px 16px 16px 29px;
    transform: translateX(-50%);
    border-radius: 33px 0 33px 33px;
  }
  .header-mobile .city ul.menu_all_sites .nav_block {
    display: block;
  }
  .header-mobile .city ul.menu_all_sites .wrap_menu .city_title {
    margin-bottom: 10px;
  }
  .header-mobile .city ul.menu_all_sites .wrap_menu .site {
    margin-bottom: 8px;
  }
}
.wrap_serch_in_drop_general {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding-right: 10px;
  margin: 10px;
}
.wrap_serch_in_drop_general input {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  outline: none !important;
  border: none !important;
}
.wrap_serch_in_drop_general img {
  width: 18px;
  height: 18px;
}

.phone_block {
  display: flex;
  flex-flow: row wrap;
  gap: 25px;
  row-gap: 10px;
}

.select_custom {
  position: relative;
}
.select_custom label {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
}
.select_custom input {
  border: none;
  outline: none;
}
.select_custom .drop_down {
  position: absolute;
  left: 0;
  top: 105%;
  background-color: white;
  z-index: 99;
  width: 100%;
  padding: 24px 18px 33px;
  box-shadow: 0 24px 64px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.select_custom .drop_down.desabled {
  display: none;
}
.select_custom .drop_down ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.select_custom .drop_down ul li a {
  font-weight: 400;
  font-size: 14px;
}
.select_custom .drop_down ul li a:hover {
  color: rgb(41, 209, 121);
}
.select_custom .drop_down ul li {
  margin-bottom: 12px;
}

input.input_standart {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
}
input::placeholder {
  font-size: 14px;
}

textarea.textarea_standart {
  width: 100%;
  font-weight: 400;
  height: 110px;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
  resize: none;
}

.rating_wrap {
  display: flex;
  flex-direction: row-reverse;
}
.rating_wrap .rating_block_title {
  font-weight: 400;
  font-size: 15px;
}
.rating_wrap input {
  display: none;
}
.rating_wrap label {
  cursor: pointer;
  color: #d2d2d2;
  padding-left: 3px;
  padding-right: 3px;
}
.rating_wrap label svg {
  width: 42px;
  height: 42px;
}
.rating_wrap label svg path {
  fill: currentColor;
  stroke: currentColor;
  transition: fill 0.6s ease, stroke 0.6s ease;
}
.rating_wrap label:hover,
.rating_wrap label:hover ~ label {
  color: #3dad72;
}
.rating_wrap input:checked ~ label {
  color: #3dad72;
}

.radio_custom {
  display: flex;
  flex-flow: row nowrap;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}
.radio_custom input {
  display: none;
}
.radio_custom input:checked + .pseudo_radio .circle {
  display: block;
}
.radio_custom .pseudo_radio {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #bdbdbd;
  display: flex;
  justify-content: center;
  align-items: center;
}
.radio_custom .pseudo_radio .circle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #3dad72;
  display: none;
}

label.checkbox_custome {
  font-size: 14px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
label .check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
label .check__box {
  width: 20px;
  height: 20px;
  border: 1.5px solid #cfcfcf;
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
}
label {
  /* SVG-галочка */
}
label .check__icon {
  width: 12px;
  height: 10px;
  stroke: #3dad72;
  stroke-width: 2.5;
  fill: none;
  opacity: 0;
  transform: scale(0.8) translate(2px, 5px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
label {
  /* checked */
}
label .check__input:checked + .check__box {
  border-color: #3dad72;
}
label .check__input:checked + .check__box .check__icon {
  opacity: 1;
  transform: scale(1.6) translate(2px, -1px);
}

.title_label_form {
  font-weight: 500;
  font-size: 16px;
  line-height: 149%;
  color: #000;
  padding: 0;
  margin: 0;
}

*,
div,
p,
a {
  font-family: "Montserrat", serif;
}

h1 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 22px;
}

strong {
  font-weight: 600;
}

.wrap_section {
  margin-left: auto;
  margin-right: auto;
}

.popup_overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 99;
  overflow-y: auto;
}
.popup_overlay.desabled {
  display: none;
}
.popup_overlay #popUp_form_doctor,
.popup_overlay #popUp_form_doctor_general {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 605px;
  background-color: rgb(255, 255, 255);
  border-radius: 65px;
  border-top-right-radius: 0;
  overflow: hidden;
}
.popup_overlay #popUp_form_doctor .wrap_popup,
.popup_overlay #popUp_form_doctor_general .wrap_popup {
  position: relative;
  padding: 64px;
}
.popup_overlay #popUp_form_doctor .preloader,
.popup_overlay #popUp_form_doctor_general .preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
.popup_overlay #popUp_form_doctor .preloader.visible,
.popup_overlay #popUp_form_doctor_general .preloader.visible {
  display: flex;
}
.popup_overlay #popUp_form_doctor .preloader,
.popup_overlay #popUp_form_doctor_general .preloader {
  /* HTML: <div class="loader"></div> */
}
.popup_overlay #popUp_form_doctor .preloader .loader,
.popup_overlay #popUp_form_doctor_general .preloader .loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat
    radial-gradient(circle closest-side, rgb(135, 185, 145) 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
.popup_overlay #popUp_form_doctor .first_screen.no_visible,
.popup_overlay #popUp_form_doctor .second_screen.no_visible,
.popup_overlay #popUp_form_doctor_general .first_screen.no_visible,
.popup_overlay #popUp_form_doctor_general .second_screen.no_visible {
  display: none;
}
.popup_overlay #popUp_form_doctor .close_popup,
.popup_overlay #popUp_form_doctor_general .close_popup {
  position: absolute;
  right: 30px;
  top: 30px;
}
.popup_overlay #popUp_form_doctor .check_header,
.popup_overlay #popUp_form_doctor_general .check_header {
  width: 95px;
  height: 95px;
  margin-bottom: 35px;
}
.popup_overlay #popUp_form_doctor .name_doctor,
.popup_overlay #popUp_form_doctor_general .name_doctor {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 22px;
}
.popup_overlay #popUp_form_doctor .description,
.popup_overlay #popUp_form_doctor_general .description {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 22px;
}
.popup_overlay #popUp_form_doctor form,
.popup_overlay #popUp_form_doctor_general form {
  display: flex;
  flex-flow: column nowrap;
}
.popup_overlay #popUp_form_doctor form label,
.popup_overlay #popUp_form_doctor_general form label {
  margin-bottom: 19px;
}
.popup_overlay #popUp_form_doctor form .description_label,
.popup_overlay #popUp_form_doctor_general form .description_label {
  margin-top: 7px;
  font-weight: 400;
  font-size: 13px;
  color: #000;
  opacity: 0.4;
}
.popup_overlay #popUp_form_doctor form input[type=text], .popup_overlay #popUp_form_doctor form input[type=tel],
.popup_overlay #popUp_form_doctor_general form input[type=text],
.popup_overlay #popUp_form_doctor_general form input[type=tel] {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
}
.popup_overlay #popUp_form_doctor form input::placeholder,
.popup_overlay #popUp_form_doctor_general form input::placeholder {
  font-size: 14px;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom {
  position: relative;
  width: 100%;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .input_custom,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .input_custom {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .input_custom img,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .input_custom img {
  transition: transform 0.3s ease;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .input_custom.open_dropdown img,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .input_custom.open_dropdown img {
  transform: rotate(-180deg);
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .placeholder,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .placeholder {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.4;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .open_sub_menu_btn,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .open_sub_menu_btn {
  cursor: pointer;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  background-color: white;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list.open,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list.open {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
  overflow: hidden;
  overflow-y: auto;
  max-height: 240px;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list li,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list li {
  padding: 10px 18px;
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list li img,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list li img {
  display: none;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list li.current img,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list li.current img {
  display: inline;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list li:first-child,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list li:first-child {
  border-radius: 5px 5px 0 0;
  padding-top: 13px;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list li:last-child,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list li:last-child {
  border-radius: 0 0 5px 5px;
  padding-bottom: 13px;
}
.popup_overlay #popUp_form_doctor form .dropdown_field_custom .dropdown_list li:hover,
.popup_overlay #popUp_form_doctor_general form .dropdown_field_custom .dropdown_list li:hover {
  background-color: rgb(61, 173, 114);
  color: white;
  border: 1px solid rgb(61, 173, 114);
  margin: -1px;
}
.popup_overlay #popUp_form_doctor form .privacy_policy,
.popup_overlay #popUp_form_doctor_general form .privacy_policy {
  font-weight: 400;
  font-size: 13px;
}
.popup_overlay #popUp_form_doctor form .privacy_policy a,
.popup_overlay #popUp_form_doctor_general form .privacy_policy a {
  text-decoration: underline;
  color: rgb(61, 173, 114);
}
.popup_overlay #popUp_form_doctor form .send_button_form,
.popup_overlay #popUp_form_doctor_general form .send_button_form {
  margin-top: 35px;
}
@media screen and (max-width: 610px) {
  .popup_overlay #popUp_form_doctor,
  .popup_overlay #popUp_form_doctor_general {
    max-width: 92%;
    border-radius: 33px;
    border-top-right-radius: 0;
  }
  .popup_overlay #popUp_form_doctor .wrap_popup,
  .popup_overlay #popUp_form_doctor_general .wrap_popup {
    padding: 54px 29px 43px;
  }
  .popup_overlay #popUp_form_doctor .name_doctor,
  .popup_overlay #popUp_form_doctor_general .name_doctor {
    font-size: 20px;
    line-height: 117%;
  }
  .popup_overlay #popUp_form_doctor .description,
  .popup_overlay #popUp_form_doctor_general .description {
    font-size: 13px;
  }
  .popup_overlay #popUp_form_doctor .close_popup,
  .popup_overlay #popUp_form_doctor_general .close_popup {
    right: 20px;
    top: 16px;
  }
  .popup_overlay #popUp_form_doctor form input[type=text], .popup_overlay #popUp_form_doctor form input[type=tel],
  .popup_overlay #popUp_form_doctor_general form input[type=text],
  .popup_overlay #popUp_form_doctor_general form input[type=tel] {
    font-size: 12px;
  }
  .popup_overlay #popUp_form_doctor form input::placeholder,
  .popup_overlay #popUp_form_doctor_general form input::placeholder {
    font-size: 12px;
  }
}

#popUp_form_doctor_review {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 605px;
  background-color: rgb(255, 255, 255);
  border-radius: 65px;
  border-top-right-radius: 0;
  overflow: hidden;
  overflow-y: auto;
}
#popUp_form_doctor_review.top_position {
  top: 20px;
  transform: translateX(-50%);
}
#popUp_form_doctor_review .wrap_popup {
  position: relative;
  padding: 64px;
  padding-bottom: 36px;
}
#popUp_form_doctor_review .preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
#popUp_form_doctor_review .preloader.visible {
  display: flex;
}
#popUp_form_doctor_review .preloader {
  /* HTML: <div class="loader"></div> */
}
#popUp_form_doctor_review .preloader .loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat
    radial-gradient(circle closest-side, rgb(135, 185, 145) 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
#popUp_form_doctor_review .first_screen.no_visible,
#popUp_form_doctor_review .second_screen.no_visible {
  display: none;
}
#popUp_form_doctor_review .close_popup {
  position: absolute;
  right: 30px;
  top: 30px;
}
#popUp_form_doctor_review .check_header {
  width: 95px;
  height: 95px;
  margin-bottom: 35px;
}
#popUp_form_doctor_review .wrap_avatar {
  width: 218px;
  height: 186px;
  margin-left: auto;
  margin-right: auto;
}
#popUp_form_doctor_review .wrap_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: clip;
  border-radius: 66px 66px 66px 0;
}
#popUp_form_doctor_review .name_doctor {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 22px;
  text-align: center;
  margin-top: 10px;
}
#popUp_form_doctor_review .description {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 38px;
  text-align: center;
}
#popUp_form_doctor_review .rating_block {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 40px;
}
#popUp_form_doctor_review .rating_block_title {
  font-weight: 400;
  font-size: 15px;
}
#popUp_form_doctor_review .rating_wrap {
  display: flex;
  flex-direction: row-reverse;
}
#popUp_form_doctor_review .rating_wrap input {
  display: none;
}
#popUp_form_doctor_review .rating_wrap label {
  cursor: pointer;
  color: #d2d2d2;
  padding-left: 3px;
  padding-right: 3px;
}
#popUp_form_doctor_review .rating_wrap label svg {
  width: 42px;
  height: 42px;
}
#popUp_form_doctor_review .rating_wrap label svg path {
  fill: currentColor;
  stroke: currentColor;
  transition: fill 0.6s ease, stroke 0.6s ease;
}
#popUp_form_doctor_review .rating_wrap label:hover,
#popUp_form_doctor_review .rating_wrap label:hover ~ label {
  color: #3dad72;
}
#popUp_form_doctor_review .rating_wrap input:checked ~ label {
  color: #3dad72;
}
#popUp_form_doctor_review form {
  display: flex;
  flex-flow: column nowrap;
}
#popUp_form_doctor_review form .title_label {
  font-weight: 500;
  font-size: 14px;
}
#popUp_form_doctor_review form .description_label {
  margin-top: 7px;
  font-weight: 400;
  font-size: 13px;
  color: #000;
  opacity: 0.4;
}
#popUp_form_doctor_review form label {
  margin-bottom: 19px;
}
#popUp_form_doctor_review form textarea {
  width: 100%;
  font-weight: 400;
  height: 110px;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
  resize: none;
}
#popUp_form_doctor_review form input[type=text], #popUp_form_doctor_review form input[type=tel] {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
}
#popUp_form_doctor_review form input::placeholder {
  font-size: 14px;
}
#popUp_form_doctor_review form .count_word_block {
  font-weight: 400;
  font-size: 14px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#popUp_form_doctor_review form .count_word_block p {
  opacity: 0.4;
  margin: 0;
}
#popUp_form_doctor_review form .count_word_block .col:first-child {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 9px;
}
#popUp_form_doctor_review form .progress-ring {
  width: 24px;
  height: 24px;
}
#popUp_form_doctor_review form .progress-ring svg {
  transform: rotate(-90deg); /* старт сверху */
}
#popUp_form_doctor_review form .progress-ring .progress-ring__bg {
  fill: none;
  stroke: #e5e7eb; /* серый фон */
  stroke-width: 2;
}
#popUp_form_doctor_review form .progress-ring .progress-ring__circle {
  fill: none;
  stroke: #22c55e; /* зелёный прогресс */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 62.8;
  stroke-dashoffset: 62.8;
  transition: stroke-dashoffset 0.3s ease;
}
#popUp_form_doctor_review form .features {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 40px;
}
#popUp_form_doctor_review form .features p {
  margin: 0;
  margin-bottom: 18px;
}
#popUp_form_doctor_review form .features label {
  font-size: 14px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
#popUp_form_doctor_review form .features .check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
#popUp_form_doctor_review form .features .check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#popUp_form_doctor_review form .features .check__box {
  width: 20px;
  height: 20px;
  border: 1.5px solid #cfcfcf;
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
}
#popUp_form_doctor_review form .features {
  /* SVG-галочка */
}
#popUp_form_doctor_review form .features .check__icon {
  width: 12px;
  height: 10px;
  stroke: #3dad72;
  stroke-width: 2.5;
  fill: none;
  opacity: 0;
  transform: scale(0.8) translate(2px, 5px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
#popUp_form_doctor_review form .features {
  /* checked */
}
#popUp_form_doctor_review form .features .check__input:checked + .check__box {
  border-color: #3dad72;
}
#popUp_form_doctor_review form .features .check__input:checked + .check__box .check__icon {
  opacity: 1;
  transform: scale(1.6) translate(2px, -1px);
}
#popUp_form_doctor_review form .send_button_form {
  margin-top: 20px;
}
#popUp_form_doctor_review form .hiddden_after_rate {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 610px) {
  #popUp_form_doctor_review {
    max-width: 92%;
    border-radius: 33px;
    border-top-right-radius: 0;
  }
  #popUp_form_doctor_review .wrap_popup {
    padding: 54px 29px 43px;
  }
  #popUp_form_doctor_review .wrap_avatar {
    width: 270px;
    height: 246px;
    overflow: clip;
    border-radius: 66px 66px 66px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #popUp_form_doctor_review .name_doctor {
    font-size: 20px;
    line-height: 117%;
  }
  #popUp_form_doctor_review .description {
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    margin-bottom: 20px;
  }
  #popUp_form_doctor_review .rating_block {
    align-items: flex-start;
    margin-bottom: 5px;
  }
  #popUp_form_doctor_review .title_label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 9px;
  }
  #popUp_form_doctor_review .close_popup {
    right: 20px;
    top: 16px;
  }
  #popUp_form_doctor_review form .count_word_block {
    flex-direction: column-reverse;
    gap: 6px;
    margin-top: 6px;
    margin-left: 5px;
  }
  #popUp_form_doctor_review form .count_word_block .col:first-child {
    margin-left: -5px;
  }
  #popUp_form_doctor_review form .features p {
    font-weight: 500;
    font-size: 14px;
  }
  #popUp_form_doctor_review form .features .check {
    font-weight: 500;
  }
  #popUp_form_doctor_review form input[type=text], #popUp_form_doctor_review form input[type=tel] {
    font-size: 14px;
  }
  #popUp_form_doctor_review form input::placeholder {
    font-size: 14px;
  }
}

.specialists_page_section {
  margin-bottom: 40px;
}
.specialists_page_section .separator {
  width: 100%;
  height: 40px;
  background: rgba(179, 179, 179, 0.1);
  margin-bottom: 16px;
}
.specialists_page_section .wrap_section {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.specialists_page_section .breadcrumb {
  margin-bottom: 39px;
  font-size: 12px;
}
.specialists_page_section .specialists_block {
  margin-top: 33px;
}
.specialists_page_section .specialists_block .wrap_specialists_block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  flex-flow: row wrap;
  gap: 28px;
}
.specialists_page_section .card_specialist {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  flex: 1;
}
.specialists_page_section .card_specialist .photo_block {
  position: relative;
  overflow: hidden;
  border-radius: 44px 44px 44px 0;
  margin-bottom: 23px;
}
.specialists_page_section .card_specialist .photo_block img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}
.specialists_page_section .card_specialist .rating {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  left: 8px;
  bottom: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 11px 11px 11px 0;
  padding: 4px 8px;
}
.specialists_page_section .card_specialist .rating .rating_number {
  font-weight: 600;
  font-size: 12px;
}
.specialists_page_section .card_specialist .post_title .name {
  font-weight: 600;
  font-size: 19px;
  line-height: 117%;
  margin-bottom: 9px;
}
.specialists_page_section .card_specialist .post_title .job_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 149%;
  margin-bottom: 14px;
}
.specialists_page_section .card_specialist .wrap_btn {
  margin-top: auto;
}
@media screen and (max-width: 610px) {
  .specialists_page_section .specialists_block .wrap_specialists_block {
    row-gap: 50px;
  }
}
@media screen and (max-width: 580px) {
  .specialists_page_section .breadcrumb {
    margin-bottom: 25px;
  }
  .specialists_page_section .card_specialist {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.profile_doctor_page_section {
  background: rgb(247, 247, 247);
  padding: 0 19px;
  padding-top: 54px;
  margin-bottom: -100px;
}
.profile_doctor_page_section h1 {
  max-width: 450px;
  font-weight: 700;
  font-size: 30px;
  line-height: 117%;
  margin-bottom: 20px;
}
.profile_doctor_page_section h2 {
  font-weight: 700;
  font-size: 21px;
  line-height: 174%;
  margin-bottom: 12px;
  text-align: left;
}
.profile_doctor_page_section h2.title_mobile {
  font-weight: 700;
  font-size: 23px;
  line-height: 117%;
  text-align: center;
  margin-top: 25px;
  display: none;
}
.profile_doctor_page_section .wrap_section {
  max-width: 1100px;
}
.profile_doctor_page_section .wrap_header {
  display: flex;
  flex-flow: row wrap;
  gap: 50px;
  margin-bottom: 50px;
}
.profile_doctor_page_section .wrap_header .col.photo {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile_doctor_page_section .wrap_header .col.photo .rating_block {
  margin-top: 20px;
}
.profile_doctor_page_section .wrap_header .col.photo .standart_btn {
  margin-top: 23px;
}
.profile_doctor_page_section .wrap_header .col.description .optional_block,
.profile_doctor_page_section .wrap_header .col.description .job_title {
  max-width: 400px;
}
.profile_doctor_page_section .wrap_header .col.description {
  font-size: 15px;
}
.profile_doctor_page_section .wrap_header .col.description .job_title {
  margin-bottom: 19px;
  font-weight: 500;
}
.profile_doctor_page_section .wrap_header .col.description .optional_block {
  margin-bottom: 20px;
}
.profile_doctor_page_section .wrap_header .col.description .optional_block .label {
  opacity: 0.5;
  font-size: 13px;
  margin-bottom: 2px;
}
.profile_doctor_page_section .wrap_header .col.description .optional_block .explanation {
  font-weight: 500;
  line-height: 149%;
}
.profile_doctor_page_section .wrap_header .col.description .optional_block .price {
  font-weight: 700;
  font-size: 23px;
  line-height: 117%;
  padding-top: 0;
  background-color: transparent;
}
.profile_doctor_page_section .wrap_header .col.description .optional_block.last {
  margin-bottom: 4px;
}
.profile_doctor_page_section .wrap_header .col.description .more_link {
  font-weight: 500;
  font-size: 15px;
}
.profile_doctor_page_section .wrap_header .col .photo_block {
  border-radius: 66px;
  border-bottom-left-radius: 0;
  overflow: hidden;
  width: 100%;
  max-height: 370px;
  display: flex;
}
.profile_doctor_page_section .wrap_header .col .photo_block img {
  width: 100%;
  object-fit: cover;
}
.profile_doctor_page_section .breadcrumb {
  margin-bottom: 25px;
}
.profile_doctor_page_section .breadcrumb.mobile {
  display: none;
}
.profile_doctor_page_section .mobile .breadcrumb {
  display: none;
}
.profile_doctor_page_section .about_wrap_content {
  background-color: white;
  padding: 31px 57px;
  border-top-right-radius: 44px;
  padding-bottom: 250px;
}
.profile_doctor_page_section .about_wrap_content .about {
  margin-bottom: 45px;
  padding-top: 0;
  background-color: transparent;
}
.profile_doctor_page_section .about_wrap_content .about h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 174%;
  margin-bottom: 12px;
  margin-top: 25px;
}
.profile_doctor_page_section .about_wrap_content .about h3:first-child {
  margin-top: 12px;
}
.profile_doctor_page_section .about_wrap_content .about {
  font-size: 15px;
}
.profile_doctor_page_section .about_wrap_content .about p {
  margin-bottom: 11px;
}
.profile_doctor_page_section .about_wrap_content .about ul {
  margin-left: 46px;
}
.profile_doctor_page_section .about_wrap_content .about ul li {
  line-height: 149%;
  margin-bottom: 12px;
}
.profile_doctor_page_section .about_wrap_content .about ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 0 4px 4px 4px;
  background-color: rgb(61, 173, 114);
  margin-right: 12px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block {
  margin-bottom: 50px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .no_reviews {
  margin-bottom: 30px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .single_review {
  margin-bottom: 36px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .head_review {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 17px;
  margin-bottom: 13px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .head_review .name_reviewer {
  font-weight: 500;
  font-size: 15px;
  line-height: 149%;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .head_review .date {
  font-weight: 400;
  font-size: 13px;
  line-height: 149%;
  opacity: 0.4;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .post_header {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 18px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .post_header .rating_block .stars,
.profile_doctor_page_section .about_wrap_content .reviews_block .post_header .rating_block img {
  width: 117px;
  height: 20px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .post_header .skills {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 15px;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .post_header .skills .skill {
  border-radius: 9px;
  padding: 3px 10px;
  padding: 3px 10px;
  background-color: rgb(247, 247, 247);
  font-weight: 400;
  font-size: 12px;
  line-height: 149%;
  color: rgba(0, 0, 0, 0.7);
}
.profile_doctor_page_section .about_wrap_content .reviews_block .content_review {
  font-weight: 400;
  font-size: 15px;
  line-height: 149%;
  margin-bottom: 7px;
  overflow: hidden;
}
.profile_doctor_page_section .about_wrap_content .reviews_block .btn_block {
  display: flex;
  flex-flow: row wrap;
  gap: 11px;
  width: fit-content;
}
.profile_doctor_page_section .about_wrap_content .services_price_block h3 {
  font-weight: 700;
  font-size: 21px;
  line-height: 174%;
  margin-bottom: 2px;
}
.profile_doctor_page_section .about_wrap_content .services_price_block ul li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  padding-top: 13px;
  font-weight: 400;
  font-size: 16px;
  line-height: 149%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.profile_doctor_page_section .about_wrap_content .services_price_block ul li .price_service {
  font-weight: 600;
  font-size: 18px;
}
.profile_doctor_page_section .footer_section {
  margin-top: -150px;
}
.profile_doctor_page_section .footer_section .wrap_footer_sec {
  display: flex;
  justify-content: space-between;
  background-color: rgb(67, 182, 121);
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius: 142px;
  overflow: hidden;
  padding: 48px 100px 140px 100px;
  color: white;
}
.profile_doctor_page_section .footer_section .wrap_footer_sec > .col {
  flex: 1;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.profile_doctor_page_section .footer_section .wrap_footer_sec > .col:last-child {
  border-right: 0;
  padding-right: 0;
}
.profile_doctor_page_section .footer_section .wrap_footer_sec > .col:last-child .description {
  max-width: 248px;
}
.profile_doctor_page_section .footer_section .wrap_footer_sec > .col:first-child {
  padding-left: 0;
}
.profile_doctor_page_section .footer_section .wrap_footer_sec > .col .description {
  font-weight: 400;
  font-size: 12px;
  line-height: 149%;
}
.profile_doctor_page_section .footer_section .wrap_footer_sec .btns_block_app {
  display: flex;
  flex-flow: row nowrap;
  gap: 17px;
  margin-bottom: 19px;
}
.profile_doctor_page_section .footer_section h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 117%;
  margin-bottom: 19px;
  max-width: 215px;
}
.profile_doctor_page_section .footer_section .standart_btn {
  margin-bottom: 19px;
}
.profile_doctor_page_section .footer_section form label.policy_privacy {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 15px;
}
.profile_doctor_page_section .footer_section form label .desciption_policy {
  font-weight: 400;
  font-size: 12px;
  line-height: 149%;
}
.profile_doctor_page_section .footer_section form input[type=text] {
  width: 100%;
  background-color: transparent;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
  font-weight: 400;
  font-size: 14px;
}
.profile_doctor_page_section .footer_section form input[type=text]::placeholder {
  color: white;
}
.profile_doctor_page_section .footer_section form input[type=text] {
  outline: none;
  margin-bottom: 9px;
}
.profile_doctor_page_section .footer_section form .input.error {
  display: block;
}
.profile_doctor_page_section .footer_section form .input.error input {
  border: 1px solid rgb(255, 0, 0);
}
.profile_doctor_page_section .footer_section form .error {
  display: none;
}
.profile_doctor_page_section .footer_section form button {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 1100px) {
  .profile_doctor_page_section .footer_section .wrap_footer_sec {
    border-top-left-radius: 60px;
    padding: 30px 25px 153px 25px;
  }
}
@media screen and (max-width: 857px) {
  .profile_doctor_page_section h1 {
    display: none;
  }
  .profile_doctor_page_section h2.title_mobile {
    display: inline;
  }
  .profile_doctor_page_section .wrap_header {
    justify-content: center;
    gap: 33px;
  }
  .profile_doctor_page_section .wrap_header .col.description .job_title {
    display: none;
  }
  .profile_doctor_page_section .breadcrumb {
    display: none;
  }
  .profile_doctor_page_section .breadcrumb.mobile {
    display: flex;
  }
  .profile_doctor_page_section .mobile .breadcrumb {
    display: flex;
  }
  .profile_doctor_page_section .about_wrap_content {
    padding: 25px 20px 190px 25px;
    margin-left: -19px;
    margin-right: -19px;
  }
  .profile_doctor_page_section .about_wrap_content .about ul {
    margin-left: 28px;
  }
  .profile_doctor_page_section .about_wrap_content .reviews_block .btn_block {
    flex-direction: column;
    width: 100%;
  }
  .profile_doctor_page_section .footer_section .wrap_footer_sec {
    flex-direction: column;
    margin-left: -19px;
    margin-right: -19px;
    padding: 40px 19px 140px 19px;
    border-top-left-radius: 32px;
  }
  .profile_doctor_page_section .footer_section .wrap_footer_sec h4 {
    max-width: 100%;
  }
  .profile_doctor_page_section .footer_section .wrap_footer_sec .col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px 0;
  }
  .profile_doctor_page_section .footer_section .wrap_footer_sec .col:first-child {
    padding-top: 0;
  }
  .profile_doctor_page_section .footer_section .wrap_footer_sec .col:last-child {
    border-bottom: none;
  }
  .profile_doctor_page_section .footer_section .wrap_footer_sec .col:last-child .description {
    max-width: 100%;
  }
  .profile_doctor_page_section .footer_section .standart_btn {
    max-width: 260px;
  }
}

.reviews_page_section {
  background-color: rgb(247, 247, 247);
  padding: 39px 20px 0;
}
.reviews_page_section .wrap_section {
  padding: 43px 23px 121px 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-top-right-radius: 30px;
}
.reviews_page_section .select_block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 25px;
}
.reviews_page_section .select_block .label {
  font-weight: 400;
  font-size: 14px;
}
.reviews_page_section .select_block .wrap_search {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px 11px 26px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 460px;
}
.reviews_page_section .select_block .wrap_search button img {
  transition: transform 0.3s ease;
}
.reviews_page_section .select_block .wrap_search button.active img {
  transform: rotate(-180deg);
}
.reviews_page_section .select_block input {
  outline: none;
  border: none;
  border-radius: 5px;
  width: 100%;
  font-size: 13px;
}
.reviews_page_section .select_block .drop_down {
  position: absolute;
  left: 0;
  top: 105%;
  background-color: white;
  z-index: 99;
  width: 100%;
  padding: 24px 18px 33px;
  box-shadow: 0 24px 64px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.reviews_page_section .select_block .drop_down.desabled {
  display: none;
}
.reviews_page_section .select_block .drop_down .wrap_serch_in_drop {
  display: flex;
  flex-flow: row nowrap;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 11px 16px;
}
.reviews_page_section .select_block .drop_down .wrap_serch_in_drop input {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
}
.reviews_page_section .select_block .drop_down .wrap_serch_in_drop img {
  width: 18px;
  height: 18px;
}
.reviews_page_section .select_block .drop_down .doctor_list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}
.reviews_page_section .select_block .drop_down .doctor_list li a {
  font-weight: 400;
  font-size: 14px;
}
.reviews_page_section .select_block .drop_down .doctor_list li a:hover {
  color: rgb(41, 209, 121);
}
.reviews_page_section .select_block .drop_down .doctor_list li {
  margin-bottom: 12px;
}
.reviews_page_section .reviews_wrap {
  margin-top: 43px;
}
.reviews_page_section .title_mob_from,
.reviews_page_section .title_mob_about {
  display: none;
}
.reviews_page_section .card_review {
  margin-bottom: 40px;
}
.reviews_page_section .card_review:last-child {
  margin-bottom: 0;
}
.reviews_page_section .card_review > .wrap_card {
  display: flex;
  flex-direction: row;
  gap: 23px;
}
.reviews_page_section .card_review .col.photo_block {
  min-width: 240px;
  flex: 1;
}
.reviews_page_section .card_review .col.photo_block .image_wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: flex-start;
}
.reviews_page_section .card_review .col.photo_block .image_wrap .avatar_wrap {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 1000px;
}
.reviews_page_section .card_review .col.photo_block .image_wrap .avatar_wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.reviews_page_section .card_review .col.photo_block .image_wrap .rating {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row nowrap;
  gap: 3px;
  align-items: center;
  background-color: rgb(247, 247, 247);
  width: fit-content;
  font-weight: 600;
  font-size: 10px;
  padding: 3px 7px 3px 28px;
  border-radius: 10px;
  margin-left: -26px;
}
.reviews_page_section .card_review .col.photo_block .doctor_description .name_doctor {
  font-weight: 500;
  font-size: 15px;
  line-height: 149%;
  color: #000;
  margin: 0;
  margin-top: 8px;
}
.reviews_page_section .card_review .col.photo_block .doctor_description .job_desc {
  font-weight: 400;
  font-size: 13px;
  line-height: 149%;
  color: #000;
  opacity: 0.4;
  margin: 0;
  margin-top: 5px;
}
.reviews_page_section .card_review .col.review_block {
  flex: 4;
}
.reviews_page_section .card_review .col.review_block .user_data_block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 17px;
}
.reviews_page_section .card_review .col.review_block .user_data_block .name_user {
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}
.reviews_page_section .card_review .col.review_block .user_data_block .date_review {
  font-weight: 400;
  font-size: 13px;
  opacity: 0.4;
}
.reviews_page_section .card_review .col.review_block .grade_block {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin-top: 15px;
  gap: 15px;
}
.reviews_page_section .card_review .col.review_block .grade_block .skill_wrap {
  display: flex;
  flex-flow: row wrap;
}
.reviews_page_section .card_review .col.review_block .grade_block .rating_block .stars,
.reviews_page_section .card_review .col.review_block .grade_block .rating_block img {
  width: 117px;
  height: 20px;
  max-width: unset;
}
.reviews_page_section .card_review .col.review_block .grade_block .label_quality {
  border-radius: 9px;
  padding: 3px 10px;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.7;
  background: rgb(247, 247, 247);
}
.reviews_page_section .card_review .col.review_block .content_review_block .text_review {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 149%;
  margin-top: 17px;
  max-height: 88px;
  overflow: hidden;
}
.reviews_page_section .card_review .col.review_block .content_review_block .text_review.full_view {
  max-height: unset;
}
.reviews_page_section .card_review .col.review_block .content_review_block .text_review.full_view .points {
  display: none;
}
.reviews_page_section .card_review .col.review_block .content_review_block .text_review .points {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: white;
  width: 22px;
  text-align: center;
}
.reviews_page_section .card_review .col.review_block .content_review_block .read_more {
  font-weight: 400;
  font-size: 15px;
  color: rgb(61, 173, 114);
  margin-top: 7px;
}
.reviews_page_section .card_review .col.review_block .content_review_block .read_more:hover {
  text-decoration: underline;
}
.reviews_page_section .card_review .col.review_block .content_review_block .read_more.hide {
  display: none;
}
@media screen and (max-width: 850px) {
  .reviews_page_section {
    padding: 0;
  }
  .reviews_page_section .wrap_section {
    padding: 20px;
  }
  .reviews_page_section h1 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 19px;
  }
  .reviews_page_section .select_block {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .reviews_page_section .select_block .wrap_search {
    width: 100%;
    max-width: 500px;
  }
  .reviews_page_section .title_mob_from,
  .reviews_page_section .title_mob_about {
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 149%;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: -15px;
  }
  .reviews_page_section .title_mob_from {
    margin-bottom: 8px;
  }
  .reviews_page_section .card_review > .wrap_card {
    flex-direction: column;
  }
  .reviews_page_section .card_review .col.review_block .grade_block {
    flex-flow: column wrap;
  }
  .reviews_page_section .card_review .col.photo_block {
    display: flex;
    flex-flow: row nowrap;
    gap: 11px;
  }
  .reviews_page_section .card_review .col.photo_block .image_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .reviews_page_section .card_review .col.photo_block .image_wrap .rating {
    margin-left: 0;
    padding-left: 7px;
  }
  .reviews_page_section .card_review .col.photo_block .doctor_description .name_doctor {
    margin-top: 0;
  }
}

.about-content.single-service {
  max-width: 100%;
}

.specialist_block_slider {
  margin-bottom: 50px;
}
.specialist_block_slider .wrap_block {
  position: relative;
  overflow: hidden;
}
.specialist_block_slider .swiper-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 27px;
}
.specialist_block_slider .card_specialist {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  flex: 1;
}
.specialist_block_slider .card_specialist .photo_block {
  position: relative;
  overflow: hidden;
  border-radius: 44px 44px 44px 0;
  margin-bottom: 23px;
}
.specialist_block_slider .card_specialist .photo_block img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}
.specialist_block_slider .card_specialist .rating {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  left: 8px;
  bottom: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 11px 11px 11px 0;
  padding: 4px 8px;
}
.specialist_block_slider .card_specialist .rating .rating_number {
  font-weight: 600;
  font-size: 12px;
}
.specialist_block_slider .card_specialist .post_title .name {
  font-weight: 600;
  font-size: 19px;
  line-height: 117%;
  margin-bottom: 9px;
}
.specialist_block_slider .card_specialist .post_title .job_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 149%;
  margin-bottom: 14px;
}
.specialist_block_slider .card_specialist .wrap_btn {
  margin-top: auto;
}
.specialist_block_slider .standart_btn {
  padding-top: 8px;
  padding-bottom: 8px;
}
.specialist_block_slider .swiper-button-custom-next,
.specialist_block_slider .swiper-button-custom-prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  bottom: 0;
}
.specialist_block_slider .swiper-button-custom-next.swiper-button-disabled,
.specialist_block_slider .swiper-button-custom-prev.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.specialist_block_slider .swiper-button-custom-next,
.specialist_block_slider .swiper-button-custom-prev {
  cursor: pointer;
}
.specialist_block_slider .swiper-button-custom-next .img_wrap,
.specialist_block_slider .swiper-button-custom-prev .img_wrap {
  z-index: 2;
  background-color: white;
  height: 100%;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialist_block_slider .swiper-button-custom-next .box_shadow,
.specialist_block_slider .swiper-button-custom-prev .box_shadow {
  z-index: 1;
  border-radius: 20px;
  height: 97%;
  width: 6px;
  filter: blur(12px);
  background: #000;
  opacity: 0.4;
  align-self: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.specialist_block_slider .swiper-button-custom-next {
  right: 0;
}
.specialist_block_slider .swiper-button-custom-prev {
  left: 0;
}
.specialist_block_slider .btn_block_mobile {
  display: none;
}
@media screen and (max-width: 610px) {
  .specialist_block_slider .swiper-button-custom-next.desktop,
  .specialist_block_slider .swiper-button-custom-prev.desktop {
    display: none;
  }
  .specialist_block_slider .swiper-button-custom-next,
  .specialist_block_slider .swiper-button-custom-prev {
    position: static;
    width: fit-content;
    height: fit-content;
  }
  .specialist_block_slider .swiper-button-custom-next.swiper-button-disabled,
  .specialist_block_slider .swiper-button-custom-prev.swiper-button-disabled {
    opacity: 1;
    pointer-events: all;
  }
  .specialist_block_slider .btn_block_mobile {
    display: flex;
    flex-flow: row nowrap;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    gap: 30px;
    margin-top: 38px;
  }
  .specialist_block_slider .btn_block_mobile img {
    width: 12px;
    height: 22px;
  }
}

.feedback_reception_section .wrap_section {
  padding: 43px 23px 121px 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-top-right-radius: 30px;
}
@media screen and (max-width: 610px) {
  .feedback_reception_section .wrap_section {
    padding: 21px 18px 100px 18px;
  }
}
.feedback_reception_section .wrap_section h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 117%;
  color: #000;
}
@media screen and (max-width: 610px) {
  .feedback_reception_section .wrap_section h1 {
    font-size: 18px;
  }
}
.feedback_reception_section .wrap_section .inputs_main_block {
  max-width: 388px;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}
.feedback_reception_section .rating_block_reception {
  display: flex;
  flex-flow: column nowrap;
  gap: 13px;
  justify-content: flex-start;
}
.feedback_reception_section .rating_block_reception .rating_wrap {
  width: fit-content;
}
.feedback_reception_section .rating_block_reception .rating_wrap label svg {
  width: 24px;
  height: 24px;
}
.feedback_reception_section .qwiz_block {
  display: flex;
  flex-flow: column nowrap;
  gap: 13px;
}
.feedback_reception_section .qwiz_block .input_wrap {
  display: flex;
  flex-flow: row nowrap;
  gap: 29px;
}
@media screen and (max-width: 610px) {
  .feedback_reception_section .qwiz_block .input_wrap {
    gap: 14px;
  }
}
.feedback_reception_section .qwiz_block .input_wrap.column {
  flex-direction: column;
}
@media screen and (max-width: 610px) {
  .feedback_reception_section .qwiz_block .input_wrap {
    flex-direction: column;
  }
}
.feedback_reception_section form {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
}
.feedback_reception_section form textarea {
  max-width: 660px;
}
.feedback_reception_section form input[type=text] {
  width: 100%;
  background-color: transparent;
}
.feedback_reception_section form .narrow {
  max-width: 340px;
  height: 47px;
}
.feedback_reception_section form .error_message {
  font-weight: 400;
  font-size: 14px;
  line-height: 149%;
  color: #dc2929;
  margin-top: 6px;
  margin-bottom: -8px;
}
.feedback_reception_section form .error {
  border-color: #dc2929;
}
.feedback_reception_section .status_popup {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease;
}
.feedback_reception_section .status_popup.desabled {
  opacity: 0;
  pointer-events: none;
}
.feedback_reception_section .status_popup .wrap_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 20;
  border-radius: 65px 0 65px 65px;
  box-shadow: 0 24px 64px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 660px) {
  .feedback_reception_section .status_popup .wrap_popup {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 33px 0 33px 33px;
  }
}
.feedback_reception_section .status_popup .header_popup {
  position: relative;
  padding: 50px 31px 48px 64px;
  width: 600px;
  display: flex;
  flex-flow: column nowrap;
  gap: 18px;
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .feedback_reception_section .status_popup .header_popup {
    gap: 14px;
  }
}
.feedback_reception_section .status_popup .header_popup .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 117%;
  color: #000;
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .feedback_reception_section .status_popup .header_popup .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 660px) {
  .feedback_reception_section .status_popup .header_popup {
    width: 100%;
    max-width: 100%;
    padding: 37px 27px 45px 29px;
  }
}
.feedback_reception_section .status_popup .header_popup .check_header {
  margin-bottom: 17px;
  height: 95px;
  width: 95px;
}
@media screen and (max-width: 660px) {
  .feedback_reception_section .status_popup .header_popup .check_header {
    width: 69px;
    height: 69px;
    width: 69px;
    margin-bottom: 16px;
  }
}
.feedback_reception_section .status_popup .close_popup {
  margin-left: auto;
  position: absolute;
  right: 39px;
  top: 28px;
}
.feedback_reception_section .status_popup .popUp_overlay {
  position: fixed;
  inset: 0;
  z-index: 19;
  background-color: rgba(0, 0, 0, 0.25);
}
.feedback_reception_section .preloader {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.feedback_reception_section .preloader.visible {
  display: flex;
}
.feedback_reception_section .preloader {
  /* HTML: <div class="loader"></div> */
}
.feedback_reception_section .preloader .loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat
    radial-gradient(circle closest-side, rgb(135, 185, 145) 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}

.cases_section {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 75px;
  margin-bottom: 95px;
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section {
    margin-top: 53px;
    margin-bottom: 47px;
  }
}
@media screen and (max-width: 610px) {
  .cases_section {
    margin-top: 53px;
    margin-bottom: 47px;
  }
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section {
    width: 93%;
  }
}
@media screen and (max-width: 610px) {
  .cases_section {
    width: 93%;
  }
}
.cases_section .header_wrap h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 117%;
  text-align: center;
  color: #000;
  margin-bottom: 47px;
  text-align: center;
}
.cases_section .content_wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section .content_wrap {
    gap: 30px;
  }
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section .content_wrap .btn_nav_wrap {
    display: none;
  }
}
@media screen and (max-width: 610px) {
  .cases_section .content_wrap .btn_nav_wrap {
    display: none;
  }
}
.cases_section .content_wrap .btn_nav_wrap button {
  width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  border-radius: 100%;
  border: none;
  outline: none;
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section .content_wrap .btn_nav_wrap button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section .content_wrap .btn_nav_wrap button svg {
    width: 7px;
  }
}
.cases_section .cases_block_slider {
  max-width: 984px;
  overflow: hidden;
}
.cases_section .case {
  background: #f7f7f7;
  border-radius: 93px 0 0 0;
  overflow: hidden;
  height: auto;
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section .case {
    border-radius: 75px 0 0 0;
  }
}
@media screen and (max-width: 610px) {
  .cases_section .case {
    border-radius: 75px 0 0 0;
  }
}
.cases_section .case .images_block {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}
.cases_section .case .images_block .img_wrap {
  flex: 1;
  overflow: hidden;
  height: 283px;
}
.cases_section .case .images_block .img_wrap img {
  object-fit: cover;
  width: 200%;
  height: 100%;
  display: block;
  max-width: unset;
}
.cases_section .case .images_block .img_wrap.next {
  border-left: 1px solid #fff;
}
.cases_section .case .images_block .img_wrap.next img {
  transform: translateX(-50%);
}
.cases_section .case .description_block {
  padding: 30px 30px 45px 30px;
  height: 100%;
}
.cases_section .case .description_block h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 130%;
  color: #000;
  margin: 0;
  margin-bottom: 10px;
}
.cases_section .case .description_block p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: #000;
  margin-bottom: 19px;
}
.cases_section .case .description_block ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}
.cases_section .case .description_block ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: #000;
}
.cases_section .swiper-pagination {
  position: static !important;
  margin-top: 30px;
  display: none;
}
@media screen and (min-width: 611px) and (max-width: 1000px) {
  .cases_section .swiper-pagination {
    display: block;
  }
}
@media screen and (max-width: 610px) {
  .cases_section .swiper-pagination {
    display: block;
  }
}

/*# sourceMappingURL=wp_dev_style.css.map */
