/* ================ */
/*  GESTION PANEL   */
/* ================ */

/* Sections */
.panel {
	border: 2px solid #7D8AAE;
	background-color: #F8F8F8;
	border-radius: 0px;
	padding-top:0px;
	padding-left:0px;
	padding-right:0px;
	margin-top: -2px;
}

/* Onglet seul */
.alone {
	font-weight: bold;
	font-size: 20px;
	font-variant: small-caps;
	height: 50px;
	border: 1px solid #7D8AAE;
	border-left: 2px solid #7D8AAE;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 0px;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-right: 20px;
	float:left;
	padding: 10px 15px;
	margin-top:-1px;
	position: relative;
	margin-bottom: 0px;
}

/* Onglets situés à gauche */
.panel-heading-left {
	font-weight: bold;
	font-size: 20px;
	font-variant: small-caps;
	height: 50px;
	border: 1px solid #7D8AAE;
	border-left: 2px solid #7D8AAE;
	border-top-right-radius: 20px;
	border-top-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-right: 20px;
	float:left;
	padding: 10px 15px;
	margin-top:-1px;
	position: relative;
}

/* Onglets situés au milieu */
.panel-heading-middle {
	font-weight: bold;
	font-size: 20px;
	font-variant: small-caps;
	height: 50px;
	border: 2px solid #7D8AAE;
	border-top-right-radius: 20px;
	border-top-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-right: 20px;
	padding-left: 15px;
	float:left;
	border-bottom: 0px;
	border-left: 0px;
	position: relative;
}

.panel-heading-middle::before {
	content: "";
	position: absolute;
	top: -2px; /* Positionne la bordure en haut */
	left: -13px; /* Décalage depuis la gauche */
	width: 50px; /* Longueur de la bordure */
	border-top: 2px solid #7D8AAE; /* Bordure supérieure */
}


/* Onglets situés à droite */
.panel-heading-right {
	font-weight: bold;
	font-size: 20px;
	font-variant: small-caps;
	height: 50px;
	border: 2px solid #7D8AAE;
	border-top-right-radius: 20px;
	border-top-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-right: 20px;
	padding-left: 15px;
	float:left;
	border-bottom: 0px;
	border-left: 0px;
	position: relative;
}

.panel-heading-right::before {
	content: "";
	position: absolute;
	top: -2px; /* Positionne la bordure en haut */
	left: -13px; /* Décalage depuis la gauche */
	width: 50px; /* Longueur de la bordure */
	border-top: 2px solid #7D8AAE; /* Bordure supérieure */
}

/* Les onglets ont un style différent selon s'ils sont activés ou non */
.onglet-inactif {
	color: #7D8AAE;
	background-color: white;
	cursor:pointer;
}

.onglet-actif {
	background-color: #7D8AAE;
	color: white;
}

/* Couche enveloppant les titres des sections principales : prmet notamment
	d'avoir une border-top et background-color malgré le border-radius */
.panel-heading-container {
	/* border-top: 2px solid #7D8AAE; */
	float:left;
}

.pannel_ul > .pannel_li > .ui-tabs-anchor {
	color: #7D8AAE;
	font-family: "HelveticaRoman", Arial, serif;
}

.pannel_ul > .ui-tabs-active > .ui-tabs-anchor {
	color: white;
	font-family: "HelveticaRoman", Arial, serif;
}

.ui-tabs > .pannel_ul > .ui-tabs-active {
	background: none;
	font-weight: bold;
	font-size: 20px;
	font-variant: small-caps;
	background-color: #7D8AAE;
	color: white;
	height: 50px;
	border: 2px solid #7D8AAE;

}

.panel-heading-1 {

	font-weight: bold;
	font-size: 20px;
	font-variant: small-caps;
	background-color: white;
	height: 50px;
	border: 2px solid #7D8AAE;
	max-width: 300px;
}

/* Mise en place d'un ascenseur horizontal pour gérer les éléments qui sortent de leur cadre */
.panel-body{
	width:100%;
	max-width:100%;
	height: inherit;
}


/* Div sous-titres */
.sous_titre {
	margin-bottom: 40px;
	font-weight: bold;
	font-variant: small-caps;
	color: grey;
}


