﻿/* Set pane title as h1 (from global style.css) */
.pane-title {
    font-family: 'open_sans_condensedbold';
    font-size: 38px;
    line-height: 44px;
    text-align: center;
    color: #333333;
    clear: both;
    margin-top: 0;
    padding-top: 44px;
}

/** CSS Spécifique Drupal basée sur le fichier "choicePassWord4.css" du module
  * de génération des mots de passe.
  */
.wizard noscript {
    color:red;
    font-size:20px;
    border:1px solid;
    padding:10px;
    margin:20px;
    font-weight:bold;
}

/* Définitions générales de la classe "wizard".
*/
.wizard {
    border-radius:10px;
    padding:5px;
    max-width:900px;
}
.wizard h2 {
    color: #fff;
    padding: 10px;
    margin: 0px;
    display: none;
}
.wizard > div {
     padding: 13px;
}
.wizard ul > li {
  padding: 0;
  list-style-type:none;
}
.wizard .notvisible {
    visibility:hidden;
}
.wizard .hidden {
    display:none;
}
.wizard .error {
     color : #C55252;
}

/**
 * .wizard > .steps (étapes pour la génération du mot de passe)
 */
.wizard > .steps {
    background-color:#FFF;
}
.wizard > .steps > ul {
    min-height: 45px;
    padding-left:0px;
}
.wizard > .steps > ul > li  > a {
  color: #aaa;
  cursor: default;
  margin: 0px 8px 8px 8px;
  padding: 10px;
  text-decoration: none;
  display:none;
}
.wizard > .steps > ul > li.current > a {
  font-family: 'open_sans_condensedbold';
  font-size: 30px;
  color: black;
  cursor: default;
  display:block;
  margin-left: -30px;  
  border-radius: 10px 10px 0px 0px;
}
.wizard > .steps > ul > li.current > a.error {
}
/* Suppression des étapes autres que l'étape active ...
*/
.wizard  .steps  li:before {
    content: '';
    display: none;
}
.wizard  .steps  li.current:before {
    display: inline;
}

/* Numérotations des étapes...
*/
.wizard .number {
    border-radius: 50%;
    background-color: #333333;
    width: 53px;
    height: 53px;    
    display: inline-block;
    color:#FFFFFF;
    text-align:center;
    vertical-align:middle;
    margin-right:15px;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 32px;
    font-weight: normal;    
}

/**
 * .wizard > .content (contenu des étapes)
 */
 .wizard > .content {
     font-size: 16px;
     color: #686767;
}
.wizard > .content > .body > input {
	width:100%;
    padding:5px;
    padding-right:0px;
}
.wizard > .content > .body > div > div > span > .firstLetter {
   color: #C94D4D;
   display:inline;
}
.wizard > .content > .body > div > div > span > .nextLetter {
}
.wizard > .content > .body > ul > li {
  color: #fff;
  margin:3px;
  padding : 5px;
}
.wizard > .content > .body > .lineProgressBar {
    height:3px;
    width:0px;
}
.wizard > .content > .body ul > li {
  color: #555555;
  margin:1px;
  padding : 2px;
  text-align:left;
  margin-left:0px;
}
.wizard > .content {
   overflow: visible;
   min-height: 96px;
   background-color : #FFF;
}
.wizard > .actions {
   background-color : #FFF;
}
.wizard > .content > .body {
  /* padding: 0px; */
  margin-top: -111px;
  padding-left: 32px;
  font-size: 18px;
}

/* Distinction des erreurs de la première page et ... */
.wizard > .content > .body ul > li.errorrule {
  color : #C94D4D;
  font-weight: bold;
}
/* ... de la page deux (récapitulatif des erreurs)*/
.wizard > .content > .body ul.nextError {
  padding-top: 10px;    /* Ajoute une marge interne de 10 pixels... */
}

/* Titre des conseils pour renforcer le mot de passe ... */
.wizard .enforcePassWord {
  font-family: 'open_sans_condensedbold';
  font-size: 30px;
  color: black;
/*  margin-left: -30px; */
}

