/*
Theme Name: pozvonok 
*/
:root {
  --black: #272D2D;
  --light-black: #363A3A;
  --white: #fff;
  --primary: #0D897F;
  --light-green: #E1EFEF;
  --grey: #F5F5F5;
  --light-grey: #F9F9F9;
  --border-grey: #DFDFDF;
  --orange: #F3B136;
  --dark-gray: #797979;
}

@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish-SemiBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

html,
body,
div,
object,
iframe,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
fieldset,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea,
input,
li,
ul,
ol,
select {
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  line-height: 1.3;
  font-family: "Mulish", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white)
}

em {
  font-style: italic;
  font-family: sans-serif;
}

a {
  transition: all 0.3s ease;
  color: var(--white)
}

button {
  transition: all 0.3s ease;
}

p {
  margin-bottom: 10px;
}

p:last-of-type {
  margin-bottom: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

header,
footer,
main {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px
}

main {
  flex: 1;
}

footer {
  margin-top: 110px
}

.fcfb-form button.fcfb-submit-form,
.btn {
  height: 44px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  padding: 8px 40px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
}

a:hover,
button:hover,
.btn:hover {
  opacity: .7 !important;
  cursor: pointer;
}

.owl-stage {
  display: flex !important;
  padding-left: 1px;
  padding-right: 1px;
}

h1 {
  font-size: 42px;
  font-weight: 700;
}

.template-body-loaded {
  opacity: .1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 50px;
  gap: 20px;
}

.icon {
  display: inline-block;
  font-size: 16px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-green-arrow-left {
  background: url(img/green-arrow-left.svg) no-repeat;
  background-size: 15px;
  width: 15px;
  height: 13px;
}

.icon-green-arrow-right {
  background: url(img/green-arrow-right.svg) no-repeat;
  background-size: 15px;
  width: 15px;
  height: 13px;
}

.icon-black-arrow-right {
  background: url(img/black-arrow-right.svg) no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.icon-white-arrow-left {
  background: url(img/white-arrow-left.svg) no-repeat;
  background-size: 15px;
  width: 15px;
  height: 13px;
}

.icon-white-arrow-right {
  background: url(img/white-arrow-right.svg) no-repeat;
  background-size: 15px;
  width: 15px;
  height: 13px;
}

.icon-telephone-handset {
  background: url(img/telephone-handset.svg) no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.icon-close-green {
  background: url(img/close-green.svg) no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;
}

.icon-check-circle {
  background: url(img/check-circle.svg) no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.content li {
  padding: 0 0 7px 20px;
  position: relative;
}

.content ol li::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.content ol {
  counter-reset: num;
  margin-top: 10px;
  margin-bottom: 10px;
}

.content ol>li {
  counter-increment: num;
}

.content ol>li::before {
  content: counter(num)'.';
}

.content ol ol {
  counter-reset: num2;
  margin-top: 15px;
}

.content ol ol>li {
  counter-increment: num2;
}

.content ol ol>li::before {
  content: counter(num) '.' counter(num2);
  margin-left: -10px;
}

.content ul li {
  padding: 0 0 6px 5px;
  position: relative;
  margin-left: 12px;
}

.content ul {
  margin-top: 15px;
  margin-left: 10px;
  margin-bottom: 15px;
}

.content ul>li {
  list-style-type: disc;
}

.content ul ul>li {
  list-style-type: circle;
}

.content ul.document li a {
  color: var(--primary);
  text-decoration: underline;
}

.content p {
  margin-bottom: 10px;
}

.content p:last-of-type {
  margin-bottom: 0;
}

.content a {
  text-decoration: underline;
  color: var(--primary);
}

.content blockquote {
  padding-left: 20px;
  border-left: 4px solid var(--primary);
  margin: 25px 0;
  color:  var(--primary);
}

.content h2 {
  font-weight: 600;
  color: var(--black);
  font-size: 30px;
  margin-top: 36px;
  margin-bottom: 25px;
}

.content h3 {
  font-weight: 600;
  color: var(--black);
  font-size: 25px;
  margin-top: 36px;
  margin-bottom: 25px;
}

.content h4 {
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  margin-top: 36px;
  margin-bottom: 15px;
}

.content h5 {
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  margin-top: 36px;
  margin-bottom: 15px;
}

.content ol h3 {
  margin-bottom: 12px;
  margin-top: 20px;
}

.top-bar {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  height: 62px;
  margin-right: 30px;
}

.logo-icon a {
  display: table;
  line-height: 0
}

.logo-signature {
  font-size: 16px;
  color: var(--primary);
  line-height: 1.3;
  border-left: 1px solid var(--border-grey);
  padding-left: 15px;
  max-width: 200px;
font-weight: 600;	
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon .social-icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  transition: opacity 0.2s;
  background-size: 30px !important;
  ;
  background-position: 50% !important;
}

.social-icons-block {
  display: flex;
  gap: 20px;
}

.social-icons-block .social-icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  transition: opacity 0.2s;
}

.social-icon .fa {
  font-size: 23px;
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info {
  font-size: 14px;
  margin-left: auto;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone {
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  padding-left: 25px;
  background: url(img/proicons_phone.svg) no-repeat -5px 1px;
  background-size: 23px;
}

.phone i {
  font-size: 18px;
  color: #555;
}

.hours {
  color: var(--black);
  margin-bottom: 2px;
	margin-top:5px;
  font-size: 16px;
}

.callback-link {
  color: var(--primary);
  font-size: 16px;
}

.cta-button {
  padding: 18px 67px;
}

.bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-grey);
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.main-nav li {
  margin-right: 30px;
}

.main-nav a {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  color: #333;
  position: relative;
  font-weight: 500
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.accessibility-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 18px;
  flex-shrink: 0;
  background: url(img/eye.svg) no-repeat 0 5px;
  padding-left: 25px;
  background-size: 20px;
  font-weight: 500;
}

.accessibility-link i {
  font-size: 18px;
}

.site-footer {
  background-color: var(--black);
  padding: 40px 20px;
  border-radius: 16px;
}

.footer-container {
  display: flex;
  gap: 20px;
}

.footer-column {
  background-color: var(--light-black);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  flex: 1;
  gap: 20px;
}

.visually-impaired-link {
  display: block;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
  background: url(img/eye-white.svg) no-repeat 0 1px;
  background-size: auto;
  padding-left: 35px;
  background-size: 26px;
}

.visually-impaired-link span {
  margin-right: 8px;
  font-weight: 700;
}

.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 16px;
}

.footer-legal-links li {
  margin-bottom: 8px;
}

.footer-legal-links li:last-child {
  margin-bottom: 0;
}

.footer-legal-links span,
.footer-legal-links a {
  color: var(--border-grey)
}

.footer-contact-info a {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
  width: 100%;
}

.footer-nav li {
  margin-bottom: 10px;
  width: calc(50% - 10px)
}

.footer-nav a {
  font-size: 18px;
  font-weight: 500;
}

.privacy-policy-link {
  font-size: 16px;
  color: var(--border-grey);
  margin-top: 20px;
  display: inline-block;
}

.footer-logo-icon {
  margin: 0 auto;
  display: table;
  margin-bottom: 30px
}

.home-top-block {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.htb-sidebar {
  display: flex;
  flex-direction: column;
  width: 500px;
  gap: 20px;
  min-width: 450px;
  overflow: hidden;
}

.htb-slider {
  width: 100%;
}

.htb-slider:has(+ .htb-sidebar) {
  width: calc(100% - 520px);
  height: 591px;
}

.hts-slider-wrapper {
  position: relative;
  height: 100%;
}

.hts-slider,
.owl-stage-outer,
.owl-stage {
  height: 100%;
}

.hts-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  flex-direction: column;
  height: 591px
}

.htb-slider .owl-dots {
  display: none
}

.hts-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hts-slide__content {
  position: relative;
  z-index: 2;
  max-width: 80%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.hts-slide__title {
  font-size: 42px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 110%;
}

.hts-slide__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hts-slide__content p {
  font-size: 18px;
  padding-bottom: 25px;
}

.hts-slide__content li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 44px;
  background: url(img/check-circle.svg) no-repeat;
  background-size: 31px 31px;
  background-position: left center;
  padding-top: 3px;
  padding-bottom: 3px;
}

.hts-slide__list-item:last-child {
  margin-bottom: 0;
}

.hts-slide__list-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.hts-dotted-underline {
  padding-bottom: 2px;
}

.hts-slider-wrapper .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  pointer-events: none;
}

.hts-slider-wrapper .owl-nav .owl-prev,
.hts-slider-wrapper .owl-nav .owl-next {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent !important;
  color: #fff !important;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.hts-slider-wrapper .owl-nav .owl-prev:hover,
.hts-slider-wrapper .owl-nav .owl-next:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff;
}

.hts-promo-section {
  width: 100%;
  position: relative;
  height: 100%;
}

.hts-promo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  width: 100%;
  left: 20px;
  z-index: 7;
  top: 20px;
}

.hts-promo-nav {
  display: flex;
  gap: 10px;
}

.hts-promo-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}

.hts-promo-all-btn {
  background-color: #fff;
  color: var(--black);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid #eee;
  transition: all 0.3s;
  border: 1px solid var(--border-grey);
  margin-left: 5px
}

.hts-promo-slide {
  display: flex;
  background-color: var(--light-green);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 390px;
  flex-direction: column;
  height: 100%;
}

.hts-promo-slide__content {
  padding: 20px 30px;
  z-index: 2;
  margin-top: auto;
  width: 70%;
}

.hts-promo-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--orange);
  border-radius: 20px;
  padding: 5px 20px 5px 5px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  white-space: nowrap;
  /*! align-items: flex-start; */
}