/* ======================= */
/*  GESTION ELEMENTS FORM  */
/* ======================= */

/* Eléments de formulaires */
.form-control {
	height: 30px;
	margin-top: 10px;
}

/* Contrainte ajoutée pour pallier le bug sur mozilla qui efface la bordure droite de certains select, à certaines résolutions*/
.input-group  .form-control{
	width: 95%;
}

	/* Label des différentes rubriques */
.control-label {
	margin-top: 8px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* Taille du texte
Label, select et input + select et input dans les onglets */
label, .form-control, .ui-widget input, .ui-widget select  {
	font-size: 12px;
}


/* Taille du text dans les textarea */
.ui-widget textarea {
	font-size: 0.8em;
}

/* Optgroup dans les select utilisant Bootstrap-select */
.bootstrap-select .dropdown-header {
	cursor: pointer;
}


/* Permet de placer deux input-group sur la même ligne */
.input-group[class*="col-"]{
	float: left;
}

/* Pour ajouter une bordure à certaines div, on leur met la classe section */
.section {
	border: thin solid;
	padding: 10px;
}

.search .glyphicon {
	font-size: 20px;
	color : #FF5600;
	padding: 7px;
}

.error_create_site {
	text-indent: 8em;
}

no-border-button {
	border: none; /* Supprime la bordure */
	background: none; /* Supprime le fond */
	padding: 0; /* Retire le padding par défaut */
	margin: 0; /* Retire la marge par défaut */
	cursor: pointer; /* Change le curseur en pointeur pour indiquer que c'est cliquable */
}

/* ============================== */
/*  GESTION ELEMENTS SPECIFIQUES  */
/* ============================== */
#div_nomsite{
	margin-top: 44px;
}

/* Champs remarques */
.rmq {
	min-height: 200px;
}

#div_climat {
	margin-top: 44px;
}



/* ================== */
/*  GESTION BOUTONS   */
/* ================== */

.btn-check {
	background: none;
	border: none;
	color: black;
}


.btn {
	text-align: left;
}

.btn-info, .btn-success , .btn-warning {
	margin-top: 30px;
	text-align: center;
}

.btn_align  {
	padding-left: 0px;
}

#insert_operation, #insert_stockage, #cancel_stockage, #cancel_operation {
	margin-bottom: 60px;
}

.button_add {
	margin-top: 0px;
	margin-bottom: 40px;
}

#add_stockage {
	margin-top: 0px;
	margin-bottom: 0px;
}

#cancel_stockage, #cancel_operation {
	margin-left: 20px;
}

#delete_site {
	margin-top: 30px;
	margin-left: 20px;
}


/* ========================= */
/*  GESTION CASE A COCHER    */
/* ========================= */

.chk {
	margin-left : -20px;
}

.btn-check:hover {
	background-color: white;
	border: none;
}


/* =================== */
/*  GESTION TREEVIEW   */
/* =================== */

#div_treeview {
	margin-bottom:40px
}

#div_controls_treeview {
	margin-bottom:20px
}


.TrVw, .TrVw_ant
{
	border-collapse: collapse;
	margin: auto;
	margin-top: 20px;
}

.TrVw th, .TrVw td , .TrVw_ant th, .TrVw_ant td
{
	padding: 10px;

}

#selectTrVw, #selectTrVw_ant
{
	vertical-align: top;
	width: 100px;
	padding-right: 20px;
}

#clearTree, #clearTree_ant {
	text-align: center;
	margin: 0 auto;
	width: fit-content;
}

/* Bouton de recherche */
#search , #search_ant
{
	margin: 0em auto 1em auto;
	display: block;
	padding: 4px;
	border-radius: 4px;
	border: 1px solid #707070;
}

#search:focus {
	outline: #fdaa72 solid 2px; 
	box-shadow: 1px 1px 3px rgba(0,0,0,0.24), 0 1px 2px rgba(0,0,0,0.24); 
}