.wizard > .content > .body >.error {
  background-color : #C55252;
}
.wizard > .content > .body > .success {
  background-color : green;
}
.wizard > .content > .body > div > div > span > .hidden {    
  display: none;
}
.wizard > .content > .body input {
  border: 2px solid #ccc;
}
.wizard > .content > .body > ul {
  /*margin: 0px;  */
  padding: 0px;
  list-style-type: none;
}
.wizard > .content > .body  .sentenceValidate {
  padding-bottom: 5px;
  color: #0084FF;
  font-family: Helvetica;
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 34px;
  padding: 4px;
  background-color:#EBEBDE;  
}
.wizard > .content > .body .returnLine {
    display:block;
}
/* Préparation des labels */
.wizard > .content input[type="checkbox"]:not(:checked) + label,
.wizard > .content input[type="checkbox"]:checked + label {
    position: relative;  /* Permettre de positionner les pseudo-éléments */
    padding-left: 25px;  /* Ajouter un peu d'espace pour notre case à venir */
    cursor: pointer;     /* Afficher un curseur adapté */
}
/* Aspect des cases à copcher (checkboxes) */
/* :before sert à créer la case à cocher */
.wizard > .content input[type="checkbox"]:not(:checked) + label:before,
.wizard > .content input[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; top: 2px;
    width: 17px; height: 17px; /* dim. de la case */
    border: 1px solid #aaa;
    background: #f8f8f8;
    border-radius: 3px; /* angles arrondis */
    box-shadow: inset 0 1px 3px rgba(0,0,0,.3) /* légère ombre interne */
}
/* Aspect général de la case */
.wizard > .content input[type="checkbox"]:not(:checked) + label:after,
.wizard > .content input[type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 0; left: 4px;
    font-size: 14px;
    color: #09ad7e;
    transition: all .2s; /* on prévoit une animation */
}
/* Aspect si "non" cochée */
.wizard > .content input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;           /* Cacher la case */
    transform: scale(0);  /* Echelle à 0    */
}
/* Aspect si "cochée" */
.wizard > .content input[type="checkbox"]:checked + label:after {
    opacity: 1;           /* Afficher la case */
    transform: scale(1);  /* Echelle à 1:1    */
}

/* Listes pour le résultat des étapes de la génétration du mot de passe.
*/
.wizard li.countli {
    list-style-type: none;
    counter-increment: repas; /* Incrémente le compteur à chaque nouvelle balise <li> */
    margin-bottom: 10px;
}
.wizard .content li.countli:before  {
    content: counter(repas); /* Affichage du compteur */
    padding: 0 20px 6px;
    margin-right: -8px;
    vertical-align: middle;
    font-weight: bold;
    font-size: 16px;
    color: #4596EC;		
}
/* Dans le cas d'une erreur, affiche également le chiffre en rouge ! */
.wizard .content li.errorrule:before  {
    color : #C94D4D;
}

/**
 * Zone de saisie de la "phrase de passe" (passphrase).
 */
