.tf-counter {
	position: relative;
}

.tf-counter .counter-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.tf-counter .counter-number-wrapper {
	display: flex;
	align-items: center;
}

.tf-counter.style2 .wrap-icon-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tf-counter .counter-icon {
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.tf-counter:hover .counter-icon {
	-webkit-transform: rotateY( 360deg);
    transform: rotateY( 360deg);
}