/* =========================================================
   BANNER SECTION
========================================================= */

.banner-section {
  position: relative;
  height: 320px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.banner-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  top: 0;
}

.banner-section .text-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: end;
  z-index: 1;
  position: relative;
}

/* =========================================================
   COMMON FLEX UTILITIES
========================================================= */

.location-count-badge,
.filter-content,
.working-hours-link,
.modal-share-wrapper,
.working-hours-item,
.location-link,
.filter-dropdown-btn,
.service-header,
.location-card .btn-call,
.location-card .btn-direction,
.service-btn-call,
.service-btn-direction {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: start;
}

.location-card .btn-call,
.location-card .btn-direction,
.service-btn-call,
.service-btn-direction,
.service-header {
  justify-content: center;
}

.filter-dropdown-btn,
.service-header {
  justify-content: space-between;
}

.filter-dropdown-btn,
.filter-dropdown-menu .dropdown-item,
.dropdown-sub,
.btn-submit,
.working-hours-link,
.location-card .btn-call,
.location-card .btn-direction,
.service-btn-call,
.service-btn-direction,
.day-text,
.ui-menu .ui-menu-item-wrapper,
.service-name {
  font-size: 16px;
  font-weight: 500;
}

/* =========================================================
   ANNOUNCEMENT SECTION
========================================================= */

.announcement-section {
  background: var(--color-sky-lightblue);
}


.announcement-section .btn-close.btn-close-op1 {
  --bs-btn-close-opacity: 1;
}

/* =========================================================
   LOCATIONS FILTER SECTION
========================================================= */

.locations-filter {
  padding: 20px 0;
}

.filter-box {
  padding: 8px 8px 8px 0;
  background: var(--color-white);
  border: 1px solid var(--grey-light-gray-20);
  border-radius: 8px;
}

.filter-content {
  gap: 16px;
}

/* =========================================================
   SEARCH
========================================================= */

.search-wrapper {
  flex: 1;
  min-width: 200px;
}

.search-wrapper .search-input {
  position: relative;
  background: var(--color-white);
  /* border: 1px solid var(--grey-light-gray-20); */
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.search-wrapper .search-input .searchIcon {
  position: absolute;
  top: 50%;
  left: 20px;

  opacity: 0.5;
  transform: translateY(-50%);
  z-index: 1;
}

.search-wrapper .search-field {
  width: 100%;
  padding-left: 60px;
  padding-right: 50px;

  font-size: 14px;
  font-weight: 400;
  color: var(--color-grey-op-500);

  background: transparent;
  border: 0;
  outline: 0;
}

.search-wrapper .search-field:focus {
  outline: 0;
  box-shadow: none;
}

.search-wrapper .search-input input::placeholder {
  color: var(--grey-gray);
}

.search-wrapper .search-input .remove-search {
  position: absolute;
  right: 0;
  background-color: transparent;
  border: 0;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 6px 6px 0;
  transition: all 0.2s ease;
}

.search-wrapper .search-input .remove-search:hover {
  background-color: #f5f5f5;
}

.search-wrapper .search-input .remove-search:focus {
  outline: 0;
  box-shadow: none;
}

.search-wrapper .search-input .remove-search img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.search-wrapper .search-input .remove-search:hover img {
  opacity: 1;
}

/* =========================================================
   AUTOCOMPLETE SUGGESTIONS
========================================================= */

.ui-widget {
  font-family: "Exo", sans-serif !important;
}

button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.search-bar .search-wrap .search-box .form-control:focus {
  outline: 0;
  box-shadow: none;
  border-color: #dee2e6;
}

.ui-widget.ui-widget-content {
  padding: 0 20px;
  /* margin-top: 10px !important; */
  border: 1px solid #eef2f6;
  box-shadow: 0px -4px 70px 0px #0000000f;
  border-radius: 6px;
  /* transform: translate(0, 9%); */
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  border-bottom: 1px solid #c9dfe7;
  padding: 16px 0;
}

.ui-menu .ui-menu-item-wrapper {
  font-size: 14px;
  font-weight: 500;
}

body .ui-menu .ui-menu-item-wrapper:hover,
body .ui-state-active,
body .ui-widget-content .ui-state-active {
  background: transparent;
  color: #0b164c;
  border-color: transparent;
  font-weight: 500;
  opacity: 0.9;
}

.suggestion-item.ui-menu-item-wrapper {
  position: relative;
}

.suggestion-item.ui-menu-item-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  background-image: url(../img/arrow-up-red.svg);
  width: 14px;
  height: 14px;
  top: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.suggestion-item.no-result-item {
  color: #888;
  font-style: italic;
  cursor: default;
  pointer-events: none;
}

.suggestion-item.no-result-item.ui-menu-item-wrapper::after {
  display: none;
}

/* =========================================================
   LOCATION COUNT BADGE
========================================================= */

.location-count-badge {
  padding: 6px;

  white-space: nowrap;

  background: #f5f5f5;
  border: 1px solid var(--grey-gray);
  border-radius: 6px;
}

.location-count-badge .count-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-second);
}

