@import url('https://fonts.googleapis.com/css?family=Roboto:300');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');




/* - - - - - - - Codes couleurs - - - - - - */
:root {
  --fond-principal: white;
  --fond-footer: #2E333C;
  --fond-button: #2e89ff;
  --fond-button-clicked: #226ac9;
  --fond-actual-page: #1c5ca5;
  --color-breadcrum: #99d1ff;
  --fond-alertinfo: #ccffcf;
  --color-alertinfo: #08e600;
  --fond-warninginfo: #ffddcc;
  --color-warninginfo: #ff7733;
  /* - - - - - - - Anciens Codes couleurs orangés- - - - - -
  --fond-principal: white;
  --fond-footer: #2E333C;
  --fond-button: #FF772E;
  --fond-button_clicked: #c95c22;
  --fond-actual-page: #a54c1c;
  --color-breadcrum: #ff99b6;
  --fond-alertinfo: #ccebff;
  --color-alertinfo: #008ae6;
  --fond-warninginfo: #ffddcc;
  --color-warninginfo: #ff7733;
  */
}




/* - - - - - - - Paramètres Généraux - - - - - - */

header {
  background: none;
}

body {
  margin: 0px;
  background: var(--fond-principal);
  min-width: 960px;
  font-family: "Roboto", sans-serif;
}

main {
  background: var(--fond-principal);
  width: 900px;
  padding-left: 30px;
  padding-right: 30px;
  min-height: 750px;
  margin:auto;
}

