/****************************** 
ARCHITECTURE DE CE FICHIER CSS
*******************************/

/* Ce fichier CSS se compose des sections suivantes :

/*===================================
- MISE EN PAGE GENERIQUE DES ELEMENTS
\*===================================


/*==============================================================
-  MISE EN PAGE SPECIFIQUE DES ELEMENTS : MOBILE SIZE - PORTRAIT
\*==============================================================
	- PAGE INDEX
	- PAGE A PROPOS
	- PAGE PORTFOLIOS
	- PAGE GALERIE
	- PAGE IMAGE


	- FENETRE MODALE "En Construction"
	- LES SEPARATEURS
	- FOOTER


/* Partie ci-dessous non revue pour la version 2 du site	
	- MENU DES ICONES
	- MENU BOUTONS DES PORTFOLIOS
	- FENETRE MODALE "Famille"
	- PAGE ACCUEIL
	- FENETRE MODALE "Image pleine écran"
	- MESSAGE DE PROBLEME D'AFFICHAGE PAGE


/*===========================================
- MOBILE SIZE PORTRAIT TO COMPUTER TRANSITION
\*===========================================
	- MEDIA min-width: 421px
	- MEDIA min-width: 599px
	- MEDIA min-width: 1000px


*/






							/*_______________________*/








/*=====================================================================*\ 
  MISE EN PAGE GENERIQUE DES ELEMENTS
  =====================================================================
  =====================================================================
  =====================================================================
  =====================================================================
\*=====================================================================*/

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	text-decoration: none;		/*Utile pour les <button>*/
	border: 0px;				/*Utile pour les <a>*/
	font-size:15px ;
	color: rgb(89,89,89);
	background-color: #ffffff;
	font-family:Bahnschrift SemiBold, GungsuhChe, Arial , Helvetica, sans-serif;
}

/* Balise "pre" utilisée pendant le débogage du site pour afficher des variables */
pre {
	width:100%;
	padding:20px;
	color:black;
	background-color: #ce8181;
	border-style:solid;
	border-width: 2px;
	border-radius: 10px;
	border-color: red;
}

textarea {
	resize: none;
	padding: 0px 15px 0px 15px ;
}



/*=====================================================================*\ 
  MISE EN PAGE SPECIFIQUE DES ELEMENTS :
  - MOBILE SIZE PORTRAIT
  =====================================================================
  =====================================================================
  =====================================================================
  =====================================================================
\*=====================================================================*/

/* Cette section comprend :
	- PAGE INDEX
		- Container	
		- Section haute (titre, boutons, icones)
		- Section basse (photo)

	- PAGE APROPOS

	- PAGE PORTFOLIOS
		- Container
		- Header
			- Header - Navbar (boutons)
			- Header - Navbar (icones)
			- Header - Iconbar
			- Main (liste des portfolios)

	- PAGE GALERIE
		- Container
		- Header
			- Header
			- Header - Titre
			- Header - Iconbar
			- Header - Description (comportement modal)
			- Header -  Sous-titre
		- Main
			- Main
			- Main - Div
			- Main - Images

	- PAGE IMAGE
		- Container
		- Header
		- Main
		- Carrousel

	- PAGE LOGIN "Privé"

	- FENETRE MODALE "En Construction"
	- LES SEPARATEURS
	- FOOTER
	- MESSAGE DE PROBLEME D'AFFICHAGE DE LA PAGE


/* Partie ci-dessous non revue pour la version 2 du site	
	- MENU DES ICONES
	- MENU BOUTONS DES PORTFOLIOS
	- MESSAGE DE PROBLEME D'AFFICHAGE PAGE




/* PAGE INDEX _____________________________________________ */
/*__________________________________________________________*/
.index_pagecontainer {
	position: fixed;  /*permet de figé l'écran*/
	width: 100%;
	height: 100%;
}

/* PAGE INDEX - Section haute (titre, boutons, icones) ---------------- */
.index_section_haute{
	position: relative;
	padding:20px 0px 10px 0px;
}
.index_titre {
	text-align: center;
}
.index_author {
	font-size:25px;
}
.index_navbar {
	display:flex;
	flex-direction: column;
	align-items:center;
	margin-top: 15px;
}
.index_navbar_btn{
	font-size:18px;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 2px 10px;
	color: rgb(89,89,89);
	border-right: 1px solid #888;
	border-bottom: 1px solid #888;
	border-radius: 5px;
	box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.6);
}
.index_navbar_btn:hover{
	background-color: rgb(214, 214, 214);;
}
#navbar_btn_index_fineart{
	font-size:25px;
}

/* PAGE INDEX - Section basse (photo) ---------------- */
.index_section_basse{
	overflow: hidden;    /*permet de couper l'image si elle dépasse de ce div*/
}
.index_picture{
	text-align: center;  /*centre l'image contenu dans cette balise*/
	position:relative;   /*permet d'avoir l'image "enfant" en position relative*/
}
.index_picture_image{
	position:relative;   /*permet de repositionner l'image*/
	height:550px;
	width : auto;
	/* Les 2 lignes suivantes permettent de centrer l'image horizontalement : */
	left: 50%;
    transform: translateX(-50%);
}