.hts-promo-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: var(--orange);
  border-radius: 50%;
  margin-right: 10px;
  font-weight: 700;
  margin-left: 15px;
}

.sale-single-end {
  padding: 5px 20px;
}

.hts-promo-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hts-promo-price__old {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.hts-promo-price__new {
  font-size: 28px;
  font-weight: 700;
  color: var(-black);
}

.hts-promo-slide__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  padding: 0;
  margin: 0;
  z-index: 1;
  max-width: 200px
}

.hts-promo-slide__image img {
  object-fit: cover;
  width: 100%;
  height: 100%
}

.hts-promo-slider .owl-nav {
  display: none;
}

.alfa-insurance-banner {
  width: 100%;
  position: relative
}

.alfa-insurance-banner .owl-dots {
  bottom: 9px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.alfa-insurance-banner .owl-dots .owl-dot span {
  background-color: var(--grey);
}

.alfa-insurance-banner-item {
  height: 181px;
  display: flex;
  border-radius: 16px;
  align-items: center;
  background-color: var(--light-green);
  padding: 10px 28px;
  justify-content: center;
}

.alfa-insurance-banner img {
  width: 100%;
  max-width: 328px;
  height: auto;
}

.hsv-block-items {
  display: flex;
  gap: 20px
}

.hsv-card {
  background-color: var(--light-green);
  border-radius: 16px;
  padding: 24px 28px;
  box-sizing: border-box;
  flex: 1;
}

.hsv-bts {
  display: block;
  text-align: center;
  margin-top: 40px
}

.hsv-card-header {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.hsv-card__title {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
}

.hsv-card__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hsv-card__list-item {
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.hsv-card__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #008e82;
  border-radius: 50%;
}

.hsv-card__link {
  color: var(--primary);
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px dotted var(--primary);
}

.block-doctors-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.block-doctor-items {
  display: flex;
  gap: 20px;
    position: relative;
}


  .block-doctor-items .owl-nav .owl-prev {
    position: absolute;
    top: calc(50% - 24px);
    left: 10px
  }

  .block-doctor-items .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    top: calc(50% - 24px);
  }

  .block-doctor-items .owl-dot {
    display: none
  }

  .block-doctor-items .owl-nav .owl-next .icon-green-arrow-right {
    background: url(/wp-content/themes/pozvonok/img/white-arrow-right.svg) no-repeat;
    background-size: 15px;
  }

  .block-doctor-items .owl-nav .owl-prev .icon-green-arrow-left {
    background: url(/wp-content/themes/pozvonok/img/white-arrow-left.svg) no-repeat;
    background-size: 15px;
  }

.hsv-doctor-card {
  position: relative;
  width: calc(25% - 15px);
  border-radius: 16px;
  overflow: hidden;
  color: #212529;
  aspect-ratio: 10/ 18;
}

.hsv-doctor-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hsv-doctor-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--white);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hsv-doctor-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  margin: 8px;
  background-color: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  /*! min-height: 111px; */
}

