@charset "UTF-8";
/*
Copyright (C) 2018 Romain DENIS-REMIS <rdr at denis-remis.fr>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
/* 
    Created on : 27 avr. 2018, 15:09:28
    Author     : Romain DENIS-REMIS <rdr at denis-remis.fr>
    updated    : 2024-01-13
*/
/*$brkpt_xs: 0;
$brkpt_sm: 481px;
$brkpt_md: 961px;
$brkpt_lg: 1441px;
$brkpt_xl: 1921px;*/
/* ======================================================= */
/* IMPORTANT ============================================= */
/* ======================================================= */
/* Réglage pour Monnaie pas en EURO (Exp: Nouvelle Caledonie) */
/* dé-commenter si c'est le cas' */
/*
.fa-euro-sign {
	display: none;
}
*/
/* ======================================================= */
/* IMPORTANT ============================================= */
/* ======================================================= */
a {
  color: #2fa4e7;
  text-decoration: none;
}

a:hover {
  color: #157ab5;
  text-decoration: underline;
}

.bleuhal {
  color: rgb(70, 130, 180);
}

.lien {
  cursor: pointer;
}

.gras {
  font-weight: bold;
}

.circled-number {
  color: red;
  font-weight: bold;
  font-size: 1.4em;
}

.circled-number.big {
  font-size: 2em;
}

hr.fine {
  border-top: none;
  border-bottom: solid 1px #999;
  margin: 0.5em 0 0 0;
}

.head-hidden {
  display: none;
}

input[id^=flt_] {
  text-align: right;
}

input[type=text]:disabled {
  background-color: #ccc;
}

table tbody tr td {
  border-bottom: solid #C9D6E2 1px;
}

table.dataTable tbody tr:nth-child(even) {
  background-color: #C9D6E2;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* LAYOUT                                                                                     */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
header {
  background-color: steelblue;
  color: white;
}
header a {
  color: #FFCC00;
}
header a:hover {
  color: #000;
  text-decoration: none;
}

main {
  background-color: transparent;
}

footer {
  background-color: #eae5e1;
}

body {
  /*height: 100vh;*/
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -ms-grid-template-areas: "head" "main";
  grid-template-areas: "head" "main";
}
body header {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-area: head;
  grid-area: head;
  /*height: 5.8em;*/
  position: relative;
  padding: 0.3em;
  height: 7em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 10;
}
body main {
  -ms-grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-area: main;
  grid-area: main;
  height: calc(100vh - 7em);
  position: relative;
  overflow-y: auto;
  padding: 1em 0.5em 5em 0.5em;
  z-index: 1;
}
@media all and (min-width: 481px) {
  body {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-template-areas: "head" "main";
    grid-template-areas: "head" "main";
  }
  body header {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-area: head;
    grid-area: head;
    height: 3em;
    position: relative;
    padding: 0 0.5em 0.5em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  body main {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
    -ms-grid-area: main;
    grid-area: main;
    height: calc(100vh - 3em);
    position: relative;
    overflow-y: auto;
    padding: 1em 0.5em;
  }
}
@media all and (min-width: 961px) {
  body {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-template-areas: "head" "main";
    grid-template-areas: "head" "main";
  }
  body header {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-area: head;
    grid-area: head;
    height: 6em;
    padding: 0.3em 1em 0.5em 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  body main {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
    -ms-grid-area: main;
    grid-area: main;
    height: calc(100vh - 6em);
    position: relative;
    overflow-y: auto;
    padding: 1em 1em;
  }
}
@media all and (min-width: 1441px) {
  body {
    -ms-grid-columns: 15% 85%;
    grid-template-columns: 15% 85%;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-template-areas: "head main";
    grid-template-areas: "head main";
  }
  body header {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-area: head;
    grid-area: head;
    height: 100vh;
    position: relative;
    overflow-y: auto;
    padding: 1em 0.5em;
    display: initial;
  }
  body main {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-area: main;
    grid-area: main;
    height: 100vh;
    position: relative;
    overflow-y: auto;
    padding: 1em 1em;
  }
}
@media all and (min-width: 1441px) {
  body.planningchant {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-template-areas: "head" "main";
    grid-template-areas: "head" "main";
  }
  body.planningchant header {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-area: head;
    grid-area: head;
    height: 6em;
    overflow-y: visible;
    padding: 0.3em 1em 0.5em 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  body.planningchant main {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
    -ms-grid-area: main;
    grid-area: main;
    height: calc(100vh - 6em);
    position: relative;
    overflow-y: auto;
  }
}

/* ================================================================ */
/* GENERAL ET PAGES DE TYPE "Fiche"                                 */
/* ================================================================ */
main > H2:first-of-type {
  margin-top: 0;
}

main > H2.page-bloc-titre {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  row-gap: 10px;
  column-gap: 0;
}
@media all and (min-width: 481px) {
  main > H2.page-bloc-titre {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    row-gap: 10px;
    column-gap: 20px;
  }
}
main > H2.page-bloc-titre .page-indentite {
  font-size: 0.8em;
  line-height: 1em;
  color: rgb(220, 220, 220);
  font-weight: bold;
  text-shadow: 1px 2px 0 rgb(255, 255, 255), -1px -2px 0 rgba(0, 0, 0, 0.4);
}
main > H2.page-bloc-titre .page-indentite > svg, main > H2.page-bloc-titre .page-indentite i {
  color: rgb(180, 180, 180);
}
main > H2.page-bloc-titre .bloc-titre-nom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}
main > H2.page-bloc-titre .bloc-titre-nom > button {
  font-size: 0.9rem;
}
main > H2.page-bloc-titre .bloc-titre-nom > span {
  font-size: 0.8em;
}
main > H2.page-bloc-titre .bloc-titre-boutons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 20px;
}
main > H2.page-bloc-titre .bloc-titre-boutons > button {
  font-size: 0.6em;
}
main > H2.page-bloc-titre .bloc-titre-boutons > a.btt {
  font-size: 0.6em;
}
main > H2.page-bloc-titre .bloc-titre-boutons > span {
  font-size: 0.7em;
  cursor: pointer;
}

div#info3blocs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 1em;
}
@media all and (min-width: 481px) {
  div#info3blocs {
    flex-direction: row;
  }
  div#info3blocs ul.labelvalue {
    overflow-x: unset;
  }
}

