/*---- GLOBAL ----*/
* {
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
body {
  overflow-y: scroll;
  font-family: 'Quicksand', 'Verdana', Arial, sans-serif;
}
body a {
    text-decoration: none;
    color: #d20000;
}
.clear {
  clear: both;
}
.uppercase {
  text-transform: uppercase;
}
/* Transition color */
.transition-color {
    transition: color 0.3s;
    -o-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -webkit-transition: color 0.3s;
}
.transition-background {
    transition: background 0.3s;
    -o-transition: background 0.3s;
    -ms-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -webkit-transition: background 0.3s;
}
.transition-border {
    transition: border 0.3s;
    -o-transition: border 0.3s;
    -ms-transition: border 0.3s;
    -moz-transition: border 0.3s;
    -webkit-transition: border 0.3s;
}
.transition-opacity {
    transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
}

/* Border radius */
.border-radius-5 {
    border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.border-radius-10 {
    border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
.border-radius-50 {
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

/* Box Shadow */
.box-shadow-black {
    box-shadow: 2px 0px 3px #ddd;
    -o-box-shadow: 2px 0px 3px #ddd;
    -ms-box-shadow: 2px 0px 3px #ddd;
    -moz-box-shadow: 2px 0px 3px #ddd;
    -webkit-box-shadow: 2px 0px 3px #ddd;
}
.box-shadow-black-left {
    box-shadow: -2px 0px 3px #ddd;
    -o-box-shadow: -2px 0px 3px #ddd;
    -ms-box-shadow: -2px 0px 3px #ddd;
    -moz-box-shadow: -2px 0px 3px #ddd;
    -webkit-box-shadow: -2px 0px 3px #ddd;
}
.box-shadow-bottom {
    box-shadow: 2px 3px 3px #dddddd;
    -o-box-shadow: 2px 3px 3px #dddddd;
    -ms-box-shadow: 2px 3px 3px #dddddd;
    -moz-box-shadow: 2px 3px 3px #dddddd;
    -webkit-box-shadow: 2px 3px 3px #dddddd;
}
.position-relative {
  position: relative;
}
.no-text-select {
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome, Safari, OpĆ©ra depuis la version 15 */
  -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
  user-select: none; /* PropriĆ©tĆ© standard */
}
.text-align-right {
  text-align: right;
}
.text-align-center {
  text-align: center;
}
.texte-barre {
  text-decoration:line-through;
  font-size: 12px !important;
  color: #a51926 !important;
}
.switch {
  padding: 5px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #eeeeee;
  margin: 10px 0;
  cursor: pointer;
  width: 25%;
  float: left;
  font-size: 14px;
  text-align: right;
}
.switch-container,
.switch-middle,
.switch-off,
.switch-on,
.switch-slide {
  display: inline-block;
  vertical-align: middle;
}
.switch-container {
  width: 55px;
  background: #548daa;
  overflow: hidden;
  margin-left: 5px;
}
.switch-slide {
  width: 100px;
  background: yellow;
}
.switch-off,
.switch-on {
  width: 45%;
  padding: 0 8px;
  height: 26px;
  float: left;
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  line-height: 26px;
}
.switch-off {
  background: red;
}
.switch-on {
  background: #356635;
  margin-left: -45px;

  transition: margin-left 0.3s;
  -o-transition: margin-left 0.3s;
  -ms-transition: margin-left 0.3s;
  -moz-transition: margin-left 0.3s;
  -wbekit-transition: margin-left 0.3s;
}
.slide-show {
  margin-left: 0;
}
.switch-middle {
  width: 10%;
  height: 26px;
  float: left;
  border: 1px solid #548daa;
  background: #548daa;
}
.switch input {
  display: none;
}
.text-checkbox {
    float: right;
    width: 72%;
}
.left-switch {
    float: left;
    width: 55px;
}
.fieldset {
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
}
.fieldset-label {
    position: absolute;
    padding: 5px;
    height: 30px;
    top: -15px;
    left: 20px;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid #eeeeee;
    text-transform: uppercase;
    background: #ffffff;
}
.fieldset-content {
    padding: 20px 10px;
    font-size: 14px;
}
.underligne {
    text-decoration: underline;
}
.align-justify {
    text-align: justify;
}
.fb-line-ombree {
  border-top: 1px solid #cecece;
  margin-bottom: 20px;
}
.flash-box {
  position: fixed;
  z-index: 15;
  padding: 20px;
  width: 300px;
  height: 200px;

  overflow-y: auto;
  box-shadow: 0px 5px 10px 5px #cecece;
  -o-box-shadow: 0px 5px 10px 5px #cecece;
  -ms-box-shadow: 0px 5px 10px 5px #cecece;
  -moz-box-shadow: 0px 5px 10px 5px #cecece;
  -webkit-box-shadow: 0px 5px 10px 5px #cecece;
}
.flash-box-error {
  background: #ffccd5;
  color: #c9184a;
}
.flash-box-success {
  background: #c7f9cc;
  color: #2b9348;
}
.flash-box-icon {
  width: 33px;
  height: 33px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  right: 10px;
}
.flash-box-icon-success {
  background: url(../images/icons/close-error.png);
}
.flash-box-icon-error {
  background: url(../images/icons/close-error.png);
}
.flash-box-content {
  margin-top: 30px;
  font-size: 14px;
}
.flash-box-close {
  position: absolute;
  display: block;
  right: -10px;
  top: -44px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: url(../images/icons/close-error.png) center center no-repeat;
}
.box-border-shadow {
  box-shadow: 0px 5px 10px 5px #cecece;
  -o-box-shadow: 0px 5px 10px 5px #cecece;
  -ms-box-shadow: 0px 5px 10px 5px #cecece;
  -moz-box-shadow: 0px 5px 10px 5px #cecece;
  -webkit-box-shadow: 0px 5px 10px 5px #cecece;
}
.position-relative {
  position: relative;
}
.border-radius-2 {
  border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.padding-10 {
  padding: 10px;
}
.margin-top-20 {
  margin-top: 20px;
}
.option-radio {
    float: left;
    margin-right: 20px;
    margin-top: 5px;
    cursor: pointer;
    outline: none;
}
.option-radio:hover .option-radio-bulle {
    border: 2px solid #449b35;
}
.option-radio .option-radio-bulle {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    border: 2px solid #cccccc;
}
.option-radio .option-radio-texte {
    display: inline-block;
}
.option-radio-active .option-radio-bulle {
    border: 2px solid #449b35 !important;
    background: #449b35 url(../images/icons/bulle.png) center center no-repeat;
}
.option-radio-active .option-radio-texte {
    font-weight: 500;
}
.notes {
    margin-top: 10px;
    margin-bottom: 10px;
}
.bulle-note {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 24px;
    background: url(../images/icons/etoile-off-25x25.png) center center no-repeat;
}
.bulle-note-15 {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 14px;
    background: url(../images/icons/etoile-off-15x15.png) center center no-repeat;
}
.bulle-activ {
    background: url(../images/icons/etoile-on-15x15.png) center center no-repeat !important;
}
.label-note {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}
.content-note {
    display: inline-block;
    margin-bottom: 10px;
}
.action-note {
    display: inline-block;
    vertical-align: middle;
}
.action-note span:hover {
    cursor: pointer;
}
.note-active {
    background: url(../images/icons/etoile-on-25x25.png) center center no-repeat !important;
}
.ombre-form {
  box-shadow: 0px 5px 10px 5px #eae4e9;
}
button {
  border: none;
  font-family: 'Quicksand', 'Verdana', Arial, sans-serif;
}
.grid-4 {
  width: 25%;
}
.grid-2, .grid-3, .grid-4 {
  float: left;
  padding: 10px;
}
.all-box-shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -ms-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -moz-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.ombre-interne {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  -wekbit-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.ombre-externe {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
#pagination {
  padding: 5px 0px;
  border-top: 1px solid #4e4e4e;
  margin-top: 20px;
  margin-left: -5px;
  margin-right: -5px;
  text-align: center;
}
#pagination span {
  display: inline-block;
}
#pagination span a {
  display: block;
  text-decoration: none;
  padding: 10px;
}
.link-page-no-actif {
  padding: 10px;
  display: block;
  border: 1px solid #8e8e8e;
}
#pagination .link-page-actif a {
  color: #fff;
  background: #000;
  border: 1px solid #000;

  transition: background 0.3s;
  -o-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -webkit-transition: background 0.3s;
}
#pagination .link-page-actif a:hover {
  background: #444;
}
#prev, #next {
  position: absolute;
  width: 50px;
  border: none;
  cursor: pointer;
  top: 0;
  bottom: 0;
}
#pagination a {
    color: #005fb3;
    font-weight: bold;
}
#pagination a, #pagination .link-page-actif,
#pagination .link-page-no-actif {
    display: inline-block;
    padding: 5px;
    margin: 5px;
    text-align: center;
    width: 50px;
    border: 1px solid #dddddd;
    font-size: 13px;
}
#pagination a:hover {
    cursor: pointer;
    background: #f8cc00;
    color: #000000;
}
#pagination .link-page-actif,
#pagination .link-page-no-actif {
    background: #eeeeee;
    font-weight: 700;
}
.display-none {
  display: none;
}
.border-error {
  border: 1px solid rgba(250, 0, 0, 0.25) !important;
}

/* vietnamese */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v21/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