/* =================== */
/*  GESTION TOOLTIPS   */
/* =================== */
.tooltip {
	max-width: 400px;
	/* If max-width does not work, try using width instead */
	width: 400px;
	/* background-color: #577AB7; */
	color:#CCCCCC;
}

#tooltip {
	max-width: 400px;
	/* If max-width does not work, try using width instead */
	width: 400px;
	/* background-color: #577AB7; */
	color:#CCCCCC;
}

.alert_tooltip {
	color: orange;
	margin-left: 15px;
}

.alert.tooltip-inner {
	background: orange;
	font-size: 14px;
	color: black;

}

/* ===================== */
/*  GESTION NAVIGATION   */
/* ===================== */
div.navigate{
	margin: 0 auto;
	margin-top: auto;
	margin-bottom: auto;
	font-size: large;
	float: none;
	vertical-align: middle;
	text-align: center;
}

div.navigate a{
	font-size: 12px;
	text-align: left;
}

div.navigate1a{
	width: 280px;
	display: inline-block;
}

div.navigate1b, div.navigate1c{
	width: 280px;
	display: inline-block;
}

div.navigate1d{
	width: 340px;
	display: inline-block;
}

span.navigate2{
	width: 100px;
	display: inline-block;
}

#page {
	border: thin solid;
	margin: 5px;
}

:link, :visited, #href_UICN {
	color: black;
}


/* =================== */
/*  GALERIE IMAGES     */
/* =================== */


.trash-img {
	margin-bottom: 50px;
}

#galerie_cont {
	margin-top: 50px;

}


/*============================================================================================================================================================================= */
/*========================================================================== Element JQUERY UI ================================================================================ */
/*=========================================================================== Modale BOOTSTRAP ================================================================================ */
/*============================================================================================================================================================================= */

/* Modale générée par Ui (Biblio) */
.ui-dialog .ui-dialog-titlebar-close {
	display: none;

}

.ui-dialog-title, .ui-widget-content{
	text-align: left;
	margin-top: 10px;
	margin-bottom: 10px;

}

/*Messages qui s'affichent dans les dialog */
.validateTips {
	color: red;
}

/* Fichier à dl */
.ui-widget-content a {
	color: #577AB7;
}

/* Gestion des onglets */
.ui-tabs .ui-tabs-panel {
	padding: 2em 0em 4em 0em !important;
	margin-top: 30px;
	margin-bottom: 0px;

}

#tab-9 {
	min-height : 500px;
}

/* Champs input qui vont chercher une liste avec auto-complétion
Permet notamment d'obtenir une scrollbar verticale */
.ui-autocomplete {
	max-height: 200px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	width: 22%;
}
	/* IE 6 doesn't support max-height
	* we use height instead, but this forces the menu to always be this tall
	*/
* html .ui-autocomplete {
	height: 200px;
}

.ui-menu{
	background: white;
}


/* Modal Bootstrap - Titre */
.modal-title {
	font-weight: bold;
	font-variant: small-caps;
}

/*Modal Bootstrap - Liste déroulante */
.es-list {
	max-height: 260px !important;
	margin-top: 12px;
	}

/* Messages d'erreurs spécifiques dans les modales Bootstrap */
#error_all_loc , #error_all{
	color: #a11a02;
	font-weight: bold;
}

.error_all{
	color: #a11a02;
	font-weight: bold;
}



/*============================================================================================================================================================================= */
/*=========================================================================== CSS des cases à cocher ========================================================================== */
/*============================================================================================================================================================================= */

/* Hiding the checkbox, but allowing it to be focused */
.badgebox
{
	opacity: 0;
}

.badgebox + .badge
{
	/* Move the check mark away when unchecked */
	text-indent: -999999px;
	/* Makes the badge's width stay the same checked and unchecked */
	width: 25px;
	border: thin solid;
	border-color: black;
}

.badgebox:focus + .badge
{
	/* Set something to make the badge looks focused */
	/* This really depends on the application, in my case it was: */

	/* Adding a light border */
	box-shadow: inset 0px 0px 5px;
	/* Taking the difference out of the padding */
}

.badgebox:checked + .badge
{
	/* Move the check mark back when checked */
	text-indent: 0;
}

