.privacy-consent[hidden],
.privacy-consent-settings[hidden] {
	display: none !important;
}

.privacy-consent {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999999;
	padding: 2rem 1rem;
	background: rgba(0, 0, 0, .4);
	color: #fff;
	-webkit-backdrop-filter: blur(1em);
	backdrop-filter: blur(1em);
}

.privacy-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.privacy-consent__copy {
	flex: 0 1 50%;
	max-width: 50%;
}

.privacy-consent__title {
	margin: 0 0 .35rem;
	font-size: 1.25rem;
}

.privacy-consent__copy p {
	margin: 0;
	max-width: none;
	font-size: .9rem;
	line-height: 1.45;
}

.privacy-consent__copy a {
	color: inherit;
	text-decoration: underline;
}

.privacy-consent__actions {
	display: flex;
	flex: 0 0 auto;
	gap: .75rem;
}

.privacy-consent__actions .boton {
	cursor: pointer;
}

.privacy-consent-settings {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 999998;
	padding: .5rem .75rem;
	border: 1px solid currentColor;
	border-radius: 2rem;
	background: #000;
	color: #fff;
	font: inherit;
	font-size: .75rem;
	cursor: pointer;
}

@media (max-width: 720px) {
	.privacy-consent__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 1rem;
	}

	.privacy-consent__copy {
		max-width: 100%;
	}

	.privacy-consent__actions {
		width: 100%;
	}

	.privacy-consent__actions .boton {
		flex: 1;
		text-align: center;
	}
}
