@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin: 30px;
  color: #000; }

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.box {
  border: 1px solid #000;
  padding: 10px;
  box-sizing: border-box; }

.left-box, .right-box {
  width: 48%; }

.title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px; }

.red {
  color: red; }

.blue-bg {
  background-color: #e6f0fb;
  padding: 5px; }

.block-title {
  font-weight: bold;
  background-color: #f0f0f0;
  padding: 4px;
  margin-top: 10px; }

.small {
  font-size: 0.9em; }

.section {
  margin-top: 15px; }

.align-right {
  text-align: right; }

.facture-info {
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #000; }

.facture-info .num {
  color: #d11b1b;
  font-weight: bold; }

.facture-info .date {
  color: #d11b1b;
  font-weight: bold; }

.label {
  font-weight: bold; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px; }

th, td {
  border: 1px solid #000;
  padding: 5px;
  text-align: left; }

th {
  background-color: #eee; }

tfoot td {
  font-weight: bold; }

.payment-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap; }

.payment-left,
.payment-right {
  flex: 1;
  min-width: 300px; }

.payment-left h3 {
  margin-top: 1.5rem;
  color: #003366;
  font-size: 1.1em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.25em; }

.payment-left p,
.tva-notes p {
  font-size: 0.95em;
  margin: 0.3em 0; }

.summary {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95em; }

.summary th,
.summary td {
  border: 1px solid #ccc;
  padding: 0.5em;
  text-align: right; }

.summary th {
  background-color: #eef3fa;
  font-weight: 600; }

.summary tfoot td {
  font-weight: bold;
  background-color: #f9f9f9; }

.summary .net-a-payer td {
  background-color: #e6f0d4;
  font-size: 1.05em; }

.highlight {
  font-weight: bold;
  color: #000; }

.tva-notes {
  background-color: #f6fafd;
  border-left: 4px solid #003366;
  padding: 1em;
  margin-top: 2rem;
  font-size: 0.9em; }

.tva-notes strong {
  color: #003366; }

.PRF-obligFisc {
  color: red;
  font-weight: bold; }

.PRF-obligCom {
  color: #003366; }

#FACTURE h1 {
  font-size: 4rem;
  font-weight: bold; }
#FACTURE .FCT-link {
  font-weight: 200;
  font-size: 0.65rem; }

#NOTE {
  color: #666;
  font-style: italic;
  border-left: solid 3px var(--SC-rouge);
  padding-left: 10px;
  margin-bottom: 20px; }

.coche {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  margin-left: 0.1em;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-weight: bold;
  font-size: 0.6rem;
  padding: 0px 1px;
  color: #999; }

/* Style sp├®cial pour les coches ├á c├┤t├® dÔÇÖun H1 */
#Coche-unique .coche {
  font-size: 1.2rem;
  padding: 3px 10px;
  text-align: center; }

.is-checked-a {
  color: #333;
  background: #ffd700; }

/* or gold */
.is-checked-b {
  color: #333;
  background: #87cefa; }

/* light blue */
.is-checked-c {
  color: #333;
  background: #90ee90; }

/* light green */
.sticky-top-right-group {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
  overflow: auto; }

.sticky-tools {
  overflow: auto; }
  .sticky-tools button {
    float: right;
    margin: 3px; }

.coche-button {
  font-size: 0.65rem; }

input[type="file"] {
  display: none; }

.sticky-button {
  padding: 0.75em 1em;
  border-radius: 6px;
  font-size: 1.5em;
  font-weight: bold;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  user-select: none;
  position: relative;
  /* Badge compteur */ }
  .sticky-button .badge {
    position: absolute;
    bottom: 4px;
    right: 6px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.5em;
    padding: 2px 2px;
    border-radius: 10px; }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100; }

.modal-content {
  position: relative;
  background: white;
  padding: 2em;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
  .modal-content .modal-close-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: #e53935;
    /* rouge vif */
    color: white;
    border: none;
    font-size: 1.2em;
    padding: 0.25em 0.6em;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease; }
  .modal-content .modal-close-button:hover {
    background-color: #c62828; }
  .modal-content .alt-selection {
    margin-left: 0.5em;
    font-size: 0.85em;
    color: #555; }
  .modal-content .badge-small {
    display: inline-block;
    margin-left: 0.3em;
    padding: 2px 6px;
    font-size: 0.75em;
    border-radius: 6px;
    font-weight: bold;
    color: white; }
  .modal-content .badge-small.A {
    background: #ffd700; }
  .modal-content .badge-small.B {
    background: #87cefa; }
  .modal-content .badge-small.C {
    background: #90ee90; }

.modal-content h2 {
  font-size: 1.5em;
  margin-bottom: 1em; }

header {
  color: #fff;
  padding: 1.5rem 0;
  text-align: left; }

.HD-titre {
  color: #333;
  margin: 0;
  font-size: 5rem !important;
  line-height: 3rem;
  text-shadow: 0 0 5px #ffffff; }
  @media screen and (max-width: 768px) {
    .HD-titre {
      font-size: 2rem !important; } }

.HD-stitre {
  color: #666;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-left: 20px; }

.texte {
  position: relative;
  /* Texte principal en noir */
  font-size: 2em;
  /* Taille du texte au premier plan */
  z-index: 0;
  background-color: white;
  overflow: hidden; }

.texte::before {
  content: attr(data-texte);
  position: absolute;
  top: -50%;
  left: 0;
  transform: translate(0, 0);
  font-size: 6em;
  /* Texte en arri├¿re-plan, tr├¿s gros */
  font-weight: bold;
  color: var(--color-gray-light);
  /* Couleur gris clair */
  z-index: -99;
  /* Place le pseudo-├®l├®ment derri├¿re le texte principal */
  white-space: nowrap;
  /* Emp├¬che le retour ├á la ligne si n├®cessaire */
  pointer-events: none;
  /* Ignore les interactions sur le pseudo-├®l├®ment */ }

.BTN-a {
  float: right;
  padding: 2px 10px;
  background-color: #ececec;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333; }
  .BTN-a:hover {
    background-color: var(--color-green-light); }

#WP {
  font-size: 1.2rem; }
  #WP article .post-thumbnail {
    text-align: center; }
  #WP .post-title {
    font-size: 1.4rem;
    font-weight: 700; }
  #WP .post-excerpt {
    margin-bottom: 25px; }
    #WP .post-excerpt .exc-thumbnail {
      float: left;
      width: 25%; }
      #WP .post-excerpt .exc-thumbnail img {
        margin-top: 1rem; }
    #WP .post-excerpt .post-content {
      display: inline-block;
      width: 70%; }
  #WP #secondary section {
    border: none !important;
    box-shadow: none !important;
    margin: 0px !important;
    padding: 0px !important; }
    #WP #secondary section ul, #WP #secondary section li {
      padding: 0px !important;
      margin: 0px !important; }
  #WP #secondary .widget_block {
    border: none;
    margin: 0px !important;
    padding: 0px !important; }
    #WP #secondary .widget_block h2 {
      margin-top: 15px; }
  #WP #secondary .widget {
    margin: 0px !important;
    padding: 0px !important; }

