main.clinic .breadcrumb-section {
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  main.clinic .breadcrumb-section {
    padding-top: 64px;
  }
}

.breadcrumb-section {
  padding-top: 64px;
}
.breadcrumb-section .breadcrumb-items-container {
  display: flex;
  align-items: center;
}
.breadcrumb-section .breadcrumb-items-container .breadcrumb-item {
  color: #475467;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  min-height: 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .breadcrumb-section .breadcrumb-items-container .breadcrumb-item {
    display: none;
  }
}
.breadcrumb-section .breadcrumb-items-container .breadcrumb-item .find {
  cursor: pointer;
}
.breadcrumb-section .breadcrumb-items-container .breadcrumb-item:last-child {
  color: #F46E15;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.breadcrumb-section .breadcrumb-items-container .breadcrumb-item:not(:last-child):after {
  content: "";
  display: inline-block;
  background-image: url("../../utils/icons/chevron-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  padding: 0 12px;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  .breadcrumb-section .breadcrumb-items-container .breadcrumb-item:not(:last-child):after {
    padding: 0 8px;
  }
}
.breadcrumb-section .breadcrumb-items-container .breadcrumb-item .icon:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/home-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
.breadcrumb-section .breadcrumb-items-container .breadcrumb-mobile-wrapper {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .breadcrumb-section .breadcrumb-items-container .breadcrumb-mobile-wrapper {
    display: flex;
  }
  .breadcrumb-section .breadcrumb-items-container .breadcrumb-mobile-wrapper a {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #475467;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
  }
}

.tooltip-wrapper {
  position: relative;
  display: flex;
  text-decoration: underline dashed #D0D5DD;
  min-width: 16px;
  min-height: 16px;
  width: fit-content;
}
.tooltip-wrapper button {
  text-decoration: none;
}
.tooltip-wrapper .tooltip {
  pointer-events: none;
  border-radius: 8px;
  background: #101828;
  padding: 8px 12px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.tooltip-wrapper .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #101828 transparent transparent transparent;
}
.tooltip-wrapper:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

body {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
}

input, textarea {
  font-family: "Manrope", sans-serif;
}

button {
  font-family: "Manrope", sans-serif;
}

