@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
/**
 * @author Kimberly Gagné <kimberly.gagne@mce.gouv.qc.ca>
 * @author Simon Bastien, PIV <simon.bastie@mce-sct.gouv.qc.ca>
**/
/**** modules ****/
/**
 * @author Prénom Nom courriel
 * @todo ADAPTER ce fichier au besoin
 * ----------------------------
 * TABLE DES MATIÈRES - MIXINS
 * ----------------------------
 * base (BoxSizing, Clearfix)
 * accessibilité
 * typographie
 * @todo Personnaliser au besoin
 */
/******** Utilitaires de base (BoxSizing, Clearfix) *********/
/* BoxSizing */
/* Clearfix: pour contrer le problème des enfants flottants*/
/******** Utilitaires pour accessibilité *********/
.visuallyhidden,
.screen-reader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus,
.screen-reader-only.focusable:active,
.screen-reader-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: normal;
  width: auto;
}

/******** Utilitaires pour typographie *********/
/* Utilitaire de mise en page */
/**** modules ****/
/**
 * @author Prénom Nom courriel
 * @todo ADAPTER ce fichier selon le projet
 */
/**
 * -------------------------------------------------
 * TABLE DES MATIÈRES - Menu de base (Mobile First)
 * -------------------------------------------------
 * Palette de couleurs
 * Base commune
 * - Bouton du menu
 * - Liste du menu
 * - Liens du menu
 * Si le javascript est activé
 */
/****** Base commune *******/
/* Bouton du menu */
.menu__controle {
  background-color: transparent;
  border: none;
  min-width: 40px;
  float: right;
  background-size: 20px;
  color: white;
  font-weight: bold;
  height: 20px;
}

.menu__controle:hover, .menu__controle:active {
  color: white;
}

.menu__controle:focus {
  color: white;
}

.lienMinistere_piv a{
	color: inherit;
	text-decoration: none;
}

@media (min-width: 1000px) {
  .menu__controle {
    display: none;
  }
}

/* Liste du menu */
.menu__liste {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: none;
  float: right;
  width: 100%;
}

.menu__listeItem {
  /*width: 100%;*/
  padding: 1% 0%;
  text-align: left;
}

@media (min-width: 1000px) {
  .menu__listeItem {
    display: inline-block;
    padding: 0;
    /*width: 20%;*/
  }
}

.menu__listeItem a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 2rem;
}

@media (min-width: 1000px) {
  .menu__listeItem a {
    display: inline-block;
  }
}

.menu__listeItem:hover {
  background: #ffffff1f;
}

@media (min-width: 1000px) {
  .menu__listeItem:hover {
    background: transparent;
  }
}

/* Liens du menu */
.menu__lien {
  background-color: transparent;
  display: block;
  padding: 5px 10px;
  width: 100%;
}

@media (min-width: 1000px) {
  .menu__lien {
    padding: 0;
  }
}

.menu__lien:link, .menu__lien:visited {
  text-decoration: none;
  color: inherit;
}

.menu__lien:hover, .menu__lien:active {
  color: #dba70d;
}

.menu__lien__lien--actif {
  background: #ffffff1f;
}

@media (min-width: 1000px) {
  .menu__lien__lien--actif {
    background: transparent;
  }
}

/* Si le javascript est activé */
.js .menu__controle:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  z-index: 99;
  background-size: contain;
  background-repeat: no-repeat;
  /*margin-right: 0.5em;*/
  vertical-align: text-top;
  position: absolute;
  top: 1.3em;
}

.js .menu__liste {
  max-height: 100vh;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  position: absolute;
  right: -1%;
  top: 0;
  width: 40%;
  z-index: 98;
  -webkit-box-shadow: -1px 4px 8px #6865657a;
          box-shadow: -1px 4px 8px #6865657a;
  padding-top: 1.8em;
}

@media (min-width: 1000px) {
  .js .menu__liste {
    overflow: none;
    margin-top: 0;
    width: auto;
    position: inherit;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
  }
}

.js .piv_entete--bleu .menu__controle:before {
  background-image: url("../images/piv/ico-fermerB.svg");
}

.js .piv_entete--bleu .menu__liste {
  background: #095797;
}

@media (min-width: 1000px) {
  .js .piv_entete--bleu .menu__liste {
    padding-top: 0;
  }
}

.js .piv_entete--bleu .menu--ferme .menu__liste {
  max-height: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-top: 0;
}

@media (min-width: 1000px) {
  .js .piv_entete--bleu .menu--ferme .menu__liste {
    top: auto;
    max-height: none;
  }
}

.js .piv_entete--bleu .menu--ferme .menu__liste a {
  padding: 0;
}

.js .piv_entete--bleu .menu--ferme .menu__controle:before {
  background-image: url("../images/piv/ico-menuB.svg");
  z-index: 99;
}

.js .piv_entete--blanc .menu__controle:before {
  background-image: url("../images/piv/ico-fermerN.svg");
}

.js .piv_entete--blanc .menu__liste {
  background: #ffffff;
}

@media (min-width: 1000px) {
  .js .piv_entete--blanc .menu__liste {
    padding-top: 0;
  }
}

.js .piv_entete--blanc .menu__lien__lien--actif {
  background: #0000001f;
}

@media (min-width: 1000px) {
  .js .piv_entete--blanc .menu__lien__lien--actif {
    background: transparent;
  }
}

.js .piv_entete--blanc .menu--ferme .menu__liste {
  max-height: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-top: 0;
}

@media (min-width: 1000px) {
  .js .piv_entete--blanc .menu--ferme .menu__liste {
    top: auto;
    max-height: none;
  }
}

