.eureka-cookie-banner {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 900;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	width: min(calc(100% - 48px), 760px);
	padding: 20px;
	border: 1px solid #3a3022;
	border-radius: 8px;
	background: #111214;
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.46);
}

.eureka-cookie-banner[hidden],
.eureka-cookie-modal[hidden] {
	display: none;
}

.eureka-cookie-banner h2,
.eureka-cookie-modal h2 {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	color: #f7f1e8;
}

.eureka-cookie-banner p,
.cookie-toggle small {
	margin: 6px 0 0;
	color: #a7a39b;
	font-size: 14px;
	line-height: 1.45;
}

.eureka-cookie-banner__actions,
.eureka-cookie-modal__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.eureka-cookie-modal {
	position: fixed;
	inset: 0;
	z-index: 940;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.62);
}

.eureka-cookie-modal__panel {
	position: relative;
	width: min(100%, 560px);
	padding: 28px;
	border: 1px solid #3a3022;
	border-radius: 8px;
	background: #111214;
}

.eureka-cookie-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid #3a3022;
	border-radius: 8px;
	background: #1a1b1e;
	color: #f7f1e8;
	cursor: pointer;
}

.cookie-toggle {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 4px 12px;
	margin-top: 18px;
	color: #f7f1e8;
	font-weight: 800;
}

.cookie-toggle input {
	margin-top: 6px;
	accent-color: #d6aa4b;
}

.cookie-toggle small {
	grid-column: 2;
}

.eureka-cookie-modal__actions {
	margin-top: 24px;
}

@media (max-width: 760px) {
	.eureka-cookie-banner {
		right: 14px;
		bottom: 82px;
		left: 14px;
		grid-template-columns: 1fr;
		width: auto;
	}
}