.faq-section {
  padding: 64px 16px;
}
.faq-section .faq-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-section .faq-container .text-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  flex: 1;
}
.faq-section .faq-container .text-content-wrapper .text-content__subtext {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #F46E15;
}
.faq-section .faq-container .text-content-wrapper .text-content__title {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #101828;
}
.faq-section .faq-container .text-content-wrapper .text-content__supporting-text {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #475467;
}
.faq-section .faq-container .faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item {
  display: flex;
  gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container .question {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #101828;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container .moving-elements {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container .moving-elements p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #475467;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item .toggle-icon {
  width: 20px;
  height: 28px;
  vertical-align: middle;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item:hover .moving-elements {
  display: block;
}
@media (min-width: 768px) {
  .faq-section {
    padding: 64px 32px;
  }
}
@media (min-width: 1024px) {
  .faq-section {
    padding: 96px 112px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .faq-section .faq-container {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
  .faq-section .faq-container .text-content-wrapper {
    gap: 8px;
    flex: 0 0 360px;
  }
  .faq-section .faq-container .text-content-wrapper .text-content__subtext {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
  .faq-section .faq-container .text-content-wrapper .text-content__title {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .faq-section .faq-container .text-content-wrapper .text-content__supporting-text {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .faq-section .faq-container .faq-accordion-wrapper {
    flex: 1 1 0;
    min-width: 0;
  }
}

section.faq-section {
  margin: 0 auto;
  padding: 96px 0;
}
@media (max-width: 769px) {
  section.faq-section {
    padding: 96px 16px;
  }
}
section.faq-section .faq-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
section.faq-section .faq-container .text-content-wrapper {
  margin: 0 auto;
}
section.faq-section .faq-container .text-content-wrapper .text-content__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #101828;
  padding-bottom: 20px;
}
section.faq-section .faq-container .text-content-wrapper p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #475467;
}
section.faq-section .faq-container .faq-accordion-wrapper {
  width: 100%;
}
section.faq-section .faq-container .faq-accordion-wrapper .accordion-item {
  width: 100%;
}
section.faq-section .faq-container .faq-accordion-wrapper .accordion-item .question-line {
  display: flex;
  flex-direction: row;
}

.btn {
  border-radius: 4px;
  padding: 11px 19px;
  border-width: 1px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  text-align: center;
  color: #475467;
  background-color: transparent;
  border-color: transparent;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 8px 14px;
  }
}
.btn.btn-primary {
  color: #FFF;
  border: 1px solid #F47721;
  background: #F47721;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-primary:hover:not(:disabled) {
  background: #F46E15;
  border-color: #F46E15;
}
.btn.btn-primary:disabled {
  border-radius: 4px;
  border: 1px solid #FBC39D;
  background: #FBC39D;
  cursor: not-allowed;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-primary:focus {
  box-shadow: 0px 0px 0px 4px #FDDBC4, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-secondary {
  border: 1px solid #D0D5DD;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #344054;
  line-height: 24px;
}
.btn.btn-secondary:hover:not(:disabled) {
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  background: #F9FAFB;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-secondary:disabled {
  color: #D0D5DD;
  cursor: not-allowed;
}
.btn.btn-destructive-secondary-gray {
  color: #D92D20;
  border: 1px solid #D92D20;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  cursor: pointer;
}
.btn.btn-destructive-secondary-gray:hover:not(:disabled) {
  background: #FEF3F2;
}
.btn.btn-destructive-secondary-gray:disabled {
  border-color: #FECDCA;
  color: #FDA29B;
  cursor: not-allowed;
}
.btn.btn-destructive-secondary-gray:focus, .btn.btn-destructive-secondary-gray:focus-visible {
  box-shadow: 0px 0px 0px 4px #FEE4E2, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn img, .btn svg {
  vertical-align: text-top;
}

.popup-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-modal-overlay.visible {
  display: flex;
}

.popup-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 1000px;
  height: 450px;
  width: 90%;
  display: flex;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .popup-modal {
    height: auto;
    max-height: 80%;
  }
}
.popup-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.popup-modal__content {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (max-width: 768px) {
  .popup-modal__content {
    flex-direction: column;
  }
}
.popup-modal__image {
  flex: 1;
  min-width: 45%;
}
@media (max-width: 768px) {
  .popup-modal__image {
    height: 200px;
  }
}
.popup-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-modal__text {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.popup-modal__text h3 {
  padding-bottom: 12px;
}
.popup-modal__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.popup-modal__support {
  margin-bottom: 1.5rem;
  color: #555;
}
.popup-modal__buttons {
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}
.popup-modal__buttons a,
.popup-modal__buttons button {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .popup-modal__buttons {
    flex-direction: column-reverse;
  }
}

.carousel-section {
  padding: 64px 0;
}
.carousel-section .carousel-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.carousel-section .carousel-info-block__title {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #101828;
}
@media (min-width: 1024px) {
  .carousel-section .carousel-info-block__title {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
}
.carousel-section .carousel-info-block__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #475467;
}

.carousel-view {
  overflow: hidden;
}
.carousel-view .carousel-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.carousel-view .carousel-container .carousel-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 32px 16px;
}
.carousel-view .carousel-container .carousel-track.transition {
  transition: transform 0.5s ease-in-out;
}
.carousel-view .carousel-container .carousel-track:not(.transition) {
  transition: none;
}
.carousel-view .carousel-container .carousel-track .carousel-slide {
  width: 300px;
  height: 384px;
  background-color: #EAECF0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  position: relative;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .image-wrapper {
  width: 100%;
  height: 100%;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .image-wrapper img, .carousel-view .carousel-container .carousel-track .carousel-slide .image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10.09%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(1px);
}
.carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #FFF;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__supporting-text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #FFF;
}
.carousel-view .carousel-container .carousel-navigation {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.carousel-view .carousel-container .carousel-navigation .carousel-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border-width: 0;
  background-color: rgba(0, 0, 0, 0.0509803922);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-view .carousel-container .carousel-navigation .carousel-button svg g path {
  stroke: #475467;
}
.carousel-view .carousel-container .carousel-navigation .carousel-button:active {
  background-color: rgba(0, 0, 0, 0.2823529412);
}
.carousel-view .carousel-container .carousel-navigation .carousel-button:disabled {
  background-color: rgba(0, 0, 0, 0.0196078431);
}
.carousel-view .carousel-container .carousel-navigation .carousel-button:disabled svg g path {
  stroke: #D0D5DD;
}
.carousel-view .carousel-container .carousel-navigation .carousel-slide-tracker {
  min-width: 32px;
  height: 32px;
  border-radius: 16px;
  border-width: 0;
  background-color: rgba(0, 0, 0, 0.0509803922);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.carousel-view .carousel-container .carousel-navigation .carousel-slide-tracker .carousel-slide-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D0D5DD;
}
.carousel-view .carousel-container .carousel-navigation .carousel-slide-tracker .carousel-slide-indicator.active {
  background-color: #F46E15;
}
@media (min-width: 768px) {
  .carousel-view .carousel-container {
    gap: unset;
  }
  .carousel-view .carousel-container .carousel-track {
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .carousel-view .carousel-container {
    max-width: 1440px;
    margin: 0 auto;
  }
  .carousel-view .carousel-container .carousel-track {
    padding: 32px 116px;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide {
    width: 100%;
    height: 550px;
    max-width: 1000px;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay {
    padding: 24px;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__title {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__supporting-text {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
}

.clinic .breadcrumb-section {
  padding-top: 60px !important;
}
.clinic .breadcrumb-section .breadcrumb-item {
  display: flex !important;
}
.clinic .breadcrumb-section .breadcrumb-mobile-wrapper {
  display: none !important;
}
.clinic .breadcrumb-section .container {
  padding: 16px 0;
}
.clinic .social-icon-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 769px) {
  .clinic .social-icon-wrapper.mobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .clinic .social-icon-wrapper.desktop {
    display: none;
  }
}
.clinic .social-icon-wrapper h3 {
  padding-bottom: 4px;
}
.clinic .social-icon-wrapper a .facebook, .clinic .social-icon-wrapper a .instagram {
  display: flex;
  align-items: center;
  gap: 8px;
}
.clinic .social-icon-wrapper a .facebook img, .clinic .social-icon-wrapper a .instagram img {
  width: 20px;
  height: 20px;
}
.clinic .social-icon-wrapper a .facebook span, .clinic .social-icon-wrapper a .instagram span {
  color: #475467;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media only screen and (max-width: 768px) {
  .clinic .social-icon-wrapper a .facebook span, .clinic .social-icon-wrapper a .instagram span {
    font-size: 14px;
    line-height: 20px;
  }
}
.clinic .social-icon-wrapper a:hover span {
  color: #344054;
}
.clinic :target {
  scroll-margin-top: 100px;
}
.clinic .carousel-section .container {
  padding: 0;
}
.clinic .carousel-section .container .gutter {
  padding: 0;
}
.clinic .carousel-section .carousel-view .carousel-container {
  max-width: 1680px;
}
@media (min-width: 1024px) {
  .clinic .carousel-section .carousel-view .carousel-container .carousel-track .carousel-slide {
    height: 250px;
    max-width: 350px;
  }
}
.clinic .container {
  margin: auto;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: calc(100% - 460px);
}
@media (max-width: 1440px) {
  .clinic .container {
    max-width: calc(100vw - 32px);
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .clinic .container {
    max-width: calc(100vw - 246px);
  }
}
.clinic .hero-images-section .hero-images-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .clinic .hero-images-section .hero-images-container {
    display: none;
  }
}
.clinic .hero-images-section .hero-images-container .single-image-wrapper {
  grid-column: span 3;
  position: relative;
}
.clinic .hero-images-section .hero-images-container .single-image-wrapper img {
  max-height: 320px;
}
.clinic .hero-images-section .hero-images-container .single-image-wrapper .skeleton {
  min-height: 320px;
}
.clinic .hero-images-section .hero-images-container .single-image-wrapper button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  gap: 7px;
  align-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #FFF;
}
.clinic .hero-images-section .hero-images-container .single-image-wrapper button:hover {
  background: #F9FAFB;
}
.clinic .hero-images-section .hero-images-container .single-image-wrapper button:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/show-all-photos.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
.clinic .hero-images-section .hero-images-container img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.clinic .hero-images-section .hero-images-container .skeleton {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 2s ease;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.clinic .hero-images-section .hero-images-container .center-image-wrapper {
  max-height: 400px;
}
.clinic .hero-images-section .hero-images-container .center-image-wrapper .skeleton {
  min-height: 400px;
}
.clinic .hero-images-section .hero-images-container .side-image-wrapper {
  display: grid;
  max-height: 400px;
  position: relative;
}
.clinic .hero-images-section .hero-images-container .side-image-wrapper .skeleton {
  min-height: 200px;
}
.clinic .hero-images-section .hero-images-container .side-image-wrapper button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  gap: 7px;
  align-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #FFF;
}
.clinic .hero-images-section .hero-images-container .side-image-wrapper button:hover {
  background: #F9FAFB;
}
.clinic .hero-images-section .hero-images-container .side-image-wrapper button:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/show-all-photos.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
.clinic .hero-images-section .hero-images-container .right-image-wrapper {
  position: relative;
  max-height: 320px;
}
.clinic .hero-images-section .hero-images-container .right-image-wrapper .skeleton {
  min-height: 160px;
}
.clinic .hero-images-section .hero-images-container .right-image-wrapper img {
  border-radius: 0 8px 8px 0;
}
.clinic .hero-images-section .all-photos-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 122;
  padding-bottom: 100px;
  overflow: auto;
}
@media only screen and (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container {
    position: static;
    display: block;
    background: inherit;
    padding-top: 0px;
    padding-bottom: 0;
    overflow: hidden;
    height: auto;
    z-index: 1;
  }
}
.clinic .hero-images-section .all-photos-container .btn-back {
  margin: auto;
  padding: 20px;
  border-bottom: 1px solid #EAECF0;
}
.clinic .hero-images-section .all-photos-container .btn-back span {
  display: inline-block;
  width: 24px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container .btn-back {
    display: none;
  }
}
.clinic .hero-images-section .all-photos-container .all-photos-images-wrapper {
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container .all-photos-images-wrapper {
    position: relative;
    padding-bottom: 200px;
    padding-top: 0;
  }
}
.clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .slider-counter-wrapper {
  display: none;
  color: #FFF;
  padding: 5px 5px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
@media only screen and (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .slider-counter-wrapper {
    display: block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
  }
}
.clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton {
  width: 475px;
  max-height: 100%;
}
@media (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton {
    min-width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton {
    background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 2s ease;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
  }
  .clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton.active {
    opacity: 1;
    z-index: 2;
  }
}
.clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton:nth-child(3n+2) {
  width: 960px;
  max-height: 500px;
  min-height: 500px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton:nth-child(3n+2) {
    min-height: 200px;
    max-height: 200px;
  }
}
.clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton img {
  width: 100%;
  max-height: 500px;
  max-width: 100%;
  object-fit: cover;
  min-height: 280px;
}
@media (max-width: 768px) {
  .clinic .hero-images-section .all-photos-container .all-photos-images-wrapper .skeleton img {
    max-height: 200px;
    min-height: 200px;
  }
}
.clinic .info-section {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.clinic .info-section .info-container {
  margin: auto;
  flex-direction: column;
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .info-container {
    padding: 30px 0px 16px 0px;
  }
}
.clinic .info-section .info-container .contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #475467;
}
.clinic .info-section .info-container .contact-info-container .title-wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.clinic .info-section .info-container .contact-info-container .title-wrapper .title {
  margin-right: auto;
}
.clinic .info-section .info-container .contact-info-container .title-wrapper .urgent-care-image {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 4px;
}
.clinic .info-section .info-container .contact-info-container .title-wrapper .urgent-care-image p {
  color: #D92D20;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 18px;
  margin-left: 16px;
}
.clinic .info-section .info-container .contact-info-container .title-wrapper .urgent-care-image img {
  width: auto;
  height: 62px;
}
.clinic .info-section .info-container .contact-info-container .title-wrapper h1 {
  color: #101828;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .info-container .contact-info-container .title-wrapper h1 {
    font-size: 24px;
  }
}
.clinic .info-section .info-container .contact-info-container .address-wrapper {
  position: relative;
}
.clinic .info-section .info-container .contact-info-container .address-wrapper p {
  padding-left: 25px;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .info-container .contact-info-container .address-wrapper p {
    font-size: 14px;
  }
}
.clinic .info-section .info-container .contact-info-container .address-wrapper:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/marker-pin-01-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.clinic .info-section .info-container .contact-info-container .phone-wrapper {
  display: flex;
  gap: 10px 50px;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
}
.clinic .info-section .info-container .contact-info-container .phone-wrapper .phone {
  padding-left: 25px;
}
.clinic .info-section .info-container .contact-info-container .phone-wrapper .phone:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/phone-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}
.clinic .info-section .info-container .contact-info-container .phone-wrapper .fax {
  padding-left: 25px;
  position: relative;
}
.clinic .info-section .info-container .contact-info-container .phone-wrapper .fax:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/printer-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}
.clinic .info-section .urgent-care-info-text {
  word-break: break-word;
  border-radius: 8px;
  background: #FFFBFA;
  padding: 12px;
  font-family: Manrope;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.clinic .info-section .table-wrapper {
  display: grid;
  width: 280px;
  min-width: max-content;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .table-wrapper {
    align-self: start;
  }
}
.clinic .info-section .table-wrapper table {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  align-self: end;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .table-wrapper table {
    align-self: start;
    font-size: 14px;
    line-height: 20px;
  }
}
.clinic .info-section .table-wrapper table thead tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.clinic .info-section .table-wrapper table thead tr td {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .table-wrapper table thead tr td {
    width: unset;
  }
}
.clinic .info-section .table-wrapper table thead tr td .closed {
  color: #F04438;
}
.clinic .info-section .table-wrapper table thead tr td .closes-soon {
  color: #F79009;
}
.clinic .info-section .table-wrapper table thead tr td .open {
  color: #099250;
}
.clinic .info-section .table-wrapper table thead tr td .chevron {
  vertical-align: text-bottom;
  margin-left: 5px;
}
.clinic .info-section .table-wrapper table tbody {
  display: block;
  opacity: 1;
  transition: all 0.1s ease-in-out;
}
.clinic .info-section .table-wrapper table tbody.hidden {
  max-height: 0;
  opacity: 0.4;
}
.clinic .info-section .table-wrapper table tbody tr {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.clinic .info-section .table-wrapper table tbody tr.highlight {
  font-weight: 600;
}
.clinic .info-section .modal-after-hours-container {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .modal-after-hours-container {
    z-index: 100;
  }
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper {
  max-width: 688px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  padding: 24px;
  margin: 20px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .modal-after-hours-container .after-hours-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    overflow: scroll;
    max-height: calc(100% - 50px);
  }
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .icon-wrapper {
  display: flex;
  justify-content: space-between;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .icon-wrapper .icon-alert {
  border-radius: 50%;
  border: 6px solid #FEF3F2;
  background: #FEE4E2;
  padding: 8px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .icon-wrapper .icon-alert img {
  width: 24px;
  height: 24px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .icon-wrapper .btn-close img {
  cursor: pointer;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper {
  padding-top: 16px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper {
    padding-top: 16px;
    padding-bottom: 0;
  }
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .top-wrapper {
  display: flex;
  justify-content: space-between;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper strong {
  font-weight: 600;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .title-wrapper {
  padding-bottom: 4px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .title-wrapper h2 {
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .supporting-text-wrapper {
  color: #475467;
  font-size: 14px;
  line-height: 20px;
  position: relative;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .supporting-text-wrapper .info {
  padding-top: 13px;
  color: #D92D20;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container {
    padding-top: 16px;
    gap: 10px;
  }
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .separator-line {
  width: calc(100% + 48px);
  margin-left: -24px;
  height: 1px;
  background: #EAECF0;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card {
  display: flex;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #EAECF0;
  background: #FFF;
  transition: border-color 0.3s ease-in-out;
  cursor: pointer;
  gap: 16px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card:hover {
  border-color: #F47721;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .icon-wrapper {
  border-radius: 28px;
  border: 4px solid #FEF3F2;
  background: #FEE4E2;
  padding: 8px;
  align-self: center;
}
@media (max-width: 768px) {
  .clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .icon-wrapper {
    transform: translateY(-6px);
  }
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .icon-wrapper img {
  width: 16px;
  height: 16px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper {
  width: 100%;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper {
  display: flex;
  justify-content: space-between;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper .date-wrapper {
  display: flex;
  gap: 5px;
  line-height: 24px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper .date-wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper .date-wrapper .day p {
  color: #344054;
  font-weight: 600;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper .date-wrapper .time p {
  color: #475467;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper .charge-wrapper {
  color: #067647;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper .charge-wrapper p {
  background: #ECFDF3;
  padding: 2px 8px;
  color: #067647;
  border-radius: 6px;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .top-wrapper .charge-wrapper.red p {
  background: #FEF3F2;
  color: #B42318;
}
.clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .description-wrapper {
  line-height: 20px;
  font-size: 14px;
  color: #475467;
}
@media (max-width: 768px) {
  .clinic .info-section .modal-after-hours-container .after-hours-wrapper .content-wrapper .cards-container .card .card-content-wrapper .description-wrapper {
    display: none;
  }
}
.clinic .info-section .hidden {
  display: none;
}
.clinic .info-section .special-title {
  display: block;
  color: #475467;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 18px;
  padding-bottom: 5px;
}
.clinic .info-section .modal-booking-container {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.4);
}
.clinic .info-section .modal-booking-container .iframe-wrapper {
  position: relative;
  margin: auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
}
@media (max-width: 768px) {
  .clinic .info-section .modal-booking-container .iframe-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.clinic .info-section .modal-booking-container .iframe-wrapper .btn-close {
  cursor: pointer;
  background: white;
  width: 100%;
  text-align: end;
  padding: 10px 20px;
}
.clinic .info-section .modal-booking-container .iframe-wrapper .iframe-automed {
  width: 80vw;
  height: 80vh;
  background: white;
}
@media (max-width: 768px) {
  .clinic .info-section .modal-booking-container .iframe-wrapper .iframe-automed {
    width: 100vw;
    overflow: scroll;
    height: 100vh;
  }
  @supports (height: 100dvh) {
    .clinic .info-section .modal-booking-container .iframe-wrapper .iframe-automed {
      max-height: 100dvh;
    }
  }
}
.clinic .info-section .view-opening-hours {
  padding: 8px 0px;
  text-align: end;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .view-opening-hours {
    padding: 8px 0px;
    text-align: start;
  }
}
.clinic .info-section .view-opening-hours button {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 8px 14px;
  cursor: pointer;
}
.clinic .info-section .view-opening-hours button:hover {
  background: #F9FAFB;
}
.clinic .info-section .book-button-container {
  grid-column: span 7/span 7;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .book-button-container {
    width: 100%;
  }
}
.clinic .info-section .book-button-container .button-wrapper {
  padding-bottom: 10px;
  text-align: right;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  /*                .btn-book {
      padding: 10px 18px;
      font-size: 16px;
      line-height: 20px;

      @media only screen and (max-width: 768px) {
          padding: 10px 9px;
      }
  }*/
}
@media (max-width: 768px) {
  .clinic .info-section .book-button-container .button-wrapper > * {
    width: 50% !important;
  }
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .book-button-container .button-wrapper.sticky {
    position: fixed;
    bottom: 0px;
    left: 0px;
    padding: 15px 16px;
    width: 100%;
    background: #F9FAFB;
    border-top: 1px solid #EAECF0;
    z-index: 50;
    display: flex;
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .book-button-container .button-wrapper {
    order: 2;
    text-align: left;
    width: 100%;
    display: flex;
    gap: 10px;
  }
  .clinic .info-section .book-button-container .button-wrapper button {
    box-sizing: border-box;
    width: 100%;
  }
}
.clinic .info-section .book-button-container .button-wrapper .btn-after-hours {
  padding: 10px 18px;
  font-size: 16px;
  line-height: 20px;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .book-button-container .button-wrapper .btn-after-hours {
    padding: 10px 14px;
    width: 100%;
  }
}
.clinic .info-section .book-button-container .button-wrapper .btn-after-hours:disabled {
  color: #D0D5DD;
  background-color: #F9FAFB;
  border: 1px solid #EAECF0;
}
.clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip {
  position: relative;
}
.clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip:hover .tooltip-wrapper {
  display: block;
}
.clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip .tooltip-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip .tooltip-wrapper {
    left: 0;
    transform: translate(0, -120%);
  }
}
@media (max-width: 424px) {
  .clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip .tooltip-wrapper {
    width: 280px;
  }
}
.clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip .tooltip-wrapper .tooltip {
  border-radius: 8px;
  background: #101828;
  padding: 8px 12px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  width: 217px;
}
.clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip .tooltip-wrapper svg {
  position: absolute;
  left: 50%;
  bottom: -6px;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .book-button-container .button-wrapper .button-wrapper-tooltip .tooltip-wrapper svg {
    left: 15px;
  }
}
.clinic .info-section .urgent-care-hours {
  padding-right: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media only screen and (max-width: 768px) {
  .clinic .info-section .urgent-care-hours {
    align-self: start;
  }
}
.clinic .info-section .urgent-care-hours .title-time-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.clinic .info-section .urgent-care-hours .title-time-container .title {
  color: #D92D20;
  margin-right: 5px;
}
.clinic .info-section .urgent-care-hours .title-time-container .hours {
  color: #475467;
  text-transform: uppercase;
}

.booking-widget-button-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 15px 16px;
  gap: 16px;
  background: #F9FAFB;
  border-top: 1px solid #EAECF0;
  z-index: 50;
}
.booking-widget-button-container > * {
  flex-grow: 1;
}
.booking-widget-button-container .tooltip-wrapper button {
  width: 100%;
}
.booking-widget-button-container button {
  padding: 10px 18px;
  font-size: 16px;
  line-height: 20px;
}
@media only screen and (max-width: 768px) {
  .booking-widget-button-container button {
    padding: 10px 9px;
  }
}
.booking-widget-button-container button.btn-after-hours:disabled {
  color: #D0D5DD;
  background-color: #F9FAFB;
  border: 1px solid #EAECF0;
}
.booking-widget-button-container:not(.sticky) {
  position: static;
  background: none;
  border: none;
}
@media (min-width: 769px) {
  .booking-widget-button-container {
    visibility: hidden;
  }
}

#clinic-profile-booking-toggle {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
#clinic-profile-booking-toggle + label {
  display: flex;
  flex-direction: row;
  gap: 4px;
  padding: 4px;
  width: fit-content;
  border: 1px solid #EAECF0;
  border-radius: 200px;
  max-width: 100%;
  margin: auto;
  pointer-events: none;
}
#clinic-profile-booking-toggle + label > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  padding: 8px 12px;
  border-radius: 20px;
  text-align: center;
  color: #667085;
  font-weight: 600;
  transition: color 200ms, background-color 200ms;
}
#clinic-profile-booking-toggle:not(:checked) + label .checked {
  pointer-events: auto;
  cursor: pointer;
}
#clinic-profile-booking-toggle:not(:checked) + label .unchecked {
  color: #F46E15;
  background: #FEF1E9;
}
#clinic-profile-booking-toggle:checked + label .unchecked {
  pointer-events: auto;
  cursor: pointer;
}
#clinic-profile-booking-toggle:checked + label .checked {
  color: #F46E15;
  background: #FEF1E9;
}
.booking-toggle-wrapper:has(#clinic-profile-booking-toggle:not(:checked)) ~ .booking-widget-container {
  display: none;
}

.booking-toggle-wrapper:has(#clinic-profile-booking-toggle:checked) ~ .clinic-content-container {
  display: none;
}

.booking-toggle-wrapper.container {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.booking-widget-container.container {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 16px;
  margin-bottom: 16px;
}
.booking-widget-container.container iframe {
  min-height: 100vh;
}

.clinic-content-container {
  padding: 0px 0px 32px 0px;
  background: white;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container {
    padding-top: 20px;
  }
}
.clinic-content-container.sticky .section-navigation-wrapper,
.clinic-content-container.sticky .sidebar-content-wrapper {
  border-top: 1px solid #EAECF0;
  background: white;
  box-shadow: 0 1px 0 0 #FFF;
}
.clinic-content-container .section-container {
  width: 100%;
  transition: width 0.2s ease-in-out;
  margin: auto;
}
.clinic-content-container .section-container .section-navigation-wrapper {
  list-style-type: none;
  z-index: 1;
  position: sticky;
  top: 80px;
  border-bottom: 1px solid #EAECF0;
  transition: background-color 200ms;
  box-shadow: 0 1px 0 0 #FFF;
}
.clinic-content-container .section-container .section-navigation-wrapper.non-sticky {
  position: static;
  border-top: none;
}
@media only screen and (max-width: 1440px) {
  .clinic-content-container .section-container .section-navigation-wrapper {
    top: 60px;
  }
}
.clinic-content-container .section-container .section-navigation-wrapper ul {
  padding: 10px 0;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
}
.clinic-content-container .section-container .section-navigation-wrapper ul li {
  color: #667085;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  flex: none;
}
@media only screen and (min-width: 768px) {
  .clinic-content-container .section-container .section-navigation-wrapper ul li:hover {
    color: #F46E15;
  }
}
.clinic-content-container .section-container .section-navigation-wrapper ul li:before {
  background-color: #F46E15;
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
  opacity: 0;
}
.clinic-content-container .section-container .section-navigation-wrapper ul li:hover:before {
  opacity: 1;
}
.clinic-content-container .section-container .section-navigation-wrapper ul li.active {
  color: #F46E15;
}
.clinic-content-container .section-container .section-navigation-wrapper ul li.active:before {
  opacity: 1;
}
.clinic-content-container .section-container .section-navigation-wrapper .tab-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.clinic-content-container .section-container .section-navigation-wrapper ul {
  flex-grow: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0;
  margin: 0;
}
.clinic-content-container .section-container .section-navigation-wrapper .arrow-container {
  display: flex;
  gap: 10px;
  padding-left: 10px;
  flex-shrink: 0;
}
.clinic-content-container .section-container .section-navigation-wrapper .tab-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: orange;
  transition: color 0.2s ease;
}
.clinic-content-container .section-container .section-navigation-wrapper .tab-nav-icon.disabled {
  color: grey;
  pointer-events: none;
}
.clinic-content-container .section-container .section-navigation-wrapper .tab-nav-icon svg {
  display: block;
}
.clinic-content-container .section-container .section-content-container a {
  color: #F47721;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container table {
    font-size: 14px;
  }
}
.clinic-content-container .section-container .section-content-container table tr {
  text-align: left;
}
.clinic-content-container .section-container .section-content-container table tr th {
  text-align: left;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 20px;
  padding-left: 12px;
  padding-right: 12px;
  width: 1440px;
  max-width: 100vw !important;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card {
  flex: 0 0 auto;
  display: flex;
  width: 290px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  border: 1px solid #EAECF0;
  background: #FFF;
  box-shadow: 0px 1px 3px 0px rgba(18, 24, 39, 0.1), 0px 1px 2px 0px rgba(18, 24, 39, 0.06);
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card:first-child {
  margin-left: auto;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card:last-child {
  margin-right: auto;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 150px;
  overflow: hidden;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card .text-container {
  display: flex;
  padding: 20px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  flex: 1;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card .text-container h3 {
  color: #1D2939;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card .text-container p {
  color: #475467;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 60px;
}
.clinic-content-container .section-container .section-content-container section#advertising-cards .advertising-card-container .advert-card .text-container a {
  color: #344054;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  margin-top: auto;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner {
  padding-top: 32px;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  background: var(--yellow-50, #FEFBE8);
  padding: 16px 24px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-content {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-content .advertising-icon img {
  width: 87px;
  height: 80px;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-content .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-content .text-wrapper .heading-text-wrapper h2 {
  color: #F47721;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-content .text-wrapper .supporting-text-wrapper p {
  color: #667085;
  font-size: 18px;
  line-height: 28px;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-action button, .clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-action div {
  color: #344054;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-action button span, .clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-action div span {
  display: flex;
  align-items: center;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-modal-container {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 122;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-modal-container .modal-content-wrapper {
  max-width: 688px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  padding: 24px;
  margin: 20px;
}
.clinic-content-container .section-container .section-content-container section#advertising-banner .advertising-container .advertising-modal-container .modal-content-wrapper p {
  color: var(--gray-500, #667085);
  /* Text lg/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
.clinic-content-container .section-container .section-content-container .announcement-container {
  word-break: break-word;
  border-radius: 16px;
  background: #FEF3F2;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 30px;
  line-height: initial;
}
.clinic-content-container .section-container .section-content-container .announcement-container div > p {
  margin-bottom: 10px;
}
.clinic-content-container .section-container .section-content-container .announcement-container h3 {
  padding-bottom: 16px;
  padding-top: 25px;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.clinic-content-container .section-container .section-content-container .announcement-container p {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container .announcement-container .announcement-heading-text-wrapper {
  padding-bottom: 16px;
  width: 100%;
}
.clinic-content-container .section-container .section-content-container .announcement-container .announcement-heading-text-wrapper h2,
.clinic-content-container .section-container .section-content-container .announcement-container .announcement-heading-text-wrapper p {
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container .announcement-container .announcement-heading-text-wrapper h2,
  .clinic-content-container .section-container .section-content-container .announcement-container .announcement-heading-text-wrapper p {
    font-size: 18px;
  }
}
.clinic-content-container .section-container .section-content-container .announcement-container .announcement-content-wrapper {
  width: 100%;
  text-align: left;
}
.clinic-content-container .section-container .section-content-container .announcement-container .announcement-content-wrapper ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1em;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container .announcement-container .announcement-content-wrapper ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1em;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#overview {
  position: relative;
  background: #FFF9F5;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  text-align: center;
  font-family: Manrope;
  font-style: normal;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-title-wrapper h2 {
  color: #F47721;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-title-wrapper h2 {
    color: #101828;
  }
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-subtext-wrapper {
  padding: 14px 0;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-subtext-wrapper p {
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background {
  background: #FFF;
  border-radius: 8px;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background: #FFF;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text {
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
  transition: height 0.4s ease-in-out;
  mask-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  -webkit-mask-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text[data-expanded=true] {
  mask-image: none;
  -webkit-mask-image: none;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text {
    padding: 16px;
  }
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item {
  width: 100%;
  text-align: center;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item:not(:last-child) {
  padding-bottom: 1.5em;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item h3 {
  padding-bottom: 16px;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item p {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 25px;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item p:empty {
  padding: 0;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item p:not(:empty):last-of-type {
  padding-bottom: 0;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item ul,
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item ol {
  display: inline-block;
  text-align: left;
  list-style-position: outside;
  padding-left: 1.25em;
  line-height: 24px;
  color: #475467;
  margin: 0 auto;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item ul {
  list-style-type: disc;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item ol {
  list-style-type: decimal;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text .overview-item li {
  text-align: left;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text__toggle {
  color: #F46E15;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration-line: underline;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  background: none;
  border: none;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 8px;
}
.clinic-content-container .section-container .section-content-container section#overview .overview-container .overview-elements-background .expandable-text__toggle:hover {
  opacity: 0.8;
}
.clinic-content-container .section-container .section-content-container section#services .services-container {
  padding-top: 32px;
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-title-wrapper {
  padding-bottom: 12px;
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-title-wrapper h3 {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#services .services-container .services-title-wrapper h3 {
    font-size: 18px;
  }
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-supporting-text {
  padding-bottom: 12px;
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-supporting-text p {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-elements-container > div {
  column-count: 2;
  column-gap: 20px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#services .services-container .services-elements-container > div {
    column-count: 1;
  }
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-elements-container .title-wrapper {
  padding-bottom: 12px;
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-elements-container .title-wrapper h4 {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-elements-container li.item {
  color: #475467;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
}
.clinic-content-container .section-container .section-content-container section#services .services-container .services-elements-container li.item:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 10px;
}
.clinic-content-container .section-container .section-content-container section#services .services-container button {
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 8px 14px;
  margin-top: 10px;
  cursor: pointer;
}
.clinic-content-container .section-container .section-content-container section#services .services-container button:hover {
  background: #F9FAFB;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 122;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .all-services-wrapper {
  position: relative;
  flex-direction: column;
  max-height: 80%;
  max-width: 688px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  margin: 20px;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .all-services-wrapper {
    max-width: 80vw;
    max-height: 70vh;
    overflow: auto;
    position: relative;
  }
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .all-services-wrapper .modal-content-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 40px 24px;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .all-services-wrapper .modal-content-top-wrapper .btn-close {
    position: absolute;
    right: 20px;
    top: 25px;
  }
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .all-services-wrapper .modal-content-top-wrapper .btn-close img {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .all-services-wrapper .modal-content-top-wrapper .btn-close img {
    position: sticky;
    top: 0;
  }
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .all-services-wrapper .content-wrapper {
  overflow: auto;
  padding: 0 24px 24px 24px;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container h2 {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#services .modal-all-services-container h2 {
    font-size: 18px;
  }
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 550px) {
  .clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container {
    flex-direction: column;
  }
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container > div {
  flex: 1;
  min-width: 311px;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container > div {
    min-width: unset;
  }
}
@media only screen and (max-width: 550px) {
  .clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container > div {
    flex-direction: column;
  }
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container .title-wrapper {
  padding-bottom: 12px;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container .title-wrapper h3 {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container li.item {
  color: #475467;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 12px;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container .title-wrapper {
  padding-bottom: 12px;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container .title-wrapper h3 {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container li.item {
  color: #475467;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
}
.clinic-content-container .section-container .section-content-container section#services .modal-all-services-container .services-elements-container li.item:before {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 10px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container {
  border-radius: 12px;
  border: 1px solid #EAECF0;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-title-wrapper {
  padding-bottom: 12px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-title-wrapper h3 {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-title-wrapper h3 {
    font-size: 18px;
  }
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-top-wrapper, .clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper {
  padding-bottom: 14px;
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-top-wrapper p, .clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper p {
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-top-wrapper ul, .clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1em;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-top-wrapper ol, .clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1em;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container {
  display: flex;
  flex-direction: column;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container ol {
  list-style: decimal;
  list-style-position: inside;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container ul {
  list-style: disc;
  list-style-position: inside;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container div > p > strong {
  padding-bottom: 0px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .hidden {
  display: none;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item {
  padding-bottom: 24px;
  padding-top: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item:has(p:last-child:empty) p:nth-last-child(2):not(:empty) {
  padding: 0;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item center {
  text-align: left;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item table {
  margin: 0px 0px 25px 0px;
  color: #475467;
  width: 100%;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item table tr th {
  text-align: left;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item table tr th:last-child {
  overflow-wrap: anywhere;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item table tr td, .clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item table tr th {
  padding: 0.4em 0.5em 0.4em 0.5em;
  line-height: 1.5em;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item ul {
  color: #475467;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item ul li {
  padding-bottom: 0.75em;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item hr {
  margin-bottom: 10px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item h3 {
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: 16px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item p {
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 18px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item p:empty {
  padding: 0;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-items-container .item p:not(:empty):last-of-type {
  padding-bottom: 0;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper {
  padding-top: 48px;
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1em;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1em;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#pricing .pricing-container .pricing-supporting-text-bottom-wrapper strong {
  font-weight: 600;
}
.clinic-content-container .section-container .section-content-container .cancellation-container {
  display: flex;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: var(--container-padding-desktop, 32px);
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 12px;
  background: var(--Error-25, #FFFBFA);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container .cancellation-container {
    margin-bottom: 0;
  }
}
@media (max-width: 425px) {
  .clinic-content-container .section-container .section-content-container .cancellation-container {
    padding-left: 16px;
    padding-left: 16px;
  }
}
.clinic-content-container .section-container .section-content-container .cancellation-container .cancellation-title-wrapper {
  color: #F04438;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.clinic-content-container .section-container .section-content-container .cancellation-container .cancellation-subtext-wrapper {
  color: #475467;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#providers {
  background-color: #FCFCFD;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, 254px);
  grid-gap: min(37px, 4vw);
  justify-content: space-between;
  overflow: visible;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    grid-gap: 0;
  }
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper * {
  outline: #ECEDEE;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper a {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 4px transparent;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper a {
    scroll-snap-align: start;
    flex-shrink: 0;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper a:focus {
  border-radius: 12px;
  border: 1px solid var(--primary-200, #FBC39D);
  background: var(--primary-25, #FFF8F4);
  box-shadow: 0px 0px 0px 4px #FDDBC4;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper a:focus h4 {
  text-decoration-line: underline;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper a:hover h4 {
  text-decoration-line: underline;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper .providers-card {
  border-radius: 12px;
  border: 1px solid #D0D5DD;
  overflow: hidden;
  max-width: 252px;
  min-width: 252px;
  height: 100%;
  padding-bottom: 20px;
  outline: #ECEDEE;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper .providers-card {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper .providers-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: top;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper h4 {
  padding: 12px 16px 4px;
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper p {
  padding: 0 16px;
  color: #475467;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 5px;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper p .speciality {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clinic-content-container .section-container .section-content-container section#providers .providers-container .providers-card-wrapper .special-note-wrapper > * {
  color: #F6863C;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.clinic-content-container .section-container .section-content-container section#providers .doctors-gap {
  padding-bottom: 42px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#providers .doctors-container {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.clinic-content-container .section-container .section-content-container section#providers .doctors-container .doctors-title-wrapper {
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#providers .doctors-container .doctors-title-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
  }
}
.clinic-content-container .section-container .section-content-container section#providers .doctors-container .doctors-title-wrapper h3 {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container .section-content-container section#providers .doctors-container .doctors-title-wrapper h3 {
    font-size: 18px;
  }
}
.clinic-content-container .section-container .section-content-container section#providers .doctors-container .doctors-title-wrapper h3 p {
  display: inline-block;
}
.clinic-content-container .section-container .section-content-container .fl-button {
  color: #FFF;
  padding: 10px 18px;
  background: #F47721;
  border: 1px solid #F47721;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  outline: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.clinic-content-container .section-container section#additional-information .additional-information-container {
  padding: 20px 0;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .additional-information-text-wrapper a {
  color: #F47721;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .additional-information-text-wrapper #read-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .additional-information-text-wrapper h2 {
  padding-bottom: 12px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .additional-information-text-wrapper p {
  color: #475467;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 1em;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .additional-information-text-wrapper p {
    padding-bottom: 0;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-title-wrapper {
  display: flex;
  align-items: baseline;
  padding-bottom: 12px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-title-wrapper h3 {
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-title-wrapper p {
  padding-left: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-title-wrapper p {
    display: none;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper {
    flex-direction: column;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper .opening-hours {
  flex: 1;
  max-width: 730px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper .special-hours {
  flex: 1;
  max-width: 730px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper .special-hours td:first-of-type {
  font-weight: 600;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper .special-hours table tr td span {
    display: block;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper .highlight {
  font-weight: 600;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table thead tr {
  min-height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table thead tr td {
  display: flex;
  align-items: center;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table thead tr td .open {
  color: #099250;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table thead tr td .chevron-down {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/chevron-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-left: 3px;
  transition: all 0.1s ease-in-out;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table thead tr td .chevron-down.hidden {
  transform: rotate(180deg);
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table tbody {
  display: block;
  opacity: 1;
  transition: all 0.1s ease-in-out;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table tbody.hidden {
  max-height: 0;
  opacity: 0.4;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .opening-hours-wrapper table tbody tr {
  display: flex;
  justify-content: space-between;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-content-wrapper .after-hours-wrapper {
  flex: 1;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .additional-information-title-wrapper {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .after-hours-service-container .after-hours-service-title-wrapper {
  color: #F04438;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: 12px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .after-hours-service-container .after-hours-service-subtext-wrapper {
  color: #475467;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container {
  width: 100%;
  min-height: 283px;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 32px;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .directions-container {
    flex-direction: column;
    display: block;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .direction-text-container {
  flex: 1;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .direction-text-container .directions-title-wrapper h3 {
  color: #101828;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .direction-text-container .directions-subtext-wrapper {
  color: #475467;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 16px;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .map-container {
  flex: 1;
}
@media (max-width: 768px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .desktop {
    display: none;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .mobile {
  padding-top: 16px;
}
@media (min-width: 769px) {
  .clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .mobile {
    display: none;
  }
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container .mobile .directions-subtext-wrapper {
  padding-bottom: 0;
}
.clinic-content-container .section-container section#additional-information .additional-information-container .directions-container #map {
  border-radius: 12px;
  max-width: 863px;
}