/*
	Cookie consent banner
	Custom addition for ClinqueWP Consultora (does not modify any Photon library file)
*/

#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background-color: #1c2b34;
	color: #f4f6f7;
	padding: 1em 1.5em;
	font-size: 0.85em;
	line-height: 1.6em;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
}

#cookie-consent-banner.is-visible {
	display: block;
}

#cookie-consent-banner .cookie-consent-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

#cookie-consent-banner p {
	margin: 0;
	color: #f4f6f7;
	flex: 1 1 320px;
}

#cookie-consent-banner a {
	color: #ffffff;
	text-decoration: underline;
}

#cookie-consent-banner a:hover {
	color: #ffffff;
	opacity: 0.8;
}

#cookie-consent-banner .cookie-consent-accept {
	flex: 0 0 auto;
	display: inline-block;
	padding: 0.65em 1.5em;
	background-color: #4fa49a;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	font-size: 1em;
	cursor: pointer;
	white-space: nowrap;
}

#cookie-consent-banner .cookie-consent-accept:hover {
	background-color: #458c83;
}

@media screen and (max-width: 480px) {
	#cookie-consent-banner .cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	#cookie-consent-banner .cookie-consent-accept {
		width: 100%;
	}
}
