* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #222;
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
}

.btn {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

section {
  padding: 36px 0;
}
@media (max-width: 576px) {
  section {
    padding: 25px 0;
  }
}

.custom-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.p-32 {
  padding: 32px;
}

.mb-45 {
  margin-bottom: 45px;
}

.section-title {
  font-size: 29.16px;
  font-weight: 700;
  color: #111827;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 20.7px;
  }
}

.section-subtitle {
  font-size: 18px;
  color: #0d9488;
}
@media (max-width: 576px) {
  .section-subtitle {
    font-size: 16px;
    line-height: 1.4;
  }
}

.sticky-form {
  position: sticky;
  top: 25px;
}

.more-link {
  display: inline-block;
  color: #0d9488;
  padding-bottom: 2px;
  font-size: 13px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.more-link:hover {
  color: #0f766e;
  border-bottom-color: #0f766e;
}

.blue-link {
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
  color: #2563eb;
}
.blue-link:hover {
  border-bottom-color: #2563eb;
}

.header {
  padding: 12px 0;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.header .logo-img {
  height: 40px;
}
@media (max-width: 576px) {
  .header .logo-img {
    height: 32px;
  }
}
.header .header-actions {
  background-color: #f5f5f5;
  padding: 6px;
}
@media (max-width: 576px) {
  .header .header-actions {
    padding: 4px;
  }
}
.header .header-actions .btn {
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 6px;
  background-color: #fff;
  color: #111827;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.075) 0px 2px 4px 0px;
}
.header .header-actions .btn:hover {
  background-color: #f5f5f5;
}
@media (max-width: 576px) {
  .header .header-actions .btn {
    padding: 5px 10px;
    text-align: center;
  }
}
.header .header-actions .btn-provider {
  color: #0f766e;
  transition: all 0.2s ease;
}
.header .header-actions .btn-provider:hover {
  background: #f0fdfa;
}
.breadcrumb {
  background-image: linear-gradient(to right, rgb(240, 253, 250), rgb(236, 254, 255), rgb(239, 246, 255));
  border-bottom: 1px solid rgb(204, 251, 241);
}

.breadcrumb-logo {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

.breadcrumb-title {
  font-size: 24.3px;
  font-weight: 600;
  color: #111827;
  transition: all 0.15s ease;
}
.breadcrumb-title:hover {
  color: rgb(15, 118, 110);
}
@media (max-width: 576px) {
  .breadcrumb-title {
    font-size: 18px;
  }
}

/* Back link */
.breadcrumb-back {
  padding: 6px 12px;
}
.breadcrumb-back:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-bottom-color: transparent !important;
}

.banner, .banner__inner {
  background: #eefdf9;
  padding: 25px 50px;
  border: 1px solid rgb(204, 251, 241);
}
@media (max-width: 576px) {
  .banner, .banner__inner {
    padding: 25px;
  }
}
.banner__title {
  font-size: 36px;
}
.banner__subtitle {
  font-size: 19.98px;
  font-weight: 600;
}
.banner__inner {
  border: none !important;
}
.banner__inner .title {
  font-weight: 600;
}
.banner__inner .animate-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.banner__inner .carousel-item.active .animate-slide {
  opacity: 1;
  transform: translateY(0);
}
.banner__inner .slide-img {
  max-width: 220px;
  margin-bottom: 20px;
}
.banner__inner .review-img {
  width: 72px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #ffffff;
}
.banner__inner .review-name {
  font-size: 18px;
}
.banner__inner .review-content {
  max-width: 450px;
  font-size: 16px !important;
  color: #4a5568 !important;
}
.banner__inner .review-star {
  fill: #FB923C;
  color: #FB923C;
  height: 18px;
  width: 18px;
}
.banner__inner .slide-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.banner__inner .slide-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 auto;
}
.banner__inner .carousel-indicators {
  bottom: -25px;
}
.banner__inner .carousel-indicators button {
  all: unset;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.banner__inner .carousel-indicators .active {
  width: 30px;
  height: 6px;
  border-radius: 20px;
  background-color: #0D9488;
  overflow: hidden;
}

.profile-card {
  padding: 32px;
}
@media (max-width: 576px) {
  .profile-card {
    padding: 16px;
  }
}
.profile-card__img {
  width: 256px;
  height: 256px;
  border-radius: 24px;
}
.profile-card__name {
  font-size: 41.6px;
  color: #0f172a;
}
.profile-card__address {
  font-size: 18px;
  color: #374151;
  line-height: 1.6;
}
.profile-card__link {
  font-size: 18px;
  padding-top: 1px;
  display: inline-block;
}
@media (max-width: 768px) {
  .profile-card__img {
    width: 200px;
    height: 200px;
  }
  .profile-card__name {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .profile-card__img {
    width: 145px;
    height: 145px;
  }
  .profile-card__name {
    font-size: 18px;
  }
  .profile-card__address, .profile-card__link {
    font-size: 14px;
  }
}

.about-doctor__title {
  color: #111827;
  font-size: 36px;
}
@media (max-width: 576px) {
  .about-doctor__title {
    font-size: 30.24px;
  }
}
.about-doctor__content {
  font-size: 17px;
  color: #374151;
}

.form.ms-n38 {
  margin-left: -38px;
}
@media (max-width: 992px) {
  .form.ms-n38 {
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.form__header {
  border-bottom: 1px solid #E5E5E5;
}
.form__box {
  padding: 12px;
}
.form__box .provider {
  font-size: 14px;
  color: #4B5563;
}
.form__box .name {
  color: #111827;
  font-size: 16px;
  font-weight: 500;
}
.form__button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.form__toggle-btn {
  padding: 6px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.form__toggle-btn:hover {
  background-color: #f5f5f5;
}
.form__toggle-btn.active {
  background-color: #fce7f3;
  border: 1px solid transparent;
  color: #db2777;
}
.form__label {
  font-size: 13.3px;
  margin-bottom: 4px;
}
.form__label-sm {
  color: #374151;
  font-size: 12px;
}
.form__btn-outline-secondary {
  color: #111827;
  font-size: 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.form__btn-outline-secondary.active, .form__btn-outline-secondary:hover {
  background: #e5e7eb;
  border: 1px solid transparent;
}
.form__unavailable {
  font-size: 14px;
}
.form__unavailable.alert-warning {
  background-color: #fffbeb;
  color: #b45309;
}
.form__unavailable-heading {
  color: #92400e;
  font-size: 14px;
}
.form__unavailable-heading--code {
  color: #723B04;
  font-size: 24.3px;
  letter-spacing: 2px;
}
.form__unavailable-text {
  color: #b45309;
  font-size: 12px;
}
.form__unavailable-icon {
  color: #d97706;
}
.form__warning-btn {
  border: 1px solid #ffe69c;
  color: #92400e;
  font-size: 12px;
  transition: all 0.2s ease;
}
.form__warning-btn:hover {
  border: 1px solid #ffe69c;
  background-color: #fffbeb;
}
.form__warning-btn i {
  color: #d97706;
}
.form__primary-btn {
  border: 1px solid #93c5fd;
  color: #1d4ed8;
  font-size: 14px;
  transition: all 0.2s ease;
}
.form__primary-btn:hover {
  border: 1px solid #93c5fd;
  background-color: #eff6ff;
}
.form__info-box {
  background-color: #eff6ff;
  border: 1px solid #93c5fd;
}
.form__info-box-text {
  color: #1e40af;
  font-size: 14px;
}
.form__info-box-btn {
  color: #2563eb;
  font-size: 12px;
}
.form__identity-digitcode {
  color: #4B5563;
  font-size: 14px;
}
.form__identity-email {
  font-size: 14px;
}
.form__identity-mode {
  color: #4B5563;
  font-size: 16px;
}
.form__identity-code {
  color: #4B5563;
  font-size: 18px;
}
.form__icon-blue {
  color: #2563eb;
}
.form-otp {
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
}
.form #appResource_chzn .chzn-single,
.form #appLocation_chzn .chzn-single,
.form #patGender_chzn .chzn-single,
.form #paymentType_chzn .chzn-single,
.form #insuranceId_chzn .chzn-single {
  height: 35px;
  padding: 6px 12px;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  font-size: 14px;
  color: #111827;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form #appResource_chzn.chzn-container-single .chzn-single div,
.form #appLocation_chzn.chzn-container-single .chzn-single div,
.form #patGender_chzn.chzn-container-single .chzn-single div,
.form #paymentType_chzn.chzn-container-single .chzn-single div,
.form #insuranceId_chzn.chzn-container-single .chzn-single div {
  top: 5px;
}
.form #paymentType_chzn.chzn-container-single .chzn-single abbr {
  top: 10px;
}
.form #appResource_chzn.chzn-container-single .chzn-search input,
.form #appLocation_chzn.chzn-container-single .chzn-search input,
.form #patGender_chzn.chzn-container-single .chzn-search input,
.form #paymentType_chzn.chzn-container-single .chzn-search input,
.form #insuranceId_chzn.chzn-container-single .chzn-search input {
  width: 100% !important;
}
.form .chzn-container .chzn-drop {
  border: 0 !important;
}
.form__select, .form__input, .form__textarea {
  width: 100%;
  padding: 6px 12px;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  font-size: 14px;
  color: #111827;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 35px;
}
.form__select > option, .form__input > option, .form__textarea > option {
  font-size: 13px;
}
.form__select:focus, .form__input:focus, .form__textarea:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #111827;
}
.form__input--with-icon {
  padding-left: 36px;
}
.form__input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
.form__date-icon {
  left: 12px;
  width: 15px;
  height: 15px;
  pointer-events: none;
  color: #9ca3af;
}
.form__submit {
  font-size: 14px;
}
.form__details .label-text {
  color: #4B5563;
}
.form__details .label-text,
.form__details .value-text,
.form__details .msg-text {
  font-size: 14px;
}
.form__details .msg-text {
  color: #4B5563;
}
.form__details-content {
  background: #f9fafb;
}

.time-slot {
  padding: 12px;
  border: 1px solid #E5E5E5;
}
.time-slot__btn {
  height: 32px;
  font-size: 12px;
  background: #fff;
  transition: all 0.2s ease;
  border: 1px solid #E5E5E5;
  cursor: pointer;
}
.time-slot__btn:hover {
  background: #f5f5f5;
}
.time-slot__btn.selected {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.time-slot__btn.disabled {
  color: #b2b6bb;
  cursor: not-allowed;
}

.calender-card__label {
  font-size: 13.3px;
  margin-bottom: 4px;
}
.calender-card__header .month-title {
  font-style: 18px;
  color: #111827;
}
.calender-card__header .nav-btn {
  width: 42px;
  height: 32px;
  border: 1px solid #E5E5E5;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.calender-card__available {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}
.calender-card__legend {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #4B5563;
}
.calender-card__legend .legend {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.calender-card__legend .legend.available {
  border: 2px solid #86efac;
  background: #ecfdf5;
}
.calender-card__legend .legend.waiting {
  border: 2px solid #93c5fd;
  background: #dbeafe;
}
.calender-card__legend .legend.booked {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}
.calender-card__days, .calender-card__dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.calender-card__days span {
  font-size: 12px;
  font-weight: 500;
  color: #4B5563;
  padding: 6px 0;
}
.calender-card__dates span {
  font-size: 14px;
  padding: 10px 0;
  border-radius: 8px;
  cursor: pointer;
}
.calender-card__dates .disabled {
  color: #d1d5db;
  cursor: not-allowed;
  font-weight: 400;
}
.calender-card__dates .available {
  border: 2px solid #bbf7d0;
  color: #065f46;
  background: #ecfdf5;
}
.calender-card__dates .selected {
  border: 2px solid #60a5fa;
  background: #eff6ff;
  color: #1d4ed8;
}
.calender-card .calendar {
  padding: 12px;
  border: 1px solid #E5E5E5;
}

.section-tabs {
  border-bottom: 1px solid #E5E5E5;
  border-top: 1px solid #E5E5E5;
  z-index: 1020;
}
.section-tabs .nav {
  gap: 28px;
  padding: 14px 0;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.section-tabs .nav-link {
  font-size: 15px;
  color: #4B5563;
  padding: 0 0 12px 0;
  white-space: nowrap;
  position: relative;
}
@media (max-width: 576px) {
  .section-tabs .nav-link {
    font-size: 14px;
  }
}
.section-tabs .nav-link.active, .section-tabs .nav-link:hover {
  color: #111827;
}
.section-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1.5px;
  background: #111827;
}

.page-section--title {
  font-size: 19.98px;
}
.page-section--content {
  white-space: pre-wrap;
  color: #4B5563;
  font-size: 14px;
}

.service-card {
  height: 100%;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.service-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: #4B5563;
  margin: 0;
}

/* Icon styles */
.icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
.icon.pink {
  background-image: linear-gradient(to right bottom, rgb(244, 114, 182), rgb(236, 72, 153));
}
.icon.orange {
  background-image: linear-gradient(to right bottom, rgb(251, 146, 60), rgb(239, 68, 68));
}
.icon.purple {
  background-image: linear-gradient(to right bottom, rgb(216, 180, 254), rgb(192, 132, 252));
}
.icon.yellow {
  background-image: linear-gradient(to right bottom, rgb(253, 224, 71), rgb(250, 204, 21));
}
.icon.lavender {
  background-image: linear-gradient(to right bottom, rgb(165, 180, 252), rgb(192, 132, 252));
}
.icon.blue {
  background-image: linear-gradient(to right bottom, rgb(147, 197, 253), rgb(34, 211, 238));
}
.icon.teal {
  background-image: linear-gradient(to right bottom, rgb(94, 234, 212), rgb(45, 212, 191));
}
.icon.green {
  background-image: linear-gradient(to right bottom, rgb(134, 239, 172), rgb(74, 222, 128));
}
.icon.cyan {
  background-image: linear-gradient(to right, rgb(45, 212, 191), rgb(59, 130, 246));
}

.section-box {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}
.section-box:not(:last-child) {
  margin-bottom: 45px;
}

.review-card {
  height: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 22px;
  transition: box-shadow 0.15s ease;
}
.review-card:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-meta .stars {
  color: #fb923c;
}
.review-meta .stars svg {
  width: 18px;
  fill: #fb923c;
}
.review-meta .time {
  font-size: 13px;
  color: #6b7280;
}

.review-text {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-user p {
  font-size: 15.12px;
  color: #111827;
  font-weight: 500;
}

/* View more link */
.view-more {
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.view-more:hover {
  border-bottom-color: #2563eb;
}

.provider-card {
  border: 1px solid #E5E5E5;
  transition: box-shadow 0.15s ease;
}
.provider-card:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}

.provider-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Provider info */
.provider-name {
  font-size: 19px;
  color: #111827;
  margin-bottom: 2px;
}
@media (max-width: 576px) {
  .provider-name {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
.provider-name span {
  color: #4B5563;
}

.provider-address {
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 0px;
}
@media (max-width: 576px) {
  .provider-address {
    line-height: 1.4;
  }
}

/* Buttons */
.provider-btn {
  font-size: 14px;
  padding: 6px 15px;
}
.provider-btn.btn-outline-secondary {
  border-color: #E5E5E5;
  color: #111827;
}
.provider-btn.btn-outline-secondary:hover {
  background-color: #f5f5f5;
}

.insurance-card {
  border: 2px solid #E5E5E5;
  font-size: 15px;
  color: #1f2937;
  font-weight: 500;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.insurance-card:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  border-color: #60a5fa;
}
@media (max-width: 576px) {
  .insurance-card {
    font-size: 14px;
  }
}

.location-row {
  padding: 13px;
}

/* Left info */
.city-name {
  font-size: 18px;
  color: #2563eb;
  margin-bottom: 8px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .city-name {
    font-size: 16px;
  }
}

.address {
  font-size: 14px;
  color: #374151;
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.hours li {
  font-size: 12px;
  color: #4B5563;
  margin-bottom: 1px;
}

/* Map */
.map-box {
  height: 250px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  font-size: 0.9rem;
}/*# sourceMappingURL=main.css.map */