
/* ---------- layout: banner ---------- */
div#banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--banner-height);
	align-items: center;
}
div#banner header {
	display: flex;
	position:relative;
	width: 100%;
	max-width: var(--column-width);
	xx-height: 100px;
	background-color: #333;
	margin: 0 auto;
	padding: 0
}

header div.logo {
	flex: 1 0 110px;
	min-width: 110px;
	position: relative;
	left: 20px;
	top: 50%;
	margin-top:-45px;
}
header div.logo img {
	position: relative; width: 70px; height: 70px; padding: 10px; background-color: #555;
}
header div.logo a {
	border-bottom: none;
}
header div.logo a:hover {
	outline: 1px dotted var(--yellow);
	outline-offset: 1px;
}
header div.icons {
	flex: 1 1 var(--column-width);
	position: relative;
	top: -1rem;
}
header div.icon {
	position: absolute;
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	background-color: #555;
	border-radius: 50%;
}
header div.icon > img {
	position: relative;
	width: 18px;
	height: 18px;
	padding: 7px;
}
