#points_uvc {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
}

#poi {
    cursor: pointer;
}

#points_uvc #mpoi1 {
    position: absolute;
	top: 28%;
    left: 82%;
    z-index: 9999;
}
#points_uvc #mpoi2 {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: 9999;
}

#points_uvc #mpoi3 {
    position: absolute;
    top: 29%;
    left: 45%;
    z-index: 9999;
}
#points_uvc #mpoi4 {
    position: absolute;
    top: 40%;
    left: 60%;
    z-index: 9999;
}
#points_uvc #mpoi5 {
    position: absolute;
    top: 17%;
    left: 59%;
    z-index: 9999;
}
#points_uvc #mpoi6 {
    position: absolute;
	top: 65%;
    left: 37%;
    z-index: 9999;
}
#points_uvc #mpoi7 {
    position: absolute;
    top: 48%;
    left: 20%;
    z-index: 9999;
}
#points_uvc #mpoi8 {
    position: absolute;
    top: 55%;
    left: 83%;
    z-index: 9999;
}

#points_uvc video {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.popup {
    opacity: 0;
    position: absolute;
    z-index: 99999;
    display: none;
}

.poi { 
  animation-name: grow;
  animation-duration: .6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}



@keyframes grow {
  from {
    transform: scale(1);
  }
  
  to {
    transform: scale(1.2);
  }
}
