/* styles copied from angular webapp */
.header {
	align-items: center;
	background-color: black;
	box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%),
		0 1px 10px 0 rgb(0 0 0 / 12%);
	display: flex;
	flex-direction: row;
	height: 95px;
	min-height: 95px;	
}
@media print {
	.header {
		display: none;
	}
}

.header md-icon {
	color: white;
	flex: none;
	margin: 5px;
}

/* hide the menu on >500 px */
@media (min-width: 500px) {
	.header .menu {
		opacity: 0;
	}
}

.header .logo {
	flex: none;
	margin-left: 40px;
	margin-right: 8px;
	width: 154px;
}
.header .logo img {
	max-width: 100%;
}
.header .spacer {
	flex: 1;
}
.header .userstate {
	align-items: center;
	color: white;
	display: flex;
	margin: 5px;
}
.header .companyName {
	font-size: 20px;
	font-style: italic;
	line-height: 20px;
	padding: 20px;
}
md-menu-content .userButton {
	font-size: smaller;
}

@media (max-width: 767px) {
	.header .companyName {
		font-size: 16px;
	}
}

/*mobile adjustments*/
@media (max-width: 499px) {
	.header .logo {
		margin-left: 20px;
		width: 100px;
	}

	.header .userstate {
		margin-left: 0;
	}

	.header .userstate md-menu {
		min-width: 30px;
		padding: 0;
		width: 30px;
	}

	.header .userstate .md-button {
		margin-left: 0;
		margin-right: 5px;
		min-width: 30px;
		padding: 0;
		width: 30px;
	}

	.header .userstate .md-button .material-icons {
		margin: 0;
	}

	.header .companyName {
		font-size: 14px;
		padding: 0 10px;
	}
}

/*small mobile adjustments*/
@media (max-width: 374px) {
	.header .logo {
		margin-left: 10px;
		width: 80px;
	}

	.header .companyName {
		font-size: 14px;
		padding: 0 6px;
	}

	.header .material-icons {
		font-size: 22px;
		height: 22px;
		min-height: 22px;
		min-width: 22px;
		width: 22px;
	}
}