header {
	position: sticky !important;
}
header a:hover {
	color: red;
	text-decoration: none;
}
header ul.navbar-nav {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header img{
	height: clamp(2rem, 4vw, 2.75rem);
}
header a {
  float: center;
  padding: 0px;
  color: black;
  display: block;
  text-align: center;
}
.nav-link {
	height: 100%;
	white-space: nowrap;
  background-color: rgb(255, 255, 255);
  color: black;
}
.nav-link:hover, .nav-link:active {
  background-color: rgb(255,0,0);
  color: white;
  border-radius: 4px;
  border-color: black;
}
/*.nav-item a.nav-link:active {
	background-color: rgb(255, 0, 0);
}*/
@media (max-width: 1230.98px) {
    #header1 {
		display: none;
	}
}
@media (min-width: 1231px) {
    #header2 {
		display: none;
	}
}

/*Sidebar*/
.customSidebar {
	z-index: 2;
	height: 100vh;
	margin-left: calc(-1 * clamp(7rem, 13vw, 10rem));
	vertical-align: top;
	display: inline-block;
	width: clamp(7rem, 13vw, 10rem);
	padding-top: 40px;
	padding-left: 0px;
	transition: all 0.5s;
	border-right: 4px solid white;
	background-color: white;
}

	.customSidebar.active {
		margin-left: 0px;
		border-right: 4px solid red;
	}

.sidebarCollapse {
	height: 100%;
	width: 100%;
	background-color: rgba(255,0,0,.85);
	border-color: black;
}

	.sidebarCollapse:focus {
		box-shadow: none;
	}

	.sidebarCollapse > span > div.a {
		width: 13px;
		height: 2px;
		background-color: white;
		margin: 0;
	}

	.sidebarCollapse > span > div.b {
		width: 13px;
		height: 3px;
		background-color: red;
		margin: 0;
	}
.customSidebar a {
	text-align: left;
}
.customSidebar a {
	text-align: left;
	color: black;
	background-color: rgb(255,255,255);
}
.customSidebar a:hover {
	color: white;
	background-color: rgb(255,0,0);
}

/*If less max width, flip what active means.  This can prolly be done better with JS*/
/*
@media (max-width: 1199.98px) {
	.customSidebar {
		margin-left: 0px;
		border-right: 4px solid red;
	}

		.customSidebar.active {
			margin-left: -160px;
			border-right: 4px solid white;
		}

	#content {
		margin-left: 0px;
	}

		#content.active {
			margin-left: 0px;
		}
}
*/