.kc-icon-effects {
	text-align: center;
}
.kc-elm .kc-ico {
	color: #fff;
	z-index: 1;
	width: 90px;
	height: 90px;
	cursor: pointer;
	font-size: 45px;
	line-height: 90px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	display: inline-block;
}
.kc-ico: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;
}

/*------------ Effect 1 --------------*/
.kc-effects-1 .kc-ico {
	background: #42BCE2;
	transition: background 0.2s, color 0.2s;
	position: relative;
}
.kc-effects-1 .kc-ico:after {
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	width: auto;
	height: auto;
	position: absolute;
	border: 4px solid #42BCE2;
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(.8);
	opacity: 0;
}

.kc-effects-1 .kc-ico:hover {
	background: #42BCE2;
}
.kc-effects-1 .kc-ico:hover:after {
	transform: scale(1);
	opacity: 1;
}

/*------------ Effect 2 --------------*/
.kc-effects-2 .kc-ico {
	background: #42BCE2;
	transition: background 0.2s, color 0.2s;
}
.kc-effects-2 .kc-ico:after {
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	width: auto;
	height: auto;
	border: 4px solid #42BCE2;
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(.8);
	opacity: 0;
}
.kc-effects-2 .kc-ico:hover {
	background: #42BCE2;
}
.kc-effects-2 .kc-ico:after {
	transform: scale(1.2);
}
.kc-effects-2 .kc-ico:hover:after {
	transform: scale(1);
	opacity: 1;
}

/*------------ Effect 3 --------------*/
.kc-effects-3 .kc-ico {
	color: #fff;
	background: #42BCE2;
	transition: transform ease-out 0.1s, background 0.2s;
}
.kc-effects-3 .kc-ico:after {
	top: 0;
	left: 0;
	padding: 0;
	z-index: -1;
	box-shadow: 0 0 0 6px rgba(0, 185, 235,0.4);
	opacity: 0;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}
