.top-header {
	max-width: 1440px;
	margin: 0 auto;
	height: 56px;
	background: #061c2e;
	vertical-align: middle;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-header nav {
	width: 100%;
	position: relative;
	padding-right: 111px;
	height: 56px;
}

.header-sides {
	background: #061c2e;
	display: none;
}

.site-header-container {
	background: #f6f6f6;
	display: none;
}

.mobile-only1 {
	display: none !important;
}

.pointer {
	cursor: pointer;
}

.top-header ul {
	padding: 0;
	margin: 0;
}

.uldesktop a {
	color: #aaa;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 20px;
	text-align: left;
}

.uldesktop a:hover {
	color: white;
}

.uldesktop li {
	list-style: none;
	text-decoration: none;
}

.dropdown li {
	text-align: left;
}

.submenu1 > a {
	font-weight: 800;
}

.channelmenu {
	float: left;
	margin-left: 30px;
}

.dropdown:nth-child(1) .submenu1 a {
	font-weight: 275;
}

.dropdown:nth-child(1) .submenu1 {
	width: 260px;
}

.dropdown:nth-child(1):hover .channelmenu:nth-child(3n+1) {
	margin-left: 168px;
}

.dropdown:nth-child(1):hover .channelmenu:nth-child(3n) {
	margin-right: 20px;
}

.dropdown-menu:nth-child(2) li {
	width: 240px;
}

.dropdown:nth-child(2) .channelmenu:nth-child(1) {
	margin-left: 168px;
}

.dropdown:nth-child(3) li {
	width: 220px;
}

.submenu2 > a {
	font-weight: 275;
}

.desktop-only-header {
	display: block;
}

/*** flexbox test***/
.desktop-only1 {
	display: flex;
}

.uldesktop {
	flex: 2;
	display: flex;
}

.flags.desktop-only1 {
	/*flex: 0.7;*/
	margin-right: 20px;
	transition: all;
	transition-delay: 200ms;
}

.navbar-form:hover ~ .flags {
	visibility: hidden;
	transition-delay: 300ms;

}

.uldesktop .dropdown {
	flex: auto;
	display: flex;
	padding: 0;
}

.uldesktop .dropdown > a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	width: 100%;
	padding: 3px 0 0;
}

[data-role="menuitem"] {
	flex: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #fff;

	--external-link-icon-size: 8px;
}

[data-role="mobile-menu"] [data-role="mobile-menuitem"] {
	flex: auto;
	display: flex;
	flex-wrap: wrap;
	flex-basis: calc(50% - var(--submenu-items-gap) / 2);
}

[data-role="menuitem"][data-relative-submenu-width="true"] {
	position: relative;
	margin-right: 4.5px;
}

[data-role="menuitem"] > a,
[data-role="menuitem"] > .no-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	flex: auto;

	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

[data-role="menuitem"] a[target="_blank"] > label {
	position: relative;
}

[data-role="menuitem"] a[target="_blank"] > label.text-wrapper:after,
[data-role="menuitem"] a[target="_blank"] > label .text-wrapper:after {
	content: '';
	background-image: url(/www/images/external_link.svg);
	position: absolute;
	width: var(--external-link-icon-size);
	height: var(--external-link-icon-size);
	right: calc(-1 * var(--external-link-icon-size));
	top: calc(-1 * var(--external-link-icon-size) + 2px);
	opacity: 0.9;
}

[data-role="menuitem"] > a:hover {
	color: #fff;
}

[data-role="menuitem"] > a:hover,
[data-role="menuitem"] > a:hover label,
[data-role="submenuitem"] > a:hover,
[data-role="submenuitem"] > a:hover label {
	cursor: pointer;
}

[data-role="menuitem"][data-has-submenu="true"] > a,
[data-role="menuitem"][data-has-submenu="true"] > .no-link {
	justify-content: flex-end;
}

[data-role="menuitem"] details {
	flex: auto;
	height: 100%;
}

[data-role="menuitem"] summary {
	display: flex;
	align-items: center;
	height: 100%;
}

