@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

*{
  box-sizing: border-box;
}

html {
  height: 100%;
}

::-webkit-scrollbar {
  width: 4px; /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
  background: #343a40; /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
  background-color: #f1a72a;
  border-radius: 20px; /* roundness of the scroll thumb */
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    margin: 0;
    height: 100%;
}

a {
  text-decoration: none;
}

section {
  margin-left: 250px;
  padding-top: 76px;
  width: calc(100% - 250px);
  height: calc(100% - 56px);
  position: absolute;
  z-index: 1;
}

section.no-menu {
  margin-left: 0px;
  width: 100%;
}


/**** CSS Messages Erreur, infos et avertissement ****/

.info-red {
  color: black;
  background-color: white;
  border-left: 10px solid #dc011f;
  border-radius: 5px;
  width: 95%;
  padding: 10px;
  margin: 10px auto;
}

.info-red i {
  color: #dc011f!important;
  margin-right: 0px;
}

.info-red-full {
  color: #D8000C;
	background-color: #FFBABA;
  border: 1px solid #D8000C;
  padding: 10px;
  width: 95%;
  margin: 10px auto;
}

.info-green {
  color: black;
  background-color: white;
  border-left: 10px solid #95c870;
  border-radius: 5px;
  padding: 10px;
  width: 95%;
  margin: 10px auto;
}

.info-green i {
  margin-right: 5px;
  color: #95c870!important;
}

.info-green .return-button {
  color: #3f84ca;
  text-decoration: underline;
}


.info-yellow {
  color: #505050;
  background-color: #fdffdd;
  border: 1px solid #EEE78A;
  padding: 10px;
  width: 95%;
  margin: 10px auto;
}

.info-yellow i {
  margin-right: 5px;
}


