.fly {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.fly__link {
	position: fixed;
	z-index: 12323;
	bottom: 12px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.fly__link a {
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
}

.fly__button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin: 0 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: rgb(239, 37, 115);

	-webkit-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	line-height: 1.4;
	font-family: sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	-webkit-transition:
		background 0.3s,
		-webkit-transform 0.3s,
		-webkit-box-shadow 0.3s;
	transition:
		background 0.3s,
		-webkit-transform 0.3s,
		-webkit-box-shadow 0.3s;
	-o-transition:
		background 0.3s,
		transform 0.3s,
		box-shadow 0.3s;
	transition:
		background 0.3s,
		transform 0.3s,
		box-shadow 0.3s;
	transition:
		background 0.3s,
		transform 0.3s,
		box-shadow 0.3s,
		-webkit-transform 0.3s,
		-webkit-box-shadow 0.3s;
	will-change: transform;
	padding: 12px;
}

.fly__button:active {
	-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	-webkit-transform: translate3d(0, 1px, 0);
	transform: translate3d(0, 1px, 0);
}

.animated__btn {
	animation: heartRate 2s infinite linear;
}

@keyframes heartRate {
	0% {
		transform: scale(1);
		animation-timing-function: linear;
	}

	50% {
		transform: scale(1.03);
		animation-timing-function: linear;
	}
	100% {
		transform: scale(1);
	}
}

@media (max-width: 500px) {
	.animated__btn {
		max-width: 100%;
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}
	33% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	to {
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
	}
}

.pulse {
	position: relative;
}

.pulse:after,
.pulse:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	opacity: 0;
	margin: auto;
}

.pulse:before {
	-webkit-animation: pulse 1.5s infinite linear;
	animation: pulse 1.5s infinite linear;
}

.pulse:after {
	-webkit-animation: pulse 2s 0.4s infinite linear;
	animation: pulse 2s 0.4s infinite linear;
}

.pulse:hover:after,
.pulse:hover:before {
	display: none;
}
