/* The notice colors should be adjustable by the Wordpress CSS */
#marriland-cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	background: #3a5285;
	color: #ffffff;
	display: block;
	min-width: 100%;
	height: auto;
	z-index: 300; /* Needs to be less than the nav menu z-index on mobile. */
	line-height: 2em;
	text-align: center;
}
.cookie-notice-container {
	text-align: center;
	width: 100%;
	font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
	font-size: 0.75rem;
	display: flex;
	flex-flow: row wrap;
	max-width: 1280px;
	margin: 0 auto;
}
.cookie-notice-text {
	flex: 1 1 auto;
	text-align: center;
	padding: 0.25em;
	line-height: 1.25em;
	align-self: center;
}
.cookie-notice-options-container {
	flex: 1 1 auto;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	padding: 0.5em;
}
.cookie-notice-accept-container {
	flex: 0 0 auto;
	width: auto;
	padding: 0 0.75em;
}
.cookie-notice-accept-container a {
	border: 1px white solid;
	border-radius: 5px;
	color: white;
	background: #263557;
	padding: 5px 10px;
	white-space: nowrap;
}
.cookie-notice-accept-container a:hover {
	background: #3a5285;
}
.cookie-notice-privacy-policy,
.cookie-notice-cookie-policy {
	flex: 0 0 auto;
	width: auto;
	padding: 0 0.75em;

}
.cookie-notice-privacy-policy a,
.cookie-notice-cookie-policy a {
	color: #cccccc;
	white-space: nowrap;
}
.cookie-notice-privacy-policy a:hover,
.cookie-notice-privacy-policy a:active,
.cookie-notice-privacy-policy a:visited,
.cookie-notice-cookie-policy a:hover,
.cookie-notice-cookie-policy a:active,
.cookie-notice-cookie-policy a:visited {
	color: #dddddd;
}