#HERO {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 350px;
  background-image: url("../images/home-hero1.jpg");
  background-repeat: no-repeat; }

:root {
  --color-blue: #002395;
  --color-red: #AE1C28;
  --color-white: #FFFFFF;
  --color-gray: #D3D3D3;
  --color-orange: #D97706;
  --color-green: #91cb95;
  --color-purple: #5E3B99;
  --color-fill: #a972cb;
  --color-pulse: #ef6eae;
  --color-close: #ff7f82;
  --color-raise: #ffa260;
  --color-up: #e4cb58;
  --color-slide: #8fc866;
  --color-offset: #19bc8b;
  --color-blue-light: #0035e2;
  --color-blue-dark: #001149;
  --color-red-light: #df3845;
  --color-red-dark: #6c1119;
  --color-white-light: white;
  --color-white-dark: #d9d9d9;
  --color-gray-light: #f9f9f9;
  --color-gray-dark: #adadad;
  --color-orange-light: #f99d32;
  --color-orange-dark: #8f4e04;
  --color-green-light: #c5e4c7;
  --color-green-dark: #5db263;
  --color-purple-light: #845fc1;
  --color-purple-dark: #3c2662;
  --color-fill-light: #cbaae0;
  --color-fill-dark: #8541b0;
  --color-pulse-light: #f7b3d4;
  --color-pulse-dark: #e72988;
  --color-close-light: #ffcccd;
  --color-close-dark: #ff3337;
  --color-raise-light: #ffcfad;
  --color-raise-dark: #ff7514;
  --color-up-light: #efe09a;
  --color-up-dark: #ceaf21;
  --color-slide-light: #b8dc9e;
  --color-slide-dark: #68a63c;
  --color-offset-light: #3ce5b2;
  --color-offset-dark: #107859; }

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--color-gray-light);
  color: #333; }

