@charset "UTF-8";
/*
---------------------------------------------------------------------
CUSTOM BOOTSTRAP 5.3
---------------------------------------------------------------------
*/
/* Base theme color */
:root {
  --bs-primary: #007bd9;
  --bs-primary-rgb: 0, 123, 217;
  /* keeps bg/text utilities in sync */
}

/* Buttons (Bootstrap sets these on .btn-primary, so override there) */
.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #006ac0;
  --bs-btn-hover-border-color: #0062b3;
  --bs-btn-active-bg: #005da9;
  --bs-btn-active-border-color: #00579d;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

/* Optional: keep other utilities aligned */
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.link-primary {
  color: var(--bs-primary) !important;
}

.text-bg-primary {
  color: #fff !important;
  background-color: rgba(var(--bs-primary-rgb), 1) !important;
}

/* Outline Primary Buttons */
.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

/*
---------------------------------------------------------------------
END OF CUSTOM BOOTSTRAP 5.3
---------------------------------------------------------------------
*/
/* Optional: keep other utilities aligned */
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.link-primary {
  color: var(--bs-primary) !important;
}

.text-bg-primary {
  color: #fff !important;
  background-color: rgba(var(--bs-primary-rgb), 1) !important;
}

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #36454F;
}
@media (max-width: 768px) {
  html,
  body {
    height: 100%;
  }
}

.body-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  background-image: radial-gradient(#007bd9 0.5px, #ffffff 0.5px);
  background-size: 10px 10px;
  /* keep only one size */
  opacity: 0.8;
  /* try higher value so dots are visible */
  z-index: -1;
  pointer-events: none;
}

#mainContentWrapper {
  width: 100%;
  overflow-x: hidden;
}

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

h1,
h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
  text-align: justify;
  font-size: 16px;
}

a {
  text-decoration: none;
}

ul.ul-inline-block li {
  display: inline-block;
}

.btn:focus {
  box-shadow: none;
}

.btn-custom-primary {
  background-color: #007bd9;
  border-color: #007bd9;
  color: #fff;
}
.btn-custom-primary:hover {
  background-color: rgb(0, 94.0921658986, 166);
  border-color: rgb(0, 94.0921658986, 166);
  color: #fff;
}

.btn-outline-custom-primary {
  background-color: transparent;
  border: 1px solid #007bd9;
  color: #007bd9;
}
.btn-outline-custom-primary:hover {
  background-color: #007bd9;
  border-color: #007bd9;
  color: #fff;
}

.inner-hero {
  position: relative;
  height: 40vh;
  background-position: bottom;
  background-repeat: none;
  background-size: cover;
}
.inner-hero .inner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.inner-hero .title-container {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
}
.inner-hero .title-container .hero-title {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}
.inner-hero .title-container .hero-subtitle {
  margin: 0;
  font-weight: normal;
}

.section-header {
  background-color: #007bd9;
  opacity: 0.8;
  background-size: 10px 10px;
  background-image: repeating-linear-gradient(45deg, rgb(166, 216.4470046083, 255) 0, rgb(166, 216.4470046083, 255) 1px, rgb(217, 238.5391705069, 255) 0, rgb(217, 238.5391705069, 255) 50%);
}
.section-header .section-header-subtitle {
  margin: 0;
}
.section-header .section-header-title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: rgb(0, 108.5460829493, 191.5);
}
.section-header .section-header-title::after {
  position: absolute;
  content: "";
  display: block;
  top: 110%;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 50px;
  background-color: #007bd9;
  margin-bottom: 1rem;
}