/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-wrapper {
  position: relative;
  flex: 0 0 auto;
  min-width: 180px;
}

.filter-dropdown-btn {
  width: 100%;
  gap: 8px;

  padding: 10px 14px;

  color: var(--color-dark);

  cursor: pointer;

  background: var(--color-white);
  border: 0;
  border-left: 2px solid var(--color-theme-light-grey);

  transition: all 0.3s ease;
}

.filter-dropdown-btn img.downicon {
  opacity: 0.4;
  transition: transform 0.3s ease;
}

.filter-dropdown-btn.active img.downicon {
  transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN MENU
========================================================= */

.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  min-width: 225px;
  max-height: 400px;
  padding: 20px;
  overflow-y: auto;
  background: var(--color-white);
  border: 1px solid var(--grey-light-gray-20);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
}

.filter-dropdown-menu.show {
  display: block;
}

.filter-dropdown-menu .dropdown-item,
.dropdown-sub {
  cursor: pointer;
  transition: background 0.2s ease;
}

.filter-dropdown-menu .dropdown-item {
  margin-bottom: 0;
  color: var(--color-dark);
}

.filter-dropdown-menu .dropdown-item:hover,
.filter-dropdown-menu .dropdown-item.active,
.dropdown-sub:hover {
  color: var(--red);
}

.filter-dropdown-menu .dropdown-item.active,
.dropdown-sub.active {
  color: var(--red);
}

.dropdown-sub {
  position: relative;
  padding: 0 16px 0 32px;
  font-size: 14px;
  color: var(--color-dark);
}

.dropdown-sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 4px;
  height: 4px;
  background: var(--color-dark);
  border-radius: 50%;
  transform: translateY(-50%);
}

.dropdown-sub.active::before {
  background: var(--red);
}

.dropdown-sub-hr,
.dropdown-item-hr {
  margin: 16px 0;
  color: var(--color-theme-text);
}

.dropdown-sub-hr:last-child,
.dropdown-item-hr:last-child {
  display: none;
}

/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.filter-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.filter-dropdown-menu::-webkit-scrollbar-track {
  background: var(--light-sky);
  border-radius: 10px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--dark-red);
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-wrapper {
  flex: 0 0 auto;
}

.btn-submit {
  padding: 10px 28px;

  color: var(--color-white);

  white-space: nowrap;
  cursor: pointer;

  background: var(--red);
  border: 0;
  border-radius: 6px;

  transition: all 0.3s ease;
}

.btn-submit:focus {
  outline: 0;
}

.btn-submit:hover,
.btn-submit:active {
  background: var(--red);
}

/* =========================================================
   LOCATIONS LIST + CARDS
========================================================= */

.locations-list {
  padding-bottom: 60px;
  background: var(--color-white);
}

.location-card {
  display: flex;
  flex-direction: column;

  height: 100%;

  overflow: hidden;

  background: var(--color-white);
  border: 1px solid var(--grey-light-gray-20);
  border-radius: 12px;

  transition: box-shadow 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}

/* =========================================================
   CARD IMAGE
========================================================= */

.image-box-wrapper {
  padding: 16px;
}

