.island_bg {
  position: relative;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.island_bg .island_wrapper {
  margin: 0 auto;
  position: relative;
}
.island_bg .overlaybg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: all 0.35s ease-in;
  position: absolute;
  left: 0;
  top: 0;
}
.island_bg .overlaybg.active {
  opacity: 1;
}
.island_bg img {
  margin: 0 auto;
  display: block;
}
.island_bg .art .point {
  background: rgba(24, 129, 234, 0.95);
  box-shadow: 0 0 10px rgba(24, 129, 234, 0.85), 0 0 15px rgba(24, 129, 234, 0.85), 0 0 20px rgba(24, 129, 234, 0.85), 0 0 25px rgba(24, 129, 234, 0.85), 0 0 35px rgba(24, 129, 234, 0.85);
}
.island_bg .art .point::after, .island_bg .art .point::before {
  border: 2px solid #1881ea;
}
.island_bg .palace .point {
  background: rgba(234, 53, 53, 0.95);
  box-shadow: 0 0 10px rgba(234, 53, 53, 0.85), 0 0 15px rgba(234, 53, 53, 0.85), 0 0 20px rgba(234, 53, 53, 0.85), 0 0 25px rgba(234, 53, 53, 0.85), 0 0 35px rgba(234, 53, 53, 0.85);
}
.island_bg .palace .point::after, .island_bg .palace .point::before {
  border: 2px solid #A30000;
}
.island_bg .point {
  position: absolute;
  cursor: pointer;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  animation-play-state: paused;
}
.island_bg .point::after, .island_bg .point::before {
  box-shadow: 4px 4px 5px #000;
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  transform-origin: center center;
  opacity: 0;
  box-sizing: border-box;
}
.island_bg .point::before {
  animation: 1.2s 0.1s pulse infinite linear;
  animation-play-state: running;
}
.island_bg .point::after {
  animation: 1.2s pulse2 infinite linear;
  animation-play-state: running;
}
.island_bg .showonhover {
  opacity: 0;
  transition: opacity 0.4s ease-in;
  position: absolute;
  z-index: -9;
}
.island_bg .showonhover.active {
  opacity: 1;
  z-index: 9999;
}
.island_bg .square {
  position: absolute;
  cursor: pointer;
}
.island_bg .square.palace {
  width: 150px;
  height: 300px;
  left: 27%;
  top: 45%;
}
.island_bg .square.art .showonhover {
  top: -230px;
  left: 90px;
  width: 350px;
  height: auto;
  max-width: unset;
}
.island_bg .square.palace .showonhover {
  top: -200px;
  left: 150px;
  width: 350px;
  height: auto;
  max-width: unset;
}
.island_bg .square.art {
  right: 43.5%;
  top: 53%;
  width: 90px;
  height: 90px;
}

@keyframes pulse2 {
  0% {
    animation-timing-function: ease-in;
    transform: scale(0);
    opacity: 0;
  }
  40% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    animation-timing-function: ease-in;
    transform: scale(1.5);
  }
  40% {
    transform: scale(2);
    opacity: 0.2;
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: scale(2.3);
    opacity: 0;
  }
}

/*# sourceMappingURL=island.css.map */
