@charset "utf-8";
/* CSS Document */

.cookie-notice {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 99999;
	background: #06366b;
	color: #fff;
	border-top: 4px solid #0084c9;
	box-sizing: border-box;
}

.cookie-notice[hidden] {
	display: none;
}

.cookie-notice__inner {
	width: calc(100% - 40px);
	max-width: 1325px;
	margin: 0 auto;
	padding: 24px 0;
	display: flex;
	align-items: center;
	gap: 50px;
	box-sizing: border-box;
}

.cookie-notice__content {
	flex: 1;
}

.cookie-notice h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.5em, 2.5vw, 1.75em);
	line-height: 1.3;
	font-weight: 700;
}

.cookie-notice p {
	margin: 0;
	color: #fff;
	font-size: clamp(14px, 2vw, 18px);
	line-height: 1.6;
}

.cookie-notice a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
}

.cookie-notice a:hover,
.cookie-notice a:focus {
	text-decoration: none;
}

.cookie-notice__action {
	flex: 0 0 auto;
}

.cookie-notice button {
	min-width: 190px;
	padding: 16px 28px;
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: #06366b;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition:background 0.3s ease, color 0.3s ease;
}

.cookie-notice button:hover,
.cookie-notice button:focus {
	background: #5b9549;
	color: #fff;
}

.cookie-notice button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

@media (max-width: 767px) {

	.cookie-notice__inner {
		width: calc(100% - 30px);
		padding: 20px 0;
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}

	.cookie-notice__action {
		width: 100%;
	}

	.cookie-notice button {
		width: 100%;
	}

}
