@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?huizk');
  src:  url('fonts/icomoon.eot?huizk#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?huizk') format('truetype'),
    url('fonts/icomoon.woff?huizk') format('woff'),
    url('fonts/icomoon.svg?huizk#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-pintv_logo_pictorial_rgb .path1:before {
  content: "\e900";
  color: rgb(0, 177, 106);
  font-size: 50px;
}
.icon-pintv_logo_pictorial_rgb .path2:before {
  content: "\e901";
  margin-left: -1em;
  color: rgb(255, 255, 255);
  font-size: 50px;
}
.icon-pintv_logo_pictorial_rgb .path3:before {
  content: "\e902";
  margin-left: -1em;
  color: rgb(255, 255, 255);
  font-size: 50px;
}

/* Effects */

.hi-icon {
	display: inline-block;
	font-size: 0px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
}

/* Effect 8 */
.hi-icon-effect-8 .hi-icon {
	background: rgba(255,255,255,0.1);
	-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;
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
	-moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
    animation-iteration-count:infinite;
}

@-webkit-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgb(0, 177, 106), 0 0 0 10px rgba(255,255,255,0.5);
	}
	to {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgb(0, 177, 106), 0 0 0 10px rgba(255,255,255,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(255,255,255,0.1), 0 0 10px 10px rgb(0, 177, 106), 0 0 0 10px rgba(255,255,255,0.5);
	}
	to {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgb(0, 177, 106), 0 0 0 10px rgba(255,255,255,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(255,255,255,0.1), 0 0 10px 10px rgb(0, 177, 106), 0 0 0 10px rgba(255,255,255,0.5);
	}
	to {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgb(0, 177, 106), 0 0 0 10px rgba(255,255,255,0.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

/* EndEffects */