@charset "UTF-8";
/**
 * Description:  Styles css pour Fondation la dépêche.
 * Version: 1.0.0
 * Last update: 06/02/2017
 * Author: User Name <bastien@orealys.com>
 *
 * Summary:
 *   1. VENDORS
 *	- 1.1. BOOTSTRAP
 *	2. BASE
 *	- 1.1. RESET
 *	- 1.2. TYPOGRAPHY
 *	- 1.3. HELPERS
 *	3. LAYOUT
 *    - 3.1. LAYOUT
 *    - 3.2. GRID
 *    - 3.3. BLOCKS
 *    - 3.4. HEADER
 *    - 3.5. FORMS
 *    - 3.6. FOOTER
 *	4. COMPONENTS
 *    - 4.1. NAVIGATION
 *    - 4.2. ACCORDION
 *    - 4.3. ICONS
 *    - 4.4. CAROUSEL
 *    - 4.5. BUTTONS
 *    - 4.6. DROPDOWN
 *    - 4.7. ANIMATEMIN
 *    - 4.8. LISTE
 *    - 4.9. PAGINATION
 *	5. PAGES
 *    - 5.1. ACCUEIL
 *    - 5.2. METIERS-PRERESULTATS
 *    - 5.3. METIERS-FICHE-DETAIL
 *    - 5.4. VIDEOS-ENTREPRISE
 *    - 5.5. SITEMAP
 *    - 5.6. CONTACT
 */
/*
  * Note: Use ${section-name} to search a specific section
  *
  *
  *
  */
/* Layout
----------------------------------------------------------------------------------------*/
/* Grid
------------------------------------------*/
/* Header
------------------------------------------*/
/* Footer
------------------------------------------*/
/* Navigation
------------------------------------------*/
/* Page content
------------------------------------------*/
/* Breadcrumb */
/* $ANIMATION
   ========================================================================== */
/* nav animation */
@import '//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,600,700,700i|Trirong|Poppins';
.fade-top {
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          transform: translateY(-150%);
}

