.tb-cookie-consent {
			position: fixed;
			left: 0;
			right: 0;
			bottom: 0;
			z-index: 99999;
			background:
				radial-gradient(circle at 14% 0%, rgba(248, 217, 106, .12), transparent 28%),
				linear-gradient(180deg, #09111E 0%, #010205 100%);
			color: #F8F5EC;
			border-top: 1px solid rgba(248, 217, 106, .22);
			box-shadow: 0 -18px 56px rgba(0, 0, 0, .34);
			font-family: inherit;
		}

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

		.tb-cookie-consent__inner {
			width: min(calc(100% - 32px), 1180px);
			margin: 0 auto;
			padding: 14px 0;
			display: grid;
			grid-template-columns: minmax(0, 1fr) auto;
			gap: 16px;
			align-items: center;
		}

		.tb-cookie-consent__text {
			margin: 0;
			color: rgba(248, 245, 236, .86);
			font-size: 13px;
			line-height: 1.55;
		}

		.tb-cookie-consent__text strong {
			color: #ffffff;
		}

		.tb-cookie-consent__text a {
			color: #F8D96A;
			font-weight: 800;
			text-decoration-color: rgba(248, 217, 106, .55);
		}

		.tb-cookie-consent__actions {
			display: flex;
			gap: 10px;
			align-items: center;
			justify-content: flex-end;
		}

		.tb-cookie-consent__button {
			min-height: 40px;
			padding: 0 16px;
			border-radius: 10px;
			border: 1px solid rgba(248, 217, 106, .48);
			font-size: 13px;
			font-weight: 900;
			cursor: pointer;
			white-space: nowrap;
		}

		.tb-cookie-consent__button--reject {
			background: rgba(255, 255, 255, .06);
			color: #F8F5EC;
		}

		.tb-cookie-consent__button--accept {
			background: linear-gradient(180deg, #F8D96A 0%, #D6A51E 100%);
			color: #05070B;
			border-color: rgba(169, 122, 6, .35);
		}

		@media (max-width: 760px) {
			.tb-cookie-consent__inner {
				grid-template-columns: 1fr;
				gap: 12px;
			}

			.tb-cookie-consent__actions {
				justify-content: stretch;
			}

			.tb-cookie-consent__button {
				flex: 1;
			}
		}
