*{
	margin: 0;
	padding: 0;
}
body{
	background-color: #FFFFFF;
}
header{
	display: flex;
	position: sticky;
	top: 0;
	z-index: 100;
	justify-content: space-between;
	padding: 0 40px;
	height: 58px;
	text-align: center;
	align-items: center;
	width: 100%;
	background: #FFFFFF;
	border-bottom: 1px solid #F0F0F0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	box-sizing: border-box;
}
.center_header{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
header #titleco{
	display: none;
	position: relative;
	text-align: center;
	font-weight: 800;
	color: #000000;
	font-family: Briofont;
	letter-spacing: -2px;
	font-size: 24px;
	text-transform: uppercase;
	cursor: pointer;
}
.center_header img{
	display: block;
	position: relative;
	width: 1.5em;
	cursor: pointer;
	transition: all ease 0.3s;
}
.center_header img:hover{
	width: 1.8em;
}
header .blc_middlemenu{
	display: flex;
	position: relative;
	justify-content: flex-end;
	align-items: center;
	gap: 14px;
}
header .blc_menu_myaccount{
	display: flex;
	position: relative;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
}
header .oneimg_header{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	cursor: pointer;
	border-radius: 50%;
	transition: background-color 0.15s ease;
}
header .oneimg_header:hover{
	background-color: #EAECF0;
}
header .oneimg_header .material-symbols-outlined{
	font-size: 20px;
	color: #6B7280;
	transition: color 0.15s ease;
}
header .oneimg_header:hover .material-symbols-outlined{
	color: var(--color-orange);
}
/* Avatar pratiquant */
.pratiquant_avatar{
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: #E5E7EB;
	cursor: pointer;
	flex-shrink: 0;
	border: 2px solid transparent;
	transition: border-color 0.15s ease;
}
.pratiquant_avatar:hover{
	border-color: var(--color-orange);
}
.blc_visitor_nav{
	display: flex;
	align-items: center;
	gap: 0;
}
.blc_header_btn{
	display: flex;
	align-items: center;
	gap: 6px;
}
/* Séparateur vertical entre nav et boutons */
#btnSignUp{
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	border-radius: 100px;
	padding: 7px 16px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Manrope', sans-serif;
	color: #374151;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}
#btnSignUp:hover{
	background-color: rgba(176, 75, 61, 0.06);
	color: var(--color-orange);
}
#btnSignUp p{
	font-family: 'Manrope', sans-serif;
	color: inherit;
	font-weight: 500;
	transition: color 0.15s ease;
}
#btnSignIn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	background-color: var(--background-orange);
	color: #FFFFFF;
	border-radius: 100px;
	border: none;
	font-size: 14px;
	padding: 8px 22px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
}
#btnSignIn:hover{
	background-color: var(--color-orange);
}
#btnSignIn:active{
	transform: scale(0.98);
}
#btnSignIn p{
	font-family: 'Manrope', sans-serif;
	color: #FFFFFF;
	font-weight: 600;
}
/* Liens nav */
.one_link_header{
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 6px;
	cursor: pointer;
	transition: color 0.15s ease;
}
.one_link_header p{
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	font-family: 'Manrope', sans-serif;
	transition: color 0.15s ease;
}
.one_link_header:hover p{
	color: #4D2315;
}

.one_link_header.active p{
	color: #111111;
	font-weight: 700;
}
.one_link_header.active::after{
	opacity: 1;
	transform: scaleX(1);
	background: var(--color-orange);
}
/* ── Badge réservations en attente de paiement ── */
.resa-notif-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 26px;
	height: 22px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--color-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	font-family: 'Manrope', sans-serif;
	line-height: 18px;
	text-align: center;
	pointer-events: none;
	border: 2px solid #FFFFFF;
	box-shadow: 0 1px 4px rgba(232, 69, 44, 0.45);
	letter-spacing: 0;
}

/* NOTIFICATIONS */

.notif_contenant{
	display: none;
	position: absolute;
	min-width: 500px;
	right: 14px;
	top: 34px;
	padding: 12px 18px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 5px;
	border: 1px #EAEAEA solid;
	background-color: #FFFFFF;
	z-index: 300;
}
.notif_contenant h4{
	text-align: left;
	font-family: var(--font-family-btn);
	font-size: 16px;
	font-weight: 500;
	color: var(--font-color-title);
	padding-bottom: 8px;
}
.notif_container{
	padding: 8px 0;
	font-size: 12px;
	max-height: 400px;
	overflow-y: scroll;
}
.one_notif_content{
	display: flex;
	position: relative;
	padding: 8px 8px;
	margin-top: 4px;
	cursor: pointer;
}
.one_notif_content:hover p{
	opacity: 0.8;
}
.one_notif_content p{
	font-size: 14px;
	text-align: left;
}
.notreaded{
	background-color: #FFF6ED;
	border-radius: 5px;
}
.readed{
	border-top: 0.5px #EAEAEA solid;
}
.blc_notification_number{
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--background-orange);
	color: #FFFFFF;
	font-size: 10px;
	text-align: center;
	line-height: 20px;
	top: -5px;
	right: -5px;
}
.notif_topright_blc{
	display: flex;
	position: absolute;
	top:8px;
	right: 8px;
	padding:6px;
	border-radius: 5px;
	gap: 5px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.notif_topright_blc:hover{
	background-color: #F2F2F2;
}
/* Style de la checkbox */
.checkbox-container {
	display: flex;
	align-items: center;
}
.checkbox-container input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 2px;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	cursor: pointer;
	transition: background-color 0.3s, border 0.3s;
}
.checkbox-container input[type="checkbox"]:checked {
	background-color: #FFFFFF;
	border-color: #ccc;
}
.checkbox-container input[type="checkbox"]:checked::after {
	content: '\2713'; /* Code Unicode pour l'icône check */
	font-size: 14px;
	color: #ccc; /* Couleur de l'icône (blanc) */
	position: absolute;
	top: 6px;
	left: 8px;
}
/* Style du texte à côté de la checkbox */
.checkbox-label {
	font-size: 14px;
	color: #555;
	cursor: pointer;
}