ul.labelvalue > li > span:first-of-type {
  cursor: pointer;
}
ul.labelvalue > li > span:first-of-type.lb-base {
  cursor: default;
}
@media all and (min-width: 481px) {
  ul.labelvalue > li > span:first-of-type {
    cursor: pointer;
  }
  ul.labelvalue > li > span:first-of-type.lb-base {
    cursor: default;
  }
}

ul.tabs.fiche-onglets {
  column-gap: 10px;
}
ul.tabs.fiche-onglets > li {
  font-size: 1.2em;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
}
ul.tabs.fiche-onglets > li > span {
  padding: 0.4em 0.2em;
}
ul.tabs.fiche-onglets > li > span:first-child {
  flex: 1;
  border-top-left-radius: 0.6rem;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}
ul.tabs.fiche-onglets > li.active {
  font-weight: bold;
}
ul.tabs.fiche-onglets > li.active > span.onglet-bouton {
  background-color: #84d037;
  color: black;
}
ul.tabs.fiche-onglets > li > span:nth-child(2) {
  border-left: none;
  border-top: solid 0.03em #bdc8c2;
  text-align: center;
}
ul.tabs.fiche-onglets > li > span.onglet-bouton {
  border-left: none;
  border-top: solid 0.1em #6b8175;
  text-align: center;
  font-size: 1.5em;
  padding: 0.4em 0.2em;
  background-color: #d0edb3;
}
ul.tabs.fiche-onglets > li > span.onglet-bouton:hover {
  background-color: #84d037;
  color: black;
}
@media all and (min-width: 961px) {
  ul.tabs.fiche-onglets > li {
    font-size: 1em;
    margin: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    cursor: pointer;
    padding: 0;
    /*			> span:first-child {
    				border-top-left-radius: 0.6rem;
    				writing-mode: horizontal-tb;
    			}*/
  }
  ul.tabs.fiche-onglets > li.active {
    border-bottom: none;
  }
  ul.tabs.fiche-onglets > li > span {
    padding: 0.4em 0.7em;
  }
  ul.tabs.fiche-onglets > li > span:nth-child(2) {
    border-left: inherit;
    border-top: none;
    text-align: center;
  }
  ul.tabs.fiche-onglets > li > span.onglet-bouton {
    border-left: solid 0.1em #6b8175;
    border-top: none;
    text-align: center;
    font-size: 1.6em;
    padding: 0.2em 0.4em;
  }
}
@media all and (min-width: 1441px) {
  ul.tabs.fiche-onglets > li > span:first-child {
    border-top-left-radius: 0.6rem;
    writing-mode: horizontal-tb;
  }
}

