.tp-cookie-consent {
	position: fixed;
	right: 16px;
	bottom: calc(16px + env(safe-area-inset-bottom, 0px));
	left: 16px;
	z-index: 99999;
	max-width: 1180px;
	margin-inline: auto;
	color: #1f2937;
	background: #fff;
	border: 1px solid #b8cde3;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(11, 46, 89, 0.12);
	box-sizing: border-box;
}

.tp-cookie-consent[hidden] {
	display: none !important;
}

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

.tp-cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 22px;
}

.tp-cookie-consent__copy {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 760px;
}

.tp-cookie-consent__title {
	margin: 0 0 7px;
	color: #0b2e59;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.tp-cookie-consent__text,
.tp-cookie-consent__current {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.tp-cookie-consent__policy-link {
	display: inline-block;
	margin-top: 8px;
	color: #0b2e59;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tp-cookie-consent__policy-link:hover {
	color: #ff7a00;
}

.tp-cookie-consent__current {
	margin-top: 8px;
	color: #0b2e59;
	font-weight: 600;
}

.tp-cookie-consent__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}

.tp-cookie-consent__button,
.tp-cookie-consent__settings-button {
	min-height: 44px;
	padding: 11px 18px;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	border-radius: 8px;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.tp-cookie-consent__button {
	min-width: 170px;
}

.tp-cookie-consent__button--primary {
	color: #fff;
	background: #ff7a00;
	border: 1px solid #ff7a00;
}

.tp-cookie-consent__button--secondary,
.tp-cookie-consent__settings-button {
	color: #0b2e59;
	background: #fff;
	border: 1px solid #0b2e59;
}

.tp-cookie-consent__button:disabled {
	cursor: wait;
	opacity: 0.65;
}

.tp-cookie-consent__button:focus-visible,
.tp-cookie-consent__settings-button:focus-visible,
.tp-cookie-consent__policy-link:focus-visible {
	outline: 3px solid #ff7a00;
	outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
	.tp-cookie-consent__button--primary:hover {
		background: #e66f00;
		border-color: #e66f00;
	}

	.tp-cookie-consent__button--secondary:hover,
	.tp-cookie-consent__settings-button:hover {
		color: #fff;
		background: #0b2e59;
	}
}

@media (max-width: 767px) {
	.tp-cookie-consent {
		right: 10px;
		bottom: calc(10px + env(safe-area-inset-bottom, 0px));
		left: 10px;
	}

	.tp-cookie-consent__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
		padding: 18px;
	}

	.tp-cookie-consent__title {
		font-size: 18px;
	}

	.tp-cookie-consent__actions {
		flex-direction: column;
	}

	.tp-cookie-consent__button {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 359px) {
	.tp-cookie-consent__inner {
		padding: 15px;
	}
}

