#support-hover-icon {
	position: fixed;
	right: 16px;
	bottom: 85px;
	text-align: center;
	animation: fadeInZoom 1s ease forwards;
	z-index: 300;
}
#support-hover-icon .icon-coffee {
	background-color: #ffcc66;
	width: 64px;
	height: 64px;
	border-radius: 99em;
}
#support-hover-icon .icon-coffee img {
	width: 32px;
	margin-top: 12px;
	display: inline-block;
	animation: shake 0.8s ease-in-out infinite;
}
#support-hover-icon .text {
	position: absolute;
	background-color: #ffffff;
	border-radius: 99em;
	border: 2px solid #ffa71b;
	top: 52px;
	left: -1px;
	right: -1px;
	line-height: 22px;
	color: #000;
	font-weight: bold;
	font-size: 14px;
}
#support-hover-icon .text img {
	width: 18px;
	display: inline-block;
	vertical-align: middle;
}
#support-hover-icon a {
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#support-hover-icon a:hover {
	transform: scale(1.05);
}
#support-hover-icon a:active {
	-webkit-filter: brightness(50%);
	filter: brightness(50%);
}
@keyframes fadeInZoom {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes shake {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-10deg);
	}
	50% {
		transform: rotate(10deg);
	}
	75% {
		transform: rotate(-10deg);
	}
	100% {
		transform: rotate(0deg);
	}
}