.theme-switcher{
	position: fixed;
	top: 10px;
	right: 20px;
	z-index: 8;
	cursor: pointer;

}

.theme-switcher .fa{
	font-size: 20px;
	line-height: 43px;
	transform: rotate(180deg);
	transition: all 0.5s ease; 
}

body.dark .theme-switcher .fa{
	font-size: 20px;
	line-height: 43px;
	color: #ffffff;
	transform: rotate(360deg);
	transition: all 0.5s ease; 
}