.info-blue {
  padding: 5px;
  background-color: #CCE8F4;
  border: 1px solid #A2B9C1;
  color: #4F80A1;
  text-align: center;
  width: 95%;
  margin: 10px auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

.info-blue i {
  margin-right: 10px;
}

.popup-error {
  position: fixed;
  z-index: 500;
  background-color: #343a40;
  color: #d1d1d1;
  max-width: 25%;
  height: auto;
  top : 75px;
  right: 20px;
  padding: 20px;
  border-left: 10px solid #dc011f;
  border-radius: 5px;
  font-size: 0.9em;
  animation : fadein 0.5s;
}

.popup-validate {
  position: fixed;
  z-index: 500;
  background-color: #343a40;
  color: #d1d1d1;
  max-width: 25%;
  height: auto;
  top : 75px;
  right: 20px;
  padding: 20px;
  border-left: 10px solid #73bb6c;
  border-radius: 5px;
  font-size: 0.9em;
  animation : fadein 0.5s;
}


@keyframes fadein {
    from{
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/**** CSS de la page de connexion ****/


.logo-form{
  width: 100px;
  margin: 20px auto;
}

.logo-form img {
  width: 100%;
}

.login-header {
  margin-bottom: 30px;
  text-align: center;
}

.login-logo {
  width: 40%;
}

.container-form {
  margin: 30px auto;
}

.login-form {
  background-color: #343a40;
  width: 30%;
  margin: 0 auto;
  padding: 15px;
}

.login-form i {
  color: black;
  font-size: 1.5em;
  width: 10%;
  margin-right: 10px;
  text-align: center;
  color: #f9f9f9;
}

.login-form [type='text']{
  height : 40px;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 86%;
  background-color: #23282d;
  border-radius: 5px;
  color: #e9e9e9;
  border: 1px solid #1c2024;
  padding-left: 10px;
}

.login-form [type='password']{
  height : 40px;
  width: 86%;
  background-color: #23282d;
  border-radius: 5px;
  color: #e9e9e9;
  border: 1px solid #1c2024;
  margin-bottom: 10px;
  padding-left: 10px;
}

.login-form [type='email']{
  height : 40px;
  width: 86%;
  background-color: #23282d;
  border-radius: 5px;
  color: #e9e9e9;
  border: 1px solid #1c2024;
  margin-bottom: 10px;
  padding-left: 10px;
}

.login-form [type='submit']{
  width: 100%;
  background-color: #4CAF50;
  color: white;
  border: 1px solid #4CAF50;
  border-radius: 5px;
  padding: 15px 30px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.5s;
  cursor: pointer;
}

.login-form [type='submit']:hover {
  background-color: #343a40;
  color: #4CAF50;
}




/*** CSS HEADER + Menu Hamburger ***/



header {
  background-color: #343a40;
  width: 100%;
  position: fixed;
  z-index: 580;
}


header .title {
  font-size: 1.2em;
  color: white;
  display: flex;
  display: -webkit-flex;
  -moz-display: flex;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  width: 250px;
  padding: 5px 10px;
  transition: all 0.5s;
  height: 56px;
}

header .title:hover {
  color: #f1a72a;

}

header .open-mobile-menu{
  display: none;
}

header .tiny-logo {
  width: 75px;
  margin-top: 5px;
}

aside {
  height: 100%;
  max-width: 250px;
  min-width: 250px;
  position: absolute;
}

nav h2 {
  margin: 0px;
  font-size: 1.1em;
  font-weight: normal;
  top: 0;
  bottom: 0;

}

nav i {
  margin-right: 10px;
}

nav {
  background-color: #343a40;
  min-width: 215px;
  max-width: 215px;
  max-height: calc(100vh - 56px);
  min-height: calc(100vh - 56px);
  padding-top: 20px;
  padding-bottom: 50px;
  scrollbar-width: none;
  overflow-y:  scroll;
  position: fixed;
  z-index: 999;
  float: left;

}

nav h4 {
  text-align: center;
  font-weight: normal;
  margin: 5px;
  color: #f1a72a;
}

nav h5 {
  color: #f1a72a;
  text-align: center;
  font-weight: normal;
  width: 70%;
  margin: 0 auto;
  border-top: 1px dotted #f1a72a;
  padding-top: 5px;

}

nav ul.menu {
  margin-top: 15px;
  padding: 0px;
}

nav ul.menu li {
  list-style: none;
  padding: 10px 20px;
  color: #d0d8e0;
  font-size: 1em;
  border-top: 1px solid #40474f;
  border-bottom: 1px solid #40474f;
  transition: all 0.5s;
  position: relative;
}

nav ul.menu li.active {
  border-right: 10px solid #f1a72a;
}

nav ul.menu li:after {
  float: right;
  font-family: "Font Awesome 5 Free";
  font-size: 0.6em;
  font-weight: bold;
  content: "\f054";
  margin-top: 6px;
}

nav ul.menu li:hover{
  color: #f1a72a;
}

nav ul.menu li a{
  color: #d0d8e0;
  transition: all 0.5s;
}

nav ul.menu li:hover a{
  color: #f1a72a;
}

nav ul.menu li ul.sub-menu {
  position: absolute;
  background-color: #343a40;
  width: 275px;
  margin-top: 0px;
  font-size: 1em;
  display:none;
  padding-left: 0px;
}

nav ul.menu li:hover ul.sub-menu{
  top: -1px;
  left: 215px;
  display: block;
  position: absolute;
}

nav ul.menu li ul.sub-menu li {
  /*border: none;
  padding: 10px 15px;
  color: #d0d8e0;
  font-size: 1.3em;*/
  list-style: none;
  padding: 10px 20px;
  color: #d0d8e0;
  font-size: 1em;
  border-top: 1px solid #40474f;
  border-bottom: 1px solid #40474f;
  transition: all 0.5s;
  position: relative;
}

nav ul.menu li ul.sub-menu li a {
  color: #d0d8e0;
}

nav ul.menu li ul.sub-menu li:hover a {
  color : white;
}

nav ul.menu li ul.sub-menu li:hover{
  background-color: #f1a72a;
  color : #d0d8e0;
  border-bottom: 1px solid #f1a72a;
  border-top: 1px solid #f1a72a;
}

a.link{
  color: #343a40;
  margin-top: 20px;
}

a.link:hover {
  color: #f1a72a;
}

.disconnect {
  background-color: #f1a72a;
  padding: 5px;
  border: 1px solid #f1a72a;
  border-radius: 5px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 0 auto;
  transition: all 0.5s;
}

.disconnect:hover {
  background-color: #343a40;
}


/*** CSS HomePage - Esoace Client ***/

.welcome-message {
  background-color: white;
  width: 95%;
  border-left: 10px solid #f1a72a;
  border-radius: 5px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 20px auto;
}

.welcome-message p {
  margin: 5px;
}


/******* CSS Tableau général *******/

.container-bouton-liste-challenge {
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.item-bouton-liste-challenge {
  margin-left: 10px;
}


.add-button{
  background-color: #f1a72a;
  color: white;
  padding: 10px 20px;
  border: 1px solid #f1a72a;
  border-radius: 5px;
  font-size: 1em;
  font-family: 'Poppins';
  transition: all 0.5s;
}

.add-button:hover {
  background-color: #f9f9f9;
  color: #f1a72a;
}


.validate-button{
  background-color: #73bb6c;
  color: white;
  padding: 10px 20px;
  border: 1px solid #73bb6c;
  border-radius: 5px;
  font-size: 1em;
  font-family: 'Poppins';
  transition: all 0.5s;
}

.validate-button:hover {
  background-color: #f9f9f9;
  color: #73bb6c;
}




.container-list {
  border-radius: 5px;
  margin-top: 25px;
}

.table-title {
  color: #e9e9e9;
  background-color: #343a40;
  border-bottom: 5px solid #f1a72a;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  padding: 20px 15px;
  font-weight: normal;
  font-size: 1.1em;
  margin-bottom: 0px;
}

.filters {
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  background-color: white;
  padding: 20px;
  margin-top: 0;
}

.scrolls {
  width: 100%;
}

.filters select {
  padding: 10px;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  margin-right: 15px;
  font-family: 'Poppins';
  transition: all 0.3s;
  margin-top: 5px;
}



.search {
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}

.search .cancel-search {
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
  color: white;
  padding: 6px 13px;
  border-radius: 5px;
  margin-right: 7px;
  cursor: pointer;
  transition: all 0.5s;
}

.search .cancel-search:hover {
  background-color: white;
  color: #f1a72a;
}

.search input[type="text"]{
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  color: #343a40;
  padding: 10px 15px;
  font-size: 1em;
  width: 90%;
  transition: all 0.3s;
}

.search input[type="text"]:hover {
  border: 1px solid #f1a72a;
}

.table-form {
  background-color: white;
}

table.table-responsive {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 0.9em;
}


table.table-responsive select {
  padding: 0px;
  border: none;
  margin-right: 15px;
  font-family: 'Poppins';
  transition: all 0.3s;
}


/*** TR ***/

table.table-responsive tr:nth-child(even) {
  background-color: #f0f0f0;
  vertical-align: top;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}

table.table-responsive tr:nth-child(even):hover {
  background-color: #fceacd;
}

table.table-responsive tr:nth-child(odd) {
  background-color: #f7f7f7;
  vertical-align: top;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}

table.table-responsive tr:nth-child(odd):hover {
  background-color: #fceacd;
}

table.table-responsive tr.nocursor {
  cursor: default;
}
/** TH **/

table.table-responsive th {
  background-color: white;
  padding: 5px;
  font-weight: normal;
  font-family: 'Poppins';
  text-align: left;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 56px;
  border-bottom: 1px solid #e9e9e9;
}

table.table-responsive th.blue-header {
  width: 15px;
}

table.table-responsive th.green-header {
  width: 15px;
}

table.table-responsive th.select {
  width: 50px;
}

table.table-responsive th.action-header {
  font-size: 1.3em;
  padding-left: 15px;
}

table.table-responsive th#desc{
  color: #f1a72a;
}

table.table-responsive th#asc{
  color: #f1a72a;
}

table.table-responsive th.order:hover{
  color: #f1a72a;
}


table.table-responsive th.arrowDown{
  color: #f1a72a;
}

table.table-responsive th.arrowDown:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-left: 5px;
}

table.table-responsive th.arrowUp{
  color: #f1a72a;
}

table.table-responsive th.arrowUp:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d8";
  margin-left: 5px;
}



