#cookie-consent-banner {
	position: fixed;
	display: none;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);   /* Center it */
  	width: calc(100% - 40px);
	max-width: 800px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	border-radius: 10px;
	opacity: 0.95;
	font-family: system-ui, sans-serif;
	font-weight: normal;
	color: #000000;
	z-index: 9999999999;
	border: 2px solid #493e24;

}

#cookie-consent-banner {
 
  background-image: url('/shared/images/style/cookie.JPG');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  overflow: hidden;

}

#cookie-consent-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

#cookie-consent-banner * {
  position: relative;
  z-index: 2;
}


#cookie-consent-banner h3 {color: #000;}
#cookie-consent-banner .btn-success {color: #000; background-color:#FFF; }


  #cookie-consent-banner .cookie-consent-options-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
  }
  #cookie-consent-toggle-options {
    font-size: 16px;       
    cursor: pointer;
    margin-top: 10px;
	color: #000;
  }


#cookie-consent-banner h3 {
	text-align: center;
	font-size: 30px;
	line-height: 37px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #FFF;
}
#cookie-consent-banner p {
	text-align: center;
	font-size: 18px;
	line-height: 26px;
	text-wrap: balance;
	margin-bottom: 20px;
}
#cookie-consent-banner label {
	font-size: 18px;
	line-height: 26px;
}
#cookie-consent-banner label input {
	margin-right: 7px;
}

#cookie-consent-banner .cookie-consent-options,
#cookie-consent-banner .cookie-consent-buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	gap: 20px;
}

#cookie-consent-banner .cookie-consent-buttons button {
	display: block;
	width: 200px;
	height: 50px;
	border: 0;
	border-radius: 10px;
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 23px;
}



#cookie-consent-banner .cookie-consent-buttons .btn-outline{
	background-color: #403f3f4a;
	color:#fff;
	border: 2px solid #FFF; 
}

#cookie-consent-banner .cookie-consent-buttons .btn-confirm{
	background-color: #FFF;
	color:#000;
	border: 1px solid #000;
	border-radius: 4px;
}

@media screen and (max-width: 980px)
{
	#cookie-consent-banner h3 {
		font-size: 20px;
		line-height: 25px;
	}
	#cookie-consent-banner p, #cookie-consent-banner .cookie-consent-options-vertical label, #cookie-consent-banner a {
		font-size: 14px;
		line-height: 16px;
	}

	#cookie-consent-banner .cookie-consent-buttons {
		flex-direction: column;
	}
}

.cookie-consent-overlay {
  display: none;                     /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);    /* Semi-transparent black */
  z-index: 1099999999;                     /* Just below the banner (which is 9999999999) */
}

#cookie-consent-banner .btn,
#cookie-consent-banner button {
  margin: 0.5rem 0.5rem 0 0;
  color: #fff;
  background-color: #28a745;
  border: none;
}

#cookie-consent-banner .btn-outline {
  background-color: transparent;
  border: 1px solid #fff;
}

#cookie-consent-banner label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FFF;
}

#cookie-consent-banner a {
	color: #FFF;
}
