.cookie-consent {
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10000;
	box-sizing: border-box;
	padding: 9px 15px;
	border-top: 1px solid #b7b7b7;
	background: #dddddd;
	color: #454545;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.35;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-consent.cookie-consent--visible {
	display: block;
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	gap: 20px;
}

.cookie-consent__text {
	margin: 0;
}

.cookie-consent__button {
	flex: 0 0 auto;
	min-width: 68px;
	padding: 3px 11px;
	border: 1px solid #888888;
	border-radius: 2px;
	background: #f5f5f5;
	color: #333333;
	font: inherit;
	line-height: 1.1;
	cursor: pointer;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
	border-color: #92345f;
	background: #ffffff;
	outline: 2px solid transparent;
}

@media (max-width: 700px) {
	.cookie-consent__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}

	.cookie-consent__button {
		align-self: flex-end;
	}
}
