header {
	background: #381A72; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(rgba(0,0,0, 0.75), rgba(0,0,0, 0.55)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(rgba(0,0,0, 0.75), rgba(0,0,0, 0.55)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(rgba(0,0,0, 0.75), rgba(0,0,0, 0.55)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(rgba(255,255,255, 1), rgba(255,255,255, 0.95)); /* Standard syntax (must be last) */
	height: auto;
	padding: 0px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}
.logo {
	text-align: center;
	padding: 20px 0px;
}
.logo-img {
	height: 60px;
	width: auto;
}
.notification-info {
	-webkit-backdrop-filter: blur(2px);
	background-color: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(2px);	
	border-radius: 25px;
	display: none;
	font-family: 'Quicksand', sans-serif;
	font-size: 12px;
	padding: 15px;
	position: fixed;
	bottom: 100px;
	right: 20px;
	text-shadow: 0px 0px 1px grey;
	z-index: 2;
}
.notification-error {
	-webkit-backdrop-filter: blur(2px);
	background-color: rgba(255, 0, 0, 0.75);
	backdrop-filter: blur(2px);	
	border-radius: 25px;
	color: white;
	display: none;
	font-family: 'Quicksand', sans-serif;
	font-size: 12px;
	padding: 15px;
	position: fixed;
	bottom: 100px;
	right: 20px;
	text-shadow: 0px 0px 1px red;
	z-index: 2;
}
/* Mobile */
@media (max-width: 320px) {
	header {
		padding: 10px 0px;
	}
	.logo-img {
		height: 35px;
	}
}
@media (min-width: 321px) and (max-width: 450px) {
	header {
		padding: 10px 0px;
	}
	.logo-img {
		height: 40px;
	}
}

/* Small Tablets */
@media (min-width: 451px) and (max-width: 768px) {
	header {
		padding: 10px 0px;
	}
	.logo-img {
		height: 40px;
	}
}