.fixed-social {
	position: fixed;
	bottom: 30px;
	right: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 1001
}

.fixed-social-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #0636a3;
	border-radius: 100%;
	width: 45px;
	height: 45px;
	margin-top: 20px;
	position: relative;
	-webkit-transition: .3s;
	transition: .3s
}

.fixed-social-item:hover {
	-webkit-transform: rotate(360deg) scale(1.2);
	transform: rotate(360deg) scale(1.2)
}

.fixed-social-item.whatsapp {
	background-color: #25d366
}

.fixed-social-item.whatsapp::before {
	content: "";
	width: 45px;
	height: 45px;
	background-color: #25d366;
	border-radius: 100%;
	position: absolute;
	-webkit-animation-name: wave;
	animation-name: wave;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.fixed-social-item.whatsapp::after {
	content: "";
	width: 45px;
	height: 45px;
	background-color: #25d366;
	border-radius: 100%;
	position: absolute;
	-webkit-animation-name: wave;
	animation-name: wave;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}
@-webkit-keyframes wave {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0
	}
}

@keyframes wave {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0
	}
}

.fixed-social-item::before {
	content: "";
	width: 45px;
	height: 45px;
	background-color: #0636a3;
	border-radius: 100%;
	position: absolute;
	-webkit-animation-name: wave;
	animation-name: wave;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.fixed-social-item::after {
	content: "";
	width: 45px;
	height: 45px;
	background-color: #0636a3;
	border-radius: 100%;
	position: absolute;
	-webkit-animation-name: wave;
	animation-name: wave;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

@keyframes wave {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0
	}
}

.fixed-social-item .icon {
	color: #fff;
	font-size: 25px;
	position: relative;
	z-index: 2
}