.badgebox:disabled + .badge
{
	background-color: #CCCCCC;

}

.badge {
	border-radius: 0px;
	background-color: white;
}

.help_ziti {
	color:green; 
	font-weight:bolder
}

/*float button*/
.float_button {
	position: fixed; 
	height: 50px;
	width: 100px;
	top:80px;
	right:35px;
}

/*============================================================================================================================================================================= */
/*=========================================================================== Advanced search ================================================================================= */
/*============================================================================================================================================================================= */

/* Flèche et boutons */
.arrowTaxons {
    font-size: 2.5rem; 			
    color: white; 
    padding: 1px 6px; 			
    border-radius: 13px; 		
    cursor: pointer; 
	display: inline-block; 		
    vertical-align: middle;
	margin: 5px;
}

.bouton_add_taxon {
	margin-right: 25px;
	margin-top: 8px;
	margin-bottom: 10px;
	padding: 1px 6px;

}

.bouton_delete_taxon {
	margin-right: 25px;
	margin-top: 8px;
	margin-bottom: 10px;
	padding: 1px 6px;

}

/* Titre section de la recherche avancée */
.titleAdvSearch {
	display: inline-block;
    vertical-align: sub; 	/* Aligne verticalement au centre */
    margin-left: 0px; 
}

/* Containers */
.containerAdvancedSearch {
	margin: 20px;
	padding: 20px;
	background-color: #F8F8F8;
	border: 2px solid #CCCCCC;
	border-radius: 20px;
	width: 100%;
	margin-bottom: 100px;
}

.paragraph {
	margin:auto;
	width:70%;
}

/* .padding_corr {
	margin-top: 20px;
} */

.vertical-align {
	display: flex;
	align-items: center;
}

.resultatTable {
	margin-top: 40px;
}

/* Liste d'éléments */
.advancedSearch li {
    color: #FF5600; 
    padding: 5px; 
    margin-bottom: 5px; 
    border-radius: 5px; 
	font-size: large;
}

/* Barre de progression */
.progress {
	height: 20px; 
	margin-top: 20px; 
	align-self: auto;
}

/* Champ de sélection*/
#selectionBiblio {
    width: 600px; 
    height: 150px;
    overflow-y: auto; 			
	overflow-x: auto; 			
    white-space: pre-wrap; 		
    word-wrap: break-word; 		
    border: 1px solid #ccc; 
    padding: 5px;
	margin: auto;
	text-align: center;
}

#selectionBiblio option {
    padding: 5px; 
}

#selectbiblio {
	margin: auto;
}

/* Symbole */
.symboleAdvancedSearch {
	font-size: 2.5rem; 			
    padding: 1px 6px; 			
    border-radius: 13px; 		
	display: inline-block; 		
    vertical-align: middle; 
	margin: 5px;
}	

.checkMicrPois {
	margin-left: 200px;
}

.clearfix {
    display: flex;
    align-items: center; 
}

.bouton_delete {
	margin: 5px;
	margin-right: 40px;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 2px 6px;
	cursor: pointer;
	vertical-align: middle;
}

.bouton_clear {
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 2px 6px;
	margin-left: 10px;
}

.ajout_taxon {
	margin-top: 130px;
	margin-left: 25px;
	margin-right: 25px;
	background-color: white;
	color: #626b85;
	border: 2px solid #4e5366;
	font-size: 16px;
}

.ajout_taxon:hover {
	background-color:#ffffff;
	color:#3b4152;
	border: 2px solid #3b4152;
}

/* ================================================================================================================================================================================================================ */
/* ================================================================================================== Nouveau Rechercher des taxons =============================================================================== */
/* ================================================================================================================================================================================================================ */	

.container_custom {
	background-color: #F8F8F8;
	border-radius: 50px;
	padding: 50px;
	max-width: 1000px;
	margin: 20px auto;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.24), 0 1px 2px rgba(0,0,0,0.24);
}

button.section-title {
	background-color: #7D8AAE;
	color: white;
	padding: 10px;
	border-radius: 10px;
	font-weight: normal;
	margin-bottom: 20px;
	width: 100%;
	text-align: left;
	border: 0;
	font-size: 18px;
	
}

