@charset "UTF-8";
/*
Copyright (C) 2018 Romain DENIS-REMIS <romain 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 <romain at denis-remis.fr>
*/
/* Couleur pour l'état des intervention
	A confirmer
	Validée
	Annulée sans nouvelles du client
	Annulée par le client
*/
/*$col- : darken($col-code-bgc, 10%);*/
textarea {
  field-sizing: content;
  width: 100%;
}

.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;
}

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;
  position: relative;
  padding: 0.3em;
  height: 3.5em;
  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 - 3.5em);
  position: relative;
  overflow-y: auto;
  padding: 1em 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;
  }
}

main H2:first-of-type {
  margin-top: 0;
}

/* ================================================================ */
/* NAV MENU                                                         */
/* ================================================================ */
#site_search_input {
  width: 80px;
  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: 481px) {
  #site_search_input {
    width: auto;
    margin-top: 0.5em;
  }
}
@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);
}
@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:nth-child(2) {
    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;
  }
}
@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:nth-child(2) {
    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;
  }
}
@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 2em;
  }
  nav > ul.fa-ul > li {
    padding-left: 0;
  }
  nav > ul.fa-ul > li.menu-firstli-withul > span:nth-child(2) {
    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;
  }
}

/* ================================================================ */
/* LOGO AND PAGE TITLE                                              */
/* ================================================================ */
#logoblock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#logoblock > #logoimg {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#logoblock > #logoimg > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#logoblock > #logoimg > a img {
  height: 2em;
}
#logoblock > p#logotext {
  display: none;
  margin: 0;
  font-size: 1.3em;
}
#logoblock > button#helpop_open {
  display: none;
  margin: 0 0 0 0.5em;
  font-size: 1.3em;
  padding: 0.01em 0.22em;
  border-radius: 50%;
}
@media all and (min-width: 481px) {
  #logoblock {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
    column-gap: 5px;
  }
  #logoblock > #logoimg > img {
    height: 2em;
  }
  #logoblock > p#logotext {
    display: block;
    margin: 0;
    font-size: 1.3em;
  }
  #logoblock > button#helpop_open {
    display: block;
    margin: 0;
    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                                              */
/* ================================================================ */
.a-lien-visuel {
  padding-right: 0.2em;
  color: #000;
  border-bottom: solid 0.05em #000;
  border-bottom-right-radius: 7px;
}
.a-lien-visuel > svg {
  margin-left: 0.3em;
  font-size: 0.9em;
  color: #007BFF;
}

.page-indentite {
  font-weight: bold;
  border: solid 2px black;
  border-radius: 4px;
  padding: 0 3px;
  /*	color: rgb(230,230,230);
  	font-weight: bold;
  	text-shadow: 1px 2px 0 rgba(255,255,255,1), -1px -2px 0 rgba(0,0,0,0.4);
  	> svg, i {
  		color: rgb(180,180,180);
  	}*/
}

.bloc-note {
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}
.bloc-note > p:fist-child, .bloc-note > h1:fist-child, .bloc-note > h2:fist-child, .bloc-note > h3:fist-child, .bloc-note > h4:fist-child, .bloc-note > h5:fist-child, .bloc-note > h6:fist-child, .bloc-note > ol:fist-child, .bloc-note > ul:fist-child {
  margin-top: 0;
}

.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;
}

.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%;
}

form.formtel fieldset {
  padding: 1rem 0;
  border-color: rgb(73, 86, 118);
  border-width: 3px;
  border-left: none;
  border-right: none;
}
form.formtel fieldset hr {
  border-color: #fff;
}
@media all and (min-width: 481px) {
  form.formtel fieldset {
    padding: 1em 0.75em 0.65em;
    border: solid 1px rgb(240, 240, 240);
    /*			border-color: rgb(240, 240, 240);
    			border-width: 1px;
    			border-left: solid;
    			border-right: solid;*/
  }
  form.formtel fieldset hr {
    border-color: initial;
  }
}

.liste-photos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
}
.liste-photos > div.petite-vignette {
  width: 40px;
  height: 40px;
  border: solid 1px #ccc;
  background-color: #fff;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.liste-photos > div.petite-vignette > img {
  max-height: 100%;
  max-width: 100%;
}

img.photo-popup {
  max-height: 100%;
  max-width: 100%;
}

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