.bw-image-hotspot-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.bw-image-hotspot-container .bw-hotspot-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.bw-image-hotspot-container .bw-hotspot-image-wrapper .bw-hotspot-image {
  width: 100%;
  height: auto;
  display: block;
}
.bw-image-hotspot-container .bw-hotspot-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #dc2626;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}
.bw-image-hotspot-container .bw-hotspot-dot:hover {
  z-index: 9998;
}
.bw-image-hotspot-container .bw-hotspot-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #dc2626;
  border-radius: 50%;
  opacity: 0.6;
  animation: bw-pulse 2s infinite;
}
.bw-image-hotspot-container .bw-hotspot-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #dc2626;
  border-radius: 50%;
  opacity: 0.4;
  animation: bw-pulse 2s infinite 0.5s;
}
.bw-image-hotspot-container .bw-hotspot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: 50%;
  animation: bw-pulse-outer 2s infinite;
}
.bw-image-hotspot-container .bw-hotspot-tooltip {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  background: #000;
  color: #fff;
  padding: 15px;
  border-radius: 0;
  min-width: 200px;
  max-width: 300px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.bw-image-hotspot-container .bw-hotspot-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10000;
}
.bw-image-hotspot-container .bw-hotspot-tooltip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #000;
}
.bw-image-hotspot-container .bw-hotspot-tooltip .bw-tooltip-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-bottom: 10px;
  display: block;
}
.bw-image-hotspot-container .bw-hotspot-tooltip .bw-tooltip-text {
  font-size: 14px;
  line-height: 1.5;
}
.bw-image-hotspot-container .bw-hotspot-tooltip .bw-tooltip-text p {
  margin: 0 0 10px;
}
.bw-image-hotspot-container .bw-hotspot-tooltip .bw-tooltip-text p:last-child {
  margin-bottom: 0;
}

@keyframes bw-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@keyframes bw-pulse-outer {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .bw-image-hotspot-container .bw-hotspot-tooltip {
    position: fixed;
    left: 10px !important;
    right: 10px !important;
    top: auto !important;
    bottom: 10px !important;
    transform: none !important;
    margin: 0 !important;
    max-width: none;
  }
  .bw-image-hotspot-container .bw-hotspot-tooltip::before {
    display: none;
  }
}

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