.privacy-consent[hidden] {
	display: none;
}

.privacy-consent {
	position: fixed;
	z-index: 100000;
	right: 20px;
	bottom: 20px;
	left: 20px;
	font-family: "Montserrat", Arial, sans-serif;
	color: #1f1f1f;
}

.privacy-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 22px 24px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .12);
	box-shadow: 0 10px 35px rgba(0, 0, 0, .22);
}

.privacy-consent__content {
	max-width: 800px;
}

.privacy-consent__title {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.3;
}

.privacy-consent p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
}

.privacy-consent a,
.footer-privacy-links a,
.privacy-settings-link {
	color: #5B5B5B;
    font-size: 12px;
}

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

.privacy-consent__button {
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid #202020;
	border-radius: 0;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.privacy-consent__button--primary {
	color: #fff;
	background: #202020;
}

.privacy-consent__button--secondary {
	color: #202020;
	background: #fff;
}

.privacy-consent__button:focus-visible,
.privacy-settings-link:focus-visible {
	outline: 3px solid #d2a74c;
	outline-offset: 3px;
}

.footer-privacy-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.privacy-settings-link {
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-size: 12px;
	text-align: left;
	cursor: pointer;
}

@media (max-width: 800px) {
	.privacy-consent {
		right: 10px;
		bottom: 10px;
		left: 10px;
	}

	.privacy-consent__inner {
		display: block;
		max-height: calc(100vh - 20px);
		padding: 18px;
		overflow-y: auto;
	}

	.privacy-consent__actions {
		flex-direction: column-reverse;
		margin-top: 16px;
	}

	.privacy-consent__button {
		width: 100%;
	}
}
