/* ===============================
   HUVUDINSTÄLLNINGAR FÖR HEADER
   =============================== */
.custom-header {
	background-color:#d2d2d2;
	color: #d2d2d2;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 99;
	box-shadow: rgb(195 195 195) 0px 6px 6px -6px;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	height: auto;
}

/* ===============================
   NAVBAR & MENY
   =============================== */
header {
	position: absolute;
}

.navbar {
	float: right;
	border: none;
	margin: 12px 0;
	min-height: 60px;
}

.navbar-collapse {
	clear: both;
}

.navbar-nav {
	margin: 0;
	padding: 0;
}

.custom-header .navbar-nav > li {
	min-height: 60px;
	line-height: 60px;
}

.custom-header .navbar-nav > li > a {
	display: block;
	padding: 14px 22px;
	height: 100%;
	transition: all 0.3s ease;
	font-size: 18px;
}


/* ===============================
   TOGGLE-KNAPP (MOBIL)
   =============================== */
.navbar-toggle {
	background-color: inherit;
	margin: 12px 0;
	border: none;
}

.navbar-toggle .icon-bar {
	background-color: #656565;
}

/* ===============================
   LOGO
   =============================== */
.custom-logo-wrapper {
    max-width: 200px;
    padding-top: 14px;
    position: fixed;
    left: 5%;
}

/* ===============================
   MENYKNAPPAR
   =============================== */
.custom-meny-url {
	text-decoration: none;
	color: #000;
	font-size: 1.3em;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	padding: 14px 22px;
	transition: 0.3s;
}

.custom-meny-url:hover {
	color: #3a8ed9;
	background-color: transparent !important;
}

.custom-meny-btn {
	background-color: inherit;
	border: none;
	margin: 0 6px;
}

.custom-meny-btn a:focus {
	border: none !important;
	background-color: inherit !important;
	outline: none;
	color: #2a2a2a;
	text-decoration: none;
}

/* ===============================
   DROPDOWN MENY
   =============================== */
.dropdown-menu {
	background-color: #f7f7f7;
	font-size: 16px;
	margin-top: 0;
	border-radius: .55em;
	border: none;
}

.custom-meny-dropdown-btn {
	text-decoration: none;
	display: block;
	padding: 12px 16px;
	color: #000;
	font-weight: 500;
	font-size: 1em;
	text-align: left;
}

.custom-meny-dropdown-btn:hover {
	text-decoration: none;
	background-color: #efefef;
}

/* ===============================
   MOBILSTILAR
   =============================== */
@media (max-width: 767px) {
	.navbar {
		float: none;
		width: 100%;
	}
	
	.navbar-collapse {
		margin-left: -15px;
		margin-right: -15px;
	}

	.custom-header {
		transition: all 0.3s ease;
	}

	.custom-header.scrolled {
		background-color: white !important;
	}

	.custom-meny-btn {
		background-color: inherit;
	}

	.navbar-nav > li > a {
		text-align: center;
		background-color: #f7f7f7e8;
		line-height: 60px;
		padding: 16px 0;
	}

	.custom-meny-url {
		background-color: #f1f1f1;
		font-weight: 600;
		font-size: 1.25em;
	}

	.custom-logo-wrapper {
		max-width: 160px;
		margin-top: -5px;
	}

	.navbar-toggle .icon-bar {
		background-color: #5b7cab;
	}

	.navbar-nav .open .dropdown-menu {
		background-color: #d9d9d9;
	}

	.custom-meny-dropdown-btn {
		text-align: center;
		padding: 14px 0;
	}

	.nav .open > a,
	.nav .open > a:hover,
	.nav .open > a:focus {
		background-color: #efefef !important;
		border-color: #efefef;
		color: black;
	}

	.navbar-nav > li > .dropdown-menu {
		border-radius: 0;
	}
}