/* PAGE A PROPOS _________________________________________ */
/*__________________________________________________________*/
.apropos_pagecontainer {
	display:flex;
	flex-direction: column;
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding: 10px 10px 0px 10px;
	left: 0;
	top: 0;
	width:100%;
	height: 0px;
	overflow: hidden;
	background-color: white;
	transition: height 0.2s;
}
.apropos_header{
	display:flex;
	justify-content:flex-end;
	margin:0px;
	padding:15px 25px 15px 0px;
}
.apropos_iconbar_btn{
	height: 25px;
	margin: 0px;
	padding: 0px;
}
.apropos_iconbar_icon{
	height:25px;
}
.apropos_main{
	margin-top: 20px;
	padding: 0px 10px 0px 10px;
}
.apropos_image1{
	float: left;
	margin: 0px 10px 0px 0px;
	max-height: 95px;
}
.apropos_image2{
	float: right;
	margin: 0px 0px 0px 10px;
	max-height: 95px;
}
.apropos_p {
	text-align: justify;
}
.firstletter{
	font-size: 150%;
}




/* PAGE PORTFOLIOS _________________________________________ */
/*__________________________________________________________*/
.portfolio_pagecontainer{
	/* overflow: hidden; */
	background-color: white;
	width:auto;
	min-height: 100vh;    /*cela permet de couvrir la hauteur totale de la page*/
}

/* PAGE PORTFOLIOS - Header ---------------- */
.portfolio_header{
	position:fixed;
	z-index: 2;
	padding: 20px 10px 0px 10px;
	width:100%;
}
.portfolio_header_menu{
	display:flex;
}

/* PAGE PORTFOLIOS - Header - Navbar (boutons) ---------------- */
.portfolio_navbar_portfolios {
	display: flex;
	flex-direction:column;
	width: 85%;
	padding: 0px 10px;
}
.portfolio_navbar_ligne{
	display:grid;
	grid-template-columns: 1.8fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	column-gap: 7px;
	row-gap: 7px;
}
.portfolio_navbar_form {
	line-height: 35px;
	text-align: center;
}
.portfolio_navbar_btn{
	font-size: 16px;
	width: 100%;
	height: 100%;
	padding:2px 10px;
	border-right: 1px solid #888;
	border-bottom: 1px solid #888;
	border-radius: 5px;
	box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.6);
	/* background-color: white;    */
}
.portfolio_navbar_btn:hover{
	background-color: rgb(214, 214, 214);
}
#navbar_btn_fineart{
	font-size: 25px;
}
#portfolio_navbar_form_fineart{
	grid-column: 1;
	grid-row: 1 / 3;
}

