/*******************************************************************************/
/* --- GENERALITE DU SITE --- */
/*************************************/
/* --- Error Layout Page --- */
.errorTitre {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 60px;
  font-weight: 500; }

/*******************************************************************************/
/*               --- INCLUSION DES ELEMENTS DE STYLE DU SITE ---               */
/*******************************************************************************/
/* --- INCLUSION PAGES --- */
/* --- INCLUSION ELEMENTS --- */
#infoBox {
  position: fixed;
  top: 10px;
  right: 30px;
  width: 450px;
  z-index: 2000; }

section.loader {
  display: inline-block;
  margin-left: 20px; }
  section.loader .double-blank {
    position: relative;
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    border: solid 5px transparent;
    border-top-color: #fff;
    border-bottom-color: #fff;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -moz-animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }
    section.loader .double-blank::after {
      content: '';
      position: absolute;
      top: 3px;
      right: 3px;
      bottom: 3px;
      left: 3px;
      border: solid 4px transparent;
      border-top-color: #fff;
      border-bottom-color: #fff;
      opacity: 0.6;
      -moz-border-radius: 35px;
      -webkit-border-radius: 35px;
      border-radius: 35px;
      -moz-animation: spin-reverse 2s linear infinite;
      -webkit-animation: spin-reverse 2s linear infinite;
      animation: spin-reverse 2s linear infinite; }
  section.loader .double-blue {
    position: relative;
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    border: solid 5px transparent;
    border-top-color: #137aab;
    border-bottom-color: #137aab;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -moz-animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }
    section.loader .double-blue::after {
      content: '';
      position: absolute;
      top: 3px;
      right: 3px;
      bottom: 3px;
      left: 3px;
      border: solid 4px transparent;
      border-top-color: #ff6600;
      border-bottom-color: #ff6600;
      opacity: 0.6;
      -moz-border-radius: 35px;
      -webkit-border-radius: 35px;
      border-radius: 35px;
      -moz-animation: spin-reverse 2s linear infinite;
      -webkit-animation: spin-reverse 2s linear infinite;
      animation: spin-reverse 2s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-360deg); } }
@keyframes spin-reverse {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }
.alert-center {
  text-align: center; }

#coche_modal {
  display: none; }

#modal_wait {
  text-align: center;
  display: none; }

#modal_message {
  text-align: center;
  display: none; }

#modal_error {
  text-align: center;
  display: none;
  color: red; }

.modal-footer {
  display: none; }

#ko_modal {
  display: none; }

#ok_modal {
  display: none; }

/* --- INCLUSION MODULES --- */
/*!
 * jQuery Cookie Plugin v1.2
 *
 * Copyright 2014 Florian TEISSIER - Teicorp - <projet@teicorp.eu>
 * Released under the MIT license
 */
.cookie {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7px 20px;
  color: #666;
  font-size: 0.9em;
  border-top: solid 1px #e4e4e4;
  background-color: #f2f2f2; }
  .cookie a {
    text-decoration: underline; }
  .cookie a:hover {
    text-decoration: none; }
  .cookie .cookie_btn {
    display: inline;
    margin-left: 15px;
    padding: 4px 10px;
    color: #fff;
    cursor: pointer;
    background-color: #55acee;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    .cookie .cookie_btn.cookie_btn_error {
      background-color: #e84e40; }

label.checkswitch {
  position: relative;
  width: 70px;
  height: 20px;
  overflow: hidden;
  margin: 0;
  text-align: left; }
  label.checkswitch input {
    display: none; }
  label.checkswitch .state {
    position: absolute;
    top: 0;
    left: 0px;
    height: 18px;
    line-height: 18px;
    background: #fff;
    font-size: 12px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    label.checkswitch .state.off {
      color: #d9534f;
      z-index: 2;
      padding-left: 32px;
      width: 68px; }
    label.checkswitch .state.on {
      color: #5cb85c;
      z-index: 1;
      padding-left: 15px;
      width: 10px; }
  label.checkswitch .btn_switch {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border: solid 1px #ddd;
    z-index: 3;
    background-color: #d9534f;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  label.checkswitch input:checked + .off {
    z-index: 1;
    width: 10px; }
  label.checkswitch input:checked + .off + .on {
    z-index: 2;
    width: 68px; }
  label.checkswitch input:checked + .off + .on + .btn_switch {
    left: 42px;
    background-color: #5cb85c; }

/* --- INCLUSION POUR LES PAGES --- */
