/*Navigation Bar............................*/
.navbar {
	min-height: 60px;
	box-shadow: 0 2px 5px black;
	padding: 0;
	position: sticky;
  	top: 0;
  	width: 100%;
  	background-color: black;
  	color:white;
  	opacity: .9;
  	z-index: 10;
  	transition: top 0.3s;
}

.navbar-nav {
	width: 100%;
	margin: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand {
	padding-right: 20px;
}

/*Make the dropdown work on hover instead of click*/
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: .9;
}

.dropdown-menu {
	overflow-y:scroll;
}

.btn-primary {
	border: none !important;
	padding: 0px !important;
}

.btn-primary:hover {
	color: blue !important;
}

.dropdown-item:hover {
	color: orange !important;
	background-color: rgba(0,0,0,.8) !important;
	border: none !important;
}

.btn-primary:focus,.btn-primary:active {
   outline: none !important;
   box-shadow: none !important;
}

.dropdown-header {
	color: white !important;
	text-decoration: underline !important;
}