/* Preloader Spinner */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #56829e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Make the map fill all available screen space */
#map {
  height: 100%;
  width: 100%;
}

.modal-buttons {
  position: absolute;
  top: 70px;
  left: 10px;
  z-index: 1000;
}

.modal-buttons .btn {
  width: 100%;
  max-width: 200px;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .modal-buttons .btn {
    max-width: 140px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* easy buttons */

.easy-button-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 6px;
}


.easy-button-button {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  background: transparent;
  box-shadow: none;
  border: none;
}


.easy-button-container .easy-button-button {
  border: none;
  box-shadow: none;
  margin: 2px 0;
  background-color: #fff;
  border-radius: 6px;
}

.easy-button-container.leaflet-bar {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

