.s_btn_animation{
	
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	position: absolute;
	text-align: center;
	
	
	text-transform: uppercase;
	padding: 7px 20px;
	width: 200px;
	border-radius: 10px;
	color: white;
	text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.8);
	border: 5px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.35);
	background: hsla(260, 100%, 50%, 1);
	
	/*animation: pulse 1s infinite alternate;*/
	transition: background 0.4s, border 0.2s, transform 0.2s;
}
.s_btn_animation button{
	background: transparent;
	border: none;
	font-size: 24px;
	color: white;
	outline: none;
	cursor: pointer;

}

.s_btn_animation:hover{
	background: hsla(220, 100%, 60%, 1);
	/*margin-top: -1px;*/

	
	transform: translateY(-1px);
	animation: none;
}

.s_btn_animation:active, .s_btn_animation:active {
	border-bottom-width: 0;
	/*margin-top: 5px;*/
	transform: translateY(5px);
	
	
}

@keyframes pulse {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(6px);
		
		/*margin-top: 6px;*/
	}
}