button.section-title:hover {
	background-color: #8e9bbd;
}

button.section-title-required {
	background-color: #7D8AAE;
	color: white;
	padding: 10px;
	border-radius: 10px;
	font-weight: normal;
	margin-bottom: 20px;
	width: 100%;
	text-align: left;
	border: 0;
	font-size: 18px;
	
}

button.choix {
	font-size: 16px;
	font-weight: normal;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	height: auto;
	margin-right: 10px;
	border-radius: 15px;
}

.niveau_tax {
	width: 100%; 
	align-self: center; 
	margin-bottom: 5px;
}

.niveau_loc {
	width: 100%; 
	align-self: center; 
	margin-bottom: 5px;
}

.colonne_tax {
	margin-left: 60px;
	display: inline-block; 		
    vertical-align: middle; 
}

.colonne_tax_select {
	margin-left: 5px;
}

.colonne_loc {
	margin-left: 60px;
}

.colonne_loc_select {
	margin-left: 5px;
}

/* Logo période dans treeview */
.periode {
	background: none;
	border: none;
	padding: 5px;
	/* margin-left: 15px; */
	color: #7D8AAE;
	cursor: auto;
}

.periode:hover {
	background: none;
	border: none;
	color: #7D8AAE;
	cursor: auto;
}

.choix:hover {
	background-color: #ff732c;
	border: 2px solid white;
	border-radius: 15px;
	color: white;
}

.choix.clicked {
	background-color: #ffffff;
	border: 2px solid #FF5600;
	color: #FF5600;
}

.choix.clicked:hover {
	background-color: #ffffff;
	border: 2px solid #ff732c;
	color: #ff732c;
}

.niveau_taxon {
	margin-top: 50px;
}

.placeholder {
    display: none;
  }

.niveau {
	width: 100px; 
}

/* MULTISELECT */
.multiselect.dropdown-toggle.btn.btn-default {
	text-align: center;
}

.multiselect.dropdown-toggle.btn.btn-default:hover {
	text-align: center;
	border: 1px solid #a1a1a1;
}




/* INDEX */
#intro {
	border-radius: 50px;
	padding: 20px;
	padding-left: 50px;
	padding-right: 50px;
	margin: auto;
	color: #313d4f;
}

#intro > li {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
	margin-top: 10px;
	text-align: center;
}

#intro > li > b {
	background-color:rgb(255, 72, 0);
	border-radius: 10px;
	padding: 5px;
	padding-left: 8px;
	padding-right: 8px;
	font-weight: normal;
	color: #2e333b;
}

.intro {
	width: 70%;
	margin: auto;
	color: #2e333b;
}

.intro-bold {
	text-decoration-line: underline; 
	text-decoration-color: #ff732c;
}

#intro-icon {
	font-size: 20px;
	color: #2e333b;
}

#localisation {
	white-space: nowrap; 
	display: flex; 
	align-items: center; 
	margin-bottom: 20px; 
	color: #7D8AAE; 
	font-size: 22px; 
	font-weight: bold;
	margin-top: 60px;
}

.required {
	color: #8a2f02;
	font-weight: bold;
}

.container-result {
	width: 90%;
}

td {
	padding: 10px;
}

.highlight {
	color: #5e5e5e;
	font-weight: bold;
}

.content p {
	text-align: justify;
	margin-bottom: 20px;
	text-indent: 2em;
}

.content p:last-child {
	margin-bottom: 0;
}

.button-api {
	padding: 10px;
	border-radius: 10px;
	display: block;
	margin: auto;
	width: fit-content;
	margin-left: 50px;
	font-size: 16px;
	margin-top: 20px;
}

.api {
	color: white;
}

.api:hover {
	color:rgb(255, 72, 0);
	text-decoration: none;
}

.button-api:hover .api {
	color:rgb(255, 72, 0);
}



/* Consulter les données */
.search_container {
	margin: 40px auto;
}

.search_title {
	text-align: left;
}


.descr_tableau {
	padding: 1em 1em 0em 1em;
	line-height: 1.5;
	color: #313d4f;
	font-size: 14px;
}