@-webkit-keyframes pulse {
	0% {
	  -webkit-box-shadow: 0 0 0 0 rgba(67, 169, 84, 0.8);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(67, 169, 84, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(67, 169, 84, 0);
	}
  }
  @keyframes pulse {
	0% {
	  -moz-box-shadow: 0 0 0 0 rgba(67, 169, 84, 0.8);
	  box-shadow: 0 0 0 0 rgba(67, 169, 84, 0.8);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(67, 169, 84, 0);
		box-shadow: 0 0 0 10px rgba(67, 169, 84, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(67, 169, 84, 0);
		box-shadow: 0 0 0 0 rgba(67, 169, 84, 0);
	}
  }

#socialVidget {
	position: fixed;
	right: 44px;
	left: auto;
	z-index: 99999999;
	top: auto;
	bottom: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #49c456;
	cursor: pointer;
	animation: pulse 2s infinite;
}

@media screen and (max-width: 420px) {
	#socialVidget {
		right: 24px;
		bottom: 150px;
	}
}

#socialVidget svg {
	margin-left: 8px;
	margin-top: 9px;
	position: relative;
	z-index: 100;
}

#socialVidget.active #svgIcon1 {
	display: none;
}

#socialVidget #svgIcon2 {
	display: none;
}

#socialVidget.active #svgIcon2 {
	display: block;
	text-align: center;
	font-size: 37px;
	margin-top: -46px;
	color: #fff;
}

#socialVidget .buttons a {
	position: absolute;
	width: 50px;
	height: 50px;
	opacity: 0;
	transition: 0.3s;
}

#socialVidget.active .buttons a {
	opacity: 1;
	transition: 0.3s;
}

#socialVidget.active .buttons a:nth-child(1) {
	margin-top: -60px;
}

#socialVidget.active .buttons a:nth-child(2) {
	margin-top: -120px;
}

#socialVidget.active .buttons a:nth-child(3) {
	margin-top: -180px;
}

#socialVidget.active .buttons a:nth-child(4) {
	margin-top: -240px;
}

#socialVidget .buttons a.icq {
	background: #29b6f6;
	border-radius: 50%;
	box-sizing: border-box;
	padding: 8px;
}

#socialVidget .buttons a img {
	width: 100%;
}