#panorama {
  width: 100%;
  height: 500px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.pano-hotspot {
  position: absolute;
  cursor: pointer;
}

.pano-link-hotspot {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.pano-link-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.pano-link-hotspot:hover .pano-link-icon {
  transform: scale(1.2) !important;
}

.pano-info-hotspot {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.pano-info-icon {
  width: 30px;
  height: 30px;
}

.pano-tooltip {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.pano-hotspot:hover .pano-tooltip {
  opacity: 1;
}