@charset "utf-8";
.animebt{
	animation: btanime 3s infinite;
}
@keyframes btanime {
  0%{transform:scale(0.95);}
  50% {transform:scale(1.00);}
  100% {transform:scale(0.95);}
}
.hoverbt:hover{
	transform: scale(1);
	opacity: 1;
	animation: none;
	background: #ba3a1d;
}
@media screen and (max-width: 490px) {
.hoverbt:hover,.hoverbt:active{
	transform: scale(1);
	opacity: 1;
	animation: none;
	filter: none;
	box-shadow: none;
}
}