table.table-responsive th.titre_challenge{
  width: 17%;
}

table.table-responsive th.nom-defi{
  width: 30%;
}

table.table-responsive th.nom-equipe-header{
  width: 55%;
}

table.table-responsive th.instructions_challenge {
  width: 35%;
}

table.table-responsive th.temps_estime_min_challenge {
  width: 10%;
}

table.table-responsive th.etat-defi-header {
  width: 15%;
}

table.table-responsive th.espace_challenge {
  width: 13%;
}

table.table-responsive th.date_creation_challenge {
  width: 15%;
}

table.table-responsive th.moreOptions-header {
  width: 25px;
  text-align: center;
}

/** TD **/

table.table-responsive td {
  padding: 15px 5px;
}

table.table-responsive td.table-empty{
  padding-left: 20px;
}

table.table-responsive td.green {
  background-color: #73bb6c;
}

table.table-responsive td.orange {
  background-color: #f1a72a;
}

table.table-responsive td.grey {
  background-color: #808285;
}

table.table-responsive td.red {
  background-color: #dc011f;
}

table.table-responsive td.lightblue {
  background-color: #b3cbe2;
}

table.table-responsive td.blue {
  background-color: #3182d2;
}

table.table-responsive td.purple {
  background-color: #87607d;
}


table.table-responsive td.action {
    font-size: 1.3em;
    width: 50px;
}

table.table-responsive td.action i {
  transition: all 0.5s;
  padding-left: 10px;
}

table.table-responsive td.action i:hover {
  color: #f1a72a!important;
}

table.table-responsive td.chevron {
  transition: all 0.5s;
}

table.table-responsive td.title {
  font-weight: bold;
  max-width: 300px;
}

table.table-responsive td.commentaire {
  max-width: 400px;
}

table.table-responsive td.identifiant_utilisateur {
  font-weight: bold;
}

table.table-responsive td.nom-equipe {
  font-weight: bold;
}

table.table-responsive td.motdepasse-equipe {
  color: #3182d2;
  font-weight: bold;
}

table.table-responsive td.abonnement_utilisateur .info span.sub {
  color: #73bb6c;
}

table.table-responsive td.abonnement_utilisateur .info span.unsub {
  color: #dc011f;
}

table.table-responsive td.abonnement_utilisateur .info span.subplus {
  color: #f1a72a;
}

table.table-responsive td.time i {
  color: #f1a72a;
}


table.table-responsive td.date {
  color: #3182d2;
  text-decoration: underline;
}

table.table-responsive td.date-defi {
  color: #3182d2;
  text-decoration: underline;
}

table.table-responsive td.moreOptions {
  cursor: pointer;
  text-align: center;
}

table.table-responsive td.moreOptions a{
  color: black;
}

table.table-responsive td.moreOptions:hover, a{
  color: #f1a72a;
}

table.table-responsive .info {
  margin-top: 5px;
  line-height: 1em;
}

/** INFOPLUS TOGGLE **/
table.table-responsive .infoplus{
  display: none;
  margin-top: 40px;
  font-size: 10pt;
  text-decoration: none!important;
  color: #343a40;
  font-weight: normal;
}

table.table-responsive .infoplus p{
  min-height: 40px;
}

table.table-responsive .infoplus a{
  transition: all 0.5s;
}

table.table-responsive .infoplus a:hover {
  color: #343a40;
}

table.table-responsive .infoplus .container-flags {
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 10px;
}

table.table-responsive .infoplus .flag {
  width: 25px;
  height: 25px;
  margin-top: -15px;
  margin-left: 10px;
}

table.table-responsive .langue .flag {
  width: 25px;
  height: 25px;

}

table.table-responsive .open{
  display: block!important;
}

table.table-responsive .urls-defi{
  margin: 10px 0 15px 0;
}

table.table-responsive .table-miniature {
  width: auto;
  max-height: 80px;
  margin: 0 auto;
}

table.table-responsive a.qrcode-link {
  color: white;
  text-align: center;
}

table.table-responsive .qrcode-button {
  background-color: #f1a72a;
  color: white;
  padding: 5px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #f1a72a;
  transition: all 0.5s;
  width: 70%;
  text-align: center;
}


