/* HEADER
--------- */

.header {
	position: fixed;
	z-index: 19;
	grid-row: 1;
	display: grid;
	grid-template-columns: 100vw;
/*	background: transparent;*/
	background: #1f3549;
	border-bottom: solid 1px #bf615f;
	border-image: linear-gradient(to right, #800100, #800100, #bf615f, #bf615f, #800100, #800100);
	border-image-slice: 20%;
	height: 8vh;
	margin: 0;
	padding: 0;
	top: 0;
}
.header #logo {
	grid-column: 1;
	background-image: url(/img/afq.png);
	background-position: left;
	background-repeat: no-repeat;
	background-size: contain;
	background-origin: content-box;
	position: absolute;
	top: 1vw;
	left: 3vw;
	width: 7vw;
	height: 7vw;
}
}

.header #displayButtons {
	grid-column: 2;
	display:flex;
	justify-content: flex-end;
	padding-right: 2vh;
}

.header #displayButtons .displayButton {
	width: 4vh;
	background-position: center;
	background-size: 75%;
	background-repeat: no-repeat;
	opacity: .5;
}
.header #displayButtons .displayButton:hover {
	background-size: 80%;
	opacity: 1;
}

.header #menu {
	background-image:url(/..theTree/img/menuW2.png);
}

.header #email {
	background-image:url(/..theTree/img/email.png);
}

.header #goUp {
	transform: rotate(-90deg);
	background-image:url(/..theTree/img/arrow.png);
}



@media screen and (max-width:480px) {
	.header {
		grid-template-columns: 40vw 60vw;
	}
	.header #logo {
		padding: .5vh;

}

.header .infobar {
	position:absolute;
	bottom:0;right:7em;top:0.5em;
	z-index:98;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	margin:0;
}

