.pulse{
	border-radius: 50%;
	border: none;
	box-shadow: 0 0 0 0 rgba(207, 205, 0, 0.9);
	-webkit-animation: pulse 0.5s infinite cubic-bezier(0.66, 0, 0, 1);
	-moz-animation: pulse 0.5s infinite cubic-bezier(0.66, 0, 0, 1);
	-ms-animation: pulse 0.5s infinite cubic-bezier(0.66, 0, 0, 1);
	animation: pulse 0.5s infinite cubic-bezier(0.66, 0, 0, 1);
	pointer-events: none;
}

@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(207, 205, 0, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(207, 205, 0, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(207, 205, 0, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(207, 205, 0, 0);}}