#brand-logo {
	width: 100%;
	text-decoration: none;
	color: white;
	text-align: center;
	font-size: 21px;
	margin-top: 10px;
}

.home-summary {
	margin-top: 2px;
	margin-bottom: 2px;
}

#nav-back {
	display: none;
	text-decoration: none;
}

@media screen and (max-width:480px) {
	#image {
		width: 300px !important;
		height: 300px !important;
		object-fit: cover !important;
	}
}

#loading {
	display: flex;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	text-align: center;
 	justify-content: center;
	align-items: center;
}

#spinner {
	z-index: 20000;
	margin-left: 250px;
}

#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;}
}