section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

section h2 {
  color: var(--color-blue-dark);
  margin-bottom: 1rem;
  font-size: 1.8rem; }

section p {
  margin-bottom: 1rem; }

section ul {
  list-style-type: disc;
  padding-left: 1.5rem; }

section ul li {
  margin-bottom: 0.5rem; }

.cta {
  text-align: center;
  margin-top: 2rem; }

.cta a {
  text-decoration: none;
  background: #007bff;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  display: inline-block;
  margin-top: 1rem; }

.cta a:hover {
  background: #0056b3; }

footer {
  text-align: center;
  padding: 1rem 0;
  background: #f4f4f9;
  font-size: 0.9rem;
  color: #666; }

h1 {
  font-size: 3rem !important;
  font-weight: 600 !important; }

h2 {
  font-size: 1.5rem;
  font-weight: 600; }

#PAGINATION {
  overflow: auto;
  font-size: 0.8rem; }
  #PAGINATION .prev {
    float: left; }
  #PAGINATION .next {
    float: right; }
  #PAGINATION a {
    color: var(--color-orange); }

#FICHE section {
  overflow: auto; }
#FICHE h2 {
  font-size: 1.5rem !important; }
#FICHE .FICHE-shotdate {
  font-size: 0.75rem;
  color: #CCCCCC;
  font-style: italic; }
#FICHE .FICHE-img {
  float: left;
  width: 50%;
  margin-right: 25px; }
#FICHE .FICHE-url {
  font-size: 1.25rem;
  display: block;
  margin: 20px; }
#FICHE .FICHE-rel {
  margin-bottom: 20px;
  overflow: auto; }
  #FICHE .FICHE-rel .FICHE-rel-row {
    border: solid 1px #ddd;
    border-left: solid 10px #ccc;
    margin: 5px;
    padding-left: 10px; }
#FICHE .FICHE-tag {
  font-size: 1.1rem;
  margin: 5px;
  margin-top: 10px;
  padding: 10px 10px; }
#FICHE .CONTACT {
  text-align: center;
  background-color: #DDD;
  padding: 15px;
  margin-top: 30px; }

.card {
  width: 220px;
  height: 300px;
  float: left;
  margin: 3px;
  margin-bottom: 10px;
  text-align: center;
  border: solid 3px transparent;
  position: relative;
  overflow: visible; }
  .card:hover {
    border: solid 3px #3a5493; }
  .card .card-texte {
    position: absolute;
    width: 300px;
    height: auto;
    background: white;
    padding: 10px;
    font-size: 0.75rem;
    top: 0;
    left: 200px;
    z-index: 99;
    text-align: left;
    box-shadow: 0 0 5px #CCC; }
  .card .card-jours {
    float: right;
    font-size: 0.7rem;
    margin: 3px; }
  .card .card-cp {
    margin-top: 20px;
    font-size: 1.1rem; }
  .card .card-lire {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%; }
  .card .card-auteur {
    font-size: 0.85rem; }
  .card .card-vignette {
    width: 80%;
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    border: solid 5px #b7b7b7;
    border-radius: 10px; }
  .card .card-titre {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.1;
    background-color: #ddd;
    display: block;
    padding: 5px; }
  .card .card-cat {
    font-size: 0.75rem;
    color: #999; }
  .card .card-tag {
    font-size: 0.55rem;
    margin: 1px;
    margin-top: 2px;
    padding: 2px 4px;
    display: inline-block; }
    @media screen and (max-width: 768px) {
      .card .card-tag {
        padding: 2px 2px;
        margin: 2px; } }

.WEB-encart {
  padding: 0px;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: 0.85rem;
  display: block;
  border-bottom: solid 1px #e8e8e8; }
  .WEB-encart:hover {
    background-color: white; }
  .WEB-encart .WEB-titre {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.1; }
  .WEB-encart .WEB-vignette {
    float: left;
    margin: 5px;
    width: 80px;
    border: solid 3px #ccc;
    border-radius: 10px; }
  .WEB-encart .WEB-date {
    font-size: 0.65rem; }
  .WEB-encart .WEB-cat {
    font-size: 0.75rem;
    color: #999; }
  .WEB-encart .WEB-fiche {
    float: right;
    padding: 2px 10px;
    background-color: var(--color-gray);
    color: white;
    font-size: 0.85rem; }
    .WEB-encart .WEB-fiche:hover {
      background-color: var(--color-green-light); }
  .WEB-encart span {
    display: block; }
  .WEB-encart .WEB-tag {
    float: right;
    font-size: 0.55rem;
    margin: 5px;
    margin-top: 10px;
    padding: 10px 10px; }
    @media screen and (max-width: 768px) {
      .WEB-encart .WEB-tag {
        padding: 2px 2px;
        margin: 2px; } }

#CAT {
  margin-bottom: 20px; }
  #CAT .CAT-block {
    margin-left: 40px; }
  #CAT .CAT-encart {
    padding: 1px;
    font-size: 0.9rem; }
    #CAT .CAT-encart .CAT-nom {
      font-weight: bold;
      color: #5d5d5d; }
      #CAT .CAT-encart .CAT-nom:hover {
        color: var(--button-hover-color); }
    #CAT .CAT-encart .CAT-nb {
      color: #CCC;
      font-weight: 200; }

