.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 {
	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 );
	}
}