.btn_menu_little{
	display: none;
}
.blc_menu_little{
	display: none;
}

/* BUTTON ETABLISSEMENT */
.nav_subtitle{
    font-size: 13px; 
    color: #7a7a7a;
    font-weight: 300;
    padding-top: 8px;
    padding-bottom: 6px;
    letter-spacing: 5%;
}
.gotoetablist{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
    border-radius: 5px;
    border: 1px solid rgb(211, 209, 207);
    background-color: transparent;
    width: 90%;
    box-shadow: 0px 4px 8px -2px rgba(211, 209, 207, 0.2);
    margin-bottom: 8px;
    cursor: pointer;
}
.content_etab_titre{
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px;
}
.holder_list_other_etablissements .content_etab_titre{
    cursor: pointer;
    transition: all 0.2s ease;
}
.holder_list_other_etablissements .content_etab_titre:hover{
    background-color: #F2F2F2;
}
.content_etab_titre img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.content_etab_titre p{
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    max-width: 110px;
    overflow: hidden;
    white-space: nowrap;
}
.gotoetablist span{
    font-size: 17px;
    color: rgb(141, 141, 141);
}
.flipped{
    transform: rotate(180deg);
}
.holder_list_other_etablissements{
    display: none;
    position: fixed;
    background-color: #FFFFFF;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    z-index: 12;
    border: 1px solid rgb(211, 209, 207);
    transform: translateY(-8px);
}
.new_etablissement_holder{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 7px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.new_etablissement_holder:hover{
    background-color: #F2F2F2;
}
.new_etablissement_holder p{
   font-size: 14px;
   color: rgb(120, 120, 120);
}
.new_etablissement_holder span{
    font-size: 16px;
    color: rgb(120, 120, 120);
 }



@media screen and (max-width: 850px){
	header{
		display: flex;
		position: relative;
		justify-content: space-between;
		padding: 0.5em 1.5em;
		text-align: center;
		align-items: center;
		margin: auto;
	}
	#nav_menu{
		display: none;
	}
	#holder_body{
		padding: 12px 0;
		width: 100%;
	}
	header h1{
		display: block;
		position: relative;
		text-align: center;
		font-weight: 800;
		font-size: 2em;
		color: #000000;
		letter-spacing: -2px;
	}
	.btn_menu_little{
		display: flex;
		align-items: center;
	}
	.hamburger_pratiquant{
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 36px;
		height: 36px;
		padding: 6px;
		border-radius: 6px;
		cursor: pointer;
		transition: background-color 0.15s ease;
	}
	.hamburger_pratiquant:hover{
		background-color: rgba(0,0,0,0.06);
	}
	.hamburger_pratiquant span{
		display: block;
		height: 2px;
		background-color: #374151;
		border-radius: 2px;
	}
	.blc_menu_little{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 8px;
		background-color: #FFFFFF;
		color: #FFFFFF;
		z-index: 300;
		height: 100%;
		overflow: hidden;
	}
	.blc_menu_little .list_menu{
		display: block;
		position: relative;
		margin-top: 65px;
	}
	.blc_menu_little .list_menu li{
		display: flex;
		position: relative;
		padding: 20px 1em;
		justify-content: space-between;
		align-items: center;
		color: #000000;
		cursor: pointer;
		transition: all 0.3s ease;
		font-size: 18px;
		font-weight: 500;
	}
	.next{
		transition: all 0.3s ease;
		width: 25px;
	}
	.liaccount{
		display: flex;
		align-items: center;
		gap: 1em;
	}
	.blc_menu_little .list_menu li:hover .next{
		left: 1em;
	}
	.back_btn{
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 1.2em;
		right: 1.2em;
		width: 36px;
		height: 36px;
		border-radius: 6px;
		cursor: pointer;
		transition: background-color 0.15s ease;
	}
	.back_btn .material-symbols-outlined{
		font-size: 20px;
		color: #374151;
	}
	.back_btn:hover{
		background-color: #F3F4F6;
	}
	header img:hover{
		width: 1.7em;
	}
	header .menu_blc{
		display: none;
	}
	header .blc_menu_myaccount{
		display: none;
	}
	#gotoAccount{
		width: 25px;
		height: 25px;
	}
}