div.tabs-content.fiche-onglets-contenu {
  padding: 0;
}

div.docu-container {
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  row-gap: 1em;
  column-gap: 1em;
}
div.docu-container.bordhaut {
  border-top: dashed 1px #333;
}
div.docu-container > .docu-container-titre {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-align: center;
  font-style: italic;
}
div.docu-container > .docu-bloc {
  max-width: 180px;
  padding: 6px;
  background-color: #444;
  color: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 0.2em;
  column-gap: 0.1em;
}
div.docu-container > .docu-bloc > .tab-docu-head {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
div.docu-container > .docu-bloc > .tab-docu-head button {
  padding: 0 0.3em;
}
div.docu-container > .docu-bloc > .tab-docu-body {
  border-top: dashed 1px #fff;
  border-bottom: dashed 1px #fff;
  padding: 0.4em 0.4em 0 0.4em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
div.docu-container > .docu-bloc > .tab-docu-body > a > * {
  margin-bottom: 0.4rem;
  color: red;
}
div.docu-container > .docu-bloc > .tab-docu-body > a > *:hover {
  color: pink;
}
div.docu-container > .docu-bloc > .tab-docu-body > a > *.text-success {
  color: #0F733D;
}
div.docu-container > .docu-bloc > .tab-docu-body > a > *.text-success:hover {
  color: #31BE7D;
}
div.docu-container > .docu-bloc > .tab-docu-body > a > *.text-primary {
  color: #134FAF;
}
div.docu-container > .docu-bloc > .tab-docu-body > a > *.text-primary:hover {
  color: #3EA0E6;
}
div.docu-container > .docu-bloc > .tab-docu-foot {
  margin: 0;
  padding: 0;
}
div.docu-container > .docu-bloc > .tab-docu-foot > .tab-docu-foot-li1 {
  font-size: 0.9rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 1em;
}
div.docu-container > .docu-bloc > .tab-docu-foot > .tab-docu-foot-li1 > span:first-child {
  color: #000;
  font-size: 1rem;
  cursor: pointer;
}
div.docu-container > .docu-bloc > .tab-docu-foot > .tab-docu-foot-li2 {
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 1em;
}
div.docu-container > .docu-bloc > .tab-docu-foot > .tab-docu-foot-li2 button {
  padding: 0 0.3em;
}
div.docu-container > .docu-bloc > .tab-docu-foot > .tab-docu-foot-li2 span {
  color: #bbb;
  font-size: 0.9rem;
}

/* ================================================================ */
/* PAGE TYPE LISTE                                                  */
/* ================================================================ */
.page_list_titre {
  font-size: 1rem;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 10px;
  row-gap: 10px;
}
.page_list_titre .titre-txt {
  font-size: 1.6em;
}
.page_list_titre .titre-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  column-gap: 1px;
  row-gap: 10px;
}
@media all and (min-width: 481px) {
  .page_list_titre {
    font-size: 1.2rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
  }
  .page_list_titre .titre-txt {
    font-size: 1.6em;
  }
  .page_list_titre .titre-btn {
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    column-gap: 20px;
    row-gap: 10px;
  }
}

/* ================================================================ */
/* PAGE TYPE LISTE AVEC FILTRES  (DATATABLE)                        */
/* ================================================================ */
.page_list_filtre {
  padding-left: 0;
  font-size: 0.8rem;
}
.page_list_filtre .page_list_titre {
  margin-left: 1em;
}
.page_list_filtre table {
  font-size: 0.7rem;
}
@media all and (min-width: 481px) {
  .page_list_filtre {
    font-size: 1rem;
  }
  .page_list_filtre table {
    font-size: 0.9rem;
  }
}
.page_list_filtre table.dataTable tbody th, .page_list_filtre table.dataTable tbody td {
  padding: 2px;
}
.page_list_filtre table.dataTable thead tr:nth-of-type(2) td {
  padding: 0;
  text-align: center;
}
.page_list_filtre table.dataTable thead tr:nth-of-type(2) td select {
  width: 100%;
}
.page_list_filtre table.dataTable thead tr.faussetfoot {
  background-color: rgba(255, 191, 128, 0.5);
}
.page_list_filtre table.dataTable thead tr.faussetfoot.on {
  background-color: rgb(255, 191, 128);
}

/* ================================================================ */
/* NAV MENU                                                         */
/* ================================================================ */
#site_search_input {
  margin-top: 0.5em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
#site_search_input #bloc_btn_search_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
#site_search_input #bloc_btn_search_list #btn_search_active {
  display: flex;
  align-items: center;
}
#site_search_input #bloc_btn_search_list #btn_search_list {
  position: absolute;
  /*width: 56px;*/
  z-index: 30;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media all and (min-width: 961px) {
  #site_search_input {
    margin-left: 0.5em;
  }
}
@media all and (min-width: 1441px) {
  #site_search_input {
    margin-left: 0;
  }
}

