@import url("https://fonts.googleapis.com/css?family=Open+Sans");
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

.notes {
  margin: auto;
  padding: 2rem 1.2rem 0;
  max-width: 35rem;
  font-family: Open Sans, sans serif;
  text-align: center;
}

.container {
  width: 100%;
  padding: 1em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}

.lg-container {
  max-width: 550px;
  position: relative;
  margin: 1rem;
  padding: 0;
}

.lg-image {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: scale-down;
}

.lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.lg-hotspot--selected {
  z-index: 999;
}
.lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.lg-hotspot{
  height: 40px;
  width: 40px;
  padding: 0px;
  border-radius: 100%;
  z-index: 999;
  background-color: #000;
}

button {
  border: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: transparent;
  width: 100%;
  cursor: pointer;
}

.lg-hotspot:nth-of-type(1){
  top: 20%; left: 19.9%;
}

.lg-hotspot:nth-of-type(2){
  top: 25%; left: 88%;
}

/* .lg-hotspot__button {
  height: 48px;
  width: 48px;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid #ff6000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
  cursor: pointer;
} */

.lg-hotspot__label {
  position: absolute;
  padding: 0 0 1.1em 0;
  width: 16em;
  max-width: 50vw;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: "Open Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.45em;
  z-index: 1;
  border-radius: 2px;
  user-select: none;
  opacity: 0;
  transition: all 0.1s linear;
}
.lg-hotspot__label h4 {
  margin: 0;
  padding: 0.65em 24px;
  background-color: #555;
  font-size: 1.1em;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: white;
  border-radius: 2px 2px 0 0;
}
.lg-hotspot__label p {
  margin: 0;
  padding: 1.1em 24px 0 24px;
  color: #333;
}

.lg-hotspot--top-left .lg-hotspot__label {
  top: 44px;
  left: 24px;
}

.lg-hotspot--top-right .lg-hotspot__label {
  top: 42px;
  right: 24px;
}

.lg-hotspot--bottom-right .lg-hotspot__label {
  right: 24px;
  bottom: 24px;
}

.lg-hotspot--bottom-left .lg-hotspot__label {
  bottom: 24px;
  left: 24px;
}
/* 
@keyframes button-pulse {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  40% {
    transform: scale(1.15, 1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
} */



.ripple-animation:after,
.ripple-animation:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 50%;
  border: solid 1px #000;
  animation: 2s linear infinite ripple;
}
.ripple-animation:after {
  animation-delay: 1s;
}
.music-player__btn--paused .music-player__btn__paused-icon,
.music-player__btn--playing .music-player__btn__playing-icon,
.share-button__close:not(.hidden) + .share-button__copy {
  display: none;
}
.music-player__btn__playing-icon {
  transform: translate(10%);
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: none;
  }
  20%,
  70% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/* Hotspot Button Styling */
 

    /* Plus Sign (Default) */
    .lg-hotspot__button::before,
    .lg-hotspot__button::after {
      content: "";
      position: absolute;
      background: #fff;
      transition: transform 0.3s ease-in-out;
    }

    /* Horizontal Line */
    .lg-hotspot__button::before {
      width: 15px;
      height: 2px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* Vertical Line */
    .lg-hotspot__button::after {
      width: 2px;
      height: 15px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* Rotate to Cross (X) when selected */
    .lg-hotspot--selected .lg-hotspot__button::before {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .lg-hotspot--selected .lg-hotspot__button::after {
      transform: translate(-50%, -50%) rotate(45deg);
    }