.hsv-doctor-card__name {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.hsv-doctor-card__spec {
  margin: 0;
  font-size: 16px;
  color: var(--dark-gray);
}

.hsv-doctor-card__prices {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border-grey);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hsv-doctor-card__prices:first-of-type {
  margin: 10px 0 0;
  padding: 6px 0 0;
  border-top: 1px none;
}

.booking-form-container .hsv-doctor-card__prices,
.home .hsv-doctor-card__prices {
  display: none
}

.hsv-doctor-card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

.hsv-doctor-card__price+.hsv-doctor-card__price {
  border-top: 1px solid var(--border-grey);
  padding-top: 6px;
}

.hsv-doctor-card__price-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.hsv-doctor-card__price-value {
  white-space: nowrap;
  font-weight: 700;
}

.hoi-gallery-flex {
  display: flex;
  gap: 8px;
  overflow: hidden;
  flex-wrap: wrap;
  max-width: 800px;
}

.hoi-block-about {
  display: flex;
  gap: 20px
}

.hoi-gallery-row {
  display: flex;
  gap: 8px;
}

.hoi-gallery-item {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  width: calc(50% - 4px)
}

.hoi-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hoi-priorities-block {
  background-color: var(--light-grey);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hoi-priorities-block p {
  color: var(--black);
  font-size: 26px;
  margin: 0 0 40px 0;
}

.hoi-priorities-block strong,
.hoi-priorities-block a {
  color: var(--primary);
  font-weight: 400;
}

.hoi-priorities-block ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hoi-priorities-block ul li {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  padding-left: 44px;
  background-image: url(img/lucide_heart-plus.svg);
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  min-height: 28px;
  line-height: 28px;
}

.hmap-container {
  position: relative;
  background-color: var(--grey);
  width: 100%;
  min-height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

.hmap-container iframe {
  width: 100%
}

.hmap-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--primary);
  color: var(--white);
  padding: 24px;
  border-radius: 16px;
  height: 100%;
}

.hmap-container .hmap-info-blocks {
  position: absolute;
  top: 40px;
  left: 40px;
  max-width: 350px;
  overflow: hidden;
  width: 100%
}

.hmap-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding-left: 32px;
  background-image: url(img/basil_location-outline.svg );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px;
}

.hmap-details {
  font-size: 16px;
  margin: 0;
}

.hmap-phone {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding-left: 32px;
  background-image: url(img/proicons_phone_white.svg );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px;
}

.hmap-social-bottmm {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hmap-mail {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding-left: 32px;
  background-image: url(img/proicons_mail_white.svg );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px;
}

.hmap-route-link {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px dotted var(--white);
  padding-bottom: 2px;
  align-self: flex-start;
}

.hmap-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hmap-social-icons .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-blocks {
  display: flex;
  gap: 20px;
}

.map-blocks  .owl-dots{
 margin-top: 10px;
}


.map-block {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.map-blocks>.hmap-info-block {
  width: 100%;
}

.frmv-callback-block {
  background-color: var(--primary);
  border-radius: 16px;
  padding: 49px 55px;
  min-height: 380px;
  overflow: hidden;
  background-image: url('img/woman-form.png'), url('img/circle-3 1.png');
  background-repeat: no-repeat;
  background-position:
    right 80px bottom,
    right -150px bottom -150px;
  background-size:
    auto 420px,
    800px;
  margin-top: 110px;
}

.frmv-content {
  max-width: 68%;
}

.frmv-title {
  color: var(--white);
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.frmv-description {
  color: var(--white);
  font-size: 18px;
  max-width: 65%;
  margin: 0 0 32px 0;
}

.frmp-block {
  display: flex;
  gap: 20px;
  height: 577px;
}

.frmp-img {
  overflow: hidden;
  border-radius: 16px;
  width: calc(50% - 10px)
}

.frmp-callback-block {
  position: relative;
  background-color: var(--grey);
  padding: 50px 70px;
  border-radius: 16px;
  width: calc(50% - 10px)
}

/*.frmp-callback-block-inner {
  width: 77%;
}*/

.frmp-description {
  font-weight: 600;
  font-size: 26px;
}

.block {
  margin-top: 110px
}

.block-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin: 0 0 50px 0;
}

.block-title-left {
  font-size: 38px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 50px 0;
}

.ftr-container {
  display: flex;
  gap: 20px;
}

.ftr-item {
  flex: 1;
  display: flex;
  gap: 24px;
  background-color: var(--light-green);
  border-radius: 16px;
  padding: 24px;
  flex-direction: column;
}

.ftr-icon-wrapper {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background-image: url('img/number-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.ftr-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.ftr-text {
  font-size: 18px;
  color: var(--black);
  margin-top: auto;
}

.ftr-text a {
  color: var(--primary);
  text-decoration: none;
}

.prm-slider .owl-nav,
.lic-slider .owl-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center
}

.prm-slider .owl-nav button.owl-prev,
.prm-slider .owl-nav button.owl-next,
.lic-slider .owl-nav button.owl-prev,
.lic-slider .owl-nav button.owl-next {
  border: 1px solid var(--primary) !important;
}

.lic-item,
.rev-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lic-slider-img {
  background-color: var(--grey);
  border-radius: 16px;
  aspect-ratio: 1000/ 1090;
  align-items: center;
  justify-content: center;
  padding: 20px;
  display: flex;
  margin-bottom: 15px
}

.lic-slider-text {
  font-size: 18px;
  color: var(--black);
}

.lic-slider-nav,
.rev-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  border: 1px solid var(--white) !important;
  background: transparent !important;
  font-size: 18px !important;
}

.owl-nav button.owl-prev {
  order: 1;
}

.owl-dots {
  order: 2;
}

.owl-nav button.owl-next {
  order: 3;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background-color: var(--light-green);
  display: inline-table;
  border-radius: 50%;
}

.owl-dots .owl-dot.active span {
  background: var(--primary);
}

.rev-slider {
  position: relative;
}

.rev-slider .owl-nav .owl-prev {
  position: absolute;
  top: calc(50% - 22px);
  left: 0;
}

.rev-slider .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: calc(50% - 22px);
}

.rev-slider .owl-nav button.owl-prev,
.rev-slider .owl-nav button.owl-next {
  background: #F9F9F9D6 !important;
  border: 1px solid var(--primary) !important;
}

.rev-slider .owl-dots {
  margin-top: 20px;
}

.rev-add-btn {
  margin-top: 20px;
}

.rev-add-bts {
  text-align: center;
}

.rev-item {
  background-color: var(--light-grey);
  border: 1px solid var(--border-grey);
  border-radius: 16px;
  padding: 24px;
}

.rev-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 15px;
}

.rev-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px;
}

.rev-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.stars-wrapper {
  display: flex;
  gap: 4px;
}

.rev-date {
  color: var(--dark-gray);
}

.rev-text {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 24px;
}

.rev-footer {
  margin-top: auto;
  display: flex;
  gap: 24px;
  padding-top: 16px;
  color: var(--dark-gray);
  justify-content: space-between;
}

.rev-footer-item a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: dotted;
}

.acc-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acc-item {
  background-color: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 16px;
  overflow: hidden;
}

.acc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
}

.acc-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.acc-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}

.acc-salary {
  background-color: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 26px;
  white-space: nowrap;
}

.acc-toggle-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.acc-toggle-icon {
  width: 24px;
  height: 24px;
  background-image: url('img/mynaui_plus-solid.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.acc-item.active .acc-toggle-icon {
  transform: rotate(45deg);
}

.acc-body {
  display: none;
}

.acc-content {
  padding: 0 24px 24px 24px;
  color: var(--black);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}

ul.acc-content {
  padding-top: 20px;
}

ul.acc-content li {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-grey);
  padding-bottom: 20px;
  line-height: 100%
}

