/*   BODY   */
body {
	background-color : #154c79;
}
.container-site{
	width: 100%;
	height: 100%;
}

.customers {
	color : #333333;
	width: 80%;
    /*margin: 0 auto; */ /* Pour centrer le div horizontalement */
    background-color: lightgray; /* Juste pour visualiser le div */
    padding: 10px; /* Espacement interne */
    box-sizing: border-box; /* Inclut le padding dans la largeur totale */
}
#tablemembre {
	margin-top: 14px;
}
/*   BODY TOP TITLE  */ 
.siteDebut{
	text-align: center;
}
.div-top{
	background: #edeee4;
        width: 100%;
	height: 40px;
        color: red;
}
.div-right{
	width: 100%;
	height: 20px;
	margin-left: 70px;
}
.social-medias{
	margin-left: 360px;
	/*   margin-right: auto;   */
	height: 50px;
	font-size: 33px;

}
.social-media{
	float: left;
	margin-left: 4px;
	width: 20px;
}
/*   MENU NAV   */
.navbar
{
    background: #edeee4;
}
.nav {
	margin-bottom : -0.5px;
}
.pills>li>a{
 color: #154c79;
}
.pills>li>a:hover{
 color : #B40404;
}
.pills>li.active>a, .pills>li.active>a:focus, .pills>li.active>a:hover{
	background : #154c79;
	color: #fff;
}
.green-icon{
	color : #fff !important;
}	
.icon-bar{
    background-color: #B40404 !important;
	font-weight: bold;
}
.navbar-toggle{
    background-color: #fff !important;
}

/*    INTERNATIONALISATION    */
#formLang
{
    text-align: right;
	color: #d82c2e;
}

/*    CHARGEMENT RENDU CONTENU   */
.tab-content, .tab-pane {
	margin-top : 40px;
	/* margin-bottom : 0; */
	color : #fff !important;
	margin-left : 20px;
}

/***********************************************CONNEXION************************************************/

/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  margin-left: 100px;
  width: 400px;
  min-height: 400px;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text], input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder, input[type=password]:placeholder {
  color: #cccccc;
}

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

/* Controle */

.btn-default {
	margin-left: -11px;
}
#middle {
	margin-left: -7px;
	width: 388px;
}
#oCategorie {
	width: 137px;
	height: 34px;
}

#camera-div {
	margin-right: 11px;	
}

/* Validation  */

.form-div {
	margin-top: 5px;
	float:left; 
}
.research-div-valid {
	margin-top: 400px;
}
.navbar-left {
	margin-top: 50px;
}
#btn-default {
	margin-left: -11px;
}
#middlest {
	margin-left: -7px;
	width: 388px;
}
#oCategorieOne {
	width: 137px;
	height: 34px;
}

/* PUBLICATIONS */
.divPublications{
	width: 400px;
    	float: left;
    	padding: 20px;
    	border: 2px solid;
	margin-left: 50px;
	padding-bottom: 65px;
	margin-bottom: 5px;
	text-align: justify-content;
}
.mybtn-yellow {
   color: yellow;
}
.mybtn-red {
   color: red;
}
.mybtn-blue {
   color: #154c79;
}
.mybtn-green {
   color: green;
}

.centerTexte{
	text-align: center!important;
}
.fileRead{
	width: 60%;
	padding-bottom: 100px;
	margin-left: 20%;
}

/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}
.sub-menu-1 {
	display: none;
}
.sub-menu-1 {
	display: block;
	position: absolute;
	background: rgb(0,100,0);
	margin-top: 15px;
	margin-left: -15px;
}
.sub-menu-1 ul {
	display: block;
	margin: 10px;
}
.sub-menu-1 ul li {
	width: 150px;
	padding: 10px;
	border-bottom: 1px dotted #fff;
	background: transparent;
	border-radius: 0;
	text-align: left;
}
.sub-menu-1 ul li:last-child {
	border-bottom: none;
}
.sub-menu-1 ul li a:hover {
	color: #b2ff00;
}