.js .piv_entete--blanc .menu--ferme .menu__liste a {
  padding: 0;
}

.js .piv_entete--blanc .menu--ferme .menu__controle:before {
  background-image: url("../images/piv/ico-menuN.svg");
  z-index: 99;
}

/**** Typographie ****/


body {
  margin: 0;
  padding: 0;
}

header,
footer {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1.4em;
}

.cacher {
  display: none;
}

.sauter {
  width: 100%;
  text-align: center;
}

.flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  -webkit-box-pack: end !important;
          justify-content: flex-end !important;
}

@media only screen and (min-width: 1000px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none !important;
}

@media only screen and (min-width: 1000px) {
  .desktop {
    display: block !important;
  }
}

#piv_entete {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  font-size: 16px;
	margin-bottom:3em;
}

#piv_entete img {
  width: 100%;
}

#piv_entete.piv_entete--bleu {
  background: #095797;
  color: #ffffff;
}

#piv_entete.piv_entete--blanc {
  background: #fff;
  color: #000;
  border-top: 8px solid #095797;
}

#piv_entete.piv_entete--blanc a {
  color: black !important;
}

#piv_entete.piv_entete--blanc #piv_identite.mobile {
  background: #fff !important;
}

#piv_entete .contenu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: auto;
  position: relative;
}

@media only screen and (min-width: 1000px) {
  #piv_entete .contenu {
    width: 1000px;
    margin: auto;
  }
}

#piv_entete .contenu #pivImage {
  min-width: 100%;
}

#piv_entete .contenu #logo {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  max-height: 60px;
}

@media only screen and (min-width: 1000px) {
  #piv_entete .contenu #logo {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
    max-height: 72px;
  }
}

#piv_entete .contenu #piv_menu {
  -ms-flex: 0 0 45%;
  -webkit-box-flex: 0;
          flex: 0 0 45%;
  max-width: 45%;
  max-height: 72px;
  margin-right: 5%;
}

@media only screen and (min-width: 1000px) {
  #piv_entete .contenu #piv_menu {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
    max-height: 72px;
    margin-right: 0;
  }
}

#piv_entete .contenu #piv_identite {
  width: 100%;
  max-height: 72px;
  font-size: 0.8em;
}

@media only screen and (min-width: 1000px) {
  #piv_entete .contenu #piv_identite {
    -ms-flex: 0 0 45%;
    -webkit-box-flex: 0;
            flex: 0 0 45%;
    max-width: 50%;
    margin-left: 3%;
	margin-top: -1.1em;
    font-size: 1em;
  }
}

#piv_entete .contenu #piv_identite.mobile {
  background: #095797;
  padding: 0 0 0.8em 0;
}

#piv_entete .contenu #piv_identite.mobile p {
  margin: 0 0 0 4%;
  line-height: 1.2em;
  padding: 0;
}

#piv_entete .contenu #piv_menu {
  min-width: 14%;
}

#piv_entete .contenu #piv_menu #recherche img {
  width: 100%;
  height: 45px;
  margin-top: -15px;
}

@media only screen and (min-width: 1000px) {
  #piv_entete .contenu #piv_menu #recherche img {
    margin-top: 0;
    width: 100%;
    height: 56px;
  }
}

#piv_entete .contenu #piv_menu ul {
  list-style: none;
  padding: 0;
  padding-left: 0px;
}

#piv_entete .contenu #piv_menu ul li {
  margin: 1% 0;
}

@media only screen and (min-width: 1000px) {
  #piv_entete .contenu #piv_menu ul li {
    margin: 0;
    padding: 0;
    display: block;
  }
}

#piv_entete .contenu #piv_menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 0.5em;
}

@media only screen and (min-width: 1000px) {
  #piv_entete .contenu #piv_menu a {
    padding: 0;
  }
}

#piv_entete .contenu #piv_menu a:hover {
  text-decoration: underline;
}

#piv_entete .contenu #piv_menu .menu__libelle {
  display: none;
}

@media only screen and (min-width: 1000px) {
  #piv_entete #piv_entete {
    min-height: 72px;
    max-height: 72px;
  }
}

#piv_piedPage {
  width: 100%;
  margin: 1% 0;
  font-family: 'Roboto', sans-serif;
}

#piv_piedPage:after {
  content: " ";
  display: table;
  clear: both;
}

#piv_piedPage .contenu {
  border-top: 3px solid #095797;
  width: 100%;
}

@media only screen and (min-width: 1000px) {
  #piv_piedPage .contenu {
    width: 1000px;
    margin: auto;
    border-top: none;
  }
}

#piv_piedPage .contenu #personnaliser,
#piv_piedPage .contenu #logo,
#piv_piedPage .contenu #credits {
  text-align: center;
}

#piv_piedPage .contenu #logo {
  width: 100%;
  margin: auto;
  max-height: 72px;
}

@media only screen and (min-width: 1000px) {
  #piv_piedPage .contenu #logo {
    width: 20%;
  }
}

#piv_piedPage .contenu #logo img {
  /*min-width: 100%;*/
}

#piv_piedPage .contenu #navFooter {
  padding: 0;
}

#piv_piedPage .contenu #navFooter li {
  list-style-type: none;
  margin: 1% 0;
  font-size: 0.5em;
}

@media only screen and (min-width: 1000px) {
  #piv_piedPage .contenu #navFooter li {
    display: inline-block;
    margin-right: 10px;
  }
}

#piv_piedPage .contenu a {
  color: gray;
}

#piv_piedPage .contenu small {
  font-size: 0.6em;
}

#piv_piedPage .contenu small a {
  color: black;
  text-decoration: none;
  font-size: 0.8em;
}
/*# sourceMappingURL=piv.css.map */