body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}
/* Cookie consent banner styling */
.cookie-consent-banner1 {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	color: black;
	background-color: #9fddf5;
	font-size: 16px;
	text-align: center;
	z-index: 1000;
	background-image:url('../../images/hlabels/main-background-3.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 1.5em 60px;
	border-radius: 2em;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}

.cookie-consent-banner h3 {
	color: black;
	margin-bottom: 0.5em;
}

.cookie-consent-banner p {
	font-size: 1.1em;
	margin: 0.5em 0 1.5em;
}

.cookie-consent-button {
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	margin: 5px;
	cursor: pointer;
	border-radius: 6px;
	transition: background-color 0.3s, box-shadow 0.3s;
}

.cookie-consent-button:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	background-color: black !important;
}

.cookie-consent-button:active {
	opacity: 0.8;
}

.cookie-consent-button.btn-success {
	background-color: #383281; /* Button color */
	color: #fff; /* Text color */
}
.cookie-consent-button.btn-success:hover {
background-color: #271f85; /* Darker on hover */
}

.cookie-consent-button.btn-grayscale {
	background-color: #494769;
	color: white;
}

.cookie-consent-button.btn-outline {
	background-color: #3c3870;
	color: white;
}

.cookie-consent-options {
display: block; /* Changed from flex to block */
flex-direction: column; /* Stack items in a column */
align-items: flex-start; /* Align items to the start */
margin-bottom: 10px; /* Bottom margin */
margin-top: 40px; /* Top margin */
max-height: 200px; /* Max height for scrollable area */
overflow-y: auto; /* Enable vertical scroll */
text-align: left; /* Align text to the left */
}

.checkbox-items {
align-items: center; /* Align items vertically */
margin-bottom: 15px; /* Space between checkbox items */
}

.checkbox-input {
margin-right: 10px; /* Space between checkbox and label */
accent-color: #564cc7; /* Custom color for the checkbox */
}

.checkbox-label {
font-size: 16px; /* Font size */
font-weight: bold;
}

.checkbox-description {
font-size: 0.9em; /* Slightly smaller font size for descriptions */
color: #666; /* Lighter color for better readability */
margin-left: 30px; /* Space to indent description */
margin-top: 5px; /* Space between checkbox label and description */
}

.cookie-consent-button.btn-primary1 {
background-color: #564cc7; /* Primary button */
color: #fff; /* Text color */
}
.cookie-consent-button.btn-primary1:hover {
background-color: #271f85; /* Darker on hover */
}
/* Modal overlay styling */
.modal1 {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image:url('../../images/hlabels/main-background-3-1080.webp');
	background-size: cover;
	justify-content: center;
	align-items: center;
	display: flex;
}

/* Modal content styling */
.modal1-content1 {
	position: relative;
	background-color: #ffffff;
	padding: 20px;
	border-radius: 2em;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	width: 80%;
	max-width: 800px;
	text-align: center;
	max-height: 80vh;
	overflow-y: auto;
}

.modal1-content1 h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.close-button {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	color: #564cc7;
	cursor: pointer;
}

.close-button:hover {
	color: #271f85;
}

@media screen and (max-width: 991px) {
	.cookie-consent-banner1 {
		background-image:url('../../images/hlabels/main-background-3-1080.webp');
	}
}

@media screen and (max-width: 767px) {
	.cookie-consent-banner1 {
		background-image:url('../../images/hlabels/main-background-3-800.webp');
	}
}

@media screen and (max-width: 479px) {
	.cookie-consent-banner1 {
		background-image:url('../../images/hlabels/main-background-3-500.webp');
	}
}