table.table-responsive .qrcode-button:hover {
  background-color: rgba(0,0,0,0);
  color: #f1a72a;
  padding: 5px;
  border-radius: 5px;
}

table.table-responsive .challenges .challenge-button {
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  text-align: center;
  transition: all 0.5s;
}

table.table-responsive .infoplus .challenges .challenge-button:hover {
  background-color: rgba(0,0,0,0);
  color: #f1a72a;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}


table.table-responsive .add-equipe table{
  margin: 10px 0 0 0;
  width: 90%;
  border-radius: 5px;
}

table.table-responsive .add-equipe tr {
  padding: 0px;
  background-color: white;
  color: #343a40;
}

table.table-responsive .add-equipe tr:hover {
  background-color: white;
}

table.table-responsive .add-equipe td {
  padding: 5px;
}

table.table-responsive .delete-equipe {
  text-align: center;
  background-color: #dc011f;
  transition: all 0.5s;
}

table.table-responsive .delete-equipe:hover {
  background-color: rgba(0,0,0,0);
}

table.table-responsive .delete-equipe:hover i {
  color: #dc011f;
}

table.table-responsive .delete-equipe i{
  color: white;
  transition: all 0.5s;
}

table.table-responsive tr.form-equipe {
  background-color: rgba(0,0,0,0);
}

table.table-responsive tr.form-equipe:hover {
  background-color: rgba(0,0,0,0);
}

table.table-responsive tr.form-equipe td {
  text-align: center;
}

table.table-responsive tr.form-equipe td select {
  padding: 5px;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  font-family: 'Poppins';
  transition: all 0.3s;
  margin-top: 5px;
  width: 60%;
}

table.table-responsive tr.form-equipe .addteam-button {
  padding: 5px;
  border: 1px solid #73bb6c;
  background-color: #73bb6c;
  border-radius: 5px;
  font-family: 'Poppins';
  transition: all 0.3s;
  margin: 5px auto 0 auto;
  width: 80%;
  color: white;
  cursor: pointer;
}

table.table-responsive tr.form-equipe td .addteam-button:hover{
  background-color: rgba(0,0,0,0);
  color: #73bb6c;
}


table.table-responsive .infoplus .challenges {
  margin-top: 20px;
}

table.table-responsive .info-start-defi-red {
  font-size: 0.8em;
  margin-bottom: 0px;
  color: #dc011f;
  font-style: italic;
  text-decoration: none;
}

table.table-responsive .container-bouton-infoplus {
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

table.table-responsive .bouton-infoplus {
  width: 32%;
  padding: 5px 5px;
  font-size: 1.3em;
  text-align: center;
  color: white;
  border-radius: 5px;
}

table.table-responsive .container-bouton-equipe {
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

table.table-responsive .bouton-equipe {
  width: 45%;
  padding: 5px 5px;
  font-size: 1em;
  text-align: center;
  color: white;
  border-radius: 5px;
}



table.table-responsive .edit {
  background-color: #46a3f1;
  border: 1px solid #46a3f1;
  transition: all 0.5s;
}

table.table-responsive .edit:hover{
  background-color: #fceacd;
  color: #46a3f1;
}

table.table-responsive .delete {
  background-color: #d04e4e;
  border: 1px solid #d04e4e;
  transition: all 0.5s;
}

table.table-responsive .delete:hover {
  background-color: #fceacd;
  color: #d04e4e;
}

table.table-responsive .validate {
  background-color: #73bc6d;
  border: 1px solid #73bc6d;
  transition: all 0.5s;
}

table.table-responsive .validate:hover {
  background-color: #fceacd;
  color: #73bc6d;
}

table.table-responsive .restart {
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
  transition: all 0.5s;
}

table.table-responsive .restart:hover {
  background-color: #fceacd;
  color: #f1a72a;
}



/******************************/


.table-footer {
  padding: 10px 20px 20px 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.container-action {
  -moz-display: flex;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.deleteList {
  color: #f1a72a;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.5s;
  margin-left: 8px;
  margin-bottom: 15px;
}

.deleteList:hover {
  color: #343a40;
}

.container-action select {
  padding: 10px;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  margin-right: 10px;
  font-family: 'Poppins';
  transition: all 0.3s;
}

.assignButton {
  background-color: #f1a72a;
  color: white;
  border: 1px solid #f1a72a;
  padding: 10px;
  transition: all 0.5s;
  border-radius: 5px;
  font-size: 0.8em;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;
}

.assignButton:hover {
  background-color: rgba(0,0,0,0);
  color: #f1a72a;
}


#pagination {
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.prevButton {
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
  color: white;
  padding: 4px 9px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin: 0 5px;
}

.nextButton {
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
  color: white;
  padding: 4px 9px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin: 0 5px;
}

.prevButton:hover, .nextButton:hover {
  background-color: #f9f9f9;
  color: #f1a72a;
  transition: all 0.5s;
}

.item-pagination {
  background-color: #343a40;
  border: 1px solid #343a40;
  color: white;
  padding: 4px 11px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px 5px;
}

.item-pagination:hover {
  background-color: #f9f9f9;
  color: #343a40;
  transition: all 0.5s;
}

.item-pagination.tinyPagination {
  font-size: 0.8em;
}

#pagination .selected {
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
}

#pagination .selected:hover {
  background-color: #f9f9f9;
  color: #f1a72a;
  transition: all 0.5s;
}

#pagination #disabled {
  background-color: #e9e9e9;;
  color: white;
  cursor: not-allowed;
  border: 1px solid #e9e9e9;
}


/**** CSS Page Mon Compte ****/

.account {
  padding: 20px;
}
.account-infos {
  border-collapse: collapse;
  margin-top: 0px;
  width: 100%;
}

.account-infos tr:hover{
  background-color: #f5f5f5;
}

.account-infos td {
  border-bottom: 1px solid rgba(52, 58, 64, 0.2);
  padding: 5px;
}

.account-infos .title-infos {
  width: 22%;
}

.account-infos .values-infos{
  color: #808285;
  font-size: 0.9em;
}

.account-infos .edit-infos {
  text-align: right;
  padding-right: 10px;
}

.account-infos .edit-infos a:hover {
  text-decoration: underline;
}

.account-infos .edit-infos a:hover:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f044";
  margin-right: 5px;
}


/*** CSS Formulaires création/édition ***/

.add-form {
  display: flex;
  display: -webkit-flex;
  -moz-display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.content-form {
  width: 100%;
}

.empty-field {
  border: 2px solid rgba(241,167,42, 0.5)!important;
  border-radius: 5px;
}

.content-form input[type="text"]{
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  color: #343a40;
  padding: 10px 15px;
  font-size: 1.2em;
  width: 75%;
  margin-top: 5px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.content-form input[type="text"]:hover {
  border: 1px solid #f1a72a;
}

.content-form input[type="email"]{
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  color: #343a40;
  padding: 10px 15px;
  font-size: 1.2em;
  width: 75%;
  margin-top: 5px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.content-form input[type="email"]:hover {
  border: 1px solid #f1a72a;
}

.content-form input[type="number"] {
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  color: #343a40;
  padding: 10px 15px;
  font-size: 1.2em;
  width: 75%;
  margin-top: 5px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.content-form input[type="number"]:hover {
  border: 1px solid #f1a72a;
}

.content-form input[type="password"]{
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  color: #343a40;
  padding: 10px 15px;
  font-size: 1.2em;
  width: 37%;
  margin-top: 5px;
  margin-bottom: 20px;
  margin-right: 10px;
  transition: all 0.3s;
}

.content-form input[type="password"]:hover {
  border: 1px solid #f1a72a;
}

.content-form select {
  padding: 10px;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-right: 15px;
  font-family: 'Poppins';
  transition: all 0.3s;
}

.content-form select:hover {
  border: 1px solid #f1a72a;
}

.content-form textarea {
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  color: #343a40;
  padding: 10px 15px;
  font-size: 1em;
  width: 100%;
  margin-top: 0px;
  font-family: 'Poppins';
  transition: all 0.3s;
}

.content-form textarea:hover {
  border: 1px solid #f1a72a;
}

.content-form .checkbox-container {
 margin-top: 10px;
}

.content-form .checkbox {
  width: 100%;
  background-color: white;
  padding: 10px;
  margin-top: 20px;
}


.content-form .checkbox-container .label-titre{
  font-size: 1em;
  background-color: #343a40;
  border-radius: 5px;
  border-right: 3px solid #f1a72a;
  border-left: 3px solid #f1a72a;
  color: white;
  padding: 10px 20px;
}

.content-form .checkbox-container label{
 margin-right: 30px;
}

.content-form [type="checkbox"]{
  width: 20px;
}

.bloc-picture {
  width: 48%;
  margin-top: 15px;
  padding: 0;
}


.bloc-map {
  width: 48%;
  margin-top: 15px;
}


.add-traduction {
  background-color: #e9e9e9;
  color: #8e8e8e;
  width: 100%;
  line-height: 40px;
  border-radius: 10px;
  padding: 10px 10px 10px 25px;
  font-size: 1.1em;
  border: 1px solid #d1d1d1;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.5s;
  margin-top: 20px;
}

.add-traduction:hover {
  opacity: 1;
  border: 1px solid #f1a72a;
  color: #f1a72a;
}

.form-trad {
  background-color: #efefef;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 10px;
}

.form-trad h3 {
  margin-left: 10px;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.buttons {
  width: 100%;
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: center;
  margin-top: 20px;
}

.submit-button{
  background-color: #f1a72a;
  color: white;
  padding: 10px 20px;
  border: 1px solid #f1a72a;
  border-radius: 5px;
  font-size: 1em;
  margin: 10px;
  font-family: 'Poppins';
  transition: all 0.5s;
}

.submit-button:hover {
  background-color: white;
  color: #f1a72a;
  cursor: pointer;
}

.cancel-button {
  background-color: #343a40;
  color: white;
  padding: 10px 20px;
  border: 1px solid #343a40;
  border-radius: 5px;
  font-size: 1em;
  margin: 10px;
  transition: all 0.5s;
}

.cancel-button:hover {
  background-color: white;
  color: #343a40;
  cursor: pointer;
}



/** Code uploader personnaliser **/
 .input-file-container {
   position: relative;
   width: 100%;
   text-align: center;
   margin-bottom: 20px;
 }
 .js .input-file-trigger {
   display: block;
   padding: 75px 20px;
   text-align: center;
   width: 100%;
   background: white;
   border: 1px solid #d1d1d1;
   color: #343a40;
   font-size: 1.3em;
   transition: all .4s;
   cursor: pointer;
   margin: 0 auto;
   border-radius: 5px;
   position: relative;
   z-index: -1;
 }

 .js .input-file-trigger i {
   margin-right: 10px;
 }

 .js .input-file {
   position: absolute;
   top: 0px; left: 0;
   width: 100%;
   opacity: 0;
   height: 100%;
   cursor: pointer;
 }

 .js .input-file:hover + .input-file-trigger,
 .js .input-file:focus + .input-file-trigger,
 .js .input-file-trigger:hover,
 .js .input-file-trigger:focus {
   background: #f1a72a;
   color: white;
 }


#thumb-output{
  max-width: 100%;
  margin: 0 auto 10px auto;
  text-align: center;
  background-color: #e9e9e9;
  border: 1px solid #d1d1d1;
  font-size: 2.5em;
  border-radius: 5px;
}

#thumb-output i {
  margin: 70px auto;
}

 .thumb{
     margin: 10px auto 0 auto;
     max-width: 100%;
     max-height: 156px;
     overflow: hidden;
     box-sizing: border-box;
 }




 /*************************/

 /*** CSS Map google ***/


#map-canvas {
  width: 100%;
  height: 320px;
  margin-bottom: 15px;
}

.coords {
  width: 45%!important;
}

.info-mobile {
  display: none;
}

.refresh-button {
  background-color: #4B96F3;
  border: 1px solid #4B96F3;
  color: white;
  padding: 7px 12px;
  border-radius: 5px;
  margin-top: 6px;
  transition: all 0.5s;
}


.refresh-button:hover {
  background-color: white;
  color: #4B96F3;
}

 /***********************/

/**** CSS Défis en cours *******/


.container-defis-ingame {
  -moz-display: flex;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 40px auto 70px auto;
  width: 100%;
  overflow-y: auto;

}

.container-defis-ingame.fullscreen {
  -moz-display: flex;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 40px auto 70px auto;
  width: 100%;
  overflow-y: auto;

}

.item-defi {
  background-color: white;
  width: 30%;
  min-width: 30%;
  margin-right: 50px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.item-defi.unique {
  width: 45%;
}

.item-defi .context-menu-ingame {
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: -61px;
  color: white;
  font-size: 1.1em;
  transition: all 0.5s;
  cursor: pointer;
}



.item-defi .context-menu-ingame:hover {
  color: #f1a72a;
}

.item-defi .context-menu-ingame i {
  padding: 10px 10px 10px 10px;
}


.item-defi .full-screen-ingame {
  position: absolute;
  right: 0px;
  top: 15px;
  color: white;
  cursor: pointer;
}

.item-defi .full-screen-ingame a {
  color: white;
  transition: all 0.5s;
}

.item-defi .full-screen-ingame a:hover {
  color: #f1a72a;
}

.item-vote {
  width: 45%;
  text-align: center;
  background-color: white;
  padding: 30px 30px;
  border-radius: 10px;
  margin: 20px;
}

.container-inscrits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
}

.container-inscrits h2.infoNombre{
  width: 40%;
}

.container-inscrits h2.infoSeparateur{
  width: 15%;
}



.picture-defi-ingame {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.color-defi{
  padding: 20px;
  text-align: center;
}

.big-letter {
  font-size: 2.9em;
  line-height: 1.2em;
  font-weight: bold;
  color: white;
}

.title-defi-ingame {
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  color: white;
  font-size: 1.2em;
  max-height: 30px;
}

.item-defi h2 {
  background-color: #343a40;
  color: white;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  font-weight: normal;
  font-size: 1.2em;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.item-defi h2.title-ingame {
  padding: 15px;
  margin-top: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}


.etat-defi {
  padding: 5px;
  font-size: 1.1em;
  color: white;
  text-align: center;
}

.inplay {
  background-color: #73bb6c;
}

.inpause {
  background-color: #dc011f;
}

.startvote {
  background-color: #b3cbe2;
}

.invote {
  background-color: #3182d2;
}

.inresults {
  background-color: #f1a72a;
}

.progression-title{
  text-align: center;
  background-color: #343a40;
  color: white;
  font-size: 1.1em;
  padding: 5px;
}

.progression-item {
  background-color: #f5f5f5;
  color: #343a40;
  padding: 5px;
  margin-bottom: 2px;
  text-align: center;
}

.progress-bar-container {
  width: 80%;
  height: 25px;
  padding: 0;
  background-color: white;
  margin: 5px auto;
  border-radius: 5px;
  line-height: 25px;
}

.progress-bar {
  background-color: #f1a72a;
  height: 100%;
  margin-top: -25px;
  border-radius: 5px;
}

.actions {
  -moz-display: flex;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px auto 0 auto;
}

.item-actions{
  box-sizing: border-box;
  width: 25%;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 15px 10px;
  color: white;
  cursor: pointer;
  transition: all 0.5s;
  background-color: #343a40;
}

.item-actions:hover{
  background-color: white;
  color: #343a40;
}

.disabled-action {
  box-sizing: border-box;
  width: 25%;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 15px 10px;
  color: white;
  transition: all 0.5s;
  background-color: #808285;
}

.selected-action {
  box-sizing: border-box;
  width: 25%;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 15px 10px;
  color: white;
  transition: all 0.5s;
  background-color: #f1a72a;
}

.count {
  border:1px solid #f1a72a; 
  border-radius: 5px; 
  color: black;
  height: 50px;
  padding: 0;
  line-height: 50px;
}

.progressbar-vote {
  background-color: #f1a72a; 
  border-radius: 5px; 
  height: 50px;
  margin-top: -50px;
}

.infos-question {
  background-color: #f9f9f9;
  border: 1px solid #e9e9e9;
  margin-bottom: 10px;
}


.showResults{
  max-width: 400px;
  margin: 10px auto;
  padding: 20px;
  font-size: 1.2em;
  animation-name: glowResult;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.showResults i{
  font-size: 2.2em;
}

.winnerOverlay {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  z-index: 999;
  text-align: center;
}

.winnerOverlay .holder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 90vw;
  margin: 0 auto;
}

.winnerOverlay .holder > div {
  flex: 0 1 auto;
  max-width: 45%;
}

.winnerOverlay .holder img {
  max-height: 70vh;
  width: auto;
  object-fit: contain;
}

.winnerOverlay h2{
  margin: 0 auto 30px auto;
  color: white;
  padding: 15px;
  width: 400px;
  border-radius: 10px;
  background-color: #f1a72a;
}

.nomEquipe {
  font-size: 1.4em;
  color: white;
}

/*************************************************************/
/** Animation de glow pour l'affichage de l'image gagnante **/
/***********************************************************/

.bar{
  background: #d0f0dd;
  box-shadow: 0px 0px 0 #f1a72a,
    0px 0px 4px #f1a72a,
    0px 0px 8px #ff9d00,
    0px 0px 16px #ff9d00;
  border-radius: 4px;
  position: absolute;
}
.left{
  width: 8px;
  -webkit-animation: left 2s linear infinite;
}
@-webkit-keyframes left{
  0%  {height: 0; top: 100vh; left: 0;}
  20% {height: 100vh; top: 0; left: 0;}
  40% {height: 0; top: 0; left: 0;}
}
.top{
  height: 8px;
  -webkit-animation: top 2s linear infinite;
}
@-webkit-keyframes top{
  0%  {width: 0; top: 0; left: 0;}
  20% {width: 0; top: 0; left: 0;}
  40% {width: 99.4vw; top: 0; left: 0;}
  60% {width: 0; top:0; left: 99.4vw;}
}
.right{
  width: 8px;
  -webkit-animation: right 2s linear infinite;
}
@-webkit-keyframes right{
  0%  {height: 0; top: 0; left: 99.4vw;}
  40% {height: 0; top: 0; left: 99.4vw;}
  60% {height: 100vh; top: 0; left: 99.4vw;}
  80% {height: 0; top: 99.4vh;left: 99.4vw;}
}
.bottom{
  height: 8px;
  -webkit-animation: bottom 2s linear infinite;
}
@-webkit-keyframes bottom{
  0%  {width: 0; top: 99.4vh; left: 99.4vw;}
  60% {width: 0; top: 99.4vh; left: 99.4vw;}
  80% {width: 99.4vw; top: 99.4vh; left: 0px;}
  100% {width: 0px; top:99.4vh; left: 0px;}
}


.winnerOverlay img {
  width: 400px;
}


.result-action{
  box-sizing: border-box;
  width: 50%;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 15px 10px;
  color: white;
  cursor: pointer;
  transition: all 0.5s;
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
  border-radius: 10px;
  animation-name: glowResult;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.result-action:hover{
  background-color: rgba(0,0,0,0);
  color: #f1a72a;
}

@keyframes glowResult{
  0% {
    -webkit-box-shadow: 1px 1px 50px 1px #f1a72a;
    -moz-box-shadow: 1px 1px 50px 1px f1a72a;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1, Color='#3f84ca', Positive='true');
    zoom: 1;
    box-shadow: 1px 1px 50px 1px f1a72a;
  }
  20%{
    -webkit-box-shadow: 1px 1px 40px 1px #f1a72a;
    -moz-box-shadow: 1px 1px 40px 1px f1a72a;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1, Color='#3f84ca', Positive='true');
    zoom: 1;
    box-shadow: 1px 1px 40px 1px f1a72a;
  }
  40%{
    -webkit-box-shadow: 1px 1px 30px 1px #f1a72a;
    -moz-box-shadow: 1px 1px 30px 1px f1a72a;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1, Color='#3f84ca', Positive='true');
    zoom: 1;
    box-shadow: 1px 1px 30px 1px f1a72a;
  }
  60%{
    -webkit-box-shadow: 1px 1px 20px 1px #f1a72a;
    -moz-box-shadow: 1px 1px 20px 1px f1a72a;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1, Color='#3f84ca', Positive='true');
    zoom: 1;
    box-shadow: 1px 1px 20px 1px f1a72a;
  }
  80%{
    -webkit-box-shadow: 1px 1px 10px 1px #f1a72a;
    -moz-box-shadow: 1px 1px 10px 1px f1a72a;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1, Color='#3f84ca', Positive='true');
    zoom: 1;
    box-shadow: 1px 1px 10px 1px f1a72a;
  }
  100%{

  }
}

/******* fin animation glow *********/


 /************* CSS Liste Page ************/

 .droits-pages i{
   color: #f1a72a;
   font-size: 1.3em;
   transition: all 0.5s;
 }

 .droits-pages .head-checkable {
   text-align: center;
   font-weight: bold;
   border-left: 1px solid #e9e9e9;
   border-right: 1px solid #e9e9e9;
   padding: 20px;
 }


 .droits-pages td:first-child {
   text-align: left;
   padding-left: 20px;
 }

 .droits-pages td.moreOptions {
   padding-left: 10px;
   padding-right: 10px;
   transition: all 0.5s;
 }

 .droits-pages td.moreOptions i {
   color: #343a40;
   font-size: 1em;
 }

 .droits-pages td.moreOptions:hover i {
   color: #f1a72a;
 }

 .droits-pages .checkable {
   border-left: 1px solid #e9e9e9;
   border-right: 1px solid #e9e9e9;
   text-align: center;
   transition: all 0.5s;
 }

 .droits-pages .checkable:hover .checkable {
   background-color: #f1a72a;
   color: white;
 }

 .droits-pages .checkable:hover i {
   color: #343a40;
 }

 .droits-pages .access {
   color: #f1a72a;
 }

 .droits-pages .noaccess {
   color: #e9e9e9;
 }



 /***************************************/





/********** CSS Page d'aide ************/

.container-role {
  display: flex;
  -webkit-display: flex;
  -moz-display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.button-role {
  background-color: #f1a72a;
  border: 1px solid #f1a72a;
  color: white;
  font-size: 1.1em;
  padding: 10px;
  border-radius: 5px;
  margin-left: 5px;
  margin-right: 5px;
  transition: all 0.5s;
}

.button-role:hover {
  background-color: white;
  color: #f1a72a;
}

.button-role-disabled {
  background-color: #cecece;
  border: 1px solid #cecece;
  color: white;
  font-size: 1.1em;
  padding: 10px;
  border-radius: 5px;
  margin-left: 5px;
  margin-right: 5px;
  transition: all 0.5s;
}


h2.big-title-aide {
  background-color: white;
  border: 1px solid #343a40;
  border-left: 10px solid #343a40;
  border-radius: 5px;
  padding: 5px 5px 5px 10px;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: normal;
  color: #343a40!important;
  font-size: 1.2em;
}

h2.big-title-aide:hover {
  background-color: white;
  color: white;
}

.tutoriel h3{
  color: #f1a72a;
}

.interface-organisateur {
  display: block;
}

.interface-jeu {
  display: none;
}

#equipes{
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#equipes:target {
  height: auto;
  padding-bottom: 100px;
}


#challenges{
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#challenges:target {
  height: auto;
  padding-bottom: 100px;
}