.menu-on {
  color: rgb(179, 229, 128);
}

nav {
  background-color: rgb(70, 130, 180);
}
nav a {
  color: #ffe066;
}
nav a:hover {
  color: #000;
}
@media all and (min-width: 0) {
  nav {
    margin-left: 1.5em;
    padding-right: 1em;
  }
  nav > .menu-switch {
    display: block;
    font-size: 2em;
    padding-top: 0.5rem;
    cursor: pointer;
  }
  nav > ul.fa-ul {
    background-color: rgb(70, 130, 180);
    display: none;
  }
  nav > ul.fa-ul > li {
    padding-left: 0;
  }
  nav > ul.fa-ul > li.menu-firstli-withul > span {
    cursor: pointer;
  }
  nav > ul.fa-ul > li.menu-firstli-withul span.fa-li {
    position: absolute;
    margin-right: 0;
  }
  nav > ul.fa-ul > li > ul.fa-ul {
    position: initial;
    margin-left: 0.5em;
    border: none;
    display: none;
  }
  nav > ul.fa-ul > li > ul.fa-ul > li > span > a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 0.5em;
  }
  nav > ul.fa-ul > li > ul.fa-ul > li > span > a > span {
    white-space: normal;
  }
}
@media all and (min-width: 961px) {
  nav {
    margin-left: 0;
    padding-right: 0;
  }
  nav > .menu-switch {
    display: none;
  }
  nav > ul.fa-ul {
    margin: 0 0.5em 0 0.6em;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  nav > ul.fa-ul > li {
    padding-left: 1em;
  }
  nav > ul.fa-ul > li.menu-firstli-withul > span {
    cursor: pointer;
  }
  nav > ul.fa-ul > li.menu-firstli-withul span.fa-li {
    position: initial;
    margin-right: 0.3em;
  }
  nav > ul.fa-ul > li > ul.fa-ul {
    position: absolute;
    z-index: 15;
    margin-left: 0;
    background-color: rgb(70, 130, 180);
    padding: 0.5em;
    border-left: solid rgb(30, 90, 140) 2px;
    border-right: solid rgb(30, 90, 140) 2px;
    border-bottom: solid rgb(30, 90, 140) 2px;
    /*min-width: 300px;*/
    display: none;
  }
  nav > ul.fa-ul > li > ul.fa-ul > li > span > a > span {
    white-space: nowrap;
  }
}
@media all and (min-width: 1441px) {
  nav {
    margin-left: 0;
    padding-right: 0;
  }
  nav > .menu-switch {
    display: none;
  }
  nav > ul.fa-ul {
    display: block;
    margin: 0.5em 0.5em 0.5em 0.5em;
  }
  nav > ul.fa-ul > li {
    padding-left: 0;
  }
  nav > ul.fa-ul > li.menu-firstli-withul > span {
    cursor: pointer;
  }
  nav > ul.fa-ul > li.menu-firstli-withul span.fa-li {
    position: absolute;
    margin-right: 0;
  }
  nav > ul.fa-ul > li > ul.fa-ul {
    position: initial;
    margin-left: 0.5em;
    border: none;
    display: none;
  }
  nav > ul.fa-ul > li > ul.fa-ul > li > span > a > span {
    white-space: normal;
  }
}

@media all and (min-width: 1441px) {
  body.planningchant nav {
    margin-left: 0;
    padding-right: 0;
  }
  body.planningchant nav > .menu-switch {
    display: none;
  }
  body.planningchant nav > ul.fa-ul {
    margin: 0 0.5em 0 0.6em;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  body.planningchant nav > ul.fa-ul > li {
    padding-left: 1em;
  }
  body.planningchant nav > ul.fa-ul > li.menu-firstli-withul > span {
    cursor: pointer;
  }
  body.planningchant nav > ul.fa-ul > li.menu-firstli-withul span.fa-li {
    position: initial;
    margin-right: 0.3em;
  }
  body.planningchant nav > ul.fa-ul > li > ul.fa-ul {
    position: absolute;
    z-index: 15;
    margin-left: 0;
    background-color: rgb(70, 130, 180);
    padding: 0.5em;
    border-left: solid rgb(30, 90, 140) 2px;
    border-right: solid rgb(30, 90, 140) 2px;
    border-bottom: solid rgb(30, 90, 140) 2px;
    /*min-width: 300px;*/
    display: none;
  }
  body.planningchant nav > ul.fa-ul > li > ul.fa-ul > li > span > a > span {
    white-space: nowrap;
  }
}

/* ================================================================ */
/* LOGO AND PAGE TITLE                                              */
/* ================================================================ */
#logoblock {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin-bottom: 0.3em;
}
#logoblock > #logoimg {
  margin-right: 1em;
}
#logoblock > #logoimg > img {
  height: 2em;
}
#logoblock > p#logotext {
  margin: 0;
  font-size: 1.3em;
}
#logoblock > button#helpop_open {
  margin: 0 0 0 0.5em;
  font-size: 1.3em;
  padding: 0.01em 0.22em;
  border-radius: 50%;
}

