/* Fancy hover effect for Login/Register header buttons */
.top-header > a {
	transition: color 0.18s cubic-bezier(.4,0,.2,1);
	position: relative;
	z-index: 1;
}
.top-header > a i.fa {
	transition: transform 0.22s cubic-bezier(.4,0,.2,1), color 0.18s cubic-bezier(.4,0,.2,1);
}
.top-header > a:hover,
.top-header > a:focus {
	color: #1976d2;
	text-decoration: none;
}
.top-header > a:hover i.fa,
.top-header > a:focus i.fa {
	color: #1976d2;
	transform: scale(1.18) rotate(-8deg);
}
/* 

Add here your custom css styles Example: p { text-align: center; color: red; } 

*/