/* Файл: local/components/osin/cookie.consent/templates/.default/style.css */

.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1040; /* ниже модальных окон Bootstrap (1050), выше остального контента */
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 16px 24px;
	background: #2c3e50;
	color: #fff;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .2);
	font-size: 14px;
	line-height: 1.5;
}

.cookie-consent__text {
	flex: 1 1 auto;
}

.cookie-consent__text a {
	color: #fff;
	text-decoration: underline;
}

.cookie-consent__accept {
	flex: 0 0 auto;
	min-width: 140px;
}

.cookie-consent--hidden {
	display: none;
}

@media (max-width: 575px) {
	.cookie-consent {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 14px 16px;
		text-align: center;
	}

	.cookie-consent__accept {
		width: 100%;
	}
}