/* PAGE PORTFOLIOS - Header - Navbar (icones) ---------------- */
.portfolio_navbar_icon{
	display:flex;
	flex-direction: column;
	row-gap: 17px;
	margin:0px;
	padding:5px 15px 0px 20px;
	width: 15%;
	left:0px;
}
/* note : "portfolio_navbar_form" est défini ci-dessus */
.portfolio_navbar_icon_btn{
	height: 25px;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
.portfolio_navbar_icon_img{
	height: 25px;
	margin: 0px;
	padding: 0px;
}

/* PAGE PORTFOLIOS - Header - Iconbar ---------------- */
.portfolio_iconbar{
	display:flex;
	justify-content:flex-end;
	margin:0px;
	padding:5px 15px 15px 0px;
}

.portfolio_iconbar_btn_visible{
	height: 25px;
	margin: 0px;
	padding: 0px;
}

.portfolio_iconbar_btn_invisible{
	height: 25px;
	margin: 0px;
	padding:0px;
	display:none;
}

.portfolio_iconbar_icon{
	height:25px;
	right:20px;
}

/* PAGE PORTFOLIOS - Main (liste des portfolios) ---------------- */
.portfolio_main{
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
	flex-wrap: wrap;
	padding: 170px 10px 0px 10px;
}
.portfolio_main_form{
	width: 100%;
	padding: 0px 5px 17px 5px;
}
.portfolio_main_form_p {
	font-size:13px; 
	margin-left: auto;
	text-transform: uppercase;
}
.portfolio_main_form_btn{
	width: 100%;
	padding: 0px;
	border: none;
}
.image_portfolio {
	width: 100%;
	vertical-align: bottom;
}




/* PAGE GALERIE _________________________________________ */
/*________________________________________________________*/
.galerie_pagecontainer {
	overflow: hidden;
	background-color: white;
	width:auto;
	min-height: 100vh;    /*permet de couvrir la hauteur totale de la page*/
}

/* PAGE GALERIE - Header ---------------- */
.galerie_header{
	position:fixed;
	width:100%;
	padding: 20px 10px 20px 10px;
}

/* PAGE GALERIE - Header - Titre ---------------- */
.galerie_header_titre{
	display:grid;
	grid-template-columns: 1fr 1fr ;
	justify-content:start;
	vertical-align: middle;
}
.galerie_div_du_p{
	height: 45px;
	line-height: 45px;
	padding: 0px 0px 0px 20px;
}
.galerie_header_titre_gal{
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	font-size:20px ;
}

/* PAGE GALERIE - Header - Iconbar ---------------- */
.galerie_iconbar{
	justify-self: end;
	display:flex;
	justify-content:flex-end;
	column-gap: 25px;
	padding:5px 20px 5px 0px;
}
.galerie_iconbar_disp_none{
	display:none;
}
.galerie_iconbar_visible{
	visibility:visible;
}
.galerie_iconbar_invisible{
	visibility:hidden;
}
.galerie_iconbar_icon{
	height:20px;
}
.galerie_iconbar_icon_fleche{
	height:20px;
	width:30px;
}

/* PAGE GALERIE - Header - Description (comportement modal) ---------------- */
.galerie_modal_description {
	width: 100%;
	height: 0px;
	overflow: auto;   /*Enable scroll if needed*/
	background-color: rgb(255, 255, 255); /* white color */
	background-color: rgba(255, 255, 255, 0.9); /* white w/ opacity */
	transition: height 0.3s;
	/* margin-top: 10px; */
}
.galerie_modal_fond{
	background-color: white;
	padding: 0px 10px 20px 10px;
}
.galerie_modal_div_btn{
	padding-top:20px;
	background-color: white;
	text-align: right;
	padding-right: 90px;
}
.galerie_modal_icon{
	height:20px;
	width:30px;
}
.galerie_modal_description p {
	font-size: 15px;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	width: 100%;
	background-color: white;
}
.galerie_modal_ss_titre{
	width: 100%;
	padding: 0px 0px 15px 35px;
}
.galerie_modal_grid{
	display: grid;
	grid-template-columns:10px auto;
	grid-column-gap: 10px;
	justify-items: start;
	align-items: center;
}
.galerie_modal_grid img {
	height:13px;
	width: 10px;
}
.galerie_modal_grid p {
	grid-column-start: 2;
	display: inline-block;
	color:rgb(89,89,89);
	line-height: 25px;
}

/* PAGE GALERIE - Header - Sous-parties ---------------- */
.galerie_div_ss_titre{
	width: 100%;
	padding: 10px 0px 0px 35px;
}
.galerie_grid_ss_titre_form{
	display: grid;
	grid-template-columns:10px auto;
	grid-column-gap: 10px;
	justify-items: start;
	align-items: center;
}
.galerie_grid_ss_titre_form img {
	height:13px;
	width: 10px;
}
.galerie_icon_flechedte_invisible{
	visibility:hidden;
}
.galerie_icon_flechedte_visible{
	visibility:visible;
}
.galerie_ss_titre{
	grid-column-start: 2;
}
.galerie_ss_titre p {
	color:rgb(191,191,191);
	line-height: 25px;
}

/* PAGE GALERIE - Main ---------------- */
.galerie_main{
	margin-top: 120px;
	padding: 0px 0px 30px 0px;
	display: flex;
}
.pair{
	display:flex;
	flex-direction: column;
	width: 50%;
	height: auto;
	padding: 0px 7px 0px 15px;
}
.impair{
	display:flex;
	flex-direction: column;
	width: 50%;
	height: auto;
	padding: 0px 15px 0px 7px;
}
.galerie_main_form{
	margin: 0;
	display: inline-block;
	margin-bottom: 0px;
	width: 100%;
	padding-bottom: 15px;
}
.button_galerie {
	width:100%;
	border: none;
	text-align: center;
}
.image_galerie {
	width: 100%;
	vertical-align: bottom;
}




/* PAGE IMAGE     _________________________________________ */
/* ________________________________________________________ */
.image_pagecontainer {
	overflow: hidden;
	background-color: white;
	width:100%;
	height: 100vh;    /*permet de couvrir la hauteur totale de la page*/
}

/* PAGE IMAGE - Header ---------------- */
.image_header{
	display:flex;
	justify-content:flex-end;
	padding: 15px 20px 15px 10px;
	background-color: white;
}
.image_iconbar_btn_visible{
	visibility:visible;
}
.image_iconbar_icon{
	height:20px;
}
.memo{
	display: none;
}

/* PAGE IMAGE - Main ---------------- */
.image_main{
	overflow: hidden;
	/* note : la hauteur du Main est calculée en bas de page image.php */
}
.image_section_carrouselHaut{
	height:100%;
}
.carrousel {
	position: relative;
	overflow: hidden;
}
.carrousel__container {
	display: flex;
	flex-direction: column;
	transition: transform 0.3s;
	transform: translate3d(0, 0, 0);
}
.carrousel__item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}	
.item_image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}	
.item img{
	max-width: 100%;
	max-height: 100%;
}	
/* permet de prendre en compte la hauteur des éléments contenus, même s'ils sont en float 
=> a priori pas utile ici ... bizarre car ça devrait être utile, donc je le laisse*/
/* .carrousel__container::after{
	content: '';
	clear: both;
	display: table;
} */
.item::after{
	content: '';
	clear: both;
	display: table;
}




/* CARROUSEL ___________________________________________*/
/* _____________________________________________________ */
/* Gestion des flèches du carrousel */
.carrousel__next, .carrousel__prev {
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: white;
	background-image: url(../images/icones/icon_fleche_dte.png);
	background-position: center center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	border-radius: 50%;
	top: 50%;
	margin-top: -20px;
	right: 10px;
	box-shadow: 0 15px 35px #3232321a, 0 5px 15px #0000001a;
	cursor: pointer;
	opacity: 0.33;
	transition: transform 0.3s;
	display: none;
}

.carrousel__next:hover, .carrousel__prev:hover {
	transform: scale(1.2);
}

.carrousel__prev {
	right: auto;
	left: 10px;
	background-image: url(../images/icones/icon_fleche_gche.png);
}

.carrousel__next__hidden, .carrousel__prev__hidden {
	display: none;
}

.carrousel__hidden {
	display: none;
}




/* PAGE LOGIN "Privé" _____________________________________ */
/*__________________________________________________________*/

.prive_pagecontainer{
	width:100%;
	height: 100%;
}

/* PAGE LOGIN "Privé" - Icone "paramètre" ---------------- */
.prive_login_iconbar{
	display: flex;
	flex-direction: row-reverse;
	padding:25px 35px 30% 0px;
}
.prive_login_iconbar_img{
	height: 25px;
	margin: 0px;
	padding: 0px;
}

