/* Cookie consent bar — loaded with message_cookie() */

#message_info_cookie {
	width: calc(100% - 48px);
	max-width: 1200px;
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	padding: 18px 22px;
	background: rgba(41, 41, 41, 0.97);
	border-radius: 4px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
	z-index: 3001;
	text-align: left;
	box-sizing: border-box;
}

#message_info_cookie .cookie_banner_inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 20px;
	justify-content: space-between;
}

#message_info_cookie .cookie_banner_text {
	flex: 1 1 280px;
	margin: 0;
	color: #fff;
	font-size: 13px;
	line-height: 1.45;
}

#message_info_cookie .cookie_banner_actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	flex: 0 1 auto;
}

#message_info_cookie a.cookie_btn {
	display: inline-block;
	padding: 10px 18px;
	font-size: 13px;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 3px;
	cursor: pointer;
	border: none;
	font-family: inherit;
	text-align: center;
	white-space: nowrap;
}

#message_info_cookie a.cookie_btn_accept {
	background: #fff;
	color: #292929;
	font-weight: 600;
}

#message_info_cookie a.cookie_btn_accept:hover {
	background: #e8e8e8;
}

#message_info_cookie a.cookie_btn_reject {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.55);
}

#message_info_cookie a.cookie_btn_reject:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

#message_info_cookie a.sv_pl_cookie {
	color: #fff;
	text-decoration: underline;
	font-size: 13px;
	white-space: nowrap;
}

#message_info_cookie a.sv_pl_cookie:hover {
	color: #ddd;
}

@media (max-width: 700px) {
	#message_info_cookie {
		width: calc(100% - 24px);
		bottom: 8px;
		padding: 14px 16px;
	}

	#message_info_cookie .cookie_banner_inner {
		flex-direction: column;
		align-items: stretch;
	}

	#message_info_cookie .cookie_banner_actions {
		flex-direction: column;
		width: 100%;
	}

	#message_info_cookie a.cookie_btn {
		width: 100%;
	}
}
