.hotspot-map-container {
  display: block;
  position: relative;
}

.hotspot-map-container .marker {
  position: absolute;
  padding: 5px;
}

.hotspot-map-container .marker-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: var(--white);
  color: var(--background-color-darker);
  font-size: 0.7rem;
  cursor: pointer;
  z-index: 101;
}

.hotspot-map-container .rm-radiology .marker-number {
  border: 1px solid var(--service-color-radiology);
  box-shadow: 0 0 0 0 var(--service-color-radiology);
  animation: pulse-radiology 2.5s infinite;
}
@keyframes pulse-radiology {
  0% {
    box-shadow: 0 0 0 0 var(--service-color-radiology);
  }
  65% {
    box-shadow: 0 0 0 12px var(--service-color-radiology-pulse-end);
  }
  100% {
    box-shadow: 0 0 0 0 var(--service-color-radiology-pulse-end);
  }
}

.hotspot-map-container .rm-nuclear-medicine .marker-number {
  border: 1px solid var(--service-color-nuclear);
  box-shadow: 0 0 0 0 var(--service-color-nuclear);
  animation: pulse-nuclear-medicine 2.5s infinite;
}
@keyframes pulse-nuclear-medicine {
  0% {
    box-shadow: 0 0 0 0 var(--service-color-nuclear);
  }
  65% {
    box-shadow: 0 0 0 12px var(--service-color-nuclear-pulse-end);
  }
  100% {
    box-shadow: 0 0 0 0 var(--service-color-nuclear-pulse-end);
  }
}

.hotspot-map-container .rm-radiotherapy .marker-number {
  border: 1px solid var(--service-color-radiotherapy);
  box-shadow: 0 0 0 0 var(--service-color-radiotherapy);
  animation: pulse-radiotherapy 2.5s infinite;
}
@keyframes pulse-radiotherapy {
  0% {
    box-shadow: 0 0 0 0 var(--service-color-radiotherapy);
  }
  65% {
    box-shadow: 0 0 0 12px var(--service-color-radiotherapy-puls-end);
  }
  100% {
    box-shadow: 0 0 0 0 var(--service-color-radiotherapy-puls-end);
  }
}

.hotspot-map-container .marker.single-location.rm-radiology .marker-number {
  border: 1px solid var(--white);
  background: var(--service-color-radiology);
  animation: pulse-radiology-light 2.5s infinite;
}
@keyframes pulse-radiology-light {
  0% {
    box-shadow: 0 0 0 0 var(--service-color-radiology-light);
  }
  65% {
    box-shadow: 0 0 0 12px var(--service-color-radiology-light-pulse-end);
  }
  100% {
    box-shadow: 0 0 0 0 var(--service-color-radiology-light-pulse-end);
  }
}

.hotspot-map-container
  .marker.single-location.rm-nuclear-medicine
  .marker-number {
  border: 1px solid var(--white);
  background: var(--service-color-nuclear);
  animation: pulse-nuclear-light 2.5s infinite;
}
@keyframes pulse-nuclear-light {
  0% {
    box-shadow: 0 0 0 0 var(--service-color-nuclear-light);
  }
  65% {
    box-shadow: 0 0 0 12px var(--service-color-nuclear-light-pulse-end);
  }
  100% {
    box-shadow: 0 0 0 0 var(--service-color-nuclear-light-pulse-end);
  }
}

.hotspot-map-container .marker.single-location.rm-radiotherapy .marker-number {
  border: 1px solid var(--white);
  background: var(--service-color-radiotherapy);
  animation: pulse-radiotherapy-light 2.5s infinite;
}
@keyframes pulse-radiotherapy-light {
  0% {
    box-shadow: 0 0 0 0 var(--service-color-radiotherapy-light);
  }
  65% {
    box-shadow: 0 0 0 12px var(--service-color-radiotherapy-light-pulse-end);
  }
  100% {
    box-shadow: 0 0 0 0 var(--service-color-radiotherapy-light-pulse-end);
  }
}

.hotspot-map-container .marker-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 110;
  padding: 1.25rem;
  text-align: center;
  width: 300px; /* ? */
  height: auto;
  border: solid 1px var(--background-color-darker);
  box-shadow: 5px 5px 10px var(--background-color-darker);
  background-color: var(--white);
  color: var(--background-color-darker);

  visibility: hidden;
  opacity: 0;
  transition: all 0.375s ease-in-out;
}
.hotspot-map-container .marker-content.hoverd {
  visibility: visible;
  opacity: 1;
  transition: all 0.375s ease-in-out;
}

.hotspot-map-wrapper .marker-title,
.hotspot-map-wrapper .marker-address,
.hotspot-map-wrapper .marker-tel {
  font-size: 1.1rem;
  line-height: 1.5;
}
.hotspot-map-wrapper .marker-title {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.hotspot-map-wrapper .rm-radiology .marker-title {
  color: var(--service-color-radiology);
}
.hotspot-map-wrapper .rm-nuclear-medicine .marker-title {
  color: var(--service-color-nuclear);
}
.hotspot-map-wrapper .rm-radiotherapy .marker-title {
  color: var(--service-color-radiotherapy);
}

.hotspot-map-wrapper .marker-title .color-radiology {
  color: var(--service-color-radiology) !important;
}
.hotspot-map-wrapper .marker-title .color-nuclear {
  color: var(--service-color-nuclear) !important;
}
.hotspot-map-wrapper .marker-title .color-radiotherapy {
  color: var(--service-color-radiotherapy) !important;
}

.hotspot-map-wrapper .marker-title .color-black {
  color: var(--background-color-darker) !important;
}

.hotspot-map-wrapper .marker-button a {
  display: inline-block;
  width: auto;
  line-height: 1.5rem;
  padding: 0.5rem 1.5rem;
  margin-top: 1.25rem;
  text-decoration: none;
  border-radius: 3px;
}

.hotspot-map-wrapper .rm-radiology .marker-button a {
  background-color: var(--service-color-radiology);
  color: var(--white);
}
.hotspot-map-wrapper .rm-nuclear-medicine .marker-button a {
  background-color: var(--service-color-nuclear);
  color: var(--white);
}
.hotspot-map-wrapper .rm-radiotherapy .marker-button a {
  background-color: var(--service-color-radiotherapy);
  color: var(--white);
}

.hotspot-map-wrapper .marker-button.radiology a {
  background-color: var(--service-color-radiology);
  color: var(--white);
}
.hotspot-map-wrapper .marker-button.nuclear-medicine a {
  background-color: var(--service-color-nuclear);
  color: var(--white);
}
.hotspot-map-wrapper .marker-button.radiotherapy a {
  background-color: var(--service-color-radiotherapy);
  color: var(--white);
}

/* mobile */
.hotspot-map-wrapper .hotspot-map-markers-container-mobile {
  display: none;
  margin-top: 1rem;
}
.hotspot-map-wrapper .hotspot-map-markers-container-mobile .marker-mobile {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}
.hotspot-map-wrapper
  .hotspot-map-markers-container-mobile
  .marker-mobile
  .marker-mobile-number {
  padding-right: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  width: 15%;
}

@media only screen and (max-width: 767px) {
  .hotspot-map-wrapper .hotspot-map-markers-container-mobile {
    display: block;
  }
  .hotspot-map-container .marker-number {
    width: 19px;
    height: 19px;
    font-size: 0.6rem;
  }
}
