.thcookie-overlay {
	--zindex: 9041;
	--trans: all 0.50s ease;
	--trans2: all 0.25s ease;
	--overlay-color: hsla(84, 19%, 20%, 0.75);
	--color-muted: #6c757d;
	--color-headline: hsl(84, 69%, 40%);
	--color-headline-area: hsl(84, 69%, 36%);
	--color-headline-light: hsl(211, 100%, 60%);
	--color-headline-dark: hsl(206, 20%, 21%);
	--color-link: hsl(84, 69%, 40%);
	--color-link-hover: hsl(124, 69%, 30%);
	--color-label: #3c454d;
	--color-button: #e41723;
	--color-button-hover: hsl(84, 69%, 40%);
	--color-border: #f7f7f9;
	--color-checkbox: hsl(84, 69%, 40%);
	--color-checkbox-border: hsl(84, 69%, 40%);
	--color-checkbox-border-shadow: hsl(84, 69%, 40%, 0.33);
	--color-checkbox-unchecked-border: hsl(84, 19%, 80%);
	--modal-shadow: 0 10px 19px rgba(0,0,0,0.07), 0 7px 6px rgba(0,0,0,0.06);
	--modal-shadow-hover: 0 19px 38px rgba(0,0,0,0.15), 0 15px 12px rgba(0,0,0,0.11);
}

:root {
	--thcookie-button-shadow: 0 1 9px rgba(0, 0, 0, 0.4);
	--thcookie-button-bg: #e41723;
	--thcookie-button-trans: all 0.50s ease;
	--thcookie-button-zindex: 9041;
}

.thcookie-config {
	position: fixed;
	bottom: 0;
	left: 5px;
	opacity: 0.5;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: var(--thcookie-button-bg);
	padding: 6px;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-family: Sans-Serif;
	font-size: 11px;
	text-transform: uppercase;
	box-shadow: var(--thcookie-button-shadow);
	transition: var(--thcookie-button-trans);
	z-index: var(--thcookie-button-zindex);
}

.thcookie-config:hover {
	opacity: 1;
	transition: var(--thcookie-button-trans);
}

.thcookie-overlay,
.thcookie-overlay ::after,
.thcookie-overlay ::before,
.thcookie-overlay * {
	box-sizing: border-box;
	line-height: 19px !important;
	padding-left: 9px;
}

.thcookie-overlay {
	position: fixed;
	top: 0px;
	line-height: 19px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background: var(--overlay-color);
	display:flex;
	justify-content:center;
	align-items:center;
	z-index: var(--zindex);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.thcookie-overlay label {
	margin-bottom: 0 !important;
}

.thcookie-overlay footer {
	font-size: 12px;
	color: var(--color-muted);
	text-align: center;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--color-border);
}

.thcookie-overlay a {
	color: var(--color-link);
	transition: var(--trans);
}

.thcookie-overlay a:hover {
	color: var(--color-link-hover);
	transition: var(--trans);
}

.thcookie-overlay .cookie-confirm {
	border-radius: 5px;
	background-color: var(--color-button);
	padding: 10px 15px;
	color: white;
	margin-top: 8px;
	cursor: pointer;
	transition: var(--trans);
	font-size: 12px;
	display: block;
	text-align: center;
	transition: var(--trans);
}

.thcookie-overlay .cookie-confirm:hover {
	background-color: var(--color-button-hover);
	transition: var(--trans);
}

.thcookie-overlay .cookie-content {
	position: relative;
	max-width: 640px;
	padding: 10px;
	font-size: 14px;
	font-family: Sans-Serif;
	background: white;
	border-radius: 7px;
	box-shadow: var(--modal-shadow);
	transition: var(--trans);
}

.thcookie-overlay .cookie-content:hover {
	transition: var(--trans);
	box-shadow: var(--modal-shadow-hover);
}

.thcookie-overlay .cookie-title {
	font-size: 20px;
	padding-bottom: 8px;
	color: var(--color-headline);
}

.thcookie-overlay .cookie-subtitle {
	font-size: 12px;
	color: var(--color-muted);
	margin: 0;
}

