@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;1,500&display=swap");

/**
 * ----------------------------------------
 * animation puff-in-center
 * ----------------------------------------
 */
@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.puff-in-center {
  -webkit-animation: puff-in-center 0.4s cubic-bezier(0.47, 0, 0.745, 0.715)
    both;
  animation: puff-in-center 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 4s;
}

:root {
  --main-bg-color: #fff;
  --main-text-color: #000;
}

*,
*::after,
*::before {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-app-region: no-drag;
  -ms-overflow-style: none;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: "Open Sans", sans-serif !important;
}
*::-webkit-scrollbar {
  display: none;
}

a {
  color: #3e78b2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

html,
body.index {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;

  background-color: var(--main-bg-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  bottom: 100vh; /* fallback? */
  bottom: calc(100vh - env(safe-area-inset-bottom)); /* new thing */
}

body:not(.index) {
  background-color: var(--main-bg-color);
  position: fixed;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;

  transition: opacity 0.3s;
}

/****************************************************************************
Fenetre de connexion à l'index
****************************************************************************/
div#mainLogin {
  width: 350px;
  background-color: var(--main-bg-color) fff;
  margin: auto;
  padding: 0px;
  padding-bottom: 0;
  text-align: center;
  max-width: 100%;
  max-height: 100%;
  overflow: scroll;
}

div#mainLogin h1 {
  font-weight: normal;
  margin: 0 0 20px 0;
  font-size: 28px;
}

div#mainLogin img {
  width: 100px;
  margin: 0 0 50px 0;
}

div#mainLogin p {
  color: var(--main-text-color);
}

/****************************************************************************
Formulaires
****************************************************************************/
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--main-text-color);
  opacity: 0.5;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--main-text-color);
  opacity: 0.5;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--main-text-color);
  opacity: 0.5;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: var(--main-text-color);
  opacity: 0.5;
}

input[type="button"] {
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
input[type="date"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 15px 10px 15px;
  margin-bottom: 20px;
  margin-top: 10px;
  border: 1px solid var(--main-text-color);
  font-size: 16px;
  color: var(--main-text-color);
  border-radius: 0;
}

input[type="text"].readOnly {
  border: none !important;
}

label {
  margin-left: 5%;
  margin-right: 5%;
  color: var(--main-text-color);
}

input[type="radio"] {
  margin-top: 20px;
  margin-bottom: 20px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="date"]:focus,
.select:focus {
  outline: none;
}

input[type="submit"] {
  padding: 10px 15px 10px 15px;
  color: var(--main-bg-color);
  background-color: #6ba368;
  font-size: 16px;
  margin-top: 40px;
  border: none;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-focus-ring-color: transparent;
}

textarea {
  height: 150px;
}

input[type="submit"]:hover {
  cursor: pointer;
}

input[type="radio"].radioHide,
input[type="checkbox"].radioHide,
input[type="radio"].modifPresence {
  position: absolute;
  visibility: hidden;
}

input[type="radio"].radioHide:checked + label.radioHide,
input[type="checkbox"].radioHide:checked + label.radioHide {
  background-color: var(--main-text-color);
  color: var(--main-bg-color);
  border: 1px solid var(--main-text-color);
}

input[type="range"] {
  position: relative;
  margin-left: 1em;
}
input[type="range"]:after,
input[type="range"]:before {
  position: absolute;
  top: 1em;
  color: #aaa;
}
input[type="range"]:before {
  left: 0em;
  color: var(--main-text-color);
  content: attr(min);
}
input[type="range"]:after {
  right: 0em;
  color: var(--main-text-color);
  content: attr(max);
}

label.radioHide {
  cursor: pointer;
  margin: 0px;
  padding: 7.5px 10px 7.5px 10px;
  background-color: var(--main-bg-color);
  border: 1px solid var(--main-text-color);
  color: var(--main-text-color);
  line-height: 35px;
  display: inline-block;
  margin: 3px;
  -webkit-tap-highlight-color: transparent;
}

label.modifPresence {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0px;
  margin-top: 4px;
  margin-bottom: 1px;
  cursor: pointer;
  margin-right: 1px;
  margin-left: 1px;
}

input[type="radio"].modifPresence:checked + label.modifPresence {
  border: 5px solid #444 !important;
  width: 12px !important;
  height: 12px !important;
}

.select select {
  background: transparent;
  width: 268px;
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: 0;
  height: 34px;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"].select {
  width: 150px !important;
  display: inline;
  margin-top: auto;
  margin-bottom: auto;
}

.select {
  padding: 10px 15px 10px 15px;
  margin-bottom: 10px;
  border: 1px solid var(--main-text-color);
  font-size: 16px;
  color: var(--main-text-color);
  background: var(--main-bg-color) fff;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
  cursor: pointer;
}

.filtreJeune,
.filtreAccueil {
  display: inline-block;
}

.filtreJeune p {
  font-size: 12px;
  margin: 0;
  font-weight: bold;
  padding: 0 0 4px 2px;
  text-align: left;
}

/* The slider itself */
.slider {
  -webkit-appearance: none; /* Override default CSS styles */
  appearance: none;
  width: 200px; /* Full-width */
  height: 5px; /* Specified height */
  background: var(--main-bg-color); /* Grey background */
  border: 1px solid var(--main-text-color);
  outline: none; /* Remove outline */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 20px; /* Set a specific slider handle width */
  height: 20px; /* Slider handle height */
  border-radius: 20px;
  background: var(--main-text-color); /* Green background */
  cursor: pointer; /* Cursor on hover */
  border: none;
}

.slider::-moz-range-thumb {
  width: 20px; /* Set a specific slider handle width */
  height: 20px; /* Slider handle height */
  border-radius: 20px;
  background: var(--main-text-color); /* Green background */
  cursor: pointer; /* Cursor on hover */
  border: none;
}

/****************************************************************************
Entête des pages
****************************************************************************/
header {
  height: 120px;
  width: 100%;
  max-width: 1250px;
  box-sizing: border-box;
  padding: 20px;
  margin: 10px 0 10px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
}

header div#leftNav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
}

