.rs-hotspots {
  position: relative;
}
.rs-hotspots .rs-hotspot-item {
  position: absolute;
  width: 25px;
}
.rs-hotspots .rs-hotspot-item .rs-hots-figure {
  min-width: 250px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 8px;
  transition: all 0.4s ease;
  z-index: 999;
  opacity: 0;
  background: #0A165E;
  padding: 30px;
  border-radius: 2px;
  transition: all 500ms ease;
  transform: translate3d(-50%, -70px, 0);
  visibility: hidden;
}
.rs-hotspots .rs-hotspot-item .rs-hots-figure .pre-title .title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
}
.rs-hotspots .rs-hotspot-item .rs-hots-figure .hotspot-desc p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.rs-hotspots .rs-hotspot-item .rs-hots-figure:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #0A165E;
  top: 100%;
  right: 0;
  margin: 0 auto;
}
.rs-hotspots .rs-hotspot-item .pre-circle-ripple {
  position: relative;
  cursor: pointer;
}
.rs-hotspots .rs-hotspot-item .pre-circle-ripple:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #2B4DFF;
  transform-origin: center center;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.rs-hotspots .rs-hotspot-item .pre-circle-ripple:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7607843137);
  z-index: 9;
  border: 3px solid #2B4DFF;
}
.rs-hotspots .rs-hotspot-item.hotspot__1 {
  left: 20%;
  top: 10%;
}
.rs-hotspots .rs-hotspot-item.hotspot__2 {
  left: 30%;
  top: 40%;
}
.rs-hotspots .rs-hotspot-item.hotspot__3 {
  left: 30%;
  top: 50%;
}
.rs-hotspots .rs-hotspot-item.hotspot__4 {
  left: 40%;
  top: 10%;
}
.rs-hotspots .rs-hotspot-item.hotspot__5 {
  left: 40%;
  top: 50%;
}
.rs-hotspots .rs-hotspot-item.hotspot__6 {
  left: 30%;
  top: 60%;
}
.rs-hotspots .rs-hotspot-item.hotspot__7 {
  left: 20%;
  top: 70%;
}
.rs-hotspots .rs-hotspot-item.hotspot__8 {
  left: 30%;
  top: 50%;
}
.rs-hotspots .rs-hotspot-item.hotspot__9 {
  left: 90%;
  top: 80%;
}
.rs-hotspots .rs-hotspot-item.hotspot__10 {
  left: 30%;
  top: 50%;
}
.rs-hotspots .rs-hotspot-item:hover .rs-hots-figure {
  opacity: 1;
  transform: translate3d(-50%, -35px, 0);
  visibility: visible;
}
.rs-hotspots .desktop_item:hover .pre-circle-ripple:before, .rs-hotspots .desktop_item.ripple .pre-circle-ripple:before {
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  opacity: 1;
}
.rs-hotspots .mobile_item {
  display: none;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 280px;
  color: #000;
  background: #ffffff;
  padding: 30px;
  border-radius: 5px;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}
.rs-hotspots .mobile_item .remove-icon {
  border: 1px solid #d5d5d5;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  margin: 0 auto 10px;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
}
.rs-hotspots .mobile_item .pre-title .title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}
.rs-hotspots .mobile_item .hotspot-desc p {
  margin: 0;
  font-size: 15px;
  color: #565656;
}
.rs-hotspots .mobile_item.active {
  top: 50%;
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}
@media screen and (max-width: 767px) {
  .rs-hotspots .desktop_item .rs-hots-figure {
    display: none;
  }
  .rs-hotspots .mobile_item {
    display: block;
  }
}
