﻿.social-button {
	display: inline-grid;
	position: fixed;
	bottom: 96px;
	right: 25px;
	min-width: 45px;
	text-align: center;
	z-index: 99999;
}

.social-button-content {
	display: inline-grid;
}

.social-button a {
	padding: 5px 0;
	cursor: pointer;
	position: relative;
	z-index: 999;
}

.social-button i {
	width: 40px;
	height: 40px;
	background: #ff0000;
	color: #fff;
	border-radius: 100%;
	font-size: 20px;
	text-align: center;
	line-height: 1.9;
	position: relative;
	z-index: 999;
}

.social-button span {
	display: none;
}

.alo-circle {
	animation-iteration-count: infinite;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-name: zoomIn;
	width: 50px;
	height: 50px;
	top: 3px;
	right: -2px;
	position: absolute;
	background-color: transparent;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid rgba(30, 30, 30, 0.4);
	opacity: .1;
	border-color: #ff0000;
	opacity: .5;
}

.alo-circle-fill {
	animation-iteration-count: infinite;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-name: pulse;
	width: 60px;
	height: 60px;
	top: -2px;
	right: -8px;
	position: absolute;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	background-color: #ff0000;
	opacity: .75;
}

.call-icon:hover > span, .mes:hover > span, .sms:hover > span, .zalo:hover > span {
	display: block
}

.social-button a span {
	border-radius: 25px;
	text-align: center;
	background: #20c300;
	padding: 9px;
	display: none;
	width: 180px;
	margin-left: 10px;
	position: absolute;
	color: #ffffff;
	z-index: 9;
	top: 12px;
	right: 40px;
	transition: all 0.2s ease-in-out 0s;
	-moz-animation: headerAnimation 0.7s 1;
	-webkit-animation: headerAnimation 0.7s 1;
	-o-animation: headerAnimation 0.7s 1;
	animation: headerAnimation 0.7s 1;
}

@-webkit-keyframes headerAnimation {
	0% {
		margin-top: -70px;
	}

	100% {
		margin-top: 0;
	}
}

@keyframes headerAnimation {
	0% {
		margin-top: -70px;
	}

	100% {
		margin-top: 0;
	}
}

.social-button a span:before {
	/* content: ""; */
	width: 0;
	height: 0;
	border-style: solid;
	/* border-width: 10px 10px 10px 0; */
	/* border-color: transparent #ff0000 transparent transparent; */
	position: absolute;
	right: -10px;
	top: 10px;
}



.animated {
	animation-duration: 1s;
	animation-fill-mode: both
}

	.animated.infinite {
		animation-iteration-count: infinite
	}

	.animated.hinge {
		animation-duration: 2s
	}

	.animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
		animation-duration: .75s
	}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	animation-name: zoomIn
}

@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1)
	}

	50% {
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		transform: scale3d(1, 1, 1)
	}
}

.pulse {
	animation-name: pulse
}

@keyframes rubberBand {
	from {
		transform: scale3d(1, 1, 1)
	}

	30% {
		transform: scale3d(1.25, 0.75, 1)
	}

	40% {
		transform: scale3d(0.75, 1.25, 1)
	}

	50% {
		transform: scale3d(1.15, 0.85, 1)
	}

	65% {
		transform: scale3d(0.95, 1.05, 1)
	}

	75% {
		transform: scale3d(1.05, 0.95, 1)
	}

	to {
		transform: scale3d(1, 1, 1)
	}
}