/* TODO TODO TODO TODO */
.main{
    width: 75% !important;
    border: 1px solid lightgrey;
	padding-bottom: 8rem;
    border-radius: 5px;
    position: absolute;
    margin-top: 40rem;
    left: 40%;  
    transform: translate(-50%, -50%);
}
/* NOTRE MISSION - QUI SOMMES-NOUS */
.texteAll{
	width: 600px !important;
	margin-left: 25px;
	margin-bottom: 50px;
}
.construction{
	width: 280px !important;
	margin-left: 25px;
	margin-bottom: 50px;
}
/* ACCUEIL */
.accueilTexte{
	width: 40% !important;
	height: 70px;
}
.forecast{
	margin-bottom: 80px;
        margin-top: 100px;
        margin-bottom: 130px;
}
.accueilCitation{
	width: 520px !important;
	/*height: 20px !important;*/
}
/*NOUS CONTACTER */
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.containerContact {
  width: 900px;
  color: #154c79;
  margin-left: 25px;
  border-radius: 5px;
  margin-bottom: 80px;
  background-color: #f2f2f2;
  padding: 20px;
}
/* 
*****************************
*****************************
*****************************
 */
 
 :root {
  --primary-color: rgb(11, 78, 179);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Global Stylings */
.form label {
  display: block;
  margin-bottom: 0.5rem;
}
/* Progressbar */
.progressbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 2rem 6rem;
}

.progressbar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: -2;
}

.progress {
  background-color: var(--primary-color);
  width: 0%;
  transition: 0.3s;
}

.progress-step {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 1.3rem;
  color: grey;
}

.progress-step-active {
  background-color: var(--primary-color);
  color: #f3f3f3;
}

/* Form */
 
.form {
  border-radius: 0.35rem;
  padding: 1.5rem;
}

.form-step {
  display: none;
  transform-origin: top;
  animation: animate 0.5s;
}

.form-step-active {
  display: block;
}
.input-group {
  margin: 2rem 0;
}
/* unvisited link */
.input-group a:link{
    color: white;
}
/* visited link */
.input-group a:visited {
  color: blue;
}
/* mouse over link */
.input-group a:hover {
  color: hotpink;
}
/* selected link */
.input-group a:active {
  color: red;
}
@keyframes animate {
  from {
    transform: scale(1, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}
#controls {
	width: 290px;
	margin: 25px auto;
}
#remove_fields {
	float: right;
}

/* Button */
.btns-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  float: left;
}

.btn {
  padding: 0.75rem;
  display: block;
  width: 15rem;
  text-decoration: none;
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

/* FOOTER */
.footer {
   position: fixed;
   bottom: 0;
   background-color : #edeee4;
   width: 100%;
   height: 7rem;
   color: #154c79;
   text-align: center;
}

/* TEST */
.article-left {
	margin-right: 35%;
}

.upperCitation {
    width: 1000px;
    padding-bottom : 50px;
	/*
    position:relative;
    width:950px;
    height:215px;
    color:red;
	*/
}
.article-right {
	float: right;
	/* margin-top: 25px; */
	padding: 10px;
	margin-right: 25px;	
	bottom:  10px;
	width: 40%;
}

/* PUBLICATIONS */
#pub1, #pub2, #pub3, #pub4 {
    width: 660px;
    height: 0;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
    max-height: 9999px;
    overflow: hidden;
	background: #BBBBBB;
    -webkit-transition: height 1s ease-in-out;
    -moz-transition: height 1s ease-in-out;
    -ms-transition: height 1s ease-in-out;
    -o-transition: height 1s ease-in-out;
    transition: height 1s ease-in-out;
}

#pub_1, #pub_2, #pub_3, #pub_4 {
    cursor: pointer;   
	margin-bottom:0px;
}
.pub {
    background:  rgba(80,80,80,.6);
	width: 660px;
	height: 50px;
}
.ppub {
	float: left;
	margin-left: 5%;
	margin-top: 10px;
}
.spub {
	float: left;
	margin-left: 25%;
	margin-top: 10px;
	color: white;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}