.fade-top-active {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

/* Slide down
----------------------------------------------------------------------------------------*/
@-webkit-keyframes slide_down {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes slide_down {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

/* WOW
----------------------------------------------------------------------------------------*/
.js .wow {
  visibility: hidden;
}

.no-js .wow {
  visibility: visible;
}

/* Animation on load
----------------------------------------------------------------------------------------*/
.cssanimations .page-content, .fadeIn {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-transform: translate(0, 10px);
  -ms-transform: translate(0, 10px);
  transform: translate(0, 10px);
  -webkit-animation: fadeIn ease-in 1;
          animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

/* ==========================================================================
   $VENDORS
   ========================================================================== */
/*!
 * Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active {
  outline: 0;
}

a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p, .p-like, ol.listing-recherche > li p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@-webkit-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #373a3c;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p, .p-like, ol.listing-recherche > li p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

a {
  color: #0275d8;
  text-decoration: none;
}

a:focus, a:hover {
  color: #014c8c;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
}

[role="button"] {
  cursor: pointer;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

table {
  background-color: transparent;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #818a91;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: left;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
textarea {
  margin: 0;
  line-height: inherit;
  -webkit-border-radius: 0;
          border-radius: 0;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
}

input[type="search"] {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-appearance: none;
}

output {
  display: inline-block;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.h1 {
  font-size: 2.5rem;
}

.h2 {
  font-size: 2rem;
}

.h3 {
  font-size: 1.75rem;
}

.h4 {
  font-size: 1.5rem;
}

.h5 {
  font-size: 1.25rem;
}

.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
}

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 5px;
}

.dl-horizontal {
  margin-right: -4rem;
  margin-left: -4rem;
}

.dl-horizontal::after {
  content: "";
  display: table;
  clear: both;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  line-height: 1.5;
  color: #818a91;
}

.blockquote-footer::before {
  content: "\2014 \00A0";
}

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0;
}

.blockquote-reverse .blockquote-footer::before {
  content: "";
}

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014";
}

.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  -webkit-border-radius: 0.3rem;
          border-radius: 0.3rem;
}

.img-thumbnail {
  padding: 0.25rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #818a91;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f7f7f9;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

kbd {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  -webkit-border-radius: 0.2rem;
          border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  line-height: 1.5;
  color: #373a3c;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-border-radius: 0;
          border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container, .container-xl, .container-11, .container-8 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .container, .container-xl, .container-11, .container-8 {
    max-width: 720px;
  }
}

@media (min-width: 960px) {
  .container, .container-xl, .container-11, .container-8 {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-xl, .container-11, .container-8 {
    max-width: 1200px;
  }
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.col-xs-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
}

.col-xs-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
}

.col-xs-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

.col-xs-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
}

.col-xs-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
}

.col-xs-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.col-xs-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
}

.col-xs-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
}

.col-xs-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}

.col-xs-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
}

.col-xs-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
}

.col-xs-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 960px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1640px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .col-xl-pull-0 {
    right: auto;
  }
  .col-xl-pull-1 {
    right: 8.33333%;
  }
  .col-xl-pull-2 {
    right: 16.66667%;
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-pull-4 {
    right: 33.33333%;
  }
  .col-xl-pull-5 {
    right: 41.66667%;
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-pull-7 {
    right: 58.33333%;
  }
  .col-xl-pull-8 {
    right: 66.66667%;
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-pull-10 {
    right: 83.33333%;
  }
  .col-xl-pull-11 {
    right: 91.66667%;
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-push-0 {
    left: auto;
  }
  .col-xl-push-1 {
    left: 8.33333%;
  }
  .col-xl-push-2 {
    left: 16.66667%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-push-4 {
    left: 33.33333%;
  }
  .col-xl-push-5 {
    left: 41.66667%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-push-7 {
    left: 58.33333%;
  }
  .col-xl-push-8 {
    left: 66.66667%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-push-10 {
    left: 83.33333%;
  }
  .col-xl-push-11 {
    left: 91.66667%;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0%;
  }
  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
}

.col-xs-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.col-xs-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .col-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .col-sm-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (min-width: 960px) {
  .col-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .col-md-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (min-width: 1200px) {
  .col-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .col-lg-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (min-width: 1640px) {
  .col-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .col-xl-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

.row-xs-top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row-xs-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.row-xs-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 768px) {
  .row-sm-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-sm-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-sm-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (min-width: 960px) {
  .row-md-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-md-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-md-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (min-width: 1200px) {
  .row-lg-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-lg-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-lg-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (min-width: 1640px) {
  .row-xl-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-xl-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-xl-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.col-xs-top {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

.col-xs-center {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
}

.col-xs-bottom {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}

@media (min-width: 768px) {
  .col-sm-top {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .col-sm-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
  }
  .col-sm-bottom {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}

@media (min-width: 960px) {
  .col-md-top {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .col-md-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
  }
  .col-md-bottom {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}

@media (min-width: 1200px) {
  .col-lg-top {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .col-lg-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
  }
  .col-lg-bottom {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}

@media (min-width: 1640px) {
  .col-xl-top {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .col-xl-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
  }
  .col-xl-bottom {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.table th,
.table td {
  padding: 0.75rem;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #eceeef;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #eceeef;
}

.table tbody + tbody {
  border-top: 2px solid #eceeef;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #eceeef;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #eceeef;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover tbody tr:hover {
  background-color: #f5f5f5;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: #f5f5f5;
}

.table-hover .table-active:hover {
  background-color: #e8e8e8;
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: #e8e8e8;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dff0d8;
}

.table-hover .table-success:hover {
  background-color: #d0e9c6;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #d0e9c6;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d9edf7;
}

.table-hover .table-info:hover {
  background-color: #c4e3f3;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c4e3f3;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
  background-color: #faf2cc;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #faf2cc;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f2dede;
}

.table-hover .table-danger:hover {
  background-color: #ebcccc;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  display: block;
  width: 100%;
  min-height: 0.01%;
  overflow-x: auto;
}

.thead-inverse th {
  color: #fff;
  background-color: #373a3c;
}

.thead-default th {
  color: #55595c;
  background-color: #eceeef;
}

.table-inverse {
  color: #eceeef;
  background-color: #373a3c;
}

.table-inverse.table-bordered {
  border: 0;
}

.table-inverse th,
.table-inverse td,
.table-inverse thead th {
  border-color: #55595c;
}

.table-reflow thead {
  float: left;
}

.table-reflow tbody {
  display: block;
  white-space: nowrap;
}

.table-reflow th,
.table-reflow td {
  border-top: 1px solid #eceeef;
  border-left: 1px solid #eceeef;
}

.table-reflow th:last-child,
.table-reflow td:last-child {
  border-right: 1px solid #eceeef;
}

.table-reflow thead:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tbody:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td {
  border-bottom: 1px solid #eceeef;
}

.table-reflow tr {
  float: left;
}

.table-reflow tr th,
.table-reflow tr td {
  display: block !important;
  border: 1px solid #eceeef;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  border-color: #66afe9;
  outline: none;
}

.form-control::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.form-control::placeholder {
  color: #999;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #eceeef;
  opacity: 1;
}

.form-control:disabled {
  cursor: not-allowed;
}

.form-control-file,
.form-control-range {
  display: block;
}

.form-control-label {
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 2.25rem;
  }
  input[type="date"].input-sm,
  .input-group-sm input[type="date"].form-control,
  input[type="time"].input-sm,
  .input-group-sm
  input[type="time"].form-control,
  input[type="datetime-local"].input-sm,
  .input-group-sm
  input[type="datetime-local"].form-control,
  input[type="month"].input-sm,
  .input-group-sm
  input[type="month"].form-control {
    line-height: 1.8625rem;
  }
  input[type="date"].input-lg,
  .input-group-lg input[type="date"].form-control,
  input[type="time"].input-lg,
  .input-group-lg
  input[type="time"].form-control,
  input[type="datetime-local"].input-lg,
  .input-group-lg
  input[type="datetime-local"].form-control,
  input[type="month"].input-lg,
  .input-group-lg
  input[type="month"].form-control {
    line-height: 3.16667rem;
  }
}

.form-control-static {
  min-height: 2.25rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
}

.form-control-static.form-control-sm, .form-control-static.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-border-radius: 0.2rem;
          border-radius: 0.2rem;
}

.form-control-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.33333;
  -webkit-border-radius: 0.3rem;
          border-radius: 0.3rem;
}

.form-group {
  margin-bottom: 1rem;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-bottom: 0.75rem;
}

.radio label,
.checkbox label {
  padding-left: 1.25rem;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio label input:only-child,
.checkbox label input:only-child {
  position: static;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: .25rem;
  margin-left: -1.25rem;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -.25rem;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: .75rem;
}

input[type="radio"]:disabled, input[type="radio"].disabled,
input[type="checkbox"]:disabled,
input[type="checkbox"].disabled {
  cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled {
  cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label {
  cursor: not-allowed;
}

.form-control-success,
.form-control-warning,
.form-control-danger {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  background-size: 1.4625rem 1.4625rem;
}

.has-success .text-help,
.has-success .form-control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #5cb85c;
}

.has-success .form-control {
  border-color: #5cb85c;
}

.has-success .input-group-addon {
  color: #5cb85c;
  border-color: #5cb85c;
  background-color: #eaf6ea;
}

.has-success .form-control-feedback {
  color: #5cb85c;
}

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==");
}

.has-warning .text-help,
.has-warning .form-control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #f0ad4e;
}

.has-warning .form-control {
  border-color: #f0ad4e;
}

.has-warning .input-group-addon {
  color: #f0ad4e;
  border-color: #f0ad4e;
  background-color: white;
}

.has-warning .form-control-feedback {
  color: #f0ad4e;
}

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+");
}

.has-danger .text-help,
.has-danger .form-control-label,
.has-danger .radio,
.has-danger .checkbox,
.has-danger .radio-inline,
.has-danger .checkbox-inline,
.has-danger.radio label,
.has-danger.checkbox label,
.has-danger.radio-inline label,
.has-danger.checkbox-inline label {
  color: #d9534f;
}

.has-danger .form-control {
  border-color: #d9534f;
}

.has-danger .input-group-addon {
  color: #d9534f;
  border-color: #d9534f;
  background-color: #fdf7f7;
}

.has-danger .form-control-feedback {
  color: #d9534f;
}

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=");
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .form-control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:focus, .btn:hover {
  text-decoration: none;
}

.btn.focus {
  text-decoration: none;
}

.btn:active, .btn.active {
  background-image: none;
  outline: 0;
}

.btn.disabled, .btn:disabled {
  cursor: not-allowed;
  opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary:hover {
  color: #fff;
  background-color: #025aa5;
  border-color: #01549b;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #025aa5;
  border-color: #01549b;
}

.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #025aa5;
  border-color: #01549b;
  background-image: none;
}

.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #014682;
  border-color: #01315a;
}

.btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary:disabled:focus, .btn-primary:disabled.focus {
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary.disabled:hover, .btn-primary:disabled:hover {
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-secondary {
  color: #373a3c;
  background-color: #fff;
  border-color: #ccc;
}

.btn-secondary:hover {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-secondary:active, .btn-secondary.active,
.open > .btn-secondary.dropdown-toggle {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
  background-image: none;
}

.btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus,
.open > .btn-secondary.dropdown-toggle:hover,
.open > .btn-secondary.dropdown-toggle:focus,
.open > .btn-secondary.dropdown-toggle.focus {
  color: #373a3c;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary:disabled:focus, .btn-secondary:disabled.focus {
  background-color: #fff;
  border-color: #ccc;
}

.btn-secondary.disabled:hover, .btn-secondary:disabled:hover {
  background-color: #fff;
  border-color: #ccc;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}

.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
  background-image: none;
}

.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1f7e9a;
}

.btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info:disabled:focus, .btn-info:disabled.focus {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info.disabled:hover, .btn-info:disabled:hover {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}

.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
  background-image: none;
}

.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #2d672d;
}

.btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success:disabled:focus, .btn-success:disabled.focus {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success.disabled:hover, .btn-success:disabled:hover {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
}

.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
}

.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
  background-image: none;
}

.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #b06d0f;
}

.btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning:disabled:focus, .btn-warning:disabled.focus {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning.disabled:hover, .btn-warning:disabled:hover {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
}

.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
  background-image: none;
}

.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #8b211e;
}

.btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger:disabled:focus, .btn-danger:disabled.focus {
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger.disabled:hover, .btn-danger:disabled:hover {
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-primary-outline {
  color: #0275d8;
  background-image: none;
  background-color: transparent;
  border-color: #0275d8;
}

.btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline:active, .btn-primary-outline.active,
.open > .btn-primary-outline.dropdown-toggle {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary-outline:hover {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary-outline.disabled:focus, .btn-primary-outline.disabled.focus, .btn-primary-outline:disabled:focus, .btn-primary-outline:disabled.focus {
  border-color: #43a7fd;
}

.btn-primary-outline.disabled:hover, .btn-primary-outline:disabled:hover {
  border-color: #43a7fd;
}

.btn-secondary-outline {
  color: #ccc;
  background-image: none;
  background-color: transparent;
  border-color: #ccc;
}

.btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline:active, .btn-secondary-outline.active,
.open > .btn-secondary-outline.dropdown-toggle {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}

.btn-secondary-outline:hover {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}

.btn-secondary-outline.disabled:focus, .btn-secondary-outline.disabled.focus, .btn-secondary-outline:disabled:focus, .btn-secondary-outline:disabled.focus {
  border-color: white;
}

.btn-secondary-outline.disabled:hover, .btn-secondary-outline:disabled:hover {
  border-color: white;
}

.btn-info-outline {
  color: #5bc0de;
  background-image: none;
  background-color: transparent;
  border-color: #5bc0de;
}

.btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline:active, .btn-info-outline.active,
.open > .btn-info-outline.dropdown-toggle {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info-outline:hover {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info-outline.disabled:focus, .btn-info-outline.disabled.focus, .btn-info-outline:disabled:focus, .btn-info-outline:disabled.focus {
  border-color: #b0e1ef;
}

.btn-info-outline.disabled:hover, .btn-info-outline:disabled:hover {
  border-color: #b0e1ef;
}

.btn-success-outline {
  color: #5cb85c;
  background-image: none;
  background-color: transparent;
  border-color: #5cb85c;
}

.btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline:active, .btn-success-outline.active,
.open > .btn-success-outline.dropdown-toggle {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success-outline:hover {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success-outline.disabled:focus, .btn-success-outline.disabled.focus, .btn-success-outline:disabled:focus, .btn-success-outline:disabled.focus {
  border-color: #a3d7a3;
}

.btn-success-outline.disabled:hover, .btn-success-outline:disabled:hover {
  border-color: #a3d7a3;
}

.btn-warning-outline {
  color: #f0ad4e;
  background-image: none;
  background-color: transparent;
  border-color: #f0ad4e;
}

.btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline:active, .btn-warning-outline.active,
.open > .btn-warning-outline.dropdown-toggle {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning-outline:hover {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning-outline.disabled:focus, .btn-warning-outline.disabled.focus, .btn-warning-outline:disabled:focus, .btn-warning-outline:disabled.focus {
  border-color: #f8d9ac;
}

.btn-warning-outline.disabled:hover, .btn-warning-outline:disabled:hover {
  border-color: #f8d9ac;
}

.btn-danger-outline {
  color: #d9534f;
  background-image: none;
  background-color: transparent;
  border-color: #d9534f;
}

.btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline:active, .btn-danger-outline.active,
.open > .btn-danger-outline.dropdown-toggle {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger-outline:hover {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger-outline.disabled:focus, .btn-danger-outline.disabled.focus, .btn-danger-outline:disabled:focus, .btn-danger-outline:disabled.focus {
  border-color: #eba5a3;
}

.btn-danger-outline.disabled:hover, .btn-danger-outline:disabled:hover {
  border-color: #eba5a3;
}

.btn-link {
  font-weight: normal;
  color: #0275d8;
  -webkit-border-radius: 0;
          border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
  background-color: transparent;
}

.btn-link, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

.btn-link:hover {
  border-color: transparent;
}

.btn-link:focus, .btn-link:hover {
  color: #014c8c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link:disabled:focus, .btn-link:disabled:hover {
  color: #818a91;
  text-decoration: none;
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.33333;
  -webkit-border-radius: 0.3rem;
          border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-border-radius: 0.2rem;
          border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height;
  transition-property: height;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: .25rem;
  margin-left: .25rem;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 1rem;
  color: #373a3c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.5;
  color: #373a3c;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #2b2d2f;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0275d8;
  outline: 0;
}

.dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
  color: #818a91;
}

.dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)";
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #818a91;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 0.3em solid;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: inline-block;
}

.nav-link:focus, .nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #818a91;
}

.nav-link.disabled, .nav-link.disabled:focus, .nav-link.disabled:hover {
  color: #818a91;
  cursor: not-allowed;
  background-color: transparent;
}

.nav-inline .nav-item {
  display: inline-block;
}

.nav-inline .nav-item + .nav-item,
.nav-inline .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs::after {
  content: "";
  display: table;
  clear: both;
}

.nav-tabs .nav-item {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs .nav-item + .nav-item {
  margin-left: .2rem;
}

.nav-tabs .nav-link {
  display: block;
  padding: 0.5em 1em;
  border: 1px solid transparent;
  -webkit-border-radius: 0.25rem 0.25rem 0 0;
          border-radius: 0.25rem 0.25rem 0 0;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: #eceeef #eceeef #ddd;
}

.nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .nav-link.disabled:hover {
  color: #818a91;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover,
.nav-tabs .nav-item.open .nav-link,
.nav-tabs .nav-item.open .nav-link:focus,
.nav-tabs .nav-item.open .nav-link:hover {
  color: #55595c;
  background-color: #fff;
  border-color: #ddd #ddd transparent;
}

.nav-pills::after {
  content: "";
  display: table;
  clear: both;
}

.nav-pills .nav-item {
  float: left;
}

.nav-pills .nav-item + .nav-item {
  margin-left: .2rem;
}

.nav-pills .nav-link {
  display: block;
  padding: 0.5em 1em;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover {
  color: #fff;
  cursor: default;
  background-color: #0275d8;
}

.nav-stacked .nav-item {
  display: block;
  float: none;
}

.nav-stacked .nav-item + .nav-item {
  margin-top: .2rem;
  margin-left: 0;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  -webkit-border-top-right-radius: 0;
          border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
          border-top-left-radius: 0;
}

.navbar {
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar::after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 768px) {
  .navbar {
    -webkit-border-radius: 0.25rem;
            border-radius: 0.25rem;
  }
}

.navbar-full {
  z-index: 1000;
}

@media (min-width: 768px) {
  .navbar-full {
    -webkit-border-radius: 0;
            border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    -webkit-border-radius: 0;
            border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
}

.navbar-fixed-bottom {
  bottom: 0;
}

.navbar-sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
}

@media (min-width: 768px) {
  .navbar-sticky-top {
    -webkit-border-radius: 0;
            border-radius: 0;
  }
}

.navbar-brand {
  float: left;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.navbar-brand:focus, .navbar-brand:hover {
  text-decoration: none;
}

.navbar-brand > img {
  display: block;
}

.navbar-divider {
  float: left;
  width: 1px;
  padding-top: .425rem;
  padding-bottom: .425rem;
  margin-right: 1rem;
  margin-left: 1rem;
  overflow: hidden;
}

.navbar-divider::before {
  content: "\00a0";
}

.navbar-toggler {
  padding: .5rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: none;
  border: 1px solid transparent;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.navbar-toggler:focus, .navbar-toggler:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .navbar-toggleable-xs {
    display: block !important;
  }
}

@media (min-width: 960px) {
  .navbar-toggleable-sm {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .navbar-toggleable-md {
    display: block !important;
  }
}

.navbar-nav .nav-item {
  float: left;
}

.navbar-nav .nav-link {
  display: block;
  padding-top: .425rem;
  padding-bottom: .425rem;
}

.navbar-nav .nav-link + .nav-link {
  margin-left: 1rem;
}

.navbar-nav .nav-item + .nav-item {
  margin-left: 1rem;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.8);
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.8);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.6);
}

.navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .active > .nav-link:focus,
.navbar-light .navbar-nav .active > .nav-link:hover,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .nav-link.open:focus,
.navbar-light .navbar-nav .nav-link.open:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.active:focus,
.navbar-light .navbar-nav .nav-link.active:hover {
  color: rgba(0, 0, 0, 0.8);
}

.navbar-light .navbar-divider {
  background-color: rgba(0, 0, 0, 0.075);
}

.navbar-dark .navbar-brand {
  color: white;
}

.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  color: white;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .open > .nav-link:hover,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link:focus,
.navbar-dark .navbar-nav .active > .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.open,
.navbar-dark .navbar-nav .nav-link.open:focus,
.navbar-dark .navbar-nav .nav-link.open:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.active:focus,
.navbar-dark .navbar-nav .nav-link.active:hover {
  color: white;
}

.navbar-dark .navbar-divider {
  background-color: rgba(255, 255, 255, 0.075);
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.page-item {
  display: inline;
}

.page-item:first-child .page-link {
  margin-left: 0;
  -webkit-border-bottom-left-radius: 0.25rem;
          border-bottom-left-radius: 0.25rem;
  -webkit-border-top-left-radius: 0.25rem;
          border-top-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  -webkit-border-bottom-right-radius: 0.25rem;
          border-bottom-right-radius: 0.25rem;
  -webkit-border-top-right-radius: 0.25rem;
          border-top-right-radius: 0.25rem;
}

.page-item.active .page-link, .page-item.active .page-link:focus, .page-item.active .page-link:hover {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #0275d8;
  border-color: #0275d8;
}

.page-item.disabled .page-link, .page-item.disabled .page-link:focus, .page-item.disabled .page-link:hover {
  color: #818a91;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.page-link {
  position: relative;
  float: left;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.5;
  color: #0275d8;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.page-link:focus, .page-link:hover {
  color: #014c8c;
  background-color: #eceeef;
  border-color: #ddd;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.33333;
}

.pagination-lg .page-item:first-child .page-link {
  -webkit-border-bottom-left-radius: 0.3rem;
          border-bottom-left-radius: 0.3rem;
  -webkit-border-top-left-radius: 0.3rem;
          border-top-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  -webkit-border-bottom-right-radius: 0.3rem;
          border-bottom-right-radius: 0.3rem;
  -webkit-border-top-right-radius: 0.3rem;
          border-top-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  -webkit-border-bottom-left-radius: 0.2rem;
          border-bottom-left-radius: 0.2rem;
  -webkit-border-top-left-radius: 0.2rem;
          border-top-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  -webkit-border-bottom-right-radius: 0.2rem;
          border-bottom-right-radius: 0.2rem;
  -webkit-border-top-right-radius: 0.2rem;
          border-top-right-radius: 0.2rem;
}

.pager {
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  list-style: none;
}

.pager::after {
  content: "";
  display: table;
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
          border-radius: 15px;
}

.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: #eceeef;
}

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover {
  color: #818a91;
  cursor: not-allowed;
  background-color: #fff;
}

.pager .disabled > span {
  color: #818a91;
  cursor: not-allowed;
  background-color: #fff;
}

.pager-next > a,
.pager-next > span {
  float: right;
}

.pager-prev > a,
.pager-prev > span {
  float: left;
}

.label {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

a.label:focus, a.label:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-pill {
  padding-right: .6em;
  padding-left: .6em;
  -webkit-border-radius: 10rem;
          border-radius: 10rem;
}

.label-default {
  background-color: #818a91;
}

.label-default[href]:focus, .label-default[href]:hover {
  background-color: #687077;
}

.label-primary {
  background-color: #0275d8;
}

.label-primary[href]:focus, .label-primary[href]:hover {
  background-color: #025aa5;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:focus, .label-success[href]:hover {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:focus, .label-info[href]:hover {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:focus, .label-warning[href]:hover {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:focus, .label-danger[href]:hover {
  background-color: #c9302c;
}

.alert {
  padding: 15px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  -webkit-border-radius: 0.25rem;
          border-radius: 0.25rem;
}

.alert > p, .alert > .p-like, ol.listing-recherche > li .alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p, .alert > .p-like + p, .alert > p + .p-like, .alert > .p-like + .p-like, ol.listing-recherche > li .alert > p + .p-like, ol.listing-recherche > li .alert > .p-like + p, ol.listing-recherche > li .alert > p + p {
  margin-top: 5px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: bold;
}

.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c1e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bcdff1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6d5ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7ecb5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9b9;
}

.alert-danger .alert-link {
  color: #843534;
}

.list-group {
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  -webkit-border-top-right-radius: 0.25rem;
          border-top-right-radius: 0.25rem;
  -webkit-border-top-left-radius: 0.25rem;
          border-top-left-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  -webkit-border-bottom-right-radius: 0.25rem;
          border-bottom-right-radius: 0.25rem;
  -webkit-border-bottom-left-radius: 0.25rem;
          border-bottom-left-radius: 0.25rem;
}

.list-group-flush .list-group-item {
  border-width: 1px 0;
  -webkit-border-radius: 0;
          border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

a.list-group-item,
button.list-group-item {
  width: 100%;
  color: #555;
  text-align: inherit;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:focus, a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
  color: #818a91;
  cursor: not-allowed;
  background-color: #eceeef;
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
  color: #818a91;
}

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small {
  color: inherit;
}

.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
  color: #a8d6fe;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:focus, a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:focus, a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:focus, a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:focus, a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9 {
  padding-bottom: 42.85714%;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.embed-responsive-1by1 {
  padding-bottom: 100%;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
}

.close:focus, .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-xs-left {
  float: left !important;
}

.pull-xs-right {
  float: right !important;
}

.pull-xs-none {
  float: none !important;
}

@media (min-width: 768px) {
  .pull-sm-left {
    float: left !important;
  }
  .pull-sm-right {
    float: right !important;
  }
  .pull-sm-none {
    float: none !important;
  }
}

@media (min-width: 960px) {
  .pull-md-left {
    float: left !important;
  }
  .pull-md-right {
    float: right !important;
  }
  .pull-md-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .pull-lg-left {
    float: left !important;
  }
  .pull-lg-right {
    float: right !important;
  }
  .pull-lg-none {
    float: none !important;
  }
}

@media (min-width: 1640px) {
  .pull-xl-left {
    float: left !important;
  }
  .pull-xl-right {
    float: right !important;
  }
  .pull-xl-none {
    float: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.invisible {
  visibility: hidden !important;
}

.text-hide {
  font: "0/0" a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-xs-left {
  text-align: left !important;
}

.text-xs-right {
  text-align: right !important;
}

.text-xs-center {
  text-align: center !important;
}

@media (min-width: 768px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 960px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1640px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-normal {
  font-weight: normal;
}

.font-weight-bold {
  font-weight: bold;
}

.font-italic {
  font-style: italic;
}

.text-muted {
  color: #818a91;
}

.text-primary {
  color: #0275d8 !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: #025aa5;
}

.text-success {
  color: #5cb85c !important;
}

a.text-success:focus, a.text-success:hover {
  color: #449d44;
}

.text-info {
  color: #5bc0de !important;
}

a.text-info:focus, a.text-info:hover {
  color: #31b0d5;
}

.text-warning {
  color: #f0ad4e !important;
}

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f;
}

.text-danger {
  color: #d9534f !important;
}

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c;
}

.m-x-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.m-a-0 {
  margin: 0 0 !important;
}

.m-t-0 {
  margin-top: 0 !important;
}

.m-r-0 {
  margin-right: 0 !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-l-0 {
  margin-left: 0 !important;
}

.m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-a-1 {
  margin: 1rem 1rem !important;
}

.m-t-1 {
  margin-top: 1rem !important;
}

.m-r-1 {
  margin-right: 1rem !important;
}

.m-b-1 {
  margin-bottom: 1rem !important;
}

.m-l-1 {
  margin-left: 1rem !important;
}

.m-x-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.m-y-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-a-2 {
  margin: 1.5rem 1.5rem !important;
}

.m-t-2 {
  margin-top: 1.5rem !important;
}

.m-r-2 {
  margin-right: 1.5rem !important;
}

.m-b-2 {
  margin-bottom: 1.5rem !important;
}

.m-l-2 {
  margin-left: 1.5rem !important;
}

.m-x-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.m-y-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-a-3 {
  margin: 3rem 3rem !important;
}

.m-t-3 {
  margin-top: 3rem !important;
}

.m-r-3 {
  margin-right: 3rem !important;
}

.m-b-3 {
  margin-bottom: 3rem !important;
}

.m-l-3 {
  margin-left: 3rem !important;
}

.m-x-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.m-y-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-a-0 {
  padding: 0 0 !important;
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-l-0 {
  padding-left: 0 !important;
}

.p-x-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-a-1 {
  padding: 1rem 1rem !important;
}

.p-t-1 {
  padding-top: 1rem !important;
}

.p-r-1 {
  padding-right: 1rem !important;
}

.p-b-1 {
  padding-bottom: 1rem !important;
}

.p-l-1 {
  padding-left: 1rem !important;
}

.p-x-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.p-y-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-a-2 {
  padding: 1.5rem 1.5rem !important;
}

.p-t-2 {
  padding-top: 1.5rem !important;
}

.p-r-2 {
  padding-right: 1.5rem !important;
}

.p-b-2 {
  padding-bottom: 1.5rem !important;
}

.p-l-2 {
  padding-left: 1.5rem !important;
}

.p-x-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.p-y-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-a-3 {
  padding: 3rem 3rem !important;
}

.p-t-3 {
  padding-top: 3rem !important;
}

.p-r-3 {
  padding-right: 3rem !important;
}

.p-b-3 {
  padding-bottom: 3rem !important;
}

.p-l-3 {
  padding-left: 3rem !important;
}

.p-x-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.p-y-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pos-f-t {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.hidden-xs-up {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-sm-up {
    display: none !important;
  }
}

@media (max-width: 959px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .hidden-md-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1639px) {
  .hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1640px) {
  .hidden-xl-up {
    display: none !important;
  }
}

.hidden-xl-down {
  display: none !important;
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

/* ==========================================================================
   $BASE
   ========================================================================== */
/* $RESET
   ========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, .p-like, ol.listing-recherche > li p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* $TYPOGRAPHY
========================================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #484848;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p, .p-like, ol.listing-recherche > li p {
  line-height: 2.8rem;
  margin: 0 0 40px;
}

p:empty, .p-like:empty, ol.listing-recherche > li p:empty {
  margin: 0;
}

.p-like, ol.listing-recherche > li p, ol.listing-recherche > li .p-like {
  font-size: 1.6rem;
  font-family: "Source Sans Pro", sans-serif;
  color: #484848;
  text-transform: inherit;
}

input,
label,
select,
button,
textarea {
  font-family: "Source Sans Pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

a {
  color: #ec2235;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

a:hover {
  color: #ca1123;
  text-decoration: none;
}

a:focus {
  color: #b20f1f;
  text-decoration: none;
}

address {
  margin: 0 0 40px;
}

/* LES TITRES
----------------------------------------------------------------------------------------*/
.titre {
  color: #484848;
  font-size: x-large;
  margin-bottom: 20px;
}

.titre > .lien-video {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  line-height: 2.6rem;
  padding-top: 20px;
}

.titre-page,
.titre-section,
.subtitre-section {
  color: #ec2235;
}

.titre-page {
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 40px;
  line-height: 4rem;
  color: #484848;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .titre-page {
    margin-bottom: 30px;
    font-size: 30px;
    font-size: 3rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.titre-slider {
  color: #FFF;
  font-size: 60px;
  font-size: 6rem;
  line-height: 60px;
  line-height: 6rem;
  font-weight: 700;
}

.titre-slider .font-stack-trirong, .titre-slider .titre-bloc-card {
  font-weight: 400;
}

@media (max-width: 960px) {
  .titre-slider {
    font-size: 30px;
    font-size: 3rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.titre-section {
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 700;
  margin: 80px auto 40px auto;
}

.titre-section .font-stack-trirong, .titre-section .titre-bloc-card {
  color: #484848;
  font-weight: 400;
}

.titre-section2 {
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 700;
  margin: 80px 0 30px 0;
}

.titre-section2 .font-stack-trirong, .titre-section2 .titre-bloc-card {
  color: #ec2235;
  font-weight: 400;
}

.titre-paragraphe {
  display: block;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 3px solid #ec2235;
}

.form .titre-paragraphe {
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-color: rgba(255, 255, 255, 0.2);
}

.titre-paragraphe-1 {
  display: block;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 3px solid white;
}

.titre-paragraphe-2, .titre-paragraphe-3 {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  color: #ec2235;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 3px solid #ec2235;
}

.titre-paragraphe-3 {
  color: #484848;
  border-bottom: 1px solid #d2d2d2;
}

.titre-article {
  font-family: "Trirong", serif;
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 38px;
  line-height: 3.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.titre-article--small, ol.listing-recherche > li {
  color: #000101;
  font-size: 20px;
  font-size: 2rem;
  line-height: 28px;
  line-height: 2.8rem;
  margin-bottom: 10px;
}

.titre-bloc {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.titre-bloc2 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.titre-bloc-card {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.titre-footer {
  color: #ec2235;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-weight: 700;
}

/* CONTENUS TEXTES
----------------------------------------------------------------------------------------*/
.texte-chapeau {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: 400;
}

.texte-en-avant {
  color: #ec2235;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 46px;
  line-height: 4.6rem;
  margin-bottom: 50px;
}

.texte-info {
  color: #000101;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text-categorie {
  color: #ec2235;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.text-date {
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-legende {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: #999;
}

.text-auteur {
  font-family: "Trirong", serif;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: 400;
}

.text-role {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-info-bloc-card {
  color: #ec2235;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.p-smaller {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
}

.p-bigger {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
}

.p-fatter {
  font-weight: 800;
}

.p-bigger-l {
  font-size: 1.2em !important;
}

.quote {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  display: block;
  position: relative;
  padding: 30px 0 20px 0;
}

.quote:before, .quote:after {
  content: '\201C';
  font-family: 'Poppins', serif;
  font-size: 70px;
  font-size: 7rem;
  font-weight: 400;
  position: absolute;
}

.quote:before {
  top: 0px;
  left: 0px;
}

.quote:after {
  right: 0px;
  bottom: 0px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.label {
  color: #ec2235;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Text formaters
----------------------------------------------------------------------------------------*/
/* colors */
.base-color {
  color: #484848;
}

.dominant-color {
  color: #ec2235;
}

.color1 {
  color: #ec2235;
}

.base-black {
  color: #000101;
}

.red {
  color: #ec2235;
}

.white {
  color: #FFF !important;
}

/* Font weights */
.light {
  font-weight: 300;
}

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold, strong {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

/* Text transform */
.uppercase, .majuscule {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.em {
  font-family: Georgia, Cambria, serif;
  font-style: italic;
  color: #ec2235;
}

.exergue {
  color: #ec2235;
  font-weight: 700;
}

.pre {
  color: #FFF;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
}

hr {
  margin: 20px 0 40px;
}

.underline:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #000101;
  left: 0;
  bottom: -12px;
}

.red-underline {
  position: relative;
}

.red-underline:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ec2235;
  left: 0;
  bottom: -12px;
  z-index: -1;
  height: 7px;
  top: 72%;
}

.underline-dominant-color {
  border-bottom: 1px solid #ec2235;
}

.link-externe {
  border-bottom: dotted 1px #ec2235;
}

/* font family */
.font-stack-trirong, .titre-bloc-card {
  font-family: "Trirong", serif;
}

.font-stack-headings {
  font-family: "Source Sans Pro", sans-serif;
}

/* TYPO PAGES / COMPONENTS
========================================================================== */
/* HEADER
----------------------------------------------------------------------------------------*/
/* Nav
------------------------------------------*/
.primary-nav {
  color: #FFF;
}

.primary-nav > li a {
  position: relative;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  color: #484848;
  font-weight: 700;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.primary-nav > li.active > a, .primary-nav > li a:hover {
  color: #ec2235;
}

.primary-nav > li.active > a > span, .primary-nav > li a:hover > span {
  color: #ec2235;
}

.primary-nav > li:hover > a, .primary-nav > li:focus > a {
  color: #ec2235;
  color: #ec2235;
  border-color: #484848;
}

.primary-nav .dropdown-menu li a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFF;
}

/* Bandeau
----------------------------------------------------------------------------------------*/
.banner__text span {
  display: block;
}

.banner__text__title {
  color: #FFF;
  font-size: 100px;
  font-size: 10rem;
  line-height: 90px;
  line-height: 9rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .banner__text__title {
    font-size: 40px;
    font-size: 4rem;
    line-height: normal;
  }
}

.banner__text__subtitle {
  font-size: 60px;
  font-size: 6rem;
  line-height: 60px;
  line-height: 6rem;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .banner__text__subtitle {
    font-size: 30px;
    font-size: 3rem;
    line-height: normal;
  }
}

/* Breadcrumb
----------------------------------------------------------------------------------------*/
.breadcrumb {
  text-align: left;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 40px;
}

header .breadcrumb {
  line-height: 100px;
}

.breadcrumb a, .breadcrumb span {
  color: #484848;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumb .separator {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .breadcrumb .separator {
    margin: 0 5px;
  }
}

.breadcrumb .breadcrumb_last, .breadcrumb .separator {
  color: #ec2235;
}

.breadcrumb .separator {
  font-family: "consolas", sans-serif;
}

/* FOOTER
----------------------------------------------------------------------------------------*/
footer {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
}

footer a:hover {
  color: #ec2235;
}

.footer__nav a {
  color: #484848;
}

/* PAGE CONTENT
----------------------------------------------------------------------------------------*/
/* LISTES
------------------------------------------*/
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

ul[class^="liste"],
ol[class^="liste"],
.liste,
ul.liste-border,
.ve-content ul {
  padding-left: 0;
}

ul[class^="liste"] > li,
ol[class^="liste"] > li,
.liste > li, ul.liste-border > li,
.ve-content ul > li {
  padding: 5px 0 5px 1em;
  text-indent: -.7em;
  line-height: 2.8rem;
}

ul[class^="liste"] > li:before,
ol[class^="liste"] > li:before,
.liste > li:before, ul.liste-border > li:before,
.ve-content ul > li:before {
  content: ">";
  font-family: "consolas", sans-serif;
  font-weight: 700;
  position: relative;
  top: -1px;
  padding-right: 7px;
}

ul[class^="liste"] > li a:hover,
ol[class^="liste"] > li a:hover,
.liste > li a:hover, ul.liste-border > li a:hover,
.ve-content ul > li a:hover {
  color: #ec2235;
  text-decoration: underline;
}

ul[class^="liste"].liste--border > li,
ol[class^="liste"].liste--border > li,
.liste.liste--border > li, ul.liste--border.liste-border > li,
.ve-content ul.liste--border > li {
  padding: 10px 0 10px 1em;
}

ul[class^="liste"].liste--border > li:not(:first-child),
ol[class^="liste"].liste--border > li:not(:first-child),
.liste.liste--border > li:not(:first-child), ul.liste--border.liste-border > li:not(:first-child),
.ve-content ul.liste--border > li:not(:first-child) {
  border-top: 1px solid #e3e3e3;
}

ul[class^="liste"].liste--aere,
ol[class^="liste"].liste--aere,
.liste.liste--aere,
ul.liste--aere.liste-border,
.ve-content ul.liste--aere {
  line-height: 21px;
}

ul.liste-puce > li:before,
.ve-content ul > li:before {
  content: "\002022";
  color: #ec2235;
}

ul.liste-item-espace > li {
  margin-bottom: 20px;
}

ul.liste-border > li {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

ul.liste-border > li:first-child {
  border-top: 1px solid #eaeaea;
}

ul.liste-border > li:before {
  color: #ec2235;
}

ul.liste-border > li a {
  color: #484848;
}

ul.compo-jury li {
  border-bottom: 1px solid #e6e6e6;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
  line-height: 28px;
  line-height: 2.8rem;
}

ul.compo-jury li > .metier {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
}

h2.titre-compo-jury {
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 20px;
  font-size: 2rem;
  line-height: 26px;
  line-height: 2.6rem;
  color: #ec2235;
}

ol.liste-number {
  counter-reset: numerotation;
}

ol.liste-number > li {
  counter-increment: numerotation;
  /* on incrémente le compteur à chaque nouveau li */
}

ol.liste-number > li:before {
  content: counter(numerotation) ".";
  /* on affiche le compteur */
  color: #ec2235;
}

ol.listing-recherche > li {
  list-style-type: decimal;
  color: #484848;
  font-weight: 600;
}

ol.listing-recherche > li .breadcrumb {
  margin-bottom: 10px;
}

ol.listing-recherche > li .p-like, ol.listing-recherche > li p {
  font-weight: 300;
}

/* $HELPERS
   ========================================================================== */
/* ---------------------------------- */
/* ==visual helpers                   */
/* .. use them with parcimony !       */
/* ---------------------------------- */
.wauto {
  width: auto;
}

.wfull {
  width: 100%;
}

.hauto {
  height: auto;
}

.hfull {
  height: 100%;
}

.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block !important;
}

.d-f {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n = small, medium, large, none
*/
.man,
.ma0 {
  margin: 0;
}

.pan,
.pa0 {
  padding: 0;
}

.mauto {
  margin: 0 auto;
}

.mas {
  margin: 20px;
}

.mam {
  margin: 30px;
}

.mal {
  margin: 60px;
}

.pas {
  padding: 20px;
}

.pam {
  padding: 30px;
}

.pal {
  padding: 60px;
}

.mtn,
.mt0 {
  margin-top: 0;
}

.mtt {
  margin-top: 10px;
}

.mts {
  margin-top: 20px;
}

.mtm {
  margin-top: 30px;
}

.mtl {
  margin-top: 60px;
}

.mrn,
.mr0 {
  margin-right: 0;
}

.mrt {
  margin-right: 10px;
}

.mrs {
  margin-right: 20px;
}

.mrm {
  margin-right: 30px;
}

.mrl {
  margin-right: 60px;
}

.mbn,
.mb0 {
  margin-bottom: 0 !important;
}

.mbt {
  margin-bottom: 10px;
}

.mbs {
  margin-bottom: 20px;
}

.mbm {
  margin-bottom: 30px;
}

.mbl {
  margin-bottom: 60px;
}

.mbxl {
  margin-bottom: 100px;
}

.mln,
.ml0 {
  margin-left: 0;
}

.mlt {
  margin-left: 10px;
}

.mls {
  margin-left: 20px;
}

.mlm {
  margin-left: 30px;
}

.mll {
  margin-left: 60px;
}

.mlxl {
  margin-left: 100px;
}

.ptn,
.pt0 {
  padding-top: 0;
}

.pts {
  padding-top: 20px;
}

.ptm {
  padding-top: 30px;
}

.ptl {
  padding-top: 60px;
}

.ptxl {
  padding-top: 100px;
}

.prn,
.pr0 {
  padding-right: 0;
}

.prt {
  padding-right: 10px;
}

.prs {
  padding-right: 20px;
}

.prm {
  padding-right: 30px;
}

.prl {
  padding-right: 60px;
}

.pbn,
.pb0 {
  padding-bottom: 0 !important;
}

.pbs {
  padding-bottom: 20px;
}

.pbm {
  padding-bottom: 30px;
}

.pbl {
  padding-bottom: 60px;
}

.pbxl {
  padding-bottom: 100px;
}

.pln,
.pl0 {
  padding-left: 0;
}

.plt {
  padding-left: 10px;
}

.pls {
  padding-left: 20px;
}

.plm {
  padding-left: 30px;
}

.pll {
  padding-left: 60px;
}

/* others
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.text-justify p, .text-justify .p-like, .text-justify ol.listing-recherche > li p, ol.listing-recherche > li .text-justify p,
.text-justify {
  text-align: justify;
}

.no-underline, .no-underline:before {
  text-decoration: none;
}

figure.highlight {
  padding: 9px 14px;
  margin: 14px 0;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.text-shine, .swiper-button-prev:hover,
.swiper-button-next:hover {
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}

/* POSITION
----------------------------------------------------------------------------------------*/
.v-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.absolute-fit, .overlay-dark, .bg-extended, .bloc-card__image img, .grid__item__image, .grid__item__overlay, #home-slider .swiper-slide__image, #home-slider .swiper-slide__image:after, #home-slider .title-slider-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

@media (min-width: 769px) {
  .offset-up {
    margin-top: -160px;
  }
}

/* Flex positions */
.flex-start {
  -webkit-align-items: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-end {
  -webkit-align-items: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-center {
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.center, .pagination {
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item-end {
  margin-left: auto;
}

/* Position text
------------------------------------------*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.v-align-middle {
  vertical-align: middle;
}

/* Position float
------------------------------------------*/
.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

/* IMAGES
----------------------------------------------------------------------------------------*/
.fluid-size {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.overlay-dark {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

/* BLOC COLORED
----------------------------------------------------------------------------------------*/
.bloc-dark-bg, .bloc-bg-colored {
  /* Custom
	------------------------------------------*/
}

.bloc-dark-bg, .bloc-dark-bg a, .bloc-dark-bg span, .bloc-dark-bg i, .bloc-dark-bg p, .bloc-dark-bg .p-like, .bloc-dark-bg ol.listing-recherche > li p, ol.listing-recherche > li .bloc-dark-bg p, .bloc-dark-bg li, .bloc-dark-bg *:after, .bloc-dark-bg *:before, .bloc-bg-colored, .bloc-bg-colored a, .bloc-bg-colored span, .bloc-bg-colored i, .bloc-bg-colored p, .bloc-bg-colored .p-like, .bloc-bg-colored ol.listing-recherche > li p, ol.listing-recherche > li .bloc-bg-colored p, .bloc-bg-colored li, .bloc-bg-colored *:after, .bloc-bg-colored *:before {
  color: #FFF;
}

.bloc-dark-bg a:hover, .bloc-bg-colored a:hover {
  color: #FFF;
}

.bloc-dark-bg .titre-section .font-stack-trirong, .bloc-dark-bg .titre-section .titre-bloc-card, .bloc-bg-colored .titre-section .font-stack-trirong, .bloc-bg-colored .titre-section .titre-bloc-card {
  color: #FFF;
}

.bg-dominant-color {
  background-color: #ec2235;
}

.bg-base-color {
  background-color: #484848;
}

.bg-lightgrey {
  background-color: #eaeaea;
}

.bg-grey {
  background-color: #aaaaaa;
}

/* ---------------------------------- */
/* ==admin dev classes */
/* For debbuging purpose */
/* ---------------------------------- */
.dev,
.hidden-dev {
  display: none;
}

.devmode .dev, .devmode
.hidden-dev {
  display: block;
}

/* ==========================================================================
   $LAYOUT
   ========================================================================== */
/* $LAYOUT
========================================================================== */
html, body {
  min-height: 100%;
}

body {
  position: relative;
  background-color: #FFF;
  /* Evite le saut au passage du menu en fix  */
  padding-top: 160px;
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

.mobile body {
  min-width: 100%;
}

.wrapper-site {
  position: relative;
  overflow: hidden;
}

/*
 * Contenu principal
 */
main.container, main.container-xl, main.container-11, main.container-8 {
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  main.container, main.container-xl, main.container-11, main.container-8 {
    margin-bottom: 0;
  }
}

/* BANNER
----------------------------------------------------------------------------------------*/
.banner {
  position: relative;
}

.banner__text {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  text-align: center;
  z-index: 5;
}

.banner-map {
  width: 100%;
  padding-top: 28.6%;
  background-color: #eaeaea;
}

.banner-img {
  background-size: cover;
  background-position: center center;
  width: 100%;
  padding-top: 14.3%;
  background-color: #eaeaea;
}

.banner-img.banner01 {
  background-image: url("../images/bandeau_metiersdoccitanie.jpg");
}

@media (max-width: 768px) {
  .banner-img {
    padding-top: 53%;
  }
}

/* PAGE CONTENT
----------------------------------------------------------------------------------------*/
.content-wrapper {
  margin-bottom: 120px;
}

.content {
  padding-bottom: 60px;
}

.container img, .container-xl img, .container-11 img, .container-8 img {
  max-width: 100%;
  height: auto;
}

.page__tools {
  float: right;
}

/* SECTIONS
------------------------------------------*/
.section-grey {
  background-color: #aaaaaa;
}

.section-lightgrey {
  background-color: #f2f2f2;
}

.section-lightgrey:last-child {
  margin-bottom: -120px;
}

.bg-extended-wrapper {
  position: relative;
  z-index: 1;
}

.bg-extended {
  z-index: -1;
}

.bg-extended .row {
  height: 100%;
}

/* $GRID
========================================================================== */
.col-xs-1 {
  max-width: 8.33333%;
}

.col-xs-2 {
  max-width: 16.66667%;
}

.col-xs-3 {
  max-width: 25%;
}

.col-xs-4 {
  max-width: 33.33333%;
}

.col-xs-5 {
  max-width: 41.66667%;
}

.col-xs-6 {
  max-width: 50%;
}

.col-xs-7 {
  max-width: 58.33333%;
}

.col-xs-8 {
  max-width: 66.66667%;
}

.col-xs-9 {
  max-width: 75%;
}

.col-xs-10 {
  max-width: 83.33333%;
}

.col-xs-11 {
  max-width: 91.66667%;
}

.col-xs-12 {
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-sm-1 {
    max-width: 8.33333%;
  }
  .col-sm-2 {
    max-width: 16.66667%;
  }
  .col-sm-3 {
    max-width: 25%;
  }
  .col-sm-4 {
    max-width: 33.33333%;
  }
  .col-sm-5 {
    max-width: 41.66667%;
  }
  .col-sm-6 {
    max-width: 50%;
  }
  .col-sm-7 {
    max-width: 58.33333%;
  }
  .col-sm-8 {
    max-width: 66.66667%;
  }
  .col-sm-9 {
    max-width: 75%;
  }
  .col-sm-10 {
    max-width: 83.33333%;
  }
  .col-sm-11 {
    max-width: 91.66667%;
  }
  .col-sm-12 {
    max-width: 100%;
  }
}

@media (min-width: 960px) {
  .col-md-1 {
    max-width: 8.33333%;
  }
  .col-md-2 {
    max-width: 16.66667%;
  }
  .col-md-3 {
    max-width: 25%;
  }
  .col-md-4 {
    max-width: 33.33333%;
  }
  .col-md-5 {
    max-width: 41.66667%;
  }
  .col-md-6 {
    max-width: 50%;
  }
  .col-md-7 {
    max-width: 58.33333%;
  }
  .col-md-8 {
    max-width: 66.66667%;
  }
  .col-md-9 {
    max-width: 75%;
  }
  .col-md-10 {
    max-width: 83.33333%;
  }
  .col-md-11 {
    max-width: 91.66667%;
  }
  .col-md-12 {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1 {
    max-width: 8.33333%;
  }
  .col-lg-2 {
    max-width: 16.66667%;
  }
  .col-lg-3 {
    max-width: 25%;
  }
  .col-lg-4 {
    max-width: 33.33333%;
  }
  .col-lg-5 {
    max-width: 41.66667%;
  }
  .col-lg-6 {
    max-width: 50%;
  }
  .col-lg-7 {
    max-width: 58.33333%;
  }
  .col-lg-8 {
    max-width: 66.66667%;
  }
  .col-lg-9 {
    max-width: 75%;
  }
  .col-lg-10 {
    max-width: 83.33333%;
  }
  .col-lg-11 {
    max-width: 91.66667%;
  }
  .col-lg-12 {
    max-width: 100%;
  }
}

@media (min-width: 1640px) {
  .col-xl-1 {
    max-width: 8.33333%;
  }
  .col-xl-2 {
    max-width: 16.66667%;
  }
  .col-xl-3 {
    max-width: 25%;
  }
  .col-xl-4 {
    max-width: 33.33333%;
  }
  .col-xl-5 {
    max-width: 41.66667%;
  }
  .col-xl-6 {
    max-width: 50%;
  }
  .col-xl-7 {
    max-width: 58.33333%;
  }
  .col-xl-8 {
    max-width: 66.66667%;
  }
  .col-xl-9 {
    max-width: 75%;
  }
  .col-xl-10 {
    max-width: 83.33333%;
  }
  .col-xl-11 {
    max-width: 91.66667%;
  }
  .col-xl-12 {
    max-width: 100%;
  }
}

.container-xl {
  max-width: 1660px;
}

.container-11 {
  width: 1070px;
}

.container-8 {
  width: 960px;
}

.col-lg-2-4 {
  position: relative;
  min-height: 1px;
  padding-left: 12.5%;
  padding-right: 12.5%;
}

.row > [class*="col-"] {
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .row > [class*="col-"] {
    padding-bottom: 30px;
  }
}

/* Col table same height
----------------------------------------------------------------------------------------*/
@media (min-width: 961px) {
  .row-table {
    display: table;
    table-layout: fixed;
    height: 100%;
  }
  .col-table {
    display: table-cell;
    vertical-align: top;
    float: none;
    height: 100%;
  }
  .col-top {
    vertical-align: top;
  }
  .col-middle {
    vertical-align: middle;
  }
  .col-bottom {
    vertical-align: bottom;
  }
}

/* Custom gutters
----------------------------------------------------------------------------------------*/
@media (min-width: 1201px) {
  .gutter-60.container, .gutter-60.container-xl, .gutter-60.container-11, .gutter-60.container-8 {
    width: 1200px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .gutter-60 .row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-60 .row > [class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1201px) {
  .gutter-s.container, .gutter-s.container-xl, .gutter-s.container-11, .gutter-s.container-8 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .gutter-s .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-s .row > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 30px;
  }
}

@media (min-width: 1201px) {
  .gutter-m.container, .gutter-m.container-xl, .gutter-m.container-11, .gutter-m.container-8 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gutter-m .row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-m .row > [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
  }
}

.col-md-inset-right-1 {
  padding-right: 8.3333%;
}

.col-md-inset-left-1 {
  padding-left: 8.3333%;
}

/* Custom columns
----------------------------------------------------------------------------------------*/
/* Col 20%
------------------------------------------*/
.col-xs-2-4 {
  position: relative;
  min-height: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 768px) {
  .col-xs-2-4 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.col-sm-2-4 {
  position: relative;
  min-height: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 768px) {
  .col-sm-2-4 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.col-md-2-4 {
  position: relative;
  min-height: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 768px) {
  .col-md-2-4 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.col-lg-2-4 {
  position: relative;
  min-height: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 768px) {
  .col-lg-2-4 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.col-xl-2-4 {
  position: relative;
  min-height: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 768px) {
  .col-xl-2-4 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

/* Flex options
----------------------------------------------------------------------------------------*/
.direction-colum {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Row même taille
----------------------------------------------------------------------------------------*/
.row--same-height [class*="col-"] {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

/* Col aside
----------------------------------------------------------------------------------------*/
@media (max-width: 960px) {
  .col-aside {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* $BLOCKS
========================================================================== */
/* Bloc standard
----------------------------------------------------------------------------------------*/
.bloc {
  padding: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1640px) {
  .bloc {
    padding: 50px;
  }
}

@media (max-width: 1200px) {
  .bloc {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .bloc {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.bloc--s {
  padding: 20px;
}

@media (max-width: 1640px) {
  .bloc--s {
    padding: 20px;
  }
}

@media (max-width: 1200px) {
  .bloc--s {
    padding: 20px;
  }
}

.bloc .titre-section {
  margin-top: 0;
}

.bloc p:last-child, .bloc .p-like:last-child {
  margin-bottom: 0;
}

.bloc--shadow {
  -webkit-box-shadow: 10px 10px 0px 0px rgba(224, 224, 224, 0.5);
          box-shadow: 10px 10px 0px 0px rgba(224, 224, 224, 0.5);
  filter: progid:DXImageTransform.Microsoft.Shadow(color=$grey4, Direction=134, Strength=0);
}

.bloc-upper {
  position: relative;
  z-index: 1;
}

@media (min-width: 961px) {
  .bloc-upper {
    margin-top: -60px;
  }
}

/* Bloc entry
----------------------------------------------------------------------------------------*/
.bloc-entry {
  display: block;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: auto;
  padding: 40px;
  padding-bottom: 80px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .bloc-entry {
    margin-bottom: 0;
    padding: 20px;
  }
}

.bloc-entry-inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.bloc-entry p, .bloc-entry .p-like, .bloc-entry ol.listing-recherche > li p, ol.listing-recherche > li .bloc-entry p {
  margin-bottom: 0;
}

.bloc-entry .boc-entry__button {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

/* Bloc adresse
----------------------------------------------------------------------------------------*/
.bloc-adresse {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 228px;
  padding: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  z-index: 2;
}

.bloc-adresse .titre-bloc {
  border: none;
  padding-bottom: 0;
}

.bloc-adresse p, .bloc-adresse .p-like, .bloc-adresse ol.listing-recherche > li p, ol.listing-recherche > li .bloc-adresse p {
  margin: 0;
  line-height: 2.4rem;
  padding-left: 11px;
}

.bloc-adresse-nom {
  margin-bottom: 5px;
  color: #ec2235;
  font-weight: 600;
}

.bloc-adresse-nom:before {
  content: '. ';
  font-size: 2.0rem;
}

/* Bloc sizes
----------------------------------------------------------------------------------------*/
.bloc-size-m {
  height: 200px;
}

.bloc-size-m {
  height: 320px;
}

/* Bloc colors
----------------------------------------------------------------------------------------*/
.bloc-dominant-color {
  background: #ec2235;
}

/* Blocs cards
----------------------------------------------------------------------------------------*/
/* Margin dans Actualités---------------------------------------------------------------*/
.bloc-card {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFF;
}

.bloc-card--bordered .bloc-card__content {
  border: 1px solid #e6e6e6;
}

.bloc-card__image {
  position: relative;
  padding-bottom: 61%;
  overflow: hidden;
}

.bloc-card__image img {
  height: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.bloc-card__content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  padding: 30px;
}

.bloc-card__content > text-date {
  margin-bottom: 20 px;
}

.bloc-card__content > font-stack-trirong p-bigger {
  margin-bottom: 10 px;
}

.bloc-card__content *:last-child {
  margin-bottom: 0;
}

.bloc-card__button {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* Bloc image
----------------------------------------------------------------------------------------*/
.bloc-image, .bloc-video {
  display: inline-block;
  margin: 0 20px 60px 0;
  -webkit-box-shadow: 20px 20px 0px 0px #e0e0e0;
          box-shadow: 20px 20px 0px 0px #e0e0e0;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=$grey4, Direction=134, Strength=0);
}

.bloc-image.embed-responsive, .embed-responsive.bloc-video {
  display: block;
}

.bloc-image img, .bloc-video img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bloc-image.bloc-image--noshadow, .bloc-image--noshadow.bloc-video {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-filter: none;
          filter: none;
}

.bloc-image + .bloc-image, .bloc-video + .bloc-image, .bloc-image + .bloc-video, .bloc-video + .bloc-video {
  margin-top: 60px;
}

.bloc-image + .bloc-image-legende, .bloc-video + .bloc-image-legende {
  margin-top: 20px;
}

/* Bloc video
----------------------------------------------------------------------------------------*/
.bloc-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
  overflow: hidden;
}

.bloc-video.embed-responsive {
  display: block;
}

.bloc-video iframe,
.bloc-video object,
.bloc-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Bloc recherche
----------------------------------------------------------------------------------------*/
/*
* Visible sur page métiers occitanie
*
*/
.bloc-recherche {
  position: relative;
  background-color: #ec2235;
  padding: 100px 0;
}

.bloc-recherche:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  width: 245px;
  height: 254px;
  background-image: url("../images/forme_loupe.png");
  background-repeat: no-repeat;
}

/* Grid items
----------------------------------------------------------------------------------------*/
.grid__item {
  display: block;
  position: relative;
  height: 130px;
  overflow: hidden;
  text-align: center;
}

.grid__item__title {
  color: #FFF;
  font-size: 20px;
  font-size: 2rem;
  line-height: normal;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

.grid__item__image {
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.grid__item__overlay {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.grid__item:hover .grid__item__image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.grid__item:hover .grid__item__overlay {
  background-color: rgba(236, 34, 53, 0.78);
}

/* Bloc image de décoration (en bg du site)
----------------------------------------------------------------------------------------*/
.img-decoration {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
}

@media (max-width: 960px) {
  .img-decoration {
    background: none;
  }
}

.img-decoration.pBoursesActivitesConferences {
  left: 15%;
  bottom: 0;
}

.img-decoration.pBoursesActivitesCandidatures {
  top: 34%;
  left: 0;
  -webkit-transform: translateX(-80px);
      -ms-transform: translateX(-80px);
          transform: translateX(-80px);
}

.img-decoration.pBoursesActivitesCandidatures-enveloppe {
  top: 47.4%;
  right: 0;
  width: 351px;
  height: 221px;
  background-image: url("../images/deco-enveloppe.png");
  background-repeat: no-repeat;
  -webkit-transform: translateX(230px);
      -ms-transform: translateX(230px);
          transform: translateX(230px);
}

.img-decoration.pBoursesActivitesBoursiersTuteurs {
  right: 20px;
  bottom: 229px;
}

.img-decoration.pBoursesActivitesSoireeAnnuelle {
  top: 44%;
  left: 0;
}

.img-decoration.pformeCroix {
  top: 57%;
  left: 0;
}

.img-decoration.pformeMicro {
  bottom: 290px;
  right: 5%;
}

.img-decoration.pHashtag {
  top: 35%;
  left: 0;
}

.img-decoration.pformeHautParleur {
  top: 45%;
  left: 0;
}

.img-decoration.pformeRondLeft {
  top: 55%;
  left: 0;
}

/* Deco par section
------------------------------------------*/
.deco-section {
  position: relative;
}

.deco-section:before, .deco-section:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

@media (max-width: 960px) {
  .deco-section:before, .deco-section:after {
    display: none;
  }
}

.deco-feuille:before {
  background-image: url("../images/deco-feuille.png");
  width: 196px;
  height: 408px;
  bottom: -75px;
  left: -148px;
}

.deco-micro:before {
  background-image: url("../images/deco-micro.png");
  width: 192px;
  height: 228px;
  bottom: 0px;
  right: 0px;
}

.deco-rond-grille:before {
  background-image: url("../images/deco-rond-grille.png");
  width: 195px;
  height: 283px;
  top: 0px;
  left: 0px;
}

.deco-croix-bleu:after {
  background-image: url("../images/deco-croix-bleu.png");
  width: 183px;
  height: 187px;
  bottom: 0px;
  right: 0px;
}

.deco-avion-papier:before {
  background-image: url("../images/deco-avion-papier.png");
  width: 280px;
  height: 263px;
  bottom: 20px;
  left: -150px;
}

.deco-discussion:after {
  background-image: url("../images/deco-discussion.png");
  width: 347px;
  height: 240px;
  bottom: 40px;
  right: -50px;
  z-index: -1;
}

.deco-play:before {
  background-image: url("../images/forme_play.png");
  width: 96px;
  height: 200px;
  bottom: 140px;
  left: 0px;
}

.deco-rond:after {
  background-image: url("../images/forme_rond.png");
  width: 196px;
  height: 206px;
  top: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.deco-rond-gris:after {
  background-image: url("../images/deco-rond-gris.png");
  width: 203px;
  height: 205px;
  top: 0;
  right: 0;
}

.deco-croix-et-pts:before {
  background-image: url("../images/deco-croix-et-pts.png");
  width: 205px;
  height: 225px;
  bottom: 0;
  left: 0;
}

/* Deco more
------------------------------------------*/
.deco-more {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.deco-more.deco-grille2 {
  background-image: url("../images/forme_gille2.png");
  width: 240px;
  height: 230px;
  bottom: 0;
  right: 0;
}

@media (max-width: 960px) {
  .deco-more {
    display: none;
  }
}

/* Map
------------------------------------------*/
.acf-map {
  width: 100%;
  height: 600px;
}

@media (max-width: 768px) {
  .acf-map {
    height: 400px;
  }
}

/* $HEADER
========================================================================== */
.header-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* TOPBAR
----------------------------------------------------------------------------------------*/
.header-main__top {
  height: 40px;
  background: #eaeaea;
}

@media (max-width: 768px) {
  .header-main__top {
    display: none;
  }
}

.header-main__top .container, .header-main__top .container-xl, .header-main__top .container-11, .header-main__top .container-8 {
  height: 100%;
}

nav.social-networks {
  padding: 7px 20px 0;
}

nav.social-networks li {
  line-height: 25px;
}

nav.social-networks a {
  color: #aaaaaa;
}

.header-main form.searchform {
  position: relative;
  width: 100%;
  max-width: 240px;
}

.header-main form.searchform input.inputsearch {
  height: 100%;
}

.header-main form.searchform .form-control {
  -webkit-border-radius: 0;
          border-radius: 0;
}

/* NAVBAR
----------------------------------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.main-navbar {
  position: relative;
  z-index: 1000;
  height: 120px;
  line-height: 120px;
  background-color: #FFF;
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 8px 10px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  .main-navbar {
    height: 60px;
    line-height: 60px;
  }
}

.main-navbar .container-xl {
  height: 100%;
}

@media (max-width: 768px) {
  .main-navbar .container-xl {
    padding: 0;
  }
}

.main-navbar .navbar {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px;
}

@media (max-width: 1200px) {
  .main-navbar .navbar {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

/* NAVBAR BRAND
------------------------------------------*/
.navbar-brand {
  padding: 0;
  -webkit-transition: none;
  transition: none;
}

@media (min-width: 769px) {
  .navbar-brand {
    margin-top: -40px;
  }
}

@media (max-width: 1200px) {
  .navbar-brand {
    margin-right: auto;
  }
}

.navbar-brand > img {
  /*display: inline-block;
  vertical-align: middle;*/
  height: 160px;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-brand > img {
    width: 72px;
    height: auto;
    margin-left: -5px;
  }
}

.sticky .navbar-brand {
  margin-top: 0;
  -webkit-animation: slide_down 0.7s;
  animation: slide_down 0.7s;
}

@media (min-width: 769px) {
  .sticky .navbar-brand {
    height: 120px;
  }
}

.sticky .navbar-brand > img {
  height: 99%;
  width: auto;
}

/* NAVBAR NAVIGATION
------------------------------------------*/
.primary-nav {
  margin-left: auto;
}

@media (max-width: 1200px) {
  .primary-nav {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
}

.primary-nav .nav-item {
  position: relative;
}

.primary-nav .nav-item + .nav-item {
  margin-left: 0;
}

@media (max-width: 1200px) {
  .primary-nav .nav-item {
    position: static;
    float: none;
    display: table;
  }
}

@media (max-width: 479px) {
  .primary-nav .nav-item {
    padding: 0 20px;
  }
}

.primary-nav .nav-link {
  padding: 0 15px;
  white-space: nowrap;
}

@media (max-width: 1640px) {
  .primary-nav .nav-link {
    padding: 0 10px;
  }
}

@media (max-width: 479px) {
  .primary-nav .nav-link {
    white-space: normal;
    overflow-wrap: break-word;
  }
}

.primary-nav .nav-link.dropdown {
  padding-right: 30px;
}

@media (min-width: 1201px) {
  .primary-nav .nav-link.dropdown:before {
    display: block;
    font-size: 10px;
    color: #ec2235;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    line-height: normal;
    vertical-align: middle;
  }
}

.primary-nav .nav-link.dropdown:after {
  display: none;
}

@media (min-width: 1201px) {
  .primary-nav .sub-nav .dropdown:before {
    display: none;
  }
}

/* Overlay menu mobile/ipad */
@media (max-width: 1200px) {
  .primary-nav {
    padding-top: 100px;
  }
  .primary-nav > li {
    margin-top: -20px;
    opacity: 0;
  }
  .primary-nav > li.has-submenu > .toggle-sub {
    border-top-color: transparent !important;
  }
  .primary-nav li {
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 50px;
    padding: 0 50px;
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .primary-nav li a {
    color: #FFF;
  }
  .primary-nav li + li > a {
    display: block;
  }
  .primary-nav li:hover, .primary-nav li:focus {
    background: #ec2235;
  }
  .primary-nav li:hover > a, .primary-nav li:focus > a {
    color: #FFF;
    border-color: #ec2235;
  }
  .primary-nav li.has-submenu .toggle-sub {
    border-top-color: rgba(255, 255, 255, 0.4);
  }
  .primary-nav li.has-submenu:hover, .primary-nav li.has-submenu:focus {
    background: none;
    border-color: #484848;
  }
  .primary-nav li.has-submenu:hover > a, .primary-nav li.has-submenu:focus > a {
    color: #FFF;
    border-color: #484848;
  }
  .primary-nav li.has-submenu:hover > .toggle-sub, .primary-nav li.has-submenu:focus > .toggle-sub {
    border-top-color: #484848;
  }
  .primary-nav li.has-submenu > label:hover, .primary-nav li.has-submenu > label:focus, .primary-nav li.has-submenu > a:hover, .primary-nav li.has-submenu > a:focus {
    color: #FFF;
    background-color: #ec2235;
  }
}

/* Dropdown */
.navbar .dropdown-menu {
  padding: 10px 0;
  margin: 0;
  min-width: 320px;
  background: #ec2235;
  left: -15px;
}

@media (min-width: 1201px) {
  .navbar .dropdown-menu {
    -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06);
            box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 1200px) {
  .navbar .dropdown-menu {
    display: block;
    float: none;
  }
}

@media (min-width: 1201px) {
  .dropdown > .navbar .dropdown-menu {
    margin: 0 0 0 -40px;
  }
}

.navbar .dropdown-menu > li {
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.navbar .dropdown-menu li {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 40px;
  padding: 0 25px;
}

@media (min-width: 1201px) {
  .navbar .dropdown-menu li {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .navbar .dropdown-menu li {
    position: relative;
    z-index: 0;
  }
}

.navbar .dropdown-menu li > a {
  display: block;
}

.navbar .dropdown-menu li:not(:last-child) > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar .dropdown-menu li:hover, .navbar .dropdown-menu li:focus {
  background: #484848;
}

.navbar .dropdown-menu li:hover > a, .navbar .dropdown-menu li:focus > a {
  color: #FFF;
  border-color: #484848;
}

/* NAVBAR ITEMS
------------------------------------------*/
.navbar-item {
  height: 100%;
}

@media (max-width: 1200px) and (min-width: 769px) {
  .navbar-item {
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .navbar-item {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-social {
    display: none;
  }
}

/* Search */
.navbar-search {
  visibility: hidden;
  max-width: 0;
  opacity: 0;
  margin-left: 15px;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.navbar-search .icon-loupe {
  font-size: 27px;
  color: #ec2235;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.navbar-search .icon-loupe:hover, .navbar-search .icon-loupe:focus {
  color: #ec2235;
}

.sticky .navbar-search {
  visibility: visible;
  opacity: 1;
  max-width: 100px;
}

header #searchbar {
  position: absolute;
  z-index: 10;
  display: none;
  float: left;
  width: 100%;
  height: 62px;
  border-top: 1px solid #d8d8d8;
  padding-left: 25px;
  padding-right: 10px;
  z-index: 999;
  background: #fff;
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06);
}

header #searchbar form,
header #searchbar input,
header #searchbar input:focus,
header #searchbar input:active {
  padding: 0;
  border: none !important;
  outline: none !important;
}

header #s,
header #mot {
  display: block;
  width: 88%;
  border: 0;
  outline: none;
  padding: 0;
  height: 60px;
  line-height: 60px;
  font-size: 2.0em;
  font-weight: 500;
  color: #484848;
}

header #searchsubmit {
  display: block;
  float: right;
  margin-top: 6px;
  background: none;
  color: #484848;
  border: 0;
  outline: none;
  cursor: pointer;
}

/* Hamburger button */
@media (min-width: 769px) {
  .navbar-hamburger-menu-wrapper {
    margin-left: 80px;
  }
}

@media (min-width: 1201px) {
  .navbar-hamburger-menu-wrapper {
    display: none;
  }
}

.navbar-hamburger-menu-wrapper .navbar-hamburger-menu {
  width: 50px;
  height: 50px;
  line-height: 49px;
  font-size: 29px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-hamburger-menu-wrapper .navbar-hamburger-menu {
    border: none;
    font-size: 35px;
    line-height: 44px;
    width: 40px;
    height: 40px;
    outline: none;
  }
}

/* Dropdown menu au hover
----------------------------------------------------------------------------------------*/
.dropdown-menu {
  background: #ec2235;
}

.dropdown-menu .sub-menu {
  left: 100%;
  position: absolute;
  top: 0;
  display: none;
  padding: 10px 0;
  margin-top: -1px;
  background: #ec2235;
}

.dropdown-menu > li:hover > .sub-menu {
  display: block;
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
  margin-top: 0;
}

.navbar .dropdown-menu {
  margin-top: 0;
}

.navbar .sub-menu:before {
  border-bottom: 7px solid transparent;
  border-left: none;
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 7px solid transparent;
  left: -7px;
  top: 10px;
}

.navbar .sub-menu:after {
  border-top: 6px solid transparent;
  border-left: none;
  border-right: 6px solid #fff;
  border-bottom: 6px solid transparent;
  left: 10px;
  top: 11px;
  left: -6px;
}

/* STICKY NAVBAR
----------------------------------------------------------------------------------------*/
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* MENU MOBILE
----------------------------------------------------------------------------------------*/
/* Toggle mobile menu */
#toggle-menu:checked ~ ul.primary-nav {
  visibility: visible;
  opacity: 1;
}

#toggle-menu:checked ~ ul.primary-nav > li {
  margin-top: 0px;
  opacity: 1;
}

.primary-nav .close-menu {
  height: 40px;
  width: 40px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  position: absolute;
  top: 40px;
  right: 35px;
  padding: 0px 13px;
  color: #FFF;
  z-index: 9999;
}

.primary-nav .close-menu label {
  cursor: pointer;
}

@media (min-width: 1201px) {
  .primary-nav .close-menu {
    display: none;
  }
}

.primary-nav .close-menu:hover {
  color: #FFF;
}

/* Only sticky nav on mobile
------------------------------------------*/
/* $FORMS
========================================================================== */
form.form {
  position: relative;
  /*
    * Select
    */
  /*
    * Reset submit
    */
}

form.form fieldset {
  margin: 40px 0;
  padding: 0;
  border: none;
}

form.form .form-group {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  form.form .form-group {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
}

form.form .form-group--submit {
  text-align: right;
}

form.form [class^="col-"] {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  form.form [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
}

form.form .form-control {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Source Sans Pro", sans-serif;
  color: #484848;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dadada;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  background: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form.form .form-control--rounded {
  -webkit-border-radius: 999px;
          border-radius: 999px;
}

form.form .form-control:focus {
  border-color: #ec2235;
  outline: none;
  -webkit-box-shadow: inset 0px 0px 0px 0px #aaaaaa;
          box-shadow: inset 0px 0px 0px 0px #aaaaaa;
}

form.form .input-wrapper {
  position: relative;
}

form.form .input-wrapper__icon {
  position: absolute;
  top: 55%;
  right: 13px;
  -webkit-transform: translatey(-50%);
      -ms-transform: translatey(-50%);
          transform: translatey(-50%);
}

form.form textarea {
  width: 100%;
  min-height: 200px;
  padding: 15px !important;
  resize: none;
  overflow: auto;
  outline: none;
}

form.form textarea:focus {
  outline: none;
  border-color: #ec2235;
  -webkit-box-shadow: inset 0px 0px 0px 0px #aaaaaa;
          box-shadow: inset 0px 0px 0px 0px #aaaaaa;
}

form.form .control-label {
  position: relative;
  text-align: left;
  width: 150px;
}

@media (max-width: 768px) {
  form.form .control-label {
    width: auto;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}

form.form .control-label.required:after {
  content: ' *';
}

form.form legend {
  margin-bottom: 30px;
  border: none;
}

form.form .form-group-inline > * {
  display: inline-block;
  margin-bottom: 5px;
}

form.form .date-select {
  width: 100%;
  max-width: 130px;
  min-width: 90px;
}

form.form .select-wrap:before {
  color: #FFF;
}

form.form button.reset {
  background: none;
  border: none;
  font-size: 1em;
}

.etoile {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 5px;
}

/*
* Select
*/
.select-wrap {
  display: inline-block;
  min-width: 160px;
  position: relative;
  margin: 0;
  padding-right: 35px;
  padding-left: 10px;
  overflow: hidden;
}

.select-wrap:before {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translatey(-50%);
      -ms-transform: translatey(-50%);
          transform: translatey(-50%);
  font-size: 14px;
  z-index: 10;
  pointer-events: none;
}

.select-wrap select {
  color: lightgrey;
  width: 124%;
  height: 100%;
  position: relative;
  z-index: 1;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.select-wrap select option.placeholder {
  display: none;
}

.select-wrap select:focus {
  outline: none;
}

/*
* Date Field
*/
.dates-group {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .dates-group {
    padding-left: 0;
    padding-right: 0;
  }
}

.dates-group > span + span {
  margin-left: 15px;
}

.dates-group-text {
  color: #6B6978;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-field {
  position: relative;
}

.date-field:before {
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 27px;
  position: absolute;
  right: 20px;
  line-height: 60px;
  pointer-events: none;
}

/*
 * Checkboxes
*/
.checkbox {
  /* Base for label styling */
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled checkbox */
  /* accessibility */
}

.checkbox [type="checkbox"]:not(:checked),
.checkbox [type="checkbox"]:checked {
  position: absolute;
  overflow: hidden;
  height: 1px;
  margin: -1px;
  padding: 0;
  width: 1px;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.checkbox [type="checkbox"]:not(:checked) + label,
.checkbox [type="checkbox"]:checked + label {
  line-height: 20px;
  position: relative;
  padding-left: 35px;
  padding-top: 7px;
  padding-bottom: 7px;
  cursor: pointer;
}

.checkbox [type="checkbox"]:not(:checked) + label:before,
.checkbox [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  border: 1px solid #aaaaaa;
  background: white;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.checkbox [type="checkbox"]:not(:checked) + label:after,
.checkbox [type="checkbox"]:checked + label:after {
  content: '';
  background: url("../images/icone-checked.svg") no-repeat;
  position: absolute;
  top: 12px;
  left: 7px;
  color: #ec2235;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 14px;
  height: 10px;
}

.checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.checkbox [type="checkbox"]:disabled:checked + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

.checkbox [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}

.checkbox [type="checkbox"]:disabled + label {
  color: #aaa;
}

.checkbox--transparent [type="checkbox"]:not(:checked) + label:before,
.checkbox--transparent [type="checkbox"]:checked + label:before {
  background: transparent;
}

.checkbox--transparent [type="checkbox"]:not(:checked) + label:after,
.checkbox--transparent [type="checkbox"]:checked + label:after {
  background: url("../images/icone-checked-white.svg") no-repeat;
}

/* CUSTOM FORMS
----------------------------------------------------------------------------------------*/
/* FORM RECHERCHE
-------------------------------------------*/
form.searchform button[type="submit"] {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: #ec2235;
}

/* FORM NEWSLETTER
-------------------------------------------*/
.form--newsletter {
  margin-bottom: 40px;
}

.form--newsletter input.form-control {
  -webkit-border-radius: 999px;
          border-radius: 999px;
}

form .form--newsletter__submit {
  position: absolute;
  top: 5px;
  right: 5px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

/* FORM WITH BLOCS
------------------------------------------*/
form.form .bloc-form-group label {
  margin-bottom: 10px;
}

form.form .bloc-form-group .form-control {
  height: 40px;
  border: none;
  margin-bottom: 20px;
}

@media (min-width: 961px) {
  .bloc-form-horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 961px) {
  .bloc-form-horizontal__group + .bloc-form-horizontal__group {
    margin-left: 40px;
  }
}

form.form .bloc-bg-colored .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
}

form.form .bloc-bg-colored .form-control::-webkit-input-placeholder {
  color: #FFF;
}

form.form .bloc-bg-colored .form-control::-moz-placeholder {
  color: #FFF;
}

form.form .bloc-bg-colored .form-control:-moz-placeholder {
  color: #FFF;
}

form.form .bloc-bg-colored .form-control:-ms-input-placeholder {
  color: #FFF;
}

/* $FOOTER
========================================================================== */
footer {
  position: relative;
  padding: 0;
  height: auto;
  background-color: #e3e3e3;
  z-index: 20;
}

/* FOOTER TOP
----------------------------------------------------------------------------------------*/
.footer-top {
  padding: 60px 0;
}

.google-map-link {
  margin-left: 10px;
}

.google-map-link .icon {
  font-size: 10px;
}

@media (min-width: 961px) {
  .footer-site-map {
    margin: 0 auto;
  }
}

.footer-site-map a {
  color: #484848;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 32px;
  line-height: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-logos-list {
  margin-bottom: 30px;
}

.footer-logos-list > img {
  max-height: 70px;
  width: auto;
}

/* FOOTER BOTTOM
----------------------------------------------------------------------------------------*/
.footer-bottom {
  height: 60px;
  background: #d2d2d2;
}

.footer__nav ul li:not(:last-child) {
  border-color: #ec2235;
}

.copyright {
  line-height: 60px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .copyright {
    padding-right: 20px;
  }
}

/* ==========================================================================
   $COMPONENTS
   ========================================================================== */
/* $NAVIGATION
   ========================================================================== */
/* Nav multi levels
----------------------------------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
  .nav-menu-multi {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(236, 34, 53, 0.94);
    z-index: 9999;
    line-height: initial;
    overflow: hidden;
    text-align: left;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    right: 0;
    left: 0;
    width: auto !important;
    overflow: scroll;
  }
  .nav-menu-multi__container {
    min-height: 100%;
    padding: 0;
    margin: 0;
  }
  .nav-menu-multi .sub-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(236, 34, 53, 0.94);
    z-index: 9999;
    left: -100%;
    margin-top: -1px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: -webkit-transform .25s ease;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  }
}

@media screen and (max-width: 1200px) and (max-width: 960px) {
  .nav-menu-multi .sub-nav {
    width: 100%;
    left: -100%;
    right: 0;
  }
}

@media screen and (max-width: 1200px) {
  .nav-menu-multi .sub-nav-check {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .nav-menu-multi ul {
    text-decoration: none;
    padding: 0;
    list-style: none;
    margin-top: 4.5625em;
  }
  .nav-menu-multi li {
    float: none;
    overflow: hidden;
  }
  .nav-menu-multi li a {
    text-decoration: none;
  }
  .nav-menu-multi li.has-submenu > a {
    display: table-cell !important;
    width: 100%;
  }
  .nav-menu-multi li.has-submenu > a:before {
    display: none;
  }
  .nav-menu-multi .sub-heading {
    margin-top: 40px;
    border-bottom: 4px solid transparent;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #000;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .nav-menu-multi .sub-heading:hover, .nav-menu-multi .sub-heading:focus {
    color: inherit;
    background-color: inherit;
  }
  .nav-menu-multi .toggle-sub {
    position: relative;
    color: #FFF;
    display: table-cell;
    vertical-align: middle;
    font-size: 25px;
    padding-left: 20px;
    cursor: pointer;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
  }
  .nav-menu-multi .toggle-sub:hover:after, .nav-menu-multi .toggle-sub:focus:after {
    left: -5px;
  }
  .nav-menu-multi .toggle-sub:after {
    content: ">";
    position: relative;
    font-family: "consolas", sans-serif;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .nav-menu-multi .toggle-sub:before {
    content: "";
    width: 1px;
    height: auto;
    background: transparent;
    position: absolute;
    left: 0px;
    top: 5px;
    bottom: 3px;
  }
  .nav-menu-multi .toggle-back {
    cursor: pointer;
    font-size: 20px;
    vertical-align: bottom;
    cursor: pointer;
    color: #FFF;
  }
  .nav-menu-multi .toggle-back::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    content: '';
  }
  .nav-menu-multi .toggle-back:before {
    content: "<";
    font-family: "consolas", sans-serif;
    position: relative;
    padding-right: 10px;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .nav-menu-multi .toggle-back:hover, .nav-menu-multi .toggle-back:focus {
    color: #e6e6e6;
  }
  .nav-menu-multi .toggle-back:hover:before, .nav-menu-multi .toggle-back:focus:before {
    left: -5px;
  }
  /* http://davidwalsh.name/translate3d */
  /* #### - corrects 'unfixing' bug in Safari - uncomment if you have position:fixed elements inside .container - #### */
  /* @media screen and (-webkit-min-device-pixel-ratio:0) { .container { -webkit-transform:none !important } } */
  /* #### - define ids of animated container, menu and sub-menus here - #### */
  #main-nav-check:checked ~ .container, #main-nav-check:checked ~ .container-xl, #main-nav-check:checked ~ .container-11, #main-nav-check:checked ~ .container-8, #main-nav-check:checked ~ .nav-menu-multi {
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

@media screen and (max-width: 1200px) and (max-width: 960px) {
  #main-nav-check:checked ~ .container, #main-nav-check:checked ~ .container-xl, #main-nav-check:checked ~ .container-11, #main-nav-check:checked ~ .container-8, #main-nav-check:checked ~ .nav-menu-multi {
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

@media screen and (max-width: 1200px) {
  .nav-menu-multi .sub-nav-check:checked ~ [id$="-sub"] {
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

@media screen and (max-width: 1200px) and (max-width: 960px) {
  .nav-menu-multi .sub-nav-check:checked ~ [id$="-sub"] {
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

/* Horizontal Nav
----------------------------------------------------------------------------------------*/
.horizontal-simple-nav {
  margin: 0 -20px;
}

@media (max-width: 768px) {
  .horizontal-simple-nav {
    text-align: left;
    margin: 0;
  }
}

.horizontal-simple-nav li {
  padding: 0 20px;
  line-height: 35px;
}

@media (max-width: 768px) {
  .horizontal-simple-nav li {
    padding: 0 10px;
    display: block;
  }
}

@media (min-width: 769px) {
  .horizontal-simple-nav li:not(:last-child) {
    border-right: 1px solid #d2d2d2;
  }
}

/* $ACCORDION
   ========================================================================== */
/*
   * Accordion from jquery ui :
   * https://jqueryui.com/accordion/
   */
.accordion {
  margin-bottom: 30px;
  border-bottom: 1px solid #d2d2d2;
}

.accordion__title {
  position: relative;
  cursor: pointer;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #d2d2d2;
}

.accordion__title:before {
  position: absolute;
  right: 0;
}

.accordion__title:focus {
  outline: none;
}

.accordion__content {
  padding-bottom: 30px;
  max-height: 515px;
  overflow: scroll;
  overflow-y: auto;
  overflow-x: hidden;
}

/* $ICONS
   ========================================================================== */
@font-face {
  font-family: "fondationladepeche-font";
  src: url("../fonts/fondationladepeche-font.eot");
  src: url("../fonts/fondationladepeche-font.eot?#iefix") format("embedded-opentype"), url("../fonts/fondationladepeche-font.woff") format("woff"), url("../fonts/fondationladepeche-font.ttf") format("truetype"), url("../fonts/fondationladepeche-font.svg#fondationladepeche-font") format("svg");
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "fondationladepeche-font" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.primary-nav .nav-link.dropdown:before, .select-wrap:before, .date-field:before, .accordion__title:before, .btn:before, .btn-dropdown:before,
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fondationladepeche-font" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-angle-down:before, .accordion__title:before, .icon-fleche-bottom:before, .select-wrap:before,
.icon-angle-bottom:before, .primary-nav .nav-link.dropdown:before, .btn-dropdown:before {
  content: "\61";
}

.icon-angle-left:before {
  content: "\62";
}

.icon-angle-right:before, .icon-fleche:before, .btn:before {
  content: "\63";
}

.icon-angle-left-l:before {
  content: "\64";
}

.icon-angle-right-l:before {
  content: "\65";
}

.icon-loupe:before {
  content: "\66";
}

.icon-loupe-annuaire:before {
  content: "\67";
}

.icon-loupe-big:before {
  content: "\68";
}

.icon-mail:before {
  content: "\69";
}

.icon-print:before {
  content: "\6a";
}

.icon-share:before {
  content: "\6b";
}

.icon-valid:before {
  content: "\6c";
}

.icon-close:before, .icon-cross:before {
  content: "\6d";
}

.icon-close-l:before {
  content: "\6f";
}

.icon-plus:before {
  content: "\6e";
}

.icon-twitter:before {
  content: "\70";
}

.icon-fb:before {
  content: "\71";
}

.icon-play:before {
  content: "\72";
}

.icon-xlandes:before {
  content: "\73";
}

.icon-gplus:before {
  content: "\74";
}

.icon-youtube:before {
  content: "\75";
}

.icon-hamburger:before {
  content: "\76";
}

.icon-pdf:before {
  content: "\77";
}

.icon-word:before {
  content: "\78";
}

/* Icon helpers
------------------------------------------*/
.icon-x05 {
  font-size: 0.5rem;
}

.icon-x06 {
  font-size: 0.6em;
}

.icon-x2 {
  font-size: 2rem;
}

.icon-x3 {
  font-size: 3rem;
}

.icon-x4 {
  font-size: 4rem;
}

.icon-x6 {
  font-size: 60px;
  font-size: 6rem;
}

.icon-centre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* $CAROUSEL
   ========================================================================== */
.swiper-pagination-bullet {
  cursor: pointer;
  display: inline-block;
  width: 13px;
  height: 13px;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: border 0.1s ease;
  transition: border 0.1s ease;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  position: relative;
  top: 0px;
  width: 14px;
  height: 14px;
  border: 2px solid #ec2235;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  color: #FFF;
  width: 30px;
  height: 30px;
  background: none;
  font-size: 30px;
  line-height: 30px;
  margin-top: -15px;
}

/* Slider fade
   ----------------------------------------------------------------------------------------*/
.swiper-container-fade .swiper-slide {
  opacity: 0;
}

.pagination-dominant-color {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  text-align: center;
  margin: 10px auto;
}

.pagination-dominant-color .swiper-pagination-bullet {
  border-color: #e3e3e3;
}

.pagination-dominant-color .swiper-pagination-bullet-active {
  background: #ec2235;
}

/* Custom sliders
   ----------------------------------------------------------------------------------------*/
/* Slider section
   ------------------------------------------*/
.slider-section-wrapper {
  position: relative;
}

.slider-section-wrapper .swiper-button {
  color: #484848;
}

.slider-section-wrapper .swiper-button-next {
  right: -10%;
}

@media (max-width: 1640px) {
  .slider-section-wrapper .swiper-button-next {
    right: -40px;
  }
}

.slider-section-wrapper .swiper-button-prev {
  left: -10%;
}

@media (max-width: 1640px) {
  .slider-section-wrapper .swiper-button-prev {
    left: -40px;
  }
}

/* $BUTTONS
========================================================================== */
.btn {
  color: #FFF;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: inherit;
  position: relative;
  height: 50px;
  line-height: 49px;
  background-color: #ec2235;
  border: 1px solid transparent;
  -webkit-border-radius: 999px;
          border-radius: 999px;
  padding: 0 50px 0 30px;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn:not(:last-child) {
  margin-bottom: 40px;
}

.btn:before {
  position: absolute;
  right: 20px;
  font-size: 0.7em;
  line-height: 50px;
  padding-left: 7px;
  color: #FFF;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn:hover, .btn:focus {
  color: #484848;
  background-color: transparent;
  border-color: #ec2235;
  outline: none;
}

.btn:hover:before, .btn:focus:before {
  color: #ec2235;
  -webkit-transform: translatex(2px);
      -ms-transform: translatex(2px);
          transform: translatex(2px);
}

.btn:hover [class*="icon-"], .btn:focus [class*="icon-"] {
  color: #FFF;
}

.btn:focus {
  top: 1px;
  border-color: #d9d9d9;
}

.btn [class*="icon-"] {
  display: inline-block;
  margin-right: 9px;
  vertical-align: top;
  color: #ec2235;
  font-size: 1.0rem;
}

.btn--white {
  color: #484848 !important;
  background-color: white;
  border-color: white;
  border-width: 2px;
}

.btn--white:before, .btn--white [class*="icon-"]:before {
  color: #ec2235;
}

.btn--white:hover {
  color: white;
  border-color: white;
  background-color: transparent;
}

.btn--white:hover:before, .btn--white:hover [class*="icon-"]:before {
  color: #FFF;
}

.btn--white:focus {
  border-width: 2px;
}

a.btn.btn--invert.btn-cp {
  margin-bottom: 10px;
  margin-right: 20px;
}

.btn--invert {
  color: #484848;
  background-color: transparent;
  border-color: #ec2235;
  border-width: 2px;
}

.btn--invert:before {
  color: #ec2235;
}

.btn--invert:hover {
  color: #FFF;
  background-color: #ec2235;
}

.btn--invert:hover:before {
  color: #FFF;
}

.btn--invert:focus {
  border-width: 2px;
}

.btn--back .fleche-wrapper {
  right: initial;
  left: -30px;
}

.btn--back .fleche {
  float: left;
}

.btn--sm {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
}

.btn--long {
  padding: 0 50px;
}

.btn--sans-fleche {
  padding: 0 30px;
}

.btn--sans-fleche:before {
  display: none;
}

/* Bouton sans texte */
.btn-notext {
  width: 60px;
  height: 60px;
  line-height: 60px;
  padding: 0;
}

.btn-notext .fleche-wrapper {
  left: -20px;
}

.btn-noborder:before {
  display: none;
}

.btn-noborder .fleche-wrapper {
  right: -10px;
}

.btn-noborder:hover {
  color: #ec2235;
}

.btn-noborder:hover .fleche-wrapper {
  right: -20px;
}

.btn-ring, .pagination .page-numbers {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  color: #484848;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 100%;
          border-radius: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-ring:hover, .pagination .page-numbers:hover, .btn-ring:focus, .pagination .page-numbers:focus {
  color: #FFF;
  border-color: #ec2235;
  background-color: #ec2235;
}

.bloc-bg-colored .btn-ring:hover, .bloc-bg-colored .pagination .page-numbers:hover, .pagination .bloc-bg-colored .page-numbers:hover, .bloc-bg-colored .btn-ring:focus, .bloc-bg-colored .pagination .page-numbers:focus, .pagination .bloc-bg-colored .page-numbers:focus {
  border-color: #FFF;
  background-color: #FFF;
}

.bloc-bg-colored .btn-ring:hover .icon:before, .bloc-bg-colored .pagination .page-numbers:hover .icon:before, .pagination .bloc-bg-colored .page-numbers:hover .icon:before, .bloc-bg-colored .btn-ring:hover, .bloc-bg-colored .pagination .page-numbers:hover, .pagination .bloc-bg-colored .page-numbers:hover, .bloc-bg-colored .btn-ring:focus .icon:before, .bloc-bg-colored .pagination .page-numbers:focus .icon:before, .pagination .bloc-bg-colored .page-numbers:focus .icon:before, .bloc-bg-colored .btn-ring:focus, .bloc-bg-colored .pagination .page-numbers:focus, .pagination .bloc-bg-colored .page-numbers:focus {
  color: #ec2235;
}

.btn-ring--invert {
  color: #FFF;
  border-color: #ec2235;
  background-color: #ec2235;
}

.btn-ring--invert:hover, .btn-ring--invert:focus {
  color: #FFF;
  border-color: #ca1123;
  background-color: #ca1123;
}

.btn-ring--border {
  color: #ec2235;
  border-color: #e6e6e6;
  background-color: transparent;
}

.btn-ring--border:hover, .btn-ring--border:focus {
  color: #FFF;
  border-color: #ca1123;
  background-color: #ca1123;
}

.btn-ring--border--bl, .pagination .page-numbers {
  color: #484848;
  border-color: #e6e6e6;
  background-color: transparent;
}

.btn-ring--border--bl:hover, .pagination .page-numbers:hover, .btn-ring--border--bl:focus, .pagination .page-numbers:focus {
  color: #FFF;
  border-color: #ca1123;
  background-color: #ca1123;
}

.btn-ring--m {
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 18px;
  border-width: 3px;
}

.btn-ring--l {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 28px;
  vertical-align: middle;
}

.btn-ring--base-color {
  color: #484848;
}

.btn-ring--color2 {
  border-color: #ec2235;
  color: #FFF;
}

.btn-ring--color3 {
  border-color: #ec2235;
  color: #484848;
}

.btn-dropdown-wrapper {
  position: relative;
  background-color: #FFF;
  min-width: 420px;
}

@media (max-width: 768px) {
  .btn-dropdown-wrapper {
    min-width: 100%;
    max-width: 100%;
  }
}

.btn-dropdown {
  width: 100%;
  display: block;
  height: 60px;
  line-height: 60px;
  text-align: left;
  padding: 0 20px;
  border: 1px solid #D8D8DA;
  background-color: #FFF;
}

.btn-dropdown:before {
  float: right;
  color: #ec2235;
  font-size: 16px;
  margin-right: .25rem;
  line-height: inherit;
}

.btn-dropdown:after {
  display: none;
}

.btn-dropdown-menu {
  top: 90%;
  width: 100%;
  border-left: 1px solid #D8D8DA;
  border-right: 1px solid #D8D8DA;
  border-bottom: 1px solid #D8D8DA;
}

.btn-dropdown-menu li a {
  color: #484848;
  font-size: 18px;
  display: block;
  line-height: 60px;
  padding: 0 20px;
}

.btn-dropdown-menu li a:hover {
  background-color: #ec2235;
  color: #FFF;
}

.btn-bordered {
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-bordered [class^="icon"] {
  font-size: 16px;
  color: #ec2235;
  line-height: 0;
  vertical-align: middle;
}

.btn-bordered:hover {
  border-color: #ec2235;
  background-color: #ec2235;
}

.btn-bordered:hover:before,
.btn-bordered:hover span {
  color: #FFF;
}

.btn-text-only {
  color: #ec2235;
  background-color: transparent;
  border: none;
  padding-left: 0;
}

.btn-text-only:hover, .btn-text-only:focus {
  background-color: transparent;
  color: inherit;
}

.btn-text-only:hover:before, .btn-text-only:focus:before {
  color: inherit;
}

.btn-download > i.icon, .btn-download:before {
  color: #ec2235;
}

.btn-download > i.icon {
  margin-right: 9px;
  vertical-align: top;
  color: #ec2235;
  font-size: 2.0rem;
}

.btn-download:hover > i.icon, .btn-download:hover:before {
  color: #484848;
}

/* Groupes de boutons
----------------------------------------------------------------------------------------*/
.btn-group {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 769px) {
  .btn-group {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (max-width: 768px) {
  .btn-group {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
}

.btn-group .btn {
  display: block;
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .btn-group .btn {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .btn-group .btn {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* $DROPDOWN
========================================================================== */
/* Horizontal Dropdown
----------------------------------------------------------------------------------------*/
.dropdown-menu {
  -webkit-border-radius: 0;
          border-radius: 0;
  border: none;
}

@media (min-width: 961px) {
  .dropdown-menu {
    left: -40px;
  }
}

.dropdown-toggle::after {
  margin-left: 0.5rem;
}

@media (max-width: 1200px) {
  .dropdown-toggle::after {
    display: none;
  }
}

@media (min-width: 1201px) {
  .dropdown-submenu {
    position: relative;
  }
}

@media (min-width: 1201px) {
  .dropdown-submenu .dropdown-menu {
    top: -35px;
    left: 100%;
    margin-top: -1px;
  }
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes fadeInUpSoft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpSoft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUpSoft {
  -webkit-animation-name: fadeInUpSoft;
          animation-name: fadeInUpSoft;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

/* $LISTE
========================================================================== */
.list-entry {
  margin-bottom: 70px;
}

.item-entry {
  border-bottom: 1px solid #e6e6e6;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.item-entry:first-child {
  border-top: 1px solid #e6e6e6;
}

.item-entry__contenu {
  cursor: pointer;
  color: #484848;
  padding: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-entry__contenu p, .item-entry__contenu .p-like, .item-entry__contenu ol.listing-recherche > li p, ol.listing-recherche > li .item-entry__contenu p {
  margin-bottom: 20px;
}

.item-entry__title {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  line-height: 2.6rem;
  letter-spacing: -0.3px;
  font-weight: 600;
  margin-bottom: 5px;
}

.item-entry__contenu-right {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  text-align: right;
}

.item-entry:hover, .item-entry:focus {
  color: #FFF;
  border-color: #ec2235;
  background-color: #ec2235;
}

.item-entry:hover .item-entry__contenu, .item-entry:hover .item-entry__contenu .icon, .item-entry:focus .item-entry__contenu, .item-entry:focus .item-entry__contenu .icon {
  color: #FFF;
}

.item-entry:focus {
  color: #FFF;
  border-color: #ca1123;
  background-color: #ca1123;
}

.liste-coordonnees address {
  margin-bottom: 20px;
}

.liste-coordonnees address > strong {
  display: block;
  margin-bottom: 0;
}

.liste-coordonnees address + address > strong {
  border-top: 1px solid #CCC;
  padding-top: 30px;
}

/* CARDS LISTING
----------------------------------------------------------------------------------------*/
.lesCards .cards {
  border: 1px solid #e6e6e6;
  min-height: 250px;
}

.lesCards .cards:hover {
  border: 1px solid #b0a1a1;
}

/* ASIDES
----------------------------------------------------------------------------------------*/
.aside-2 {
  max-width: 200px;
  margin: 0 0 20px;
}

@media all and (min-width: 600px) {
  .aside {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
        -ms-flex: 1 auto;
            flex: 1 auto;
  }
}

@media all and (min-width: 800px) {
  .aside-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .aside-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .lycee {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}

/* $PAGINATION
   ========================================================================== */
.pagination {
  display: block;
}

.pagination .page-numbers {
  color: #484848;
  margin-left: 10px;
  font-weight: bold;
}

.pagination .page-numbers.current {
  color: #FFF;
  border-color: #ec2235;
  background-color: #ec2235;
  pointer-events: none;
}

.pagination .dots {
  color: #484848;
  margin-left: 10px;
  font-weight: bold;
  border: none;
  vertical-align: bottom;
  line-height: 40px;
  width: 20px;
}

/* ==========================================================================
   $PAGES
   ========================================================================== */
/* $ACCUEIL
========================================================================== */
/* SLIDER
----------------------------------------------------------------------------------------*/
#home-slider {
  padding-bottom: 32%;
  background: #cccccc;
}

@media (max-width: 768px) {
  #home-slider {
    padding-bottom: 64%;
  }
}

#home-slider .swiper-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

#home-slider .swiper-slide {
  overflow: hidden;
}

#home-slider .swiper-slide__image {
  color: #FFF;
  background-position: center;
}

#home-slider .swiper-slide__image:after {
  content: "";
}

#home-slider .title-slider-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 15%;
  max-width: 500px;
}

#home-slider .title-slider-inner > a.btn {
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  font-size: 14px;
}

#home-slider .pagination {
  position: absolute;
  top: 50%;
  top: inherit;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 10px;
  z-index: 1;
}

/* Bourses active
----------------------------------------------------------------------------------------*/
.bg-bourses-active {
  background: url("../images/fond-bourses-actives.jpg") no-repeat;
  background-size: cover;
}

/* Concours eloquence
----------------------------------------------------------------------------------------*/
.bg-concours-eloquence {
  background: #1e3b5c;
}

/* Home actu
----------------------------------------------------------------------------------------*/
.home-actu-slider-pagination {
  margin-right: 10px;
}

/* Social Tab
----------------------------------------------------------------------------------------*/
.ui-tabs-tab:not(.ui-tabs-active) .btn-ring, .ui-tabs-tab:not(.ui-tabs-active) .pagination .page-numbers, .pagination .ui-tabs-tab:not(.ui-tabs-active) .page-numbers {
  background-color: transparent;
  border-color: #ccc;
  color: #aaaaaa;
}

/* Twitter
------------------------------------------*/
.twitter-item {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #aaaaaa;
}

.twitter-item p, .twitter-item .p-like, .twitter-item ol.listing-recherche > li p, ol.listing-recherche > li .twitter-item p {
  line-height: 22px;
  line-height: 2.2rem;
  margin-bottom: 10px;
}

/* $METIERS PRE RESULTATS
========================================================================== */
.metier-trouve {
  max-height: 1220px;
  overflow-y: auto;
}

/* $METIERS FICHE DETAIL
   ========================================================================== */
.section-autres-metiers-secteur {
  border-top: 1px solid #d2d2d2;
}

/* Autres metiers
------------------------------------------*/
.item-autre-metier-secteur {
  margin-bottom: 0;
  height: 100%;
}

/* ==========================================================================
   *VIDEOS ENTREPRISES
   ========================================================================== */
/* Formulaire */
@media (min-width: 961px) {
  .form-videos-entreprise #mot-cles {
    width: 410px;
  }
}

/* Entreprises map */
#entreprises-resultat-map {
  height: 350px;
}

/* $SITEMAP
========================================================================== */
.sitemap {
  text-align: left;
}

.sitemap ul {
  list-style: inherit;
}

.sitemap ul li {
  font-weight: 300;
  list-style-type: disc;
}

.sitemap ul li a {
  display: inline-block;
  margin-bottom: 10px;
}

.sitemap ul ul {
  margin-left: 20px;
}

.sitemap > ul > li {
  font-weight: 600;
}

/* $CONTACT
========================================================================== */
#contact-map {
  width: 100%;
  height: 600px;
}

@media (max-width: 768px) {
  #contact-map {
    height: 400px;
  }
}

/* EDIT
========================================================================== */
@media (min-width: 640px) {
  .lien-detail-cv {
    flex-shrink: 0;
  }
}

form.form .alumni-form-control {
  height: 46px;
  margin-top: 5px;
  font-size: 16px;
  border-radius: 8px;
}

.checkbox-label {
  display: inline-block;
}

.checkbox [type="checkbox"]:not(:checked) + .wpcf7-list-item-label,
.checkbox [type="checkbox"]:checked + .wpcf7-list-item-label,
.checkbox [type="checkbox"]:not(:checked) + .checkbox-label,
.checkbox [type="checkbox"]:checked + .checkbox-label {
  line-height: 20px;
  position: relative;
  padding-left: 35px;
  padding-top: 7px;
  padding-bottom: 7px;
  cursor: pointer;
}

.checkbox [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:before,
.checkbox [type="checkbox"]:checked + .wpcf7-list-item-label:before,
.checkbox [type="checkbox"]:not(:checked) + .checkbox-label:before,
.checkbox [type="checkbox"]:checked + .checkbox-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  border: 1px solid #aaaaaa;
  background: white;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.checkbox [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after,
.checkbox [type="checkbox"]:checked + .wpcf7-list-item-label:after,
.checkbox [type="checkbox"]:not(:checked) + .checkbox-label:after,
.checkbox [type="checkbox"]:checked + .checkbox-label:after {
  content: '';
  background: url("../images/icone-checked.svg") no-repeat;
  position: absolute;
  top: 12px;
  left: 7px;
  color: #ec2235;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 14px;
  height: 10px;
}

.checkbox [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after,
.checkbox [type="checkbox"]:not(:checked) + .checkbox-label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.checkbox [type="checkbox"]:checked + .wpcf7-list-item-label:after,
.checkbox [type="checkbox"]:checked + .checkbox-label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.checkbox [type="checkbox"]:disabled:not(:checked) + .wpcf7-list-item-label:before,
.checkbox [type="checkbox"]:disabled:checked + .wpcf7-list-item-label:before,
.checkbox [type="checkbox"]:disabled:not(:checked) + .checkbox-label:before,
.checkbox [type="checkbox"]:disabled:checked + .checkbox-label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

.checkbox [type="checkbox"]:disabled:checked + .wpcf7-list-item-label:after,
.checkbox [type="checkbox"]:disabled:checked + .checkbox-label:after {
  color: #999;
}

.checkbox [type="checkbox"]:disabled + .wpcf7-list-item-label,
.checkbox [type="checkbox"]:disabled + .checkbox-label {
  color: #aaa;
}

.checkbox--transparent [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:before,
.checkbox--transparent [type="checkbox"]:checked + .wpcf7-list-item-label:before,
.checkbox--transparent [type="checkbox"]:not(:checked) + .checkbox-label:before,
.checkbox--transparent [type="checkbox"]:checked + .checkbox-label:before {
  background: transparent;
}

.checkbox--transparent [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after,
.checkbox--transparent [type="checkbox"]:checked + .wpcf7-list-item-label:after,
.checkbox--transparent [type="checkbox"]:not(:checked) + .checkbox-label:after,
.checkbox--transparent [type="checkbox"]:checked + .checkbox-label:after {
  background: url("../images/icone-checked-white.svg") no-repeat;
}

.wpcf7-checkbox.checkbox .wpcf7-list-item {
  margin-bottom: 20px;
  width: 100%
}

@media (min-width: 480px) {
  .wpcf7-checkbox.checkbox {
    margin: 0 -20px;
  }

  .wpcf7-checkbox.checkbox .wpcf7-list-item {
    margin: 0 20px 20px;
    width: calc(50% - 40px);
  }
}

@media (min-width: 768px) {
  .wpcf7-checkbox.checkbox .wpcf7-list-item {
    width: calc(33.33% - 40px);
  }
}

.profile-header {
  margin-bottom: 40px;
  padding: 30px;
  font-size: 26px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #e9e9e9;
}

.profile-header p {
  margin-bottom: 10px;
}

.profile-picture {
  display: block;
  flex-shrink: 0;
  height: 60px;
  margin-right: 20px;
  width: 60px;
  background: url(../images/profile-picture.png) center / cover no-repeat, #e3e3e3;
  border-radius: 50%;
}

.profile-header .profile-picture {
  margin-right: 20px;
  border: 2px solid #ec2235;
}

.btn-close {
  height: auto;
  padding: 0 20px 0 40px;
  color: #999;
  font-weight: 400;
  line-height: 32px;
  background-color: #ddd;
  border: none;
}

.btn-close::before {
  right: auto;
  left: 20px;
  padding-left: 0;
  color: #ec2235;
  font-weight: bold !important;
  line-height: inherit;
  content: '\6d';
}

.btn-close:hover,
.btn-close:focus {
  color: #fff;
  background-color: #ec2235;
}

.btn-close:hover::before,
.btn-close:focus::before {
  color: #fff;
  transform: none;
}

.dashboard-sidebar .titre-paragraphe {
  margin-bottom: 0;
  padding-bottom: 20px;
  font-weight: 400;
}

.dashboard-sidebar ul.liste-border {
  margin-bottom: 40px;
  border-top: none;
}

.dashboard-sidebar ul.liste-border li {
  padding: 25px 0 25px 25px;
  text-indent: 0;
}

.dashboard-sidebar ul.liste-border li.active {
  background-color: #f6f6f6;
}

.dashboard-sidebar ul.liste-border li.active a {
  color: #ec2235;
}

form.tri {
  position: absolute;
  top: 0;
  right: 2rem;
}

form.tri .form-group {
  margin-bottom: 0;
}

form.tri .select-wrap {
  margin-left: 15px;
  padding: 0;
}

form.tri .select-wrap::before {
  color: #ec2235;
}

form.tri select {
  height: 40px;
  padding: 0 35px 0 16px;
  width: 100%;
  color: #999;
  border-radius: 3px;
  border: 1px solid #e9e9e9;
}

.discussion {
  padding: 30px;
  border-bottom: 1px solid #e9e9e9;
}

.discussion-non-lu {
  background-color: #f6f6f6;
}

.discussion p {
  margin-bottom: 10px;
}

.discussion .row {
  margin: 0;
}

.discussion .row p {
  margin-bottom: 0;
}

.filters-toggle {
  position: absolute;
  top: 0;
  right: 2rem;
  color: #ec2235;
  background: transparent;
  border: none;
}

.filters-toggle.down {
  transform: rotateZ(180deg);
}

.acteur {
  padding: 30px;
  border-bottom: 1px solid #e9e9e9;
}

.acteur h3 {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
   -webkit-box-flex: 1;
          flex-grow: 1;
}

.filter-form {
  display: none;
  padding: 30px 40px;
  background-color: #f6f6f6;
}

.filter-group {
  margin: 0 20px 20px 0;
  width: calc(50% - 10px);
}

.filter-group:last-child,
.filter-group:nth-child(2n) {
  margin-right: 0;
}

@media (max-width: 599px) {
  .filter-form .d-f {
    display: block;
  }

  .filter-group {
    margin: 0 0 20px;
    width: 100%;
  }

  .filter-group .control-label {
    margin-bottom: 0;
  }
}

.fwrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

form.filter-form .select-wrap {
  padding: 0;
  min-width: 0;
  width: 100%;
}

form.filter-form .select-wrap::before {
  color: #ec2235;
}

form.filter-form select {
  height: 40px;
  padding: 0 35px 0 16px;
  width: 100%;
  color: #999;
  border-radius: 3px;
  border: 1px solid #e9e9e9;
}

.filter-button-wrap {
  position: relative;
}

.form .filter-button-wrap input {
  padding-right: 40px;
}

.filter-button {
  position: absolute;
  top: 50%;
  right: 10px;
  color: #ec2235;
  background: transparent;
  border: none;
  transform: translateY(-50%);
}

form.form .file-wrapper {
  position: relative;
  padding-right: 143px;
  color: #999;
}

.file-wrapper [type=file] {
  position: absolute;
  left: -9999px;
}

.file-wrapper [type=file]:focus ~ .btn {
  color: #484848;
  background-color: transparent;
  border-color: #ec2235;
  outline: none;
}

.file-wrapper [type=file]:focus ~ .btn::before {
  color: #ec2235;
  -webkit-transform: translatex(2px);
      -ms-transform: translatex(2px);
          transform: translatex(2px);
}

.file-wrapper span {
  overflow: hidden;
  display: block;
  line-height: 60px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.file-wrapper .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 48px;
  padding: 0 40px 0 20px;
  border-radius: 6px;
}

.img-fullwidth,
img.size-full {
  width: 100%;
}

.text-acteur p {
  margin-bottom: 20px;
}

.bloc-card.direction-row {
  margin-left: 0;
  margin-right: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.bloc-card.direction-row img {
  left: 50%;
  height: 100%;
  max-width: none;
  width: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bloc-card.direction-row p {
  margin-left: 0;
  margin-right: 0;
  width: auto;
}

@media (max-width: 479px) {
  .profile-header {
    text-align: center;
  }

  .profile-header .d-f {
    display: block;
  }

  .profile-picture {
    margin: 0 auto 20px;
  }

  .profile-header .profile-picture {
    margin-right: auto;
  }

  .discussion .d-f {
    display: block;
  }

  .acteur .d-f {
    display: block;
    text-align: center;
  }

  form.tri {
    position: relative;
    right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  form.tri .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 769px) {
  .form-control-no-label {
    margin-left: 120px;
  }
}

@media (min-width: 960px) {
  .form-control-no-label {
    margin-left: 130px;
  }
}

.checkbox[class*="col"] {
  margin-bottom: 0;
  padding-bottom: 0;
}

.checkbox[class*="col"] .checkbox-label {
  min-height: 54px;
}

.acteur-check + .checkbox-label {
  line-height: 20px;
  position: relative;
  padding-left: 35px;
  padding-top: 7px;
  padding-bottom: 7px;
  cursor: pointer;
}

.acteur-check + .checkbox-label::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  background: url(../images/icone-checked.svg) center no-repeat;
  border-radius: 3px;
  content: '';
}

@media (min-width: 769px) {
  form.form .control-label-large {
    min-width: 250px;
  }
}

form.form.form-connect [class*="col-"] {
  padding: 0 15px 30px;
}

form.form-small {
  margin: 0 auto;
  max-width: 1000px;
}

form.form-small [class*="icon"] {
  margin-right: 10px;
  color: #ec2235;
  font-size: 11px;
}

form.form-alumni .titre-paragraphe {
  border-color: #ec2235;
}

.invisible {
  opacity: 0;
  visibility: hidden;
}