.footer-root.current {
	justify-content: center;
	margin: 0 15px;
}

.mobileNav a#mobileSearchDrop:focus {
	outline: 0 !important;
}

/* t:345798 cmswo - Mobile and desktop navigation rework */
/* Mobile */
#mobileNavDrop {
	padding: 0;
	background-color: transparent;
	margin: 1px 0 0 0;
	outline: none;
}

.mobileNav {
	display: block;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: -100%;
	background-color: #000;
	transition: left 0.5s ease;
	pointer-events: none;
	z-index: 100;
	overflow: hidden;
}
	/* remove page scroll bar */
	body.open-mobile {
		position: fixed;
		overflow: hidden;
	}

	body.open-mobile .mobileNav {
		pointer-events: all;
		left: 0;
		transition: left 0.5s ease;
	}

	.mobileNav .mobile-header {
		display: block;
		height: 70px;
		position: relative;
		background-color: #000;
	}
		.mobileNav .mobile-header .mobile-logo {
			width: 100%;
			padding: 10px;
			text-align: center;
		}
			.mobileNav .mobile-header .mobile-logo img {
				width: 150px;
			}

		.mobileNav .mobile-header .mobile-closer {
			position: absolute;
			top: 15px;
			right: 15px;
			cursor: pointer;
		}

		.mobileNav .mobile-navs {
			height: 100vh;
			position: relative;
			width: 100%;
			background-color: #000;
		}

	.mobileNav ul.mobile {
		height: 100vh;
		width: 100%;
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
		list-style: none;
		transition: left 0.4s ease;
	}
		.mobileNav ul.mobile > li {
			display: none;
			z-index: 1;
		}
			.mobileNav ul.mobile > li.current {
				display: block;
				z-index: 2;
			}

	.mobileNav ul.mobile.mainnav > li .section-title {
		font-size: 20px;
		color: #ccc;
		position: absolute;
		top: -5px;
		left: 0;
		text-align: center;
		width: 100%;
	}

	.mobileNav ul.mobile.mainnav > li ul.nav-items {
		height: calc(100vh + 30px);
		width: 100%;
		margin: 30px 0 0;
		padding: 15px;
		position: absolute;
		top: 0;
		left: 0;
		list-style: none;
		transition: left 0.4s ease;
	}
		.mobileNav ul.mobile.mainnav > li ul.nav-items > li {
			border-bottom: 1px solid #cecece;
		}
			.mobileNav ul.mobile.mainnav > li ul.nav-items > li.more-item {
				border-top: 2px solid #cecece;
			}

			.mobileNav ul.mobile.mainnav > li ul.nav-items > li > a {
				border-bottom: 0 !important;
				display: block;
				padding: 20px;
				position: relative;
				font-family: "NYC Sans", Helvetica, Arial, sans-serif;
				font-size: 24px;
				color: #fff;
			}
				.mobileNav ul.mobile.mainnav > li ul.nav-items > li.search-item > a::after,
				.mobileNav ul.mobile.mainnav > li ul.nav-items > li.more-item > a::after,
				.mobileNav ul.mobile.mainnav > li ul.nav-items > li.has-children > a::after {
					display: inline-block;
					width: 14px;
					height: 23px;
					position: absolute;
					top: 27px;
					right: 2px;
					content: '';
					background-image: url('/includes/public/assets/shared/nav-arrow.png');
					background-position: center center;
					background-repeat: no-repeat;
				}

				.mobileNav ul.mobile.mainnav > li ul.nav-items > li.has-children > ul.nav-items > li.has-children > a::after {
					display: inline-block;
					width: 26px;
					height: 26px;
					position: absolute;
					top: 27px;
					right: 2px;
					content: '';
					background-image: url('/includes/public/assets/shared/nav-plus.png');
					background-position: center center;
					background-repeat: no-repeat;
				}
					.mobileNav ul.mobile.mainnav > li ul.nav-items > li.has-children > ul.nav-items > li.has-children.expand > a::after {
						display: inline-block;
						width: 26px;
						height: 26px;
						position: absolute;
						top: 27px;
						right: 2px;
						content: '';
						background-image: url('/includes/public/assets/shared/nav-minus.png');
						background-position: center center;
						background-repeat: no-repeat;
					}


		.mobileNav.slide-out ul.mobile.mainnav > li ul.nav-items {
			left: -100%;
		}

		.mobileNav ul.mobile.mainnav > li > ul.nav-items > li > ul.nav-items {
			padding-top: 0;
			margin-top: 0;
			left: 100%;
			background-color: #000;
			opacity: 0;
			pointer-events: none;
			transition: left 0.4s ease, opacity 1s ease;
		}
			.mobileNav ul.mobile.mainnav > li > ul.nav-items > li.expand > ul.nav-items {
				opacity: 1;
				height: calc(100% - 130px);
				overflow-y: auto;
				pointer-events: all;
				transition: opacity 0s ease;
			}
				.mobileNav ul.mobile.mainnav > li > ul.nav-items > li.expand > ul.nav-items li:not(.back-button) a {
					color: #ccc;
				}


	.mobileNav ul.mobile.mainnav > li > ul > li.back-button {
		display: none;
	}

	.mobileNav ul.mobile.mainnav > li ul.nav-items .back-button {
		border-bottom: 0;
	}
		.mobileNav ul.mobile.mainnav > li ul.nav-items .back-button > a {
			padding: 10px 10px 10px 55px;
		}

		.mobileNav ul.mobile.mainnav > li ul.nav-items .back-button > a::before {
			display: inline-block;
			width: 26px;
			height: 26px;
			position: absolute;
			top: 17px;
			left: 5px;
			content: '';
			transform: rotate(180deg);
			background-image: url('/includes/public/assets/shared/nav-arrow.png');
			background-position: center center;
			background-repeat: no-repeat;
		}


		.mobileNav ul.mobile.mainnav > li ul.nav-items > li > ul.nav-items > li > ul.nav-items {
			display: none;
			height: auto;
			margin: 0;
			padding: 0 0 30px 30px;
			position: relative;
			left: 0;
		}
			.mobileNav ul.mobile.mainnav > li ul.nav-items > li.expand > ul.nav-items > li.expand > ul.nav-items {
				display: block;
			}
				.mobileNav ul.mobile.mainnav > li ul.nav-items > li.expand > ul.nav-items > li.expand > ul.nav-items > li.back-button {
					display: none;
				}

				.mobileNav ul.mobile.mainnav > li ul.nav-items > li.expand > ul.nav-items > li.expand > ul.nav-items > li {
					border-bottom: 0;
				}
					.mobileNav ul.mobile.mainnav > li ul.nav-items > li.expand > ul.nav-items > li.expand > ul.nav-items > li > a {
						padding: 3px;
						color: #fff;
					}

	

	.mobileNav ul.mobile.secondary {
		width: 100%;
		height: 100vh;
		padding: 15px;
		position: absolute;
		left: 100%;
		overflow-y: auto;
	}
		.mobileNav.show-secondary ul.mobile.secondary {
			left: 0;
		}

		.mobileNav.show-secondary ul.mobile.mainnav {
			position: absolute;
			left: -100%;
		}

		.mobileNav ul.mobile.secondary > li {
			display: block;
			border-bottom: 1px solid #cecece;
		}

		.mobileNav ul.mobile.secondary li.back-button {
			border-bottom: 0;
			display: block;
			padding: 10px 10px 10px 55px;
			position: relative;
			font-family: "NYC Sans", Helvetica, Arial, sans-serif;
			font-size: 24px;
			color: #fff;
		}
			.mobileNav ul.mobile.secondary li.back-button::before {
				display: inline-block;
				width: 26px;
				height: 26px;
				position: absolute;
				top: 17px;
				left: 5px;
				content: '';
				transform: rotate(180deg);
				background-image: url('/includes/public/assets/shared/nav-arrow.png');
				background-position: center center;
				background-repeat: no-repeat;
			}

		.mobileNav ul.mobile.secondary a {
			border-bottom: 0 !important;
			display: block;
			padding: 20px 15px;
			position: relative;
			font-family: "NYC Sans", Helvetica, Arial, sans-serif;
			font-size: 24px;
			color: #fff;
		}
			/*.mobileNav ul.mobile.secondary a::after {
				display: inline-block;
				width: 26px;
				height: 26px;
				position: absolute;
				top: 27px;
				right: 2px;
				content: '';
				background-image: url('/includes/public/assets/shared/nav-arrow.png');
				background-position: center center;
				background-repeat: no-repeat;
			}*/

