/* ==========================================================================
   OE Cookie Notice — Styles
   Classes locked to automation selectors:
     .cookiealert  .cookiealert.show  .cookie-copy  .acceptcookies
   ========================================================================== */

.cookiealert,
.cookiealert * {
	box-sizing: border-box;
}

.cookiealert {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 100%;
	padding: 14px 25px;
	padding-bottom: calc(14px + env(safe-area-inset-bottom));
	color: #333;
	background: #fff;
	box-shadow: 0 -4px 18px rgb(0 0 0 / 12%);
	font-family: Inter,sans-serif!important;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition:
		opacity 250ms ease,
		transform 250ms ease,
		visibility 0s 250ms;
	pointer-events: none;
}

.cookiealert.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition:
		opacity 250ms ease,
		transform 250ms ease,
		visibility 0s 0s;
	pointer-events: auto;
}

.cookiealert .cookie-copy {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.cookiealert .cookie-copy a {
    color: #000;
    font-size: 12px;	
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookiealert .cookie-copy span a {
  color: #000;
  font-size: 11px;
}

.cookie-copy a:hover {
	color: #004a80;
}

.acceptcookies {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	min-height: 32px;
	padding: 4px 8px;
	border: none;
	border-radius: 4px;
	color: #555;
	background: transparent;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	transition: color 150ms ease, background-color 150ms ease;
}

.acceptcookies:hover {
	color: #000;
	background: rgba(0, 0, 0, 0.06);
}

.acceptcookies:focus-visible,
.cookie-copy a:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.cookiealert {
		flex-direction: column;
		gap: 10px;
		padding: 16px 20px;
		padding-bottom: calc(16px + env(safe-area-inset-bottom));
	}
}

@media (prefers-reduced-motion: reduce) {
	.cookiealert {
		transition: none;
	}
	.cookiealert.show {
		transition: none;
	}
}