/* PAGE LOGIN "Privé" - Main ---------------- */
.prive_login_main {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0px 20px 0px 20px;
	padding: 30px 0px 30px 0px;
	border-top: 1px solid rgb(89,89,89);
	border-bottom: 1px solid rgb(89,89,89);
	max-width: 500px;
}
.prive_login_main p{
	line-height: 20px;
	font-size:16px;
	text-align: center;
}
#prive_login_invite_texte{
	margin-top:50px;
}
.prive_input{
	line-height: 30px;
	text-align: center;
	font-size:16px; 
	margin: 20px 0px 20px 0px;
	border: 1px solid rgb(61, 24, 230);
}
.prive_login_buttons{
	display: flex;
	justify-content: space-evenly;
	margin-top: 60px;
	width: 100%;
}
.prive_login_buttons button {
	width: 100px;
  	height: 35px;
	border: 1px solid rgb(89, 89, 89);
	border-radius: 5px;
	background-color: #afc4ffe3;
}




/* FENETRE LOGIN "Admin" ___________________________ */
/* _________________________________________________ */
.accueil_login_admin {
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 10px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

.accueil_login_admin_form {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fefefe;
	margin: auto;
	padding: 10px 20px 10px 20px;
	border: 1px solid #888;
	width: 92%;
	max-width: 500px;
}
  
.accueil_login_admin_form p{
	color: black;
	line-height: 20px;
	font-size:16px;
	text-align: center;
}

.admin_mot_de_passe{
	line-height: 30px;
	text-align: center;
	font-size:16px; 
	margin-top: 20px;
}

.accueil_login_admin_buttons{
	display: flex;
	justify-content: space-evenly;
	margin-top: 20px;
	width: 100%;
}

.accueil_login_admin_buttons input {
	width: 90px;
  	height: 35px;
}




/* FENETRE MODALE "En Construction" ___________________________ */
.Modal_En_Construction {
	display: none;  /*Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 2; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	background-color: rgba(255,255,255);  /*Black w/ opacity */
}

.Modal_Construction_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fefefe;
	padding: 15px 0px 20px 0px;
	width: 100%;
}

.Modal_Construction_texte{
	text-align: center;
	font-size:20px ;
	color: red;
}
.Modal_Construction_img{
	margin: 20px 0px 40px 0px;
	width: 200px;
}

.Modal_Construction_btn{
	height: 45px;
	width: 80px;
	border: 1px solid #888;
	border-radius: 5px;
}




/* LES SEPARATEURS ________________________________________ */
.trait_separation_1 {
	height:1px;
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: rgb(89,89,89);
}	

/* .trait_separation_2 {
	margin: 13px 10px 13px 10px;
	background-color: rgb(89,89,89);
} */	




/* FOOTER __________________________________________________ */
.footer {
	justify-self: flex-end;
	margin-bottom: 20px;
	margin-top: auto;
	text-align: center;
}	
.footer_texte{
	font-size:12px;
}	




/* MESSAGE DE PROBLEME D'AFFICHAGE DE LA PAGE _____________________*/
.pbaffichage {
	padding:150px 20px 0px 20px;
	background-color: black;
	width: 100%;
	min-height: 100vh;
	text-align: center;
}
.pbaffichage p {
	padding:30px 0px 30px 0px;
	color:red;
	text-align:center;
	font-size:18px;
}
.pbaffichage p:last-child {
	border: solid 2px red;
	margin-top:100px;
	padding: 15px;
	width: 100px;
	margin-left: 50%; /*poussé de la moitié de la largeur du référent */
	transform: translateX(-50%); /*tiré de la moitié de ses propres dimensions */
}


























/*_______________Au-desous de cette zone le code css n'a pas été revu________________*/
/*___________________________________________________________________________________*/


/* MENU DES ICONES ___________Devrait pourvoir etre supprimé_________________*/
.navbar_icon_div {
	display: flex;
	justify-content: flex-end;
	margin: 0px 8px 0px 8px;
}
.navbar_icon_div button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	border: none;
	background-color: black;
}
.navbar_icon_div img {
	height: 27px;
}
















/* PAGE ADMIN GESTION ___________________________________________*/
/* PAGE ADMIN GESTION - Container ------------*/
.admin_pagecontainer {
	overflow: hidden;
	background-color: black;
	width:auto;
	min-height: 100vh;    /*permet de couvrir la hauteur totale de la page*/
	padding: 10px;
}

/* PAGE ADMIN GESTION - Header ------------*/
.admin_titre {
	margin: 20px 0px 20px 0px;
	background-color: #663300;
	text-align: center;
	line-height: 3rem;
}
.admin_titre p {
	font-size:35px;
}
.admin_navbar{
	display: flex;
	justify-content: flex-start;
	margin: 40px 50px 20px 50px;
}
.admin_navbar_onglets{
	display: flex;
	justify-content: flex-start;
}
.admin_navbar_onglets p{
	user-select: none;
	width: 200px;
	padding: 0px 20px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	border-top-right-radius: 20px 100%;
	background-color: #663300;
}
.onglet_selected{
	opacity: 100%;
}
.onglet_non_selected{
	opacity: 50%;
}
.onglet_non_selected:hover{
	opacity: 60%;
}
.admin_navbar_btn{
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
}
.admin_navbar_btn p {
	width: 150px;
	margin-left: 10px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	background-color:tomato;
	border: 1px solid white;
}
.admin_navbar_btn span {
	vertical-align:middle;
	display:inline-block;
	line-height: 1.2rem;
}

