.tvcn-cookie-notice[hidden] {
	display: none !important;
}

.tvcn-cookie-notice {
	position: fixed;
	z-index: 10000;
	right: 0;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	border-top: 1px solid var(--line, #292929);
	background: rgba(11, 11, 11, .97);
	box-shadow: 0 -18px 50px rgba(0, 0, 0, .42);
	color: var(--text, #e8e6e1);
	font-family: var(--sans, "Manrope", Arial, sans-serif);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.tvcn-cookie-notice *,
.tvcn-cookie-notice *::before,
.tvcn-cookie-notice *::after {
	box-sizing: border-box;
}

.tvcn-cookie-notice__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	width: min(100% - 40px, var(--container, 1180px));
	margin: 0 auto;
	padding: 20px 0 calc(20px + max(env(safe-area-inset-bottom, 0px), var(--safe-area-bottom, 0px)));
}

.tvcn-cookie-notice__content {
	max-width: 900px;
}

.tvcn-cookie-notice__title {
	margin: 0 0 5px;
	color: #f4f2ed;
	font-family: var(--heading, "Oswald", "Arial Narrow", sans-serif);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.tvcn-cookie-notice__text {
	margin: 0;
	color: var(--muted, #888783);
}

.tvcn-cookie-notice__text a {
	color: #d8d6d1;
	text-decoration: underline;
	text-decoration-color: #666;
	text-underline-offset: 3px;
	transition: color .2s ease, text-decoration-color .2s ease;
}

.tvcn-cookie-notice__text a:hover,
.tvcn-cookie-notice__text a:focus-visible {
	color: #fff;
	text-decoration-color: #fff;
}

.tvcn-cookie-notice__button {
	flex: 0 0 auto;
	min-width: 140px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 25px;
	border: 1px solid #555;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #f4f3f0;
	font: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.tvcn-cookie-notice__button:hover,
.tvcn-cookie-notice__button:focus {
	border-color: #fff;
	background: #fff;
	color: #080808;
}

.tvcn-cookie-notice__button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.tvcn-cookie-notice {
		font-size: 13px;
	}

	.tvcn-cookie-notice__inner {
		width: min(100% - 30px, var(--container, 1180px));
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
		padding-top: 18px;
		padding-bottom: calc(18px + max(env(safe-area-inset-bottom, 0px), var(--safe-area-bottom, 0px)));
	}

	.tvcn-cookie-notice__title {
		font-size: 17px;
	}

	.tvcn-cookie-notice__button {
		width: 100%;
		min-height: 44px;
	}
}
