
/* =========================================================
   HONFLEUR INSIDER - TOILETTES PUBLIQUES
   ========================================================= */

.rdh-toilettes {
  padding-bottom: 120px;
}

.rdh-toilettes-page-header {
  padding-bottom: 18px;
}

.rdh-toilettes-map-wrap {
  position: relative;

  width: 100%;
  height: 430px;

  border-radius: 26px;
  overflow: hidden;

  background: #ffffff;

  box-shadow: 0 10px 30px rgba(16,35,90,.07);
}

.rdh-toilettes-map {
  width: 100%;
  height: 100%;
}

.rdh-toilettes-locate {
  position: absolute;

  left: 14px;
  bottom: 14px;

  z-index: 500;

  border: 0;

  padding: 11px 15px;

  border-radius: 16px;

  background: rgba(255,255,255,.97);
  color: #10235a;

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 8px 24px rgba(16,35,90,.18);
}

.rdh-toilettes-locate-icon {
  font-size: 21px;
  line-height: 1;
}

.rdh-toilettes-actions {
  display: flex;
  justify-content: center;

  margin: 16px 0 18px;
}

.rdh-toilettes-nearest {
  width: 100%;

  border: 0;

  padding: 15px 18px;

  border-radius: 18px;

  background: #10235a;
  color: #ffffff;

  font-size: 15px;
  font-weight: 800;
}

.rdh-toilettes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rdh-toilette-card {
  background: #ffffff;

  border-radius: 22px;

  padding: 15px;

  display: grid;

  grid-template-columns:
    48px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 13px;

  box-shadow: 0 8px 25px rgba(16,35,90,.06);
}

.rdh-toilette-icon {
  width: 48px;
  height: 48px;

  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eef3fb;
  color: #10235a;

  font-size: 15px;
  font-weight: 900;
}

.rdh-toilette-info {
  min-width: 0;
}

.rdh-toilette-name {
  color: #10235a;

  font-size: 16px;
  font-weight: 800;

  line-height: 1.2;
}

.rdh-toilette-meta {
  margin-top: 4px;

  color: #7783a4;

  font-size: 12px;
  line-height: 1.35;
}

.rdh-toilette-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;

  margin-top: 6px;
}

.rdh-toilette-badge {
  padding: 4px 7px;

  border-radius: 10px;

  background: #f1f4f9;
  color: #10235a;

  font-size: 10px;
  font-weight: 800;
}


.rdh-toilettes-loading,
.rdh-toilettes-empty {
  padding: 25px;

  text-align: center;

  color: #7783a4;
}

.rdh-toilette-marker {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #10235a;
  color: #ffffff;

  border: 3px solid #ffffff;

  box-shadow: 0 4px 12px rgba(16,35,90,.25);

  font-size: 12px;
  font-weight: 900;
}

.rdh-user-marker {
  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: #2368a2;

  border: 4px solid #ffffff;

  box-shadow: 0 3px 12px rgba(16,35,90,.3);
}

@media (max-width: 560px) {

  .rdh-toilettes-map-wrap {
    height: 370px;
  }

  .rdh-toilette-card {
    grid-template-columns:
      44px
      minmax(0, 1fr)
      auto;

    gap: 10px;

    padding: 13px;
  }

  .rdh-toilette-icon {
    width: 44px;
    height: 44px;
  }

}

.rdh-toilette-go {
  display: none !important;
}

