html {
	height: 100%;
}

body {
	height: 100%;
}

.only-logout {
	display: none;
}

.only-login {
	display: none;
}

#loading {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: rgba(0, 0, 0, 0.31);
	z-index: 1;
}

#spinner {
	display: none;
	color: #fff;
	z-index: 2;
}

#snackbar {
	visibility: hidden;
	min-width: 200px;
	margin-left: -100px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 12px;
	position: fixed;
	font-size: 18px;
	z-index: 5000;
	left: 50%;
	top: 30px;
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 1s 1.6s;
	animation: fadein 0.5s, fadeout 1s 1.6s;
}

@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}