footer {
  background: var(--fond-footer);
  margin-top: 35px;
  color: var(--fond-principal);
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

.footerMenus{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 25px;
}

.footerMenus > div {
  margin-left: 70px;
  margin-right: 70px;  
}

.footerImage {
  height: 120px;
}

.footerContacter {
  margin-right: 10px;
  padding: 7px;
  border-radius: 5px;
  background-color: var(--fond-button);
  color: var(--fond-principal);
  font-weight: bold;
  text-transform: uppercase;
}
a.footerContacter:hover,a.footerContacter:active,a.footerContacter:focus {
  background: var(--fond-button-clicked);
}

.footerIconAligment {
  display: flex;
  align-items: center;
}

.footerIcon {
  height: 25px;
  margin: 5px;
}







/* - - - - - - Les Titres - - - - - - */

.topTitlePage {
  height: 325px;
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: var(--fond-principal);
}
.topTitlePageConnected {
  height: 325px;
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  color: var(--fond-principal);
}
.topTitlePage > p, .topTitlePage > p > a {
  text-align: center;
  color: var(--fond-principal);
  font-weight: bold;
  font-size: 16px;
}
.actualBreadcrum {
  color: var(--color-breadcrum) !important;
}

.topTitlePageA {
  color:var(--fond-principal);
}

h1 {
  margin: 0px;
  padding-top: 150px;
  font-size: 50px;
  font-weight: 450;
  text-align: center;
  font-family: 'Lato', sans-serif;
}
h1 > a:hover,a:active,a:focus {
  text-decoration: none;
}

h2 {
  margin: 0px;
  font-size: 30px;
  font-weight: 430;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.titleContent {
  margin-top: 35px;
  margin-bottom: 25px;
  border-bottom: 1px solid #999999;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.titleContent > form {
  margin: 5px;
  margin-left: 35px;
}

h3 {
  margin: 0px;
  padding-top: 10px;
  color: var(--fond-footer);
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

h4 {
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  margin: 0px;
  padding-top: 40px;
  padding-bottom: 5px;
}

h5 {
  border-bottom: 2px solid #999999;
  color: #999999;
  text-align: left;
  font-size: 27px;
  font-weight: bold;
  margin: 0px;
  padding-top: 10px;
  margin-bottom: 0px;
}

h6 {
  text-align: left;
  font-size: 25px;
  font-weight: bold;
  margin: 0px;
  padding-top: 40px;
  padding-bottom: 5px;
}

h8 {
  text-align: left;
  margin-top: 30px;
  font-size: 20px;
}












/* - - - - - - Menu en liste déroulante - - - - - - */

nav{
  background-color: var(--fond-button);
} 

.navbar {
  overflow: hidden;
  width: 960px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: var(--fond-principal);
  text-align: center;
  padding: 14px 16px;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: var(--fond-principal);
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: var(--fond-button-clicked);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--fond-button);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: var(--fond-principal);
  padding: 12px 16px;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: var(--fond-button-clicked);
}

.dropdown:hover .dropdown-content {
  display: block;
}

a.actual-page {
  font-weight: bold;
  background-color:var(--fond-actual-page);
  color: var(--fond-principal);
}






/* - - - - - - - Le Texte - - - - - - */
a {
  text-decoration: none;
  color: #1692DA;
}
a:hover,a:active,a:focus {
  text-decoration: underline;
}
a.linkOrangeButton {
  padding: 10px !important;
  background: var(--fond-button);
  border-radius: 50px;
  color: var(--fond-principal);
  text-align: center;
}
a.linkOrangeButton:hover,a.linkOrangeButton:active,a.linkOrangeButton:focus {
  background: var(--fond-button-clicked);
}

p {
  font-size: 15px;
  line-height: 20px;
  white-space: normal;
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.alertinfo {
  background: var(--fond-alertinfo);
  border: 1px solid var(--color-alertinfo);
  font-weight: bold;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.warninginfo {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background: var(--fond-warninginfo);
  border-radius: 5px;
  border: 1px solid var(--color-warninginfo);
  font-weight: bold;
  text-align: center;
}






/* - - - - - - Les Listes - - - - - - */

ul {
  font-size: 15px;
  line-height: 20px;
  white-space: normal;
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 10px;
}

ol {
  font-size: 15px;
  line-height: 20px;
  white-space: normal;
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 10px;
}







/* - - - - - - Les Images - - - - - - */
.little-logo {
  height: 60px;
  padding-bottom: 30px;
}

.toparrow {
  justify-content: center;
  height: 50px;
  padding-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.leftarrow {
  vertical-align: middle;
  height: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.iconCalendar{
  height: 50px;
  margin-right: 15px;
  margin-top: 30px;
}

.iconFooter{
  height: 50px;
  margin-right: 10px;
}






/* - - - - - - Les Conteneurs - - - - - - */
.greybox {
  margin-top: 10px;
  border-top: 2px solid #999999;
  border-bottom: 2px solid #999999;
  background: #e6e6e6;
  display: flex;
  flex-basis: 200px;
  justify-content: center;
}

.greyboxfortable {
  background: #e6e6e6;
}
.center {
  justify-content: center;
  display: flex;
}
td {
  padding: 5px;
}

.people {
  flex: 1 1 0px;
  text-align: center;
}






/* - - - - - - Onglets - - - - - - */

.container {
  margin-top: 20px;
  width: 900px;
  height: 600px;
  background: #f1f1f1;
  border-radius: 2px;
}

.container-onglets{
  background: #f1f1f1;
  width: 100%;
  height: 10%;
  display: flex;
  border-bottom: 1px solid #333;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.onglets {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.onglets:not(:nth-child(3)) {
  border-right: 1px solid #333;
}

.ongletsfour {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.ongletsfour:not(:nth-child(4)) {
  border-right: 1px solid #333;
}

.contenu {
  padding-left: 20px;
  padding-bottom: 20px;
  width: 900px;
  height: 530px;
  position: absolute;
  overflow: auto;
  z-index: 0;
  opacity: 0;
}
.contenu hr {
  width: 20%;
  height: 2px;
  margin-left: 20px;
  background: #000;
  border: none;
}

/* Anim */

.active {
  background: var(--fond-button-clicked);
  color: #f1f1f1;
  transition: all 0.3s ease;
}

.activeContenu {
  animation: fade 0.5s forwards;
  z-index: 3;
}
@keyframes fade {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}






/* - - - - - - Pages connectées - - - - - - */

input[type=submit] {
  padding: 15px;
  outline: 0;
  border: 0;
  border-radius: 5px;
  background: var(--fond-button);
  color: var(--fond-principal);
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
input[type=submit]:hover,input[type=submit]:active,input[type=submit]:focus {
  background: var(--fond-button-clicked);
}

/*Login*/
.login-page {
  width: 500px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 0;
  background: var(--fond-principal);
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 5px;
}

/*Contact*/
.formcontact {
  padding-bottom: 30px;
  padding-top: 20px;
}
.formcontact input[type=text], textarea {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 5px;
}

.progress { 
  background: rgba(255,255,255,0.1);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  padding: 0 5px;
  display: flex;
  height: 40px;
  width: 500px;
}
.bar {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 100px;
  background: #00C000;
  height: 30px;
  width: 0;
}
.percent { 
  position:absolute; 
  display:inline-block; 
  left:50%; 
  color: #040608;
}

.link:hover {
  text-decoration: underline !important;
  font-weight: bold !important;
}

select {
  background: var(--fond-principal);
  padding: 5px;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  display: inline-block;
}
select:focus,select:hover {
    background: var(--fond-alertinfo);
}
option.darkred{
  color: darkorange;
}












/* - - - - - - Page Accueil - - - - - - */
.iconsAccueil > a {
  margin: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: var(--fond-footer);
  text-align: center;
  opacity: 1;
  transition: .1s;
}
.iconsAccueil > a > img {
  margin: 5px;
  padding: 5px;
  border-radius: 50px;
  height: 80px;
  width: 80px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%), 0 5px 5px 0 rgb(0 0 0 / 10%);
}
.iconsAccueil > a:hover,.iconsAccueil > a:active,.iconsAccueil > a:focus {
  opacity: 0.3;
}

.accueilArchivesContact {
  padding: 50px;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
.accueilArchivesContact > img {
  margin: 20px;
  height: 50px;
  width: 50px;
  align-self: center;
}









/* - - - - - - Page exposants - - - - - - */
.table-responsive {
  margin: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: center;
}
.table-responsive > a {
  margin: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: center;
  opacity: 1;
  transition: .1s;
}
.table-responsive > a > img {
  width: 200px;
  height: auto;
}
.table-responsive > a:hover,.table-responsive > a:active,.table-responsive > a:focus {
  opacity: 0.3;
}









/* - - - - - - Page archives - - - - - - */
div.archives {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.archives > a {
  margin: 1px;
  padding: 10px;
  background-size: 100% 200%;
  background-image: linear-gradient(to top, var(--fond-button-clicked) 50%, transparent 50%);
  transition: background-position 0.3s;
  border-bottom: 1px solid var(--fond-button-clicked);
  color: var(--fond-button-clicked);
  font-size: 20px;
}
.archives > a:hover,.archives > a:active,.archives > a:focus {
  background-position: 0 100%;
  color: var(--fond-principal);
  text-decoration: none;
}


.button-pannel {
  display: flex;
  align-items: center;
  padding: 7px;
  border-radius: 20px;
  background: var(--fond-button) !important;
  outline: 0;
  border: 0;
  text-align: left;
  color: var(--fond-principal);
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.button-pannel:hover,.button-pannel:active,.button-pannel:focus {
  background: var(--fond-button-clicked) !important;
}
.button-pannel-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
