#sliding-popup {
	width: 100%;
	min-width: 320px;
}

.eu-cookie-compliance-banner,
.eu-cookie-withdraw-banner {
	padding-top: var(--theme--gap);
	padding-bottom: var(--theme--gap);
	box-shadow: var(--theme--box-shadow);
	background: rgba(255,255,255, 1);
	max-height: 80vh;
	overflow: auto;
}

.eu-cookie-blocker-banner {
	box-shadow: var(--theme--box-shadow);
	background: rgba(255,255,255, 1);
	padding: 1em;
}
	.eu-cookie-blocker-banner *:last-child {
		margin-bottom: 0;
	}

.eu-cookie-compliance-content {
	width: calc(100% - 2 * var(--theme--gutter));
	max-width: 1200px;
}

.eu-cookie-compliance-message {
	width: 100%;
	float: none;
	max-width: 100%;
	margin-bottom: 1em;
}

.eu-cookie-compliance-categories {
	width: 100%;
	float: none;
	max-width: 100%;
	margin-bottom: 1em;
}

.eu-cookie-compliance-category {
	margin-bottom: 0.5em;
	
}

.eu-cookie-compliance-category label {
	font-weight: 600;
	cursor: pointer;
}

.eu-cookie-compliance-category-description {
	color: var(--theme--color--text);
	font-size: var(--theme--font-size--xsmall);
}

.eu-cookie-compliance-buttons {
	width: 100%;
	float: none;
	max-width: 100%;
	margin-bottom: 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: var(--theme--gap);
}

.eu-cookie-compliance-legal .menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.eu-cookie-compliance-legal .menu-item {
	padding: 0 0.5em;
	border-left: 1px solid var(--theme--color--primary-20);
}
	.eu-cookie-compliance-legal .menu-item:first-child {
		padding-left: 0;
		border-left: 0;
	}
	.eu-cookie-compliance-legal .menu-item:nth-last-child(2) {
		padding-right: 0;
	}
	.eu-cookie-compliance-legal .menu-item.eu-cookie-compliance {
		display: none;
	}

.menu-item.eu-cookie-compliance .menu-link {
	cursor: pointer;
}

.eu-cookie-compliance-legal .menu-link {
	font-size: var(--theme--font-size--xsmall);
	color: var(--theme--color--primary);
}

@media (min-width: 768px) {
	.eu-cookie-compliance-buttons {
		flex-direction: row;
	}
}