.admin_texte {
	margin: 40px 0px 40px 50px;
}

.admin_texte p {
	font-size:16px;
	line-height: 1.2rem;
}

/* PAGE ADMIN GESTION - Main ------------*/
.admin_main {
	margin: 40px 50px 40px 50px;
}
/*Mise en forme des tableaux des portfolios*/
.admin_table{
	table-layout: fixed;
	width: 650px;
	margin: 0px 0px 40px 0px;
}
.admin_table_titre td:nth-child(1){
	width: 150px;
}
.admin_table_titre td:nth-child(2){
	width: 400px;
}
.admin_table_titre td:nth-child(3){
	width: 100px;
	padding: 0px 0px 3px 0px;
}
/*Mise en forme du titre de chaque portfolio*/
.admin_table_colonne1 p {
	text-transform: capitalize;
}
/*Mise en forme des boutons editer et ajouter*/
.form_ajouter button{
	line-height: 1.5rem;
	background-color: blue;
	text-align: center;
	border: none;
	color: white;
	font-size: 16px;
	width: 400px;
}
.form_editer button{
	line-height: 1.5rem;
	background-color: green;
	text-align: center;
	border: none;
	color: white;
	font-size: 16px;
	width: 100px;
}


/* PAGE ADMIN MYSQL ___________________________________________*/

/* ------ PAGE ADMIN MySQL - Header -----------------*/
/* Pour le header, voir PAGE ADMIN GESTION*/

/* ------ PAGE ADMIN MySQL - Main -----------------*/
/* Pour le main, voir PAGE ADMIN GESTION*/

