.mk-consent-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 999999;

	background: rgba(18, 18, 18, .96);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 18px;

	box-shadow: 0 20px 60px rgba(0, 0, 0, .45);

	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.mk-consent-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;

	max-width: 1400px;
	margin: 0 auto;
	padding: 24px 28px;
}

.mk-consent-content {
	max-width: 760px;
}

.mk-consent-eyebrow {
	display: block;
	margin-bottom: 6px;

	color: #ff7a00;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
}

.mk-consent-content h2,
.mk-consent-modal h2 {
	margin: 0 0 8px;
	color: #fff;
}

.mk-consent-content p {
	margin: 0;
	color: #aaa;
	line-height: 1.6;
}

.mk-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.mk-consent-button {
	padding: 11px 17px;

	border: 1px solid #333;
	border-radius: 10px;

	background: #202020;
	color: #fff;

	cursor: pointer;
}

.mk-consent-accept {
	background: #ff7a00;
	border-color: #ff7a00;
}

.mk-consent-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 20px;

	background: rgba(0, 0, 0, .7);
}

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

.mk-consent-modal-inner {
	width: min(650px, 100%);
	max-height: 90vh;
	overflow: auto;

	padding: 30px;

	background: #151515;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 20px;

	box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

.mk-consent-modal-header {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 25px;
}

.mk-consent-close {
	border: 0;
	background: transparent;
	color: #aaa;
	font-size: 30px;
	cursor: pointer;
}

.mk-consent-category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	padding: 18px 0;

	border-top: 1px solid #292929;
}

.mk-consent-category strong {
	color: #fff;
}

.mk-consent-category p {
	margin: 5px 0 0;
	color: #888;
	font-size: 14px;
}

.mk-consent-always {
	color: #ff7a00;
	font-size: 13px;
	font-weight: 700;
}

.mk-consent-modal-footer {
	margin-top: 20px;
	padding-top: 20px;

	border-top: 1px solid #292929;

	text-align: right;
}

.mk-cookie-settings-link {
	padding: 0;

	border: 0;

	background: transparent;

	color: #ff7a00;

	cursor: pointer;
}

@media (max-width: 700px) {

	.mk-consent-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.mk-consent-actions {
		flex-direction: column;
	}

	.mk-consent-button {
		width: 100%;
	}

}

/* =========================================================
   BLOCKIERTE EXTERNE VIDEOS
========================================================= */

.mk-consent-video,
.mk-youtube-consent {

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	min-height: 240px;

	padding: 30px;

	box-sizing: border-box;

	text-align: center;

	background:
		rgba(18, 18, 18, .75);

	border:
		1px solid rgba(255, 255, 255, .08);

	border-radius: 14px;

	color: #fff;

}


.mk-consent-video-icon,
.mk-youtube-consent-icon {

	margin-bottom: 12px;

	font-size: 38px;

	opacity: .8;

}


.mk-consent-video strong,
.mk-youtube-consent strong {

	display: block;

	margin-bottom: 8px;

	font-size: 18px;

	font-weight: 800;

}


.mk-consent-video p,
.mk-youtube-consent p {

	max-width: 500px;

	margin: 0 0 20px;

	color: #999;

	font-size: 14px;

	line-height: 1.6;

}


.mk-consent-video-button {

	display: inline-flex;

	align-items: center;

	justify-content: center;

	padding: 10px 16px;

	border:
		1px solid #ff7a00;

	border-radius: 10px;

	background:
		rgba(255, 122, 0, .1);

	color: #ff9100;

	font-family: inherit;

	font-size: 13px;

	font-weight: 700;

	cursor: pointer;

	transition:
		background .2s ease,
		color .2s ease,
		transform .2s ease;

}


.mk-consent-video-button:hover {

	background: #ff7a00;

	color: #fff;

	transform: translateY(-1px);

}