@tailwind base;
@tailwind components;
@tailwind utilities;
.progress-ring__circle {
  stroke-dasharray: 400, 400;
  transition: stroke-dashoffset 0.35s;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.leaflet-control-attribution {
  display: none;
}
.leaflet-pane {
  z-index: 20 !important;
}

#spinner {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 2;
}
svg.spinner-webkit {
  width: 100px;
  height: 100px;
}
svg.spinner-webkit path {
  stroke-dasharray: 329;
  stroke-dashoffset: 0;
  @apply stroke-primary;

  stroke-width: 1.8px;
  -webkit-animation: draw 4s ease-in-out infinite;
  animation: draw 4s ease-in-out infinite;
  fill: transparent;
  fill-opacity: 0;
}
.spinner-ie {
  width: 32px;
  height: 32px;
  top: 8px;
  left: 8px;
  position: absolute;
  display: none;
  animation: spin 0.5s linear infinite;
  border: 2px solid transparent;
  border-top: 2px solid #57ad56;
  border-left: 2px solid #57ad56;
  border-radius: 50px;
}
#overlayer {
  position: fixed;
  background: white;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
@keyframes draw {
  100% {
    stroke-dasharray: 329;
    stroke-dashoffset: 658;
  }
}
