/* Global header adjustments */
#header {
	position: sticky;
	top: 0px;
	background-color: white;
	min-height: 80px;
	z-index: 10;
}



/* Adding padding to edges of header */
.topnav {
	padding: 0px 100px 0px 100px;
	min-height: 80px;
}

/* Northwest State Logo */
.navbar-logo {
	float: left;
	height: 80px;
	display: flex;
	align-items: center;
  padding: 0px 17px 0px 17px;
}

/* Add a black background color to the top navigation */
.navigation {
  overflow: hidden;
	min-height: 80px;
}

/* Style the links inside the navigation bar */
.navigation a {
	float: right;
  display: block;
  color: black;
  text-align: center;
  padding: 0px  10px 0px 10px;
  text-decoration: none;
  min-height: 80px;
  line-height: 80px;
    font-size: 0.9rem;
}

/* Change the color of links on hover */
.navigation a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.navigation a.active {
  background-color: #4CAF50;
  color: white;
}

/* Hide the link that should open and close the navigation on small screens */
.navigation .icon {
  display: none;
	font-size: 30px;
}

/* Header Icons */
.header-icon {
	font-size: 1.4rem;
}

/* Announcement Bar START */
.announcement-bar {
	clear: both;
	background-color: #1D3532;
	color: #e3e3e3;
	text-align: center;
    overflow: hidden
}

.announcement-bar a {
	color: #ffffff;
	font-weight: bold;
}

.announcement-bar p {
    margin: 0;
    padding: 5px 0px;
}

.announcement-bar a:hover {
	color: #F9D72D;
    transition: 0.2s;
}
/* Announcement Bar END */

/* When the screen is less than 600 pixels wide, hide all links. Show the link that contains should open and close the topnav (.icon) Make logo center and topnav to edges of screen. */
@media screen and (max-width: 1250px) {
  .navigation a {display: none;}

  .navigation a.icon {
    float: right;
    display: block;
  }
	.navbar-logo {
	float: none;
	justify-content: center;
	}

	.topnav {
	padding: 0px 0px 0px 0px;
	}

	#header {
		position: static;
	}

}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the navigation look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 1250px) {
  .navigation.responsive {position: relative;}

  .navigation.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navigation.responsive a {
    float: none;
    display: block;
    text-align: left;
    padding-left: 20px;
  }

  .nav-links {
      position: relative;
  }


}
