.sa-reveal-content-wrapper {
  position: relative;
}
.sa-reveal-content {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-width: 420px;
  overflow: hidden;
  overflow-y: auto;
  padding: 20px;
}
.sa-reveal-content .content {
  position: relative;
  z-index: 1;
  padding-left: 25px;
  color: #c9c9c9;
  font-size: 16px;
  line-height: 22px;
}
.sa-reveal-content .overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #000000bf;
}
.sa-reveal-content h2 {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}
span.marker-icon {
  position: relative;
  left: 16px;
  top: -60px;
  z-index: 9;
}
span.marker-icon svg {
  width: 16px;
  fill: #121922;
}
.pulsating-circle {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 50px;
  height: 50px;
  z-index: 1;
  cursor: pointer;
}
.pulsating-circle:before {
  content: "";
  position: relative;
  display: block;
  width: 200%;
  height: 200%;
  box-sizing: border-box;
  margin-left: -50%;
  margin-top: -50%;
  border-radius: 50%;
  background-color: #d61331d1;
  -webkit-animation: pulse-ring 2.25s cubic-bezier(0.215, 0.61, 0.355, 1)
    infinite;
  animation: pulse-ring 2.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #d61331d1;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse-dot 2.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s
    infinite;
  animation: pulse-dot 2.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
