/*
###############################################################################################################################################################
COOKIE
###############################################################################################################################################################
*/

#cookie_consent_popup {
	z-index: 11;
	position: fixed;
	background-color: hsla(var(--SHADE_SURFACE),var(--SAT_SURFACE),40%, 0.35);
	padding: 10px 25px;
	border-radius: var(--BUTTON_BORDER_RADIUS);
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

#cookie_consent_popup h1{
	font-size: 1.4rem/*1.2em*/;
	text-align: center;
	font-weight: bold;
	color: white;
}

#cookie_consent_popup h2{
	font-size: 1.0rem/*1.0em*/;
	color: white;
	font-weight: bold;
}

#cookie_consent_popup h1:before{
	content: "";
	padding: 0;
}

#cookie_consent_popup p{
	font-size: 0.8rem ;/*0.7em */
	color: white;
	margin-top: 0;

}

#cookie_consent_popup input[type=checkbox] {
    height: 15px;
    width: 15px;
}

#cookie_consent_popup #close_cookie_box{
	position: absolute;
	top: 1.25rem; right: 1.25rem;/*20px*/
	cursor: Gnter;
	font-size: 1.3rem/*1.3em*/;
}

#cookie_consent_popup #ok_cookie_box{
	position: absolute;
	bottom: 1.25rem;right:1.25rem/*20px*/;
	cursor: pointer;
	font-size: 1.6rem/*1.6em*/ ;
	padding: 0.63rem 1.25rem/*10 et 20px*/;
	font-weight: 700;
	color:white;
}

.flex {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-c-4-1-o1 {
    order: 1;
    flex: 4;
    padding-right: 8px;
}

.t-c-4-1-o2 {
    position: relative;
    height: 25px;
}

.t-c-4-1-o2 {
    order: 2;
    padding-right: 8px;
}

.Cookie-buttons-container {
    text-align: center;
    border-radius: var(--BUTTON_BORDER_RADIUS);
}

.Cookie-buttons-container button {
    margin: 0 3px;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 10;
	display: none;
}

body.cookie-popup-visible::before {
	display: block;
}

/*
###############################################################################################################################################################
RESPONSIVE
###############################################################################################################################################################
*/

/* For phones and small screens */
@media screen and (max-width: 896px) {
	/* a calc based on the side bar width is NOT supported */
	#cookie_consent_popup {
		top: calc(var(--HEADER_HEIGHT));
		width: 100%;
		height: calc(100% - var(--HEADER_HEIGHT));
		overflow-y: scroll;
	}
}

/* For PCs and larger screens */
@media screen and (min-width: 897px) {
	#cookie_consent_popup {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 35%;
		height: auto;
		margin: 0 auto; /* Center the box horizontally */
	}
}