.creche-locator {
  --cl-red: #d9102a;
  --cl-border: rgba(220, 38, 38, 0.35);
  --cl-bg: #ffffff;
  --cl-text: #1f2937;
  --cl-muted: #6b7280;
  --cl-card: #ffffff;
  --cl-search-btn-bg: var(--cl-red);
  --cl-search-btn-text: #ffffff;
  --cl-shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
  --cl-radius: 18px;
  --cl-map-height: var(--creche-locator-map-height, 560px);
  font-family: inherit;
  color: var(--cl-text);
}

html.cl-drawer-no-scroll,
body.cl-drawer-no-scroll {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .creche-locator {
    --cl-map-height: 609px;
  }
}
@media (min-width: 1280px) {
  .creche-locator {
    --cl-map-height: var(--creche-locator-map-height, 671px);
  }
}

/* Map shell grows when the category / pin legend sits under the map */
.creche-locator__mapWrap.creche-locator__mapWrap--withLegend.cl-locator-map-shell {
  height: 400px;
  min-height: var(--cl-map-height);
}

.creche-locator__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.creche-locator__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.creche-locator__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--cl-red);
  background: rgba(217, 16, 42, 0.08);
  white-space: nowrap;
}

.creche-locator__status {
  font-size: 13px;
  color: var(--cl-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creche-locator__btn {
  appearance: none;
  border: 1px solid rgba(217, 16, 42, 0.28);
  background: #fff;
  color: var(--cl-red);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}
.creche-locator__btn:hover {
  border-color: rgba(217, 16, 42, 0.55);
}

.creche-locator__filters {
  margin-bottom: 14px;
}

.creche-locator__filtersRow {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 12px;
  align-items: center;
}

.creche-locator__filterInput,
.creche-locator__filterSelect {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.creche-locator__filterInput:focus,
.creche-locator__filterSelect:focus {
  border-color: color-mix(in srgb, var(--cl-red) 45%, transparent);
  box-shadow: 0 0 0 4px rgba(217, 16, 42, 0.12);
}

.creche-locator__filterBtn {
  appearance: none;
  border: none;
  background: var(--cl-red);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
}
.creche-locator__filterBtn:hover {
  filter: brightness(0.95);
}

.creche-locator__list {
  border: 1px solid rgba(148, 163, 184, 0.35);
  /* border-radius: var(--cl-radius); */
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  max-height: var(--cl-map-height);

  display: flex;
  flex-direction: column;
}

.creche-locator__list {
  overflow-y: auto;
}

.creche-locator__mapWrap {
  border-radius: var(--cl-radius);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f8fafc;
  min-height: var(--cl-map-height);
  position: relative;
  display: flex;
  flex-direction: column;
}

.creche-locator__map {
  flex: 0 0 auto;
  height: var(--cl-map-height);
  width: 100%;
}

/* Mapbox zoom control customization (mobile): red circular +/- buttons */

.creche-locator .mapboxgl-ctrl-top-right {
  top: 0;
  right: 0;
  left: 12px;
}

.creche-locator .mapboxgl-ctrl-group {
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.creche-locator .mapboxgl-ctrl-group button {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 999px !important;
  background: var(--cl-red);
  color: #fff;
  position: relative;
  margin: 0;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background: var(--cl-red) !important;
}

.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: none !important;
}

.creche-locator .mapboxgl-ctrl-group button + button {
  margin-top: -6px;
}

.creche-locator .mapboxgl-ctrl-group button .mapboxgl-ctrl-icon {
  display: none;
}

.creche-locator .mapboxgl-ctrl-group .mapboxgl-ctrl-zoom-in::before,
.creche-locator .mapboxgl-ctrl-group .mapboxgl-ctrl-zoom-out::before {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  font-weight: 300;
  top: -8px;
}

.creche-locator .mapboxgl-ctrl-group .mapboxgl-ctrl-zoom-in::before {
  content: "+";
}

.creche-locator .mapboxgl-ctrl-group .mapboxgl-ctrl-zoom-out::before {
  content: "\2212";
}

.creche-locator__category {
  flex: 0 0 auto;
}

.creche-locator__categoryLegend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px 16px;
  margin: 0;
  list-style: none;
}

.creche-locator__categoryLegend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
}

.creche-locator__categoryLegend-sep {
  width: 1px;
  align-self: stretch;
  min-height: 28px;
  background: rgba(148, 163, 184, 0.55);
  margin: 0 6px;
}

.creche-locator__categoryLegend-icon {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}

.creche-locator__categoryLegend-icon img {
  display: block;
  height: 34px;
  width: 34px;

  object-fit: contain;
}

.creche-locator__categoryLegend-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cl-text);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .cl-locator-map-shell {
    height: 441px;
  }
  .creche-locator__list {
    height: max-content;
  }
}

