/* 
* Shared CSS for Homepage and all other pages
*/

body.\--popup-active {
	overflow: hidden;
}


/* Nav */

@media (min-width: 992px) {
	.user-logged-in {
		max-width: 182px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media only screen and (max-width: 992px) {
	nav ul {
        padding-left: 0!important;
		/* margin: 0 0 1em; */
	}
}

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	width: 100%;
	padding: 20px 0 20px;
	background-color: #dfdfdf;
	z-index: 1000210;
	font-size: 14px;
	overflow: hidden;
	transition: 0.5s ease-in;
	bottom: -100%;
	opacity: 0;
	pointer-events: none;
	box-sizing: border-box;
}
.cookie-notice.show {
	bottom: 0;
	opacity: 1;
	pointer-events: all;
}

.cookie-notice .heading {
	color:#332d2d;
	margin-top: 0;
	font-size: 1.5em;
	margin-bottom: 10px;
}

.strip {
	background: #eb008b;
	text-align: center;
	color: white;
	padding: 5px;
	font-size: 15px;
}

.strip a {
	color: white;
}

.cookie-notice p {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 0;
}
.cookie-notice a {
	color: #ec008c;
	text-decoration: none;
}
.cookie-notice .accept {
	cursor: pointer;
	line-height: 1.4;
	margin-top: 0;
	flex-shrink: 0;
}

.cookie-notice .accept:hover {
	opacity: 0.6;
	transition: opacity .3s ease-out;
}

@media (min-width:  540px) {
	.cookie-notice .cookie-notice-inner {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

	.cookie-notice p {
		margin-bottom: 0;
	}
	.cookie-notice .accept {
		margin-left: 15px;
		margin-top: 4px;
		width: auto;
	}
}


@media (min-width:  767px) {
	.cookie-notice {
		font-size: 16px;
		padding: 40px 0 40px;
	}

	.cookie-notice .heading {
		font-size: 2em;
		margin-bottom: 15px;
	}

	.cookie-notice p {
		font-size: 16px;
		margin-top: 0;
	}

	.cookie-notice .accept {
		margin-top: 3px;
	}

}

@media (min-width:  940px) {
	.cookie-notice .accept {
		margin-top: 0;
	}
	.cookie-notice p {
		margin-top: 10px;
	}
}

body.has-broadcast .search-holder-wrap {
	padding-top: 3em;
}

body.has-broadcast .home-banner {
	padding-top: 7.5em;
}

.bcstrip {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 5px;
	background: #eb008b;
	color: white;
	font-family: sans-serif;
	font-size: 16px;
	line-height: 1.4;
	box-sizing: border-box;
}

.bcstrip a {
	color: white;
	text-decoration: underline;
}

.bcstrip p {
	margin: 0;
}

.bcstrip > * {
	font-size: inherit;
	color: inherit;
	font-family: sans-serif;
	font-size: 16px;
	line-height: inherit;
}

@media (min-width: 768px) {
	body.has-broadcast .home-banner {
		padding-top: 3.5em;
	}
	
	body.has-broadcast .search-holder-wrap {
		padding-top: 1.5em;
	}
}