[data-role="menuitem"] summary::marker,
[data-role="menuitem"] summary::-webkit-details-marker {
	display: none;
}

[data-role="menuitem"] summary:hover {
	cursor: pointer;
}

[data-role="menuitem"] .menu-arrow,
[data-role="mobile-menuitem"] .menu-arrow {
	--menu-arrow-side-w-half: 4px;
	/* if --menu-arrow-side-w-half >= 6: */
	/* --menu-arrow-h-mod: .866;*/
	/* endif */
	/* if --menu-arrow-side-w-half < 6: */
	--menu-arrow-h-mod: .874;
	/* endif */
	--menu-arrow-h: calc(var(--menu-arrow-side-w-half) * 2 * var(--menu-arrow-h-mod));
	width: 0;
	height: 0;
	border-style: solid;
	border-width: var(--menu-arrow-h) var(--menu-arrow-side-w-half) 0 var(--menu-arrow-side-w-half);
	border-color: #fff transparent transparent;
	transition: transform .3s, border-color .3s ease;
	transform-origin: center calc(var(--menu-arrow-h) / 3);
}

[data-role="mobile-menuitem"] .menu-arrow {
	border-color: #000 transparent transparent;
}

[data-role="menuitem"]:hover .menu-arrow,
[data-role="menuitem"] details[open] .menu-arrow,
[data-role="mobile-menuitem"] details[open] .menu-arrow {
	transform: rotate(180deg);
}

[data-role="menuitem"] [data-role="submenu"] {
	--submenu-col-count: 1;
	position: absolute;
	z-index: 30;
	top: 56px;
	left: 0;
	width: 100%;
	padding: 50px clamp(5px, calc(5px + (150 - 5) * ((100vw - 980px) / (1440 - 980))), 150px);

	display: flex;
	flex-wrap: wrap;
	--submenu-col-gap: 50px;
	gap: 0 var(--submenu-col-gap);
	justify-content: center;

	background-color: #1a2e43;
}

[data-role="menuitem"] > [data-role="submenu"] {
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}

[data-role="menuitem"] [data-role="submenu"][data-any-submenuitem-has-kids="true"] {
	flex-wrap: nowrap;
	padding: 50px 2%;
	gap: 2%;
}

[data-role="menuitem"][data-relative-submenu-width="true"] [data-role="submenu"] {
	padding: 0;
	flex-direction: column;
}

[data-role="menuitem"] [data-role="submenuitem"] {
	flex: 0 1 calc((100% - (var(--submenu-col-count) - 1) * var(--submenu-col-gap)) / var(--submenu-col-count));
	list-style: none;

	border-bottom: 1px solid #15272f;
	border-top: 1px solid #203d4b;

	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
}

[data-role="menuitem"] [data-role="submenuitem"] [data-role="submenu"] {
	position: relative;
	top: 0;
	padding: 0;
}

