* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
li,
a {
  text-decoration: none;
  list-style: none;
  margin-bottom: 0px;
}
/* body {
  font-family: "roboto";
} */

.navbar-locations {
  /* padding: 0 30px; */
  width: 100%;
  margin: 0px auto;
}



.navbar-locations-grid {
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  gap: 20px;
  height: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: auto;
}
.navbar-locations-grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
.navbar-locations-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.navbar-locations-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.navbar-locations-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.navbar-locations-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.navbar-locations-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.navbar-locations-grid::-webkit-scrollbar {
  width: 4px;

}

/* Track */
.navbar-locations-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Thumb */
.navbar-locations-grid::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Headings */
.navbar-location-title {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #000000;
  display: block;
}

/* List */
.navbar-location-group {
  margin-bottom: 4px;
  padding-right: 15px;
}

.navbar-location-item {
  margin-bottom: 5px;
}

.navbar-location-link {
  width: 100%;
  font-size: 0.875rem;
  color: #002d39;
  line-height: 1.4;
}
.navbar-location-group.navbar-location-bottom-border {
    margin-bottom: 15px;
}
.navbar-location-bottom-border ul{
  border-bottom: 1px solid #dfd9d9 ;
  position: relative;
  min-width: 100px;
  max-width: max-content;
  padding-bottom: 7px;

}
.navbar-location-bottom-border a.navbar-location-title {
  margin-bottom: 5px;
}
.navbar-location-bottom-border ul::after{
  content: " ";
  position: absolute;
  bottom: 0px;
  width: 50%;
  height: 1px;
  background-color: #5A95A7;
}
/* .hospitals-menu .menu.menu-level-1.active{
  background: #ffffff;
} */
.hospitals-menu .menu.menu-level-1.active {
  max-height: 31rem;
  height: initial;
  min-height: 24.375rem;
  z-index: 9999;
  overflow: auto;
}
/* Hover state */
/* .navbar-location-link:hover {
  text-decoration: underline;
} */
 @media (max-width: 1024px) {
  .hospitals-menu .menu.menu-level-1.active {
      max-height: 100vh;
      height: 100vh;
      z-index: 9999;
  }
}
@media (max-width: 767px) {
  .navbar-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    height: 66vh;
  }
  .navbar-locations {
    padding: 20px 15px;
  }
  .navbar-location-group{
    margin-bottom: 5px;
  }
}
@media (max-width: 430px) {
    .navbar-locations-grid {
    height: 60vh;
  }

}
