/* LOADER */
.loader {
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
  }
  @keyframes l5 {
      0%  {box-shadow: 20px 0 #2b3f5a, -20px 0 #0002;background: #2b3f5a }
      33% {box-shadow: 20px 0 #2b3f5a, -20px 0 #0002;background: #0002}
      66% {box-shadow: 20px 0 #0002,-20px 0 #2b3f5a; background: #0002}
      100%{box-shadow: 20px 0 #0002,-20px 0 #2b3f5a; background: #2b3f5a }
  }

/* ERROR POPUP */
.fetch-error {
    display:none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.fetch-error-content {
    position: fixed;
    bottom:50px;
    left: 50%;
    transform: translateX(-50%);
    color:black!important;
    font-size: 16px;
    background: rgb(239, 188, 188);
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index:999999;
}

/* MAP MARKERS */
.marker-cluster-small {
    background-color: rgba(120, 193, 193, 0.6) !important;
}
.marker-cluster-small div {
    font-weight: bold!important;
    background-color: rgba(234, 254, 255, 0.8) !important;
}
.marker-cluster-medium {
    background-color: rgba(37, 79, 109, 0.6) !important;
}

.marker-cluster-medium div {
    color:white;
    font-weight: bold!important;
    background-color: rgba(68, 125, 165, 0.8) !important;
}
.marker-cluster-large {
    background-color: rgba(45, 79, 103, 0.6) !important;
}
.marker-cluster-large div {
    color:white;
    font-weight: bold!important;
    background-color: rgba(15, 28, 63, 0.8) !important;
}