[data-role="submenu"][data-any-submenuitem-has-kids="true"] [data-role="submenuitem"] {
	flex: 0 1 260px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

[data-role="submenu"] [data-role="submenuitem"].ghost {
	opacity: 0;
	pointer-events: none;
}

[data-role="submenu"][data-any-submenuitem-has-kids="true"] [data-role="submenuitem"].ghost {
	display: none;
}

[data-role="menuitem"] [data-role="submenuitem"]:hover {
	background: #223446;
}

[data-role="menuitem"] [data-role="submenuitem"] a {
	display: block;
	position: relative;
	width: 100%;
	z-index: 31;
	padding: 12px 5px;

	font-size: 20px;
	text-align: left;
	text-transform: uppercase;
	font-weight: 275;
	color: #aaa;
}

[data-role="menuitem"] [data-role="submenuitem"] a[target="_blank"]:not(:hover) label::after {
	filter: brightness(70%);
}

[data-role="menuitem"][data-relative-submenu-width="true"] [data-role="submenuitem"] a {
	text-align: center;
}

[data-role="submenu"][data-any-submenuitem-has-kids="true"] > [data-role="submenuitem"] > a {
	font-weight: 800;
}

[data-role="menuitem"] [data-role="submenuitem"] a:hover {
	color: #fff;
}

[data-role="menuitem"]:not(.navbar-form):hover {
	background-color: #1a2e43;
	border-bottom: 4.5px solid #3cb7ff;
	padding-top: 4.5px;
}

nav:hover [data-role="menuitem"]:not(:hover) > a {
	color: gray;
	transition: color .3s ease;
}

nav:hover [data-role="menuitem"]:not(:hover) > a[target="_blank"] label::after {
	filter: brightness(50%);
	transition: filter .3s ease;
}

nav:hover [data-role="menuitem"]:not(:hover) .menu-arrow {
	border-color: gray transparent transparent;
}

[data-role="menuitem"]:hover details {
	pointer-events: none;
}

[data-role="menuitem"]:hover details + [data-role="submenu"],
[data-role="menuitem"] details[open] + [data-role="submenu"] {
	visibility: visible;
	opacity: 1;
	z-index: 100;
	transition: opacity .3s .3s, z-index 0s .3s;
}

[data-role="menuitem"].navbar-form {
	width: 115px;
	background: #061c2e;
	padding: 13px 10px;
	margin: 0;
	height: 100%;
}

[data-role="menuitem"].navbar-form:hover,
[data-role="menuitem"].navbar-form:focus,
[data-role="menuitem"].navbar-form:focus-within {
	width: 233px;
	box-shadow: -1px 0px 5px #11314a;
	padding-right: 9px;
}

[data-role="menuitem"].navbar-form .menu-header-search-div {
	display: block;
	position: relative;
}

[data-role="menuitem"].navbar-form .global-search {
	padding-right: 28px;
}

[data-role="menuitem"].navbar-form .menu-header-search-div .searchIcon {
	height: 28px;
	width: 28px;

	top: 0;
	right: 0;
	padding: 0;
	margin: 0;

	background-position: center;
	background-size: 50%;

	pointer-events: auto;
}

[data-role="menuitem"].navbar-form .global-search:focus,
[data-role="menuitem"].navbar-form .searchIcon:hover,
[data-role="menuitem"].navbar-form .searchIcon:focus {
	background-size: 60%;
	filter: brightness(1000%);
}

[data-role="menuitem"].navbar-form .global-search:-webkit-autofill,
[data-role="menuitem"].navbar-form .global-search:-webkit-autofill:hover,
[data-role="menuitem"].navbar-form .global-search:-webkit-autofill:focus {
	filter: unset;
	-webkit-text-fill-color: #fff;
	-webkit-box-shadow: 0 0 0px 1000px #485765 inset;
}

[data-role="menuitem"].navbar-form .searchIcon:hover,
[data-role="menuitem"].navbar-form .searchIcon:focus {
	cursor: pointer;
}

/*******************/

[data-role="mobile-menu-bar"] {
	display: none;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

[data-role="mobile-menu-bar"] [data-role="submenu-toggle"] {
	position: relative;
	height: 57px;
	width: 57px;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
}

[data-role="mobile-menu-bar"] [data-role="submenu-toggle"] .burger-v2 {
	position: relative;
	display: block;
	width: 16px;
	height: 2px;
	background: #222;
	transition: all 0.2s ease-in-out;
}

[data-role="mobile-menu-bar"] [data-role="submenu-toggle"] .burger-v2:before,
[data-role="mobile-menu-bar"] [data-role="submenu-toggle"] .burger-v2:after {
	position: absolute;
	background: #222;
	content: "";
	width: 16px;
	height: 2px;
	transition: all 0.2s ease-in-out;
}

[data-role="mobile-menu-bar"] [data-role="submenu-toggle"] .burger-v2:before {
	top: -6px;
}

[data-role="mobile-menu-bar"] [data-role="submenu-toggle"] .burger-v2:after {
	top: 6px;
}

[data-role="mobile-menu-bar"] .toggle-submenu details {
	width: 100%;
}

[data-role="mobile-menu-bar"] .toggle-submenu [data-role="submenu-toggle"] {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}

[data-role="mobile-menu-bar"] > details,
[data-role="mobile-menu-bar"] > .site-menu-category-logo-container,
[data-role="mobile-menu-bar"] > .err-logo {
	z-index: 2;
	order: 1;
}

[data-role="mobile-menu-bar"] details[open] [data-role="submenu-toggle"] .burger-v2 {
	background: transparent;
}

[data-role="mobile-menu-bar"] details[open] [data-role="submenu-toggle"] .burger-v2:before {
	transform: rotate(45deg) translate(3px, 6px);
	width: 19px;
}

[data-role="mobile-menu-bar"] details[open] [data-role="submenu-toggle"] .burger-v2:after {
	transform: rotate(-45deg) translate(3px, -5px);
	width: 19px;
}

[data-role="mobile-menu-bar"] .menu-bar-shadow {
	position: absolute;
	height: 57px;
	width: 100%;
	z-index: 1;
	box-shadow: 0px 1px 5px #888;
}

[data-role="mobile-menu-bar"] [data-role="mobile-menu"] {
	flex-basis: 100%;
	max-height: 0;
	transition: max-height .5s, visibility .2s .3s;
	display: flex;
	flex-direction: column;
	order: 2;
	overflow: hidden;
	visibility: hidden;
}

[data-role="mobile-menu-bar"] [data-role="mobile-menu"] .site-menu-mobile-list {
	display: flex;
}

[data-role="mobile-menu-bar"]:focus details[open] ~ [data-role="mobile-menu"],
[data-role="mobile-menu-bar"]:focus-within details[open] ~ [data-role="mobile-menu"],
body:not(:focus-within) [data-role="mobile-menu-bar"] details[open] ~ [data-role="mobile-menu"] {
	max-height: calc(100vh - 57px);
	overflow: auto;
	visibility: visible;
	transition: max-height .5s, visibility .2s 0s;
}

[data-role="mobile-menu-bar"] .toggle-submenu [data-role="submenu"] {
	max-height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: max-height .5s, visibility .2s .3s;
}

[data-role="mobile-menu-bar"] .toggle-submenu details[open] ~ [data-role="submenu"] {
	max-height: calc(var(--submenu-item-height) * var(--submenu-items-count));
	overflow: auto;
	visibility: visible;
	transition: max-height .5s, visibility .2s 0s;
}

/*******************/



@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.dropdown:hover {
		position: static;
		left: 0;
		background-color: #171819;
		border-bottom: 4.5px solid red;
		border-top: 4.5px solid #171819;
		flex: auto;
		display: flex;
		padding: 0;
	}
}

.dropdown:hover {
	position: static;
	left: 0;
	background-color: rgb(26, 46, 67);
	border-bottom: 4.5px solid #3CB7FF;
	border-top: 4.5px solid rgb(26, 46, 67);
	flex: auto;
	display: flex;
	padding: 0;
}

.uldesktop ul {
	display: none;
}

.dropdown:hover ul ul {
	display: block;
}

.dropdown {
	text-align: center;
	font-weight: 600;
}

.dropdown-menu.menuhover {
	display: block !important;
	padding-top: 50px !important;
	position: absolute !important;
	width: 100% !important;
	left: 0 !important;
	right: 0 !important;
	background-color: rgb(26, 46, 67) !important;
	top: 100% !important;
	padding-bottom: 50px !important;
	cursor: default;
	z-index: 30;
}

.dropdown-menu {
	display: none !important;
}

#logOutDropDownMenu {
	padding: 50px 25px 55px 25px;
	display: none;
	position: absolute;
	width: 240px;
	right: 0;
	background-color: #171819;
	top: 100%;
	cursor: default;
	z-index: 13;
}