.card-image-wrapper {
  width: 100%;
  min-height: 180px;

  overflow: hidden;

  aspect-ratio: 258 / 172;

  border-radius: 8px;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.location-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 16px;
}

.card-content .content-desc {
  min-height: 124px;
}

.card-content .content-desc .h18 {
  margin-bottom: 10px;

  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

/* =========================================================
   TAGS
========================================================= */

.tag {
  display: inline-block;

  padding: 4px 10px;

  font-size: 12px;
  font-weight: 500;
  color: var(--color-blue-text-lt);

  background: var(--color-blue-lt);
  border-radius: 4px;
}

.location-card .p-14-para {
  color: var(--grey-gray);
}

/* =========================================================
   WORKING HOURS LINK
========================================================= */

.working-hours-link {
  gap: 8px;

  margin: 12px 0;
  padding: 16px;

  text-align: left;
  color: var(--color-dark);

  cursor: pointer;

  background: none;
  border: 1px solid var(--grey-light-gray-20);
  border-radius: 6px;

  transition: opacity 0.2s ease;
}

.working-hours-link:hover {
  opacity: 0.8;
}

.working-hours-link span {
  flex: 1;
  font-weight: 500;
  text-align: start;
}

/* =========================================================
   CARD BUTTONS
========================================================= */

.location-card .card-actions {
  display: flex;
  gap: 10px;

  margin-top: auto;
}

.location-card .btn-call,
.location-card .btn-direction,
.service-btn-call,
.service-btn-direction {
  flex: 1;
  gap: 6px;

  padding: 10px 12px;

  color: var(--color-dark);
  text-decoration: none;

  cursor: pointer;

  background: var(--color-white);
  border: 1px solid var(--grey-light-gray-20);
  border-radius: 6px;

  transition: all 0.2s ease;
}

.btn-theme-secondary {
  color: var(--color-white);
  background-color: var(--red);
  border-color: transparent;
}

.location-card .btn-call:hover {
  background: var(--light-sky);
}

.location-card .btn-direction {
  color: var(--color-dark);
  border-color: var(--red);
}

/* =========================
   WORKING HOURS MODAL
========================= */

.working-hours-modal-content {
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 12px;
}

.working-hours-modal-header,
.working-hours-modal-body {
  padding: 20px 16px 16px;
}

.working-hours-modal-body {
  max-height: 65vh;
  overflow-y: auto;
}

.working-hours-modal-footer {
  padding: 18px 24px 24px;
  background: #fff;
  border-top: 0;
}

.working-hours-modal-footer .btn-call,
.working-hours-modal-footer .btn-direction {
  flex: 1;
  height: 56px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
}

.working-hours-modal-footer .btn-call {
  color: #111;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.working-hours-modal-footer .btn-direction {
  color: #fff;
  background: var(--red);
  border: none;
}

/* =========================
   SERVICE HEADER
========================= */

.service-header-wrapper {
  margin-bottom: 16px;
}

.service-header-btn {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: #fff;
  background: var(--red);
  border-radius: 12px 12px 0 0;
}

.service-header-wrapper .service-accordion {
  overflow: hidden;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 0 0 12px 12px;
}

.service-header-wrapper .service-accordion .service-content {
  padding: 4px 16px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.service-header-wrapper .service-phone {
  font-size: 12px;
}

/* =========================
   WORKING HOURS SECTION
========================= */

.working-hours-main {
  margin-bottom: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
}

.working-hours-section {
  margin-bottom: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}

.working-hours-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.working-hours-section .section-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.working-hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}

.day-text,
.time-text {
  font-size: 14px;
  font-weight: 500;
}

.day-text {
  flex: 1;
  color: #666;
}

.time-text {
  text-align: right;
  color: #0B164C;
  ;
}

.time-text.closed {
  color: var(--red);
}

/* =========================
   SPECIAL SECTIONS
========================= */

.working-hours-section.ramadan,
.working-hours-section.eid,
.working-hours-section.national,
.working-hours-section.red,
.working-hours-section.orange,
.working-hours-section.blue,
.working-hours-section.grey {
  margin-top: 12px;
  padding: 16px;
  border: none;
  border-radius: 8px;
}

.working-hours-section.ramadan,
.working-hours-section.red {
  background: #ffe5e566;
}

.working-hours-section.ramadan .section-title,
.working-hours-section.red .section-title {
  color: var(--red);
}

.working-hours-section.eid,
.working-hours-section.orange {
  background: #fff9eb;
}

.working-hours-section.eid .section-title,
.working-hours-section.orange .section-title {
  color: #ff9800;
}

.working-hours-section.national,
.working-hours-section.blue,
.working-hours-section.grey {
  background: #a3a3a31a;
}

/* =========================
   MODAL SCROLLBAR
========================= */

.working-hours-modal-body::-webkit-scrollbar {
  width: 4px;
}

.working-hours-modal-body::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 20px;
}

