#cookie-consent {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 100000;
	width: 360px;
	max-width: calc(100% - 40px);
	padding: 20px;
	background: #231123;
	color: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
	font-family: Arial, sans-serif;
}

#cookie-consent.cookie-consent-hidden {
	display: none;
}

#cookie-consent h2 {
	margin: 0 0 10px;
	font-size: 19px;
	color: #fff !important;
}

#cookie-consent p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.5;
	color: #fff !important;
}

#cookie-consent .cookie-consent-detail {
	font-size: 12px;
	opacity: .85;
}

.cookie-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cookie-consent-actions button {
	padding: 9px 12px;
	border: 1px solid #3baab4;
	background: #3baab4;
	color: #fff !important;
	cursor: pointer;
	font-weight: bold;
}

.cookie-consent-actions .cookie-consent-secondary {
	border-color: #3baab4;
	background: #3baab4;
	color: #fff !important;
}

.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus {
	border-color: #2b8790;
	background: #2b8790;
	color: #fff !important;
}

.cookie-external-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
	background: #eee;
	border-radius: 20px;
	text-align: center;
}

.cookie-external-placeholder p {
	margin: 0;
}

.cookie-recaptcha-message {
	clear: both;
	font-size: 12px;
}

@media (max-width: 480px) {
	#cookie-consent {
		left: 10px;
		bottom: 10px;
		max-width: calc(100% - 20px);
		width: auto;
	}
}