﻿/* Variables */
/* MAIN LAYOUT */
html,
body {
  height: 100vh;
}
.main-layout {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.main-layout > header,
.main-layout > footer {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgba(25, 67, 98, 0.7);
  color: white;
  /*& > * {
            margin-left: .2em;
            margin-right: .2em;
        }*/
}
.main-layout .recherche {
  position: absolute;
  padding: 0;
  top: 0.6em;
  right: 0.6em;
  z-index: 1000;
  max-width: 30%;
}
.main-layout > .main-content {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  overflow: hidden;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: space-between;
  -ms-align-content: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  align-items: stretch;
  height: 100%;
  background-color: whitesmoke;
}
.main-layout > .main-content > aside {
  background-color: #194362;
  color: white;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  /*-ms-align-content: center;
  -webkit-align-content: center;
  align-content: center; */
}
.main-layout > .main-content > section {
  /* align-self: stretch; */
  /*-ms-align-content: flex-start;
        -webkit-align-content: flex-start;
        align-content: flex-start;*/
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  align-self: stretch;
  height: 100%;
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  /* overflow: auto; */
  padding: 0.5em;
  background-color: #e3e3e3;
  -webkit-box-shadow: inset 0 0 5px 2px #828282;
  -moz-box-shadow: inset 0 0 5px 2px #828282;
  box-shadow: inset 0 0 5px 2px #828282;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  -ms-align-content: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  align-items: stretch;
  overflow: hidden;
}
.main-layout > .main-content dd {
  padding-left: 1em;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
/* Mode d'affichage flex */
.padding-base {
  padding: 15px;
}
.flex-no-padding-margin {
  margin: 0 !important;
  padding: 0 !important;
}
.flex-mode-colonne {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  /* height: 100%;*/
  /* min-height: 100%; */
  max-height: inherit;
  overflow: hidden;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-align-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.flex-mode-colonne > * {
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  align-self: auto;
}
.flex-mode-colonne * {
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
.flex-mode-rangee {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  align-self: stretch;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-align-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  height: inherit;
  max-height: inherit;
}
.flex-mode-rangee > * {
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  align-self: auto;
}
.flex-mode-rangee * {
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
.flex-row-fill {
  width: 100%;
  height: inherit;
  max-height: inherit;
}
.flex-row-auto {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  align-self: stretch;
}
.flex-row-1 {
  -ms-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.flex-col-1 {
  flex: 1 1 auto;
  width: 10%;
  min-width: 10%;
  max-width: 10%;
}
.flex-col-2 {
  flex: 2 2 auto;
  width: 20%;
  min-width: 20%;
  max-width: 20%;
}
.flex-col-3 {
  flex: 3 3 auto;
  width: 30%;
  min-width: 30%;
  max-width: 30%;
}
.flex-col-4 {
  flex: 4 4 auto;
  width: 40%;
  min-width: 40%;
  max-width: 40%;
}
.flex-col-5 {
  flex: 5 5 auto;
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}
.flex-col-6 {
  -ms-flex: 6 6 auto;
  -webkit-flex: 6 6 auto;
  flex: 6 6 auto;
  min-width: 60%;
  max-width: 60%;
}
.flex-row-2 {
  -ms-flex: 2 0 auto;
  -webkit-flex: 2 0 auto;
  flex: 2 0 auto;
}
.flex-row-3 {
  -ms-flex: 3 0 auto;
  -webkit-flex: 3 0 auto;
  flex: 3 0 auto;
}
.flex-row-4 {
  -ms-flex: 4 0 auto;
  -webkit-flex: 4 0 auto;
  flex: 4 0 auto;
}
.flex-vertical-toolbar {
  width: 50px;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  -ms-align-content: center;
  -webkit-align-content: center;
  align-content: center;
  background-color: rgba(25, 67, 98, 0.7);
  padding: 0;
  margin: 0;
}
.flex-vertical-toolbar .nav-stacked {
  font-size: 1.3em;
}
.flex-colonne-auto {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 10px;
  margin-left: 10px;
  align-self: stretch;
  overflow-x: auto;
  /*overflow: hidden;*/
}
.flex-rangee-auto {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  align-self: stretch;
}
/* Panel */
.med-panel {
  border: 1px solid #194362;
  background-color: white;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  margin-right: 10px;
}
/*.flex-colonne {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    height: 100%;
}

.flex-colonne > div {
    -ms-flex: 1 1;
    -webkit-flex: 1 1;
    flex: 1 1;
}

.flex-colonne .btn-toolbar {
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.flex-rangee {
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    height: 100%;
}

.flex-rangee > div {
    -ms-flex: 1 1;
    -webkit-flex: 1 1;
    flex: 1 1;
    align-self: stretch;
    overflow: auto;
}

.flex-rangee .btn-group-vertical {
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    align-self: center;
    overflow: hidden;
}*/
/*.fill-parent {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    -ms-align-content: stretch;
    -webkit-align-content: stretch;
    align-content: stretch;
    align-items: stretch;
    height: 100%;
}*/
.authentification {
  padding: 10px;
  width: 220px;
  max-width: 220px;
  justify-content: center;
}
.authentification img {
  margin-top: 20px;
  margin-bottom: 20px;
}
.authentification input {
  margin-top: 20px;
  width: 200px;
}
.authentification button {
  margin-top: 20px;
}
/* Zone info-contact */
.infoContact {
  /*flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0; */
  margin: 2em;
  padding: 2em;
  background-color: rgba(25, 67, 98, 0.7);
  color: white;
}
/* Ajustements BOOTSTRAP */
body {
  padding-bottom: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
/* Évite un espace entre la section principale et la barre de navigation supérieure */
.navbar {
  margin-bottom: 0;
  background-color: #194362;
  border-radius: 0;
}
.navbar a,
.nav-stacked a {
  color: white;
}
/*.navbar a:hover, .nav-stacked a:hover {
    color: @couleur_principale;
}*/
.icon-bar {
  color: white;
  background-color: white;
}
/*.icon-menu {
    width: 32px;
    height: 32px;
    fill: white;
}*/
.nav-stacked li a svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.nav-stacked li a:hover svg {
  fill: #194362;
}
.nav-tabs li a svg {
  width: 16px;
  height: 16px;
  fill: rgba(25, 67, 98, 0.7);
}
/*.icon-menu:hover {
    fill: @couleur_principale;
}*/
a:hover .icon-menu {
  color: #194362;
  fill: #194362;
}
h3 span {
  padding-left: 0.2em;
  padding-right: 0.2em;
  font-size: 0.8em;
}
h3 span .glyphicon {
  font-size: 1.3em;
}
th {
  font-weight: bold;
  text-align: center;
}
.table tr {
  border-top: none;
  margin-top: 5px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 3px;
}
/* Réduit l'espace entre les lignes d'un formulaire */
form {
  margin-bottom: 2px;
}
.form-group {
  margin-bottom: 5px;
}
.chargementEnCours {
  background-color: white;
  background-image: url("images/ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.75;
  z-index: 999;
}
.erreur {
  background-color: red;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
}
.medicus-highlight:focus {
  background-color: lightblue;
  font-size: 1.3em;
}
legend {
  display: inline-block;
  vertical-align: middle;
  line-height: 2em;
}
.navlink {
  font-weight: lighter;
  font-size: 2em;
  padding: 0.2em;
}
/* Champs particuliers */
NoFacture {
  border: 1px dashed rgba(25, 67, 98, 0.7);
}
NoFacture:hover {
  cursor: pointer;
}
/* scrollableTable */
.scrollableTable {
  /* border: 1px solid black; */
  margin: 0;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  -ms-align-content: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  align-items: stretch;
  border-collapse: collapse;
}
.scrollableTable .padding-scrollbar {
  width: 17px;
  min-width: 17px;
  max-width: 17px;
  padding: 0;
  margin: 0;
}
.scrollableTable .table-header,
.scrollableTable .table-footer {
  width: 100%;
}
.scrollableTable .selected {
  background-color: rgba(25, 67, 98, 0.7);
  color: white;
}
.scrollableTable-header,
.scrollableTable-footer {
  margin: 0;
  padding: 0;
  width: 100%;
  padding-right: 18px;
  /* background-color: lightgray; */
  border-collapse: collapse;
  line-height: 27px;
  -ms-flex: 0 0 30px;
  -webkit-flex: 0 0 30px;
  flex: 0 0 30px;
  align-self: auto;
}
.scrollableTable-header {
  border-collapse: collapse;
  border-bottom: 1px solid black;
}
.scrollableTable-footer {
  border-top: 1px solid black;
}
.scrollableTable-body {
  margin: 0;
  padding: 0;
  width: 100%;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  align-self: stretch;
  overflow-y: visible;
  overflow-x: hidden;
}
.scrollableTable-body > table {
  margin-right: 30px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.scrollableTable-body > table > tbody > tr > td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.Input-Erreur {
  background-color: lightcoral;
  border-color: red;
}
.filtered-select {
  position: relative;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.filtered-select input {
  z-index: 1000;
}
.filtered-select ul {
  display: none;
  box-shadow: 3px 3px 5px 0px #cfcfcf;
  width: 100%;
  height: auto;
  min-height: 100px;
  max-height: 200px;
  top: 30px;
  left: 0;
  padding-top: 0.3em;
  padding-left: 0.3em;
  /* border: 1px solid @couleur-principal; */
  border-top: none !important;
  background-color: white;
  overflow-y: auto;
  position: absolute !important;
  z-index: 1002 !important;
}
.filtered-select ul li {
  width: 100%;
}
.filtered-select ul li:hover,
.filtered-select ul li:hover > a {
  background-color: #194362;
  color: white;
}
.filtered-select ul li.selected,
.filtered-select ul li.selected > a {
  background-color: #194362;
  color: white;
}
.filtered-select ul a {
  width: 100%;
  font-size: 1em;
  text-decoration: none;
  color: #194362;
}
.filtered-select ul a:hover {
  background-color: #194362;
  color: white;
}
/* Reset pour compatibilité bootstrap et kendo */
/* reset everything to the default box model */
*,
:before,
:after {
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
/* set a border-box model only to elements that need it */
.form-control,
.container,
.container-fluid,
.row,
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.wp-block-columns {
    display: flex;
    flex-direction: row;
}

.has-text-align-right {
    text-align: right;
}