/*----------------------------------*\
           CONNECTION MODE
\*----------------------------------*/
#connection-group {
  text-align: center;
}
#connection-group > div {
  display: inline-block;
}
#connection-group > div:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
#mode-connexion {
  margin: auto;
  height: 30px;
  color: #0C9ED9;
  border: 0px;
  background-color: transparent;
  font-weight: bold;
  font-size: 14px;
  outline: 0;
}
#mode-connexion::after {
  content: "\0020\25BE";
}
.dropdown-menu {
  color: #A4A4A4;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: white;
  width: 150px;
  border-radius: 4px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear 0.25s,opacity 0.25s linear;
  -moz-transition: visibility 0s linear 0.25s,opacity 0.25s linear;
  -o-transition: visibility 0s linear 0.25s,opacity 0.25s linear;
  transition: visibility 0s linear 0.25s,opacity 0.25s linear;
  border: 1px solid #E6E6E6;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu li {
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  text-align: left;
  text-indent: 20px;
}
.dropdown-menu li:first-child {
  border-bottom: 1px solid #E6E6E6;
}
.dropdown-menu li:hover {
  background-color: #E6E6E6;
  color: #0C9ED9;
}
.dropdown-menu li a {
  display: block;
  font-weight: bold;
  text-decoration: none;
  outline: 0;
  margin-right: 10px;
  width: 100%;
  height: 100%;
}
.dropdown-menu li a.active::after {
  content: "\0020\2713";
}
/* COMMON
--------------------------------------------------------------------------------------------------------------------------------------*/
/*
Theme Name: --
Theme URI: --
Description: --
Author: JM CHATONNIER
Version: 1.0
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5% !important;
  height: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica;
  font-size: 1.2em;
  letter-spacing: 0px;
  background: url() no-repeat 0 0 transparent;
  background-color: #565657;
  background-color: #fff;
  height: 100%;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}
img {
  border: none;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  padding: 5px;
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: outside none none;
}
i {
  font-style: italic;
}
/*----------------------------------*\
				PAGE
\*----------------------------------*/
main {
  background-color: #f2f4f6;
  text-align: center;
  color: #393c3d;
  min-height: -webkit-calc(100% - 358px);
  min-height: -moz-calc(100% - 358px);
  min-height: calc(100% - 358px);
}
.bg-grey {
  background-color: #f2f4f6;
}
.bg-footer {
  background-color: #565657;
}
.btn {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 20px auto;
  padding: 8px 20px;
  font-size: 1.1em;
  background-color: #fff;
  border: 1px solid #d7d7d7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.btn.blue {
  background-color: #299be2;
  border-color: #299be2;
  color: #fff;
}
#cgu-section-1 {
  text-align: left;
  font-family: 'Open-sans';
}
#cgu-section-1 h2 {
  color: #299be2;
  margin: 50px 0 20px;
}
#cgu-section-1 p,
#cgu-section-1 ul {
  font-size: 1.1em;
}
#cgu-section-1 p {
  padding: 0 0 10px;
}
#cgu-section-1 ul {
  padding-left: 15px;
}
#cgu-section-1 ul li {
  margin-bottom: 5px;
}
/*----------------------------------*\
            	modal
\*----------------------------------*/
#modal-fade {
  display: none;
  /*--masqué par défaut--*/
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  z-index: 9999;
}
.modal-box {
  display: none;
  background: #fff;
  float: left;
  font-size: 1.2em;
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 800px;
  z-index: 99999;
  -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.modal-box.show {
  top: 50%;
}
.modal-header {
  border-bottom: 1px solid #c4c4c4;
  min-height: 20px;
  padding: 5px 30px;
}
.modal-header h2 {
  margin: 10px 0 !important;
  text-align: center;
}
.modal-content {
  padding: 20px 25px 50px;
  max-height: 80vh;
  font-size: 0.8em;
}
.modal-content h2 {
  margin: 20px 0 !important;
}
.modal-footer {
  border-top: 1px solid #c4c4c4;
  min-height: 20px;
  padding: 15px 30px;
  position: relative;
  text-align: center;
}
.modal-footer .btn {
  display: inline-block;
  background-color: #299be2;
  border: 1px solid #299be2;
  color: #fff;
  line-height: 38px;
  height: 40px;
}
.modal-footer .btn[disabled] {
  background-color: #fff;
  border-color: #d8d8d8;
  color: #b8b8b8;
}
.close-modal {
  position: absolute;
  top: 0;
  right: 0;
  color: #c4c4c4;
  text-align: right;
  display: block;
}
.modal-box .close-modal:hover {
  color: #000;
}
#cgu-section-1 .close-modal {
  display: none;
}
#cgu-section-1.modal-box {
  position: absolute;
  height: 90%;
}
#cgu-section-1 .modal-header {
  height: 8%;
  padding: 5px 0;
  display: table;
  width: 100%;
}
#cgu-section-1 .modal-header h2 {
  margin: 0 !important;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