.log-out-drop-down-menu-element a {
	font-weight: 275;
	height: 22px;
	border-bottom: 1px solid rgb(21, 39, 47);
	border-top: 1px solid rgb(32, 61, 75);
	text-transform: uppercase;
	display: inherit;
	padding: 12px 0px;
	text-align: right;
}

.log-out-drop-down-menu-element:hover {
	background: #191c1f;
	padding-right: 5px;
}

.log-out-drop-down-menu-element:hover a {
	color: white;
}

.dropdown > a {
	font-weight: 600;
	color: white;
}

.changeGray {
	color: gray !important;
	transition: color 0.1s ease;
}

.dropdown-menu li {
	border-bottom: 1px solid rgb(21, 39, 47);
	border-top: 1px solid rgb(32, 61, 75);
	text-transform: uppercase;
}

.dropdown-menu a {
	display: inherit;
	padding: 12px 0px;
	//-webkit-transition: padding-left 0.5s; 
	//transition: padding-left 0.5s;
}

.dropdown-menu li:hover {
	background: #223446;
}

.dropdown-menu li:hover a {
	padding-left: 5px;
}

.dropdown-menu a {
	text-align: left;
}

.dropdown li:hover a {
	color: white;
}

.logo,
.err-logo {
	background-image: url(/admin/images/ee_logo.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 75px;
	height: inherit;
	width: 115px;
	box-sizing: content-box;
	margin: 0;
	display: block;
}

.selected-flag {
	width: 100px;
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	justify-content: center !important;
	color: #fff;
	font-family: var(--default-font);
}

.selected-flag span {
	color: white;
	font-size: 10px;
	margin-left: 8px;
}

.dropdown-flags {
	position: absolute;
	top: 56px;
	background: #061c2e;
	flex-direction: column;
	width: 100px;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 0;
	visibility: hidden;
	transition: all 0s;
}

.dropdown-flags a {
	height: 42px;
}

.dropdown-flags a:hover {
	height: 42px;
}

.flags.desktop-only1:hover .dropdown-flags {
	display: flex;
	visibility: visible;
	transition-delay: 200ms;
}

.flags {
	float: left !important;
	margin-left: 2%;
	justify-content: center;
	position: relative;
}

.flags a {
	color: #fff;
	font-family: var(--default-font);
	font-weight: 600;
	font-size: 20px;
	font-weight: 500;
	font-size: 18px;
	padding: 0 6%;

	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.flags a:hover {
	position: static;
	background-color: rgb(26, 46, 67);
	border-top: 4.5px solid rgb(26, 46, 67);
	border-bottom: 4.5px solid #3CB7FF;
	color: #fff;
}

.menu-header-search-div {
	display: inline-block;
	border-radius: 32px;
}

input.global-search:hover {
	width: 100%;
	transform-origin: right;
}

.global-search {
	outline: none;
	color: white;
	border-radius: 32px;
	display: inline-block;
	margin-bottom: 0;
	padding: 13px;
	padding-left: 15px;
	box-sizing: border-box;
	height: 20px;
	margin-right: 7px;
	overflow: hidden;
	border-radius: 21px;
	border: solid 1px rgba(0, 0, 0, 0.21);
	background-color: rgba(249, 250, 252, 0.26);
	height: 28px;
	padding: 2px 12px 0 15px;
}

.global-search::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a0a0a0;
  opacity: 1; /* Firefox */
}

.global-search:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #a0a0a0;
}

