.cookie-notice-consent,
.cookie-notice-consent * {
	box-sizing: border-box;
}

.cookie-notice-consent {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 9999;
	font-size: smaller;
	text-align: center;
	background-color: #23282d;
	color: #ffffff;
}

.cookie-notice-consent__container {
	overflow: auto;
	padding: 15px 30px;
}

.cookie-notice-consent.cookie-notice-consent--hidden {
	display: none;
}

.cookie-notice-consent__text {
	margin-bottom: 10px;
}

.cookie-notice-consent__categories--inline .cookie-notice-consent__category {
	display: inline-block;
	margin-right: 20px;
}

.cookie-notice-consent__categories input,
.cookie-notice-consent__categories label {
	cursor: pointer;
	touch-action: manipulation;
	color: inherit;
}

.cookie-notice-consent__category-description {
	opacity: 0.66;
	margin-bottom: 20px;
}

.cookie-notice-consent__categories input + label {
	display: inline-block;
	padding-left: 10px;
}

.cookie-notice-consent__button {
	display: inline-block;
	text-decoration: none;
	margin: 5px;
	padding: 5px 15px;
	color: inherit;
	border: 1px solid currentColor;
	cursor: pointer;
	touch-action: manipulation;
	white-space: nowrap;
	border-radius: 3px;
}
.cookie-notice-consent__button:hover,
.cookie-notice-consent__button:focus {
	color: inherit;
	box-shadow: inset 0 0 0 999px rgba( 255, 255, 255, 0.1 );
}

.cookie-notice-consent__button--inline {
	margin-left: 0;
}

.cookie-notice-consent--loading .cookie-notice-consent__container {
	position: relative;
	overflow: hidden;
}

.cookie-notice-consent--loading .cookie-notice-consent__container::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba( 0, 0, 0, 0.5 );
}

.cookie-notice-consent--loading .cookie-notice-consent__container::after {
	content: '';
	position: absolute;
	z-index: 2;
	top: calc( 50% - 1.5rem );
	left: calc( 50% - 1.5rem );
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 2px solid rgba( 255, 255, 255, 0.9 );
	border-left-color: transparent;
	border-right-color: transparent;
	animation: spinner 0.75s ease-in-out infinite;
}

@keyframes spinner {
	to {
		transform: rotate( 180deg );
	}
}

.wp-block-embed .cookie-notice-consent__embed-placeholder {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba( 0, 0, 0, 0.1 );
	font-size: smaller;
	text-align: center;
	padding: 15%;
}
.wp-block-embed.is-type-video .cookie-notice-consent__embed-placeholder {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
}
.cookie-notice-consent__embed-blocked-notice {
	margin-bottom: 20px;
}
.cookie-notice-consent__embed-unblock {
	display: inline-block;
	position: relative;
	padding: 5px 15px;
	background: var( --cnc-color-accent, rgba( 0, 0, 0, 0.2 ) );
	color: white;
	text-decoration: none;
	cursor: pointer;
}
.cookie-notice-consent__embed-unblock:hover,
.cookie-notice-consent__embed-unblock:focus {
	box-shadow: inset 0 0 0 999px rgba( 255, 255, 255, 0.1 );
}