#cgu-section-1 .modal-content {
  padding: 0 25px 50px;
  max-height: 84%;
  overflow-y: scroll;
}
#cgu-section-1 .modal-footer {
  height: 8%;
}
/*----------------------------------*\
				HEADER
\*----------------------------------*/
#header {
  background: url('../img/bg-header.jpg') no-repeat center top #fff;
  background-size: cover;
  min-height: 299px;
  position: relative;
}
#header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0px 26px 20px 26px;
  border-color: transparent transparent  #fff transparent;
}
#header.header-bluepass {
  background-image: url('../img/bg-header-bluepass.jpg');
}
#header.bg-grey::after {
  border-color: transparent transparent  #f2f4f6 transparent;
}
#logo {
  padding-top: 50px;
}
#logo img {
  display: block;
  margin: 0 auto;
}
/*----------------------------------*\
				CONTENT
\*----------------------------------*/
h1 {
  margin: 0 0 5px;
  color: #299be2;
  font-size: 1.4em;
}
h1 .email-w-ico {
  color: #363636;
}
.login-page {
  color: #595a5b;
}
#content {
  padding: 20px 0px 50px;
}
#content .model_01 {
  margin: 10px auto;
  width: 100%;
  max-width: 523px;
  text-align: left;
  position: relative;
}
#content .model_01 .encart {
  width: 250px;
  height: 120px;
  padding: 16px 30px 16px 20px;
  background-color: #299be2;
  color: #fff;
  position: absolute;
  top: 62%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#content .model_01 .encart p {
  padding: 0;
  line-height: 22px;
  font-weight: bold;
}
#content .model_01 .encart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  border-style: solid;
  border-width: 60px 15px 60px 0;
  border-color: transparent #299be2 transparent transparent;
}
#content .model_01 .encart.dark {
  background-color: #2e2e2e;
}
#content .model_01 .encart.dark::before {
  border-color: transparent #2e2e2e transparent transparent;
}
#content .model_01 img {
  display: block;
  margin: 0;
  width: 100%;
  /* max-width: 308px; */
  max-width: 60%;
  padding: 0 10px 0 0;
}
#content p {
  font-size: 1.2em;
}
#content .email-w-ico {
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding-left: 33px;
}
#content .email-w-ico::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 28px;
  height: 28px;
  background: url('../img/ico-logo.png') no-repeat center center transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.headband-blue {
  background-color: #299be2;
  color: #fff;
  padding: 15px 10px;
  position: relative;
  margin-top: 40px;
}
.headband-blue.confirm-email {
  padding: 45px 10px 15px;
}
.headband-blue.confirm-email::before {
  position: absolute;
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 33px;
  height: 24px;
  background: url('../img/ico-letter.png') no-repeat center center transparent;
}
.ligne {
  position: relative;
  margin-bottom: 10px;
}
.ligne:last-child {
  margin-bottom: 0;
}
form {
  max-width: 450px;
  margin: 20px auto 10px;
}
form .ligne {
  position: relative;
  margin-bottom: 5px;
}
form .ligne:last-child {
  margin-bottom: 0;
}
form .ligne .input {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
  font-size: 1.1em;
}
form .ligne .input input {
  display: block;
  width: 100%;
  line-height: 30px;
  border: 1px solid #dcdcdc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  padding: 0 35px;
  font-size: 1.1em;
  height: 30px;
}
form .ligne .input input::-ms-clear,
form .ligne .input input::-ms-reveal {
  display: none;
}
form .ligne .input .toggle-mdp {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 27px;
  height: 20px;
  background: url('../img/mdp-hidden.png') no-repeat center center transparent;
  cursor: pointer;
}
form .ligne .input .toggle-mdp.show {
  background-image: url('../img/mdp-show.png');
}
form .ligne .input_error {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  font-size: 0.8em !important;
  color: #f26c4f;
  text-align: left;
}
form .ligne .force-mdp,
form .ligne .confirm-mdp {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
form .ligne .submit {
  margin: 30px 0 20px;
}
form .ligne .loader {
  color: #299be2;
  text-align: center;
}
form .ligne .loader img {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  margin-bottom: 10px;
  display: block;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 4000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 4000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 4000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
form .ligne button {
  display: block;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  line-height: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  padding: 0 35px;
  font-size: 1.1em;
  background-color: #299be2;
  color: #fff;
  border: 1px solid #299be2;
  text-transform: uppercase;
}
form .ligne button:disabled {
  background-color: gray;
  border-color: lightgray;
}
form .ligne .forgot-pswd a {
  display: block;
  font-size: 1.1em;
  color: #299be2;
  text-align: center;
  text-decoration: underline;
}
form .ligne.error input {
  border-color: #f26c4f;
}
.layus {
  max-width: 750px;
  margin: 25px auto 10px;
  color: #299be2;
  font-style: italic;
}
.color-area {
  width: 60px;
  height: 10px;
  background-color: #fff;
}
.color-area .color {
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0%;
}
.color-area [data-level="faible"] {
  width: 33%;
  background: #f26c4f;
}
.color-area [data-level="moyen"] {
  width: 66%;
  background: #f2944f;
}
.color-area [data-level="fort"] {
  width: 100%;
  background: #accc3d;
}
.confirm-mdp {
  right: 40px !important;
}
.confirm-mdp .img {
  width: 27px;
  height: 21px;
  background: url('') no-repeat center center transparent;
}
.confirm-mdp [data-etat="yes"] {
  background: url('../img/confirm-mdp-ok.png') no-repeat center center transparent;
}
.confirm-mdp [data-etat="no"] {
  background: url('../img/confirm-mdp-no.png') no-repeat center center transparent;
}
.list-level {
  max-width: 580px;
  margin: 15px auto 10px;
}
.list-level:before,
.list-level:after {
  content: " ";
  display: table;
}
.list-level:after {
  clear: both;
}
.list-level li {
  float: left;
  width: 33.33%;
  padding: 0 6px;
  font-weight: bold;
  font-size: 1.2em;
}
.list-level li .bar {
  width: 100%;
  height: 10px;
  margin: 0 auto;
}
.list-level li .info {
  color: #595a5b;
  font-weight: 400;
  font-size: 0.8em !important;
}
.list-level li.faible {
  color: #f26c4f;
}
.list-level li.faible .bar {
  background-color: #f26c4f;
}
.list-level li.moyen {
  color: #f2944f;
}
.list-level li.moyen .bar {
  background-color: #f2944f;
}
.list-level li.fort {
  color: #accc3d;
}
.list-level li.fort .bar {
  background-color: #accc3d;
}
.list-check {
  margin: 5px auto;
  text-align: left;
  max-width: 580px;
  width: 100%;
}
.list-check li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;
  font-size: 1.2em;
}
.list-check li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 10px;
  background: url('../img/ico-check.png') no-repeat center center transparent;
}
/*----------------------------------*\
				FOOTER
\*----------------------------------*/
#footer {
  position: relative;
  bottom: 0;
  left: 0;
  background: #565657;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  font-size: 1.1em;
}
#footer p {
  color: #fff;
  vertical-align: middle;
}
#footer p a {
  text-decoration: underline;
}
#footer .ico {
  background: url('../img/ico-exclamation.png') no-repeat center center transparent;
  display: inline-block;
  width: 19px;
  height: 19px;
  vertical-align: middle;
}
#footer .moreInfo a {
  vertical-align: middle;
  text-decoration: underline;
  margin-left: 3px;
}
/*----------RESPONSIVE CSS-----------*/
@media (max-width: 1024px) {
  .modal-header h2 {
    font-size: 1.1em;
  }
  .modal-footer {
    padding: 5px 30px;
  }
  #cgu-section-1 h2 {
    font-size: 1.1em;
  }
}
@media (max-width: 480px) {
  .modal-header h2 {
    font-size: 1em;
  }
  #cgu-section-1.modal-box {
    height: 100%;
    width: 100% !important;
  }
  #cgu-section-1 .modal-content {
    padding: 0 10px 50px;
  }
  #cgu-section-1 .modal-content h2 {
    margin: 10px 0 !important;
  }
  #cgu-section-1 .modal-footer {
    padding: 5px 30px;
  }
  #cgu-section-1 .modal-footer .btn {
    line-height: 28px;
    height: 30px;
  }
  #content {
    padding: 20px 15px;
  }
  #content .model_01 .encart {
    width: 190px;
    height: 90px;
    padding: 12px 20px 12px 12px;
  }
  #content .model_01 .encart p {
    line-height: 15px;
    font-size: 1.1em;
  }
  #content .model_01 .encart::before {
    border-width: 45px 15px 45px 0;
  }
  .layus {
    margin: 40px auto 10px;
  }
  .list-level {
    max-width: 550px;
    margin: 30px auto 10px;
  }
  .list-level:before,
  .list-level:after {
    content: " ";
    display: table;
  }
  .list-level:after {
    clear: both;
  }
  .list-level li {
    float: none;
    width: 100%;
    padding: 0 6px 10px;
  }
  form .ligne .force-mdp,
  form .ligne .confirm-mdp {
    position: absolute;
    top: 36px;
    right: 2px;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
  .confirm-mdp {
    right: 2px !important;
  }
  .forgot-mdp {
    margin-top: 33px;
    display: block;
  }
  #footer {
    position: inherit;
    bottom: 0;
    left: 0;
    background: #565657;
    width: 100%;
    padding: 15px 0;
  }
}
@media (max-width: 400px) {
  #content .model_01 {
    margin: 10px auto 40px;
  }
  #content .model_01 .encart {
    width: 100%;
    height: auto;
    padding: 12px 12px 12px 12px;
    top: 80%;
    right: 0;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  #content .model_01 .encart::before {
    display: none;
  }
  #content .model_01 p {
    text-align: justify;
  }
  #content .model_01 img {
    max-width: 100%;
  }
}
/*----------------------------------*\
               OTHER
\*----------------------------------*/
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
