.hotspot-image-container {
	position: relative;
	display: inline-block;
	cursor: pointer;
	.hotspot {
	  position: absolute;
	  z-index: 2;
	  &: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-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;
	  }
	  &:hover {
		.hotspot-label {
		  display: block;
		}
	  }
	}

	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;
        &:focus {
          outline: none;
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
        }
      }

	.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-options{
		background: #fff;
		border: 1px solid #eee;
		box-shadow: 1px 10px 10px rgb(0 0 0 / 15%);
		padding: 15px;
	}
  }
  
  @keyframes pulse {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.5);
	}
	100% {
	  transform: scale(1);
	}
  }