.kc-effects-3 .kc-ico:hover {
	background: #42BCE2;
	transform: scale(0.90);
	color: #fff;
}
.kc-effects-3 .kc-ico:hover:after {
	animation: sonarEffect 1.3s ease-out 75ms;
}
@-webkit-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(1.5);
		opacity: 0;
	}
}
@-moz-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
	}
	100% {
		-moz-transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/*------------ Effect 4 --------------*/
.kc-effects-4 .kc-ico {
	color: #42BCE2;
	border: 4px solid #42BCE2;
	line-height: 82px;
	overflow: hidden;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.kc-effects-4 .kc-ico:after {
	display: none;
}
.kc-effects-4 .kc-ico:hover {
	background: #42BCE2;
	color: #fff;
	box-shadow: 0 0 0 8px rgba(0, 185, 235,0.3);
}
.kc-effects-4 .kc-ico:hover:before {
	animation: toRightFromLeft 0.3s forwards;
}

@-webkit-keyframes toRightFromLeft {
	49% {
		-webkit-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toRightFromLeft {
	49% {
		-moz-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toRightFromLeft {
	49% {
		transform: translate(100%);
	}
	50% {
		opacity: 0;
		transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}

/*------------ Effect 5 --------------*/
.kc-effects-5 .kc-ico {
	color: #42BCE2;
	border: 4px solid #42BCE2;
	overflow: hidden;
	line-height: 82px;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.kc-effects-5 .kc-ico:after {
	display: none;
}
.kc-effects-5 .kc-ico:hover {
	background: #42BCE2;
	color: #fff;
	box-shadow: 0 0 0 8px rgba(0, 185, 235,0.3);
}
.kc-effects-5 .kc-ico:hover:before {
	animation: toLeftFromRight 0.3s forwards;
}
@-webkit-keyframes toLeftFromRight {
	49% {
		-webkit-transform: translate(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toLeftFromRight {
	49% {
		-moz-transform: translate(-100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toLeftFromRight {
	49% {
		transform: translate(-100%);
	}
	50% {
		opacity: 0;
		transform: translate(100%);
	}
	51% {
		opacity: 1;
	}
}


/*------------ Effect 6 --------------*/
.kc-effects-6 .kc-ico {
	color: #42BCE2;
	border: 4px solid #42BCE2;
	line-height: 82px;
	overflow: hidden;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.kc-effects-6 .kc-ico:after {
	display: none;
}
.kc-effects-6 .kc-ico:hover {
	background: #42BCE2;
	color: #fff;
	box-shadow: 0 0 0 8px rgba(0, 185, 235,0.3);
}
.kc-effects-6 .kc-ico:hover:before {
	animation: toTopFromBottom 0.3s forwards;
}
@-webkit-keyframes toTopFromBottom {
	49% {
		-webkit-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toTopFromBottom {
	49% {
		-moz-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toTopFromBottom {
	49% {
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

/*------------ Effect 7 --------------*/
.kc-effects-7 .kc-ico {
	color: #42BCE2;
	border: 4px solid #42BCE2;
	line-height: 82px;
	overflow: hidden;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.kc-effects-7 .kc-ico:after {
	display: none;
}
.kc-effects-7 .kc-ico:hover {
	background: #42BCE2;
	color: #fff;
	box-shadow: 0 0 0 8px rgba(0, 185, 235,0.3);
}
.kc-effects-7 .kc-ico:hover:before {
	-webkit-animation: toBottomFromTop 0.3s forwards;
	-moz-animation: toBottomFromTop 0.3s forwards;
	animation: toBottomFromTop 0.3s forwards;
}
@-webkit-keyframes toBottomFromTop {
	49% {
		-webkit-transform: translateY(100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toBottomFromTop {
	49% {
		-moz-transform: translateY(100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translateY(-100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toBottomFromTop {
	49% {
		transform: translateY(100%);
	}
	50% {
		opacity: 0;
		transform: translateY(-100%);
	}
	51% {
		opacity: 1;
	}
}

/*------------ Effect 8 --------------*/
.kc-effects-8 .kc-ico {
	color: #42BCE2;
	border: 4px solid #42BCE2;
	line-height: 82px;
	transition: background 0.2s, color 0.2s;
}
.kc-effects-8 .kc-ico:hover {
	background: #42BCE2;
	color: #fff;
}
.kc-effects-8 .kc-ico:hover:before {
	animation: spinAround 2s linear infinite;
}
@-webkit-keyframes spinAround {
	from {
		-webkit-transform: rotate(0deg)
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes spinAround {
	from {
		-moz-transform: rotate(0deg)
	}
	to {
		-moz-transform: rotate(360deg);
	}
}
@keyframes spinAround {
	from {
		transform: rotate(0deg)
	}
	to {
		transform: rotate(360deg);
	}
}

/*------------ Effect 9 --------------*/
.kc-effects-9 .kc-ico {
	color: #fff;
	border: 4px solid #42BCE2;
	line-height: 82px;
	transition: background 0.2s, color 0.2s;
}
.kc-effects-9 .kc-ico:hover {
	background: #fff;
	color: #42BCE2;
}
.kc-effects-9 .kc-ico:after{
	top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    background: #42BCE2;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}

.kc-effects-9 .kc-ico:hover:after {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    -moz-transition: -moz-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
}

/*------------ Effect 10 --------------*/
.kc-effects-10 .kc-ico {
	color: #fff;
	border: 4px solid #42BCE2;
	line-height: 82px;
	transition: background 0.2s, color 0.2s;
}
.kc-effects-10 .kc-ico:hover {
	background: #fff;
	color: #42BCE2;
}
.kc-effects-10 .kc-ico:after{
	top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    background: #42BCE2;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
    -moz-transition: -moz-transform 0.2s, opacity 0.3s;
    transition: transform 0.2s, opacity 0.3s;
}

.kc-effects-10 .kc-ico:hover:after {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
}

/*------------ Effect 11 --------------*/
.kc-effects-11 .kc-ico {
	color: #42BCE2;
	border: 4px solid #42BCE2;
	line-height: 82px;
	transition: background 0.2s, color 0.2s;
}
.kc-effects-11 .kc-ico:hover {
	color: #fff;
}
.kc-effects-11 .kc-ico:after{
	top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    background: #42BCE2;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
    -moz-transition: -moz-transform 0.2s, opacity 0.3s;
    transition: transform 0.2s, opacity 0.3s;
}

.kc-effects-11 .kc-ico:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}