﻿
#cookie-banner
{
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: white;
	border-top: 2px solid #177D9A;
	box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
	padding: 50px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95em;
	z-index: 9999;
	transition: transform 0.3s ease;
}

#cookie-banner.hidden
{
	transform: translateY(100%);
}

#cookie-banner span
{
	direction: rtl;
}

#cookie-banner button
{
	background-color: #177D9A;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 8px 14px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

#cookie-banner button:hover
{
	background-color: #e05588;
}

@media (max-width: 600px)
{
	#cookie-banner
	{
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
