.ajuste {
  margin-left: -10px;
  margin-top:-3px;
    margin-bottom:-2px;
  color: #ecf3f1;
}

.tap-indicator {
  width: 50px;
  position:fixed;
  height: 50px;
  background-color: #085b9b;
  border-radius: 50%;
  color: #ecf3f1;
  margin-left: 30%;
  margin-top: -10%;
  text-align: center;
/*  filter: blur(5px);*/
  -webkit-animation: ping 95s ease-in-out infinite forwards;
	        animation: ping 2.95s ease-in-out infinite forwards;
}
.tap-indicator::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #4185b9;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: .80;
  z-index: -1000;
  
/*  filter: blur(10px);*/
}
@-webkit-keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(2.2);
            transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.75);
            transform: scale(1.75);
    opacity: 0;
  }
}