/* Плашка согласия на cookies — стили в духе темы MH Magazine Lite */
.mh-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.6;
	background: #2a2a2a;
	color: #fff;
	padding: 14px 25px;
	border-top: 5px solid #8f3433;
	-webkit-box-shadow: 0 -2px 10px rgba(50, 50, 50, 0.17);
	-moz-box-shadow: 0 -2px 10px rgba(50, 50, 50, 0.17);
	box-shadow: 0 -2px 10px rgba(50, 50, 50, 0.17);
	display: none;
}

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

.mh-cookie-consent-inner {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
}

.mh-cookie-consent-text {
	flex: 1;
	min-width: 0;
	margin: 0;
}

.mh-cookie-consent-text a {
	color: #f7f7f7;
	text-decoration: none;
}

.mh-cookie-consent-text a:hover {
	color: #8f3433;
}

.mh-cookie-consent-btn {
	display: inline-block;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	padding: 10px 20px;
	background: #8f3433;
	border: 0;
	cursor: pointer;
	text-transform: uppercase;
	-webkit-transition: 0.25s ease-out;
	-moz-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.mh-cookie-consent-btn:hover {
	background: #e64946;
	color: #fff;
}

@media (max-width: 640px) {
	.mh-cookie-consent {
		padding: 14px 20px;
	}

	.mh-cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.mh-cookie-consent-btn {
		align-self: center;
	}
}
