.maplibregl-marker {
  z-index: 20;
}

.maplibregl-popup {
  z-index: 30;
}

.maplibregl-popup-tip,
.maplibregl-popup-content {
  z-index: 31;
}

.hotspot {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hotspot__button {
  position: relative;
  width: 30px;
  height: 30px;
}

.hotspot__inner-circle,
.hotspot__outer-circle {
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  background-color: #00c95095;
  position: absolute;
  left: 50%;
  top: 50%;
}

.hotspot__inner-circle {
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hotspot__outer-circle {
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

.hotspot--soft-beat .hotspot__inner-circle {
  animation: hotspot-soft-beat 0.7s ease infinite alternate;
}

.hotspot--expand .hotspot__outer-circle {
  animation: hotspot-expand 1.8s ease-out infinite;
}

@keyframes hotspot-soft-beat {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.15);
  }
}

@keyframes hotspot-expand {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.5);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}