.global-search::-ms-input-placeholder { /* Microsoft Edge */
  color: #a0a0a0;
}

.menu-header-login-link{
	list-style-type: circle;
	text-decoration: none;
	padding-top: 0px;
	padding: 0px 15px;
	margin: 13px 0;
	height: 30px;
	margin-left: 10px;
	float: right;
	color: #FFF;	
	font-weight: 275;
	font-size: 20px;
}

.menu-header-login-link-mobile {
	display: none;
}

.logged-in-user-span{
	margin-bottom: 3px;
	margin-right: 5px;
	content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABGdBTUEAALGPC/xhBQAAAFBJREFUCB1jbLj6n+39/TtN/xn+xzEAASMD4yJBRZU6FpDgv///y0GCIABUUA4UY2CCqYQIQ0iQGBOyADKbCWQmsgCIDRJjAVkEMhNmJMxyAJ4tIno4Ev7iAAAAAElFTkSuQmCC');
}

.pull-right {
	float: right;
}

.inputDiv {
	overflow: hidden;
	height: 30px;
}

.navbar-form {
	height: 30px;
	margin: 13px 10px 13px auto;
	position: absolute;
	right: 0px;
	width: 75px;
	transition: all;
	transition-duration: 300ms;
	transform-origin: right;
	transition-delay: 150ms;
}

