.hi-icon-wrap {
	text-align: center;
	float:left;
}

.hi-icon {
	display: inline-block;
	font-size:14px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	line-height:50px;
	border-radius: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}

.hi-icon:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	box-sizing: content-box;
	font-family: 'Open Sans', sans-serif;
}

.hi-icon:before {
	font-family: 'Open Sans', sans-serif;
	speak: none;
	font-size: 14px;
	line-height: 50px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
	-webkit-font-smoothing: antialiased;
	padding:5px;
}

/* Effect 8 */
.hi-icon-effect-8 .hi-icon {
	background:#3a3f4d;
	-webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
	-moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
	transition: transform ease-out 0.1s, background 0.2s;
}

.hi-icon-effect-8 .hi-icon:after {
	top: 0;
	left: 0;
	padding:0;
	z-index: -1;
	box-shadow: 0 0 0 2px rgba(58,63,77,0.8);
	opacity: 0;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}

.hi-icon-effect-8 .hi-icon:hover {
	background: rgba(58,63,77,0.8);
	-webkit-transform: scale(0.93);
	-moz-transform: scale(0.93);
	-ms-transform: scale(0.93);
	transform: scale(0.93);
	color: #fff;
}

.hi-icon-effect-8 .hi-icon:hover:after {
	-webkit-animation: sonarEffect 1.3s ease-out 75ms;
	-moz-animation: sonarEffect 1.3s ease-out 75ms;
	animation: sonarEffect 1.3s ease-out 75ms;
}

.hi-icon-effect-yellow .hi-icon {
	background:#fdaf17;
	-webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
	-moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
	transition: transform ease-out 0.1s, background 0.2s;
}

.hi-icon-effect-yellow .hi-icon:after {
	top: 0;
	left: 0;
	padding:0;
	z-index: -1;
	box-shadow: 0 0 0 2px rgba(254,119,22,0.8);
	opacity: 0;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}

.hi-icon-effect-yellow .hi-icon:hover {
	background: rgba(254,119,22,0.8);
	-webkit-transform: scale(0.93);
	-moz-transform: scale(0.93);
	/* [disabled]-ms-transform: scale(0.93); */
	transform: scale(0.93);
	color: #fff;
}

.hi-icon-effect-yellow .hi-icon:hover:after {
	-webkit-animation: sonarEffect 1.3s ease-out 75ms;
	-moz-animation: sonarEffect 1.3s ease-out 75ms;
	animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(254,119,22,0.1), 0 0 10px 10px #fe7716, 0 0 0 10px rgba(254,119,22,0.5);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(254,119,22,0.1), 0 0 10px 10px #fe7716, 0 0 0 10px rgba(254,119,22,0.5);
		-webkit-transform: scale(1.5);
		opacity: 0;
	}
}
@-moz-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(254,119,22,0.1), 0 0 10px 10px #fe7716, 0 0 0 10px rgba(254,119,22,0.5);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(254,119,22,0.1), 0 0 10px 10px #fe7716, 0 0 0 10px rgba(254,119,22,0.5);
		-moz-transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(254,119,22,0.1), 0 0 10px 10px #fe7716, 0 0 0 10px rgba(254,119,22,0.5);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(254,119,22,0.1), 0 0 10px 10px #fe7716, 0 0 0 10px rgba(254,119,22,0.5);
		transform: scale(1.5);
		opacity: 0;
	}
}
