/*
*	Cookie Notice Styles
*  
*	Display a small (unobtrusive) notice on the website that informs visitors of  
*	Privacy Policy and Website Terms of Use.
*
* ========================================================= */

.cookie-notice {
	visibility: hidden;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	opacity: .95;
	z-index: 2147483647;
	padding: 0 60px 0 30px;
	height: 90px;
	border-top-right-radius: 45px;
	border-bottom-right-radius: 45px;
	top: auto;
	right: auto;
	left: 0;
	bottom: 32px;
	width: 100%;
	background: #e0e5e9;
	transition: transform 1s ease;
	transform: translateX(-100%);
}

/* tablet and mobile */
.hh .cookie-notice {
	height: 58px;
	top: -58px;
	bottom: auto;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	transition: none;
	width: 100%;
	transition: top 300ms ease;
}

.hh .cookie-notice.active {
	top: 0;
}

.hh .cookie-notice .hide-mobile-tablet {
	display: none;
}

/* push header and main element down when active */
.hh.cookie-notice-active #header {
	top: 58px;
}

.hh.cookie-notice-active main {
	margin-top: 116px;
}

/* adjust fixed secondary nav positioning for mobile */
.hh.cookie-notice-active .nav-secondary-wrap.affix {
	margin-top: 116px;
}

/* desktop limit width */
@media screen and (min-width: 420px) {
	.cookie-notice {
		width: 420px;
	}
}

.cookie-notice.active {
	display: flex;
	visibility: visible;
	transform: translateX(0);
}

.cookie-notice p {
	font-size: 12px;
	line-height: 1.4;
	margin: 0;
	width: 100%;
}

@media screen and (min-width: 420px) {
	.cookie-notice p {
		font-size: 14px;
	}
}

.cookie-notice p a {
	font-weight: 700;
}

.cookie-notice-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	right: 10px;
	margin-top: -14px;
	text-align: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
}

.cookie-notice-close .glyphicon {
	color: #323b43;
	font-size: 14px;
}