
		
.ping {
	-webkit-animation: ping 2s ease-in-out both 3s 3;
	        animation: ping 2s ease-in-out both 3s 3;
	background-color: #C4C3C5;
	position: relative;
	height: 10px;
	width: 10px;
	z-index: 100;
	padding: 10px;
	margin: 0 auto;
}		
		
	
	
@-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(2.2);
            transform: scale(2.2);
    opacity: 0;
  }
}

	
	












/*	
		
		
.heartbeat {
	-webkit-animation: heartbeat 3s ease-in-out alternate-reverse infinite both;
	animation: heartbeat 3s ease-in-out alternate-reverse infinite both;
	background-color: #C4C3C5;
	position: relative;
	height: 20px;
	width: 20px;
	z-index: 100;
	animation-iteration-count: infinite;
}




@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
	background-color: #eae9e9;
  }
  10% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  17% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  45% {
    -webkit-transform: scale(0.05);
            transform: scale(0.05);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  17% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  45% {
    -webkit-transform: scale(0.05);
            transform: scale(0.05);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}


*/