ul.acc-content li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

ul.acc-content a {
  color: var(--black);
  font-weight: 600;
}

.acc-content-section-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 24px;
}

.acc-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sty-story-block {
  display: flex;
  background-color: var(--white);
  min-height: 500px;
  gap: 20px;
  align-items: start;
}

.sty-text-column {
  padding: 30px;
  color: var(--black);
  flex: 1;
  border-radius: 16px;
  background-color: var(--light-grey);
  font-size: 18px;
}

.sty-image-column {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  line-height: 0;
}

.sty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prc-block {
  max-width: 1580px;
  margin: 0 auto;
}

.prc-tabs-nav {
  display: flex;
  gap: 8px;
  background-color: var(--light-green);
  padding: 8px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.prc-tab-btn {
  flex: 1;
  border: none;
  background-color: transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  color: var(--black);
  font-weight: 500;
  transition: all 0.3s ease;
  height: 62px
}

.prc-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.prc-tab-panel {
  display: none;
}

.prc-tab-panel.active {
  display: block;
}

.page-id-41 .prc-specialists-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-id-37 .prc-specialists-grid {
  column-count: 3;
  column-gap: 20px;
}

.prc-specialist-card {
  border: 1px solid var(--border-grey);
  border-radius: 16px;
  padding: 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--light-grey);
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
}

.prc-specialist-card-header {
  display: flex;
  gap: 20px;
}

.prc-card-photo {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.prc-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prc-card-info {
  flex-grow: 1;
}

.prc-card-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-direction: column;
  gap: 10px;
}

.prc-category-badge {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 5px 18px;
  border-radius: 26px;
  font-weight: 500;
  background-color: var(--white);
}

.prc-role {
  color: var(--dark-gray);
  gap: 20px;
}

.prc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 24px 0;
}

.prc-price-list-header {
  display: flex;
  justify-content: space-between;
  color: var(--dark-gray);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-grey);
  margin-bottom: 8px;
}

.prc-price-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border-grey);
  gap: 10px;
}

.prc-price-list-end .prc-price-item {
  border-bottom: none;
  padding-bottom: 0
}

.prc-price-item:nth-child(n+4) {
  display: none;
}

.prc-price-item-name {
  color: var(--black);
}

.prc-price-item-cost {
  color: var(--black);
  font-weight: 700;
  white-space: nowrap;
}

.prc-toggle-prices {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted var(--primary);
  cursor: pointer;
}

.dprc-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.dpsb-sidebar {
  width: 370px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
}

.dpsb-nav-item a {
  display: block;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  transition: all 0.3s ease;
  background: var(--light-grey);
}

.dpsb-nav-item a.active {
  background: var(--light-green);
  color: var(--primary);
}

.dpsb-nav-item:not(:last-child) {
  margin-bottom: 8px;
}

.dpsb-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dpct-content {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dpct-block-repeat {
  background: var(--light-grey);
  border-radius: 16px;
  padding: 24px;
  /*! padding-left: 44px; */
}

.dpsc-block {
  font-size: 18px;
}

.dpct-block-repeat h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--black);
}

.dpab-wrapper {
  display: flex;
  gap: 20px;
}

.dpab-info {
  flex-grow: 1;
  background: var(--light-green);
  border-radius: 16px;
  padding: 24px;
}

.dpab-info h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
}

.dpab-specialty {
  margin-top: 4px;
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.dpab-address {
  display: table;
  align-items: center;
  padding: 8px 16px 8px 44px;
  background-color: var(--white);
  border-radius: 16px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  background-image: url('img/basil_location-green.svg');
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 20px 20px;
}

.dpab-address span:after {
  content: ', '
}

.dpab-address span:last-of-type:after {
  display: none
}

.dpab-desc {
  margin-top: 24px;
  font-size: 18px;
  color: var(--light-black);
}

.dpab-prices {
  margin-top: 32px;
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  padding: 20px 0;
}

.dpab-price-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}
 
.dpab-price-item:not(:last-child) {
  margin-bottom: 16px;
}

.dpab-price-name {
  font-size: 18px;
  color: var(--light-black);
  font-weight: 700;
}

.dpab-price-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.dpab-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.dpab-price-from {
  color: var(--primary);
}

.dpab-price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
}

.dpab-price-new {
  color: #e74c3c;
  font-weight: 600;
}

.dpab-price-discount {
  background: #e74c3c;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85em;
  font-weight: 600;
}

.dprc-btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
}

.dprc-btn-secondary-rw {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.dpab-photo-wrapper {
  position: relative;
  width: 30%;
  flex-shrink: 0;
}

.dpab-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.dpab-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.dped-list,
.dpex-list {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.dped-item,
.dpex-item {
  display: flex;
  position: relative;
  padding-left: 50px;
  /*! gap: 40px; */
}



 
 


.dped-item:has(+ .dped-item)::before,
.dpex-item:has(+ .dpex-item)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 40px;
  bottom: -25px;
  width: 1px;
  background-image: repeating-linear-gradient(var(--primary) 0, var(--primary) 10px,
      transparent 10px, transparent 15px);
}

.dped-item:has(+ .dped-item[style*="display: none"])::before,
.dpex-item:has(+ .dpex-item[style*="display: none"])::before {
  display: none;
}

.dped-icon,
.dpex-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
}

.dped-info, 
.dpex-info {
  display: flex;
  flex-direction: column;
  gap: 8px; 
  padding-top: 2px;
}

.dped-year,
.dpex-year {
  font-size: 16px;
  color: var(--dark-gray);
  /*! margin-top: 8px */
}

.dped-title,
.dpex-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.dped-specialty,
.dpex-specialty {
  font-size: 16px;
  color: var(--dark-gray);
  /*! margin-top: 8px; */
}
 
.dpct-toggle,
.dped-toggle,
.dpex-toggle {
  display: inline-block;
  font-size: 16px;
  color: var(--primary);
  border-bottom: 1px dashed var(--primary);
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 40px;
}

.dpcert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.dpcert-item {
  width: calc(100%/3 - 15px);
  min-width: 250px;
}

.dpcert-image {
  width: 100%;
  height: 240px;
  background-color: var(--grey);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.dpcert-image+.dpcert-caption {
  margin-top: 16px;
}

.dpcert-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.dpcert-caption {
  font-size: 16px;
  color: var(--light-black);
}

.dpsv-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-left: 22px;
}

.dpsv-list>li {
  list-style-type: disc;
  color: var(--primary);
  width: calc(50% - 10px);
  font-size: 18px;
}

.dpsv-item a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}

.block-article-items {
  display: flex;
  gap: 20px;
  flex: 1
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  max-width: 540px;
  background-color: var(--light-grey);
}

.post-card-image {
  background: #ddd
}