header #logotype {
  font-size: 24px;
  margin: 0;
}

header select#currentVolee {
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  color: var(--main-text-color);
  outline: none;
  cursor: pointer;
  text-decoration: underline;
}

header nav {
  margin-top: 0px;
  height: 100%;
  display: block;
  text-align: right;
  margin-left: 20px;
  overflow: scroll;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
}

header nav ul {
  list-style-type: none;
  padding: 0px;
  font-size: 0;
  white-space: nowrap;
}

header nav ul li {
  display: inline-block;
  position: relative;
}

header nav ul li a {
  padding: 10px 15px 10px 15px;
  color: var(--main-text-color);
  border: none;
  background-color: var(--main-bg-color);
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 20px;
}

header nav ul li a:hover {
  text-decoration: underline;
}

header nav ul li a.deconnexion {
  color: #e85d75;
  margin-left: 40px;
}

p#showMainNav {
  display: none;
  float: right;
  margin-top: 0px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

p#showMainNav span.menu {
  width: 30px;
  height: 3px;
  background-color: #4e6ee3;
  display: block;
  margin-top: 6px;
}

p#showMainNav:hover span.menu {
  background-color: #713541;
}

/****************************************************************************
Contenu principal des pages (sauf index)
****************************************************************************/
div#mainContent {
  width: 100%;
  max-width: 1250px;
  padding: 20px;
  margin: 0 auto;
  background-color: var(--main-bg-color) fff;
  height: calc(100vh - 200px);
  box-sizing: border-box;
  overflow: scroll;
}

div#content {
  text-align: center;
}

div#content a {
  color: var(--main-text-color);
}

div#content a:hover {
  color: var(--main-text-color);
}

div#content h1 {
  color: var(--main-text-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: normal;
}

div#content h2 {
  color: var(--main-text-color);
  font-weight: normal;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

div#content h3 {
  color: var(--main-text-color);
  font-weight: normal;
  padding: 10px;
  margin-bottom: 15px;
}

div#content p {
  color: var(--main-text-color);
}

div#content div.suiviIndiv span {
  color: var(--main-text-color);
  font-size: 12px;
}

/****************************************************************************
Tableaux
****************************************************************************/
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

div.table {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow: scroll;
}

table.scrollable {
  text-wrap: nowrap;
}

table#presenceAtelier tr:nth-of-type(odd),
table#presenceAtelier tr {
  background-color: var(--main-bg-color);
}

table#presenceAtelier tr:hover {
  background-color: none;
}

table#presenceAtelier tbody:nth-of-type(odd) tr {
  background-color: var(--main-bg-color);
}

table#presenceAtelier tr td {
  max-width: 16.6%;
  min-width: 16.6%;
  width: 16.6%;
}

table.notifs {
  table-layout: fixed;
  width: 100%;
}

