@charset "utf-8";

#headerContainer {
	position: sticky;
	top: 0;
	z-index: 10;
	height: 130px;
	background-color: white;
	border-bottom: solid 2px lightgray;
}

header {
	width: 1600px;
	margin: 0 auto;
}

header a {
	color: black;
}

header #line1 {
	padding-top: 10px;
	font-size: 1.3rem;
}

header #line1 #leftGroup {
	float: left;
	display: flex;
	height: 70px;
	align-items: center;
}

header #line1 #rightGroup {
	float: right;
	display: flex;
	height: 70px;
	align-items: center;
}

header #line1 #middleGroup {
	width: 218px;
	margin: 0 auto;
}

header #line1 #rightGroup #rightItems {
	display: flex;
	align-items: center;
}

header #line1 #rightGroup #rightItems div {
	margin-right: 20px;
}

header #line1 #rightGroup #rightItems div:last-child {
	margin-left: -15px;
}

header #line1 #nbr {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	margin-left: 5px;
	background-color: #E8943D;
	border-radius: 50%;
	font-size: 1.2rem;
	color: white;
}

header>menu {
	clear: both;
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: center;
	margin-top: 15px;
	font-size: 1.3rem;
}

header>menu li {
	display: inline-block;
	margin: 0 15px;
}

header>menu li a {
	cursor: default;
	padding-bottom: 15px;
}

header>menu li a[href] {
	cursor: pointer;
}

header>menu li.admin a {
	color: red;
}

header>menu li.all,
header>menu li.admin {
	font-weight: 600;
}

header .submenu {
	position: absolute;
	top: 130px;
	width: 1600px;
	/* display: flex; Toggled by JS */
	display: none;
	padding: 40px;
	background-color: white;
	border: 2px solid lightgray;
	border-top: none;
	box-shadow: 5px 5px 5px gray;
	flex-wrap: wrap;
	align-items: start;
	align-content: start;
	gap: 30px 60px;
}

header .submenu a li {
	width: 250px;
	font-weight: normal;
	font-size: 1.2rem;
	cursor: pointer;
}

header .submenu a li strong {
	font-weight: 600;
	font-size: 1.3rem;
}

header .submenu a:hover li,
header .submenu a:hover li strong {
	color: #E8943D;
}