.post-card-image {
  width: 100%;
  aspect-ratio: 14 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.post-card-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%
}

.post-card-content {
  padding: 24px;
  padding-bottom: 0;
}

.post-card-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.post-card-excerpt {
  font-size: 18px;
  color: var(--dark-gray);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: auto;
  padding: 24px;
  gap: 20px;
}

.post-card-date {
  font-size: 18px;
  color: var(--dark-gray)
}

.post-card-author-label {
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.post-card-author-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.post-card-readmore {
  display: flex;
  align-items: center;
  color: var(--primary);
  border-bottom: 1px dotted var(--primary);
  padding-bottom: 2px;
  font-size: 18px;
  /*! margin-left: auto; */
  flex-shrink: 0;
  margin-bottom: -3px;
}

.post-card-author+.post-card-readmore {
  font-size: 16px;
}

.post-card-readmore::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-image: url(img/clarity_arrow-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-filter-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-filter-search {
  position: relative;
}

.page-filter-search-icon {
  position: absolute;
  left: 20px;
  top: 32px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.page-filter-search-input {
  background-color: var(--light-grey);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  padding: 14px 20px 14px 50px;
  width: 480px;
  font-size: 16px;
  color: var(--black);
  height: 62px;
}

.page-filter-search-input:focus {
  outline: 1px solid var(--primary);
}

.page-filter-search-input::placeholder {
  color: #9A9A9A;
}

.page-filter-search-input:focus {
  outline: 1px solid var(--fcfb-border) !important;
  border: 1px solid var(--fcfb-border) !important;
  box-shadow: none !important;
}

.search-result {
  background: #fff;
  box-shadow: 0 2px 18px #bec6cb82;
  border-radius: 15px;
  padding: 20px 10px 16px 20px;
  position: absolute;
  left: 0;
  z-index: 10;
  min-width: 300px;
  width: 100%;
  display: none;
  font-size: 16px;
}

.search-result-items {
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  overflow-x: hidden;
}

.search-result-items .fcfb-search-non-result {
  text-align: center;
}

.search-result-item-title {
  color: var(--black);
  font-weight: 700;
}

.search-result-clear {
  height: 20px;
  display: table;
  width: 100%;
  margin-top: 8px;
  text-align: center;
  color: #d83939;
}

.search-result-clear span:hover {
  cursor: pointer;
  opacity: .7;
}

.page-filter-search.fcfb-searched .fcfb-searched-icon:after {
  position: absolute;
  top: 23px;
  left: 21px;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #fff;
  border-color: #999 transparent #999 transparent;
  -webkit-animation: fcfb_circle_loader 2.2s linear infinite;
  animation: fcfb_circle_loader 2.2s linear infinite;
}

.page-filter-search.fcfb-searched .page-filter-search-icon {
  display: none;
}

.search-clear-icon {
  background: var(--border-grey);
  display: none;
  width: 20px;
  min-width: 20px;
  font-family: Arial, Helvetica, sans-serif;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  -webkit-transition: .1s;
  -o-transition: .1s;
  transition: .1s;
  position: absolute;
  top: 21px;
  right: 20px;
}

.page-filter-search .page-filter-search-input:not(:-moz-placeholder-shown)+.search-clear-icon {
  display: flex;
}

.page-filter-search .page-filter-search-input:not(:-ms-input-placeholder)+.search-clear-icon {
  display: -ms-flexbox;
  display: flex;
}

.page-filter-search .page-filter-search-input:not(:placeholder-shown)+.search-clear-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-result-item {
  margin-bottom: 20px;
  margin-right: 10px;
}

.search-result-item:last-of-type {
  margin-bottom: 0;
}

.search-result-list {
  margin-top: 10px;
}

.search-result-link-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 5px 0;
  color: var(--black);
}

.search-result-link-arrow i {
  color: var(--primary);
  margin-right: 12px;
  margin-top: 1px;
  font-size: 19px;
}

.search-result-link-arrow:hover .fa {
  margin-right: 8px;
  margin-left: 4px;
}

.search-result-specialist-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-grey);
}

.search-result-specialist-info span {
  font-size: 14px;
  color: var(--black);
}

.search-result-specialist-name {
  color: var(--black);
}

.search-result-specialist-card img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-grey);
  margin-right: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.search-result-specialist-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.search-result-specialist-info p {
  color: #666;
  font-size: 14px;
}

.search-result-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.search-result-tag {
  background: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 15px;
  border: 1px solid var(--border-grey);
  color: var(--black);
}

.search-result-tag i {
  margin-right: 5px;
}

.search-result-article-links {
  margin: 15px 0;
}

.search-result-hashtag {
  font-size: 14px;
  color: var(--grey);
  margin-right: 10px;
}

.search-result-hashtag i {
  margin-right: 3px;
}

.search-result-article-tags {
  margin-top: 10px;
}

.blog-filter-container {
  position: relative;
}

.blog-filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background-color: var(--light-grey);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  user-select: none;
  height: 62px;
  min-width: 155px;
}

.blog-filter-toggle-icon {
  width: 20px;
  height: 20px;
}

.blog-filter-toggle-text {
  color: var(--black);
}

.blog-filter-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.blog-filter-count:empty {
  display: none !important;
}

.blog-filter-popup {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 380px;
  background-color: var(--white);
  background-color: var(--grey);
  border-radius: 8px;
  z-index: 100;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-filter-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background-color: var(--white);
  border-radius: 4px;
}

.blog-filter-popup-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}

.blog-filter-popup-close {
  width: 36px;
  height: 36px;
  background-color: var(--border-grey);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  color: var(--dark-gray);
}

.blog-filter-popup-close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-image: url('img/mynaui_plus-black.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transform: translate(-46%, -47%) rotate(45deg);
}