table.notifs tr td {
  max-width: 20vw;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

table.expandable tr {
  background-color: var(--main-bg-color);
  cursor: pointer;
}

table.expandable tbody:nth-of-type(odd) tr {
  background: #f5f5f5;
}

thead tr {
  border: none;
}

tbody tr {
  border: 1px solid #eee;
  border-left: none;
  border-right: none;
}

tr:nth-of-type(odd) {
  background: #f5f5f5;
}

tr.details {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

tr.details:last-of-type {
  border-bottom: 1px solid #eee;
}

tr.details td {
  padding: 3px 6px;
}

tr.details td.retrait {
  padding-left: 12px;
}

tr.open {
  background-color: #f5f5f5;
  font-weight: bold;
}

tr {
  background-color: var(--main-bg-color);
}

th {
  background: var(--main-bg-color);
  color: var(--main-text-color);
  font-weight: bold;
}

td,
th {
  padding: 6px;
  text-align: left;
}

table#infoGen tr td {
  width: 50%;
}

table span {
  color: var(--main-text-color);
}

td {
  color: var(--main-text-color);
  position: relative;
}

td.toggle,
th.toggle {
  width: 32px;
  padding: 0px;
}

td.open {
  transform: translate(-6px, 0px) rotate(90deg);
}

td:nth-child(1),
tr.details td {
  font-size: 12px;
}

td.history {
  white-space: normal;
}

div.modifPresence {
  display: block;
  text-align: center;
  background-color: #e8e8e8;
  padding-left: 2px;
  padding-right: 2px;
  border: 1px solid #a0a0a0;
}

table#presenceAtelier td:hover span {
  color: #e8e8e8;
}

/****************************************************************************
Bas de page
****************************************************************************/
footer {
  height: 60px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  max-width: 1250px;
  padding: 20px;
  color: var(--main-text-color);
  text-align: center;
}

footer p {
  font-size: 12px;
  margin: 0;
}

footer a {
  color: var(--main-text-color);
}

#count-timer {
  transition: transform 0.2s;
}

#card-timer {
  background: var(--main-bg-color);
  border: 1px solid var(--main-text-color);
  padding: 20px 30px;
  border-radius: 5px;
}

#refresh-timer {
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 12px 8px 12px;
  color: var(--main-bg-color) !important;
  background-color: var(--main-text-color) !important;
  border: none !important;
  font-size: 16px;
  cursor: pointer;
  border-radius: 20px;
}

/****************************************************************************
InfoBulles
****************************************************************************/
span.infoBulle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  visibility: hidden;
  height: 100%;
  width: 100%;
  background-color: var(--main-bg-color);
  color: var(--main-text-color) !important;
  font-weight: bold;
  white-space: nowrap;
  padding: 6px;
  box-sizing: border-box;
  vertical-align: bottom;
}

tr:nth-of-type(odd) span.infoBulle {
  background-color: #eee;
}

span:hover + span {
  visibility: visible;
}

/****************************************************************************
Classes
****************************************************************************/
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
									supported by Chrome, Edge, Opera and Firefox */
  cursor: default;
}

.center {
  text-align: center;
}

.disable {
  opacity: 0.3;
}

.info {
  font-style: italic !important;
  color: #999999 !important;
}

.separate {
  display: block;
  margin: 15px auto;
  width: 80%;
  border-bottom: 1px solid var(--main-bg-color);
  height: 1px;
}

.dashed {
  display: block;
  margin: 40px auto;
  width: 100%;
  border-bottom: 1px dashed #eee;
  height: 1px;
}

.labelFiltre {
  font-size: 12px;
  margin: 0;
  display: inline-block;
  font-weight: bold;
  padding: 4px 0;
}

.erreur {
  padding: 5px;
  color: #e85d75 !important;
}

.message {
  padding: 5px;
  color: #6ba368 !important;
}

.questionUtil {
  padding: 5px;
  color: #ffa400 !important;
}

.infoUtil {
  padding: 5px;
  color: var(--main-text-color) !important;
  border-radius: 15px;
}

.warningUtil {
  padding: 5px;
  background-color: #fef3e7;
  border: 1px solid #fcc283;
  border-radius: 4px;
  padding: 8px 16px;
  box-sizing: border-box;
  display: inline-block;
  color: #884905 !important;
}

.pClassic {
  color: #444 !important;
  margin-top: 0px;
}

.pLogin {
  position: absolute;
  left: 10px;
  top: 10px;
  margin: 0px;
  color: #444;
}

