html, body {
      margin: 0;
      padding: 0;
      overflow: hidden;
      height: 100%;
    }
/* CSS */

i{
  font-size: 32px;
}
.hotspot-dinamico {
  padding: 10px 10px;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  display: block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #9C2348;
  /* background-image: linear-gradient(90deg,rgba(156, 35, 72, 1) 0%, rgba(105, 27, 50, 1) 100%); */
  /* background-color: rgba(156, 35, 72, 0.7); */
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 40;
}

.hotspot-dinamico:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  background-color: rgba(156, 35, 72, 0.6);
  text-decoration: none;
}

.hotspot-dinamico:active {
  transform: scale(0.95);
}

.barra-herramientas {
  width: 30%;
  height: 55px;
  background-color: rgba(156, 35, 72, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 8px;
}
