body {
  margin: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.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: 500px;
  object-fit: scale-down;
}

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

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

.lg-hotspot 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: 27%;
  left: 15.9%;
}

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

.lg-hotspot:nth-of-type(3) {
  bottom: 13%;
  left: 33%;
}

.lg-hotspot:nth-of-type(2) .lg-hotspot__label {
  top: -99px;
  right: -142px;
}

.lg-hotspot:nth-of-type(3) .lg-hotspot__label {
  top: -76px;
  right: -154px;
}
.lg-hotspot__label {
  position: absolute;
  padding: 0;
  width: 24em;
  max-width: 50vw;
  background-color: white;
  box-shadow: 4px 4px 15px #0000004d;
  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: 10px 15px 10px 15px;
  color: #333;
  text-align: center;
  font-size: 16px;
  line-height: 23px;
}

.lg-hotspot--top-left .lg-hotspot__label {
  top: -99px;
  right: -150px;
}

.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;
}

.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);
}
@media (max-width: 1199px) {
  .lg-hotspot:nth-of-type(1) .lg-hotspot__label {
    top: -85px;
    right: -117px;
  }
  .lg-hotspot__label p {
    font-size: 13px;
    line-height: 19px;
  }
  .lg-hotspot__label {
    width: 18em;
  }
  .lg-hotspot:nth-of-type(2) .lg-hotspot__label {
    top: -86px;
    right: -114px;
  }
  .lg-hotspot:nth-of-type(3) .lg-hotspot__label {
    top: -67px;
    right: -113px;
  }
}
@media (max-width: 991px) {
  .lg-hotspot:nth-of-type(2) .lg-hotspot__label {
    top: -86px;
    right: -129px;
  }
  .lg-hotspot__label p {
    font-size: 15px;
    line-height: 19px;
  }
  .lg-hotspot__label {
    width: 21em;
  }
  .lg-hotspot:nth-of-type(3) .lg-hotspot__label {
    top: -67px;
    right: -122px;
  }
  .lg-image {
    display: block;
    width: 350px;
  }
}

@media (max-width: 767px) {
  .lg-hotspot:nth-of-type(1) .lg-hotspot__label {
    top: -75px;
    right: -84px;
  }
  .lg-hotspot:nth-of-type(2) .lg-hotspot__label {
    top: -91px;
    right: -82px;
  }
  .lg-hotspot:nth-of-type(3) .lg-hotspot__label {
    top: -75px;
    right: -81px;
  }
  .lg-hotspot__label p {
    font-size: 13px;
    line-height: 16px;
  }
  .lg-hotspot__label {
    width: 15em;
  }
  .lg-hotspot:nth-of-type(1) {
    top: 26%;
    left: 20%;
  }
  .lg-hotspot {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 575px) {
  .lg-hotspot:nth-of-type(1) .lg-hotspot__label {
    top: -75px;
    right: -97px;
  }
  .lg-hotspot:nth-of-type(2) .lg-hotspot__label {
    top: -90px;
    right: -50px;
  }
  .lg-hotspot:nth-of-type(3) .lg-hotspot__label {
    top: -76px;
    right: -81px;
  }
  .lg-hotspot:nth-of-type(1) {
    top: 30%;
    left: 20%;
  }
  .lg-hotspot__label p {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 375px) {
  .lg-hotspot:nth-of-type(1) .lg-hotspot__label {
    top: -90px;
    right: -97px;
  }
  .lg-hotspot:nth-of-type(2) .lg-hotspot__label {
    top: -121px;
    right: -50px;
  }
  .lg-hotspot:nth-of-type(3) .lg-hotspot__label {
    top: -91px;
    right: -76px;
  }
  .lg-hotspot:nth-of-type(1) {
    top: 30%;
    left: 20%;
  }
}