.ajoutBD,
.retour,
.selected {
  padding: 10px 15px 10px 15px;
  color: var(--main-bg-color) !important;
  border: none;
  background-color: var(--main-text-color);
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 20px;
}

.filterVolee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.inline {
  display: inline-block;
}

.clear {
  padding: 8px 12px;
  color: var(--main-text-color) !important;
  border: none;
  background-color: transparent;
  font-size: 14px;
  margin: 0;
  cursor: pointer;
  border-radius: 20px;
}

.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.4;
}

.supprimer {
  padding: 10px 15px 10px 15px;
  color: var(--main-bg-color) !important;
  background-color: #e85d75 !important;
  border: none;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 20px;
}

.ajouter {
  padding: 10px 15px 10px 15px;
  color: var(--main-bg-color) !important;
  background-color: #6ba368 !important;
  border: none !important;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 20px;
}

.modifier {
  padding: 10px;
  color: #ebebeb !important;
  background-color: #4e6ee3;
  font-size: 16px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modifier:hover {
  background-color: #566970;
}

.aTri {
  font-weight: bold !important;
}

.pTri {
  display: none;
}

.userHeader {
  font-size: 14px;
}

.imgTab {
  max-height: 24px;
  max-width: 24px;
  vertical-align: middle;
}

.imgPge {
  max-height: 24px;
  max-width: 24px;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;
}

.commandeProfil {
  margin: 0px auto;
  border: 1px solid var(--main-text-color);
  display: block;
  width: 50px;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 5px;
  color: var(--main-text-color) !important;
  border-radius: 15px;
}

.mevLien {
  border: 1px solid var(--main-text-color);
  padding: 5px;
  color: var(--main-text-color) !important;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 15px;
}

.titreNom {
  margin-top: -20px;
  color: var(--main-text-color) !important;
  margin-bottom: 20px;
}

.lienSemaine {
  background-color: #eee;
  border: 1px solid var(--main-text-color);
  color: var(--main-text-color) !important;
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 5px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 20px;
}

.lienSemaine:hover {
  background-color: #d6d6d6;
  border: 1px solid #868686;
  text-decoration: none !important;
  color: #444 !important;
}

.semaine {
  color: #c8c8c8;
  text-decoration: underline;
}

.presenceAtelier {
  width: calc(100%-10px);
  height: 30px;
  display: block;
  cursor: pointer;
  line-height: 27px;
  padding-left: 10px;
}

.presenceAtelier:hover {
  color: #e8e8e8;
}

.rien {
  background-color: #999 !important;
  border: 1px solid #7d7d7d;
  color: #999;
}

.present {
  background-color: #6c8c6c !important;
  border: 1px solid #587258;
  color: #6c8c6c;
}

.absent {
  background-color: #713541 !important;
  border: 1px solid #562831;
  color: #713541;
}

.excuse {
  background-color: #48819b !important;
  border: 1px solid #366175;
  color: #48819b;
}

.retard {
  background-color: #7c7448 !important;
  border: 1px solid #565132;
  color: #7c7448;
}

#allerA {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

#allerA h3 {
  margin: 0 !important;
  padding: 0 !important;
  margin-right: 4px !important;
  text-decoration: underline;
}

.lienAncre {
  color: var(--main-text-color) !important;
  display: inline-block;
  font-size: 14px;
}

.lienAncre:hover {
  text-decoration: underline;
}

.filtrer {
  margin: 0px auto;
  border: 1px solid var(--main-text-color);
  display: block;
  width: 50px;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 5px;
  color: var(--main-text-color) !important;
  border-radius: 15px;
}

.profilJP {
  width: 100%;
  margin: 0px auto;
  margin-top: 5px;
}

.profilJP h3 {
  color: var(--main-text-color) !important;
}

.profilJI {
  width: 100%;
  margin: 0px auto;
  margin-top: 5px;
}

.urgence td {
  color: #e85d75;
}

#gestFichier {
  position: relative;
}

.fichier {
  padding: 10px 15px 10px 15px;

  display: inline-block;
  background-color: var(--main-bg-color);
  border: 1px solid var(--main-text-color);
  overflow: scroll;
  word-wrap: break-word;
  margin: 0px auto;
  color: var(--main-text-color) !important;
  margin-left: 5px;
  margin-right: 5px;
  box-sizing: border-box;
}

.fichier:hover {
  background-color: var(--main-bg-color) fff;
}

.infoFichier {
  color: var(--main-text-color) !important;
}

.supFichier {
  position: absolute;
  margin-left: -20px;
  margin-top: -8px;
  opacity: 0;
  padding: 1px;
}

