/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
.hotspot-image-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.hotspot-image-container .hotspot {
  position: absolute;
  z-index: 2;
}
.hotspot-image-container .hotspot:before {
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0px;
  position: absolute;
  animation: pulse 2s infinite;
}
.hotspot-image-container .hotspot .hotspot-label {
  position: absolute;
  display: none;
  top: -50px;
  left: calc(50% + 10px);
  transform: translateX(-50%);
  padding: 5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 14px;
  white-space: nowrap;
  z-index: 3;
}
.hotspot-image-container .hotspot:hover .hotspot-label {
  display: block;
}
.hotspot-image-container input[type=text] {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  border: none;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  border: 1px solid #e1e1e1;
}
.hotspot-image-container input[type=text]:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
.hotspot-image-container .hotspot-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(0, 0, 0, 0.5);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hotspot-image-container .hotspot-options {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 1px 10px 10px rgba(0, 0, 0, 0.15);
  padding: 15px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

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