/* ================================================================ */
/* HELP LAYOUT                                                      */
/* ================================================================ */
#helpop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(230, 230, 230);
  z-index: 250;
  display: none;
}
#helpop > #helpop_head {
  height: 4rem;
  background-color: rgba(70, 130, 180, 0.7);
  color: #fff;
  border-bottom: solid 2px steelblue;
  padding: 2px;
  display: flex;
  justify-content: space-between;
}
#helpop > #helpop_head > h4 {
  flex: 1;
  margin: 1rem;
}
#helpop > #helpop_body {
  height: calc(100vh - 4rem);
  position: relative;
  overflow-y: auto;
  padding: 1em;
}
#helpop > #helpop_body > h2:first-of-type {
  margin-top: 0;
}
#helpop > #helpop_body div.helpmenu {
  margin-bottom: 0.5em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
#helpop > #helpop_body div.helpmenu a {
  font-size: 0.8em;
  color: #fff;
  background-color: rgb(118, 160, 195);
  border-radius: 4px;
  padding: 0 0.5em;
  margin-left: 1em;
  margin-bottom: 0.3em;
}
#helpop > #helpop_body div.helpmenu a:hover {
  color: #FFCC00;
}

/* ================================================================ */
/* OTHER                                              */
/* ================================================================ */
.bloc-note {
  overflow-y: auto;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.5);
  border: solid 1px #bbb;
  border-radius: 4px;
}
.bloc-note > p:first-child, .bloc-note > h1:first-child, .bloc-note > h2:first-child, .bloc-note > h3:first-child, .bloc-note > h4:first-child, .bloc-note > h5:first-child, .bloc-note > h6:first-child, .bloc-note > ol:first-child, .bloc-note > ul:first-child {
  margin-top: 0;
}