@media (min-width: 1024px) {
  .cl-locator-map-shell {
    /* height: 609px; */
    height: 70vh;
  }
  .creche-locator__list {
    max-height: auto !important;
  }
}

@media (min-width: 1366px) {
  /* .cl-locator-map-shell {
    height: 703px;
  } */

  .creche-locator__categoryLegend {
    padding: 32px 16px;
  }
}

@media (min-width: 1440px) {
  .cl-locator-map-shell,
  .creche-locator__list {
    /* height: 740px; */
    height: 70vh;
  }

  .creche-locator__categoryLegend {
    padding: 27px 16px;
  }
  .creche-locator__categoryLegend-icon img {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1470px) {
  .cl-locator-map-shell,
  .creche-locator__list {
    /* height: 758px; */
    height: 70vh;
  }
}
@media (min-width: 1680px) {
  .cl-locator-map-shell,
  .creche-locator__lists {
    /* height: 868px; */
    height: 70vh;
  }
}
@media (min-width: 1920px) {
  .cl-locator-map-shell,
  .creche-locator__list {
    /* height: 989px; */
    height: 70vh;
  }
}
.creche-locator__empty {
  padding: 18px;
  color: var(--cl-muted);
}

.creche-locator__card {
  border: 2px solid #cccccc;
  background: var(--cl-card);

  cursor: pointer;
  --cl-accent: var(--cl-red);
  border-radius: 18px;
  margin: 10px 0px;
}
.creche-locator__card:first-child {
  margin-top: 7px;
}

.creche-locator__card:last-child {
  margin-bottom: 0;
}

.creche-locator__card_wrapper {
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.is-active .creche-locator__card_wrapper {
  padding: 36px 0px 0;
}
/* .creche-locator__card + .creche-locator__card {
  border-top: none;
} */
.creche-locator__card:hover {
  border-color: color-mix(in srgb, var(--cl-accent) 35%, transparent);
}

.creche-locator__card.is-active {
  border-color: var(--cl-accent);
}

.creche-locator__cardTop {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  align-items: center;

  padding: 0 14px;
}
.is-active .creche-locator__cardTop {
  margin-bottom: 22px;
}

.creche-locator__cardMeta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--cl-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.creche-locator__type {
  font-weight: 700;
  color: var(--cl-accent);
}

.creche-locator__pipe {
  color: rgba(148, 163, 184, 0.9);
}

.creche-locator__distance {
  font-weight: 700;
  color: var(--cl-muted);
  flex-shrink: 0;
}

.creche-locator__cardTitle {
  font-size: 21px;
  line-height: 1.12;
  margin: 0;
  font-weight: 800;
  max-width: 162px;
}

.creche-locator__thumb {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  max-width: 116.05px;
  height: 81px;
}

.creche-locator__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.creche-locator__img--placeholder {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.creche-locator__cardBody {
  width: 100%;
  display: grid;
  gap: 10px;
}

/* .is-active .creche-locator__cardBody{
  margin-top: 10px;
} */
/* Collapsed by default (matches the compact cards) */
.creche-locator__cardBody {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-2px);
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.creche-locator__card.is-active .creche-locator__cardBody {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}

.creche-locator__kvList {
  display: grid;
  gap: 14px;
  padding: 0 14px;
}

.creche-locator__kv {
  display: flex;
  flex-direction: column;

  gap: 2px;
  font-size: 14px;
  width: 100%;
}

.creche-locator__k {
  color: rgba(107, 114, 128, 0.95);
}
.creche-locator__address {
  line-height: 1.2;
}
.creche-locator__v {
  color: var(--cl-text);
  max-width: 119px;
}
.creche-locator__link {
  color: var(--cl-accent);
  text-decoration: none;
  font-weight: 800;
}
.creche-locator__link:hover {
  text-decoration: underline;
}

.creche-locator__hours {
  display: grid;
  gap: 6px;
}

.mapping {
  margin-bottom: 120px;
}
.creche-locator__hoursRow {
  display: grid;

  gap: 6px;
  font-size: 14px;
  color: var(--cl-muted);
}
.creche-locator__hoursRow:nth-child(2),
.creche-locator__hoursRow:nth-child(3) {
  display: none;
}
.creche-locator__hoursTime {
  color: var(--cl-accent);
  font-weight: 800;
}

.creche-locator__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 13px;
  border-radius: 12px 0;
  background: var(--cl-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  width: 100%;
  max-width: 155px;
}
.creche-locator__cardActions {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  position: relative;
}

.creche-locator__brandLogo {
  max-height: 23px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  padding-left: 14px;
  position: absolute;
  left: 0;
}
.creche-locator__cta:hover {
  filter: brightness(0.95);
}

.creche-locator__skeleton {
  height: 140px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(
    90deg,
    rgba(226, 232, 240, 0.55),
    rgba(241, 245, 249, 0.85),
    rgba(226, 232, 240, 0.55)
  );
  background-size: 220% 100%;
  animation: cl-sheen 1.2s ease-in-out infinite;
}

@keyframes cl-sheen {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.creche-locator__userPin {
  background: transparent;
}
.creche-locator__userPin span {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 999px;
  background: #2563eb;
  border: 2px solid #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

/* Leaflet cluster styling (count bubbles) */
.cl-clusterWrap {
  background: transparent !important;
  border: none !important;
}
.cl-cluster {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--cl-cluster-bg, #ffffff);
  border: 2px solid var(--cl-cluster-border, #cbd5e1);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl-cluster__count {
  font-weight: 900;
  color: var(--cl-cluster-text, #0f172a);
  font-size: 14px;
}
.creche-locator__grid {
  opacity: 0.8;
}

/* Mobile drawer layout (<=1023px): map primary + bottom drawer list */
@media (max-width: 767px) {
  .creche-locator::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease;
    z-index: 4;
    pointer-events: none;
  }

  .creche-locator[data-mobile-overlay="1"].is-drawer-open::before {
    opacity: 1;
    visibility: visible;
  }

  .creche-locator__mapWrap {
    order: 1;
    min-height: calc(var(--cl-map-height) + 220px);
    border-radius: 0;
    border: none;
    position: relative;
    z-index: 1;
  }

  .creche-locator__list {
    order: 2;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-height: 70vh;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    /* box-shadow: 0 28px 70px rgba(16, 24, 40, 0.22); */
    border: 0px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.96);
    /* backdrop-filter: blur(10px); */
    z-index: 6;
  }

  .creche-locator__drawerHead {
    padding: 10px 14px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.96);
  }

  .creche-locator__drawerHandle {
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    margin: 0 auto;
  }

  .creche-locator__drawerMeta {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: rgba(15, 23, 42, 0.72);
    font-weight: 700;
    font-size: 14px;
  }

  .creche-locator__drawerClose {
    display: none;
    border: none;
    background: transparent;
    color: rgba(15, 23, 42, 0.82);
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    padding: 0;
    margin-top: -2px;
    cursor: pointer;
  }

  .creche-locator__drawerClose.bottomBbuttom {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--primary);
    font-size: 20px;
    color: var(--primary);
    border-radius: 999px;
    width: 100%;
    position: relative;
    right: inherit;
    bottom: 0;
  }
  .creche-locator__drawerClose {
    color: var(--primary);
  }
  .creche-locator.is-drawer-open .creche-locator__drawerClose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--primary);
    font-size: 20px;
    border-radius: 999px;
    height: 30px;
    width: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .creche-locator.is-drawer-open .creche-locator__drawerClose.bottomBbuttom {
    display: inline-flex;
    width: fit-content;
    position: relative;

    bottom: 0px !important;
    top: inherit !important;
    padding: 10px 16px;
    gap: 10px;
    height: 50px;
    line-height: 1;
    font-size: 16px;
    margin: 20px auto 0;
  }

  .creche-locator__drawerCount {
    color: rgba(15, 23, 42, 0.9);
  }

  .creche-locator__listItems {
    overflow-y: auto;
    max-height: 44vh;
  }

  /* Closed by default: only header/handle visible */
  .creche-locator__listItems {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }
  .creche-locator.is-drawer-open .creche-locator__listItems {
    max-height: 62.3vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* Compact cards in drawer: remove outer margins */
  .creche-locator__card {
    margin: 18px 6px;
  }
}

.creche-locator-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.creche-locator-search__field {
  position: relative;
  max-width: 286px;
}

.creche-locator-search__icon {
  appearance: none;
  border: none;
  background: transparent;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cl-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.creche-locator-search__icon:disabled {
  opacity: 0.55;
  cursor: progress;
}
.creche-locator-search__icon path {
  stroke: #d9102a;
}

.creche-locator-search__input {
  width: 100%;

  border-radius: 999px;
  border: 0.69px solid #000;
  padding: 12px 10px 12px 45px;
  font-size: 16px;
  outline: none;
  background: #fff;
}

.creche-locator-search__input:focus {
  border-color: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

.creche-locator-search__btn {
  appearance: none;
  border: none;
  background: var(--cl-search-btn-bg, var(--cl-red));
  color: var(--cl-search-btn-text, #fff);
  font-weight: 800;
  border-radius: 999px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.creche-locator-search__btn:hover {
  filter: brightness(0.95);
}

.creche-locator-search__btnIcon {
  width: 23.45px;
  height: 23.45px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.creche-locator-search__btnText {
  font-size: 14px;
  letter-spacing: 0.01em;
}
.creche-locator-search__field {
  opacity: 0.9;
}

/* Firefox */
.creche-locator__listItems {
  scrollbar-width: thin; /* auto | thin | none */
  scrollbar-color: #9ca3af #f3f4f6; /* thumb track */
}

/* Chrome, Edge, Safari */
.creche-locator__listItems::-webkit-scrollbar {
  width: 10px;
}

.creche-locator__listItems::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 9999px;
}

.creche-locator__listItems::-webkit-scrollbar-thumb {
  background: #ff0000;
  border-radius: 9999px;
  border: 2px solid #f3f4f6;
}

.creche-locator__listItems::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
.creche-locator__email {
  line-break: anywhere;
}
@media (max-width: 640px) {
  .creche-locator-search {
    grid-template-columns: 1fr;
  }
  .creche-locator-search__btn {
    justify-content: center;
  }
  .creche-locator__email {
    font-size: 12px;
  }
}

@media (min-width: 400px) {
  .creche-locator-search__input {
    padding: 16px 10px 16px 45px;
  }
  .creche-locator-search__field {
    position: relative;
    max-width: 319px;
  }
}

@media (min-width: 430px) {
  .creche-locator-search__field {
    max-width: 336px;
  }
}
@media (max-width: 768px) {
  .reseauImg {
    margin-top: 30px !important;
    border-radius: 20px;
  }
  .noneMob {
    display: none;
  }
  .py-15 {
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .creche-locator-search__btn {
    width: 100%;
  }

  .creche-locator-search__btn {
    justify-content: center;
    align-items: center;
    height: 37px;
    max-width: 120px;
  }
  .creche-locator-search__btnIcon {
    width: 16.45px;
    height: 16.45px;
  }

  .creche-locator-search__input {
    padding: 10px 10px 10px 45px;
    font-size: 12px;
  }
  .creche-locator__card {
    max-width: 235px;
  }
  .creche-locator__list {
    border: none;
  }
  .is-active .creche-locator__card_wrapper {
    padding: 7px 0px 0;
  }
  .creche-locator__cardMeta {
    font-size: 10px;
  }

  .creche-locator__thumb {
    max-width: 74.05px;
    height: 56px;
  }
  .creche-locator__cardTop,
  .creche-locator__kvList {
    padding: 0 12px;
  }
  .creche-locator__cardTitle {
    font-size: 16px;
  }
  .creche-locator__cardHead {
    max-width: 116px;
  }
  .is-active .creche-locator__cardTop {
    margin-bottom: 16px;
  }
  .creche-locator__kv,
  .creche-locator__hoursRow {
    font-size: 12px;
  }

  .creche-locator__cta {
    padding: 8px 13px;
    max-width: 105px;
  }
  .creche-locator__kvList {
    gap: 3px;
  }
  .creche-locator__brandLogo {
    max-height: 18px;
  }
  .creche-locator__card {
    border-radius: 10px;
  }
  .creche-locator__cta {
    border-radius: 6px 0;
    font-size: 12px;
  }
  .cl-locator-map-shell {
    min-height: 446px;
  }

  .creche-locator-search {
    max-width: 305px;
  }
}
@media (min-width: 820px) {
  .creche-locator__card {
    max-width: 252px;
  }
  .is-active .creche-locator__card_wrapper {
    padding: 13px 0px 0;
  }
  .creche-locator__kvList {
    gap: 16px;
  }

  .creche-locator__thumb {
    max-width: 78.05px;
    height: 61px;
  }
  .cl-locator-map-shell {
    height: 473px;
  }
  .creche-locator-search {
    max-width: 317px;
  }
}

@media (min-width: 1024px) {
  .creche-locator-search__input {
    border: 1.26px solid #000;
  }

  .creche-locator__card {
    max-width: 315px;
  }
  .is-active .creche-locator__card_wrapper {
    padding: 18px 0px 0;
  }
  .creche-locator__cardTitle {
    font-size: 20px;
  }
  .creche-locator__cardMeta {
    font-size: 11px;
  }
  .creche-locator__cardHead {
    max-width: 167px;
    width: 100%;
  }
  .creche-locator__thumb {
    max-width: 103.05px;
    height: 68px;
  }
  .creche-locator__kv,
  .creche-locator__hoursRow,
  .creche-locator__cta {
    font-size: 14px;
  }
  .creche-locator__cta {
    padding: 12px 13px;
    max-width: 141px;
    border-radius: 14px 0 7px;
  }
  .creche-locator__brandLogo {
    max-height: 20px;
  }
  .creche-locator__kvList {
    gap: 16px;
  }
  .creche-locator__list {
    max-height: auto !important;
  }
  .creche-locator__card_wrapper {
    padding: 16px 0;
  }
  .cl-locator-map-shell {
    /* height: 610px; */
    height: 70vh;
  }
  /* .creche-locator__list {
    max-height: 610px;
  } */
  .creche-locator-search {
    max-width: 396px;
  }
  .creche-locator-search__btn {
    max-width: 117px;
  }
}

@media (min-width: 1228px) {
  .creche-locator__card {
    max-width: 352px;
  }
  .creche-locator-search {
    max-width: 457px;
  }

  .creche-locator-search__input {
    padding: 15px 10px 12px 45px;
  }
  .creche-locator-search__btn {
    height: 44px;
  }

  .creche-locator-search__btn {
    width: 100%;
    max-width: 133px;
  }
  .creche-locator__mapWrap.creche-locator__mapWrap--withLegend.cl-locator-map-shell,
  .cl-locator-map-shell .creche-locator__map {
    /* height: 680px; */
    height: 70vh;
  }

  /* .creche-locator__list {
    max-height: 680px;
  } */

  .creche-locator__cta {
    border-radius: 14px 0 7px;
  }
}
@media (min-width: 1300px) {
  .creche-locator__card {
    max-width: 375px;
  }
  .is-active .creche-locator__card_wrapper {
    padding: 21px 0px 0;
  }
  .creche-locator__cardMeta {
    font-size: 14px;
  }
  .creche-locator__cardTop,
  .creche-locator__kvList {
    padding: 0 18px;
  }
  .creche-locator__cardMeta {
    margin-bottom: 14px;
  }
  .creche-locator__cardTitle {
    font-size: 23px;
  }
  .creche-locator__thumb {
    max-width: 123.05px;
    height: 80px;
  }
  .is-active .creche-locator__cardTop {
    margin-bottom: 21px;
  }
  .creche-locator__kvList {
    gap: 16px;
  }
  .creche-locator__brandLogo {
    max-height: 25px;
  }
  .creche-locator__address {
    line-height: 1.4;
  }
  .creche-locator__kv {
    gap: 5px;
  }
  .creche-locator__cardBody {
    gap: 24px;
  }
  .creche-locator__card {
    margin: 13px 0px;
  }
  .creche-locator__card_wrapper {
    padding: 19px 0;
  }
  .creche-locator__cta {
    max-width: 170px;
  }
  .creche-locator__cta {
    font-size: 16px;
  }

  .creche-locator__card {
    border-radius: 18px;
  }
  .creche-locator__list {
    max-height: 70vh;
  }
  /* .creche-locator__map {
    height: 704.2px;
  } */

  .creche-locator-search__input {
    padding: 15px 10px 15px 45px;
  }

  .creche-locator-search {
    max-width: 478px;
  }
  .creche-locator-search__btn {
    height: 48px;
    max-width: 148px;
  }

  .creche-locator__cta {
    border-radius: 14px 0 14px;
  }

  .creche-locator-search__field {
    max-width: 100%;
  }
  .creche-locator-search__input {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .creche-locator-search__input {
    font-size: 16px;
  }
  .creche-locator__card {
    max-width: 396px;
  }
  .creche-locator__cardTitle {
    font-size: 25px;
  }
  .is-active .creche-locator__cardTop {
    margin-bottom: 30px;
  }
  .creche-locator__kv,
  .creche-locator__hoursRow,
  .creche-locator__cta {
    font-size: 15px;
  }
  .creche-locator__cta {
    max-width: 179px;
  }
  .creche-locator__mapWrap.creche-locator__mapWrap--withLegend.cl-locator-map-shell,
  .cl-locator-map-shell .creche-locator__map,
  .creche-locator__list {
    /* height: 750px; */
    height: 70vh;
  }
  /* .creche-locator__list {
    max-height: 750px;
  } */
  .creche-locator-search__input {
    padding: 14px 10px 14px 45px;
  }

  .creche-locator-search {
    max-width: 498px;
  }
  .creche-locator-search__btn {
    height: 48px;
    max-width: 148px;
  }
}
@media (min-width: 1470px) {
  .creche-locator-search {
    max-width: 505px;
  }
}
@media (min-width: 1600px) {
  .creche-locator__card {
    max-width: 460px;
  }
  .is-active .creche-locator__card_wrapper {
    padding: 25px 0px 0;
  }
  .creche-locator__cardTitle {
    font-size: 29px;
  }
  .creche-locator__thumb {
    max-width: 146.05px;
    height: 97px;
  }
  .is-active .creche-locator__cardTop {
    margin-bottom: 28px;
  }
  .creche-locator__kv,
  .creche-locator__hoursRow {
    font-size: 16px;
  }
  .creche-locator__cardHead {
    max-width: 239px;
  }
  .creche-locator__v {
    max-width: 100%;
  }
  .creche-locator__address {
    line-height: 1.5;
  }
  .creche-locator__address {
    color: var(--cl-text);
    max-width: 140px;
  }
  .creche-locator__kvList {
    gap: 20px;
  }
  .creche-locator__cardBody {
    gap: 28px;
  }
  .creche-locator__brandLogo {
    max-height: 30px;
    padding-left: 22px;
  }
  .creche-locator__cta {
    max-width: 207px;
  }
  .creche-locator__cta {
    font-size: 20px;
    padding: 15px 13px;
  }
  .creche-locator__cardMeta {
    font-size: 16px;
  }
  .creche-locator__cardTop,
  .creche-locator__kvList {
    padding: 0 23px;
  }
  .creche-locator__card_wrapper {
    padding: 26px 0;
  }
  .creche-locator__card {
    margin: 18px 0px;
  }

  .creche-locator-search {
    max-width: 580.3px;
  }
  .creche-locator-search__btn {
    height: 56px;
    max-width: 173px;
  }
  .creche-locator-search__input {
    font-size: 16px;
  }
  .creche-locator-search__input {
    padding: 18px 10px 18px 45px;
  }
  .creche-locator__mapWrap.creche-locator__mapWrap--withLegend.cl-locator-map-shell,
  .cl-locator-map-shell .creche-locator__map,
  .creche-locator__list {
    /* height: 870px; */
    height: 70vh;
  }
  /* .creche-locator__list {
    max-height: 870px;
  } */
  .creche-locator__categoryLegend-label {
    font-size: 17px;
  }
}

@media (min-width: 1920px) {
  .creche-locator__card {
    max-width: 520px;
  }

  .creche-locator__cardHead {
    max-width: 270px;
  }
  .creche-locator__cardTitle {
    max-width: 100%;
  }
  .is-active .creche-locator__card_wrapper {
    padding: 30px 0px 0;
  }
  .creche-locator__cardMeta {
    font-size: 18px;
  }
  .creche-locator__cardMeta {
    margin-bottom: 22px;
  }
  .creche-locator__cardTitle {
    font-size: 30px;
  }
  .is-active .creche-locator__cardTop {
    margin-bottom: 35px;
  }
  .creche-locator__kv,
  .creche-locator__hoursRow {
    font-size: 18px;
  }
  .creche-locator__cardTop,
  .creche-locator__kvList {
    padding: 2px 28px;
  }
  .creche-locator__cta {
    font-size: 22px;
    padding: 18px 13px;
    max-width: 239px;
    border-radius: 25px 0 17px;
  }
  .creche-locator__card {
    border-radius: 20px;
  }
  .creche-locator__thumb {
    max-width: 173.05px;
    height: 113px;
  }
  .creche-locator__mapWrap.creche-locator__mapWrap--withLegend.cl-locator-map-shell,
  .cl-locator-map-shell .creche-locator__map,
  .creche-locator__list {
    /* height: 1010px; */
    height: 70vh;
  }
  /* .creche-locator__list {
        max-height: 1010px;
      } */
  .creche-locator-search {
    max-width: 660.3px;
  }
  .creche-locator-search__input {
    font-size: 18px;
  }
  .creche-locator-search__input {
    padding: 22px 10px 20px 63.4px;
  }
  .creche-locator-search__btn {
    height: 66px;
    max-width: 192px;
  }
  .creche-locator-search__btnText {
    font-size: 18px;
  }
  .creche-locator-search__btnIcon {
    width: 20.45px;
    height: 20.45px;
  }
  .creche-locator-search {
    max-width: 652.3px;
  }
  .creche-locator__v creche-locator__address {
    max-width: 100%;
  }
  .creche-locator__categoryLegend {
    padding: 30px 16px;
    padding-bottom: 0px;
  }
  .creche-locator__categoryLegend-label {
    font-size: 22px;
  }
  .creche-locator__categoryLegend-icon img {
    width: 40px;
    height: 40px;
  }

  .creche-locator-search__icon {
    left: 24px;
  }
  .creche-locator__email {
    font-size: 16px;
  }
}
.butom_view_all {
  flex-direction: column;
  gap: 4px !important;
}

.button_view_all_items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
}
.cl-drawer-no-scroll .button_view_all_items {
  display: none;
}

@media (min-width: 768px) {
  .button_view_all_items,
  .creche-locator__drawerHead {
    display: none;
  }
}
