
/***
Gruppo imac Widget Immagine Singola CSS
***/

.immagine-singola {
	border-radius: 30px !important;
}


/* HOTSPOT SINGOLO LINK SOLO */


.hotspot-container_link {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    object-fit: cover;
    height: 100%;
    aspect-ratio: 1/1;
	border-radius: 50px;
}



.hotspot_link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  border-radius: 50%;
  cursor:pointer;
}


.icon_link {
	height: 6px;
    width: 6px;
    z-index: 10;
    position: relative;
    border-radius: 50%;
}


.hotspot__positioner--02_link .hotspot {
  animation-delay: 1s;
}
.hotspot_btn_container_link {
  position: relative;
}
.hotspot--01_link {
  width: 20px;
  height: 20px;
  border: 5px solid #FFF;
  background-color: transparent;
  z-index: 1;
  opacity: 0.2;
  animation: dot1 2s infinite;
}
.hotspot--02_link {
  width: 20px;
  height: 20px;
  background-color: #FFF;
  z-index: 2;
  animation: dot2 2s infinite;
}
.hotspot--03_link {
  width: 20px;
  height: 20px;
  background-color: #FFF;
  z-index: 3;
  animation: dot3 1s alternate infinite;
}

@keyframes dot1 {
  0% {
    opacity: 0.2;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5);
  }
}
@keyframes dot2 {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}
@keyframes dot3 {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
