.cookie-consent {
	position: fixed;
	bottom: 20px;
	right: 20px;
	left: 20px;
	transform: translateY(150%);
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	padding: 20px;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-content {
	text-align: center;
}

.cookie-content .mailing__form-btn-submit {
	font-size: 14px;
}

.cookie-text {
	margin-bottom: 12px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--dark-grey-text);
}

.cookie-link {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #1a71bf;
	cursor: pointer;
}