.TUTO-prof {
  font-style: italic;
  margin-left: 20px; }

.TUTO-eleve {
  font-weight: bold; }

.CP-encart {
  padding: 5px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 5px;
  overflow: auto;
  /* Vignette ├®metteur */
  /* Optionnel mais utile si tu as ajout├® summary / meta-top / meta-bottom */ }
  .CP-encart:hover {
    background-color: white; }
  .CP-encart .WEB-vignette {
    float: left;
    max-width: 70px;
    height: auto;
    margin: 0 10px 1px 0;
    border-radius: 10px;
    border: 2px solid #c0c0c0; }
  .CP-encart .CP-web {
    font-style: italic;
    color: var(--color-blue-light);
    font-size: 0.7rem; }
    .CP-encart .CP-web a {
      color: var(--color-blue-light); }
  .CP-encart .CP-titre {
    display: block;
    font-weight: 600;
    margin-top: 2px;
    font-size: 1.1rem;
    line-height: 1.3; }
  .CP-encart .CP-lien {
    float: right;
    background-color: var(--color-gray);
    color: white;
    padding: 1px 10px;
    font-size: 0.75rem; }
    .CP-encart .CP-lien:hover {
      background-color: var(--color-green-light); }
  .CP-encart .CP-date {
    float: right;
    padding: 1px 5px;
    font-size: 0.85rem;
    color: #9b9b9b; }
  .CP-encart .CP-lire {
    float: right;
    color: white; }
  .CP-encart .CP-summary {
    font-size: 0.75rem;
    color: #555;
    margin: 0 0 4px 0; }
  .CP-encart .CP-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 2px; }
  .CP-encart .CP-cat {
    font-weight: 600;
    color: var(--color-blue-dark); }
  .CP-encart .CP-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    font-size: 0.75rem; }

#CD {
  text-align: center;
  background-color: white;
  border: solid 1px #ccc;
  border-radius: 10px;
  padding: 5px;
  width: 300px;
  float: left;
  margin-left: 15%;
  margin-top: 2%; }
  #CD .CD-titre {
    font-size: 1.25rem;
    font-weight: bold; }
  #CD .CD-nb {
    font-size: 3rem;
    font-weight: bold; }
  #CD .CD-type {
    font-size: 1rem;
    font-weight: 400; }
  #CD .CD-why {
    font-size: 0.85rem;
    font-weight: 400; }

#MENU {
  border-bottom: solid 1px #fff;
  margin-bottom: 10px;
  z-index: 0; }
  #MENU .navbar {
    background-color: transparent !important; }
  #MENU .navbar-item {
    border-left: solid 2px #fff; }
    #MENU .navbar-item .buttons a {
      color: var(--color-blue);
      font-weight: 700; }
    #MENU .navbar-item:hover {
      background-color: var(--color-blue);
      color: white; }
      #MENU .navbar-item:hover .buttons a {
        color: white; }

#CHEMIN {
  margin-top: 10px; }
  #CHEMIN a {
    color: var(--color-blue);
    font-weight: 600; }

/*# sourceMappingURL=feuille.css.map */
