@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url('/assets/fonts/Roboto_400.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url('/assets/fonts/Roboto_500.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url('/assets/fonts/Roboto_700.woff') format('woff');
}
/*
 * Définition des taille d'écran
 * A utiliser dans les query (Attention d'utiliser le bonne valeur)
 * Par exemple:
 * - Pour les tailles d'écrans jusqu'à md:
 *    @media screen and (max-width: @screen-sm-max) {
 * - Pour les tailles d'écrans à partir de md:
 *    @media screen and (min-width: @screen-md-min) {
 */
/* Extra small / phone */
/* Small screen / tablet */
/* Medium screen / laptop */
/* Large screen / desktop */
/* Définition des "min" */
/* Définition des "max" */
html {
  font-size: 16px;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Roboto, sans-serif;
}
input,
button,
select,
textarea {
  font-family: Roboto, sans-serif;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
/* CONTAINER */
.container {
  margin: 0 auto;
  max-width: 928px;
  width: 100%;
}
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 2;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
  z-index: -1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.45);
}
.waves-circle {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none;
}
.edition-form {
  margin-left: 30px;
  margin-top: 10px;
}
.icon-and-text {
  display: inline;
  vertical-align: middle;
}
/* BUTTONS */
.btn,
.btn-large,
.btn-flat {
  position: relative;
  border: none;
  border-radius: 2px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  font-weight: 500;
  padding: 0 1rem;
  margin: 0 .5rem;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  font-size: 0.875rem;
  text-shadow: none;
}
a.btn,
a.btn-flat,
a.btn:hover,
a.btn-flat:hover,
a.btn:focus,
a.btn-flat:focus {
  text-decoration: none;
}
.btn-flat:hover {
  background: rgba(0, 0, 0, 0.04);
}
.btn:last-child,
.btn-flat:last-child {
  margin-right: 0;
}
.btn:first-child,
.btn-flat:first-child {
  margin-left: 0;
}
.btn-stroke {
  border: 1px solid;
}
.btn.light,
.btn-large.light,
.btn-flat.light {
  color: #FFF;
}
.btn.light.primary-text,
.btn-large.light.primary-text,
.btn-flat.light.primary-text {
  color: #417cff;
}
.btn.light:hover,
.btn-large.light:hover,
.btn-flat.light:hover,
.btn.light:focus,
.btn-large.light:focus,
.btn-flat.light:focus {
  background: rgba(255, 255, 255, 0.12);
}
.btn-flat.primary-text:hover {
  color: #417cff;
}
.btn.disabled,
.disabled.btn-large,
.btn-floating.disabled,
.btn-large.disabled,
.btn-flat.disabled,
.btn:disabled,
.btn-large:disabled,
.btn-floating:disabled,
.btn-large:disabled,
.btn-flat:disabled,
.btn[disabled],
[disabled].btn-large,
.btn-floating[disabled],
.btn-large[disabled],
.btn-flat[disabled] {
  pointer-events: none;
  background-color: #DFDFDF !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #9F9F9F !important;
  cursor: default;
}
.btn.disabled:hover,
.disabled.btn-large:hover,
.btn-floating.disabled:hover,
.btn-large.disabled:hover,
.btn-flat.disabled:hover,
.btn:disabled:hover,
.btn-large:disabled:hover,
.btn-floating:disabled:hover,
.btn-large:disabled:hover,
.btn-flat:disabled:hover,
.btn[disabled]:hover,
[disabled].btn-large:hover,
.btn-floating[disabled]:hover,
.btn-large[disabled]:hover,
.btn-flat[disabled]:hover {
  background-color: #DFDFDF !important;
  color: #9F9F9F !important;
}
.btn,
.btn-large,
.btn-floating,
.btn-large,
.btn-flat {
  outline: 0;
}
.btn i,
.btn-large i,
.btn-floating i,
.btn-large i,
.btn-flat i {
  /*font-size: 1.3rem;*/
  line-height: inherit;
}
.btn,
.btn-large,
.btn-floating {
  text-decoration: none;
  color: #fff;
  background-color: #417cff;
  text-align: center;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
  font-size: 0.875em;
}
.btn:hover,
.btn-large:hover {
  background-color: #417cff;
  color: #FFF;
}
.btn:focus,
.btn-large:focus,
.btn-floating:focus {
  outline: none;
  background-color: #417cff;
  color: #FFF;
}
.btn:focus:active,
.btn-large:focus:active,
.btn-floating:focus:active {
  outline: none;
  background-color: #417cff;
  color: #FFF;
}
.btn:focus:not(:hover):before,
.btn-large:focus:not(:hover):before,
.btn-floating:focus:not(:hover):before,
.focus-ripple:focus:not(:hover):before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92%;
  padding-top: 92%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: breath 1.8s infinite;
  animation: breath 1.8s infinite;
}
.btn:focus:active:after,
.btn-large:focus:active:after,
.btn-floating:focus:active:after {
  content: none;
}
.btn:not(.no-shadow):hover,
.btn:not(.no-shadow):focus,
.btn:not(.no-shadow):active {
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-floating {
  display: inline-block;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  background-color: #26a69a;
  border-radius: 50%;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  vertical-align: middle;
}
.btn-floating:hover {
  background-color: #26a69a;
}
.btn-floating:before {
  border-radius: 0;
}
.btn-floating.btn-large {
  width: 56px;
  height: 56px;
}
.btn-floating.btn-large i {
  line-height: 56px;
}
.btn-floating.halfway-fab {
  position: absolute;
  right: 24px;
  bottom: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.btn-floating.halfway-fab.left {
  right: auto;
  left: 24px;
}
.btn-floating i {
  width: inherit;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 40px;
}
button.btn-floating {
  border: none;
}
@-webkit-keyframes breath {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes breath {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
/* SHADOWS */
.z-depth-0 {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.z-depth-1,
nav,
.card-panel,
.card,
.toast,
.btn.raised,
.btn-large.raised,
.btn-floating.raised,
.dropdown-content,
.collapsible,
.side-nav {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.btn:hover,
.btn.raised:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.z-depth-2 {
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12);
}
.z-depth-3 {
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
}
.z-depth-4,
.modal {
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
}
.z-depth-5 {
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
}
/* FIELDS */
.input-container {
  width: 100%;
  display: table;
  padding: 16px 0 8px 0;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input-container .h-spacer {
  padding-left: 16px;
  display: table-cell;
}
.input-container .field-icon {
  display: table-cell;
  vertical-align: top;
  padding-top: 16px;
}
.input-container .field-icon i {
  margin-bottom: 6px;
  margin-right: 8px;
  opacity: .54;
}
.input-container label {
  font-size: 1rem;
  font-weight: 400;
  z-index: 4;
  margin: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  position: absolute;
  top: 18px;
  left: 0px;
  opacity: .38;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.input-container input:focus {
  border-bottom: 1px solid #417cff;
  -webkit-box-shadow: inset 0 -1px 0 0 #417cff;
  box-shadow: inset 0 -1px 0 0 #417cff;
}
.input-container input:focus + label {
  color: #417cff;
  opacity: 1;
}
.input-container label.active {
  -webkit-transform: translateY(-20px) scale(0.75);
  transform: translateY(-20px) scale(0.75);
}
.input-field {
  vertical-align: top;
  display: table-cell;
  position: relative;
  width: 100%;
}
.input-field .btn-floating {
  margin-top: 8px;
}
.input-field > input[type="checkbox"] + label {
  top: 0;
}
.input-helper {
  font-size: 12px;
  opacity: .54;
  line-height: 1;
  padding-top: 8px;
}
.input-helper.error {
  opacity: 1;
  font-weight: 500;
}
.input-container .ui-datepicker-trigger {
  position: absolute;
  top: 16px;
  left: -32px;
  width: 32px;
  height: 32px;
  opacity: 0;
  cursor: pointer;
}
input[disabled] {
  color: rgba(0, 0, 0, 0.42);
}
input[disabled][type="text"] {
  border-bottom-style: dotted;
}
input:not([type="file"]),
textarea {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  border-radius: 0;
  margin-top: 12px;
  font-size: 1em;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: auto;
  margin-bottom: 0;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
  padding: 8px;
}
/*.input-field select {*/
/*.input-field select:not(.ui-datepicker-year):not(.ui-datepicker-month):not(.jsgrid-balise) {*/
select:not(.ui-datepicker-year):not(.ui-datepicker-month):not(.jsgrid-balise) {
  min-width: 100px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  width: 100%;
  -webkit-appearance: none;
  /* supprime la fleche par défaut */
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline-style: none;
  /* supprime la bordure du select */
  -webkit-box-shadow: none;
          box-shadow: none;
  /* supprime l'ombre */
}
.select-field {
  position: relative;
}
.select-field::after {
  content: '';
  position: absolute;
  right: 0;
  /* Avec un <form:error /> sous un select ça pose problème, on positionnera par défaut
     a partir du haut et non plus du bas*/
  top: 32px;
  /*bottom: 10px;
  margin-top: 6px;*/
  border-top: 8px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  opacity: .25;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.select-field select {
  margin-top: 12px;
  margin-right: 5px;
}
select::-ms-expand {
  display: none;
  /* hide the default arrow in ie10 and ie11 */
}
/*
select:not(.ui-datepicker-year):not(.ui-datepicker-month) {
    min-width: 150px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding: 8px 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}


.select-field {
    position: relative;
}
.select-field:before {
    content: '';
    position: absolute;
    right: 0;
    top: 36px;
    z-index: 0;

    border-top: 8px solid @secondary-color;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;

    opacity: .12;
}

.select-field select {
    position: relative;
    margin-top: 12px;
    z-index: 1;
}

select::-ms-expand {
    display: none;
}
*/
.character-counter {
  float: none;
  position: absolute;
  font-size: 0.750rem !important;
  height: auto !important;
  right: 0;
  top: 100%;
}
.field-error {
  font-size: .75rem;
  padding-top: 4px;
  display: block;
}
.password-input input[type="checkbox"] {
  display: none;
}
.password-input .password-show-button {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 3;
  opacity: .5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.password-input .password-show-button:hover {
  opacity: .87;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
/* File Input (copier/coller du fichier officiel materialize.css)
   ========================================================================== */
.file-field {
  position: relative;
  display: initial;
}
.file-field .file-path-wrapper {
  overflow: hidden;
  padding-left: 10px;
}
.file-field input.file-path {
  width: 100%;
}
.file-field .btn,
.file-field .btn-large {
  float: left;
  height: 3rem;
  line-height: 3rem;
}
.file-field span {
  cursor: pointer;
}
.file-field input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
.file-field input[type=file]::-webkit-file-upload-button {
  display: none;
}
.ui-datepicker {
  border-width: 0;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  width: 18.5rem;
}
@media (max-width: 480px) {
  .ui-datepicker {
    width: 17rem;
  }
}
.ui-datepicker.ui-corner-all {
  border-radius: 0;
  padding: 5px;
  border: none;
  width: 350px;
}
.ui-datepicker .ui-datepicker-header {
  background: #417cff;
  padding: 15px 0;
  border-width: 0;
  border-radius: 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  cursor: pointer;
  top: 15px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  background: transparent;
  width: 0px;
  height: 0px;
  border-width: 5px 9px;
  border-style: solid;
  border-color: transparent;
  margin-top: 0;
  top: 32%;
}
.ui-datepicker .ui-datepicker-prev span {
  left: 59%;
  border-right-color: #fff;
  border-left-width: 0;
}
.ui-datepicker .ui-datepicker-next span {
  left: 67%;
  border-left-color: #fff;
  border-right-width: 0;
}
.ui-datepicker .ui-datepicker-title {
  text-shadow: none;
}
.ui-datepicker .ui-datepicker-title select {
  height: 27px;
  width: calc(44%);
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  padding-left: 5px;
  min-width: 0;
  color: #FFF;
  padding-bottom: 0;
  padding-top: 0;
  border-color: #FFF;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}
.ui-datepicker .ui-datepicker-title select option {
  color: #ffffff;
}
.ui-datepicker .ui-datepicker-title select:focus {
  outline: none;
}
.ui-datepicker .ui-datepicker-title select::-ms-expand {
  display: block;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  margin-right: 5px;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  margin-left: 5px;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  background: #fff;
  border: 0px;
  font-weight: 600;
  margin: 10px 5px;
  padding: 5px 12px;
  font-size: 16px;
  text-transform: uppercase;
}
.ui-datepicker .ui-datepicker-buttonpane button[data-handler="today"]:hover,
.ui-datepicker .ui-datepicker-buttonpane button[data-handler="today"]:active {
  opacity: 1;
  color: #4f4f4f;
}
.ui-datepicker .ui-datepicker-buttonpane button[data-handler="hide"]:hover,
.ui-datepicker .ui-datepicker-buttonpane button[data-handler="hide"]:active {
  color: #417cff;
}
.ui-datepicker table {
  margin-top: 0.625rem;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.ui-datepicker th {
  font-weight: 600;
  text-transform: uppercase;
}
.ui-datepicker th.ui-datepicker-week-end * {
  color: #417cff;
}
.ui-datepicker td span,
.ui-datepicker td a,
.ui-datepicker .ui-state-default {
  padding: .6em;
  font-size: 14px;
  text-align: center;
  border: none;
  background-color: #f6f6f6;
}
.ui-datepicker td .ui-state-default.ui-state-hover {
  border-color: transparent;
  text-shadow: none;
  background: #ededed;
  font-weight: normal;
  color: inherit;
}
.ui-datepicker td .ui-state-highlight {
  border-color: transparent;
}
.ui-datepicker td .ui-state-active,
.ui-datepicker td .ui-state-active.ui-state-highlight,
.ui-datepicker td .ui-state-active.ui-state-hover {
  text-shadow: none;
  font-weight: 400;
  background: #417cff;
  border-color: #417cff;
  color: #fff;
}
.ui-datepicker td.ui-datepicker-week-end * {
  color: #949494;
}
.ui-datepicker td.ui-datepicker-week-end .ui-state-active {
  color: #fff;
}
.ui-datepicker .ui-datepicker-today {
  border: solid 1px #dbdbdb;
}
.ui-datepicker .ui-widget-content {
  border-color: #e3e3e3;
}
.ui-datepicker .ui-widget-content [type='button'] {
  font-size: 14px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.datepicker.sample {
  margin-left: 50px;
}
/* provient de l'ancien jquery-ui-timepicker-addon.css */
.ui-timepicker-div {
  padding-top: 5px;
}
.ui-timepicker-div .ui-widget-header {
  margin-bottom: 8px;
}
.ui-timepicker-div dl {
  text-align: left;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: .875rem;
}
.ui-timepicker-div dl dt {
  height: 25px;
  margin-bottom: -25px;
}
.ui-timepicker-div dl dd {
  margin: 0 10px 10px 65px;
}
.ui-timepicker-div td {
  font-size: 90%;
}
.ui-tpicker-grid-label {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
.ui-timepicker-div .ui-slider-handle {
  border: 1px solid #e3e3e3;
}
.tableau-refliste {
  border-collapse: collapse;
  width: 100%;
  background-color: white;
}
.tableau-refliste td,
.tableau-refliste th {
  border: 1px solid;
  height: 2em;
  padding: 0 4px 0 4px;
}
.tableau-refliste input {
  width: 100%;
  border: 1px solid gray;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* background-color: #ffb279;
  border: 0;*/
}
.tableau-refliste .fa.fa-sort {
  width: 100%;
  text-align: center;
  cursor: move;
}
.tableau-liste .fa.fa-sort {
  width: 100%;
  text-align: center;
  cursor: move;
}
.centrer {
  text-align: center;
}
a > .fa,
.fa {
  color: #EE7815;
}
table.disabled {
  background-color: #DFDFDF;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #9F9F9F;
}
table td.colonneFixe {
  max-width: 10vw;
  word-wrap: break-word;
}
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/* Radio Buttons
   ========================================================================== */
.inline-radios label {
  margin-right: 16px;
}
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
[type="radio"] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  font-size: 0.9em;
  -webkit-transition: tranform .28s ease;
  transition: tranform .28s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.85;
  font-weight: 400;
}
[type="radio"] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 3px;
  margin-left: 0;
  width: 20px;
  height: 20px;
  -webkit-transition: .225s ease;
  -webkit-transition: border-color 0.225s ease;
  transition: border-color 0.225s ease;
  border-radius: 50%;
  border: 2px solid #5A5A5A;
}
[type="radio"] + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 3;
  -webkit-transition: -webkit-transform .225s ease;
  transition: -webkit-transform .225s ease;
  transition: transform .225s ease;
  transition: transform .225s ease, -webkit-transform .225s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-color: #417cff;
  -webkit-transform: scale(1);
          transform: scale(1);
}
[type="radio"]:not(:checked) + label:after {
  -webkit-transform: scale(0);
          transform: scale(0);
}
[type="radio"]:checked + label:before {
  border-color: #417cff;
}
[type="radio"].tabbed:focus + label:before {
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}
[type="radio"]:disabled:checked + label:before {
  border: 2px solid rgba(0, 0, 0, 0.26);
}
[type="radio"]:disabled:checked + label:after {
  border: none;
  background-color: rgba(0, 0, 0, 0.26);
}
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.26);
}
[type="radio"]:disabled + label {
  color: rgba(0, 0, 0, 0.26);
}
[type="radio"]:disabled:not(:checked) + label:before {
  border-color: rgba(0, 0, 0, 0.26);
}
[type="radio"]:disabled:checked + label:after {
  background-color: rgba(0, 0, 0, 0.26);
  border-color: #BDBDBD;
}
/* Checkboxes
   ========================================================================== */
/* CUSTOM CSS CHECKBOXES */
form p {
  margin-bottom: 10px;
  text-align: left;
}
form p:last-child {
  margin-bottom: 0;
}
/* Remove default checkbox, sauf pour ceux ayant la class jsgrid-balise */
[type="checkbox"]:not(.jsgrid-balise):not(:checked),
[type="checkbox"]:not(.jsgrid-balise):checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
[type="checkbox"] + label,
[type="checkbox"] + [type="hidden"] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  font-weight: 400;
  margin-bottom: 0;
  opacity: 1;
}
[type="checkbox"] + label:before,
[type="checkbox"] + [type="hidden"] + label:before,
[type="checkbox"] + label:after,
[type="checkbox"] + [type="hidden"] + label:after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  -webkit-transition: border 0.25s, background-color 0.25s;
  transition: border 0.25s, background-color 0.25s;
  z-index: 1;
}
[type="checkbox"] + label:before,
[type="checkbox"] + [type="hidden"] + label:before {
  width: 12px;
  height: 7px;
  left: 3px;
  top: 5px;
  -webkit-box-shadow: -2px 2px 0 transparent;
          box-shadow: -2px 2px 0 transparent;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:checked + [type="hidden"] + label:before {
  -webkit-box-shadow: -2px 2px 0 #FFF;
          box-shadow: -2px 2px 0 #FFF;
}
[type="checkbox"] + label:after,
[type="checkbox"] + [type="hidden"] + label:after {
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0;
  margin: 4px;
  margin-left: 0;
  border-radius: 2px;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:checked + [type="hidden"] + label:after {
  border: 2px solid #417cff;
  background-color: #417cff;
}
[type="checkbox"]:disabled:not(:checked) + label:after,
[type="checkbox"]:disabled:not(:checked) + [type="hidden"] + label:after {
  border-color: #BDBDBD;
  background-color: transparent;
}
[type="checkbox"]:disabled:checked + label:after,
[type="checkbox"]:disabled:checked + [type="hidden"] + label:after {
  background-color: #BDBDBD;
  border-color: #BDBDBD;
}
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'), local('MaterialIcons-Regular'), url('/assets/fonts/material-icons.woff2') format('woff2'), url('/assets/fonts/material-icons.woff') format('woff');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}
.material-icons-bigger {
  font-size: 35px;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
.snackbar {
  width: auto;
  text-align: center;
  /* Centered text */
  padding: 16px;
  /* Padding */
  margin-top: 0.9em;
  margin-bottom: 0.9em;
  cursor: pointer;
}
.vx-stepper-generic {
  height: 68px;
}
.vx-stepper-generic .stepper-bar {
  white-space: nowrap;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  overflow: hidden;
}
.vx-stepper-generic .stepper-bar .stepper-start,
.vx-stepper-generic .stepper-bar .stepper-end {
  width: 10%;
  height: 100%;
  display: inline-block;
  vertical-align: top;
}
.vx-stepper-generic .stepper-bar .stepper-slide {
  white-space: nowrap;
  vertical-align: top;
  height: 100%;
  width: 80%;
  display: inline-block;
}
.vx-stepper-generic .stepper-steps {
  display: table;
  width: 80%;
  margin: 0 auto;
  margin-top: 6px;
}
.vx-stepper-generic .stepper-step {
  display: table-cell;
  position: relative;
  vertical-align: top;
}
.vx-stepper-generic .step-text {
  font-size: 12px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 100px;
  max-width: 150px;
  text-align: center;
}
.vx-stepper-generic .step-text:not(.primary-text) {
  color: rgba(0, 0, 0, 0.54);
}
.vx-stepper-generic .step-number {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 4px;
  font-size: 12px;
  color: #FFF;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  cursor: default;
}
.vx-stepper-generic .step-number:not(.primary) {
  background: rgba(0, 0, 0, 0.18);
}
.vx-stepper-generic .step-number i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.vx-stepper-generic .step-separator {
  margin: 0 8px;
  display: table-cell;
  vertical-align: middle;
  height: 1px;
  position: relative;
}
.vx-stepper-generic .step-separator-done {
  margin: 0 8px;
  display: table-cell;
  vertical-align: middle;
  height: 1px;
  position: relative;
}
.vx-stepper-generic .step-separator:after {
  content: '';
  position: absolute;
  width: 90%;
  left: 5%;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}
.vx-stepper-generic .step-separator-done:after {
  content: '';
  position: absolute;
  width: 90%;
  left: 5%;
  top: 50%;
  height: 3px;
  background: #417cff;
}
.vx-stepper-generic.steps2 .step-separator {
  width: 100%;
}
.vx-stepper-generic.steps2 .step-separator-done {
  width: 100%;
}
.vx-stepper-generic.steps3 .step-separator {
  width: 50%;
}
.vx-stepper-generic.steps3 .step-separator-done {
  width: 50%;
}
.vx-stepper-generic.steps4 .step-separator {
  width: 30%;
}
.vx-stepper-generic.steps4 .step-separator-done {
  width: 30%;
}
.vx-stepper-generic.steps5 .step-separator {
  width: 25%;
}
.vx-stepper-generic.steps5 .step-separator-done {
  width: 25%;
}
.vx-stepper-generic.steps6 .step-separator {
  width: 20%;
}
.vx-stepper-generic.steps6 .step-separator-done {
  width: 20%;
}
.vx-stepper-generic + .vx-content-container {
  padding-top: 32px;
}
.btn-content-container {
  display: table;
  overflow: hidden;
}
.btn-content-container .icons {
  display: table-cell;
  vertical-align: middle;
  padding-right: 1rem;
  position: relative;
}
.btn-content-container .btn-content {
  display: table-cell;
  vertical-align: middle;
  line-height: normal;
  text-align: left;
}
.btn-content-container .big-text {
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}
.btn-content-container .small-text {
  font-weight: normal;
  font-size: 12px;
  white-space: nowrap;
}
.btn-content-container .icons .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.btn-content-container .icons i {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-transition: opacity .225s, -webkit-transform .225s;
  transition: opacity .225s, -webkit-transform .225s;
  transition: transform .225s, opacity .225s;
  transition: transform .225s, opacity .225s, -webkit-transform .225s;
}
.btn-content-container .icons i:not(.hover) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.icons-btn:hover .hover {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.icons-btn:hover .icons i:not(.hover) {
  opacity: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
/* SPECIFIC STYLES */
.dl-btn {
  text-transform: none;
  height: auto;
  padding: 6px 1rem;
  -webkit-transition: -webkit-transform .225s;
  transition: -webkit-transform .225s;
  transition: transform .225s;
  transition: transform .225s, -webkit-transform .225s;
}
.dl-btn:not(.no-shadow) {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.dl-btn:not(.no-shadow):hover,
.dl-btn:not(.no-shadow):active {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.dl-btn .icons i {
  vertical-align: top;
}
.btn-2-line {
  padding: 0 8px;
}
.btn-2-line .big-text {
  font-size: 0.688rem;
  opacity: .76;
}
.btn-2-line .small-text {
  font-size: 0.625rem;
  opacity: .54;
}
.btn-2-line:not(.primary-text) .icons {
  opacity: .4;
}
.icon-btn {
  display: table;
}
.button-text,
.button-icon {
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
}
.button-icon {
  padding-right: 8px;
}
.icon-btn.icon-right .button-icon {
  padding-right: 0;
  padding-left: 8px;
}
.button-icon i {
  display: inline-block;
  vertical-align: top;
}
.btn-animate:not(.no-shadow) {
  -webkit-transition: -webkit-transform .225s;
  transition: -webkit-transform .225s;
  transition: transform .225s;
  transition: transform .225s, -webkit-transform .225s;
}
.btn-animate:not(.no-shadow):hover,
.btn-animate:not(.no-shadow):focus,
.btn-animate:not(.no-shadow):active {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-animate .button-icon {
  -webkit-transition: -webkit-transform .225s;
  transition: -webkit-transform .225s;
  transition: transform .225s;
  transition: transform .225s, -webkit-transform .225s;
}
.btn-animate.animate-right:hover .button-icon,
.btn-animate.animate-right:focus .button-icon,
.btn-animate.animate-right:active .button-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.btn-animate.animate-left:hover .button-icon,
.btn-animate.animate-left:focus .button-icon,
.btn-animate.animate-left:active .button-icon {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}
.vx-list label {
  margin-bottom: 0;
}
.vx-list:not(.checkbox-list):not(.radio-list) .list-item {
  padding: 0.5em 0;
}
.vx-list:not(.checkbox-list):not(.radio-list).dense .list-item {
  padding: .5rem 0;
}
.vx-list.with-sep .list-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
/* RADIO + CHECKBOX LIST */
.vx-list.radio-list label,
.vx-list.checkbox-list label {
  width: 100%;
  height: auto;
  padding: 1rem 0 1rem 35px;
}
.vx-list.radio-list.dense label,
.vx-list.checkbox-list.dense label {
  width: 100%;
  height: auto;
  padding: .2rem 0 .2rem 35px;
}
.vx-list.radio-list label.smaller,
.vx-list.checkbox-list label.smaller {
  font-size: .875rem;
  line-height: 1.2rem;
}
.vx-list.radio-list label:after {
  margin: 0;
  top: 50%;
  margin-top: -5px;
}
.vx-list.radio-list label:before {
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.vx-list.checkbox-list label:after {
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.vx-list.checkbox-list label:before {
  top: 50%;
  margin-top: -8px;
}
/* LABEL LIST */
.vx-list.label-list {
  width: 100%;
}
.vx-list.label-list .list-item-label {
  font-weight: 500;
  opacity: .54;
  white-space: nowrap;
}
.vx-list.label-list .list-item-label,
.vx-list.label-list .list-item-text {
  padding: 1rem 0;
  width: 50%;
}
.vx-list.label-list.dense .list-item-label,
.vx-list.label-list.dense .list-item-text {
  padding: .5rem 0;
}
/* ICON LIST */
.vx-list .list-item {
  display: table;
  width: 100%;
}
.vx-list .list-item .list-item-icon {
  display: table-cell;
  vertical-align: middle;
  padding-right: .5rem;
  opacity: .54;
  min-width: 32px;
}
.vx-list .list-item .list-item-icon.primary-text {
  opacity: 1;
}
.vx-list .list-item .list-item-text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  font-weight: bolder;
}
.vx-list .list-item-buttons {
  display: table-cell;
  vertical-align: middle;
}
.vx-list .list-item-buttons .button-container {
  padding: 0;
  white-space: nowrap;
}
/* MULTI ELEMENTS LIST */
.vx-list .list-item-element {
  vertical-align: middle;
  display: table-cell;
  white-space: nowrap;
}
.vx-list .list-item-element:not(:first-child) {
  padding-left: 2rem;
}
.vx-list .list-item-element.main-element {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .vx-list.multi-column .list-item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .vx-list.multi-column .list-item .list-item-element,
  .vx-list.multi-column .list-item .list-item-buttons {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .vx-list.multi-column .list-item .list-item-element {
    padding: 1rem .5rem;
  }
  .vx-list.multi-column .list-item .list-item-element.main-element {
    width: auto;
  }
}
/* ELECTION SPECIFIC */
.vx-list.election-list {
  display: block;
}
.vx-list.election-list img {
  margin-right: 0.5rem;
}
.vx-list.election-list .line-wrapper {
  display: table;
}
.vx-list.election-list .election-list-candidates {
  width: 80%;
  margin: 1rem auto 1rem auto;
}
.vx-list.election-list .vx-list .list-item {
  border-bottom: none;
}
.vx-list.election-list .vx-list.icon-list .list-item {
  padding: .25rem 0;
}
.vx-list.election-list i.list-item-icon:first-child {
  -webkit-transition: -webkit-transform .225s;
  transition: -webkit-transform .225s;
  transition: transform .225s;
  transition: transform .225s, -webkit-transform .225s;
}
.vx-list.election-list .ouvert i.list-item-icon:first-child {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.vx-list.election-list .nom-liste {
  display: table;
}
.vx-list.election-list .nom-liste > div {
  display: table-cell;
  vertical-align: middle;
}
/* form "boostrap style" */
div.form-row {
  width: 80%;
  margin-left: 10%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 2px;
}
div.form-row * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.form-row::after {
  clear: both;
  content: ' ';
  display: block;
}
div.control-group,
div.control {
  display: inline-block;
}
div.form-row label {
  display: inline-block;
  text-align: right;
  float: left;
  margin-top: 5px;
  padding-right: 15px;
}
div.form-row > label {
  width: 20%;
}
div.form-row-inline div.control-group label {
  padding-right: 5px;
  margin-left: 15px;
  min-width: 75px;
}
label.required::after {
  color: #e32;
  content: ' *';
  display: inline;
  font-weight: bold;
}
div.form-row > .control {
  float: left;
  width: 80%;
  display: inline-block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
div.form-row input[type=submit],
div.form-row input.right[type=button] {
  float: right;
  margin-left: 15px;
  width: auto;
}
div.form-row input[type=button] {
  float: left;
  width: auto;
}
div.form-row textarea {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-radius: 4px;
  padding: 2px 10px 2px 10px;
  border: 1px solid #aaa;
}
div.form-row select {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-radius: 4px;
  padding: 2px 10px 2px 10px;
  border: 1px solid #aaa;
  margin-top: 5px;
}
div.form-row input {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-radius: 4px;
  padding: 2px 10px 2px 10px;
}
div.form-row .control input[type=text],
div.form-row .control select,
div.form-row .control textarea {
  width: 100%;
}
div.form-row div.form-row-inline .control input[type=text],
div.form-row div.form-row-inline .control select,
div.form-row div.form-row-inline .control textarea,
div.form-row div.form-row-inline .control .custom-combobox {
  width: auto;
}
div.form-row input[type=checkbox] {
  vertical-align: text-bottom;
}
.line-checkbox {
  margin-top: 0px;
}
.label-checkbox {
  margin-right: 10px;
}
.global-error {
  color: #e32;
}
.global-error {
  text-align: center;
}
.text-error-ajax,
.global-error-ajax {
  color: #e32;
}
.global-error-ajax {
  text-align: center;
}
.global-message {
  text-align: center;
  color: green;
}
.global-message-important {
  text-align: center;
  font-size: 16px;
  color: red;
}
div.form-row input.has-error,
div.form-row select.has-error,
div.form-row textarea.has-error {
  border-color: #e32;
  outline: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #417cff;
  font-weight: normal;
  color: #ffffff;
}
/* ----------------------  DEFAULT TOOLTIPS BOOTSTRAP VOXALY   ------------------  */
/* Surcharge du style bootstrap par default des couleurs / taille etc... de #message_avant_vote   */
/* En bonus, couleur paramétrées dans css.jsp */
/* Tooltip */
.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.tooltip > .tooltip-inner {
  background-color: #e7e9ee;
  font-weight: bold;
  color: #ee7815;
  border: 2px solid #ee7815;
  padding: 10px;
  text-align: center;
}
/* Tooltip on top */
.tooltip.top > .tooltip-arrow {
  border-top: 5px solid #ee7815;
}
/* Tooltip on bottom */
.tooltip.bottom > .tooltip-arrow {
  border-bottom: 5px solid #ee7815;
}
/* Tooltip on left */
.tooltip.left > .tooltip-arrow {
  border-left: 5px solid #ee7815;
}
/* Tooltip on right */
.tooltip.right > .tooltip-arrow {
  border-right: 5px solid #ee7815;
}
/* ----------------- dialog ------------------- */
.ui-widget {
  font-family: "Arial";
}
.ui-dialog .ui-dialog-titlebar {
  background: #417cff;
  color: white;
}
/* Switch
   ========================================================================== */
.switch,
.switch * {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switch label {
  cursor: pointer;
  opacity: 1;
}
.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch label input[type=checkbox]:checked + .lever {
  background-color: rgba(65, 124, 255, 0.5);
}
.switch label input[type=checkbox]:checked + .lever:before,
.switch label input[type=checkbox]:checked + .lever:after {
  left: 18px;
}
.switch label input[type=checkbox]:checked + .lever:after {
  background-color: #417cff;
}
.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 36px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.38);
  border-radius: 15px;
  margin-right: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  vertical-align: middle;
}
.switch label .lever:before,
.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0;
  top: -3px;
  -webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
}
.switch label .lever:before {
  background-color: rgba(38, 166, 154, 0.15);
}
.switch label .lever:after {
  background-color: #F1F1F1;
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before,
input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
  background-color: rgba(38, 166, 154, 0.15);
}
input[type=checkbox]:not(:disabled) ~ .lever:active:before,
input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
  background-color: rgba(0, 0, 0, 0.08);
}
.switch input[type=checkbox][disabled] + .lever {
  cursor: default;
  background-color: rgba(0, 0, 0, 0.12);
}
.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: #949494;
}
/* Pour les blocs d'information, utiliser plutôt "alert-block" pour éviter de rajouter l'icône */
.alert-block {
  position: relative;
  width: 100%;
  padding: 15px;
  margin: .5rem 0 1rem 0;
  border-radius: 4px;
  font-weight: 500;
  color: #ffffff;
  background-color: #4c91cc;
  font-size: 1.05em;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.alert-block > * {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}
.alert-block::before {
  content: '\E88F';
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  text-transform: none;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}
.alert-block.warning,
.alert-block.error,
.alert-block.success {
  color: #ffffff;
}
.alert-block.no-icon::before {
  display: none;
}
.alert-block.success {
  background-color: #24ae60;
}
.alert-block.success::before {
  content: '\E876';
}
.alert-block.warning {
  background-color: #e6792f;
}
.alert-block.warning::before {
  content: '\E002';
}
.alert-block.error {
  background-color: #d9534f;
}
.alert-block.error::before {
  content: '\E000';
}
.alert-block.refresh::before {
  content: '\E5D5';
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
.progressbar {
  width: 100%;
  height: 40px;
}
.ui-progressbar .ui-progressbar-value {
  background-color: #417cff;
}
.progressVox {
  height: 1.5em;
  width: 250px;
  background-color: #c9c9c9;
  position: relative;
  border-radius: 2px;
  display: inline-block;
  color: white;
}
.progressVox:before {
  content: attr(data-label);
  font-size: 0.8em;
  position: absolute;
  text-align: center;
  top: 5px;
  left: 0;
  right: 0;
}
.progressVox .value {
  background-color: #417cff;
  display: inline-block;
  height: 100%;
  border-radius: 2px;
}
/****************************************************************
 *
 * CSS Percentage Circle
 * Author: Andre Firchow
 *
*****************************************************************/
.percent-circle {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: 136px;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 6px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 0 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.percent-circle .bar,
.percent-circle.p51 .fill,
.percent-circle.p52 .fill,
.percent-circle.p53 .fill,
.percent-circle.p54 .fill,
.percent-circle.p55 .fill,
.percent-circle.p56 .fill,
.percent-circle.p57 .fill,
.percent-circle.p58 .fill,
.percent-circle.p59 .fill,
.percent-circle.p60 .fill,
.percent-circle.p61 .fill,
.percent-circle.p62 .fill,
.percent-circle.p63 .fill,
.percent-circle.p64 .fill,
.percent-circle.p65 .fill,
.percent-circle.p66 .fill,
.percent-circle.p67 .fill,
.percent-circle.p68 .fill,
.percent-circle.p69 .fill,
.percent-circle.p70 .fill,
.percent-circle.p71 .fill,
.percent-circle.p72 .fill,
.percent-circle.p73 .fill,
.percent-circle.p74 .fill,
.percent-circle.p75 .fill,
.percent-circle.p76 .fill,
.percent-circle.p77 .fill,
.percent-circle.p78 .fill,
.percent-circle.p79 .fill,
.percent-circle.p80 .fill,
.percent-circle.p81 .fill,
.percent-circle.p82 .fill,
.percent-circle.p83 .fill,
.percent-circle.p84 .fill,
.percent-circle.p85 .fill,
.percent-circle.p86 .fill,
.percent-circle.p87 .fill,
.percent-circle.p88 .fill,
.percent-circle.p89 .fill,
.percent-circle.p90 .fill,
.percent-circle.p91 .fill,
.percent-circle.p92 .fill,
.percent-circle.p93 .fill,
.percent-circle.p94 .fill,
.percent-circle.p95 .fill,
.percent-circle.p96 .fill,
.percent-circle.p97 .fill,
.percent-circle.p98 .fill,
.percent-circle.p99 .fill,
.percent-circle.p100 .fill {
  position: absolute;
  border: 6px solid #417CFF;
  width: 100%;
  height: 100%;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.percent-circle .bar {
  -webkit-transition: transform .225s;
  -webkit-transition: -webkit-transform .225s;
  transition: -webkit-transform .225s;
  transition: transform .225s;
  transition: transform .225s, -webkit-transform .225s;
}
.percent-circle.p51 .slice,
.percent-circle.p52 .slice,
.percent-circle.p53 .slice,
.percent-circle.p54 .slice,
.percent-circle.p55 .slice,
.percent-circle.p56 .slice,
.percent-circle.p57 .slice,
.percent-circle.p58 .slice,
.percent-circle.p59 .slice,
.percent-circle.p60 .slice,
.percent-circle.p61 .slice,
.percent-circle.p62 .slice,
.percent-circle.p63 .slice,
.percent-circle.p64 .slice,
.percent-circle.p65 .slice,
.percent-circle.p66 .slice,
.percent-circle.p67 .slice,
.percent-circle.p68 .slice,
.percent-circle.p69 .slice,
.percent-circle.p70 .slice,
.percent-circle.p71 .slice,
.percent-circle.p72 .slice,
.percent-circle.p73 .slice,
.percent-circle.p74 .slice,
.percent-circle.p75 .slice,
.percent-circle.p76 .slice,
.percent-circle.p77 .slice,
.percent-circle.p78 .slice,
.percent-circle.p79 .slice,
.percent-circle.p80 .slice,
.percent-circle.p81 .slice,
.percent-circle.p82 .slice,
.percent-circle.p83 .slice,
.percent-circle.p84 .slice,
.percent-circle.p85 .slice,
.percent-circle.p86 .slice,
.percent-circle.p87 .slice,
.percent-circle.p88 .slice,
.percent-circle.p89 .slice,
.percent-circle.p90 .slice,
.percent-circle.p91 .slice,
.percent-circle.p92 .slice,
.percent-circle.p93 .slice,
.percent-circle.p94 .slice,
.percent-circle.p95 .slice,
.percent-circle.p96 .slice,
.percent-circle.p97 .slice,
.percent-circle.p98 .slice,
.percent-circle.p99 .slice,
.percent-circle.p100 .slice {
  clip: rect(auto, auto, auto, auto);
}
.percent-circle.p51 .fill,
.percent-circle.p52 .fill,
.percent-circle.p53 .fill,
.percent-circle.p54 .fill,
.percent-circle.p55 .fill,
.percent-circle.p56 .fill,
.percent-circle.p57 .fill,
.percent-circle.p58 .fill,
.percent-circle.p59 .fill,
.percent-circle.p60 .fill,
.percent-circle.p61 .fill,
.percent-circle.p62 .fill,
.percent-circle.p63 .fill,
.percent-circle.p64 .fill,
.percent-circle.p65 .fill,
.percent-circle.p66 .fill,
.percent-circle.p67 .fill,
.percent-circle.p68 .fill,
.percent-circle.p69 .fill,
.percent-circle.p70 .fill,
.percent-circle.p71 .fill,
.percent-circle.p72 .fill,
.percent-circle.p73 .fill,
.percent-circle.p74 .fill,
.percent-circle.p75 .fill,
.percent-circle.p76 .fill,
.percent-circle.p77 .fill,
.percent-circle.p78 .fill,
.percent-circle.p79 .fill,
.percent-circle.p80 .fill,
.percent-circle.p81 .fill,
.percent-circle.p82 .fill,
.percent-circle.p83 .fill,
.percent-circle.p84 .fill,
.percent-circle.p85 .fill,
.percent-circle.p86 .fill,
.percent-circle.p87 .fill,
.percent-circle.p88 .fill,
.percent-circle.p89 .fill,
.percent-circle.p90 .fill,
.percent-circle.p91 .fill,
.percent-circle.p92 .fill,
.percent-circle.p93 .fill,
.percent-circle.p94 .fill,
.percent-circle.p95 .fill,
.percent-circle.p96 .fill,
.percent-circle.p97 .fill,
.percent-circle.p98 .fill,
.percent-circle.p99 .fill,
.percent-circle.p100 .fill {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.percent-circle > span {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 500;
  top: 50%;
  left: 50%;
  color: #417CFF;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.percent-circle .slice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip: rect(0em, 1em, 1em, 0.5em);
}
.percent-circle.p1 .bar {
  -webkit-transform: rotate(3.6deg);
  transform: rotate(3.6deg);
}
.percent-circle.p2 .bar {
  -webkit-transform: rotate(7.2deg);
  transform: rotate(7.2deg);
}
.percent-circle.p3 .bar {
  -webkit-transform: rotate(10.8deg);
  transform: rotate(10.8deg);
}
.percent-circle.p4 .bar {
  -webkit-transform: rotate(14.4deg);
  transform: rotate(14.4deg);
}
.percent-circle.p5 .bar {
  -webkit-transform: rotate(18deg);
  transform: rotate(18deg);
}
.percent-circle.p6 .bar {
  -webkit-transform: rotate(21.6deg);
  transform: rotate(21.6deg);
}
.percent-circle.p7 .bar {
  -webkit-transform: rotate(25.2deg);
  transform: rotate(25.2deg);
}
.percent-circle.p8 .bar {
  -webkit-transform: rotate(28.8deg);
  transform: rotate(28.8deg);
}
.percent-circle.p9 .bar {
  -webkit-transform: rotate(32.4deg);
  transform: rotate(32.4deg);
}
.percent-circle.p10 .bar {
  -webkit-transform: rotate(36deg);
  transform: rotate(36deg);
}
.percent-circle.p11 .bar {
  -webkit-transform: rotate(39.6deg);
  transform: rotate(39.6deg);
}
.percent-circle.p12 .bar {
  -webkit-transform: rotate(43.2deg);
  transform: rotate(43.2deg);
}
.percent-circle.p13 .bar {
  -webkit-transform: rotate(46.8deg);
  transform: rotate(46.8deg);
}
.percent-circle.p14 .bar {
  -webkit-transform: rotate(50.4deg);
  transform: rotate(50.4deg);
}
.percent-circle.p15 .bar {
  -webkit-transform: rotate(54deg);
  transform: rotate(54deg);
}
.percent-circle.p16 .bar {
  -webkit-transform: rotate(57.6deg);
  transform: rotate(57.6deg);
}
.percent-circle.p17 .bar {
  -webkit-transform: rotate(61.2deg);
  transform: rotate(61.2deg);
}
.percent-circle.p18 .bar {
  -webkit-transform: rotate(64.8deg);
  transform: rotate(64.8deg);
}
.percent-circle.p19 .bar {
  -webkit-transform: rotate(68.4deg);
  transform: rotate(68.4deg);
}
.percent-circle.p20 .bar {
  -webkit-transform: rotate(72deg);
  transform: rotate(72deg);
}
.percent-circle.p21 .bar {
  -webkit-transform: rotate(75.6deg);
  transform: rotate(75.6deg);
}
.percent-circle.p22 .bar {
  -webkit-transform: rotate(79.2deg);
  transform: rotate(79.2deg);
}
.percent-circle.p23 .bar {
  -webkit-transform: rotate(82.8deg);
  transform: rotate(82.8deg);
}
.percent-circle.p24 .bar {
  -webkit-transform: rotate(86.4deg);
  transform: rotate(86.4deg);
}
.percent-circle.p25 .bar {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.percent-circle.p26 .bar {
  -webkit-transform: rotate(93.6deg);
  transform: rotate(93.6deg);
}
.percent-circle.p27 .bar {
  -webkit-transform: rotate(97.2deg);
  transform: rotate(97.2deg);
}
.percent-circle.p28 .bar {
  -webkit-transform: rotate(100.8deg);
  transform: rotate(100.8deg);
}
.percent-circle.p29 .bar {
  -webkit-transform: rotate(104.4deg);
  transform: rotate(104.4deg);
}
.percent-circle.p30 .bar {
  -webkit-transform: rotate(108deg);
  transform: rotate(108deg);
}
.percent-circle.p31 .bar {
  -webkit-transform: rotate(111.6deg);
  transform: rotate(111.6deg);
}
.percent-circle.p32 .bar {
  -webkit-transform: rotate(115.2deg);
  transform: rotate(115.2deg);
}
.percent-circle.p33 .bar {
  -webkit-transform: rotate(118.8deg);
  transform: rotate(118.8deg);
}
.percent-circle.p34 .bar {
  -webkit-transform: rotate(122.4deg);
  transform: rotate(122.4deg);
}
.percent-circle.p35 .bar {
  -webkit-transform: rotate(126deg);
  transform: rotate(126deg);
}
.percent-circle.p36 .bar {
  -webkit-transform: rotate(129.6deg);
  transform: rotate(129.6deg);
}
.percent-circle.p37 .bar {
  -webkit-transform: rotate(133.2deg);
  transform: rotate(133.2deg);
}
.percent-circle.p38 .bar {
  -webkit-transform: rotate(136.8deg);
  transform: rotate(136.8deg);
}
.percent-circle.p39 .bar {
  -webkit-transform: rotate(140.4deg);
  transform: rotate(140.4deg);
}
.percent-circle.p40 .bar {
  -webkit-transform: rotate(144deg);
  transform: rotate(144deg);
}
.percent-circle.p41 .bar {
  -webkit-transform: rotate(147.6deg);
  transform: rotate(147.6deg);
}
.percent-circle.p42 .bar {
  -webkit-transform: rotate(151.2deg);
  transform: rotate(151.2deg);
}
.percent-circle.p43 .bar {
  -webkit-transform: rotate(154.8deg);
  transform: rotate(154.8deg);
}
.percent-circle.p44 .bar {
  -webkit-transform: rotate(158.4deg);
  transform: rotate(158.4deg);
}
.percent-circle.p45 .bar {
  -webkit-transform: rotate(162deg);
  transform: rotate(162deg);
}
.percent-circle.p46 .bar {
  -webkit-transform: rotate(165.6deg);
  transform: rotate(165.6deg);
}
.percent-circle.p47 .bar {
  -webkit-transform: rotate(169.2deg);
  transform: rotate(169.2deg);
}
.percent-circle.p48 .bar {
  -webkit-transform: rotate(172.8deg);
  transform: rotate(172.8deg);
}
.percent-circle.p49 .bar {
  -webkit-transform: rotate(176.4deg);
  transform: rotate(176.4deg);
}
.percent-circle.p50 .bar {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.percent-circle.p51 .bar {
  -webkit-transform: rotate(183.6deg);
  transform: rotate(183.6deg);
}
.percent-circle.p52 .bar {
  -webkit-transform: rotate(187.2deg);
  transform: rotate(187.2deg);
}
.percent-circle.p53 .bar {
  -webkit-transform: rotate(190.8deg);
  transform: rotate(190.8deg);
}
.percent-circle.p54 .bar {
  -webkit-transform: rotate(194.4deg);
  transform: rotate(194.4deg);
}
.percent-circle.p55 .bar {
  -webkit-transform: rotate(198deg);
  transform: rotate(198deg);
}
.percent-circle.p56 .bar {
  -webkit-transform: rotate(201.6deg);
  transform: rotate(201.6deg);
}
.percent-circle.p57 .bar {
  -webkit-transform: rotate(205.2deg);
  transform: rotate(205.2deg);
}
.percent-circle.p58 .bar {
  -webkit-transform: rotate(208.8deg);
  transform: rotate(208.8deg);
}
.percent-circle.p59 .bar {
  -webkit-transform: rotate(212.4deg);
  transform: rotate(212.4deg);
}
.percent-circle.p60 .bar {
  -webkit-transform: rotate(216deg);
  transform: rotate(216deg);
}
.percent-circle.p61 .bar {
  -webkit-transform: rotate(219.6deg);
  transform: rotate(219.6deg);
}
.percent-circle.p62 .bar {
  -webkit-transform: rotate(223.2deg);
  transform: rotate(223.2deg);
}
.percent-circle.p63 .bar {
  -webkit-transform: rotate(226.8deg);
  transform: rotate(226.8deg);
}
.percent-circle.p64 .bar {
  -webkit-transform: rotate(230.4deg);
  transform: rotate(230.4deg);
}
.percent-circle.p65 .bar {
  -webkit-transform: rotate(234deg);
  transform: rotate(234deg);
}
.percent-circle.p66 .bar {
  -webkit-transform: rotate(237.6deg);
  transform: rotate(237.6deg);
}
.percent-circle.p67 .bar {
  -webkit-transform: rotate(241.2deg);
  transform: rotate(241.2deg);
}
.percent-circle.p68 .bar {
  -webkit-transform: rotate(244.8deg);
  transform: rotate(244.8deg);
}
.percent-circle.p69 .bar {
  -webkit-transform: rotate(248.4deg);
  transform: rotate(248.4deg);
}
.percent-circle.p70 .bar {
  -webkit-transform: rotate(252deg);
  transform: rotate(252deg);
}
.percent-circle.p71 .bar {
  -webkit-transform: rotate(255.6deg);
  transform: rotate(255.6deg);
}
.percent-circle.p72 .bar {
  -webkit-transform: rotate(259.2deg);
  transform: rotate(259.2deg);
}
.percent-circle.p73 .bar {
  -webkit-transform: rotate(262.8deg);
  transform: rotate(262.8deg);
}
.percent-circle.p74 .bar {
  -webkit-transform: rotate(266.4deg);
  transform: rotate(266.4deg);
}
.percent-circle.p75 .bar {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.percent-circle.p76 .bar {
  -webkit-transform: rotate(273.6deg);
  transform: rotate(273.6deg);
}
.percent-circle.p77 .bar {
  -webkit-transform: rotate(277.2deg);
  transform: rotate(277.2deg);
}
.percent-circle.p78 .bar {
  -webkit-transform: rotate(280.8deg);
  transform: rotate(280.8deg);
}
.percent-circle.p79 .bar {
  -webkit-transform: rotate(284.4deg);
  transform: rotate(284.4deg);
}
.percent-circle.p80 .bar {
  -webkit-transform: rotate(288deg);
  transform: rotate(288deg);
}
.percent-circle.p81 .bar {
  -webkit-transform: rotate(291.6deg);
  transform: rotate(291.6deg);
}
.percent-circle.p82 .bar {
  -webkit-transform: rotate(295.2deg);
  transform: rotate(295.2deg);
}
.percent-circle.p83 .bar {
  -webkit-transform: rotate(298.8deg);
  transform: rotate(298.8deg);
}
.percent-circle.p84 .bar {
  -webkit-transform: rotate(302.4deg);
  transform: rotate(302.4deg);
}
.percent-circle.p85 .bar {
  -webkit-transform: rotate(306deg);
  transform: rotate(306deg);
}
.percent-circle.p86 .bar {
  -webkit-transform: rotate(309.6deg);
  transform: rotate(309.6deg);
}
.percent-circle.p87 .bar {
  -webkit-transform: rotate(313.2deg);
  transform: rotate(313.2deg);
}
.percent-circle.p88 .bar {
  -webkit-transform: rotate(316.8deg);
  transform: rotate(316.8deg);
}
.percent-circle.p89 .bar {
  -webkit-transform: rotate(320.4deg);
  transform: rotate(320.4deg);
}
.percent-circle.p90 .bar {
  -webkit-transform: rotate(324deg);
  transform: rotate(324deg);
}
.percent-circle.p91 .bar {
  -webkit-transform: rotate(327.6deg);
  transform: rotate(327.6deg);
}
.percent-circle.p92 .bar {
  -webkit-transform: rotate(331.2deg);
  transform: rotate(331.2deg);
}
.percent-circle.p93 .bar {
  -webkit-transform: rotate(334.8deg);
  transform: rotate(334.8deg);
}
.percent-circle.p94 .bar {
  -webkit-transform: rotate(338.4deg);
  transform: rotate(338.4deg);
}
.percent-circle.p95 .bar {
  -webkit-transform: rotate(342deg);
  transform: rotate(342deg);
}
.percent-circle.p96 .bar {
  -webkit-transform: rotate(345.6deg);
  transform: rotate(345.6deg);
}
.percent-circle.p97 .bar {
  -webkit-transform: rotate(349.2deg);
  transform: rotate(349.2deg);
}
.percent-circle.p98 .bar {
  -webkit-transform: rotate(352.8deg);
  transform: rotate(352.8deg);
}
.percent-circle.p99 .bar {
  -webkit-transform: rotate(356.4deg);
  transform: rotate(356.4deg);
}
.percent-circle.p100 .bar {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.vx-admin .admin-card .card-content .pointy-container.max-card-content-width {
  position: relative;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding: 0.5rem;
  padding-left: 2rem;
  max-width: initial;
}
.vx-admin .admin-card .card-content .pointy-container.max-card-content-width.if-first-div-top-card {
  margin-top: -1.5rem;
}
.vx-admin .admin-card .card-content .pointy-container.max-card-content-width:before {
  bottom: -14px;
  left: 0;
  border-bottom: none;
  border-top: 14px solid #417cff;
  border-right: 16px solid transparent;
  top: auto;
}
/*  -------------------------  LISTES BASIQUES  ----------------------------------- */
.vx-admin ul {
  list-style-type: circle;
}
.vx-admin ul li {
  font-size: 0.9rem;
}
.vx-admin table td .input-container input:not([type="file"]),
.vx-admin table td .input-container select:not(.ui-datepicker-year):not(.ui-datepicker-month):not(.jsgrid-balise) {
  margin-top: 6px;
  padding-bottom: 2px;
}
.vx-admin table td .input-container .select-field::after {
  top: 24px;
}
.vx-admin table td .input-container label {
  top: 8px;
  font-size: inherit;
}
.vx-admin table td .input-container label.active {
  -webkit-transform: translateY(-15px) scale(0.75);
  transform: translateY(-15px) scale(0.75);
}
.vx-admin .input-field input.input-field-dark {
  background-color: rgba(65, 124, 255, 0.15);
  font-size: initial;
}
.vx-admin .input-field input.input-field-dark-error {
  background-color: rgba(217, 83, 79, 0.1);
  font-size: initial;
  color: #d9534f;
  text-align: right;
}
.vx-admin .input-field input.input-field-dark-error:focus {
  border-bottom: 1px solid #d9534f;
  -webkit-box-shadow: inset 0 -1px 0 0 #d9534f;
  box-shadow: inset 0 -1px 0 0 #d9534f;
}
.vx-admin .input-field input.input-field-dark-error:focus + label {
  color: #d9534f;
  opacity: 1;
}
.input-field span.input-field-label {
  padding: 8px 0;
  margin-top: 12px;
  font-size: 1em;
  display: block;
  opacity: 0.80;
}
/*
// Permet d'aligner les input de type 'file' dans un "input-container / input-field"
.vx-admin input[type="file"] {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: transparent;
  min-width: 150px;
  margin-top: 12px;
  padding: 8px 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: auto;
  margin-bottom: 0;
  color: @primary-color;
  font-size: 0.95rem;
}*/
/* Suppression des flèches dans les inputs de type number */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.vx-admin .ui-datepicker table td,
.vx-admin .ui-datepicker table th {
  padding: 0 0 0 0;
}
/* GRID */
.row {
  margin-bottom: 10px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row .col {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.75rem;
  min-height: 1px;
}
.row .col[class*="push-"],
.row .col[class*="pull-"] {
  position: relative;
}
.row .col.s1 {
  width: 8.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s2 {
  width: 16.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s3 {
  width: 25%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s4 {
  width: 33.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s5 {
  width: 41.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s6 {
  width: 50%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s7 {
  width: 58.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s8 {
  width: 66.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s9 {
  width: 75%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s10 {
  width: 83.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s11 {
  width: 91.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}
.row .col.s12 {
  width: 100%;
  margin-left: auto;
  left: auto;
  right: auto;
}
@media only screen and (min-width: 601px) {
  .row .col.m1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-m1 {
    margin-left: 8.3333333333%;
  }
  .row .col.pull-m1 {
    right: 8.3333333333%;
  }
  .row .col.push-m1 {
    left: 8.3333333333%;
  }
  .row .col.offset-m2 {
    margin-left: 16.6666666667%;
  }
  .row .col.pull-m2 {
    right: 16.6666666667%;
  }
  .row .col.push-m2 {
    left: 16.6666666667%;
  }
  .row .col.offset-m3 {
    margin-left: 25%;
  }
  .row .col.pull-m3 {
    right: 25%;
  }
  .row .col.push-m3 {
    left: 25%;
  }
  .row .col.offset-m4 {
    margin-left: 33.3333333333%;
  }
  .row .col.pull-m4 {
    right: 33.3333333333%;
  }
  .row .col.push-m4 {
    left: 33.3333333333%;
  }
  .row .col.offset-m5 {
    margin-left: 41.6666666667%;
  }
  .row .col.pull-m5 {
    right: 41.6666666667%;
  }
  .row .col.push-m5 {
    left: 41.6666666667%;
  }
  .row .col.offset-m6 {
    margin-left: 50%;
  }
  .row .col.pull-m6 {
    right: 50%;
  }
  .row .col.push-m6 {
    left: 50%;
  }
  .row .col.offset-m7 {
    margin-left: 58.3333333333%;
  }
  .row .col.pull-m7 {
    right: 58.3333333333%;
  }
  .row .col.push-m7 {
    left: 58.3333333333%;
  }
  .row .col.offset-m8 {
    margin-left: 66.6666666667%;
  }
  .row .col.pull-m8 {
    right: 66.6666666667%;
  }
  .row .col.push-m8 {
    left: 66.6666666667%;
  }
  .row .col.offset-m9 {
    margin-left: 75%;
  }
  .row .col.pull-m9 {
    right: 75%;
  }
  .row .col.push-m9 {
    left: 75%;
  }
  .row .col.offset-m10 {
    margin-left: 83.3333333333%;
  }
  .row .col.pull-m10 {
    right: 83.3333333333%;
  }
  .row .col.push-m10 {
    left: 83.3333333333%;
  }
  .row .col.offset-m11 {
    margin-left: 91.6666666667%;
  }
  .row .col.pull-m11 {
    right: 91.6666666667%;
  }
  .row .col.push-m11 {
    left: 91.6666666667%;
  }
  .row .col.offset-m12 {
    margin-left: 100%;
  }
  .row .col.pull-m12 {
    right: 100%;
  }
  .row .col.push-m12 {
    left: 100%;
  }
}
@media only screen and (min-width: 993px) {
  .row .col.l1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-l1 {
    margin-left: 8.3333333333%;
  }
  .row .col.pull-l1 {
    right: 8.3333333333%;
  }
  .row .col.push-l1 {
    left: 8.3333333333%;
  }
  .row .col.offset-l2 {
    margin-left: 16.6666666667%;
  }
  .row .col.pull-l2 {
    right: 16.6666666667%;
  }
  .row .col.push-l2 {
    left: 16.6666666667%;
  }
  .row .col.offset-l3 {
    margin-left: 25%;
  }
  .row .col.pull-l3 {
    right: 25%;
  }
  .row .col.push-l3 {
    left: 25%;
  }
  .row .col.offset-l4 {
    margin-left: 33.3333333333%;
  }
  .row .col.pull-l4 {
    right: 33.3333333333%;
  }
  .row .col.push-l4 {
    left: 33.3333333333%;
  }
  .row .col.offset-l5 {
    margin-left: 41.6666666667%;
  }
  .row .col.pull-l5 {
    right: 41.6666666667%;
  }
  .row .col.push-l5 {
    left: 41.6666666667%;
  }
  .row .col.offset-l6 {
    margin-left: 50%;
  }
  .row .col.pull-l6 {
    right: 50%;
  }
  .row .col.push-l6 {
    left: 50%;
  }
  .row .col.offset-l7 {
    margin-left: 58.3333333333%;
  }
  .row .col.pull-l7 {
    right: 58.3333333333%;
  }
  .row .col.push-l7 {
    left: 58.3333333333%;
  }
  .row .col.offset-l8 {
    margin-left: 66.6666666667%;
  }
  .row .col.pull-l8 {
    right: 66.6666666667%;
  }
  .row .col.push-l8 {
    left: 66.6666666667%;
  }
  .row .col.offset-l9 {
    margin-left: 75%;
  }
  .row .col.pull-l9 {
    right: 75%;
  }
  .row .col.push-l9 {
    left: 75%;
  }
  .row .col.offset-l10 {
    margin-left: 83.3333333333%;
  }
  .row .col.pull-l10 {
    right: 83.3333333333%;
  }
  .row .col.push-l10 {
    left: 83.3333333333%;
  }
  .row .col.offset-l11 {
    margin-left: 91.6666666667%;
  }
  .row .col.pull-l11 {
    right: 91.6666666667%;
  }
  .row .col.push-l11 {
    left: 91.6666666667%;
  }
  .row .col.offset-l12 {
    margin-left: 100%;
  }
  .row .col.pull-l12 {
    right: 100%;
  }
  .row .col.push-l12 {
    left: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .hide-on-small-only,
  .hide-on-small-and-down {
    display: none !important;
  }
}
@media only screen and (max-width: 992px) {
  .hide-on-med-and-down {
    display: none !important;
  }
}
@media only screen and (min-width: 601px) {
  .hide-on-med-and-up {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) and (max-width: 992px) {
  .hide-on-med-only {
    display: none !important;
  }
}
@media only screen and (min-width: 993px) {
  .hide-on-large-only {
    display: none !important;
  }
}
@media only screen and (min-width: 993px) {
  .show-on-large {
    display: block !important;
  }
}
@media only screen and (min-width: 600px) and (max-width: 992px) {
  .show-on-medium {
    display: block !important;
  }
}
@media only screen and (max-width: 600px) {
  .show-on-small {
    display: block !important;
  }
}
@media only screen and (min-width: 601px) {
  .show-on-medium-and-up {
    display: block !important;
  }
}
@media only screen and (max-width: 992px) {
  .show-on-medium-and-down {
    display: block !important;
  }
}
@media only screen and (max-width: 600px) {
  .center-on-small-only {
    text-align: center;
  }
}
.dialogconfirmation {
  border: 1px solid #d4ccb0;
  background: #000000;
  /* beige - pour anciens navigateurs */
  opacity: 0.5;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f4ed), color-stop(55%, #f6f4ed), color-stop(57%, #f0ede1), to(#f0ede1));
  background: linear-gradient(to bottom, #f6f4ed 0%, #f6f4ed 55%, #f0ede1 57%, #f0ede1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f4ed', endColorstr='#f0ede1', GradientType=0);
  /* IE6-9 */
  padding: 2px 6px;
  border-radius: 5px;
}
.dialogconfirmation .ui-state-question {
  border: 1px solid #d4ccb0;
  background: #f6f4ed;
  /* beige - pour anciens navigateurs */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f4ed), color-stop(55%, #f6f4ed), color-stop(57%, #f0ede1), to(#f0ede1));
  background: linear-gradient(to bottom, #f6f4ed 0%, #f6f4ed 55%, #f0ede1 57%, #f0ede1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f4ed', endColorstr='#f0ede1', GradientType=0);
  /* IE6-9 */
  padding: 2px 6px;
  border-radius: 5px;
}
/* Overlays */
.ui-widget-overlay {
  background: #000000;
  opacity: .5;
  filter: alpha(opacity=50);
  /* support: IE8 */
}
.dialogconfirmation .ui-dialog-titlebar-close {
  top: 12px;
}
.dialogconfirmation .ui-dialog-titlebar-close::before {
  content: "\274C";
  font-weight: bold;
  font-size: 0.8em;
}
.login-right {
  position: relative;
}
.login .login-left {
  padding: 32px;
}
.login .login-right {
  padding: 0;
}
.login .pointy-container {
  max-width: none;
  margin-left: 0;
}
.login .pointy-container:before {
  bottom: -14px;
  left: 0;
  border-bottom: none;
  border-top: 14px solid #417CFF;
  border-right: 16px solid transparent;
  top: auto;
}
.login-left h2 {
  text-align: center;
  margin-bottom: 16px;
}
.login-left .btn {
  margin-top: 40px;
  margin-right: 0;
}
.login-left .fields-container {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}
.login .vx-content {
  padding: 0;
}
.additional-info {
  padding: 0 20px;
}
.additional-info h3 {
  margin-top: 40px;
  margin-bottom: 26px;
}
.additional-info ul {
  margin: 0;
  padding-left: 16px;
}
.additional-info ul li {
  padding-bottom: 8px;
}
/* LANGUAGE SELECTOR */
.language-selector {
  position: relative;
  z-index: 50;
}
.language-selector .icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  margin-right: 8px;
}
.language-selector .text {
  display: inline-block;
  vertical-align: middle;
}
.language-selector .selected-item {
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  width: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.language-selector .selected-item:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateY(-4px);
          transform: translateY(-50%) translateY(-4px);
  border-top: 6px solid rgba(255, 255, 255, 0.3);
  border-left: 6px dotted transparent;
  border-right: 6px dotted transparent;
}
.language-selector .selection-list {
  height: 34px;
  overflow: hidden;
  width: 150px;
  color: #000;
  position: absolute;
  right: -4px;
  top: -16px;
  padding: 8px 0;
  background: #FFF;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: opacity .225s, -webkit-transform .225s;
  transition: opacity .225s, -webkit-transform .225s;
  transition: transform .225s, opacity .225s;
  transition: transform .225s, opacity .225s, -webkit-transform .225s;
  pointer-events: none;
  opacity: 0;
}
.language-selector .selection-item {
  display: block;
  padding: 8px;
  -webkit-transition: background .225s;
  transition: background .225s;
}
.language-selector .selection-item:hover {
  background: rgba(0, 0, 0, 0.12);
}
.language-selector:hover .selection-list {
  height: auto;
  pointer-events: auto;
  opacity: 1;
}
/* RESPONSIVE */
@media screen and (max-width: 600px) {
  .login h2 {
    display: none;
  }
  .login .vx-header .container,
  .login .vx-title .container,
  .login .login-left {
    padding: 0 6vw;
  }
  .login .login-left .title {
    margin-top: 2vw;
  }
  .login .login-left,
  .login .parts-container {
    margin-bottom: 0;
    width: 100%;
  }
  .login-left .fields-container {
    margin: 0;
    width: 100%;
    max-width: none;
  }
  .language-selector {
    margin-right: -8px;
  }
  .language-selector .selected-item:after {
    border-top-color: rgba(0, 0, 0, 0.2);
  }
}
.vote-card-header {
  padding: 0.5rem;
}
.vote-cadre {
  border: 2px solid;
  border-color: #417cff;
  padding: 10px;
}
.btn-vote {
  width: 95%;
  height: 4rem;
  line-height: 4rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.btn-vote-confirm {
  width: 95%;
  height: 100%;
  line-height: 20px;
  margin-left: 0.5rem;
  vertical-align: middle;
  white-space: pre-wrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.btn-vote:first-child {
  margin-left: 0.5rem;
}
.picto-refresh {
  position: fixed;
}
.hr-vote {
  margin: 10px 0;
}
.result-even {
  background-color: #9ad9ea;
  text-align: center;
}
.result-odd {
  background-color: #00a3e8;
  text-align: center;
}
.check-vote + label {
  width: 95%;
  height: 4rem;
  line-height: 4rem;
  margin-left: 0.5rem;
  margin-right: 8px !important;
  vertical-align: middle;
  background-color: #A9A9A9;
}
.check-vote-fav + label {
  width: 95%;
  height: 4rem;
  line-height: 4rem;
  margin-left: 0.5rem;
  margin-right: 8px !important;
  vertical-align: middle;
  background-color: #8BC34A;
}
.check-vote-def + label {
  width: 95%;
  height: 4rem;
  line-height: 4rem;
  margin-left: 0.5rem;
  margin-right: 8px !important;
  vertical-align: middle;
  background-color: #F44336;
}
.check-vote-abs + label {
  width: 95%;
  height: 4rem;
  line-height: 4rem;
  margin-left: 0.5rem;
  margin-right: 8px !important;
  vertical-align: middle;
  background-color: #ffcb05;
}
.check-vote-fav:checked + label,
.check-vote-def:checked + label,
.check-vote-abs:checked + label,
.check-vote:checked + label {
  background-color: #417cff;
}
.check-vote + label {
  background-color: #A9A9A9;
}
.check-vote-fav + label:after,
.check-vote-def + label:after,
.check-vote-abs + label:after,
.check-vote + label:after {
  display: none;
}
.check-vote-fav:checked + label:after,
.check-vote-def:checked + label:after,
.check-vote-abs:checked + label:after,
.check-vote:checked + label:after {
  display: none;
}
.check-vote-fav:checked + label::before,
.check-vote-def:checked + label::before,
.check-vote-abs:checked + label::before,
.check-vote:checked + label::before {
  -webkit-box-shadow: -5px 5px 0 #FFF;
  box-shadow: -5px 5px 0 #FFF;
  width: 30px;
  height: 15px;
  left: 10px;
  top: 13px;
}
@media (hover: none) {
  .check-vote + label:hover {
    background-color: #A9A9A9;
  }
  .check-vote-fav + label:hover {
    background-color: #8BC34A;
  }
  .check-vote-def + label:hover {
    background-color: #F44336;
  }
  .check-vote-fav + label:hover {
    background-color: #8BC34A;
  }
  .check-vote-def + label:hover {
    background-color: #F44336;
  }
  .check-vote-abs + label:hover {
    background-color: #ffcb05;
  }
  .check-vote:checked + label:hover {
    background-color: #417cff;
  }
  .check-vote-fav:checked + label:hover,
  .check-vote-def:checked + label:hover,
  .check-vote-abs:checked + label:hover {
    background-color: #417cff;
  }
}
.disable-checkbox-vote + label:hover {
  background-color: #A9A9A9;
}
.btn-confirm-choix {
  width: 33%;
}
.btn-navigation-suffrage {
  width: 65%;
  height: 4rem;
}
.max-choix {
  color: #417cff;
}
.max-choix-ok {
  color: #417cff;
  font-weight: bold;
  font-size: 30px;
  line-height: 0.5;
}
.max-choix-ko {
  color: #F44336;
  font-weight: bold;
  font-size: 30px;
  line-height: 0.5;
}
.div-confirme-choix {
  height: 4rem;
  width: 95%;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  display: inline-block;
  text-align: right;
}
.div-confirme-choix-suffrage {
  height: 4rem;
  width: 95%;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.div-retour-suffrage {
  width: 50%;
  text-align: left;
}
.div-continuer-suffrage {
  width: 50%;
  text-align: right;
}
.indeterminate-checkbox {
  width: 12px;
  height: 7px;
  left: 3px;
  top: 5px;
  -webkit-box-shadow: -2px 2px 0 transparent;
  box-shadow: -2px 2px 0 transparent;
  background-color: #417cff;
  margin: 10px 25px 8px 10px;
  display: none;
}
/**
 * Global styles for all voxaly's pages
 */
body {
  background: #f4f4f4;
  color: #000;
}
/* TEXT STYLES */
h3 {
  line-height: 1;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child {
  margin-top: 0;
}
p > i {
  display: inline-block;
  vertical-align: middle;
  margin-right: .5rem;
}
label {
  font-weight: 400;
}
table {
  width: 100%;
}
.table-scpecial {
  width: 50%;
}
table th {
  font-size: 0.875rem;
  opacity: 0.80;
  font-weight: 500;
  padding: .25rem .25rem .5rem;
}
.word-wrap-cell {
  word-break: break-all;
  word-wrap: normal;
}
.overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.limited-space {
  max-width: 100px;
  word-break: break-all;
}
table td {
  padding: .5rem .25rem;
}
.subtle {
  opacity: .54;
}
.body {
  color: rgba(0, 0, 0, 0.87);
}
.caption {
  font-size: 0.750rem;
  opacity: .54;
}
.extra-spaced {
  margin: 2rem 0;
}
.spaced {
  margin: 1rem 0;
}
.spaced-bottom {
  margin-bottom: 1rem;
}
.spaced-top {
  margin-top: 1rem;
}
.headline {
  font-size: 2.813rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.title {
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  opacity: .87;
}
.title.primary-text {
  opacity: 1;
}
.icon-title {
  display: table;
}
.icon-title i {
  display: table-cell;
  vertical-align: middle;
}
.icon-title span {
  display: table-cell;
  vertical-align: middle;
  padding-left: 8px;
}
.title.bigger {
  font-size: 2rem;
}
.bigger {
  font-size: 2rem;
}
.smaller {
  font-size: 0.875em;
  line-height: 1.2rem;
}
.font-small {
  font-size: 0.75em !important;
  line-height: 0.5rem;
}
.stronger {
  font-weight: 500;
}
.primary {
  background: #417cff;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #417cff 0%, #0e59ff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#417cff, endColorstr=#0e59ff, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #FFF;
}
.primary-text {
  color: #417cff;
}
.secondary-text {
  color: #ffffff;
}
.secondary {
  background: #ffffff;
  color: #417cff;
  border: thin solid #417cff;
}
.primary h1,
.primary h2,
.primary h3,
.primary h4,
.primary h5,
.primary h6 {
  color: #FFF;
  opacity: 1;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.valign-center {
  vertical-align: middle;
}
.valign-center-imp {
  vertical-align: middle !important;
}
.valign-bottom {
  vertical-align: bottom;
}
.valign-top {
  vertical-align: top !important;
}
.error {
  color: #d9534f;
}
.success {
  color: #24ae60;
}
.warning {
  color: #e6792f;
}
i {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a {
  font-weight: 500;
  color: #417cff;
}
a:hover,
a:focus {
  text-decoration: underline;
  color: #417cff;
}
a.none-decoration:hover,
a.none-decoration:focus {
  text-decoration: none;
}
.container {
  padding: 0;
}
b,
strong {
  font-weight: 500;
  text-shadow: none;
}
.inline-wrapper {
  display: inline-block;
}
.back-button {
  color: rgba(0, 0, 0, 0.54);
}
.collapsing {
  -webkit-transition-duration: .225s;
  transition-duration: .225s;
}
/* LAYOUT */
.vx-header {
  height: 116px;
  background: #FFF;
}
.placeholder-logo {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: #DDD;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.placeholder-logo:before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF;
}
.placeholder-logo:after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF;
}
.vx-content {
  background: #FFF;
  margin-top: -58px;
}
.vx-content-container {
  padding: 40px 64px 64px 64px;
}
.vx-content-container .title:first-child {
  margin-top: 0;
}
/* HEADER */
.vx-header .container {
  display: table;
  height: 100%;
}
#logo {
  display: table-cell;
  vertical-align: middle;
}
#logo a {
  display: inline-block;
}
#logo_operation {
  max-width: 100%;
  max-height: 102px;
}
#decor_h_d {
  display: table-cell;
  vertical-align: bottom;
}
/* TITLE */
.vx-title {
  padding: 32px 0;
  padding-bottom: 90px;
  background: #34302f;
  color: #FFF;
}
.vx-title .container {
  display: table;
}
.vx-title .left-part {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.vx-title .right-part {
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
}
.vx-title .right-part .btn-flat {
  display: inline-block;
}
.vx-title .right-part .btn-flat.primary-text {
  font-weight: 600;
}
.vx-title h1 {
  color: inherit;
  font-weight: normal;
  margin-top: 0;
  opacity: 1;
  margin-bottom: 4px;
  line-height: 1.23;
}
.vx-title .subtitle {
  font-weight: normal;
}
/* FOOTER */
.vx-footer {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
.vx-footer .infos-section {
  padding: 0 56px;
  overflow: hidden;
}
.vx-footer .top.row > div {
  padding: 0;
}
.vx-footer .opening,
.vx-footer .closure,
.vx-footer .question,
.vx-footer .footer-info {
  display: table;
  position: relative;
}
.vx-footer .footer-info + .footer-info {
  margin-top: 28px;
}
.vx-footer .text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.875em;
  padding-left: 12px;
  display: table-cell;
  vertical-align: middle;
}
.vx-footer .opening .round-icon:after {
  content: '';
  width: 4px;
  height: 8px;
  border-radius: 0 0 4px 4px;
  background: #417cff;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -2px;
}
.vx-footer .closure .round-icon:before {
  content: '';
  width: 4px;
  height: 8px;
  border-radius: 4px 4px 0 0;
  background: #417cff;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -2px;
}
.vx-footer .planning .date {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.87);
}
.vx-footer .planning .date:first-letter {
  text-transform: uppercase;
}
.vx-footer .sep,
.vx-footer .sep:after,
.vx-footer .sep:before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #417cff;
  position: relative;
}
.vx-footer .sep {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 18px;
}
.vx-footer .sep:after {
  position: absolute;
  content: '';
  top: -6px;
  left: 0;
}
.vx-footer .sep:before {
  position: absolute;
  content: '';
  bottom: -6px;
  left: 0;
}
.vx-footer .timer {
  margin: 1.5rem 0;
  position: relative;
  text-align: center;
  padding: 1.25rem 0;
}
.vx-footer .timer .time {
  margin: 0;
}
.vx-footer .timer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: 100px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.12);
}
.vx-footer .timer:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 100px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.12);
}
.vx-footer .timer .info {
  font-size: 0.875rem;
}
.imprints-votant {
  margin-top: 2rem;
  position: relative;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.container-fluid .imprints {
  padding-bottom: 2rem;
  position: relative;
  text-align: center;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.imprints-votant a,
.imprints a {
  font-size: 0.750rem;
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
}
.imprints-votant a:hover,
.imprints a:hover {
  color: #417cff;
  text-decoration: underline;
}
.imprints-votant img,
.imprints img {
  max-height: 26px;
  margin-left: 4px;
}
.imprints-votant ul,
.imprints ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
}
.vx-footer .question {
  margin-top: 18px;
  z-index: 5;
}
.vx-footer .question a {
  color: inherit;
  display: table;
  outline: none;
  text-decoration: none;
}
.vx-footer .footer-info h4 {
  margin-top: 0;
  font-size: .875rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 4px;
}
.vx-footer p {
  margin: 0;
}
/* MISC */
.width-limiter {
  max-width: 700px;
  margin: 0 auto;
}
.info-text {
  width: 100%;
  display: table;
}
.info-text i {
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
}
.info-text span {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
.info-text.multiline i {
  vertical-align: top;
}
.info-text.multiline .multilineContainer {
  display: table-cell;
  width: 100%;
}
.info-text.multiline .multilineContainer .ligne {
  padding-top: 5px;
}
.info-text.multiline .multilineContainer .ligne:first-child {
  padding-top: 0;
}
.info-text:not(.primary-text) {
  color: rgba(0, 0, 0, 0.87);
}
.info-text:not(.primary-text) i {
  opacity: .6;
  color: #000;
}
.info-text.error,
.info-text.success,
.info-text.info {
  padding: 15px;
  margin: .5rem 0 1rem 0;
  border-radius: 4px;
  color: #fff;
  background-color: #4c91cc;
  font-size: 1.05em;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.info-text.error > i,
.info-text.success > i,
.info-text.info > i {
  opacity: 1;
  color: #fff;
}
.info-text.success {
  background-color: #24ae60;
}
.info-text.error {
  background-color: #d9534f;
}
.padding-container {
  padding: 24px;
}
.button-container {
  padding: 8px 0;
}
.button-container:last-child {
  padding-bottom: 0;
}
.button-container .btn:last-child,
.button-container .btn-flat:last-child {
  margin-right: 0;
}
.button-container .btn:first-child,
.button-container .btn-flat:first-child {
  margin-left: 0;
}
.button-container.align-right {
  text-align: right;
}
.button-container.align-center {
  text-align: center;
}
.button-container button {
  display: inline-block;
}
.parts-container {
  display: table;
}
.parts-container .left-part {
  display: table-cell;
  vertical-align: middle;
}
.parts-container .dominant {
  width: 100%;
}
.parts-container .right-part {
  display: table-cell;
  vertical-align: middle;
}
.quote-text {
  padding: 8px 16px;
  border-left: 3px solid rgba(0, 0, 0, 0.12);
}
.page-sep {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  width: 100%;
  margin: 32px 0;
}
.imminent {
  color: #F44336;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}
.visible {
  opacity: 1;
}
.text-button-couple {
  margin: 16px 0;
  display: table;
}
.spacer {
  display: block;
  margin-bottom: 1rem;
}
.spacer.smaller {
  display: block;
  margin-bottom: .5rem;
}
.v-spacer {
  display: inline-block;
  margin-left: 1rem;
}
.v-spacer.smaller {
  display: inline-block;
  margin-left: .5rem;
}
.v-spacer:after,
.spacer:after {
  content: '';
  display: table;
}
.election-timestamp {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}
.election-timestamp i {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}
.resolution-recap {
  max-width: 500px;
  margin-bottom: 8px;
}
.email-fields-container .input-container {
  max-width: 380px;
  margin: 0 auto;
}
.logo-text {
  display: table;
}
.logo-text .logo-container {
  display: table-cell;
  vertical-align: middle;
  padding-right: 1rem;
}
.logo-text .text {
  vertical-align: middle;
  display: table-cell;
}
.round-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  position: relative;
  line-height: 1.5rem;
  padding: .5rem;
  text-align: center;
  font-weight: 500;
}
.round-icon i {
  display: inline-block;
  vertical-align: top;
}
.round-icon:not(.primary) {
  background: #DDD;
}
.round-icon img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.spacer {
  clear: both;
  font-size: 0;
  line-height: 0;
}
.spacer_10px {
  clear: both;
  height: 10px;
  font-size: 1px;
}
.spacer_20px {
  clear: both;
  height: 20px;
  font-size: 1px;
}
.spacer_40px {
  clear: both;
  height: 40px;
  font-size: 1px;
}
a[data-menu="admin"] {
  color: rgba(0, 0, 0, 0.72);
  font-weight: initial;
  font-size: 0.875rem;
}
a[data-menu="admin"]:hover,
a[data-menu="admin"]:focus {
  text-decoration: none;
  font-weight: 500;
}
a[data-menu="adminactive"]:hover,
a[data-menu="adminactive"]:focus {
  text-decoration: none;
}
input[type="text"][type="password"] {
  padding-left: 3px;
  padding-right: 3px;
}
.btn.btn-alt {
  background-color: #d9534f;
  color: white;
}
/* Overlays */
.ui-widget-overlay {
  background: #000000;
  opacity: .5;
  filter: alpha(opacity=50);
  /* support: IE8 */
}
a > .fa,
.fa {
  color: #417cff;
}
/*jQuery UI autocomplete for bootstrap, adapter pour notre version de jquery...*/
.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  _width: 160px;
  padding: 4px 0;
  margin: 2px 0 0 0;
  list-style: none;
  background-color: #ffffff;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
}
.ui-autocomplete .ui-menu-item {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #555555;
  white-space: nowrap;
}
.ui-autocomplete .ui-menu-item.ui-state-hover,
.ui-autocomplete .ui-menu-item.ui-state-active,
.ui-autocomplete .ui-menu-item.ui-state-focus {
  color: #cecece;
  /* #cecece; */
  text-decoration: none;
  background-color: #555555;
  /* #EE7815; #0088cc;*/
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  background-image: none;
  border: 0px;
}
.ui-autocomplete > .ui-autocomplete-category {
  color: gray;
  border-top-style: solid;
  border-top-color: gray;
  border-top-width: 1px;
  text-align: right;
  padding: 0.2em;
}
hr.hr-gradiant-primary {
  border: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(65, 124, 255, 0)), color-stop(rgba(65, 124, 255, 0.75)), to(rgba(65, 124, 255, 0)));
  background-image: linear-gradient(to right, rgba(65, 124, 255, 0), rgba(65, 124, 255, 0.75), rgba(65, 124, 255, 0));
}
/* Remove the margin of an element */
.no-margin {
  margin: 0 !important;
}
/* Remove the padding of an element */
.no-padding {
  padding: 0 !important;
}
/* Modifie le curseur de la souris en tant que pointer (Le curseur est un pointeur qui indique un lien, généralement c'est une main)  */
.souris-pointer {
  cursor: pointer;
}
.souris-default {
  cursor: default;
}
/* Modifie la couleur de la ligne quand on passe la souris dessus (hover), on sélectionne les td car le background-color ne fonctionne pas pour les tr */
.souris-pointer:hover td {
  background-color: #417cff;
  color: white !important;
}
.souligne {
  text-decoration: underline;
}
.gras {
  font-weight: bold;
}
/* Marge extérieure fine (0.5 rem) */
.marge-ext-fine {
  margin: 0.5rem 0.5rem;
}
.align-content-horizontally {
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-align-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.flex-align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: right;
          justify-content: right;
}
.flex-align-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: left;
          justify-content: left;
}
.as-table {
  display: table;
}
.as-table > * {
  display: table-cell;
}
.nowrap {
  white-space: nowrap;
}
.hidden {
  display: none;
}
.visible {
  display: block;
}
.bouton-rond {
  font-size: 24px;
  cursor: default;
}
.vert,
.vert:hover,
.vert:focus,
.vert:focus:active {
  background-color: #8BC34A;
}
.vert-cobalt,
.vert-cobalt:hover,
.vert-cobalt:focus,
.vert-cobalt:focus:active {
  background-color: #289D15 !important;
}
.marron-cobalt,
.marron-cobalt:hover,
.marron-cobalt:focus,
.marron-cobalt:focus:active {
  background-color: #C37A13 !important;
}
.rose-cobalt,
.rose-cobalt:hover,
.rose-cobalt:focus,
.rose-cobalt:focus:active {
  background-color: #F14B82 !important;
}
.rose-fonce-cobalt,
.rose-fonce-cobalt:hover,
.rose-fonce-cobalt:focus,
.rose-fonce-cobalt:focus:active {
  background-color: #CF2A61 !important;
}
.turquoise-cobalt,
.turquoise-cobalt:hover,
.turquoise-cobalt:focus,
.turquoise-cobalt:focus:active {
  background-color: #1E9999 !important;
}
.orange,
.orange:hover,
.orange:focus,
.orange:focus:active {
  background-color: #FF7900;
}
.gris,
.gris:hover,
.gris:focus,
.gris:focus:active {
  background-color: #A9A9A9;
}
.rouge,
.rouge:hover,
.rouge:focus,
.rouge:focus:active {
  background-color: #F44336;
}
.jaune,
.jaune:hover,
.jaune:focus,
.jaune:focus:active {
  background-color: #ffcb05;
}
.fonce,
.fonce:hover,
.fonce:focus,
.fonce:focus:active {
  background-color: #404040;
}
.grand-bouton {
  text-align: center;
  height: 70px;
}
.no-click {
  pointer-events: none;
}
.container-ligne-indicateurs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  padding-top: 15px;
}
.ligne-indicateurs-format {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 110px;
}
.icon-indicateurs-ligne1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.icon-indicateurs-text {
  color: #777;
  text-align: right;
  font-size: 12px;
}
.icon-indicateurs-text-lien-cliquable {
  text-align: right;
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #417cff;
}
.icon-indicateurs-suivi-votes-ligne1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15px;
}
.width-10 {
  width: 10%;
}
.color-red {
  color: red;
}
.color-green {
  color: green;
}
/* Surcharge pour avoir des boutons arrondis */
.btn {
  border-radius: 2rem !important;
}
/* "bouton-badge" pour les états des délibérations */
.bouton-badge {
  border-radius: 0 !important;
  width: 8rem;
}
.aide-coordonnee {
  padding-left: 3rem;
}
.guide-utilisateur {
  margin-top: 5px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 3rem;
}
.guide-utilisateur > span {
  width: 6rem;
  -ms-flex-item-align: center;
      align-self: center;
}
.vx-admin {
  background: #F4F4F4;
  height: 100%;
}
.vx-admin .row:last-child > *:last-child .admin-card {
  margin-bottom: 0;
}
.vx-admin .col-lg-1,
.vx-admin .col-lg-10,
.vx-admin .col-lg-11,
.vx-admin .col-lg-12,
.vx-admin .col-lg-2,
.vx-admin .col-lg-3,
.vx-admin .col-lg-4,
.vx-admin .col-lg-5,
.vx-admin .col-lg-6,
.vx-admin .col-lg-7,
.vx-admin .col-lg-8,
.vx-admin .col-lg-9,
.vx-admin .col-md-1,
.vx-admin .col-md-10,
.vx-admin .col-md-11,
.vx-admin .col-md-12,
.vx-admin .col-md-2,
.vx-admin .col-md-3,
.vx-admin .col-md-4,
.vx-admin .col-md-5,
.vx-admin .col-md-6,
.vx-admin .col-md-7,
.vx-admin .col-md-8,
.vx-admin .col-md-9,
.vx-admin .col-sm-1,
.vx-admin .col-sm-10,
.vx-admin .col-sm-11,
.vx-admin .col-sm-12,
.vx-admin .col-sm-2,
.vx-admin .col-sm-3,
.vx-admin .col-sm-4,
.vx-admin .col-sm-5,
.vx-admin .col-sm-6,
.vx-admin .col-sm-7,
.vx-admin .col-sm-8,
.vx-admin .col-sm-9,
.vx-admin .col-xs-1,
.vx-admin .col-xs-10,
.vx-admin .col-xs-11,
.vx-admin .col-xs-12,
.vx-admin .col-xs-2,
.vx-admin .col-xs-3,
.vx-admin .col-xs-4,
.vx-admin .col-xs-5,
.vx-admin .col-xs-6,
.vx-admin .col-xs-7,
.vx-admin .col-xs-8,
.vx-admin .col-xs-9 {
  padding: 0 1rem;
}
.admin-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.admin-drawer-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  -webkit-transition: opacity .225s;
  transition: opacity .225s;
  will-change: opacity;
  width: 300px;
}
.admin-drawer {
  padding: 1.5rem;
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 100%;
  width: 320px;
  background: #FFF;
  overflow: auto;
  -webkit-box-shadow: 0 0 70px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 70px rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.87);
  -webkit-transition: -webkit-transform .225s;
  transition: -webkit-transform .225s;
  transition: transform .225s;
  transition: transform .225s, -webkit-transform .225s;
  will-change: transform;
}
.admin-drawer-click-catcher {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
}
.admin-drawer .quote-text {
  padding-top: 0;
  padding-bottom: 0;
}
.admin-drawer .quote-text div:first-child {
  margin-bottom: 4px;
}
.admin-drawer .vx-list .list-item .list-item-icon {
  opacity: .26;
  vertical-align: top;
}
.admin-drawer .entry-title {
  padding: 3px 0 2px 0;
  opacity: .72;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.admin-drawer .list-item:not(.collapsed) .entry-title {
  opacity: .87;
}
.admin-drawer .list-item:not(.collapsed):hover .entry-title {
  opacity: 1;
}
.admin-drawer .admin-menu > .vx-list > .list-item {
  cursor: pointer;
}
.admin-drawer > .vx-list > .list-item .list-item-text {
  text-decoration: none;
  color: #000;
  opacity: .87;
  font-weight: normal;
}
.admin-drawer .admin-menu > .vx-list > .list-item:hover .entry-title {
  opacity: 1;
}
.admin-drawer .admin-menu > .vx-list > .list-item:hover .list-item-icon {
  opacity: .54;
}
.admin-drawer a.list-item {
  text-decoration: none;
}
.admin-drawer a.list-item .list-item-icon {
  color: #000;
}
.admin-drawer a.list-item:hover .list-item-icon {
  opacity: .54;
}
.admin-drawer .entry-sub-list {
  padding-left: 2rem;
  opacity: .87;
}
.admin-drawer .entry-sub-list-icon {
  font-size: 0.8rem;
  vertical-align: middle;
  opacity: .5;
}
.admin-drawer .entry-sub-list:hover {
  opacity: 1;
}
.admin-drawer .entry-sub-list .list-item {
  font-size: .875rem;
  color: rgba(0, 0, 0, 0.72);
  font-weight: normal;
  text-decoration: none;
}
.admin-drawer .entry-sub-list .list-item:hover {
  color: #000;
}
.admin-drawer .entry-sub-list .list-item.active {
  color: #417cff;
  font-weight: 500;
}
.admin-drawer .drawer-dates {
  margin: 1rem 0;
}
.admin-menu {
  margin-bottom: 0;
}
.admin-menu .panel {
  border: none;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.admin-menu .sub-menu {
  overflow: hidden;
}
.drawer-logo.placeholder {
  padding: .75rem;
}
.drawer-sep {
  height: 1px;
  margin: 1rem 0;
  margin-left: -2.5rem;
  margin-right: -1.5rem;
  background: rgba(0, 0, 0, 0.12);
}
.admin-content {
  margin-left: 300px;
  height: 100%;
  padding: 0 0 1em 1em;
  overflow: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.admin-card {
  background: #FFF;
  border-radius: 2px;
  min-height: 150px;
  -webkit-box-shadow: 0 0 70px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 70px rgba(0, 0, 0, 0.06);
  margin-bottom: 0.75rem;
}
.admin-card .card-block-with-sep {
  padding: 0;
  border-bottom: 1px solid rgba(119, 119, 119, 0.5);
}
.admin-card .card-content {
  padding: 1.5em 1.5em 4em;
}
.admin-card .card-buttons {
  padding: .5rem;
}
.admin-card .card-buttons.with-sep {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.admin-card .card-data-title {
  margin-bottom: 0;
  padding: 1.5rem;
}
.admin-card .card-data-title h2 {
  margin-bottom: 0;
}
.admin-card-header {
  padding: 2rem;
  -webkit-box-shadow: 0 0 70px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 70px rgba(0, 0, 0, 0.06);
}
.admin-drawer-opener {
  display: none;
  padding: 1.25rem 0;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
.admin-drawer-opener i,
.admin-drawer-opener span {
  vertical-align: middle;
}
.btn-like {
  text-transform: uppercase;
  color: #000;
  opacity: .87;
  padding: 8px 0;
  margin-right: 16px;
  display: inline-block;
}
.btn-like i {
  display: inline-block;
  vertical-align: middle;
  margin-right: .5rem;
}
.btn-like span {
  height: 24px;
  line-height: 24px;
  display: inline-block;
  vertical-align: middle;
}
.max-height-500 {
  max-height: 500px;
  overflow-y: auto;
}
.max-height-500 .row {
  margin-left: initial;
  margin-right: initial;
}
.vx-admin table.statistique {
  table-layout: auto;
}
.vx-admin table.statistique thead tr th,
.vx-admin table.statistique.with-sep thead tr th,
.vx-admin table.statistique tbody tr td,
.vx-admin table.statistique.with-sep tbody tr td {
  word-wrap: break-word;
  white-space: normal;
}
.vx-admin table.statistique tfoot tr td,
.vx-admin table.statistique.with-sep tfoot tr td {
  white-space: nowrap;
}
.vx-admin table.with-sep tbody tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.vx-admin table.with-sep tbody tr.header {
  border: 1px solid #417cff;
}
.vx-admin table.with-sep tbody tr.header td {
  border-top: 1px solid #417cff;
  border-bottom: 1px solid #417cff;
  color: #417cff;
}
.vx-admin table.with-sep tfoot tr td {
  border-top: 1px solid #417cff;
}
.vx-admin table tfoot td {
  font-weight: 700;
  color: #417cff;
  opacity: 1;
}
.vx-admin table th {
  font-size: 1rem;
  padding: 1rem 1rem 1rem 0;
  display: table-cell;
  vertical-align: top;
}
.vx-admin table.smaller th {
  font-size: 0.9rem;
}
.vx-admin table th.numeric,
.vx-admin table td.numeric {
  text-align: right;
}
.vx-admin table.smaller td {
  font-size: 0.813rem;
}
.vx-admin table th:last-child,
.vx-admin table td:last-child {
  padding-right: 0;
}
.vx-admin table td.title:first-child {
  opacity: 0.80;
  font-weight: 500;
  width: 25%;
  white-space: pre-wrap;
  color: #000;
}
.vx-admin .card-data {
  overflow-x: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.vx-admin .card-data table th:first-child,
.vx-admin .card-data table td:first-child {
  padding-left: 1.5rem;
}
.vx-admin .card-data table th:last-child,
.vx-admin .card-data table td:last-child {
  padding-right: 1.5rem;
}
.cliquable:hover {
  background-color: rgba(65, 124, 255, 0.5);
  cursor: pointer;
}
a.picto_creer,
a.picto_creer:hover,
a.picto_editer,
a.picto_editer:hover,
a.picto_telecharger,
a.picto_telecharger:hover,
a.picto_lien,
a.picto_lien:hover,
a.picto_coche,
a.picto_coche:hover,
a.picto_erreur,
a.picto_erreur:hover,
a.picto_alert,
a.picto_alert:hover,
a.picto_vide,
a.picto_vide:hover,
a.picto_consulter,
a.picto_consulter:hover,
a.picto_miseajour,
a.picto_miseajour:hover,
a.picto_duplicata,
a.picto_duplicata:hover,
a.picto_supprimer,
a.picto_supprimer:hover,
a.picto_enlever,
a.picto_enlever:hover,
a.picto_bloquer,
a.picto_bloquer:hover,
a.verrou_ouvert,
a.verrou_ouvert:hover,
a.picto_droite,
a.picto_droite:hover,
a.picto_gauche,
a.picto_gauche:hover,
a.picto_decroissant,
a.picto_decroissant:hover,
a.picto_configuration,
a.picto_configuration:hover,
a.picto_croissant,
a.picto_croissant:hover,
a.picto_description,
a.picto_description:hover,
a.picto_visibility,
a.picto_visibility:hover,
a.picto_key,
a.picto_key:hover,
a.picto_verrou_ouvert,
a.picto_verrou_ouvert:hover,
a.picto_verrou_ferme,
a.picto_verrou_ferme:hover,
a.picto_exclamation,
a.picto_exclamation:hover,
a.picto_group,
a.picto_group:hover,
a.picto_person,
a.picto_person:hover,
a.picto_person_outline,
a.picto_person_outline:hover,
a.picto_swap_vert,
a.picto_swap_vert:hover,
a.verrou_ferme,
a.verrou_ferme:hover {
  text-decoration: none;
}
.picto_font-size_32:before {
  font-size: 32px !important;
}
.picto_swap_vert:before {
  content: '\E8D5';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_person_outline:before {
  content: '\E7FF';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_depouillement:before {
  content: '\E862';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_lock:before {
  content: '\E897';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_person:before {
  content: '\E7FD';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_exclamation:before {
  content: '\E645';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #d9534f;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_group:before {
  content: '\E7EF';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_key:before {
  content: '\E0DA';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_visibility:before {
  content: '\E8F4';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_description:before {
  content: '\E873';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_configuration:before {
  content: '\E8B8';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_creer:before {
  content: '\E145';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  /*--adjust as necessary--*/
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_editer:before {
  content: "\E863";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  /*--adjust as necessary--*/
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_telecharger:before {
  content: '\E2C4';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  /*--adjust as necessary--*/
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_lien:before {
  content: '\E157';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_coche:before {
  content: "\E876";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #24ae60;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_erreur:before {
  content: "\E000";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #d9534f;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_alert:before {
  content: "\E002";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #e6792f;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_vide:before {
  content: '\E612';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_consulter:before {
  content: "\E8B6";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_miseajour:before {
  content: '\E028';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_duplicata:before {
  content: '\E158';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_supprimer:before {
  content: '\E872';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_enlever:before {
  content: '\E15B';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_bloquer:before {
  content: '\E15C';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_croissant:before {
  content: '\E5CE';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_decroissant:before {
  content: '\E5CF';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 22px;
  padding-right: 0.5em;
  position: relative;
  top: 6px;
}
.picto_gauche:before {
  content: '\E5CB';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 25px;
  padding-right: 0.5em;
}
.picto_droite:before {
  content: '\E5CC';
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 25px;
  padding-right: 0.5em;
}
.picto_verrou_ouvert:before {
  content: "\E898";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 25px;
  padding-right: 0.5em;
}
.picto_verrou_ferme:before {
  content: "\E897";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #777;
  font-size: 25px;
  padding-right: 0.5em;
}
.verrou_ouvert:before {
  content: "\E898";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #d9534f;
  font-size: 100px;
  position: relative;
  left: calc(50% - 50px);
}
.verrou_ferme:before {
  content: "\E897";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: normal;
  color: #24ae60;
  font-size: 100px;
  position: relative;
  left: calc(50% - 50px);
}
.picto-no-padding:before {
  padding: 0;
}
/* Pour le champ personnalis? jsGrid de type 'picto', supprime le padding par d?faut*/
.jsgrid-picto-extra:before {
  padding: 1px;
}
a[class^="picto"]:hover {
  cursor: pointer;
}
.picto_timeStep {
  background-image: url('/assets/img/dotted_vertical_line.png');
  background-position: 14px top;
  background-repeat: no-repeat;
}
.picto_timeStep:hover {
  cursor: default;
}
/*  -------------------------  MESSAGE DE CONFIRMATION ET D'ERREUR  ----------------------------------- */
.message_confirmation {
  font-size: 0.875em;
  color: #24ae60;
}
.message_warning {
  font-size: 0.875em;
  color: #e6792f;
}
.message_erreur {
  font-size: 0.875em;
  color: #d9534f;
}
@media screen and (min-width: 1600px) {
  .col-xl-6 {
    width: 50%;
  }
}
@media screen and (max-width: 1200px) {
  .admin-drawer {
    padding: 4vw;
  }
  .admin-drawer .drawer-sep {
    margin: 0rem -4vw;
  }
  .admin-drawer-container {
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    width: 100%;
  }
  .admin-drawer-container.open {
    opacity: 1;
    pointer-events: auto;
  }
  .admin-drawer-click-catcher {
    will-change: opacity;
  }
  .admin-drawer {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .admin-drawer-container.open .admin-drawer {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .admin-drawer-container.open .admin-drawer-click-catcher {
    opacity: 1;
    pointer-events: auto;
  }
  .admin-content {
    padding: 4vw;
    padding-top: 0;
    width: 100%;
    margin-left: 0;
  }
  .admin-drawer-opener {
    display: block;
  }
}
.isDisabled {
  color: grey;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}
/* Fenêtre modal (popin), utilisé pour l'import des participants
   Attention a ne pas casser le comportement des modals lors de modifications/surcharges */
.modal {
  display: none;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.85) 50% 50% no-repeat;
}
.modal .message {
  display: block;
  position: absolute;
  top: 40%;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
.modal #lienRetourAccueil {
  display: block;
  position: absolute;
  top: 60%;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
}
/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.vx-admin.loading {
  overflow: hidden;
}
/* Anytime the body has the loading class, our
   modal element will be visible */
body.vx-admin.loading .modal {
  display: block;
}
/* administration configuration */
.param-input {
  width: 100%;
}
.row-selected-primary {
  color: #417cff;
  font-weight: bold;
}
/* Exemple d'utilisation dans le dev guide Gestionnaire*/
.vx-admin .panel-card {
  width: 100%;
}
.vx-admin .panel-card .big-icon {
  width: 133px;
  height: 166px;
  max-width: 8vw;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4rem;
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.vx-admin .panel-card .card-panel {
  background: #FCFCFC;
  padding: 1rem 2rem;
  width: 260px;
}
.vx-admin .panel-card .card-panel.success,
.vx-admin .panel-card .card-panel.error {
  color: #FFF;
}
.vx-admin .panel-card .card-panel.success {
  background: #24ae60;
}
.vx-admin .panel-card .card-panel.error {
  background: #d9534f;
}
.vx-admin .panel-card .card-panel .panel-icon {
  position: relative;
  margin: 0 auto;
  width: 136px;
}
.vx-admin .panel-card .card-panel .panel-icon .big {
  font-size: 136px;
}
.vx-admin .panel-card .card-panel .panel-icon .small {
  position: absolute;
  bottom: -24px;
  right: -13px;
  font-size: 92px;
  text-shadow: 0 8px 0 #d9534f;
}
.vx-admin .panel-card .card-panel.error .panel-icon .small.bg {
  text-shadow: 0 -8px 0 #d9534f;
}
.vx-admin .panel-card .card-panel.success .panel-icon .small {
  text-shadow: 0 8px 0 #24ae60;
  bottom: 2px;
  right: -3px;
}
.vx-admin .panel-card .card-panel.success .panel-icon .small.bg {
  text-shadow: 0 -8px 0 #24ae60;
}
.vx-admin .panel-card .card-panel .panel-text {
  margin: 2rem 0;
}
#accueil-admin .legende-bv {
  font-size: 0.750rem;
  margin-top: 10px;
}
#accueil-admin .legende-bv .separator {
  padding-left: 3px;
  padding-right: 5px;
}
@media screen and (max-width: 991px) {
  #accueil-admin .bv-icon-cell {
    width: 65px !important;
  }
  #accueil-admin .bv-name-cell {
    width: 250px !important;
  }
  #accueil-admin .bv-comment-cell {
    width: 200px !important;
  }
}
.withoutPadding {
  padding: 0;
}
.select-field select:focus + label {
  color: #417cff;
  opacity: 1;
}
.select-field select:focus:not([selected]) {
  border-bottom: 1px solid #417cff;
  -webkit-box-shadow: inset 0 -1px 0 0 #417cff;
  box-shadow: inset 0 -1px 0 0 #417cff;
}
.table-striped > thead > tr > th {
  color: #417cff;
  font-weight: bold;
}
