.buyBtn {
	height: 65px;
	width: 65px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 90px;
	left: 20px;
	background-color: rgba(255,255,255,1);
	border-radius: 50%;
	color: #002e87;
	cursor: pointer;
	text-decoration: none !important;
	z-index: 10000;
	transition: .2s;
}
.buyBtn span:first-child {
	display: block;
	font-size: 45px;
	line-height: 22px;
	font-weight: bold;
}
.buyBtn span:last-child {
	display: block;
	font-size: 14px;
	line-height: 22px;
}
@-webkit-keyframes glowing {
	0% {
		-webkit-box-shadow: 0 0 3px #002e87;
	}
	50% {
		-webkit-box-shadow: 0 0 40px #1e4fae;
	}
	100% {
		-webkit-box-shadow: 0 0 3px #002e87;
	}
}
@-moz-keyframes glowing {
	0% {
		-moz-box-shadow: 0 0 3px #002e87;
	}
	50% {
		-moz-box-shadow: 0 0 40px #1e4fae;
	}
	100% {
		-moz-box-shadow: 0 0 3px #002e87;
	}
}
@-o-keyframes glowing {
	0% {
		box-shadow: 0 0 3px #002e87;
	}
	50% {
		box-shadow: 0 0 40px #1e4fae;
	}
	100% {
		box-shadow: 0 0 3px #002e87;
	}
}
@keyframes glowing {
	0% {
		box-shadow: 0 0 3px #002e87;
	}
	50% {
		box-shadow: 0 0 40px #1e4fae;
	}
	100% {
		box-shadow: 0 0 3px #002e87;
	}
}
.buyBtn {
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
}