.blog-filter-form {
  max-height: 45vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-filter-group {
  background-color: var(--white);
  border-radius: 4px;
  padding: 24px;
}

.blog-filter-group:last-of-type {
  margin-bottom: 0;
}

.blog-filter-group-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.blog-filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-filter-show-more {
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  cursor: pointer;
  display: inline-block;
  margin-top: 16px;
}

.blog-filter-popup-count {
  color: var(--dark-gray);
  text-align: center;
  padding-top: 10px;
}

.blog-filter-popup-footer {
  display: flex;
  gap: 12px;
  padding: 10px;
  flex-direction: column;
}

.blog-filter-btn {
  flex: 1;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
}

.blog-filter-btn-apply {
  background-color: var(--primary);
  color: var(--white);
  height: 42px;
  font-size: 16px
}

.blog-filter-btn-reset {
  background-color: var(--white);
  color: var(--primary);
  height: 42px;
  border: 1px solid var(--primary);
  font-size: 16px
}

.blog-filter-hidden-item {
  display: none;
}

.app-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.app-checkbox input[type="checkbox"] {
  display: none;
}

.app-checkbox .app-checkbox-box {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-checkbox .app-checkbox-box::after {
  content: '';
  width: 16px;
  height: 11px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(2px, -1px);
  display: none;
}

.app-checkbox .app-checkbox-label {
  color: var(--black);
  font-size: 18px;
}

.app-checkbox input[type="checkbox"]:checked+.app-checkbox-box::after {
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  display: block
}

.app-checkbox input[type="checkbox"]:disabled+span+span {
  opacity: .4
}

.archive-post-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.block-article-items>.post-card,
.archive-post-items>.post-card {
  width: calc(33.3333% - 15px)
}

.services-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.services-filter-item {
  position: relative;
  flex: 1;
}

.services-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 0 24px;
  background-color: var(--light-grey);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.services-filter-btn.is-active {
  background-color: var(--light-green);
  border-color: var(--light-green);
}

.services-filter-btn-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

.services-filter-btn-icon {
  margin-left: 8px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-filter-btn-icon-arrow {
  width: 15px;
  height: 7px;
  transition: transform 0.3s ease;
}

.services-filter-btn.is-open .services-filter-btn-icon-arrow {
  transform: rotate(180deg);
}

.services-filter-btn-count {
  display: none;
  width: 22px;
  height: 22px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.services-filter-btn-reset-icon {
  display: none;
  width: 16px;
  height: 16px;
  position: relative;
}

.services-filter-btn-reset-icon::before,
.services-filter-btn-reset-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.services-filter-btn-reset-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.services-filter-btn-reset-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.services-filter-btn.is-active .services-filter-btn-reset-icon {
  display: block;
}

.services-filter-btn.is-active .services-filter-btn-icon-arrow {
  display: none;
}

.services-filter-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  border-radius: 16px;
  z-index: 10;
  right: 0;
  background-color: var(--light-grey);
  padding: 15px 10px;
  border-radius: 8px;
}

.services-filter-checklist {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 250px;
  overflow-y: auto;
  background-color: var(--white);
  border-radius: 4px;
}

.services-filter-show-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  cursor: pointer;
  display: inline-block;
  margin: 0 24px 16px 24px;
}

.services-filter-dropdown-footer {
  display: flex;
  gap: 12px;
  padding-top: 15px;
}

.services-filter-action-btn {
  flex: 1;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--white);
  height: 44px;
}

.services-filter-action-btn-apply {
  background-color: var(--primary);
  color: var(--white);
}

.services-filter-action-btn-reset {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.post-card-price {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
}

.sbl-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 24px;
  background-color: var(--light-grey);
  border-radius: 16px;
}

.sbl-content {
  flex: 1 1 58%;
  min-width: 0;
}

.sbl-image-wrapper {
  min-width: 0;
  margin-right: -20px;
  margin-top: -20px;
  border-radius: 16px;
  overflow: hidden;
  width: 30%;
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.sbl-image {
  width: 100%;
  height: auto;
  display: block;
}

.author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin-right: 16px;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
}

.author-date {
  font-size: 18px;
  color: var(--dark-gray)
}

.sbl-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
  margin-top: 24px;
}

.sbl-text {
  font-size: 18px;
}

.sbl-social {
  margin-top: 30px
}

.sbl-social-title {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
}

.sbl-comments-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sbl-comment-text {
  font-size: 16px;
  color: var(--light-black);
  margin-top: 15px;
}

.sbl-comments-list .author-avatar {
  width: 54px;
  height: 54px;
}

.sbl-comments-list .author-date {
  font-size: 16px;
}

.sbl-comments-count {
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 30px
}

.sbl-comments-count a {
  text-decoration: underline;
  color: var(--primary);
}

.archive-partners-items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}

.prt-card {
  width: calc(33.333% - 16px);
}

.prt-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  background-color: var(--light-green);
  border-radius: 16px;
  margin-bottom: 15px;
  padding: 20px;
}

.prt-logo {
  max-width: 100%;
  max-height: 90px;
  height: auto;
}

.prt-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.prt-desc {
  font-size: 18px;
  color: #676767;
}

.snw-card {
  display: flex;
  gap: 20px;
}

.snw-content {
  padding: 24px;
  flex: 1 1 58%;
  min-width: 0;
  background-color: var(--light-grey);
  border-radius: 16px;
  overflow: hidden;
}

.snw-image-wrapper {
  width: 41%;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
}

.snw-image-wrapper img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.snw-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.snw-date {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.snw-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 24px;
}

.snw-text {
  font-size: 18px;
  margin-bottom: 24px;
}

.snw-content>.snw-text:last-child {
  margin-bottom: 0;
}

.prm-card {
  background-color: var(--light-green);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /*! justify-content: start; */
  align-items: flex-start;
}

.prms-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
}

.prm-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.prm-price-old {
  font-size: 16px;
  color: var(--dark-gray);
  text-decoration: line-through;
}

.spr-promo-carousel .owl-dots {
  margin-top: 20px;
}

.prm-price-new {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

.prm-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  width: 100%;
}

.prm-btn-primary {
  align-items: center;
  gap: 10px;
  flex: 1;
}

.prm-btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  flex: 1;
  align-items: center;
  gap: 10px;
}

.prm-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.prm-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  min-width: 50%;
  min-width: 0;
  padding: 20px;
  background-color: var(--light-grey);
  border-radius: 16px;
  flex: 1
}

.prm-image-wrapper {
  min-width: 0;
  width: calc(50% - 20px);
  aspect-ratio: 16 / 12;
  border-radius: 16px;
  overflow: hidden;
  max-height: 600px;
  flex: 1
}

.prm-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prm-badge-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.prm-desc {
  font-size: 18px;
  margin-top: 20px;
}

.prm-price-block {
  padding-top: 20px;
}

.prm-btn {
  margin-top: auto;
}

.prm-price-old {
  font-size: 16px;
  color: var(--dark-gray);
  text-decoration: line-through;
}

.prm-price-new {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.svt-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.svt-content {
  width: 50%;
  min-width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--light-grey);
  border-radius: 16px;
  padding: 24px;
}

.svt-image-wrapper {
  min-width: 0;
  width: calc(50% - 20px);
  aspect-ratio: 16 / 12;
  border-radius: 16px;
  overflow: hidden;
  max-height: 612px;
}

.svt-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svt-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
}

.svt-desc {
  font-size: 18px;
  margin-bottom: 40px;
}

.svt-price-list {
  margin-bottom: 40px;
}

.svt-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-grey);
  padding-bottom: 20px;
  margin-bottom: 20px;
  gap: 10px;
}

.svt-price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.svt-clinic-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.svt-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.svt-btn {
  margin-top: auto;
  align-self: flex-start;
}

.abt-container {
  display: flex;
  gap: 20px;
  background-color: var(--white);
  border-radius: 16px;
  align-items: flex-start;
}

