.consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	width: 100%;
	background: #000;
	color: #fff;
	transform: translateY(100%);
	transition: transform 0.35s ease-out;
}

.consent-banner.is-visible {
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.consent-banner {
		transition: none;
	}
}

.consent-banner__inner {
	margin: 0 auto;
	padding: 1.042vw 1.25vw;
	display: flex;
}

.consent-banner__message p {
	margin: 0;
	font-size: 0.829vw;
	line-height: 1.5;
}

.consent-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.521vw;
	justify-content: flex-end;
	width: 30%;
}

.consent-btn {
	font-size: 0.9vw;
	line-height: 1;
	padding: 0.521vw 1.238vw;
	border-radius: 100px;
	border: 0.052vw solid #FFF;
	color: #FFF;
	background: transparent;
	text-transform: uppercase;
	cursor: pointer;
}

.consent-btn:hover {
	background: #f2f2f2;
	color: #000;
}

.consent-btn:focus-visible {
	outline: 0.156vw solid #005fcc;
	outline-offset: 0.104vw;
}

.consent-btn--accept {
	background: #c368e6;
	border-color: #c368e6;
	color: #ffffff;
}

.consent-btn--accept:hover {
	background: #FFF;
}

.consent-panel {
	margin-top: 0.833vw;
	padding-top: 0.833vw;
	border-top: 0.052vw solid #e2e2e2;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11.458vw, 1fr));
	gap: 0.833vw;
}

.consent-panel[hidden] {
	display: none;
}

.consent-panel__category label {
	display: flex;
	align-items: center;
	gap: 0.417vw;
	font-weight: 600;
	font-size: 0.729vw;
}

.consent-panel__desc {
	margin: 0.208vw 0 0 1.25vw;
	font-size: 0.677vw;
	color: #4a4a4a;
}

.consent-panel__save {
	grid-column: 1 / -1;
	display: flex;
	justify-content: flex-end;
}

.consent-banner[hidden] {
	display: none;
}


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

	.consent-banner__inner {
		flex-direction: column;
		padding: 5vw;
	}

	.consent-banner__message p {
		font-size: 3.5vw;
		margin-bottom: 3vw;
	}

	.consent-banner__actions {
		width: 100%;
		justify-content: center;
		gap: 3vw;
	}

	.consent-btn {
		font-size: 3.7vw;
		padding: 2vw 4vw;
	}

}