.gdpr-link-wrapper {
	text-align: right;
	margin: 16px 0;
}

.gdpr-link-wrapper a {
	font-size: 0.9rem;
	text-decoration: underline;
	cursor: pointer;
}

.gdpr-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;

	justify-content: center; 

	padding: 20px;
}

.gdpr-modal.open {
	display: flex;
}
.gdpr-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.7);
}

.gdpr-dialog {
	position: relative;
	width: 100%;
	max-width: 800px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;

	height: fit-content;
	max-height: 100%;
	overflow: hidden;

	outline: 1px solid hsl(0 0% 10%);
	border: 1px solid hsl(0 0% 40%);	
}

.gdpr-close {
	position: relative;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	align-self: flex-start;
	color: hsl(0 0% 90%);
}

.gdpr-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background-color: hsl(0 0% 20%);
}

.gdpr-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
}

.gdpr-tab {
	padding: 8px 14px;
	border: 1px solid #000;
	border-radius: 6px;
	background: hsl(120 0% 90%);
	cursor: pointer;

	flex: 1 1 auto;
	min-width: 120px;
	text-align: center;
	box-sizing: border-box;

	outline: 1px solid hsl(0 0% 30%);
	box-shadow: 0 0 2px 2px hsl(0 0% 0% / 0.3) inset;
}


.gdpr-tab.active {
	background: hsl(200 50% 30%);
	color: #fff;
	outline: 1px solid hsl(0 0% 30%);
}

.gdpr-content {
	overflow-y: auto;
	flex: 1;
	padding: 0 16px 16px 16px;
}

.gdpr-panel {
	display: none;
	font-size: 0.95rem;
	line-height: 1.45;
}

.gdpr-panel.active {
	display: block;
}

.gdpr-panel {
	color: black;
}
.gdpr-panel h1 {
	margin: 10px 0 0 0;
	font-size: 1.15em;
}
.gdpr-panel h1 + p {
	margin-top: 0;
}
.gdpr-panel p {

}
.gdpr-panel ul {
	margin: 0;
	padding-left: 1em;
}
.gdpr-panel p:last-of-type {
	margin-bottom: 0;
}