.section-title {
  position: relative;
  color: black;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 7rem;
  height: 2px;
  background-color: #007bd9;
  border-radius: 5px;
  top: 140%;
  left: 0;
  transform: none;
}
@media (min-width: 0) {
  .section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-title.text-start::after {
    left: 0;
    transform: none;
  }
  .section-title.text-end::after {
    left: auto;
    right: 0;
    transform: none;
  }
}
@media (min-width: 576px) {
  .section-title.text-sm-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-title.text-sm-start::after {
    left: 0;
    transform: none;
  }
  .section-title.text-sm-end::after {
    left: auto;
    right: 0;
    transform: none;
  }
}
@media (min-width: 768px) {
  .section-title.text-md-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-title.text-md-start::after {
    left: 0;
    transform: none;
  }
  .section-title.text-md-end::after {
    left: auto;
    right: 0;
    transform: none;
  }
}
@media (min-width: 992px) {
  .section-title.text-lg-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-title.text-lg-start::after {
    left: 0;
    transform: none;
  }
  .section-title.text-lg-end::after {
    left: auto;
    right: 0;
    transform: none;
  }
}
@media (min-width: 1200px) {
  .section-title.text-xl-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-title.text-xl-start::after {
    left: 0;
    transform: none;
  }
  .section-title.text-xl-end::after {
    left: auto;
    right: 0;
    transform: none;
  }
}
@media (min-width: 1400px) {
  .section-title.text-xxl-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-title.text-xxl-start::after {
    left: 0;
    transform: none;
  }
  .section-title.text-xxl-end::after {
    left: auto;
    right: 0;
    transform: none;
  }
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  background-color: white;
}

.bg-primary-light {
  background-color: rgb(242.5, 249.5852534562, 255);
}
.bg-primary-light.opacity-light {
  background-color: rgba(166, 216.4470046083, 255, 0.3);
}

.bg-secondary-light {
  background-color: rgb(217.7851239669, 244.479338843, 254.2148760331);
}

.bg-accent-light {
  background-color: rgb(254.2331838565, 247.331838565, 236.7668161435);
}

.bg-accent-gradient {
  background: linear-gradient(to bottom, rgb(254.2331838565, 247.331838565, 236.7668161435), rgb(242.7582644628, 251.5392561983, 254.7417355372));
}
.bg-accent-gradient.bg-to-transparent {
  background: linear-gradient(to bottom, white, transparent);
}

.bg-primary-gradient {
  background: linear-gradient(to bottom, rgb(217, 238.5391705069, 255), rgb(242.7582644628, 251.5392561983, 254.7417355372));
}
.bg-primary-gradient.bg-to-transparent {
  background: linear-gradient(to bottom, rgb(217, 238.5391705069, 255), transparent);
}

.bg-secondary-gradient {
  background: linear-gradient(to bottom, rgb(167.8388429752, 230.3595041322, 253.1611570248), rgb(242.7582644628, 251.5392561983, 254.7417355372));
}
.bg-secondary-gradient.bg-to-transparent {
  background: linear-gradient(to bottom, rgb(167.8388429752, 230.3595041322, 253.1611570248), transparent);
}

.bg-accent-gradient {
  background: linear-gradient(to bottom, rgb(252.1748878924, 226.7488789238, 187.8251121076), white);
}
.bg-accent-gradient.bg-to-transparent {
  background: linear-gradient(to bottom, rgb(252.1748878924, 226.7488789238, 187.8251121076), transparent);
}