.thcookie-overlay .cookie-data {
	margin: 8px 0px;
	padding: 8px 0px;
	border-bottom: 1px solid var(--color-border);
	border-top: 1px solid var(--color-border);
}

.thcookie-overlay .custom-control {
	position:relative;
	padding-left:2.4rem;
	transition: var(--trans);
}

.thcookie-overlay .custom-control-info {
	display: block;
	font-size: 11px;
	color: var(--color-muted);
	padding-bottom: 8px;
}

.thcookie-overlay .custom-control-info th {
	font-size: 11px;
	font-weight: bold;
	padding: 2px;
	text-align: left;
	vertical-align: top;
}

.thcookie-overlay .custom-control-info td {
	font-size: 11px;
	padding: 2px;
	text-align: left;
	vertical-align: top;
}

.thcookie-overlay .custom-control-input {
	position:absolute;
	z-index:-1;
	opacity:0;
	transition: var(--trans);
}

.thcookie-overlay .custom-control-input:checked~.custom-control-label::before {
	color:#fff;
	border-color: var(--color-checkbox-border);
	background-color: var(--color-checkbox);
	transition: var(--trans);
}

.thcookie-overlay .custom-control-input:focus~.custom-control-label::before {
	box-shadow:0 0 0 .2rem var(--color-checkbox-border-shadow);
	transition: var(--trans);
}

.thcookie-overlay .custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: var(--color-checkbox-border-shadow);
	transition: var(--trans);
}

.thcookie-overlay .custom-control-input:not(:disabled):active~.custom-control-label::before {
	color:#fff;
	background-color: var(--color-checkbox);
	border-color: var(--color-checkbox);
	transition: var(--trans);
}

.thcookie-overlay .custom-control-label {
	position:relative;
	font-weight: 700;
	color: var(--color-label);
}

.thcookie-overlay .custom-control-label::after,
.thcookie-overlay .custom-control-label::before {
	position:absolute;
	top: 0rem;
	left:-1.9rem;
	display:block;
	width: 2.2rem;
	height: 2.2rem;
	content:"";
	transition: var(--trans);
}

.thcookie-overlay .custom-control-label::before {
	pointer-events:none;
	background-color:#fff;
	border:1px solid var(--color-checkbox-unchecked-border);
	transition: var(--trans);
}

.thcookie-overlay .custom-control-label::after {
	background:50%/50% 50% no-repeat;
	transition: var(--trans);
}

.thcookie-overlay .custom-checkbox .custom-control-label::before {
	border-radius:.25rem;
	transition: var(--trans);
}

.thcookie-overlay .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
	transition: var(--trans);
}

.thcookie-overlay .custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
	border-color: var(--color-checkbox-border);
	background-color: var(--color-checkbox);
	transition: var(--trans);
}

.thcookie-overlay .custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
	background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
	transition: var(--trans);
}

.thcookie-overlay h4 {
	font-size: 18px;
	margin: 8px 0px;
	position:relative;
	font-weight: 700;
	color: var(--color-headline-area);
}

.thcookie-overlay .elegant-wrap {
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	text-wrap: balance;
	text-overflow: ellipsis;
}

.thcookie-overlay .toggleBox {
	position: relative;
	transition: var(--trans);
}

.thcookie-overlay .toggleBox input {
	position: absolute;
	left: -99999px;
}

.thcookie-overlay .toggleBox label {
	font-size: 11px;
	font-weight: 700;
	color: var(--color-link);
	padding: 2px;
	border-radius: 5px;
	display: block;
	text-align: left;
	cursor: pointer;
}

.thcookie-overlay .toggleBox label:hover {
	color: var(--color-link-hover);
}

.thcookie-overlay .toggleBox input ~ div {
	padding: 0px;
}

.thcookie-overlay .toggleBox input:not(:checked) ~ div {
	display: none;
}

.thcookie-overlay .toggleBox input:checked ~ div {
	border: 1px solid #f0f0f0;
	background-color: #f8f8f8;
	display: block;
	padding: 8px;
}

.thcookie-overlay .toggleBox input:not(:checked) ~ .close,
.thcookie-overlay .toggleBox input:checked ~ .open {
	display: none;
}
