.logo-div
{
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1;
}

@media screen and (max-width: 450px) 
{
	.logo-div
	{
		top: unset;
		bottom: 3px;
	}
}

.logo-div img
{
	width: 100px;
	height: auto;
	filter: grayscale(100%);
	transition: all 1s;
}

.logo-div img.logged-in
{
	filter: none;
	transform: rotateY(360deg);
}