/* Embed Consent Overlay */
.kre-consent-wrap {
	position: relative;
}

.kre-consent-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f2f3f5;
	border-radius: inherit;
	overflow: hidden;
}

/* Preview image layer (behind the content) */
.kre-consent-preview {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.kre-consent-preview-img {
	width: 100% !important;
    height: 100% !important;
	object-fit: cover;
	display: block;
	filter: blur(4px);
}


/* Content on top */
.kre-consent-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 31rem;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-radius: var(--borderradius);
}

.kre-consent-icon {
	color: #8c8f94;
	margin-bottom: 1rem;
}

.kre-consent-has-preview .kre-consent-icon {
	color: rgba(255, 255, 255, .9);
}

.kre-consent-text p {
	font-size: 13px;
	line-height: 1.5;
	color: var(--dark);
	margin: 0 0 6px;
}

.kre-consent-has-preview .kre-consent-text p {
	color: rgba(255, 255, 255, .95);
}

.kre-consent-privacy {
	font-size: 12px !important;
	color: #a1a1a1 !important;
}

.kre-consent-privacy a {
	color: #fff !important;
}

.kre-consent-btn {
	display: inline-block;
	margin-top: 14px;
	border-radius: 4px;
	font-size: 14px;
}

.kre-consent-remember {
    width: fit-content;
    padding-left: 2.1rem;
    margin: 1rem auto;
	color: #fff !important;
}