.bg-dotted-primary {
  background-color: #007bd9;
  background-image: radial-gradient(white 0.5px, #007bd9 0.5px);
  background-size: 10px 10px;
}

.bg-dotted-accent {
  background-color: #f6a529;
  background-image: radial-gradient(black 0.5px, #f6a529 0.5px);
  background-size: 10px 10px;
}

.divider {
  height: 2px;
  border-bottom: 1px dashed grey;
}

.button {
  border: none;
  padding: 6px 12px;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.button.button-rounded {
  border-radius: 50px;
}
.button.button-primary {
  background-color: #007bd9;
  color: white;
}
.button.button-primary:hover {
  background-color: rgb(0, 65.1843317972, 115);
}
.button.button-accent {
  background-color: #f6a529;
  color: black;
}
.button.button-accent:hover {
  background-color: rgb(177.533632287, 110.33632287, 7.466367713);
  color: white;
}
.button.button-secondary {
  background-color: #12bcfa;
  color: white;
}
.button.button-secondary:hover {
  background-color: rgb(3.4297520661, 120.041322314, 162.5702479339);
}

.button-text {
  color: #007bd9;
  display: inline-block;
  position: relative;
  margin: 10px 0px;
  transition: all 0.2s ease;
}
.button-text i {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: all 0.2s ease;
}
.button-text::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 115%;
  width: 50%;
  height: 1.2px;
  border-radius: 2px;
  background-color: #007bd9;
  transition: all 0.2s ease;
}
.button-text:hover i {
  margin-left: 10px;
}
.button-text:hover::after {
  width: 100%;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  line-height: 1.2rem;
  height: calc(1 * 1.2rem);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.2rem;
  height: calc(2 * 1.2rem);
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.2rem;
  height: calc(3 * 1.2rem);
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  line-height: 1.2rem;
  height: calc(4 * 1.2rem);
}

.modal {
  z-index: 9999;
}

.table th,
.table td {
  background: transparent;
}

.swal2-container {
  z-index: 9999;
}

/* Form Styles */
.form-control:focus {
  box-shadow: none;
}

.search-input-holder {
  display: inline-block;
  position: relative;
}
.search-input-holder input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px !important;
  border: 1px solid #36454F !important;
}
.search-input-holder input:focus {
  box-shadow: none !important;
  border: 1px solid #007bd9 !important;
}
.search-input-holder.full-width {
  display: block;
}
.search-input-holder.rounded input {
  border-radius: 200px !important;
}
.search-input-holder button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background: #007bd9;
  color: white;
  border: none;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
.search-input-holder button:hover {
  background: #f6a529;
}

.custom-checkbox .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: none;
  margin-top: 6px;
  width: 15px;
  height: 15px;
  border: 2px solid #007bd9;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.custom-checkbox .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}
.custom-checkbox .form-check-input:checked {
  background-color: #007bd9;
  border-color: #007bd9;
}
.custom-checkbox .form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox .form-check-label {
  margin-left: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 500;
}

.input-error {
  color: brown;
  font-size: 0.8rem;
}

textarea {
  height: auto !important;
}

/* End of Form */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -80vw;
  width: 80vw;
  height: 100vh;
  background-color: #f8f9fa;
  transition: all 0.3s;
  z-index: 1050;
  overflow-y: auto;
  box-shadow: 3px 0 5px rgba(0, 0, 0, 0.1);
}
.mobile-sidebar .logo {
  height: 60px;
}
.mobile-sidebar.active {
  left: 0;
}
.mobile-sidebar .mobile-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #dee2e6;
}
.mobile-sidebar {
  /* Menu styles */
}
.mobile-sidebar .menu-item {
  position: relative;
  border-bottom: 1px solid #dee2e6;
}
.mobile-sidebar .menu-link {
  display: block;
  padding: 15px 20px;
  color: #212529;
  text-decoration: none;
  font-weight: 500;
}
.mobile-sidebar .menu-link:hover,
.mobile-sidebar .menu-link:focus {
  background-color: #e9ecef;
  color: #0d6efd;
}
.mobile-sidebar .toggle-submenu {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  border: none;
  background: transparent;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sidebar .toggle-submenu .fa-chevron-right {
  transition: transform 0.3s;
}
.mobile-sidebar .toggle-submenu.active .fa-chevron-right {
  transform: rotate(90deg);
}
.mobile-sidebar .submenu {
  display: none;
  background-color: #ffffff;
}
.mobile-sidebar .submenu .menu-link {
  padding-left: 40px;
}
.mobile-sidebar .submenu .submenu .menu-link {
  padding-left: 60px;
}
.mobile-sidebar {
  /* Back links */
}
.mobile-sidebar .back-link {
  padding: 15px 20px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mobile-sidebar .back-link .fa-chevron-left {
  margin-right: 10px;
}
.mobile-sidebar {
  /* Mobile menu level transitions */
}
.mobile-sidebar .menu-container {
  position: relative;
  height: calc(100vh - 67px);
  /* Account for mobile-sidebar header */
  overflow: hidden;
}
.mobile-sidebar .menu-level {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(0);
  transition: transform 0.3s;
  overflow-y: auto;
}
.mobile-sidebar .menu-level.level-2,
.mobile-sidebar .menu-level.level-3 {
  transform: translateX(100%);
}
.mobile-sidebar .menu-level.level-2.active,
.mobile-sidebar .menu-level.level-3.active {
  transform: translateX(0);
}
.mobile-sidebar .menu-level.level-1.inactive {
  transform: translateX(-100%);
}
.mobile-sidebar .menu-level.level-2.inactive {
  transform: translateX(-100%);
}

#mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

footer {
  background-color: white;
  font-size: 0.9rem;
  color: rgb(74.7067669173, 95.4586466165, 109.2932330827);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
footer p {
  text-align: inherit;
}
footer .footer-logo {
  width: 80px;
}
footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #36454F, transparent 50%);
  font-size: 16px;
  color: #36454F;
  margin-right: 10px;
  transition: 0.3s;
}
footer .social-links a:hover {
  color: #007bd9;
  border-color: #007bd9;
}
footer .footer-title {
  color: black;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer-title {
    margin-bottom: 10px;
  }
}
footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
footer ul > li {
  display: block;
}
footer ul > li > a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: rgb(74.7067669173, 95.4586466165, 109.2932330827);
  transition: all 0.2 ease;
  font-size: 0.85rem;
}
footer ul > li > a:hover {
  color: #007bd9;
}
footer .mobile-app-desc {
  margin-top: 20px;
}

.mobile-bottom-nav {
  position: sticky !important;
  bottom: 0 !important;
  width: 100%;
  background-color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  margin-top: auto;
}
.mobile-bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0;
  text-decoration: none;
  color: #36454F;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-bottom-nav a i {
  color: #007bd9;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.mobile-bottom-nav a:hover {
  background-color: #f9f9f9;
}
@media (max-width: 767.98px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

.page-hero {
  background-color: rgb(217.7851239669, 244.479338843, 254.2148760331);
  position: relative;
}
.page-hero h1 {
  font-weight: bold;
  text-transform: uppercase;
}
.page-hero p {
  text-align: center;
}
.page-hero nav {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 7px 15px;
  border-radius: 100px;
}
.page-hero nav .breadcrumb-item {
  padding: 0px;
}
.page-hero nav .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  background-image: url("../icons/chevron-right.svg");
  filter: brightness(0) saturate(100%) invert(24%) sepia(16%) saturate(612%) hue-rotate(161deg) brightness(98%) contrast(94%);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin: 3px 5px 0px;
}
.page-hero nav ol {
  margin-bottom: 0;
}
.page-hero nav ol li {
  font-size: 0.8rem;
}
.page-hero nav ol li a {
  text-decoration: none;
  color: #007bd9;
}
@media (max-width: 768px) {
  .page-hero {
    position: static;
  }
  .page-hero nav {
    display: none !important;
  }
}