/* =========================
   MOBILE ACCORDION FIX
========================= */

.mobile-location-accordion {
  padding: 16px;
}

.main-acc-item {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px !important;
}

.main-acc-btn {
  padding: 16px !important;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  background: #f3f3f3 !important;
  /* border-radius:18px !important; */
  box-shadow: none !important;
}

.main-acc-btn:not(.collapsed) {
  color: var(--color-dark);
}

.main-acc-btn:focus {
  box-shadow: none !important;
}

.nested-item {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #ddd !important;
  border-radius: 12px !important;
}

body .nested-btn {
  padding: 16px 16px;
  font-size: 16px;
  font-weight: 500;
  background: #FFE5E5;
  box-shadow: none !important;
}

.nested-btn:not(.collapsed) {
  color: var(--color-white) !important;
  background: var(--red) !important;
}

.location-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 16px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.location-link:last-child {
  border-bottom: none;
}

/* =========================
   ACCORDION ICON FIX
========================= */

.main-acc-btn.accordion-button::after,
.nested-btn.accordion-button::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: auto;
  transition: all 0.3s ease;
}

.nested-btn.accordion-button.collapsed::after {
  background-image: url("../img/accordion-arrow-right-black.svg");
}

.nested-btn.accordion-button:not(.collapsed)::after {
  background-image: url("../img/accordion-arrow-white.svg");
}

.main-acc-btn.accordion-button.collapsed::after,
.main-acc-btn.accordion-button:not(.collapsed)::after {
  background-image: url("../img/accordion-arrow-down-red.svg");
}

body .service-header-btn.collapsed[aria-expanded="false"] .service-header,
body .service-header-btn[aria-expanded="false"] .service-header {
  background: #ffe5e5;
  border-radius: 12px;
}

body .service-header-btn.collapsed[aria-expanded="false"] .service-header *,
body .service-header-btn[aria-expanded="false"] .service-header * {
  color: var(--color-dark);
  stroke: var(--red);
}

.mobile-text-grey {
  color: var(--grey-gray);
}


.service-header-btn[aria-expanded="false"] .service-toggle-icon {
  transform: rotate(-90deg);
}

/* .main-acc-btn.accordion-button:not(.collapsed)::after,
.nested-btn.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
} */

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 992px) {

  body .service-header-wrapper .collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
  }

  .service-toggle-icon {
    display: block;
  }

  .service-header-wrapper .collapse:not(.show) {
    display: none;
  }

  body .service-header-btn.collapsed .service-header {
    border-radius: 12px;
  }



}

@media (min-width: 992px) and (max-width: 1200px) {
  .col-medium-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

@media(max-width:767px) {

  .working-hours-section {
    padding: 16px;
  }

  .service-header-wrapper .service-accordion .service-content {
    padding: 0;
  }

  .working-hours-section.ramadan,
  .working-hours-section.eid,
  .working-hours-section.national,
  .working-hours-section.red,
  .working-hours-section.orange,
  .working-hours-section.blue,
  .working-hours-section.grey {
    border-radius: 0;
  }

  .announcement-section {
    background: #F4F4FD;
    box-shadow: none;
    border-bottom: 0px !important;
    margin: 16px 16px;
    border-radius: 12px;
    padding: 4px;
  }


}

@media (max-width: 576px) {
  .banner-section {
    height: 216px;
  }
}

/* deepak code */
.ls-3{
    letter-spacing: 3%;
}