#defis{
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#defis:target {
  height: auto;
  padding-bottom: 100px;
}

#animateurs{
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#animateurs:target {
  height: auto;
  padding-bottom: 100px;
}

#liens {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#liens:target {
  height: auto;
  padding-bottom: 100px;
}

#start-defi {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#start-defi:target {
  height: auto;
  padding-bottom: 100px;
}

#jeu {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#jeu:target {
  height: auto;
  padding-bottom: 100px;
}

#pause {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#pause:target {
  height: auto;
  padding-bottom: 100px;
}

#vote {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#vote:target {
  height: auto;
  padding-bottom: 100px;
}

#interface-vote {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#interface-vote:target {
  height: auto;
  padding-bottom: 100px;
}

#voter {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#voter:target {
  height: auto;
  padding-bottom: 100px;
}

#resultats {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#resultats:target {
  height: auto;
  padding-bottom: 100px;
}

#archive {
  height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

#archive:target {
  height: auto;
  padding-bottom: 100px;
}

.container-image-aide {
  display: flex;
  -webkit-display: flex;
  -moz-display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.item-image-aide {
  width: 40%;
  display: flex;
  -webkit-display: flex;
  -moz-display: flex;
  align-items: center;
  border: 2px solid #f1a72a;
  text-align: center;
  margin-top: 20px;
}

.legende {
  color: #f1a72a;
  text-align: center;
  margin-bottom: 30px;
}

.biglink {
  font-weight: bold;
  text-decoration: underline;
}


/***************************************/


/** CSS réutilisable **/


.content {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
}

.page-title {
  color: #e9e9e9;
  background-color: #343a40;
  border-bottom: 5px solid #f1a72a;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  width: 60%;
  padding: 10px 15px;
  font-weight: normal;
  font-size: 1.1em;
}

.surline {
  color: #f1a72a;
}

.underline {
  text-decoration: underline;
}

.separateur {
  background-color: #343a40;
  height: 10px;
  width: 60%;
  margin: 30px auto;
  border-radius: 5px;
  border-left: 15px solid #f1a72a;
  border-right: 15px solid #f1a72a;
}

.optional {
  color: #808285;
  font-size: 0.7em;
  font-style: italic;
}


.shadow {
  -moz-box-shadow: 1px 1px 5px 0px #aaaaaa;
 -webkit-box-shadow: 1px 1px 5px 0px #aaaaaa;
 -o-box-shadow: 1px 1px 5px 0px #aaaaaa;
 box-shadow: 1px 1px 5px 0px #aaaaaa;
 filter:progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa, Direction=134, Strength=5);
}

.flex-between {
  width: 100%;
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-around {
  width: 100%;
  display: flex;
  -moz-display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-start;
}

.desktop-display {
  display: block;
  width: 100%;
}

.mobile-display {
  display: none;
}

.scroll-sign {
  float: right;
  margin-right: 10px;
  color: #f1a72a;
}


.infobulle {
  position: relative;  /* les .infobulle deviennent référents */
  cursor: help;
}

/* on génère un élément :after lors du survol et du focus :*/
.infobulle:hover::after,
.infobulle:focus::after {
  content: attr(aria-label);  /* on affiche aria-label */
  position: absolute;
  top: -2.4em;
  left: 50%;
  transform: translateX(-50%); /* on centre horizontalement  */
  z-index: 1; /* pour s'afficher au dessus des éléments en position relative */
  white-space: nowrap;  /* on interdit le retour à la ligne */
  background-color: rgba(52, 58, 64, 1); /* #343a40 */
  padding: 10px;
  color: white;
  font-size: 0.9em;
  border-radius: 5px;
  animation-name: appear;
  animation-duration: 0.5s;
  border-left: 5px solid #f1a72a;
}




@keyframes appear {
    from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