.doctor-card {
  background-color: white;
  box-shadow: 0 0 5px rgba(211, 211, 211, 0.8);
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.doctor-card .img-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.doctor-card .doc-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.doctor-card .desc {
  padding: 2rem 1.2rem;
}
.doctor-card .doc-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.2rem;
  height: calc(2 * 1.2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.doctor-card .doc-spec {
  font-size: small;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.2rem;
  height: calc(2 * 1.2rem);
  margin-bottom: 1rem;
}
.doctor-card .doc-exp {
  font-size: 0.8rem;
  color: grey;
}
.doctor-card .btn-book {
  text-align: center;
  border: 1px solid #007bd9;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.doctor-card .btn-book i {
  margin-left: 10px;
  transition: all 0.2s ease-in-out;
}
.doctor-card .btn-book:hover {
  background: linear-gradient(to right, #007bd9, #12bcfa);
  color: white;
}
.doctor-card:hover {
  box-shadow: 0 0 10px lightgray;
}
@media (max-width: 768px) {
  .doctor-card {
    flex-direction: column;
    align-items: start;
  }
  .doctor-card .doc-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.2rem;
    height: calc(2 * 1.2rem);
  }
  .doctor-card .doc-spec {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 1.2rem;
    height: calc(3 * 1.2rem);
  }
}

.doctor-card-alt {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #f6a529;
  margin-bottom: 10px;
  cursor: pointer;
}
.doctor-card-alt .doc-img {
  width: 70px;
  height: 70px;
  border-radius: 5px;
}
.doctor-card-alt .desc {
  margin-left: 10px;
}
.doctor-card-alt .desc .doc-name {
  color: black;
}
.doctor-card-alt .desc .doc-spec {
  color: #36454F;
}
.doctor-card-alt .desc .doc-exp {
  color: grey;
}
.doctor-card-alt .desc button {
  border-radius: 3px;
  margin-top: 5px;
  font-size: 0.8rem !important;
}
.doctor-card-alt.doctor-card-vertical {
  flex-direction: column;
}
.doctor-card-alt.doctor-card-vertical .doc-name {
  font-weight: bold;
}
.doctor-card-alt.doctor-card-vertical .doc-img {
  width: 150px;
  height: 150px;
}
.doctor-card-alt.doctor-card-vertical .desc {
  margin-left: 0;
  margin-top: 10px;
}
.doctor-card-alt.doctor-card-horizontal .desc .doc-spec {
  font-size: 0.8rem;
}
.doctor-card-alt.doctor-card-horizontal .desc .doc-exp {
  font-size: 0.8rem;
  color: grey;
}
.doctor-card-alt.doctor-card-horizontal .doc-spec {
  color: black;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.checklist li {
  position: relative;
  padding-left: 1.5em;
}
.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007bd9;
  font-weight: bold;
}
.checklist.gap-1 li {
  margin-bottom: 0.5rem;
}
.checklist.bullet-cancel li::before {
  content: "✕";
  color: red;
}
.checklist.bullet-chevron li::before {
  content: "▶";
}
.checklist.bullet-arrow li::before {
  content: "→";
}
.checklist.bullet-diamond li::before {
  content: "◈";
}
.checklist.bullet-diamond-dots li::before {
  content: "⁘";
}

.macy-item {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 6px;
}
.macy-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.macy-item:hover img {
  transform: scale(1.03);
}

.fancybox__container {
  z-index: 9999 !important;
}

#callbackModal .modal-content {
  overflow: hidden;
}
#callbackModal .modal-content .modal-body {
  padding: 0;
}
#callbackModal .modal-content .modal-body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#callbackModal .modal-content .modal-body .form-container .form-group {
  margin-bottom: 1rem;
}
#callbackModal .modal-content .modal-body .form-container .form-group .input-group .input-group-text {
  border-color: rgb(250.1165919283, 206.1659192825, 138.8834080717);
  color: rgb(128.5919282511, 79.9192825112, 5.4080717489);
  background-color: rgb(252.1748878924, 226.7488789238, 187.8251121076);
}
#callbackModal .modal-content .modal-body .form-container .form-group .form-control {
  padding: 0.7rem;
  border-color: rgb(250.1165919283, 206.1659192825, 138.8834080717);
}
#callbackModal .modal-content .modal-body .form-container .form-group .form-control:focus {
  border-color: #f6a529;
}

.outer-line-card .card-body {
  height: 100%;
  padding: 1rem;
  border-radius: 10px;
  background: white;
  border: 1px solid #007bd9;
}/*# sourceMappingURL=main.css.map */