/* CSS Document */
/* 
Navy #041E42
Gold #FFC72C 
*/
/* CUSTOM navbar */
.navbar-custom {
    background-color: #041E42; 
}

/* CUSTOM link colors */
.navbar-custom .navbar-nav .nav-link {
	color:#FFC72C;
}

/* CUSTOM Non Sticky Brand Bar above the navbar menu */
div.navbar-brand-bar {
	background-color: #FFC72C; 
	padding: 11px;
}

a.navbar-link-brand-bar {
	color: #041E42;
	font-weight: bold;
	text-decoration: none;
	text-align: right;
}


/* CARD WITH ETSU COLORS */
.custom-card-header {
  background-color: #FFC72C;
  border-color: #041E42;
  color: #041E42;
}
.custom-card {	
  border-color: #041E42;
}
/* Overrides for ALL Bootstrap Cards */
.card {	
  margin-top:10px;
}
/* Wrapper for page content to push down bootstrap footer */
#wrap { /* this is a div the wraps the entire container that is above the footer */
	min-height: 94%;
	height: auto !important;
	height: 94%;
	/* Negative indent footer by it's height */
	margin: 0 auto -60px;
}
/* Set the fixed height of the footer here */
#push, /* this is a div at the bottom of the #wrap div */
/* Bootstrap footer OVERRIDES */
.footer {
	height: 60px;
}
.footer {
	background-color: #041E42;
	color: #fff;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
	.footer {
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 20px;
		padding-right: 20px; 
	}
}
/* Button OVERRIDES */
/* CUSTOM BUTTON CODE */
.btn {
	background-color: #FFC72C;
	border-color: #041E42;
	color:#041E42;
}
.btn:hover, .btn:focus, .btn:active, .btn.active {
	background-color: #A2AAAD;
	border-color: #FFC72C;
	color:#041E42;
}
.btn.disabled:hover, .btn.disabled:focus, .btn.disabled:active, .btn.disabled.active, .btn[disabled]:hover, .btn[disabled]:focus, .btn[disabled]:active, .btn[disabled].active, fieldset[disabled] .btn:hover, fieldset[disabled] .btn:focus, fieldset[disabled] .btn:active, fieldset[disabled] .btn.active {
	background-color: #FFC72C;
	border-color: #041E42;
}
/* CUSTOM INPUT FIELDS */
.form-control {
  background-color:#FFFFFF;
  background-image:none;
  border: 1px solid #041E42;
  border-radius:4px;
  box-shadow:rgba(0, 0, 0, 0.0745098) 0 1px 1px inset;
  color:#555555;
  display:block;
  font-size:14px;
  line-height:1.42857;
  padding:6px 12px;
  transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width:100%;
}