.cookie-consent {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
	background: rgba(245, 245, 245, 0.95);
	border-top: 1px solid #cbd6e2;
	color: #33475b;
}

html.cookie-consent-decided .cookie-consent:not(.is-open) {
	display: none;
}

.cookie-consent.is-open {
	display: block;
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - 40px, 1180px);
	margin: 0 auto;
	padding: 20px 0;
}

.cookie-consent__copy {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 12px;
	line-height: 1.45;
}

.cookie-consent__copy p {
	margin: 0 0 8px;
}

.cookie-consent__copy p:last-child {
	margin-bottom: 0;
}

.cookie-consent__policy {
	color: inherit;
	text-decoration: underline;
}

.cookie-consent__policy:hover,
.cookie-consent__policy:focus {
	color: #0097e0;
}

.cookie-consent__actions {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 10px;
}

.cookie-consent__btn {
	appearance: none;
	min-width: 96px;
	padding: 10px 18px;
	border-radius: 3px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
}

.cookie-consent__btn--accept {
	border: 1px solid #001a33;
    background: #001a33;
    color: #fff;
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus {
	background: #00305c;
    border-color: #00305c;
    color: #fff
}

.cookie-consent__btn--decline {
	border: 1px solid #001a33;
    background: #fff;
    color: #001a33;
}

.cookie-consent__btn--decline:hover,
.cookie-consent__btn--decline:focus {
	background: #eef6fb;
}

@media (max-width: 767px) {
	.cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		padding: 20px 0;
	}

	.cookie-consent__actions {
		justify-content: flex-end;
	}

	.cookie-consent__btn {
		flex: 1 1 0;
	}
}