/* ------ PAGE ADMIN MySQL - Main : Tableau liste des champs -----------------*/
/*Gestion du texte d'introduction */
.texte_intro_liste_champ{
	margin-bottom: 30px;
}
.texte_intro_liste_champ p {
	text-decoration: underline;
}
/*Mise en forme du div contenant le tableau de la liste des champs et de leur définition*/
.admin_mysql_div_champs{
	margin-bottom: 70px;
}
/*Mise en forme du tableau des champs et de leur définition*/
.admin_mysql_table_champs {
	table-layout: fixed;
	width: 1200px;
	border-collapse:collapse;
	margin-bottom: 30px;
}
.admin_mysql_table_champs_titre{
	background-color: #663300;
}
.admin_mysql_table_champs_titre td:nth-child(1){
	width: 200px;
}
.admin_mysql_table_champs_titre td:nth-child(2){
	width: 450px;
}
.admin_mysql_table_champs_titre td:nth-child(3){
	width: 550px;
}
/*Mise en forme des colonnes*/
.admin_mysql_table_champs td {
	border: 1px solid #663300;
	line-height: 1.7rem;
	padding-left: 30px;
}
.admin_mysql_table_champs td p {
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
/*Mise en forme des bordures de la ligne de titre*/
.admin_mysql_table_champs_titre td{
	border-right: 1px solid black;
}
.admin_mysql_table_champs_titre td:last-child{
	border-right: 1px solid #663300;
}



/* ------ PAGE ADMIN MySQL - Main : Tableau de la base de données -----------------*/
/*Gestion du texte d'introduction */
.texte_intro_bdd{
	margin-bottom: 30px;
}
.texte_intro_bdd p {
	text-decoration: underline;
}

/*Positionnement du div contenant le tableau des enregistrements*/
.admin_mysql_div_bdd{
	margin-bottom: 70px;
}

/*Gestion du format du tableau*/
.admin_mysql_table_bdd{
	table-layout: fixed;
	width: 100%;
	border-collapse:collapse;
	empty-cells : show;
}

/*Couleurs de fond et des bordures, et centrage du texte*/
.admin_mysql_table_bdd_titre{
	background-color: #663300;
}
.admin_mysql_table_bdd td {
	border: 1px solid #663300;
	text-align: center;
}
.admin_mysql_table_bdd_titre td{
	border-right: 1px solid black;
}
.admin_mysql_table_bdd_titre td:last-child{
	border-right: 1px solid #663300;
}

/*Réalignement du texte pour certaines colonnes*/
.admin_mysql_table_bdd td:nth-child(6), td:nth-child(7), td:nth-child(8) {
	text-align: left;
	padding-left: 5px;
}
.admin_mysql_table_bdd tr:first-child td:nth-child(6), tr:first-child td:nth-child(7), tr:first-child td:nth-child(8) {
	text-align: center;
}

/*Gestion des largeurs des colonnes (le total devant faire 100%) */
.admin_mysql_table_bdd_titre td:nth-child(1), td:nth-child(3), td:nth-child(9), td:nth-child(10), td:nth-child(13) {
	width:2%;
}
.admin_mysql_table_bdd_titre td:nth-child(2), td:nth-child(5) {
	width:5%;
}
.admin_mysql_table_bdd_titre td:nth-child(4), td:nth-child(6), td:nth-child(8), td:nth-child(11), td:nth-child(12) {
	width:10%;
}
.admin_mysql_table_bdd_titre td:nth-child(7) {
	width:30%;
}

/*Gestion du comportement des <p>*/
.admin_mysql_table_bdd p {
	font-size:12px;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	height: 100px;
	overflow-y: auto;
}

/*Ajustement du comportement des <textarea>*/
.admin_mysql_table_bdd textarea {
	font-size:12px;
	width: 100%;
	background-color: #663300;
	color: white;
	border: none;
	line-height: 20px;
	height: 70px;
	padding: 25px 0px 0px 0px; /*centrage vertical*/
	text-align: center;
}
.admin_mysql_table_bdd_titre td:nth-child(1) textarea {
	text-decoration: underline black 2px;
	text-underline-position: under;
}
.admin_mysql_table_bdd_titre td:nth-child(3) textarea {
	padding: 5px 0px 0px 0px; /*centrage vertical*/
}
.admin_mysql_table_bdd_titre td:nth-child(9) textarea {
	padding: 5px 0px 0px 0px; /*centrage vertical*/
}
.admin_mysql_table_bdd_titre td:nth-child(10) textarea {
	padding: 5px 0px 0px 0px; /*centrage vertical*/
}
.admin_mysql_table_bdd_titre td:nth-child(13) textarea {
	padding: 15px 0px 0px 0px; /*centrage vertical*/
}



/* ------ PAGE ADMIN EDITION ___________________________________________*/

/* Mise en forme générique : */
/* Dimension des zones de texte */
.input_lgr_0{
	width: 50px;
	height: 24px;
}
.input_lgr_1{
	width: 130px;
	height: 24px;
}
.input_lgr_2{
	width: 200px;
	height: 24px;
}
.input_lgr_3{
	width: 600px;
	height: 24px;
}
.input_lgr_4{
	width: 600px;
	height: 120px;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.input_lgr_5{
	width: 600px;
	height: 40px;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.input_lgr_6{
	width: 60px;
	height: 24px;
}

/* ------ PAGE ADMIN EDITION - Header -----------------*/
/* Pour le header, voir PAGE ADMIN GESTION*/

/* ------ PAGE ADMIN EDITION - Main -----------------*/
/* Main */
.admin_edition_main {
	margin: 40px 0px 40px 0px;
	padding: 0px 50px 0px 50px;
}
.admin_edition_main label{
	font-size: 16px;
}
.admin_edition_main input{
	font-size: 16px;
}
.admin_edition_main textarea{
	font-size: 16px;
}
.admin_edition_main select{
	font-size: 16px;
}

/*Section : Sous-titre*/
/* ATTENTION cette partie est utilisée dans la page Ajout */
.admin_edition_section_sstitre{
	display: flex;
}
.admin_edition_section_sstitre p{
	margin-right: auto;
	font-size: 30px;
	color: #663300;
	text-decoration: underline;
}
.admin_edition_section_sstitre input{
	margin-left: auto;
	width: 150px;
	text-align: center;
	line-height: 40px;
	color: white;
	background-color:tomato;
	border: 1px solid white;
}

/* Section  : Données de la galerie */
/* ATTENTION cette partie est utilisée dans la page Ajout */
.admin_edition_section_données{
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	margin-bottom: 60px;
}
.admin_edition_section_données > div{
	position: relative;
	margin-bottom: 30px;
}
.admin_edition_label{
	position: absolute;
}
.admin_edition_input{
	margin-left: 280px;
	padding-left: 10px;
}
.admin_edition_label_readonly{
	background-color: #888;
	border: #888;
	color: rgb(61, 61, 61);
}
.admin_edition_textarea{
	margin-left: 280px;
	padding-left: 10px;
}
.admin_edition_select{
	width: 130px;
	margin-left: 280px;
	margin-top: -20px;
	height: 24px;
}
.admin_edition_btn_radio{
	margin-left: 280px;
}
.admin_edition_btn_radio label{
	margin-right: 20px;
}
/* Section  : Images de la galerie */
/* Conteneur */
.edition_img{
	margin: 30px 0px 70px 0px;
}
/* Header */
.edition_img_header{
	display: flex;
	position: relative;
	margin-bottom: 40px;
}
.edition_img_header > div{
	position: absolute;
}
.edition_img_header_nbre{
	margin-top: 0px;
	margin-left: 300px;
}
.edition_img_header_nbre p{
	display: inline-block;
}
.edition_img_header_ajouter{
	width: 200px;
	text-align: center;
	user-select: none;
	top: -10px;
	margin-top: 0px;
	margin-left: 690px;
	background-color: blue;
	border: 1px solid	white;
}
.edition_img_header_ajouter p {
	padding: 0px 10px 0px 10px;
	line-height: 2rem;
}
/* Main */
/* ATTENTION cette partie est utilisée dans la page Ajout */
.edition_img_main{
	display: flex;
	flex-direction: column;
	margin-top: 60px;
}
/* Main-titre */
.edition_img_main_titre{
	display: flex;
	position: relative;
	margin-top: 20px;
}
.edition_img_main_titre label{
	position: absolute;
}
.edition_img_main_titre input{
	position: absolute;
	padding-left: 10px;
}
.edition_img_main_titre_num{
	margin-top: 0px;
	margin-left: 180px;
}
.edition_img_main_titre_num p{
	text-decoration: underline;
}
.edition_img_main_titre_titre{
	margin-top: 0px;
	margin-left: 300px;
}
.edition_img_main_titre_titreval{
	margin-top: 0px;
	margin-left: 360px;
}
.edition_img_main_titre_date{
	margin-top: 0px;
	margin-left: 700px;
}
.edition_img_main_titre_dateval{
	margin-top: 0px;
	margin-left: 760px;
}
/* Main-gal */
.edition_img_main_gal{
	position: relative;
	margin-top: 60px;
}
.edition_img_main_gal > div{
	position: relative;
}
.edition_img_main_gal_label{
	margin-left: 182px;
}
/* Main-gal-flex des images */
/* ATTENTION cette partie est utilisée dans la page Ajout */
.edition_flex_img{
	display: flex;
	flex-wrap: wrap;
	width: 1058px;
	margin-left: 290px;
	border-left: 1px solid white;
}
.edition_flex_img_div{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px 10px 20px 10px;
}
.edition_flex_img_div_img{
	max-height: 100px;
	border: 1px solid rgb(0, 0, 0);
}
.edition_flex_img_div_num{
	padding-top: 2px;
	text-align: center;
	width: 150px;
	color: grey;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
/* Main-best */
/* ATTENTION cette partie est utilisée dans la page Ajout */
.edition_img_main_best{
	display: flex;
	position: relative;
	margin-top: 20px;
}
.edition_img_main_best p{
	position: absolute;
}
.edition_img_main_best_label{
	position: absolute;
	margin-left: 300px;
}
.edition_img_main_best_liste{
	margin-top: 0px;
	margin-left: 450px;
}
.edition_img_main_best_liste:disabled{
	background-color: #888;
	border: #888;
	color: rgb(61, 61, 61);
}
/* Main-numéro de la miniature */
/* ATTENTION cette partie est utilisée dans la page Ajout */
.edition_img_miniature{
	display: flex;
	position: relative;
	margin-top: 50px;
}
.edition_img_miniature_label{
	position: absolute;
	margin-left: 65px;
}
.edition_img_miniature_num{
	position: absolute;
	margin-top: 0px;
	margin-left: 280px;
}

/*Modal_edition_fullscreen*/
/* ATTENTION cette partie est utilisée dans la page Ajout */
.Modal_edition_fullscreen_div{
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding: 10px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	text-align: center;
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}
.Modal_edition_fullscreen_div img{
	position: fixed;
	left: 50%; /*poussé de la moitié de la largeur du référent */
	top: 50%; /* poussé de la moitié de hauteur du référent */
	transform: translateX(-50%) translateY(-50%); /* tiré de la moitié de ses propres dimensions */
	max-width: 90%;
	max-height: 90%;
}
/*Modal_edition_parties*/
.Modal_edition_parties{
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding: 10px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.85); /* Black w/ opacity */
}
.Modal_edition_parties_form{
	position: fixed;
	left: 50%; /*poussé de la moitié de la largeur du référent */
	top: 50%; /* poussé de la moitié de hauteur du référent */
	transform: translateX(-50%) translateY(-50%); /* tiré de la moitié de ses propres dimensions */
	width: 900px;
	height: 500px;
	background-color: black;
	border: 1px solid white;
	padding: 20px 40px 0px 40px;
	overflow-y: auto;
}
.Modal_edition_parties_form input{
	margin-left: 5px;
	padding-left: 10px;
}
.Modal_edition_parties_form input:disabled{
	background-color: #888;
	border: #888;
	color: rgb(61, 61, 61);
}
.edition_partie_div{
	display: flex;
	margin-top: 20px;
	justify-content: space-evenly;
}
.edition_partie_titre1 p {
	text-decoration: underline;
	margin-top: 20px;
}
.edition_partie_titre2 p {
	text-decoration: underline;
	margin-top: 40px;
}
.edition_partie_quitter{
	display: flex;
	justify-content: space-evenly;
	margin-top: 50px;
}
.edition_partie_quitter button{
	width: 250px;
	border: 2px solid white;
	line-height: 2rem;
	font-size: 15px;
	color: white;
	text-align: center;
	background-color: tomato;
}
.edition_input_hidden input{
	display: none;
}
/* Modal_confirmation_choix*/
.Modal_confirmation_choix{
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding: 10px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.85); /* Black w/ opacity */
}
.Modal_confirmation_choix_main{
	position: fixed;
	left: 50%;     /*poussé de la moitié de la largeur du référent */
	top: 50%;      /* poussé de la moitié de hauteur du référent */
	transform: translateX(-50%) translateY(-50%); /* tiré de la moitié de ses propres dimensions */
	width: 300px;    /*largeur de la boite*/
	height: 150px;   /*hauteur dela boite*/
	background-color: white;   /*couleur du fond*/
	border: 1px solid white;   /*couleur de la bordure*/
	padding: 40px 40px 0px 40px;
	overflow-y: auto;   /*présence ou non d'un ascenseur*/
}
.Modal_confirmation_choix_div_btn{
	display: flex;
	margin-top: 30px;
	justify-content: space-evenly;
}
.Modal_confirmation_choix_div_btn button{
	width: 80px;
}
.Modal_confirmation_choix_div_texte{
	text-align: center;
}
.Modal_confirmation_choix_div_texte p{
	color: black;     /*couleur du texte*/
}
.edition_partie_return{
	display: flex;
	justify-content: space-evenly;
	margin-top: 20px;
}
.edition_partie_return div{
	width: 250px;
	border: 2px solid white;
	text-align: center;
}
.edition_partie_return input {
	color: black;
}


/* ------ PAGE ADMIN ENREGIS -----------------*/
/* Main */
.admin_enregis_main{
	margin-top: 150px;
	display: flex;
	flex-direction: column;	
	align-items: center;
}
/* Barre de progression */
.barre_progress1{
	position: relative;
	width: 200px;
}
.barre_progress1_text{
	position: absolute;
	left: 0%;
	width: 200px;
	line-height: 30px;
	border: 1px solid #0000FF;
	font-family:Tahoma;
	font-weight:bold;
	background-color: none;
	font-size: 16px;
	color:#0000FF;
	z-index:1;
	text-align:center;
}
.barre_progress1_bar{
	position: absolute;
	left: 0%;
	height: 30px;
	background-color: white;
	z-index:0;
}	
.edition_mess_terminé_ok{
	margin: 70px auto 0px auto;
	display: none;
}
.edition_mess_terminé_nok{
	line-height: 40px;
	margin: 70px auto 0px auto;
	text-align: center;
}
/* Bouton Retour après erreur */
.edition_mess_terminé_retour{
	user-select: none;
	line-height: 40px;
	margin: 70px auto 0px auto;
	text-align: center;
	width:100px;
	background-color: red;
	border: solid red 2px;
	border-radius: 3px
}


/* ------ FENETRE MODALE "Image pleine écran" ___________________________ */
.Modal_Img_fullscreen {
	overflow: hidden;
	position: absolute; /* Stay in place */
	display: none; /* Hidden by default */
	z-index: 1; /* Sit on top */
	padding: 10px 0px 10px 0px;
	top: 0;
	width: 100%;
	left: 50%; /*poussé de la moitié de la largeur du référent */
	transform: translateX(-50%); /* tiré de la moitié de ses propres dimensions */
	height: 100%; /* Full height */
	background-color: black;  /* Fallback color */
}

.div_displayfullscreen_initial{
	position: relative;
	flex-shrink: 0;
	width: 100%;
	left: 0px;
	margin-left: 10px;
	margin-right: 10px;
}

.div_imgfullscreen_gche {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	left: 0px;
	margin-left: 10px;
	margin-right: 10px;
	/* background-color: rgb(132, 71, 182); */
}

.div_imgfullscreen_centre {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	left: 0px;
	margin-left: 10px;
	margin-right: 10px;
	/* background-color: red; */
}

.div_imgfullscreen_dte {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	left: 0px;
	margin-left: 10px;
	margin-right: 10px;
	/* background-color: rgb(83, 189, 101); */
}

.image_imgfullscreen {
	position: relative;
	left: 50%; /*poussé de la moitié de la largeur du référent */
	top: 50%; /* poussé de la moitié de hauteur du référent */
	transform: translateX(-50%) translateY(-50%); /* tiré de la moitié de ses propres dimensions */
	max-width: 100%;
	max-height: 100%;
	border: 3px solid #333333;
}



/* ------ PAGE ADMIN AJOUT -----------------*/
/* Main */

/* Section  : Images de la galerie */
/* Conteneur */
.ajout_img{
	margin: 30px 0px 70px 0px;
}
/* Header */
.ajout_img_header{
	display: flex;
	flex-direction: column;	
	/* position: relative; */
	margin-bottom: 40px;
}
.ajout_img_header div{
	position: relative;
	margin-bottom: 20px;
}
.ajout_img_header input{
	position: absolute;
	top: 0px;
	left: 100px;
}
.ajout_img_header_mess{
	position: absolute;
	top: 0px;
	left: 380px;
}




/* PAGE EN CONSTRUCTION _____________________*/
.enconstruction {
	padding-top:100px;
	width: 100%;
	min-height: 100vh;
	text-align: center;
}

.enconstruction p {
	/* color:red; */
	text-align:center;
	font-size:20px;
	/* margin-top: 100px; */
	padding: 0px 10px 0px 10px;
}
.enconstruction img{
	width: 180px;
	margin-top: 50px;
}
.enconstruction form {
	padding: 10px;
	width: 100px;
	margin-top: 50px;
	margin-left: 50%; /*poussé de la moitié de la largeur du référent */
	transform: translateX(-50%); /*tiré de la moitié de ses propres dimensions */
}
.enconstruction button{
	width: 100px;
	line-height: 40px;
	font-size: 16px;
}






/*=====================================================================*\ 
  MOBILE SIZE PORTRAIT TO COMPUTER TRANSITION
\*=====================================================================*/

/* MEDIA min-width: 421px _____________________________________________ */
@media only screen and (min-width: 421px) {
	
	/* PAGE INDEX */
    .index_pagecontainer {
		text-align: center;
	}

	.index_image {
		max-width: 1600px;
    }
    
	.index_title {
		width: 60%;
		top:25px;
		font-size:25px;
	}

	/*
	.index_author {
		width: 60%;
		top:60px;
		font-size:20px;
	}
	*/

	.index_div_a{
		width: 60%;
		top: 100px;
	}
	
	.index_textlink {
		line-height: 40px;
		padding: 10px 20px 10px 20px;
		font-size:18px;
	}

	
}

/* MEDIA min-width: 599px _____________________________________________ */
@media only screen and (min-width: 599px) {
	
	/* PAGE INDEX */
    /*.index_pagecontainer {
		text-align: center;
	}*/

	.index_image {
		max-width: 1600px;
    }
    
	.index_title {
		width: 60%;
		top:50px;
		font-size:35px;
	}

	/*
	.index_author {
		width: 60%;
		top:100px;
		font-size:25px;
	}
	*/

	.index_div_a{
		width: 60%;
		top: 160px;
	}
	
	.index_textlink {
		line-height: 40px;
		padding: 10px 25px 10px 25px;
		font-size:25px;
	}


}

/* MEDIA min-width: 1000px _____________________________________________ */
@media only screen and (min-width: 1000px) {
	
	/* PAGE INDEX */
    /*.index_pagecontainer {
		text-align: center;
	}*/

	.index_image {
		max-width: 1600px;
    }
    
	/*.index_title {
		width: 70%;
		top:60px;
	}*/

	/*.index_author {
		width: 100%;
		top:130px;
	}*/

	.index_div_a{
		width: 70%;
		top: 200px;
	}


	.carrousel__next, .carrousel__prev {
		display: block;
	}


}