.pulse {
 border: 3px solid #ffa71f ;
    -webkit-border-radius: 30px;
    height: 50px;
    width: 50px;
    position: absolute;
    left: 15px;
    top: 15px;
    border-radius: 30px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    
      -moz-animation: pulse 2s ease-out;
    -moz-animation-iteration-count: infinite; 
    opacity: 0.0
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

@-moz-keyframes pulse {
	0% { -moz-transform: scale(0); opacity: 0.0;}
    50% {opacity: 0.6;}
    100% {-moz-transform: scale(1.2, 1.2); opacity: 0.0;}

}

.hotspot {
 position: relative;
}

.dot {
    width: 30px;
    height: 30px;
    background-color: #ffa71f ;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    left: 25px;
}


}