.bloc-note-chantier {
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.5);
  border: solid 1px #bbb;
  border-radius: 4px;
}
.bloc-note-chantier * {
  all: revert;
}
.bloc-note-chantier * {
  font-family: Roboto, sans-serif;
  font-size: 0.9rem;
}
.bloc-note-chantier p {
  margin: 0;
}
.bloc-note-chantier blockquote {
  margin: 0 0 0 20px;
}
.bloc-note-chantier h1, .bloc-note-chantier h2, .bloc-note-chantier h3, .bloc-note-chantier h4, .bloc-note-chantier h5, .bloc-note-chantier h6 {
  margin-bottom: 0;
}
.bloc-note-chantier h2 {
  margin-top: 6px;
  font-size: 1rem;
  border-top: solid 2px #222;
}
.bloc-note-chantier h3 {
  margin-top: 4px;
  border-top: dashed 1px #999;
}
.bloc-note-chantier h4 {
  margin-top: 2px;
}
.bloc-note-chantier > *:first-child {
  margin-top: 0;
  border-top: none;
}

.creamod {
  color: #fff;
  background-color: #aaa;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 0.5em;
  line-height: 1.5em;
  display: inline-block;
  align-self: flex-start;
}
.creamod .creamod-nom {
  color: #000;
}
.creamod .creamod-date {
  color: #00b;
}

span.format-ref span.format-ref-an {
  color: #00f;
  font-weight: normal;
}
span.format-ref span.format-ref-mois {
  color: #080;
  font-weight: bold;
}
span.format-ref span.format-ref-type {
  color: #f00;
  font-weight: normal;
}
span.format-ref span.format-ref-zero {
  color: #555;
  font-weight: normal;
  font-size: 0.95em;
}
span.format-ref span.format-ref-num {
  color: #000;
  font-weight: bold;
}

.notva {
  color: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  cursor: none !important;
}

.pan-border {
  border: solid 3px #000;
}

.img-capt {
  border: solid 1px #000;
  max-width: 100%;
}

.liste-escalier {
  background-color: white;
}
.liste-escalier div.cont-date {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: solid 2px black;
}
.liste-escalier div.cont-date:last-child {
  border-bottom: solid 2px black;
}
.liste-escalier div.cont-date:nth-child(odd) {
  background-color: rgb(230, 230, 250);
}
.liste-escalier div.cont-date div.col-date {
  padding: 0.3em;
  width: 9em;
}
.liste-escalier div.cont-date div.cont-date-second {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-left: solid 1px black;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type.IP {
  color: blue;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type.HSP {
  color: red;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type.HNTP {
  color: maroon;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type + div.cont-type {
  border-top: solid 1px black;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type div.col-type {
  padding: 0.3em;
  width: 5em;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type div.cont-cord {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-left: solid 1px black;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type div.cont-cord div.col-cord {
  width: 100%;
  padding: 0.3em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 1em;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type div.cont-cord div.col-cord.chef > span:first-child {
  font-weight: bold;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type div.cont-cord div.col-cord + div.col-cord {
  border-top: solid 1px black;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type div.cont-cord div.col-cord span:nth-last-child(1) {
  font-size: 0.8em;
}
.liste-escalier div.cont-date div.cont-date-second div.cont-type div.cont-cord div.col-cord span:nth-last-child(2) {
  font-size: 0.8em;
  flex: 2;
  text-align: right;
}

.poop-nouv-rdv-splitcordistes {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 1em;
  column-gap: 1em;
}

#btn43cord1, #btn43cord2 {
  width: fit-content;
  font-size: 0.8em;
  margin-bottom: 1em;
}

/*# sourceMappingURL=hal.css.map */
