.vtx-cookie-consent {
	position: fixed;
	bottom: 16px;
	left: 16px;
	z-index: 60;
	max-width: calc(100vw - 32px);
	border: 1px solid rgba(64, 64, 64, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(64, 64, 64, 0.1);
	color: #5a5959;
	font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	opacity: 0;
	padding: 16px;
	pointer-events: none;
	transition: opacity 280ms ease;
}

.vtx-cookie-consent.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.vtx-cookie-consent__text {
	margin: 0;
	line-height: 24px;
}

.vtx-cookie-consent__link {
	color: #d25314;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color 180ms ease;
}

.vtx-cookie-consent__link:hover,
.vtx-cookie-consent__link:focus-visible {
	color: #ff6214;
}

.vtx-cookie-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-start;
	margin-top: 16px;
}

.vtx-cookie-consent__button {
	align-items: center;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 12px;
	font-weight: 500;
	gap: 8px;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-height: 40px;
	overflow: hidden;
	padding: 8px 16px;
	position: relative;
	transition: transform 420ms ease, box-shadow 420ms ease;
}

.vtx-cookie-consent__button--accept {
	background: linear-gradient(135deg, #ff4c2c 0%, #ff6214 23%, #ff8417 52%, #ffb217 77%, #ffda52 100%);
	box-shadow: 0 18px 38px rgba(255, 98, 20, 0.18);
	color: #fff;
}

.vtx-cookie-consent__button--reject {
	border: 1px solid rgba(64, 64, 64, 0.14);
	background: rgba(255, 255, 255, 0.8);
	color: #4c4b4b;
}

.vtx-cookie-consent__button:hover,
.vtx-cookie-consent__button:focus-visible {
	transform: translateY(-2px);
}

.vtx-cookie-consent__button:focus-visible {
	outline: 2px solid #ff8417;
	outline-offset: 2px;
}

.vtx-cookie-consent__button-label,
.vtx-cookie-consent__button-overlay {
	align-items: center;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
	transition: opacity 420ms ease, transform 420ms ease;
}

.vtx-cookie-consent__button-label {
	opacity: 1;
	transform: translateY(0);
}

.vtx-cookie-consent__button-overlay {
	border-radius: 999px;
	inset: -1px;
	opacity: 0;
	position: absolute;
	transform: translateY(48px);
}

.vtx-cookie-consent__button--accept .vtx-cookie-consent__button-overlay {
	background: #ffb217;
	color: #404040;
}

.vtx-cookie-consent__button--reject .vtx-cookie-consent__button-overlay {
	background: #404040;
	color: #fff;
}

.vtx-cookie-consent__button:hover .vtx-cookie-consent__button-label,
.vtx-cookie-consent__button:focus-visible .vtx-cookie-consent__button-label {
	opacity: 0;
	transform: translateY(-48px);
}

.vtx-cookie-consent__button:hover .vtx-cookie-consent__button-overlay,
.vtx-cookie-consent__button:focus-visible .vtx-cookie-consent__button-overlay {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 640px) {
	.vtx-cookie-consent {
		bottom: 24px;
		left: 24px;
		max-width: 384px;
	}
}