.supFichier img {
  width: 22px;
  height: 22px;
  background-color: var(--main-bg-color);
  position: absolute;
}

a.fichier:hover + a.supFichier,
a.supFichier:hover {
  opacity: 1;
}

.masquer {
  display: none;
}

/*Dashboard*/
.dashboard {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: stretch;
}

.dashElem {
  margin: 10px;
  border: 1px solid var(--main-text-color);
  width: 200px;
  height: 200px;
  display: inline-block;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  position: relative;
}

.dashElem p {
  margin: 0px;
}

.dashElem .id {
  bottom: 10px;
  left: 10px;
  position: absolute;
}

.dashElem .type {
  bottom: 10px;
  right: 10px;
  position: absolute;
}

.dashElem .details {
  font-size: 12px;
}

/****************************************************************************
Contenu responsive
****************************************************************************/
@media only screen and (max-width: 1250px) {
  div#mainContent {
    border: none;
    box-shadow: none;
  }
}

/****************************************************************************
Contenu responsive
****************************************************************************/
@media only screen and (max-width: 820px) {
  .select {
    font-size: 12px;
    margin: 0;
    padding: 4px 8px;
  }

  input[type="text"].select {
    font-size: 12px;
    margin: 0;
    padding: 4px 8px;
  }

  input[type="text"],
  input[type="password"],
  input[type="email"],
  textarea,
  input[type="date"] {
    padding: 4px 8px;
    margin-bottom: 8px;
    margin-top: 4px;
    font-size: 16px;
  }

  label {
    font-size: 14px;
  }

  header {
    flex-direction: column;
    align-items: start;
    height: auto;
    gap: 16px;
    margin-bottom: 0;
  }

  header nav {
    margin: 0;
    width: 100%;
    display: block;
  }

  header nav ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    min-width: max-content;
    gap: 16px;
  }

  header nav ul li a {
    display: block;
    font-size: 14px;
    padding: 0;
    margin: 0;
    border-radius: 2px;
  }

  header nav ul li a.selected {
    padding: 2px 8px;
    font-size: 14px;
    margin: 0;
  }

  header nav ul li a.deconnexion {
    margin: 0;
  }

  h1 {
    font-size: 24px;
    margin: 8px 0;
    margin-bottom: 12px !important;
  }

  div#mainContent {
    padding-top: 0;
  }

  div#mainLogin {
    width: 300px;
    border: none;
    box-shadow: none;
  }

  div#mainLogin img {
    width: 20vw;
    margin: 20px 0 25px 0;
  }

  .ajouter,
  .ajoutBD,
  .retour,
  .selected {
    padding: 2px 8px;
    font-size: 14px;
  }

  label.radioHide,
  .fichier {
    padding: 4px 8px;
    font-size: 14px;
    line-height: normal;
  }

  table#infoGen {
    font-size: 14px;
  }

  #allerA h4 {
    margin: 0;
  }

  .titreNom {
    margin-top: 0;
  }

  .infoUtil {
    font-size: 14px;
  }

  table.scrollable,
  table.notifs {
    font-size: 14px;
  }

  table img {
    width: 16px;
    height: 16px;
  }

  table.resp,
  table.resp thead,
  table.resp tbody,
  table.resp th,
  table.resp td,
  table.resp tr {
    display: block;
  }

  table.resp tbody {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
  }

  table#presenceAtelier tr td {
    max-width: auto;
    min-width: auto;
    width: auto;
  }

  table.resp thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden;
  }

  table.resp tr {
    border: 1px solid var(--main-text-color);
    display: inline-block;
    margin: 10px;
    padding: 10px;
    box-sizing: border-box;
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
  }

  table.resp tr:nth-of-type(odd) {
    background: none;
  }

  table.resp td {
    border: none;
    position: relative;
    word-wrap: break-word;
    padding: 0;
    display: inline-block;
    word-break: break-all;
    text-align: center;
  }

  table.resp td:before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    color: #444;
  }

  .pTri {
    display: block;
    color: var(--main-text-color) !important;
    padding: 5px;
  }

  .pTri a {
    color: var(--main-text-color) !important;
  }

  span.infoBulle {
    position: absolute;
    margin-left: 10px;
    margin-top: -3px;
    visibility: hidden;
    padding: 5px;
    background-color: #edebd8;
    border: 1px solid #a09749;
    color: #595428 !important;
    font-weight: bold;
  }

  .jMobile {
    display: none !important;
  }
}