.abt-image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
  height: 200px;
  transition: max-height 0.4s ease-in-out;
  border-radius: 16px;
}

.abt-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.abt-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--light-grey);
  border-radius: 16px;
  padding: 24px;
}

.abt-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
}

.abt-text-wrapper {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 15;
  overflow: hidden;
  font-size: 18px;
}

.abt-text-wrapper.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.abt-text {
  font-size: 18px;
  color: var(--light-black);
  margin-bottom: 24px;
}

.abt-text:last-child {
  margin-bottom: 0;
}

.abt-toggle-btn {
  display: none;
  font-size: 18px;
  color: var(--primary);
  margin-top: 16px;
  border-bottom: 2px dotted var(--primary);
  align-self: flex-start;
  cursor: pointer;
}

.spr-promo-items {
  background-color: var(--light-green);
  border-radius: 16px;
  overflow: hidden;
  background-image: url('img/c79fae6abe6740d445fc85cab728c265 1.png'), url('img/circle-32.png');
  background-repeat: no-repeat;
  background-position: right 50px bottom, right -10px bottom -50px;
  background-size: auto 300px, 600px;
  min-height: 350px;
  height: 100%
}

.spr-promo-items>.prm-card {
  max-width: 40%
}

.fcfb-container {
  font-size: 16px;
}

.fcfb-type-phone .fcfb-select {
  display: none;
}

.fcfb-input input,
.fcfb-date-wrap input,
input.fcfb-options-el,
input.fcfb-options-aj {
  height: 62px;
  padding: 6px 20px;
  color: var(--black);
  background: var(--white);
  border-radius: 8px;
  font-size: 19px;
  border: none;
  min-height: 62px;
}

.fcfb-textarea-wrap textarea {
  border-radius: 8px;
  font-size: 19px;
  border: none;
  min-height: 94px;
  height: auto;
  padding: 10px 20px;
}

#fcfb_popup_addreview textarea,
#fcfb_popup_addcomment textarea,
#fcfb_popup_addreview .fcfb-input input,
#fcfb_popup_addcomment .fcfb-input input,
.fcfb-form-bp .fcfb-input input,
.fcfb-form-bp .fcfb-date-wrap input,
.fcfb-form-bp input.fcfb-options-el,
.fcfb-form-bp input.fcfb-options-aj,
.fcfb-form-callback .fcfb-input input {
  background: var(--light-grey);
}

.fcfb-fields {
  background: none;
  border: none !important;
}

.fcfb-form {
  background: none;
}

.fcfb-form>.fcfb-form-inner {
  margin-left: -6px;
  margin-right: -6px;
  width: calc(100% + 12px);
}

.fcfb-type-phone .fcfb-input .fcfb_e {
  padding-left: 45px;
}

.fcfb-type-phone .fcfb-input:before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(img/phone-2-black.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 22px;
  left: 20px;
}

.fcfb-form-callback,
.fcfb-form-bp,
.fcfb-form-fpic {
  margin-top: 20px;
}

.fcfb-form-bp .fcfb-in,
.fcfb-form-bp .fcfb-in,
.fcfb-form-fpic .fcfb-in {
  padding: 6px;
}

.m-menu-icon {
  display: none;
}

.fcfb-form-bp button.fcfb-submit-form,
.fcfb-form-callback button.fcfb-submit-form,
.fcfb-form-fpic button.fcfb-submit-form {
  background: var(--primary) !important;
  width: 100%;
  margin-top: 15px;
}

.fcfb-form-addreview .fcfb-checkbox label>span,
.fcfb-form-addcomment .fcfb-checkbox label>span,
.fcfb-form-callback .fcfb-checkbox label>span,
.fcfb-form-bp .fcfb-checkbox label>span,
.fcfb-form-fpic .fcfb-checkbox label>span {
  align-items: center;
}

.fcfb-form-bp .fcfb-in {
  padding: 6px;
}

.fcfb-form-addreview .fcfb-checkbox label>span::before,
.fcfb-form-addcomment .fcfb-checkbox label>span::before,
.fcfb-form-booking .fcfb-checkbox label>span::before,
.fcfb-form-callback .fcfb-checkbox label>span::before,
.fcfb-form-bp .fcfb-checkbox label>span::before,
.fcfb-form-fpic .fcfb-checkbox label>span::before {
  border: 1px solid #676767;
  line-height: 18px;
  color: #676767;
}

.fcfb-form-fg .fcfb-checkbox label>span::before {
  border: 1px solid var(--white);
  line-height: 18px;
  color: var(--white);
  background: var(--primary);
}

.fcfb-form-addreview .fcfb-checkbox label span,
.fcfb-form-addreview .fcfb-checkbox label span a,
.fcfb-form-addcomment .fcfb-checkbox label span,
.fcfb-form-addcomment .fcfb-checkbox label span a,
.fcfb-form-booking .fcfb-checkbox label span a,
.fcfb-form-booking .fcfb-checkbox label span,
.fcfb-form-bp .fcfb-checkbox label span a,
.fcfb-form-bp .fcfb-checkbox label span,
.fcfb-form-callback .fcfb-checkbox label span a,
.fcfb-form-callback .fcfb-checkbox label span,
.fcfb-form-fpic .fcfb-checkbox label span a,
.fcfb-form-fpic .fcfb-checkbox label span {
  color: var(--black);
}

.fcfb-form-booking .fcfb-checkbox label span {
  line-height: 22px;
}

.fcfb-form-fg .fcfb-checkbox label span {
  color: var(--white);
  line-height: 22px;
}

.fcfb-form-fg .fcfb-in {
  padding: 6px;
}

.fcfb-form-fg button.fcfb-submit-form {
  background: var(--white) !important;
  width: 240px;
  color: var(--primary) !important;
  margin-top: 15px;
}

.fcfb-input input:focus,
.fcfb-textarea-wrap textarea:focus,
.fcfb-select .fcfb_dd_target:focus,
.fcfb-multiselect .fcfb_dd_target:focus,
.fcfb_dropdown.fcfb-active .fcfb_dd_target.fcfb-input input,
.fcfb-multiselect.fcfb_dropdown.fcfb-active .fcfb_dd_target,
.fcfb-select.fcfb_dropdown.fcfb-active .fcfb_dd_target,
.fcfb-input:has(.fcfb-number-control > button:focus) input {
  border-radius: 8px !important;
  border: none !important;
}

.checkbox-after-form a {
  text-decoration: underline;
}

#fcfb_popup_callback .fcfb-popup-scrollable,
#fcfb_popup_bp .fcfb-popup-scrollable {
  max-width: 604px;
}

.fcfb-form-callback .fcfb-field {
  width: 100 !important;
  min-width: 100%;
}

.fcfb-popup {
  padding: 35px 40px;
}

