/* Cookie Banner styling */
.cookie-banner {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
	display: flex;
	position: fixed;
	top: auto;
	left: 50%;
	transform: translate(-50%);
	max-width: 900px;
	width: 100%;
	bottom: 20px;
	margin: 0;
	max-height: 90vh;
	z-index: 50001;
	padding: 20px 0;
	background-color: #fff;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	animation: fadeIn 0.6s;
	color: #000;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.cookie-banner p {
	font-size: 0.875rem;
	line-height: 1.125rem;
}

.cookie-banner a:hover,
.cookie-banner a:active,
.cookie-banner a:focus {
	text-decoration: none;
}

.cookie-banner p:not(:first-child) {
	margin: 10px 0;
}

.cookie-banner .cookie-banner__simple-text-description {
	color: #000;
	font-size: 0.875rem;
	line-height: 1.125rem;
	margin-bottom: 0;
}

.cookie-banner .cookie-banner__simple-options {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	gap: 25px;
}

.cookie-banner .cookie-banner__simple-options .cookie-banner__button-container {
	width: 22%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.cookie-banner .cookie-banner__options-selection {
	flex-direction: column;
	overflow-y: scroll;
	scroll-padding-bottom: 25px;
	padding: 0 20px;
}

.cookie-banner .cookie-banner__options-selection .cookie-banner__options-lead-text {
	margin-bottom: 12px;
	padding-bottom: 12px;
}

.cookie-banner .cookie-banner__options-selection .cookie-banner__bucket-container {
	padding-bottom: 10px;
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.cookie-banner .cookie-banner__options-selection .cookie-banner__bucket-container .cookie-banner__option-description {
	display: flex;
	flex-direction: column;
	font-size: 0.875rem;
	line-height: 1.125rem;
}

.cookie-banner .cookie-banner__options-selection .cookie-banner__bucket-container .cookie-banner__checkbox-container {
	margin-top: 3px;
}

.cookie-banner .cookie-banner__options-selection .cookie-banner__bucket-container p {
	color: #000;
	margin-top: 5px;
}

.cookie-banner .cookie-banner__options-selection input[type=checkbox]:not(:disabled) {
	cursor: pointer;
}

.cookie-banner__checkbox {
	transform: scale(1.5);
	margin-right: 10px;
}

.cookie-banner .cookie-banner__accept-all-button,
.cookie-banner .cookie-banner__customize-button,
.cookie-banner .cookie-banner__accept-selection-button {
	min-width: 110px;
	max-width: 500px;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	font-style: normal;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.125rem;
	border-radius: 4px;
	border: none;
	cursor: pointer;
}

.cookie-banner .cookie-banner__customize-button {
	color: #000;
	background-color: #fff;
}

.cookie-banner .cookie-banner__accept-all-button,
.cookie-banner .cookie-banner__accept-selection-button {
	color: #fff;
	background-color: #117ac9;
}

.cookie-banner .cookie-banner__ok-button:hover,
.cookie-banner .cookie-banner__accept-all-button:hover,
.cookie-banner .cookie-banner__accept-selection-button:hover {
	color: #fff;
	background-color: #0e5a8a;
}

.cookie-banner .cookie-banner__accept-selection-button {
	display: block;
	width: auto;
	min-width: 150px;
	margin: 18px auto 0 auto;
}

@media only screen and (max-width: 900px) {
	.cookie-banner {
		bottom: 0;
	}

	.cookie-banner .cookie-banner__simple-options {
		flex-direction: column;
		gap: 0;
	}

	.cookie-banner .cookie-banner__simple-options .cookie-banner__button-container {
		align-self: flex-end;
	}

	.cookie-banner .cookie-banner__simple-text-description {
		width: auto;
		max-width: none;
	}


	.cookie-banner .cookie-banner__customize-button,
	.cookie-banner .cookie-banner__accept-all-button,
	.cookie-banner .cookie-banner__accept-selection-button {
		display: block;
		position: static;
		transform: none;
		width: auto;
		margin: 0 auto;
	}

	.cookie-banner .cookie-banner__accept-all-button {
		margin: 5px auto 0 auto;
	}


	.cookie-banner .cookie-banner__customize-button,
	.cookie-banner .cookie-banner__accept-selection-button {
		margin: 18px auto 0 auto;
	}

	.cookie-banner .cookie-banner__accept-selection-button {
		min-width: 150px;
	}
}