:root{
  --main-col: #0a71b3;
  --light-grey: 225,225,225;
  --grey: 200,200,200;
  --dark-grey: 100,100,100;
  --focus: #0DA7FC;
  --focus-outline: 0 0 0 3px #64d2ff;
  --shadow: 0 0 3px 0 rgba(0,0,0,.32);
}
:focus{
  outline: transparent;
}
a{
  text-decoration: none;
}
body {
  font-family: Calibri, "Myriad Pro", Arial, Helvetica, sans-serif;
  color: #FFF;
  background: rgb(var(--light-grey)) url('../images/fondEcran-Dekstop.jpg') center fixed no-repeat;
  background-size: cover;
}
/* BOUTONS ____________________________________*/
.boutonPrimaire{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 10px 0;
  font-family: Calibri, Arial, sans-serif;
  font-size: 12pt;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: solid 1px #d25000;
  border-radius: 5px;
  box-shadow: inset 1px 1px 1px #ff7300, inset -1px -1px 1px #ff7300,
    0 1px 3px rgba(50, 50, 50, 0.7);
  background: #ff7300;
  background: linear-gradient(to left, #f45400 50%, #ff5a00 100%);
  color: transparent;
}
.boutonPrimaire > span{
  color: #e6e6e6;
  font-size: 12pt;
  font-weight: 600;
  text-transform: uppercase;
}
.boutonPrimaire:hover{
  background: linear-gradient(to top, #ff5a00 45%, #ff6400 55%);
}
.boutonPrimaire:hover > span{
  color: #f0f0f0;
}
.boutonPrimaire:active{
  background: #511943;
  border: solid 1px #330c29;
  box-shadow: 0 1px 1px rgba(50, 50, 50, 0.7);
}
.buttonWide{
  width: 100%;
  max-width: initial;
}
#pagePrincipaleBody section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#horaireAction {
  color: black;
  font-size: 10px;
  text-align: right;
  padding-right: 13px;
}
.feuTricolor_0 {
  color: green;
}
.feuTricolor_1 {
  color: orange;
}
.feuTricolor_2 {
  color: red;
}
.boxlogin {
  z-index:2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  position: relative;
  top: 12vh;
  left: auto;
  right: auto;
  width: 12vw;
  min-width: 380px;
  padding: 60px 32px 48px 32px;
  border-radius: 0 10px 10px 10px;
  box-shadow: var(--shadow);
}
#logo-IBC {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 20px 0;
}
.iconeBoilerbox{
  height: 110px;
  width: 110px;
  background-image:url('../images/logoIBC.svg');
}
#logo-IBC .img {
  width: 81px;
  height: 81px;
  float: left;
  background: no-repeat;
  display: block;
}
#logo-IBC .txt {
  display: block;
  margin-left: 10px;
  color: black;
  text-align: left;
  font-size: 22px;
  line-height: 21px;
}
#logo-IBC span {
  color: #0a71b4;
}
.containerRow{
  display: flex;
  flex-direction: row;
}
.containerColumn{
  display: flex;
  flex-direction: column;
}
.boxlogin > .containerColumn{
  align-items: center;
}
#identifiantAffaire{
  align-items: center;
  margin: 20px 0;
  font-family: Calibri, Arial, sans-serif;
  font-size: 16pt;
  font-weight: 600;
}
#identifiantAffaire .icone {
  width: 60px;
  height: 53px;
  margin: 0 12px 0 0;
  background: #FFF;
  display: inline-block;
  border-radius: 5px;
  border: 3px solid #4b4b4b;
  background: url(../images/ipcWeb/chaudiere.png) no-repeat;
  background-position: center;
}
#identifiantAffaire .codeAffaire {
  color: var(--main-col);
}
#identifiantAffaire .nomAffaire {
  color: black;
}
/* FORMULAIRE __________________________________________________*/
.boxlogin form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}
input[type="text"], input[type="password"]{
  box-sizing: border-box;
  width: 100%;
  padding: 10px 6px 10px 20px;
  margin: 12px 0 0 0;
  font-family: Calibri, Arial, sans-serif;
  color: black;
  font-size: 12pt;
  text-align: left;
  background: white;
  border: 1px solid rgb(var(--grey));
  border-radius: 5px;
}
input[type="text"]::placeholder, input[type="password"]::placeholder{
  font-family: Calibri, Arial, sans-serif;
  color: rgb(var(--dark-grey));
  font-size: 12pt;
  opacity: 0.5;
  text-align: left;
}
input[type="text"]:focus, input[type="password"]:focus{
  border: 1px solid var(--focus);
  box-shadow: var(--focus-outline);
  outline: transparent;
}
input[type="text"]:focus::placeholder, input[type="password"]:focus::placeholder{
	opacity: 0.2;
}
.boxlogin form a{
  margin: 18px 0 0 0;
}
.boxlogin .bouton {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  line-height: 16px;
  margin: 13px 0 0 5px;
  float: right;
  margin-right: 10px;
  text-transform: uppercase;
  background: none;
}
.bouton.blue {
  color: #006ab3;
  border: #006ab3 solid 3px;
}
.bouton.green {
  color: #3fa740;
  border: #3fa740 solid 3px;
}
.bouton.red {
  color: #FF0000;
  border: #FF0000 solid 3px;
}
#_submit {
  background: none;
  border: none;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #006ab3;
  margin: 2px;
  height: 21px;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  padding: -1px 8px -3px 8px;
}
#_submit:hover {
  background: #006ab3;
  width: auto;
  display: inline-block;
  padding: -1px 8px -3px 8px;
  margin: 2px;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  cursor: pointer;
}
#horodatage {
  z-index: 1;
  margin: 20px;
  text-align: center;
  color: #264d68;
  font-weight: bold;
  position: fixed;
  right: 2%;
  bottom: 2%;
}
.heure {
  font-size: 120px;
  line-height: 55px;
}
.date {
  font-size: 55px;
  text-transform: uppercase;
}
#fonduNoirLogin{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 4;
}
#messagebox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background-color: white;
  max-width: 460px;
  padding: 40px 36px;
  border-radius: 0 10px 10px 10px;
  box-shadow: var(--shadow);
}
#messagebox #messageboxTexte{
  margin-bottom: 24px;
  color: black;
  font-size: 12pt;
  line-height: 11pt;
  font-weight: 400;
  text-align: left;
}
#messagebox .bouton {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  line-height: 16px;
}
.right {
  width: 100%;
  text-align: right;
}
.cacher {
  display: none;
}
.bgbouton {
  background: none;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  padding: 2px 8px 1px 8px;
  margin: 2px;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  width: 200px;
}
.green .bgbouton:hover {
  background: #3fa740;
  width: auto;
  display: inline-block;
  padding: 2px 8px 1px 8px;
  margin: 2px;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  width: 200px;
}
.blue .bgbouton:hover {
  background: #006ab3;
  width: auto;
  display: inline-block;
  padding: 2px 8px 1px 8px;
  margin: 2px;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  width: 200px;
}
.red .bgbouton:hover {
  background: #FF0000;
  width: auto;
  display: inline-block;
  padding: 2px 8px 1px 8px;
  margin: 2px;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  width: 200px;
}
.shadowing {
  opacity: 0.3;
  filter: alpha(opacity=70);
  z-index: 1;
}
.validationbouton div.bouton {
  width: 130px;
  display: inline-block;
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 3px;
  border-radius: 15px;
  border: #202a36 solid 3px;
  font-size: 16px;
  text-align: center;
}
.validationbouton a {
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
.btn-disable {
  pointer-events: none;
}
.destination_site {
  text-align: center;
  width: 100%;
}
.logout {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 99;
}
.logout a {
  color: white;
}
.logout a:hover {
  color: white;
}
.up_titre_page {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 98;
}
.up_titre_page p {
  font-size: 10px;
}
@media screen and (max-width:810px) and (max-height:600px) {
  .heure {
    font-size: 50px;
    line-height: 20px;
  }
  .date {
    font-size: 40px;
    text-transform: uppercase;
  }
}
@media screen and (max-width:550px) and (max-height:570px) {
  .heure {
    font-size: 20px;
    line-height: 15px;
  }
  .date {
    font-size: 25px;
    text-transform: uppercase;
  }
  }
  @media screen and (max-width:450px) and (max-height:570px) {
  #horodatage {
    display: none;
  }
  }
  @media screen and (max-width:500px) and (min-height:570px) {
  .heure {
    font-size: 20px;
    line-height: 15px;
  }
  .date {
    font-size: 25px;
    text-transform: uppercase;
  }
}
@media screen and (max-height:500px) {
  .boxlogin {
    background: #FFF;
    width: 250px;
    position: absolute !important;
    left: 80px;
    top: 5px;
    margin-top: 5px;
    vertical-align: middle;
    border-radius: 20px;
    text-align: left;
    border-top-left-radius: 0;
    -moz-box-shadow: 8px 8px 12px #000;
    -webkit-box-shadow: 8px 8px 12px #000;
    box-shadow: 8px 8px 12px #000;
    padding: 5px 5px 20px 5px;
  }
}
@media screen and (max-height:400px) {
  .icone {
    width: 60px;
    height: 0px;
    background: #FFF;
    display: inline-block;
    margin-bottom: 10px;
    margin-top:-10px;
    border-radius: 5px;
    border: none;
    background: url(../images/ipcWeb/chaudiere.png) no-repeat;
    background-position: 4px 4px;
  }
  .affaire {
    width: 160px;
    height: 20px;
    position: absolute;
    color: red;
    display: inline-block;
    margin-top: 10px;
    padding-bottom: 0px;
  }
  .affaire span {
    font-family: Verdana, Geneva, sans-serif;
    text-align: left;
    line-height: normal;
    font-size: 16px;
    color: #4b4b4b;
    display: table-cell;
    vertical-align: middle;
    height: 40px;
    padding-left: 10px;
  }
}
@media screen and (max-height:330px) {
  #logo-IBC {
    display: none;
  }
}