.wizard .content input {
    display: block;
    width: 100%;
    min-height: 36px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.wizard .content .titleChoiceMdp {
    color:#555555;
    font-weight:bold;
    font-size:15px;
    text-align:center;
    margin-bottom:6px;
}
.wizard .content .ruleChoiceMdp {
    color:#555555;
    font-weight:bold;
    margin-bottom:10px;
    text-align:left;
    margin-top:20px;
    margin-bottom:7px;
}

/* Images de validations et d'erreur...
*/
.wizard .content .ckeckImg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: -5px;
    background:url(../images/valid20.jpg) no-repeat;
}
.wizard .content .ckeckImgRule {
    width: 20px;
    height: 20px;
    position: absolute;
    left: -5px;
    background:url(../images/valid20.jpg) no-repeat;
    float: right;
}
.wizard .ruleStep1 .errorrule  > span.hidden  {
    width: 20px;
    height: 20px;
    position: absolute;
    left: -5px;
    display: inline !important;
    visibility: visible !important;
    background:url(../images/cross20.jpg) no-repeat !important;
}
.wizard .content .ckeckImgInput {
    top: 3px;
    left: 92%;
    width: 40px;
    height: 40px;
    background:url(../images/valid.jpg) no-repeat;
}
.wizard .content .imgHaut {
    width:60px;
    height:60px;
    background:url(../images/text_haut.png) no-repeat;
}
.wizard .content .imgBas {
    width:60px;
    height:60px;
    float:right;
    background:url(../images/text_bas.png) no-repeat;
}
.wizard .content .ruleStep1 {
    margin-left: 6px;
    position: relative;
}
.wizard .content .inputMdpElement {
    margin-right:25px;
    position:relative;
    height:50px;
}
.wizard .content .memorizeDivMdpDivRoot {
    border:8px solid #D1CCB9;
    padding-left:20px;
    padding-bottom:10px;
}
.wizard .content .memorizeDivMdpDivRetenir {
    color:#555555;
    font-weight:bold;
    margin-bottom:10px;
    text-align:left;
    margin-top:20px; 
}
.wizard .content .listMotTransformer {
  margin-top: 16px;
  padding-left: 20px;
  margin-bottom: -5px;
}
/* Force le style "Drupal" ... */
.wizard .content .listMotTransformer li:before {
  content: ".";
  font-size: 40px;  
  font-weight: bold;
  vertical-align: top;
}
.wizard .content .listMotTransformer > li {
    padding-top: 10px;
}

.wizard .content .notUsedTransformer {
    padding-left: 20px;
}
/* Force le style "Drupal" ... */
.wizard .content .notUsedTransformer li:before {
  content: ".";
  font-size: 40px;
  font-weight: bold;
  vertical-align: top;
  padding: 0px 5px 0px;
}
.wizard > .content .notUsedTransformer > ul > li {
  padding-top: 10px;
}
.wizard .content .divInfo {
  text-align: center;
  width: 540px;
  margin: 0 auto;
}
.wizard .content div.steps li:before {
    content : "" !important;
}
.wizard > .content input[type="checkbox"]:not(:checked), .wizard > .content input[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.wizard .content .errorruleparent.nextError {
    /* border:8px solid #D1CCB9; */
    padding-left:20px;
/*    padding-bottom:10px;
    margin-bottom:20px !important;*/
}
.wizard .content .listOfWord {
    margin-left:55px;
}
/* Laisse la puce par défaut (également définie dans Drupal...) */
.wizard li.warningrule:before {
    content: ".";
}
/**
 * .wizard > .action
 */
.wizard div.actions li:before {
  content: "" !important;
}

.wizard > .actions {
  position: relative;
  display: block;
  text-align: center;
}
.wizard > .actions > ul {
  display: inline-block;
  text-align: center;
}
.wizard > .actions > ul > li {
  margin: 0px 8px;
}
.wizard > .actions a {
    padding: 8px 15px;
    color: #ffffff;
    border: 1px solid #aaa;
    background: #aaa;
    border-radius: 10px;
    display: block;
   text-decoration:none;
}
.wizard > .actions a.active:hover {

    padding: 8px 15px;
    color: #4596ec;
    border: 1px solid #4596ec;
    background: #ffffff;
    border-radius: 10px;
    display: block;
    cursor:pointer;
}
.wizard > .actions a.active {

    padding: 8px 15px;
    color: #ffffff;
    border: 1px solid #4596ec;
    background: #4596ec;
    border-radius: 10px;
    display: block;
    cursor:pointer;
}
.wizard > .actions > ul > li {
    float:left;
    list-style-type:none;
}

/* Affichage du résultat de la phrase saisie...
 */
.wizard .phraseSaisi {
    font-size: 30px;
    text-align: center;
    vertical-align: middle;
}

/**
 * Affichage spécifique des liens.
 */
.wizard a:hover {
    text-decoration: underline;
}
.wizard a {
    text-decoration: none !important;
}

/* Cacher la case à cocher (spécifique Drupal) */
.wizard > .content input[type="checkbox"]:not(:checked),
.wizard > .content input[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.wizard ul.errorruleUL.nextError {
    border:8px solid #D1CCB9;
    padding-left:20px;
    padding-bottom:10px;
    margin-bottom:20px !important;
}
.wizard .listOfWord {
    margin-left:55px;
}