/* Desktop - secondary nav top bar */
.navbar-top {
	display: none;
	height: 35px;
	max-height: 35px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.7);
}
	.navbar-top .secondary-toggler {
		display: none;
	}

	.navbar-top ul {
		margin: 0;
		list-style: none;
	}
		.navbar-top ul > li {
			display: inline-block;
		}
			.navbar-top ul > li > a {
				display: inline-block;
				padding: 7px 10px 6px 10px;
				line-height: 17px;
				font-size: 17px;
				color: #65666b;
			}
				.navbar-top ul > li.current > a,
				.navbar-top ul > li:hover > a {
					color: #2a2a2a;
				}

.navbar-top-dropdown {
	display: none;
	position: absolute;
	right: 0px;
	top: -20px;
	opacity: 0;
	transition: top ease 0.5s, opacity ease 0.2s;
	pointer-events: none;
}
	nav.navbar.affix.is-scrolled .navbar-top-dropdown {
		top: 35px;
		opacity: 1;
		transition: top ease 0.5s, opacity ease 0.5s;
		pointer-events: all;
	}

	.navbar-top-dropdown .secondary-toggler {
		padding: 15px 4px;
		font-size: 20px;
		line-height: 24px;
		color: #1f1f21;
		font-family: "NYC Sans Bold","NYC Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
		cursor: default;
	}
		.navbar-top-dropdown:hover .secondary-toggler {
			background-color: #1f1f21;
			color: #fec830;
		}
		.navbar-top-dropdown:hover .secondary-toggler i {
			transform: rotate(-90deg);
		}

	.navbar-top-dropdown ul {
		display: none;
		margin: 0;
		padding: 7px 30px 10px 14px;
		position: absolute;
		right: 0;
		list-style: none;
		background-color: rgba(31,31,33,0.95);
	}
		.navbar-top-dropdown ul > li {}
			.navbar-top-dropdown ul > li > a {
				display: block;
				color: #f5f5f5;
				font-size: 20px;
				font-family: "NYC Sans Bold","NYC Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
				line-height: 39px;
				white-space: nowrap;
			}


@media only screen and (min-width: 1200px) {
	nav.navbar.affix{
		height: 89px;
		transition: top ease 0.3s, background-color ease 0.5s;
	}
		nav.navbar.affix.is-scrolled {
			top: -35px !important;
			background-color: #fff;
			transition: top ease 0.5s, background-color ease 0.5s;
		}

	.navbar-top,
	.navbar-top-dropdown,
	.navbar-top-dropdown:hover .secondary-toggler + ul {
		display: block;
	}
}
