/* cookie-consent.css */

#cookie-consent-banner {
	background: #e8ebf3;
	padding: 30px 50px;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	flex-direction: row;
}

.cookie-consent-banner-item {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cookie-consent-banner-item p {
	margin: 0;
	font-family: Arial;
	font-size: 16px;
	text-align: left;
	padding-left: 70px;
}

.cookie-consent-banner-item a {
	color: #203C88;
}

#accept-all, #accept-necessary,
#cookie-settings, #save-close {
	background: #203C88;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	margin: 0 3px; /* Add some margin for spacing */
	transition: background-color 0.3s;
}

#accept-all:hover, #accept-necessary:hover,
#cookie-settings:hover, #save-close:hover {
	background-color: #1a2a5a; /* Darken the button on hover */
}

#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

#cookie-settings-dialog {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border: 1px solid #ccc;
	z-index: 1001;
	width: 500px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	font: 14px Arial;
	text-align: left;
}

.switch {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 20px;
	margin-left: 10px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 20px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

.switch input:checked + .slider {
	background-color: #203C88;
}

.switch input:checked + .slider:before {
	transform: translateX(14px);
}

#close-dialog {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-size: 20px;
}

.cookie-categ {
	display: flex;
	align-items: center;
}
