/*
	Cookie consent banner
	MSP Consultora
*/

#cookie-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	background: #101010;
	color: #f2f2f2;
	padding: 1em 1.5em;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1em;
	font-family: "Roboto", Helvetica, sans-serif;
	font-size: 0.85em;
	line-height: 1.6;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
}

#cookie-consent-banner p {
	margin: 0;
	flex: 1 1 18em;
	color: #f2f2f2;
}

#cookie-consent-banner a {
	color: #00D3B7;
	border-bottom: dotted 1px currentColor;
	text-decoration: none;
}

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

#cookie-consent-accept {
	flex: 0 0 auto;
	background: #00D3B7;
	color: #101010;
	border: 0;
	border-radius: 4px;
	padding: 0.65em 1.5em;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.85em;
	transition: background-color 0.25s ease;
}

#cookie-consent-accept:hover {
	background: #00f0cf;
}

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

@media screen and (max-width: 480px) {

	#cookie-consent-banner {
		justify-content: flex-start;
		text-align: left;
		padding: 1em;
	}

	#cookie-consent-accept {
		width: 100%;
		text-align: center;
	}

}