.navbar-form:hover {
	width: 200px;
}

.searchIcon {
	background: url(/www/images/search_Luup.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 14px;
	/*float: left;*/
	float: right;
	right: 20px;
	display: inline;
	margin-top: 8px;
	margin-left: -25px;
	position: absolute;
	border: none;
	cursor: pointer;
}

.skip-link {
	position: absolute;
	display: inline-block;
	left: 0;
	padding: 8px 10px;

	background: #fff;
	overflow: hidden;
	border: 1px solid #ccc;
	opacity: 0;
	z-index: -1;

	white-space: nowrap;
	text-align: center;
	color: #333;
	font-size: 15px;
	line-height: 2em;
	font-weight: bold;
}

.top-header .skip-link {
	top: 60px;
}

.real-fp-container > .skip-link {
	top: 20px;
}

.skip-link:focus {
	opacity: 1;
	z-index: 100;
}

.menu-bar {
	display: block;
	line-height: 53px;
	font-size: 20px;
	color: #043359;
	font-weight: 600;
	height: 100%;
}

.top-header .mobilehead {
	position: relative;
	width: 115px;
	height: inherit;
}

.flex-grow {
	flex-grow: 2;
}

@media (max-width: 1439px) and (min-width: 980px) {

	.dropdown-menu:nth-child(2) li {
		width: 240px;
	}

	.dropdown:nth-child(2) .channelmenu:nth-child(1) {
		margin-left: 168px;
	}

	.dropdown:nth-child(3) li {
		width: 190px;
	}

	.dropdown:nth-child(2) .channelmenu:nth-child(1) {
		margin-left: 30px;
	}

	.dropdown:nth-child(1):hover .channelmenu:nth-child(3n+1) {
		margin-left: 30px;
		clear: left;
	}

}

@media (max-width: 1279px) and (min-width: 980px) {

	.dropdown:nth-child(3) li {
		width: 170px;
	}

	.dropdown:nth-child(3) .dropdown-menu a {
		font-size: 16px !important;
	}

	.dropdown:nth-child(3) .dropdown-menu li {
		border-top: 1px solid #272727;
		border-bottom: 1px solid #080808;
		padding: 0px 0px;
		text-transform: uppercase;
	}

	.dropdown:nth-child(3) .channelmenu {
		margin-left: 20px;
	}

	.dropdown:nth-child(1):hover .channelmenu:nth-child(3n) {
		margin-right: 10px;
	}
}

@media (max-width: 979px) {
	header {
		font-family: var(--default-font);
		vertical-align: middle;
		margin: 0 auto;
		margin-top: 0px;
	}

	[data-role="mobile-menu-bar"] {
		display: flex;
	}

	.top-header {
		height: auto;
		background: #061c2e;
		vertical-align: middle;
		position: inherit;
		padding-top:10px;
	}

	.logo img {
		margin-top: 10px;
		margin-left: 23px;
		margin-right: 20px;
		margin-bottom: 15px;
	}

	.navbar-form {
		width: auto;
	}

	header .hidden-tablet,
	.hidden-phone {
		display: none;
	}

	.mobile-only1 {
		display: block !important;
	}

	.desktop-only1,
	.desktop-only-header {
		display: none !important;
	}

	.ulmobile {
		margin-top: 0px;
		display: none;
		padding-left: 0px;
		padding-right: 0px;
	}

	.menuopened {
		display: block;
	}

	.openmenu a {
		display: inherit;
	}

	.ulmobile a {
		text-decoration: none;
	}

	.ulmobile li {
		list-style: none;
		text-decoration: none;
	}

	.mchannel > a:last-child {
		padding-left: 31px;
	}

	.mchannel {
		float: none;
		padding: 15px 10px 15px 10px;
		text-align: left;
		pointer-events: all;
	}

	.mchannel > a {
		color: white;
		font-size: 20px;
		font-weight: 500;
		pointer-events: none;
	}

	.mchannelchild {
		float: none;
		text-align: left;
	}

	.mchannelchild a {
		font-size: 18px;
		font-weight: 400;
		color: #aaa;
	}

	.mchannel:nth-child(odd) {
		background: #0c2534;
	}

	.mchannel:nth-child(even) {
		background: #182f3c;
	}

	.mchannelchild {
		display: none;
	}

	.togglem {
		padding-bottom: 0px;
	}

	.togglem1 {
		margin-top: 10px;
	}

	.togglem2 {
		display: block;
		margin-right: 15px;
		border-top: none;
	}

	.mchannel > ul {
		padding-left: 20px;
	}

	.mchannelchild > a {
		padding: 10px;
	}

	.mchannelchild ul li > a {
		padding: 10px;
	}

	.mchannelchild ul > li {
		border-bottom: 1px solid #c2c2c2;
	}

	.caret1 {
		float: left;
		width: 0;
		height: 0;
		margin: 5px 15px 0px 10px;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
		border-left: 6px solid white;
	}

	.open {
		float: left;
		margin: 8px 13px 0px 6px;
		width: 0;
		height: 0;
		border-top: 6px solid white;
		border-right: 6px solid transparent;
		border-left: 6px solid transparent;
	}

	.burger {
		float: right;
		padding: 8px;
		margin-left: 5px;
		margin-right: 5px;
		border: none;
		margin-top: 0px;
		color: #555;
		cursor: pointer;
		padding-right: 15px;
	}

	.icon-bar {
		display: block;
		width: 18px !important;
		height: 2px;
		margin: 2px;
		background-color: #999;
		background-position: 14px 14px;
		background-repeat: no-repeat;
	}

	.logo,
	.err-logo {
		background-image: url(/www/images/tv/err_logo_dark.svg);
		background-repeat: no-repeat;
		background-position: 10px center;
		background-size: 40px 12px;
		height: inherit;
		width: 70px;
		box-sizing: border-box;
		flex-shrink: 0;
		margin: 0;
		position: relative;
	}

	.logo.external-link:after {
		content: '';
		background-image: url(/www/images/external_link_dark.svg);
		position: absolute;
		width: 10px;
		height: 10px;
		right: 10px;
		top: 15px;
		opacity: 0.5;
	}

	.menu-header-login-link-mobile {
		display: block;
		list-style-type: circle;
		text-decoration: none;
		float: right;
		color: #FFF;	
		font-weight: 275;
		font-size: 20px;
	}
	
	.menu-header-login-link {
		display: none;
	}

	.searchbutton {
		background-color: #333;
		color: #eee;
		border: 1px solid #a1a1a1;
		margin-right: 4px;
		padding: 4px 12px;
		width: 40px;
		height: 30px;
		float: left;
	}

	.searchbutton:hover {
		cursor: pointer;
	}

	.pull-right {
		float: left;
	}

	.navbar-form {
		display: none;
		padding-top: 0px;
		float: left;
		padding: 4px 20px;
		margin: 14px 0;
		border-top: 1px solid #2D2D2D;
		border-bottom: 1px solid #2D2D2D;
		border-top-color: #1D1D1D;
		border-bottom-color: #1D1D1D;
		height: 40px;
	}

	.searchIcon {
		background-size: 19px;
		background-position: center;
		width: 40px;
		height: 100%;
		display: block;
		top: 0;
		margin: unset;
	}

	.mobilehead {
		height: 38px;
	}

	#logOutDropDownMenu {
		top: 0;
		margin-top: 50px;
	}

	.menu-bar {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		height: 57px;
	}

	.menu-header-search-div {
		width: 100%;
		margin: 35px 0 20px;
		position: relative;
	}
}