.bp-popup-form-name {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
}

.popup-form-name {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}

.popup-callback-result {
  font-size: 22px;
  padding: 40px 30px
}

.fcfb-popup .fcfb_pp_close.fcfb-icon-close-circle {
  right: 11px;
  top: 11px;
  border: none !important;
  background-size: 21px !important;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23575656' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M7 7 L17 17 M17 7 L7 17'/%3E%3C/svg%3E") no-repeat !important;
}

.booking-form-container {
  background-color: var(--grey);
  padding: 30px 30px;
  border-radius: 16px;
  opacity: 0;
  margin-top: 110px;
  transition: opacity 0.5s;
}

.booking-form-title {
  font-weight: 600;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

.fcfb-v1 .fcfb-label {
  margin-bottom: 10px;
}

.fcfb-multiselect .fcfb_dd_target,
.fcfb-select .fcfb_dd_target {
  padding: 6px 20px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  height: 62px;
}

.fcfb-multiselect .fcfb_dd_hidden,
.fcfb-select .fcfb_dd_hidden {
  border-radius: 8px;
  width: 100%;
}

.fcfb-options li,
.fcfb-search-options li {
  font-size: 16px;
  padding: 10px;
}

.fcfb-options li:hover,
.fcfb-search-options li:hover {
  border-radius: 8px;
  background: var(--grey);
}

.fcfb-select .fcfb-selected {
  background: var(--primary) !important;
  border-radius: 8px;
}

.fcfb-form-booking .fcfb-label label {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
}

.fcfb-form-booking .fcfb--in {
  padding: 10px 0;
}

.fcfb-form-booking .fcfb--time,
.fcfb-form-booking .fcfb--date {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
}

.fcfb-form-booking .fcfb--doc .hsv-doctor-card {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: auto;
}

.fcfb-form-booking .fcfb--doc .fcfb-in {
  padding: 0;
}

.fcfb-form-booking .fcfb-radio-btn>span {
  height: 100%;
  border-radius: 8px;
  background: var(--light-grey);
  border: none;
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  width: 100%;
}

.fcfb--time .fcfb-radio-btn {
  display: inline-flex;
  aspect-ratio: 188/ 100;
}

.fcfb--date .fcfb-radio-btn {
  display: inline-flex;
  aspect-ratio: 182/ 100;
}

.fcfb-form-booking .fcfb--date .fcfb-radio-bts {
  margin-top: 20px;
}

.fcfb-form-booking .fcfb--time .fcfb-radio-bts {
  margin-top: 20px;
}

.fcfb-form-booking .fcfb-radio-btn span div {
  font-size: 16px;
  font-weight: 500;
}

.fcfb-form-booking .fcfb-radio-btn input[type="radio"]:checked+span {
  background: var(--primary);
  border: none;
}

.fcfb-form-booking .fcfb--date .fcfb-radio-bts.has-hidden label:nth-child(n+13) {
  display: none;
}

.fcfb-form-booking .fcfb--time .fcfb-radio-bts.has-hidden label:nth-child(n+17) {
  display: none;
}

.show-more-btn {
  cursor: pointer;
  display: table;
  color: var(--primary);
  border-bottom: 1px dotted var(--primary);
  height: 0;
  position: ;
}

.fcfb-checkbox-btn input[disabled]+span,
.fcfb-radio-btn input[disabled]+span {
  opacity: .3 !important;
}

.fcfb-form-booking .fcfb-in {
  padding: 6px;
}

.fcfb-form-booking .fcfb--docja,
.fcfb-form-booking .fcfb--timeja,
.fcfb-form-booking .fcfb--datesja {
  padding: 6px;
}

.fcfb-form-booking button.fcfb-submit-form {
  background-color: var(--primary) !important;
  width: 100%;
  height: 94px;
}

.fcfb-form-booking .fcfb--doc {
  margin-left: auto;
  float: right;
}

.m-phone,
.bottom-bar-close,
.m-contact-info {
  display: none;
}

#breadcrumb {
  margin-top: 20px;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

#breadcrumb a {
  color: var(--dark-gray);
}

#breadcrumb li {
  position: relative;
  display: contents;
}

#breadcrumb li::after {
  content: '/';
  margin-left: 5px;
  margin-right: 5px;
  color: var(--dark-gray);
}

#breadcrumb li:last-of-type::after {
  display: none;
}

#breadcrumb ul {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#breadcrumb .current a {
  color: var(--dark-gray);
}

.owl-carousel .hsv-doctor-card {
  width: 100%;
}

.footer-column__bottom>.social-icons {
  display: flex;
}

.prm-items,
.prt-bts,
.blog-header-title .blog-filter-toggle-btn,
.hdk-bts,
.dpcert-block .lic-slider,
.home .hmap-social-icons,
.home .hmap-mail,
.page-id-37 .acc-salary {
  display: none;
}

.paginate-links {
  text-align: center;
  margin-top: 50px;
}

.page-numbers {
  height: 44px;
  min-width: 44px;
  background: var(--light-grey);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  font-size: 18px;
  color: var(--black);
}

.prev.page-numbers,
.next.page-numbers {
  padding-left: 15px;
  padding-right: 15px;
}

.page-numbers.current {
  color: var(--white);
  background: var(--primary);
}

.clamp_2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp_3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp_4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp_5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp_6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp_7 {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp_8 {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp_full {
  -webkit-line-clamp: 10000 !important;
}

.clamp-link {
  text-decoration: underline;
  color: var(--primary);
}

.clamp-link:hover {
  opacity: .7;
  cursor: pointer;
}

.fcfb-form-addreview button.fcfb-submit-form,
.fcfb-form-addcomment button.fcfb-submit-form {
  background: var(--primary) !important;
  margin-top: 15px;
  min-width: 222px;
}

.fcfb-form-addcomment .fcfb-in,
.fcfb-form-addreview .fcfb-in {
  padding: 6px;
}

.fcfb-form-addreview .fcfb-select .fcfb_dd_target,
.fcfb-form-addreview .fcfb-select.fcfb_dropdown.fcfb-active .fcfb_dd_target {
  background-color: var(--light-grey);
}

.fcfb-form-addreview .fcfb-select-control {
  background: var(--light-grey);
  box-shadow: -12px 0 5px -2px var(--light-grey);
}

.fcfb-form-addreview .fcfb-rating label {
  font-size: 35px;
}

.fcfb-form-addreview .fcfb--rating .fcfb-label label {
  font-size: 18px;
  color: var(--fcfb-dark-grey);
}

.fcfb-form-addreview .fcfb--rating .fcfb-label {
  width: 100px;
  min-width: 100px;
  margin-top: 3px;
  margin-left: 18px
} 

.content>*:first-child {
  margin-top: 0;
}

.m-prm-slider-service {
  display: none;
}

.m-doc-certificates {
  display: none;	
}



 