@charset "UTF-8";
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,900;1,500&display=swap");
/* RESPONSIVE MIXINS BREAKPOINT */
/* CUSTOM WIDTH CONTAINER */
/*
$xlg-container: 1200px;
$lg-container: 90%;
$md-container: 90%;
$sm-container: 90%;
*/
/* CUSTOM WIDTH CONTAINER DEFAULT */
/* CUSTOM COLORS VARIABLES */
/* BASICS COLORS VARIABLES */
/* PADDINGS */
/* PADDINGS FORM ADHESION/INSCRIPTION */
/* Plus grand ou égal custom */
/* Plus petit ou égal custom */
/* Plus grand ou égal à 1400px */
/* Plus petit ou égal à 1399px */
/* Plus grand ou égal à 1200px */
/* Plus petit ou égal à 1199px */
/* Plus grand ou égal à 992px */
/* Plus petit ou égal à 991px */
/* Plus grand ou égal à 768px */
/* Plus petit ou égal à 767px */
/* Plus grand ou égal à 576px */
/* Plus petit ou égal à 575px */
/* Entre 1399px et 1199px */
/* Entre 1199px et 992px */
/* Entre 1199px et 768px */
/* Entre 1199px et 576px */
/* Entre 991px et 768px */
/* Entre 991px et 576px */
/* Entre 767px et 576px */
/*Global variable for REM
    $rem : 16px;
*/
/* RESPONSIVE REM FONT-SIZE
html{
    font-size: $rem;
    @media only screen and (max-width : $lg) {
        html{font-size: 10px;}
    }
    @media only screen and (max-width : $md) {
        html{font-size: 8px;}
    }
    @media only screen and (max-width : $sm) {
        html{font-size: 5px;}
    }
    @media only screen and (max-width : $xs) {
        html{font-size: 5px;}
    }
}*/
.container {
  /*
  @include min-custom(1500px) {
      width: $xlg-container;
  }
  */
}
@media (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1152px;
  }
}

/* All titles */
/* col-grid */
/* Cancel UL LI list */
/* Solid background with opacity */
/* Solid background with gradient */
/* Background overlay with :after */
/* Gradient background overlay with :after, 6 variables to fill */
/* Absolute positions */
/* clear float after */
/* Fake container */
/* IMAGE Z LAYOUT */
/* BORDER */
/********************************************************************/
/* DISPLAY RESPONSIVE */
/********************************************************************/
.displaynone {
  display: none;
}

@media (max-width: 1199px) {
  .lg-hidden {
    display: none;
  }
}

@media (max-width: 991px) {
  .md-hidden {
    display: none;
  }
}

@media (max-width: 767px) {
  .sm-hidden {
    display: none;
  }
}

/********************************************************************/
/* CLEAR AFTER */
/********************************************************************/
.clearafter:after {
  content: "";
  display: block;
  clear: both;
}

/********************************************************************/
/* PADDINGS */
/********************************************************************/
.nopaddingtop {
  padding-top: 0 !important;
}

.nopaddingbottom {
  padding-bottom: 0 !important;
}

.xsmallpadding {
  padding: 1rem 0 !important;
}

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

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

.smallpadding {
  padding: 3.5rem 0 !important;
}

.smallpaddingtop {
  padding-top: 3.5rem !important;
}

.smallpaddingbottom {
  padding-bottom: 3.5rem !important;
}

.largepadding {
  padding: 7.5rem 0 !important;
}

.largepaddingtop {
  padding-top: 7.5rem !important;
}

.largepaddingbottom {
  padding-bottom: 7.5rem !important;
}

.xlargepadding {
  padding: 12.5rem 0 !important;
}

.xlargepaddingtop {
  padding-top: 12.5rem !important;
}

.xlargepaddingbottom {
  padding-bottom: 12.5rem !important;
}

@media (max-width: 767px) {
  .smallpadding {
    padding: 40px 0;
  }

  .smallpaddingtop {
    padding-top: 40px;
  }

  .smallpaddingbottom {
    padding-bottom: 40px;
  }

  .largepadding {
    padding: 80px 0;
  }

  .largepaddingtop {
    padding-top: 80px;
  }

  .largepaddingbottom {
    padding-bottom: 80px;
  }
}
/********************************************************************/
/* ALIGNEMENTS */
/********************************************************************/
/* Alignement vertical flex */
.verticalalign .row {
  display: flex;
  flex-wrap: wrap;
}
.verticalalign .row > div {
  display: flex;
  flex-direction: column;
}
.verticalalign .row > div > div {
  width: 100%;
}
.verticalalign.center .row > div {
  align-items: center;
  justify-content: center;
}
.verticalalign.bottom .row > div {
  align-items: center;
  justify-content: flex-end;
}

/* Centrer l'image d'un article */
.centeredimage .mod-article__img, .centeredimage .news-thumbnail {
  display: block;
  margin: 0 auto;
}
.centeredimage .itemImage {
  text-align: center;
}
.centeredimage .itemImage img {
  display: inline-block !important;
}
.centeredimage .item img {
  display: inline-block !important;
}
.centeredimage-marginbottom .mod-article__img, .centeredimage-marginbottom .news-thumbnail {
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}
.centeredimage-margintop .mod-article__img, .centeredimage-margintop .news-thumbnail {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
}

/* Centrer tous les éléments d'un article en mobile */
@media (max-width: 767px) {
  .mobileallcenter {
    text-align: center;
  }
  .mobileallcenter .zone-article, .mobileallcenter .zone-article div {
    width: 100%;
  }
}

/* Centrer uniquement l'image d'un article en mobile */
@media (max-width: 767px) {
  .mobileimgcenter {
    text-align: center;
  }
  .mobileimgcenter .zone-article, .mobileimgcenter .zone-article div {
    width: 100%;
  }
  .mobileimgcenter .mod-article__intro {
    margin-top: 30px;
  }
  .mobileimgcenter .mod-article__intro, .mobileimgcenter .mod-article__content .mod-article__content {
    text-align: left;
  }
}

/********************************************************************/
/* MISE EN PAGE */
/********************************************************************/
/* Intro des pages */
.pageIntroduction {
  text-align: center;
}
.pageIntroduction .mod-article__intro, .pageIntroduction .mod-article__content, .pageIntroduction .zone-html > .content {
  max-width: 750px;
  margin: auto;
}

/* Full Width 80% */
@media (min-width: 768px) {
  .fullwidth-80 .container {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  .fullwidth-80 .container {
    width: 80%;
  }
}

/* Layout en Z */
@media (max-width: 767px) {
  .zlayout > .container > .row, .zlayout > .container-fluid > .row {
    display: flex;
    flex-flow: column;
  }
  .zlayout > .container > .row > div:first-child, .zlayout > .container-fluid > .row > div:first-child {
    order: 1;
  }
  .zlayout > .container > .row > div:last-child, .zlayout > .container-fluid > .row > div:last-child {
    order: 0;
  }
  .zlayout .zone-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .md-zlayout > .container > .row, .md-zlayout > .container-fluid > .row {
    display: flex;
    flex-flow: column;
  }
  .md-zlayout > .container > .row > div:first-child, .md-zlayout > .container-fluid > .row > div:first-child {
    order: 1;
  }
  .md-zlayout > .container > .row > div:last-child, .md-zlayout > .container-fluid > .row > div:last-child {
    order: 0;
  }
  .md-zlayout .zone-image {
    margin-bottom: 30px;
  }
}

/********************************************************************/
/* TITLES */
/********************************************************************/
.whitetitles h1, .whitetitles h2, .whitetitles h3, .whitetitles h4, .whitetitles h5, .whitetitles h6, .whitetitles p, .whitetitles .h1, .whitetitles .h2, .whitetitles .h3, .whitetitles .h4, .whitetitles .h5, .whitetitles .h6 {
  color: #fff !important;
}
.whitetitles-h1 h1, .whitetitles-h2 h2, .whitetitles-h3 h3, .whitetitles-h4 h4, .whitetitles-h5 h5, .whitetitles-h6 h6 {
  color: #fff !important;
}

.whiteparagraphe p {
  color: #000;
}

.darktitles h1, .darktitles h2, .darktitles h3, .darktitles h4, .darktitles h5, .darktitles h6, .darktitles p, .darktitles .h1, .darktitles .h2, .darktitles .h3, .darktitles .h4, .darktitles .h5, .darktitles .h6 {
  color: #000 !important;
}
.darktitles-h1 h1, .darktitles-h2 h2, .darktitles-h3 h3, .darktitles-h4 h4, .darktitles-h5 h5, .darktitles-h6 h6 {
  color: #000 !important;
}

.darkparagraphe p {
  color: #000;
}

/* Pour les modules d'articles en vedette seulement, 
mettre nombre de colonnes à 1 dans le module */
.col-grid[class*=grid] .newsList, .col-grid[class*=grid] .news-mosaic, .col-grid[class*=grid] .eventsList {
  gap: 100px 30px;
}
.col-grid.grid-5 .newsList, .col-grid.grid-5 .news-mosaic, .col-grid.grid-5 .eventsList {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.col-grid.grid-4 .newsList, .col-grid.grid-4 .news-mosaic, .col-grid.grid-4 .eventsList {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.col-grid.grid-3 .newsList, .col-grid.grid-3 .news-mosaic, .col-grid.grid-3 .eventsList {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.col-grid.grid-2 .newsList, .col-grid.grid-2 .news-mosaic, .col-grid.grid-2 .eventsList {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.col-grid.grid-1 .newsList, .col-grid.grid-1 .news-mosaic, .col-grid.grid-1 .eventsList {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-5 .newsList, .col-grid.grid-lg-5 .news-mosaic, .col-grid.grid-lg-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-4 .newsList, .col-grid.grid-lg-4 .news-mosaic, .col-grid.grid-lg-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-3 .newsList, .col-grid.grid-lg-3 .news-mosaic, .col-grid.grid-lg-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-2 .newsList, .col-grid.grid-lg-2 .news-mosaic, .col-grid.grid-lg-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-1 .newsList, .col-grid.grid-lg-1 .news-mosaic, .col-grid.grid-lg-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-5 .newsList, .col-grid.grid-md-5 .news-mosaic, .col-grid.grid-md-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-4 .newsList, .col-grid.grid-md-4 .news-mosaic, .col-grid.grid-md-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-3 .newsList, .col-grid.grid-md-3 .news-mosaic, .col-grid.grid-md-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-2 .newsList, .col-grid.grid-md-2 .news-mosaic, .col-grid.grid-md-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-1 .newsList, .col-grid.grid-md-1 .news-mosaic, .col-grid.grid-md-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-5 .newsList, .col-grid.grid-sm-5 .news-mosaic, .col-grid.grid-sm-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-4 .newsList, .col-grid.grid-sm-4 .news-mosaic, .col-grid.grid-sm-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-3 .newsList, .col-grid.grid-sm-3 .news-mosaic, .col-grid.grid-sm-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-2 .newsList, .col-grid.grid-sm-2 .news-mosaic, .col-grid.grid-sm-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-1 .newsList, .col-grid.grid-sm-1 .news-mosaic, .col-grid.grid-sm-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-5 .newsList, .col-grid.grid-xs-5 .news-mosaic, .col-grid.grid-xs-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-4 .newsList, .col-grid.grid-xs-4 .news-mosaic, .col-grid.grid-xs-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-3 .newsList, .col-grid.grid-xs-3 .news-mosaic, .col-grid.grid-xs-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-2 .newsList, .col-grid.grid-xs-2 .news-mosaic, .col-grid.grid-xs-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-1 .newsList, .col-grid.grid-xs-1 .news-mosaic, .col-grid.grid-xs-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.col-grid .newsList, .col-grid .news-mosaic, .col-grid .eventsList {
  display: grid;
}
.col-grid .newsList .row, .col-grid .news-mosaic .row, .col-grid .eventsList .row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.col-grid .newsList .row .item, .col-grid .newsList .row > div, .col-grid .news-mosaic .row .item, .col-grid .news-mosaic .row > div, .col-grid .eventsList .row .item, .col-grid .eventsList .row > div {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Remove outline on link and button */
input, select, textarea, button {
  outline: none !important;
}

*:focus, *:hover, img {
  outline: none;
}

a:active, a:focus {
  outline: 0;
  -moz-outline-style: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: 0;
  -moz-outline-style: none;
}

/* Change selection color */
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #000000;
}

::selection {
  color: #fff;
  background: #000000;
}

/* Remove native back to list button because its a javascrip history back */
.article-back-to-list-histo {
  display: none;
}

/* Hides all the medias sharing button because we never used them */
.plugin-addthis {
  /*display: none;*/
}

/* MOBILE CONTAINER PADDING LARGER BECAUSE OUR DESIGNERS LIKE IT THICC */
@media (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* FIX FLEX ON SAFARI, do not delete */
@media (min-width: 768px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
    margin: 0 -1px;
  }
}
.zone-banner {
  margin: 0;
}
.zone-banner .col-xs-1, .zone-banner .col-sm-1, .zone-banner .col-md-1, .zone-banner .col-lg-1, .zone-banner .col-xs-2, .zone-banner .col-sm-2, .zone-banner .col-md-2, .zone-banner .col-lg-2, .zone-banner .col-xs-3, .zone-banner .col-sm-3, .zone-banner .col-md-3, .zone-banner .col-lg-3, .zone-banner .col-xs-4, .zone-banner .col-sm-4, .zone-banner .col-md-4, .zone-banner .col-lg-4, .zone-banner .col-xs-5, .zone-banner .col-sm-5, .zone-banner .col-md-5, .zone-banner .col-lg-5, .zone-banner .col-xs-6, .zone-banner .col-sm-6, .zone-banner .col-md-6, .zone-banner .col-lg-6, .zone-banner .col-xs-7, .zone-banner .col-sm-7, .zone-banner .col-md-7, .zone-banner .col-lg-7, .zone-banner .col-xs-8, .zone-banner .col-sm-8, .zone-banner .col-md-8, .zone-banner .col-lg-8, .zone-banner .col-xs-9, .zone-banner .col-sm-9, .zone-banner .col-md-9, .zone-banner .col-lg-9, .zone-banner .col-xs-10, .zone-banner .col-sm-10, .zone-banner .col-md-10, .zone-banner .col-lg-10, .zone-banner .col-xs-11, .zone-banner .col-sm-11, .zone-banner .col-md-11, .zone-banner .col-lg-11, .zone-banner .col-xs-12, .zone-banner .col-sm-12, .zone-banner .col-md-12, .zone-banner .col-lg-12, .zone-banner .col-xs-13, .zone-banner .col-sm-13, .zone-banner .col-md-13, .zone-banner .col-lg-13, .zone-banner .col-xs-14, .zone-banner .col-sm-14, .zone-banner .col-md-14, .zone-banner .col-lg-14, .zone-banner .col-xs-15, .zone-banner .col-sm-15, .zone-banner .col-md-15, .zone-banner .col-lg-15, .zone-banner .col-xs-16, .zone-banner .col-sm-16, .zone-banner .col-md-16, .zone-banner .col-lg-16, .zone-banner .col-xs-17, .zone-banner .col-sm-17, .zone-banner .col-md-17, .zone-banner .col-lg-17, .zone-banner .col-xs-18, .zone-banner .col-sm-18, .zone-banner .col-md-18, .zone-banner .col-lg-18, .zone-banner .col-xs-19, .zone-banner .col-sm-19, .zone-banner .col-md-19, .zone-banner .col-lg-19, .zone-banner .col-xs-20, .zone-banner .col-sm-20, .zone-banner .col-md-20, .zone-banner .col-lg-20, .zone-banner .col-xs-21, .zone-banner .col-sm-21, .zone-banner .col-md-21, .zone-banner .col-lg-21, .zone-banner .col-xs-22, .zone-banner .col-sm-22, .zone-banner .col-md-22, .zone-banner .col-lg-22, .zone-banner .col-xs-23, .zone-banner .col-sm-23, .zone-banner .col-md-23, .zone-banner .col-lg-23, .zone-banner .col-xs-24, .zone-banner .col-sm-24, .zone-banner .col-md-24, .zone-banner .col-lg-24 {
  margin: 0;
}

/* ################################# */
/* Global animation */
/*
h1{
	opacity: 0;
}
.animate {
	@include text-fade-from-left;
}
*/
/*
.img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    animation: move 3s infinite ease alternate;
}
*/
/**
 * ----------------------------------------
 * Smooth bounce
 * ----------------------------------------
 */
@keyframes move {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
/**
 * ----------------------------------------
 * bounce_arrow
 * ----------------------------------------
 */
@keyframes bounce_arrow {
  0% {
    -webkit-transform: translateY(30);
    -ms-transform: translateY(30);
    transform: translateY(30);
  }
  40% {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
  80% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
.slide-right {
  -webkit-animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-fade-from-left
 * ----------------------------------------
 */
/* Fade From Left */
@-webkit-keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale3d(1, 1, 1);
  }
  50% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale3d(1, 1, 1);
  }
  50% {
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -o-transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.u--pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.u--flash {
  -webkit-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1vh, 0);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -moz-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -moz-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1vh, 0);
  }
}
@-o-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -o-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -o-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -o-transform: translate3d(0, -1vh, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -6vh, 0);
  }
  70% {
    transform: translate3d(0, -3vh, 0);
  }
  90% {
    transform: translate3d(0, -1vh, 0);
  }
}
.u--bounce {
  -webkit-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(1vw, 0, 0);
  }
}
@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(1vw, 0, 0);
  }
}
@-o-keyframes shake {
  0%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -o-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -o-transform: translate3d(1vw, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(1vw, 0, 0);
  }
}
.u--shake {
  -webkit-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -moz-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -moz-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -moz-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -o-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -o-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -o-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.u--swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -webkit-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes bounceIn {
  0% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -moz-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -moz-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes bounceIn {
  0% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -o-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.u--bounceIn {
  -webkit-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale(0.9);
  }
  50%, 65% {
    -webkit-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
}
@-moz-keyframes bounceOut {
  20% {
    -moz-transform: scale(0.9);
  }
  50%, 65% {
    -moz-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
}
@-o-keyframes bounceOut {
  20% {
    -o-transform: scale(0.9);
  }
  50%, 55% {
    -o-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
}
@keyframes bounceOut {
  20% {
    transform: scale(0.9);
  }
  50%, 65% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}
.u--bounceOut {
  -webkit-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInLeft {
  0% {
    -webkit-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    -moz-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInLeft {
  0% {
    -o-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInLeft {
  0% {
    transform: translate3d(-25%, 0, 0);
  }
  60% {
    transform: translate3d(3%, 0, 0);
  }
  75% {
    transform: translate3d(-1%, 0, 0);
  }
  90% {
    transform: translate3d(1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInLeft {
  -webkit-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInRight {
  0% {
    -webkit-transform: translate3d(25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInRight {
  0% {
    -moz-transform: translate3d(25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInRight {
  0% {
    -o-transform: translate3d(25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInRight {
  0% {
    transform: translate3d(25%, 0, 0);
  }
  60% {
    transform: translate3d(-3%, 0, 0);
  }
  75% {
    transform: translate3d(1%, 0, 0);
  }
  90% {
    transform: translate3d(-1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInRight {
  -webkit-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInUp {
  0% {
    -webkit-transform: translate3d(0, 25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, -3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInUp {
  0% {
    -moz-transform: translate3d(0, 25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, -3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInUp {
  0% {
    -o-transform: translate3d(0, 25%, 0);
  }
  60% {
    -o-transform: translate3d(0, -3%, 0);
  }
  75% {
    -o-transform: translate3d(0, 1%, 0);
  }
  90% {
    -o-transform: translate3d(0, -1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInUp {
  0% {
    transform: translate3d(0, 25%, 0);
  }
  60% {
    transform: translate3d(0, -3%, 0);
  }
  75% {
    transform: translate3d(0, 1%, 0);
  }
  90% {
    transform: translate3d(0, -1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInUp {
  -webkit-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInDown {
  0% {
    -webkit-transform: translate3d(0, -25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, 3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInDown {
  0% {
    -moz-transform: translate3d(0, -25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, 3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInDown {
  0% {
    -o-transform: translate3d(0, -25%, 0);
  }
  60% {
    -o-transform: translate3d(0, 3%, 0);
  }
  75% {
    -o-transform: translate3d(0, -1%, 0);
  }
  90% {
    -o-transform: translate3d(0, 1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInDown {
  0% {
    transform: translate3d(0, -25%, 0);
  }
  60% {
    transform: translate3d(0, 3%, 0);
  }
  75% {
    transform: translate3d(0, -1%, 0);
  }
  90% {
    transform: translate3d(0, 1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInDown {
  -webkit-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u--fadeIn {
  -webkit-animation: fadeIn 1s ease-in;
  -moz-animation: fadeIn 1s ease-in;
  -o-animation: fadeIn 1s ease-in;
  animation: fadeIn 1s ease-in;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInLeft {
  -webkit-animation: fadeInLeft 1s ease-in;
  -moz-animation: fadeInLeft 1s ease-in;
  -o-animation: fadeInLeft 1s ease-in;
  animation: fadeInLeft 1s ease-in;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInRight {
  -webkit-animation: fadeInRight 1s ease-in;
  -moz-animation: fadeInRight 1s ease-in;
  -o-animation: fadeInRight 1s ease-in;
  animation: fadeInRight 1s ease-in;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInUp {
  -webkit-animation: fadeInUp 1s ease-in;
  -moz-animation: fadeInUp 1s ease-in;
  -o-animation: fadeInUp 1s ease-in;
  animation: fadeInUp 1s ease-in;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInDown {
  -webkit-animation: fadeInDown 1s ease-in;
  -moz-animation: fadeInDown 1s ease-in;
  -o-animation: fadeInDown 1s ease-in;
  animation: fadeInDown 1s ease-in;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.u--fadeOut {
  -webkit-animation: fadeOut 1s ease-out;
  -moz-animation: fadeOut 1s ease-out;
  -o-animation: fadeOut 1s ease-out;
  animation: fadeOut 1s ease-out;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutLeft {
  -webkit-animation: fadeOutLeft 1s ease-out;
  -moz-animation: fadeOutLeft 1s ease-out;
  -o-animation: fadeOutLeft 1s ease-out;
  animation: fadeOutLeft 1s ease-out;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutRight {
  -webkit-animation: fadeOutRight 1s ease-out;
  -moz-animation: fadeOutRight 1s ease-out;
  -o-animation: fadeOutRight 1s ease-out;
  animation: fadeOutRight 1s ease-out;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutUp {
  -webkit-animation: fadeOutUp 1s ease-out;
  -moz-animation: fadeOutUp 1s ease-out;
  -o-animation: fadeOutUp 1s ease-out;
  animation: fadeOutUp 1s ease-out;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutDown {
  -webkit-animation: fadeOutDown 1s ease-out;
  -moz-animation: fadeOutDown 1s ease-out;
  -o-animation: fadeOutDown 1s ease-out;
  animation: fadeOutDown 1s ease-out;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@keyframes flip {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, -180deg);
  }
}
.u--flip {
  -webkit-animation: flip 2s ease-out;
  -moz-animation: flip 2s ease-out;
  -o-animation: flip 2s ease-out;
  animation: flip 2s ease-out;
}

@-webkit-keyframes flipX {
  0% {
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-moz-keyframes flipX {
  0% {
    -moz-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-o-keyframes flipX {
  0% {
    -o-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@keyframes flipX {
  0% {
    transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
}
.u--flipX {
  -webkit-animation: flipX 2s ease-in;
  -moz-animation: flipX 2s ease-in;
  -o-animation: flipX 2s ease-in;
  animation: flipX 2s ease-in;
}

@-webkit-keyframes flipY {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-moz-keyframes flipY {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-o-keyframes flipY {
  0% {
    -o-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes flipY {
  0% {
    transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
.u--flipY {
  -webkit-animation: flipY 2s ease-in;
  -moz-animation: flipY 2s ease-in;
  -o-animation: flipY 2s ease-in;
  animation: flipY 2s ease-in;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    transform: none;
  }
}
.u--rotate {
  -webkit-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: rotate 1s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpLeft {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpLeft {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpLeft {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpLeft {
  -webkit-animation: rotateUpLeft 1s;
  -moz-animation: rotateUpLeft 1s;
  -o-animation: rotateUpLeft 1s;
  animation: rotateUpLeft 1s;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateUpRight {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpRight {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpRight {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpRight {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpRight {
  -webkit-animation: rotateUpRight 1s;
  -moz-animation: rotateUpRight 1s;
  -o-animation: rotateUpRight 1s;
  animation: rotateUpRight 1s;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownLeft {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownLeft {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownLeft {
  -webkit-animation: rotateDownLeft 1s;
  -moz-animation: rotateDownLeft 1s;
  -o-animation: rotateDownLeft 1s;
  animation: rotateDownLeft 1s;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes rotateDownRight {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownRight {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownRight {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownRight {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownRight {
  -webkit-animation: rotateDownRight 1s;
  -moz-animation: rotateDownRight 1s;
  -o-animation: rotateDownRight 1s;
  animation: rotateDownRight 1s;
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translate3d(0, 100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideUp {
  0% {
    -o-transform: translate3d(0, 100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideUp {
  -webkit-animation: slideUp 1s;
  -moz-animation: slideUp 1s;
  -o-animation: slideUp 1s;
  animation: slideUp 1s;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translate3d(0, -100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideDown {
  0% {
    -o-transform: translate3d(0, -100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideDown {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideDown {
  -webkit-animation: slideDown 1s;
  -moz-animation: slideDown 1s;
  -o-animation: slideDown 1s;
  animation: slideDown 1s;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideLeft {
  0% {
    -o-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideLeft {
  -webkit-animation: slideLeft 1s;
  -moz-animation: slideLeft 1s;
  -o-animation: slideLeft 1s;
  animation: slideLeft 1s;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideRight {
  0% {
    -moz-transform: translate3d(100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideRight {
  0% {
    -o-transform: translate3d(100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideRight {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideRight {
  -webkit-animation: slideRight 1s;
  -moz-animation: slideRight 1s;
  -o-animation: slideRight 1s;
  animation: slideRight 1s;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes zoomIn {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes zoomIn {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.u--zoomIn {
  -webkit-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInDown {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInDown {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInDown {
  -webkit-animation: zoomInDown 1s;
  -moz-animation: zoomInDown 1s;
  -o-animation: zoomInDown 1s;
  animation: zoomInDown 1s;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInUp {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInUp {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInUp {
  -webkit-animation: zoomInUp 1s;
  -moz-animation: zoomInUp 1s;
  -o-animation: zoomInUp 1s;
  animation: zoomInUp 1s;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.u--zoomOut {
  -webkit-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutDown {
  -webkit-animation: zoomOutDown 1s;
  -moz-animation: zoomOutDown 1s;
  -o-animation: zoomOutDown 1s;
  animation: zoomOutDown 1s;
}

@-webkit-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutUp {
  -webkit-animation: zoomOutUp 1s;
  -moz-animation: zoomOutUp 1s;
  -o-animation: zoomOutUp 1s;
  animation: zoomOutUp 1s;
}

body {
  font-family: "Urbanist", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Urbanist", sans-serif;
  margin-bottom: 15px;
  width: 100%;
  color: #000000;
}
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, .h1:hover, .h2:hover, .h3:hover, .h4:hover, .h5:hover, .h6:hover {
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, p a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br, .h1 br, .h2 br, .h3 br, .h4 br, .h5 br, .h6 br {
    display: none !important;
  }
}
@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
    word-break: keep-all;
  }
}

h1, .h1 {
  font-size: 45px;
  line-height: 48px;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 38px;
    line-height: 41px;
  }
}
h2, .h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 900;
  text-transform: initial;
}
h3, .h3 {
  font-size: 32px;
  line-height: 37px;
  font-weight: 900;
  text-transform: initial;
}
h4, .h4 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-transform: initial;
}
h5, .h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
h6, .h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.text_default {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

p {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
}
.p-small {
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000000;
}
.p-small {
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000000;
}
.p-small {
  font-size: 25px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000000;
}
hr {
  border-color: rgba(241, 190, 72, 0.35);
}

a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.news-tags) {
  color: #000;
  word-break: break-word;
  text-decoration: underline;
}
a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.news-tags):hover, a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.news-tags):active, a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.news-tags):focus {
  color: #000;
  text-decoration: none;
}

ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 25px;
}
ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
  margin-bottom: 0;
}
ol li::marker, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li::marker {
  color: #F1BE48;
}
ol li ul, ol li ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ul, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 15px;
}

u {
  text-decoration: none;
  position: relative;
}
u:before {
  content: "";
  width: calc(100% + 8px);
  height: 9px;
  bottom: 6px;
  left: -4px;
  border-radius: 5px;
  background-color: #F1BE48;
  position: absolute;
  z-index: -1;
}

/*###########################  BOUTONS  ###########################*/
/* Calendar event BTN  */
.calendar-link-content .v-btn {
  color: #F1BE48 !important;
  background-color: transparent !important;
  transition: all 150ms;
  border: 0 !important;
  border-radius: 0 !important;
  height: auto !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.calendar-link-content .v-btn:hover, .calendar-link-content .v-btn:focus, .calendar-link-content .v-btn:active {
  color: #F1BE48 !important;
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
}
.calendar-link-content .v-btn:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmVa1qSsf2Dxu9ZwPKEFGQd/asset/images/%2B_calendar.svg");
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.calendar-link-content .v-btn i {
  display: none;
}

/*###########################  BOUTONS RESET  ###########################*/
.btn, input.btn, a.btn {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.btn:hover, .btn:active, .btn:focus, input.btn:hover, input.btn:active, input.btn:focus, a.btn:hover, a.btn:active, a.btn:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .btn, input.btn, a.btn {
    white-space: normal !important;
  }
}
.btn.btn-primary, .btn.btn-default, input.btn.btn-primary, input.btn.btn-default, a.btn.btn-primary, a.btn.btn-default {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, .btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: #fff;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  padding: 0px 30px 0px 30px;
  text-transform: inherit;
  transition: all 150ms;
  border: 1px solid #F1BE48;
  position: relative;
  overflow: hidden;
}
.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus, input.btn.btn-secondary:hover, input.btn.btn-secondary:active, input.btn.btn-secondary:focus, a.btn.btn-secondary:hover, a.btn.btn-secondary:active, a.btn.btn-secondary:focus {
  background-color: #F1BE48;
  color: #000000;
  border: 1px solid #F1BE48;
}
.btn.btn-secondary-important, input.btn.btn-secondary-important, a.btn.btn-secondary-important {
  background-color: #fff !important;
  color: #000000 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: normal !important;
  height: 40px !important;
  padding: 0px 30px 0px 30px !important;
  text-transform: inherit !important;
  transition: all 150ms !important;
  border: 1px solid #F1BE48 !important;
  position: relative !important;
  overflow: hidden !important;
}
.btn.btn-secondary-important:hover, .btn.btn-secondary-important:active, .btn.btn-secondary-important:focus, input.btn.btn-secondary-important:hover, input.btn.btn-secondary-important:active, input.btn.btn-secondary-important:focus, a.btn.btn-secondary-important:hover, a.btn.btn-secondary-important:active, a.btn.btn-secondary-important:focus {
  background-color: #F1BE48 !important;
  color: #000000 !important;
  border: 1px solid #F1BE48 !important;
}
.btn.btn-link, .btn.btn-back, input.btn.btn-link, input.btn.btn-back, a.btn.btn-link, a.btn.btn-back {
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
}
.btn.btn-link:hover, .btn.btn-link:active, .btn.btn-link:focus, .btn.btn-back:hover, .btn.btn-back:active, .btn.btn-back:focus, input.btn.btn-link:hover, input.btn.btn-link:active, input.btn.btn-link:focus, input.btn.btn-back:hover, input.btn.btn-back:active, input.btn.btn-back:focus, a.btn.btn-link:hover, a.btn.btn-link:active, a.btn.btn-link:focus, a.btn.btn-back:hover, a.btn.btn-back:active, a.btn.btn-back:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}
.btn.btn-link-important, input.btn.btn-link-important, a.btn.btn-link-important {
  background-color: transparent !important;
  color: #000000 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: normal !important;
  height: 40px !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-transform: inherit !important;
  transition: all 150ms !important;
  border-bottom: 1px solid #F1BE48 !important;
}
.btn.btn-link-important:hover, .btn.btn-link-important:active, .btn.btn-link-important:focus, input.btn.btn-link-important:hover, input.btn.btn-link-important:active, input.btn.btn-link-important:focus, a.btn.btn-link-important:hover, a.btn.btn-link-important:active, a.btn.btn-link-important:focus {
  background-color: transparent !important;
  color: #000000 !important;
  border-bottom: 1px solid #000000 !important;
}
.btn.btn-abonnement, input.btn.btn-abonnement, a.btn.btn-abonnement {
  background-color: #fff;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  padding: 0px 75px 0px 30px;
  text-transform: inherit;
  transition: all 150ms;
  border: 1px solid #F1BE48;
  position: relative;
  overflow: hidden;
}
.btn.btn-abonnement:before, input.btn.btn-abonnement:before, a.btn.btn-abonnement:before {
  content: "";
  width: 60px;
  height: 60px;
  background-color: #F1BE48;
  position: absolute;
  right: 0;
}
.btn.btn-abonnement:after, input.btn.btn-abonnement:after, a.btn.btn-abonnement:after {
  content: "+";
  font-size: 34px;
  font-weight: 100;
  display: block;
  position: absolute;
  color: #000000;
  right: 22px;
  top: 8px;
}
.btn.btn-abonnement:hover, .btn.btn-abonnement:active, .btn.btn-abonnement:focus, input.btn.btn-abonnement:hover, input.btn.btn-abonnement:active, input.btn.btn-abonnement:focus, a.btn.btn-abonnement:hover, a.btn.btn-abonnement:active, a.btn.btn-abonnement:focus {
  background-color: #F1BE48;
  color: #000000;
  border: 1px solid #F1BE48;
}
.btn.btn-recherche, input.btn.btn-recherche, a.btn.btn-recherche {
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  padding: 0px 50px 0px 30px;
  text-transform: inherit;
  transition: all 150ms;
  position: relative;
  border: 0;
  overflow: hidden;
  /*border: 1px solid transparent;*/
}
.btn.btn-recherche:before, input.btn.btn-recherche:before, a.btn.btn-recherche:before {
  content: "";
  width: 39px;
  height: 39px;
  background: url("https://cdn.ca.yapla.com/company/CPYh3egFLRCMIxmwyhmhL1L5/asset/images/Blogue%20assets%202024/Icon_Search-Header.svg") no-repeat;
  position: absolute;
  right: 0;
}
.btn.btn-recherche:hover, .btn.btn-recherche:active, .btn.btn-recherche:focus, input.btn.btn-recherche:hover, input.btn.btn-recherche:active, input.btn.btn-recherche:focus, a.btn.btn-recherche:hover, a.btn.btn-recherche:active, a.btn.btn-recherche:focus {
  background-color: transparent;
  color: #000000;
  border: 0;
  text-decoration: underline;
  /*border: 1px solid $secondary;*/
}
.btn.btn-category, input.btn.btn-category, a.btn.btn-category {
  background-color: #fff;
  border: 1px solid #000000;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  height: 40px;
  border-radius: 50px;
  margin: 0;
}
.btn.btn-category:hover, .btn.btn-category:active, .btn.btn-category:focus, input.btn.btn-category:hover, input.btn.btn-category:active, input.btn.btn-category:focus, a.btn.btn-category:hover, a.btn.btn-category:active, a.btn.btn-category:focus {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}
.btn.btn-category.highlighted, input.btn.btn-category.highlighted, a.btn.btn-category.highlighted {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}
.btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
  position: relative;
  display: block;
  background-color: #F1BE48 !important;
  border: 1px solid #F1BE48 !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
}
.btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  filter: brightness(0);
  transform: rotate(-90deg);
  right: 8px;
  top: 12px;
  width: 11px;
  height: 7px;
}
.btn.btn-arrow:hover, .btn.btn-arrow:focus, input.btn.btn-arrow:hover, input.btn.btn-arrow:focus, a.btn.btn-arrow:hover, a.btn.btn-arrow:focus {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  text-decoration: none;
  /*
  &:after {
  	filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
  }
  */
}

.btn {
  margin-right: 30px;
}
.btn + .btn, .btn:only-of-type {
  margin-right: 0;
}

.back-to-list {
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
}
.back-to-list:hover, .back-to-list:active, .back-to-list:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}

/*###########################  FORMULAIRE  ###########################*/
/* INPUTS */
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #F1BE48;
  -webkit-box-shadow: 0 0 0 #050505 0px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* CONFIRMATION */
/* added H1 - never need to use it */
.formbuilder-confirmation-title {
  display: none;
}

/* Formulaire - Style Global */
form.form-horizontal,
form.search-form {
  /*Fix col-md-12 full width qui affiche a moitié - width égale*/
  /*Static Text in forms*/
}
form.form-horizontal .col-sm-24 .col-md-12,
form.search-form .col-sm-24 .col-md-12 {
  width: 100%;
  /*
  @include min-md {
  	padding: 0 15px 0px 0!important;
  }
  */
}
form.form-horizontal .form-group,
form.search-form .form-group {
  margin-left: 0px;
  margin-right: 0px;
  /* Required Red Star Styles */
  /* Input Global Style */
  /* Direct input overrides */
  /*Category Dropdown Styles*/
  /*Keywords Dropdown Styles*/
  /*Error Text Style*/
}
form.form-horizontal .form-group .col-md-12, form.form-horizontal .form-group .col-sm-17, form.form-horizontal .form-group .col-sm-24,
form.search-form .form-group .col-md-12,
form.search-form .form-group .col-sm-17,
form.search-form .form-group .col-sm-24 {
  padding: 0;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 0;
}
form.form-horizontal .form-group label.control-label--required,
form.search-form .form-group label.control-label--required {
  padding-left: 5px;
  color: #000000;
}
form.form-horizontal .form-group input:not(.btn), form.form-horizontal .form-group select, form.form-horizontal .form-group textarea,
form.search-form .form-group input:not(.btn),
form.search-form .form-group select,
form.search-form .form-group textarea {
  background-color: #fff !important;
  color: #000000 !important;
  border: none;
}
form.form-horizontal .form-group select, form.form-horizontal .form-group input.form-control, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select,
form.search-form .form-group input.form-control,
form.search-form .form-group .chosen-choices {
  border: 1px solid #000000 !important;
  border-radius: 45px;
  padding: 10px 15px 10px 15px !important;
  height: 40px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  border: none !important;
  padding: 15px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  /*-webkit-border-radius: 0px !important;
  border-radius: 0px !important;*/
}
form.form-horizontal .form-group .input-file,
form.search-form .form-group .input-file {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
form.form-horizontal .form-group select.moteur-recherche, form.form-horizontal .form-group select#category_id, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select.moteur-recherche,
form.search-form .form-group select#category_id,
form.search-form .form-group .chosen-choices {
  width: 100%;
  max-width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(https://cdn.ca.yapla.com/images/icon-membogo-arrow-combo@2x.png) no-repeat right 5px center !important;
  background-size: 13px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices, form.form-horizontal .form-group .chosen-container-multi .chosen-choices,
form.search-form .form-group .form-element-keywords .chosen-choices,
form.search-form .form-group .chosen-container-multi .chosen-choices {
  height: auto !important;
  padding-right: 60px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field {
  height: 21px !important;
  line-height: 22px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field input, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field input,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field input,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field input {
  height: 20px;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice {
  display: block;
  width: 100%;
  background-color: transparent !important;
  color: #F1BE48 !important;
  font-size: 15px;
  padding-left: 15px !important;
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice span, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice span,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice span,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice span {
  vertical-align: -webkit-baseline-middle;
  margin: 0px 5px 0px 0 !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  right: auto;
  left: 0;
  top: 9px !important;
  filter: invert(1);
}
form.form-horizontal .form-group ul.error,
form.search-form .form-group ul.error {
  margin: 0;
}
form.form-horizontal .form-group ul.error li.text-danger,
form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
form.form-horizontal p.form-control-static,
form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
form.form-horizontal .crm-footer-frame,
form.search-form .crm-footer-frame {
  margin-top: 20px;
  text-align: center;
}
form.form-horizontal .crm-footer-frame .btn-primary,
form.search-form .crm-footer-frame .btn-primary {
  background-color: #fff;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  padding: 0px 30px 0px 30px;
  text-transform: inherit;
  transition: all 150ms;
  border: 1px solid #F1BE48;
  position: relative;
  overflow: hidden;
}
form.form-horizontal .crm-footer-frame .btn-primary:hover, form.form-horizontal .crm-footer-frame .btn-primary:active, form.form-horizontal .crm-footer-frame .btn-primary:focus,
form.search-form .crm-footer-frame .btn-primary:hover,
form.search-form .crm-footer-frame .btn-primary:active,
form.search-form .crm-footer-frame .btn-primary:focus {
  background-color: #F1BE48;
  color: #000000;
  border: 1px solid #F1BE48;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(241, 190, 72, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #F1BE48;
}

.overrideformtitle .zone-crm h1 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 900;
  text-transform: initial;
  text-align: center;
}
#form-formbuilder .help-block {
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
}

/* Formulaire Inscription membre/evenement*/
/*Styles Global*/
.zone-member .form-withProgress__wrapper .section {
  margin-bottom: 50px;
}
.zone-member #login_content_box {
  background-color: #fff;
}
@media (max-width: 767px) {
  .zone-member #login_content_box {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.zone-member #member_adhesion_form {
  background-color: #FFF7ED;
}

.zone-event .form-withProgress__wrapper {
  background-color: #FFF7ED;
}

.zone-event h1.form-withProgress__title-main,
.zone-member h1.form-withProgress__title-main {
  font-size: 56px;
}
@media (max-width: 991px) {
  .zone-event h1.form-withProgress__title-main,
.zone-member h1.form-withProgress__title-main {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-event h1.form-withProgress__title-main,
.zone-member h1.form-withProgress__title-main {
    font-size: 31px;
    line-height: 35px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  padding: 50px;
  /*Formulaire*/
  /*Récapitulatif*/
  /*Total box*/
  /*Bottom Nav*/
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
.zone-event .form-withProgress__wrapper .form-group input, .zone-event .form-withProgress__wrapper .form-group select,
.zone-member .form-withProgress__wrapper .form-group input,
.zone-member .form-withProgress__wrapper .form-group select {
  background-color: #f7f7f7;
}
.zone-event .form-withProgress__wrapper fieldset h2,
.zone-member .form-withProgress__wrapper fieldset h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-event .form-withProgress__wrapper fieldset legend,
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  color: #000000;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 14px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-event .form-withProgress__wrapper #fieldset-total,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-member .form-withProgress__wrapper #fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  text-transform: initial;
  font-size: 26px;
  color: #000000 !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
  text-align: right;
  font-size: 26px;
  color: #000000 !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
  color: #6CA4DC;
  margin-right: 32px;
  text-decoration: underline;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover {
  background: transparent;
  color: #1D1D1B;
  border: none;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
    margin-right: 0;
    justify-content: center;
  }
}
.zone-event .membership-delegate-manage .header .membership-delegate-name,
.zone-member .membership-delegate-manage .header .membership-delegate-name {
  font-weight: 400;
}
.zone-event .membership-delegate-manage .header .membership-delegate-quantity,
.zone-member .membership-delegate-manage .header .membership-delegate-quantity {
  color: #1D1D1B;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  background-color: #000000 !important;
  border: 1px solid #000000 !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 17px !important;
  font-weight: 500 !important;
  padding: 0px 20px !important;
  transition: all 150ms !important;
  text-transform: inherit !important;
  height: 40px !important;
  border-radius: 50px !important;
}
.zone-event .membership-delegate-manage .footer .btn:hover, .zone-event .membership-delegate-manage .footer .btn:active, .zone-event .membership-delegate-manage .footer .btn:focus,
.zone-member .membership-delegate-manage .footer .btn:hover,
.zone-member .membership-delegate-manage .footer .btn:active,
.zone-member .membership-delegate-manage .footer .btn:focus {
  background-color: #F1BE48 !important;
  border: 1px solid #F1BE48 !important;
  color: #000000 !important;
}

.modal .modal-dialog .modal-content .modal-footer button {
  background-color: #000000 !important;
  border: 1px solid #000000 !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 17px !important;
  font-weight: 500 !important;
  padding: 0px 20px !important;
  transition: all 150ms !important;
  text-transform: inherit !important;
  height: 40px !important;
  border-radius: 50px !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover, .modal .modal-dialog .modal-content .modal-footer button:active, .modal .modal-dialog .modal-content .modal-footer button:focus {
  background-color: #F1BE48 !important;
  border: 1px solid #F1BE48 !important;
  color: #000000 !important;
}

/*ETAPES INSCRIPTION NOUVEAU MEMBRE*/
/*Étapes 1 - Type d'adhesion*/
.step-adhesion .zone-member {
  padding-top: 90px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
  margin-top: 0px;
  padding: 115px 95px;
  background-color: #FFF7ED;
}
@media (max-width: 991px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
  font-size: 32px;
  line-height: 37px;
  font-weight: 900;
  text-transform: initial;
  font-family: "Urbanist", sans-serif;
  padding-bottom: 16px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item {
  border: 0;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .price-membership-badge {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .radio label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-date {
  font-size: 14px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
  background: #F1BE48;
  border-bottom: none;
  display: flex;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
    padding: 5px;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .badge {
  order: 1;
  flex: 1;
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group {
  position: relative;
  order: 0;
  flex: 0 0 90%;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group {
    flex: 0 0 70%;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group label {
  font-weight: 600;
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group select {
  max-width: 50%;
  background-color: #fff !important;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group select {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block {
    position: absolute;
    bottom: 0;
    left: 55%;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button {
  background: transparent;
  border: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button {
    font-size: 12px;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button .yapla-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #6CA4DC;
  color: #6CA4DC;
  background: #fff;
  padding: 5px;
  font-size: 16px;
  border-radius: 100%;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button .yapla-icon {
    margin-right: 0;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom:first-child {
  margin-top: 20px;
}

/*Étapes 2 - information de l'adherent*/
.step-register .zone-member {
  padding-top: 90px;
}
.step-register .zone-member .form-withProgress__wrapper .form-horizontal .section .row .form-group input.form-control {
  background-color: #f7f7f7 !important;
}
/*Étapes 3 - Résumé Informations*/
.step-resume .zone-member .form-withProgress__wrapper h2 {
  font-size: 32px;
  line-height: 37px;
  font-weight: 900;
  text-transform: initial;
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion {
  padding-left: 0px;
  padding-right: 0px;
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion span {
  color: #000000;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 32px;
  line-height: 37px;
  font-weight: 900;
  text-transform: initial;
  color: #000000 !important;
  padding-top: 32px !important;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
/*Étapes 4 - Paiements*/
.step-payment .zone-member h2 {
  padding-top: 56px;
}
@media (max-width: 991px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-member .form-withProgress__wrapper input.form-control {
  background-color: #fff !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-paymentmethod h2 {
  padding-top: 56px;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 5 - Confirmation*/
#registration-member {
  margin: 0 auto;
}
#registration-member .member-step-confirm {
  text-align: center;
}
#registration-member .member-step-confirm .member-profile-container {
  padding: 32px 0;
}
#registration-member .member-step-confirm .form-withProgress__navigation-footer p {
  display: none;
}

/*ETAPES INSCRIPTION EVENEMENT*/
/*Étapes 1 - Inscription*/
.zone-event h1.form-withProgress__title-main {
  padding-top: 60px;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  padding: 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc h3 {
  display: none;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  background-color: #FFF7ED;
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
  padding: 15px !important;
  color: #000000 !important;
  font-weight: 500 !important;
  border: 2px solid #F1BE48 !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:active, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.btn i.fa {
  display: none !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover {
  background-color: #fff !important;
  text-decoration: none !important;
  border: 2px solid #F1BE48 !important;
}
.zone-event .form-withProgress__wrapper #event-authentication-form h2 {
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #event-authentication-form h2 {
    font-size: 21px;
    line-height: 28px;
  }
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication p {
  padding-bottom: 32px;
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .form-group {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.zone-event .event-login h1 {
  text-align: center;
  margin-bottom: 64px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .zone-event .event-login h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .zone-event .event-subscription {
    padding: 0;
  }
}

/*Étapes 2 - Résumé Informations*/
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 0px;
  }
}
.step-resume .zone-event .form-withProgress__wrapper h2.section-title {
  margin-bottom: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-12 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  padding-top: 32px;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
/*Étapes 3 - Paiements*/
.step-payment .zone-event .form-withProgress__wrapper h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
@media (max-width: 991px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 4 - Confirmation*/
.zone-event .event-payment .form-withProgress__wrapper .payment-form-cms #fieldset-payment_billing .row .form-group .form-control {
  background: #fff !important;
}

/*###########################  TABLEAU  ###########################*/
/* basically le bottin de yapla */
/*###########################  TAB BOTTIN DES MEMBRES  ###########################*/
.nav-tabs {
  margin-top: 60px;
}
.nav-tabs li {
  padding: 0px 20px;
}
.nav-tabs li:first-child {
  padding-left: 0;
}
.nav-tabs li a {
  border: none;
  border-bottom: 5px solid transparent;
  color: rgba(241, 190, 72, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(241, 190, 72, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #000000;
  color: #F1BE48;
}

.paginationControl {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  grid-column: span 2;
}
@media (max-width: 991px) {
  .paginationControl {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .paginationControl {
    grid-column: span 1;
  }
}
.paginationControl a {
  width: 42px;
  height: 42px;
  background-color: transparent;
  border: 1px solid #F1BE48;
  color: #000;
  border-radius: 55px;
  margin: 5px;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginationControl a:hover, .paginationControl a:focus {
  text-decoration: none;
  background-color: #F1BE48;
  color: #000000;
}
.paginationControl a.active {
  background-color: #F1BE48;
  color: #000;
  font-weight: 200 !important;
}
.paginationControl a.active:hover, .paginationControl a.active:focus {
  color: #000;
}

/*###########################  ACCORDÉONS  ###########################*/
/* Note that this style apply for both native yapla accordions only */
.panel-default > .panel-heading {
  border-bottom: none;
}

.panel-news-accordion {
  /* first accordion container */
  border-bottom: 1px solid #000 !important;
}
.panel-news-accordion:after {
  content: "";
  width: 100%;
  display: block;
}
.panel-news-accordion .panel-heading {
  /* title box */
  background-color: transparent;
  padding: 0;
  position: relative;
}
.panel-news-accordion .panel-heading .panel-title {
  /* title */
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-transform: initial;
  margin-bottom: 0;
  padding-right: 30px;
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 30px 15px 30px;
  color: #F1BE48;
  text-decoration: none;
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "−";
  display: block;
  position: absolute;
  right: 15px;
  top: 25px;
  font-size: 35px;
  font-weight: 900;
  color: #000;
  transition: transform 150ms;
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:after {
  content: "+";
}
.panel-news-accordion .panel-heading p {
  display: none;
}
.panel-news-accordion .panel-heading:hover {
  cursor: pointer;
}
.panel-news-accordion .panel-collapse.in {
  border-bottom: 0;
}
.panel-news-accordion .panel-body {
  /* content */
  padding: 25px 15px 30px 15px;
  margin-top: -10px;
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  color: #000;
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body .btn-link {
  margin-bottom: 40px;
}

/* Accordion with tables to make accordions in WYSIWYG easy for client */
/* Just create table with table button and add class accordeon in advanced settings */
/* JAVASCRIPT FOR THIS TO WORK

$("table.accordeon tbody tr:first-child").click(function () {
	var target = $(this);
	var open =  target.closest(".accordeon").hasClass('active');

	$(".accordeon").removeClass("active");

	if (!open) {
		var scrollTo = target.offset().top;
		target.closest(".accordeon").addClass("active");
		$('body, html').animate({scrollTop: scrollTo-80+'px'}, 800);
	}
});

*/
table.accordeon {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
  /* active and opened content */
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #F5F5F5;
  padding: 15px;
  position: relative;
}
table.accordeon tbody tr:first-child:after {
  content: "+";
  display: block;
  position: absolute;
  right: 15px;
  top: 13px;
  font-size: 30px;
  font-weight: 400;
  transition: transform 150ms;
}
table.accordeon tbody tr:last-child {
  display: block;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon.active tbody tr:first-child:after {
  transform: rotate(45deg);
}
table.accordeon.active tbody tr:last-child {
  padding: 15px;
  background-color: #F5F5F5;
}
table.accordeon.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}

.modal-backdrop {
  z-index: 10000;
}

.modal {
  z-index: 10001 !important;
}
.modal .modal-dialog .modal-content {
  background-color: #fff;
}
.modal .modal-dialog .modal-content .modal-header {
  margin-top: 8px;
  padding: 16px 31px;
  flex-direction: column;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  color: #000000;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #F1BE48;
}
.modal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
}
.modal .modal-dialog .modal-content .modal-body input:not(.btn), .modal .modal-dialog .modal-content .modal-body select, .modal .modal-dialog .modal-content .modal-body textarea {
  background-color: #F0F1F1 !important;
  color: #000000 !important;
  border: none;
}
.nav-pills {
  background-image: none;
}

.nav-progress {
  position: relative;
  justify-content: space-between;
  width: 80%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.nav-progress:before {
  content: "";
  width: 88%;
  height: 2px;
  background-color: #dfe6d1;
  position: absolute;
  margin-left: 30px;
  margin-right: auto;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .nav-progress:before {
    width: 100%;
    margin-left: 0;
  }
}
.nav-progress:after {
  content: none;
}
@media (max-width: 767px) {
  .nav-progress {
    display: block;
  }
}
.nav-progress li.disabled {
  flex-grow: inherit !important;
  flex-shrink: 1;
  opacity: 1;
}
.nav-progress li.disabled a,
.nav-progress li.disabled a:hover,
.nav-progress li.disabled a:focus {
  font-family: "Urbanist", sans-serif;
  text-align: center;
  float: none;
  padding-left: 0px;
  font-weight: 600;
  color: #1D1D1B;
  margin-top: 2px;
  padding-top: 15px;
  text-transform: none;
  font-size: 19px;
  position: relative;
}
.nav-progress li.disabled a:before,
.nav-progress li.disabled a:hover:before,
.nav-progress li.disabled a:focus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 40px;
  margin: auto;
  height: 4px;
  border-radius: 0px;
  background-color: #1D1D1B;
}
.nav-progress li.disabled:before {
  float: none;
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  border: none;
  color: #1D1D1B;
  background-color: transparent;
  padding: 5px;
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  opacity: 1;
}
.nav-progress li.disabled.active a {
  color: #000000;
}
.nav-progress li.disabled.active a:before {
  background-color: #000000;
}
.nav-progress li.disabled.active:before {
  color: #000000;
  background-color: transparent;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li {
  opacity: 1;
}
.nav-progress li.disabled.active ~ li a {
  color: #BFCEA2;
}
.nav-progress li.disabled.active ~ li a:before {
  background-color: #BFCEA2;
}
.nav-progress li.disabled.active ~ li:before {
  color: #BFCEA2;
  border-color: #BFCEA2;
  background-color: transparent;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}
@media (max-width: 767px) {
  .nav-progress li.disabled:not(.active) {
    margin-left: -1000000px;
    height: 0;
  }
}

.cookie-notice {
  right: 0 !important;
  left: auto !important;
  max-width: 740px !important;
  padding: 35px 100px 35px 100px !important;
  background: #fff !important;
  position: relative;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19) !important;
}
@media (max-width: 767px) {
  .cookie-notice {
    max-width: 100% !important;
    padding: 35px 20px 35px 20px !important;
  }
}
.cookie-notice:before {
  /*
  content: "";
  width: 150px;
  height: 100%;
  background-color: $clrGrey;
  position:absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 98;
  @include max-sm {
  	width: 70px;
  }
  */
}
.cookie-notice:after {
  /*
  content: "";
  width: 207px;
  height: 238px;
  background: url("https://cdn.ca.yapla.com/company/CPYmVa1qSsf2Dxu9ZwPKEFGQd/asset/images/icon-gdpr.svg");
  background-repeat: no-repeat;
  position:absolute;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  @include max-sm {
  	background-size: 100%;
  	width: 100px;
  	height: 115px;
  	right: 10px;
  }
  */
}
.cookie-notice .cn-body {
  position: relative;
  z-index: 100;
}
.cookie-notice .cn-body P.consent_notice_title_title {
  font-size: 30px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #000000 !important;
}
.cookie-notice .cn-body p {
  line-height: 20px !important;
}
.cookie-notice .cn-body span {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
  color: #000000 !important;
}
.cookie-notice .cn-learn-more {
  color: #000000 !important;
  font-weight: 500 !important;
}
.cookie-notice .cn-learn-more:hover {
  color: #5d5d5d !important;
  font-weight: 500 !important;
}
.cookie-notice .cn-ok {
  flex-direction: column-reverse !important;
  gap: 30px;
  margin-top: 15px !important;
}
.cookie-notice .cn-ok .cm-link {
  font-size: 12px !important;
  font-weight: 600 !important;
}
.cookie-notice .cn-ok .cm-link:hover {
  color: #5d5d5d !important;
  font-weight: 600 !important;
}
.cookie-notice .cn-ok .cn-buttons {
  margin-top: 20px;
  display: flex !important;
  flex-direction: row-reverse;
  width: auto !important;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons {
    flex-direction: column-reverse !important;
  }
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #000000 !important;
  padding: 15px 0 !important;
  height: 40px !important;
  width: auto !important;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons .cm-btn-danger {
    white-space: normal !important;
  }
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:hover {
  color: #5d5d5d !important;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: #fff;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  padding: 0px 30px 0px 30px;
  text-transform: inherit;
  transition: all 150ms;
  border: 1px solid #F1BE48;
  position: relative;
  overflow: hidden;
  height: 40px !important;
  font-weight: 500 !important;
  margin-right: 35px !important;
  background-color: transparent !important;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:focus {
  background-color: #F1BE48;
  color: #000000;
  border: 1px solid #F1BE48;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:focus, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:active {
  background-color: #F1BE48 !important;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons .cm-btn-success {
    margin-top: 30px !important;
    width: auto !important;
  }
}

.cookie-modal .cm-modal.cm-klaro {
  padding: 30px 20px !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
  padding: 0 !important;
  font-weight: 500 !important;
  height: 40px !important;
  background-color: transparent !important;
  color: #2F2F2F !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-footer-buttons .cm-btn-decline:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover {
  color: #5d5d5d !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success {
  /*
  @include btn;
  @include btn-link-important;
  &.cm-btn-info {
  	background-color: transparent!important;
  	color: #2F2F2F!important;
  	&:hover {
  		text-decoration: none!important;
  		border: 2px solid #5d5d5d!important;
  		color: #5d5d5d!important;
  	}
  }
  */
}
.cookie-modal .cm-footer-buttons .cm-btn-accept {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent !important;
  color: #000000 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: normal !important;
  height: 40px !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-transform: inherit !important;
  transition: all 150ms !important;
  border-bottom: 1px solid #F1BE48 !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  height: 40px !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-accept:hover, .cookie-modal .cm-footer-buttons .cm-btn-accept:active, .cookie-modal .cm-footer-buttons .cm-btn-accept:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-accept {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-accept:hover, .cookie-modal .cm-footer-buttons .cm-btn-accept:active, .cookie-modal .cm-footer-buttons .cm-btn-accept:focus {
  background-color: transparent !important;
  color: #000000 !important;
  border-bottom: 1px solid #000000 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-accept:hover, .cookie-modal .cm-footer-buttons .cm-btn-accept:focus, .cookie-modal .cm-footer-buttons .cm-btn-accept:active {
  text-decoration: none !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-accept-all {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: #fff !important;
  color: #000000 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: normal !important;
  height: 40px !important;
  padding: 0px 30px 0px 30px !important;
  text-transform: inherit !important;
  transition: all 150ms !important;
  border: 1px solid #F1BE48 !important;
  position: relative !important;
  overflow: hidden !important;
  font-weight: 500 !important;
  margin-right: 35px !important;
  height: 40px !important;
  background-color: transparent !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-accept-all:hover, .cookie-modal .cm-footer-buttons .cm-btn-accept-all:active, .cookie-modal .cm-footer-buttons .cm-btn-accept-all:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-accept-all {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-accept-all:hover, .cookie-modal .cm-footer-buttons .cm-btn-accept-all:active, .cookie-modal .cm-footer-buttons .cm-btn-accept-all:focus {
  background-color: #F1BE48 !important;
  color: #000000 !important;
  border: 1px solid #F1BE48 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-accept-all:hover, .cookie-modal .cm-footer-buttons .cm-btn-accept-all:focus, .cookie-modal .cm-footer-buttons .cm-btn-accept-all:active {
  background-color: #F1BE48 !important;
}

/* Quick Fix*/
#yapla-consent-box .cookie-notice .cm-btn, #yapla-consent-box .cookie-modal .cm-btn {
  min-width: 10px !important;
  width: fit-content !important;
}

.line-header {
  padding: 0 0 20px 0;
  background-color: #F0F1F1;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  /*
  &.opened {
  	.container {
  		.row-fluid {
  			div {
  				&.zone-header {
  					.rf-mod-header-wrapper {
  						.mod-header-container {
  							.mod-header.mod-header-wrapper {
  								.header-ext-custom {
  									.menu-hamburger {
  										opacity:0;
  									}
  								}
  							}
  						}
  					}
  				}
  			}
  		}
  	}
  }
  .container {
  	.row-fluid {
             display: flex;
             justify-content: flex-start;
             position: relative;
             bottom: 6px;
             margin-top: 28px;
  		div {
                 align-items: center;
                 padding: 0;
  			&.zone-header {
  				width:100%;
  				a {
  					text-decoration: none;
  					font-size: 14px;
  					line-height: 16px;
  					font-weight: 400;
  					&:hover {
  						color: $secondary;
  					}
  				}
  			}
  			&.zone-header {
  				padding: 0;
  				.rf-mod-header-wrapper {

  					.mod-header-container {
  						.mod-header.mod-header-wrapper {
  							display: flex;
  							justify-content: flex-end;
  							align-items: flex-start;
  							padding: 5px 0 0 0;

  							.header-ext-custom {
  								order: 3;
  								margin-right: 10px;
  								.menu-hamburger {
  									overflow: hidden;
  									width:40px;
  									height:40px;
  									margin-left: auto;
  									margin-right:0;
  									margin-top:0;
  									display: flex;
  									align-items: flex-end;
  									justify-content: center;
  									flex-direction: column;
  									opacity:1;
  									transition: opacity .5s;
  									@include min-md {
  										display:none;
  									}
  									span {
  										width:17px;
  										height:3px;
  										background-color: $primary;
  										color: transparent;
  										display:block;
  										line-height:0;
  										text-indent: -9999px; 
  										margin-top: 5px;
  										transition: .5s;
  										border-radius: 5px;
  										&:nth-child(2) {
  											width:24px;
  										}
  									}
  									&:hover, &:focus {
  										cursor: pointer;
  										span {
  											background-color: $primary;
  										}
  									}
  								}
  							}

  							.header-ext-login {
  								order: 2;
  								margin-left: 0;
  								padding-bottom: 0;
  								min-height: 44px;
  								display: flex;
  								align-items: center;
  								justify-content: center;
  								text-transform: none!important;
  								flex-direction: row-reverse;
  								@include max-sm {
  									display: none;
  								}
  								.member-greeting {
  									font-size: 16px!important;
  									color: #3b4180!important;
  									font-weight: 400!important;
  									text-transform: none!important;
  									line-height: 15px!important;
  								}
  								a {
  									font-size: 16px;
  									color: $primary;
  									font-weight: 400;
  									vertical-align: text-bottom;
  									line-height: 15px;
  									&:hover {
  										color: $primary;
  									}
  									&.member-login.btn {
  										border: 0;
  										padding: 0;
  										height: auto;
  										text-transform: inherit;
  									}
  									&.member-register {
  										@include btn;
  										@include btn-primary;
  									}
  								}
  								.separator {
  									height: 4px;
  								}
  							}
  						}
  					}
  				}
  			}
  		}
  	}
  }
  */
}
@media (max-width: 991px) {
  .line-header .container-fluid {
    position: relative;
  }
  .line-header .container-fluid:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    bottom: 0;
  }
  .line-header .container-fluid:after {
    width: calc(100% - 40px);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row {
    display: flex;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) {
  width: 60%;
}
@media (max-width: 1199px) {
  .line-header .container-fluid > .row > div:nth-child(1) {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(1) {
    width: 70%;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) .content {
  display: flex;
  align-items: center;
  padding: 20px 10px 20px 40px;
}
@media (max-width: 575px) {
  .line-header .container-fluid > .row > div:nth-child(1) .content {
    padding: 27px 10px 20px 40px;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) .content img {
  max-width: inherit;
}
@media (max-width: 575px) {
  .line-header .container-fluid > .row > div:nth-child(1) .content img {
    max-width: 200px;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) .content h3 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 2px;
  margin-left: 60px;
  position: relative;
}
@media (max-width: 1199px) {
  .line-header .container-fluid > .row > div:nth-child(1) .content h3 {
    display: none;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) .content h3:before {
  content: "";
  height: 30px;
  width: 1px;
  display: block;
  position: absolute;
  background-color: #DBDBDB;
  left: -30px;
  top: 0px;
}
.line-header .container-fluid > .row > div:nth-child(2) {
  width: 40%;
}
@media (max-width: 1199px) {
  .line-header .container-fluid > .row > div:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(2) {
    width: 30%;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) .content {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 22px 30px 20px 10px;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .btn {
  margin-top: 0;
  margin-bottom: 0;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .btn.btn-abonnement {
  background-color: #F0F1F1;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .btn.btn-abonnement:hover {
  background-color: #F1BE48;
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(2) .content > a {
    display: none;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger {
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.5s;
}
@media (min-width: 992px) {
  .line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger {
    display: none;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger span {
  width: 25px;
  height: 2px;
  background-color: #000000;
  color: transparent;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 5px;
  transition: 0.5s;
  border-radius: 5px;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger span:nth-child(2) {
  width: 16px;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger span:nth-child(3) {
  width: 10px;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger span:nth-child(4) {
  position: absolute;
  width: 14px;
  margin-top: 0;
  margin-left: 15px;
  margin-bottom: -20px;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger span:nth-child(5) {
  position: absolute;
  width: 14px;
  margin-top: 0;
  margin-left: 15px;
  margin-bottom: -20px;
  transform: rotate(90deg);
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger:hover, .line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger:hover span, .line-header .container-fluid > .row > div:nth-child(2) .content .menu-hamburger:focus span {
  background-color: #F1BE48;
}
@media (max-width: 991px) {
  .line-header {
    /*
    height: 0;
    top: -100%;
    overflow: hidden;
    bottom: 100%;
    display: block;
    z-index: 99999999;
    */
  }
}

/*
body.member--isConnected {
	.header-ext-login {
		flex-direction: row!important;
	}
}

*/
.line-infolettre-cta {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .line-infolettre-cta {
    padding-bottom: 35px;
  }
}
.line-infolettre-cta .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  top: 0;
}
.line-infolettre-cta .container > .row {
  padding-top: 85px;
  display: flex;
}
@media (max-width: 767px) {
  .line-infolettre-cta .container > .row {
    padding-top: 45px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 991px) {
  .line-infolettre-cta .container > .row > div:nth-child(1) {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-infolettre-cta .container > .row > div:nth-child(1) .content {
  max-width: 460px;
}
@media (max-width: 767px) {
  .line-infolettre-cta .container > .row > div:nth-child(1) .content {
    max-width: 100%;
    text-align: center;
  }
}
.line-infolettre-cta .container > .row > div:nth-child(1) .content h2 {
  font-size: 45px;
  line-height: 48px;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-infolettre-cta .container > .row > div:nth-child(1) .content h2 {
    font-size: 38px;
    line-height: 41px;
  }
}
.line-infolettre-cta .container > .row > div:nth-child(2) {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .line-infolettre-cta .container > .row > div:nth-child(2) {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container > .row > div:nth-child(2) .content {
    min-height: 253px;
    max-width: 100%;
    text-align: center;
    padding-bottom: 10px;
    display: flex;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container > .row > div:nth-child(2) .content .btn-abonnement {
    bottom: 30px;
  }
}
.line-infolettre-cta .container > .row > div:nth-child(2) .content:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYh3egFLRCMIxmwyhmhL1L5/asset/images/Blogue%20assets%202024/blogue_mobile.png") no-repeat;
  background-size: 389px 328px;
  width: 389px;
  height: 328px;
  position: absolute;
  bottom: -50px;
  left: 0;
}
@media (max-width: 991px) {
  .line-infolettre-cta .container > .row > div:nth-child(2) .content:before {
    background-size: 300px 253px;
    width: 300px;
    height: 253px;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container > .row > div:nth-child(2) .content:before {
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.line-social {
  padding-bottom: 30px;
}
.line-social .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  top: 0;
}
.line-social .container > .row {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .line-social .container > .row > div:nth-child(1) .content {
    text-align: center;
    margin-bottom: 15px;
  }
}
.line-social .container > .row > div:nth-child(1) .content p {
  margin-bottom: 0;
}
.line-social .container > .row > div:nth-child(1) .content .btn {
  margin-top: 10px;
}
.line-social .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-social .container > .row > div:nth-child(2) .content {
    text-align: center;
  }
}
.line-social .container > .row > div:nth-child(2) .content a {
  margin-left: 35px;
}
@media (max-width: 991px) {
  .line-social .container > .row > div:nth-child(2) .content a {
    margin-left: 25px;
  }
}
.line-social .container > .row > div:nth-child(2) .content a:hover img {
  animation-name: pulse;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-delay: 0s;
}
@media (max-width: 991px) {
  .line-social .container > .row > div:nth-child(2) .content a img {
    width: 46px !important;
  }
}

.line-copyright .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  top: 0;
}
.line-copyright .container:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  bottom: 0;
}
.line-copyright .container > .row {
  padding-top: 8px;
  padding-bottom: 9px;
}
@media (max-width: 767px) {
  .line-copyright .container > .row > div:nth-child(1) .content {
    text-align: center;
    padding-bottom: 15px;
  }
}
.line-copyright .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-copyright .container > .row > div:nth-child(2) .content {
    text-align: center;
  }
}
.line-copyright .container > .row > div p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 20px;
}
.line-copyright .container > .row > div p a {
  text-decoration: underline;
}
.line-copyright .container > .row > div p a:hover {
  text-decoration: none !important;
}

@media (min-width: 992px) {
  .line-menu-container {
    background-color: #F0F1F1;
    padding-bottom: 22px;
  }
  .line-menu-container .container-fluid > .row {
    margin-left: 25px;
    margin-right: 25px;
    border-top: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
    min-height: 74px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) {
    display: none;
    width: 0%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) {
    padding-top: 15px;
    padding-left: 0;
    width: 60%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked {
    margin: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked li.active {
    /*background-color: $secondary!important;*/
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked li.active a {
    /*background-color: transparent;*/
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked li a.child-link {
    flex: 1;
    padding: 0px 90px 0px 30px !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked li a:hover {
    background-color: transparent;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked li:hover {
    background-color: #F0F1F1;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked > li {
    position: relative;
    z-index: 9999;
    float: left;
    padding-right: 15px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked > li:nth-child(1) {
    display: none;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked > li > a.dropdown-toggle .caret {
    border: 0;
    position: absolute;
    background: url("https://cdn.ca.yapla.com/company/CPYh3egFLRCMIxmwyhmhL1L5/asset/images/Blogue%20assets%202024/menu_arrow.svg");
    width: 13px;
    height: 8px;
    margin-left: -26px;
    margin-top: 1px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked > li > a:not(.dropdown-toggle) {
    background-color: transparent;
    color: #000000;
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
    height: 40px;
    padding: 0px 30px 0px 30px;
    text-transform: inherit;
    transition: all 150ms;
    border: 1px solid #F1BE48;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked > li > ul.dropdown-menu-level-2 > li:hover {
    background-color: #fff;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked > li > ul.dropdown-menu-level-2 > li:hover a:before {
    content: "";
    width: calc(100% + 12px);
    height: 7px;
    bottom: 7px;
    left: -6px;
    border-radius: 5px;
    background-color: #F1BE48;
    position: absolute;
    z-index: -1;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.nav-stacked > li > ul.dropdown-menu-level-2 > li > a {
    position: relative;
    width: max-content;
    z-index: 1;
    padding: 3px 0;
    margin: 0 20px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) {
    width: 40%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  .line-menu-container {
    padding-top: 30px;
    z-index: 10000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #F0F1F1;
    right: -110vw;
    transition: 1.5s right cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-box-shadow: 5px 5px 55px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 55px 5px rgba(0, 0, 0, 0.2);
  }
  .line-menu-container.opened {
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .line-menu-container .container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .line-menu-container .container-fluid > .row {
    display: flex;
    flex-direction: column;
    margin: 0 5px 0 15px;
  }
  .line-menu-container .container-fluid > .row > div {
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) {
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(1) {
    display: block;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger {
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: 5px;
    margin-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger span {
    width: 25px;
    height: 2px;
    background-color: #000000;
    color: transparent;
    display: block;
    line-height: 0;
    text-indent: -9999px;
    margin-top: 5px;
    transition: 0.5s;
    border-radius: 5px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger span:nth-child(2) {
    /*width:24px;*/
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger span:last-child {
    width: 16px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:hover, .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:focus {
    cursor: pointer;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:hover span, .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:focus span {
    background-color: #F1BE48;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: flex;
    padding-bottom: 20px;
    position: relative;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    top: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items:before {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    bottom: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items:after {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li {
    margin-bottom: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li a {
    color: #1D1D1B;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li:focus {
    color: #1D1D1B;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li .dropdown-backdrop {
    position: relative;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li {
    color: #1D1D1B;
    font-size: 19px;
    line-height: 20px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    z-index: 99;
    margin-left: 0 !important;
    border-bottom: 1px solid #F0F1F1;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:first-child {
    width: 190px;
    height: auto;
    margin-top: -82px;
    margin-bottom: 15px;
    border-bottom: 0;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:first-child {
    margin-top: -84px;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:first-child a {
    background: url("https://cdn.ca.yapla.com/company/CPYh3egFLRCMIxmwyhmhL1L5/asset/images/Blogue%20assets%202024/Logo_Header.svg") no-repeat;
    background-position: left top;
    background-size: 240px 50px;
    width: 240px;
    height: auto;
    line-height: 0;
    text-indent: -9999px;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:first-child a {
    background-size: 210px 50px;
    width: 210px;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:nth-child(2) {
    margin-top: 16px;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:focus, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active {
    cursor: pointer;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:hover > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:focus > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > a {
    color: #1D1D1B;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:hover > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:focus > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > a:not(.dropdown-toggle) {
    /*background-color: $secondary;*/
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > a {
    padding: 17px 15px 17px 0;
    height: 57px !important;
    width: 100%;
    margin-left: 0;
    background-color: transparent;
    border-radius: 4px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > a.dropdown-toggle {
    display: block;
    text-align: right;
    margin-top: -57px;
    height: 57px !important;
    padding: 0 !important;
    margin-left: 0;
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > a.dropdown-toggle .caret {
    content: "";
    width: 13px;
    height: 13px;
    margin-top: 20px;
    margin-right: 0px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0);
    border: none;
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.open > .dropdown-toggle .caret, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > .dropdown-toggle .caret {
    background-image: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
    transform: rotate(0);
    transition: all 0.5s;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.open > .dropdown-menu, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > .dropdown-menu {
    max-height: 800px;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu {
    position: relative;
    z-index: 1000;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: max-height 1000ms;
    background-color: transparent !important;
    max-width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    height: auto;
    max-height: 0;
    height: auto;
    margin-bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li {
    padding: 0 20px 0 0;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:first-child {
    margin-top: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:last-child {
    margin-bottom: 30px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus {
    background-color: transparent !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > a {
    padding: 5px 0 5px 0;
    /*height: 29px!important;*/
    width: 100%;
    color: #1D1D1B;
    font-size: 15px;
    margin-left: 0;
    background-color: transparent;
    border-radius: 4px;
    white-space: normal;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > a.dropdown-toggle {
    position: absolute;
    display: block;
    text-align: right;
    height: 26px !important;
    padding: 0 !important;
    margin-left: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > a.dropdown-toggle .caret {
    content: "";
    width: 7px;
    height: 8px;
    margin-top: 9px;
    margin-right: 15px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/AIDQ/_Assets/menu-caret.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    transition: all 0.5s;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active {
    cursor: pointer;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > a {
    color: #fff;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > a:not(.dropdown-toggle) {
    color: #F1BE48;
    text-decoration: none;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.open > .dropdown-toggle .caret, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > .dropdown-toggle .caret {
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.open > .dropdown-menu, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > .dropdown-menu {
    max-height: 800px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu {
    position: relative;
    z-index: 1000;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: max-height 1000ms;
    background-color: transparent !important;
    max-width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    height: auto;
    max-height: 0;
    height: auto;
    /*display:block!important;*/
    margin-bottom: 0;
    top: 0;
    left: 0;
    padding: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 0 20px 0 15px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:first-child {
    margin-top: 10px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:last-child {
    margin-bottom: 15px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:focus {
    background-color: transparent !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 200;
    padding: 0;
    width: 100%;
    white-space: inherit;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a:hover {
    color: #F1BE48;
    text-decoration: none;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a.child-link {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(3) {
    padding: 12px 0 14px 0;
    width: calc(100% - 30px);
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content {
    text-align: center;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    bottom: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content:after {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .btn-recherche {
    margin-bottom: 6px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .mobile-menu-header {
    display: grid;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .mobile-menu-header .btn-abonnement {
    background-color: #F0F1F1;
    margin-right: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .mobile-menu-header .btn-abonnement:hover {
    background-color: #F1BE48;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .mobile-menu-header .btn-link {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .overflowhidden .line-menu-container:not(.sticked) .navbar-header {
    /*height: 110px;*/
  }
  .overflowhidden .line-menu-container > .container-fluid {
    /* height: 110px; */
    border-bottom: none;
  }
  .overflowhidden .line-menu-container > .container-fluid .zone-image a {
    margin-left: 5px;
  }
}
@media (max-width: 991px) {
  .line-bg-menu-open {
    /*
    overflow: hidden;
    background-color: $primary;
    position:absolute;
    width: 100%;
    height: 100%;
    padding:0!important;
    margin:0!important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    */
  }
}
@media (max-width: 991px) {
  body.overflowhidden .line-bg-menu-open {
    /*
    opacity: .4;
    pointer-events:fill;
    cursor: pointer;
    */
  }
}
@media (max-width: 991px) {
  .line-menu-container {
    right: -200vw;
  }
}
@media (max-width: 575px) {
  .line-menu-container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .mobile-menu-header {
    display: none;
  }
}
/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
/* CONTAINER */
.line-header:not(.sticked, .menuopened) {
  transition: top 250ms;
  /*
  > .container {
      top: -100px;
      transition: top 250ms;
  }
  */
}
.line-header.sticked {
  background-color: #fff;
  -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  padding: 0 0 0 0;
}
@media (min-width: 992px) {
  .line-header.sticked {
    height: 74px;
  }
}
.line-header.sticked > .container-fluid > .row > div h3, .line-header.sticked > .container-fluid > .row > div .btn-link {
  display: none;
}
@media (min-width: 992px) {
  .line-header.sticked > .container-fluid > .row > div:nth-child(1) .content {
    padding: 16px 10px 0 40px;
  }
}
@media (min-width: 992px) {
  .line-header.sticked > .container-fluid > .row > div:nth-child(1) .content img {
    width: 230px !important;
  }
}
@media (min-width: 992px) {
  .line-header.sticked > .container-fluid > .row > div:nth-child(2) .content {
    padding: 18px 65px 0 10px;
  }
}
.line-header.sticked > .container-fluid > .row > div:nth-child(2) .content .btn-abonnement {
  background-color: #fff;
}
.line-header.sticked:not(.menuopened) {
  position: sticky;
  top: 0;
}
/* CONTAINER */
.line-menu-container:not(.sticked, .menuopened) {
  /*transition: top 250ms;*/
  transition: top 1.5s right cubic-bezier(0.77, 0, 0.175, 1);
}
.line-menu-container:not(.sticked, .menuopened) > .container {
  top: -100px;
  /*position: static;*/
  transition: top 250ms;
}
@media (min-width: 992px) {
  .line-menu-container.sticked {
    pointer-events: none;
    background-color: transparent;
    -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    position: sticky;
    padding-top: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
}
@media (min-width: 992px) {
  .line-menu-container.sticked > .container-fluid > .row > div:nth-child(2) {
    padding-left: 275px;
    width: 73%;
  }
  .line-menu-container.sticked > .container-fluid > .row > div:nth-child(2) ul.nav-stacked {
    pointer-events: visible;
  }
  .line-menu-container.sticked > .container-fluid > .row > div:nth-child(2) ul.nav-stacked li:hover {
    background-color: #fff;
  }
}
@media (min-width: 992px) {
  .line-menu-container.sticked > .container-fluid > .row > div:nth-child(3) {
    width: 27%;
  }
}
@media (min-width: 992px) {
  .line-menu-container.sticked > .container-fluid > .row .btn-recherche {
    pointer-events: visible;
    width: 40px;
    text-indent: 200px;
    padding: 0;
    margin-top: 16px;
  }
}

/* OPTION - Hide munu item when logged
body {
	&.member--isConnected {
		.nav.navbar-nav {
			> li {
				&[rel=data-menu-67910] {
					display: none!important;
				}
			}
		}
	}
}
*/
/*@import "menu_v1/header.scss";*/
.zone-event_activities .event_activity_list_filter .search-form .form-horizontal .col-sm-12 .fc-datepicker > input {
  background: #f7f7f7 !important;
}
.zone-event_activities .activities-mosaic .row > div .item > h3 {
  color: #000000;
}
.zone-news .search-form {
  padding-bottom: 85px;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  text-transform: initial;
  margin-bottom: 6px;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div a.news-category {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #000000;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div a.news-category:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div p.news-published-date.e-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #000000;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
}
.zone-news #news_content.news-mosaic .row > div div.news-intro {
  padding-top: 8px;
  margin-right: 32px;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-bottom: 16px;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
  height: 35px;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:hover, .zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:active, .zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags {
    white-space: normal !important;
  }
}
.zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:hover, .zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:active, .zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}
.zone-news #news_content.news-mosaic .row > div img.news-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
  /*margin-top: 0;*/
  margin-top: 7px;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:hover, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:active, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
    white-space: normal !important;
  }
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:hover, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:active, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}

/* Module articles en vedette */
.zone-news_flash .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.zone-news_flash .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.zone-news_flash a.viewAll {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news_flash a.viewAll {
    white-space: normal !important;
  }
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}

/* Bannière - container pleine largeur */
/*###########################  CONNEXION  ###########################*/
/* Global Fix*/
form.form-horizontal .zend_form .col-md-12 {
  width: 100%;
}
form.form-horizontal .zend_form .col-md-12 input,
form.form-horizontal .zend_form .col-md-12 select,
form.form-horizontal .zend_form .col-md-12 textarea {
  box-shadow: none !important;
}
/*Form Connexion Membre*/
.zone-login {
  background-color: #F0F1F1;
  padding: 64px;
}
@media (max-width: 767px) {
  .zone-login {
    padding: 64px 32px;
  }
}

.zone-member .member-login-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zone-member .member-login-wrapper h1 {
  margin: 64px 0;
}
.zone-member .member-login-wrapper #profile_login_form {
  width: 50%;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type {
  padding: 16px 0 64px 0;
  text-align: right;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password {
  text-decoration: none;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password:hover {
  color: #F1BE48;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form input#submit {
  margin-right: 16px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 2.8rem;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 30px;
}
/* Contenue personalisé */
/*Espace Evenements - Vue Details*/
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #1D1D1B;
  width: 28%;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    order: 2;
    border: none;
    background-color: #fff;
    padding: 64px;
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    padding: 32px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
  background-color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 25px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info:after {
  content: "";
  margin-top: 5px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  order: 1;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 20px;
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone {
  order: 3;
  padding-top: 10px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  order: 4;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places {
  order: 5;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 25px;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 15px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places:before {
  content: "";
  order: 5;
  margin-top: 15px;
  margin-bottom: 20px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    display: none;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
    margin: 0 0 50px 0;
    padding: 0 30px;
    order: 1;
    width: 100%;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21;
  font-weight: 800;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 32px;
  line-height: 39px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  order: 4;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  color: #000000;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav {
    flex-direction: column;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}
/* Espace Evenement - Mosaique */
/*###########################  ESPACE MEMBRE  ###########################*/
.line-zone-membre {
  /*
  .container-fluid{
      max-width: 80%;

      @include max-md{
          max-width: 100%;
      }

  }
  */
}

.zone-member .sidebar__member-zone {
  background-color: transparent;
  /*
  @include max-md {
      width: 100%;
  }

  @include max-sm {
      width: 100%;
  }
  */
}
.zone-member .sidebar__member-zone .member-sidebar__inner {
  background-color: transparent;
  padding: 0px 25px 35px 25px;
  margin-right: 15px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    margin-right: 0;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-header {
  padding: 0;
  border: none;
}
.zone-member .sidebar__member-zone .member-sidebar__member-header__title {
  color: #F1BE48;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  border-bottom: 1px solid #ccc;
  padding-top: 5px;
  padding-bottom: 20px;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding: 1.4rem 0;
  background: transparent;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  color: #000000;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  color: #000000;
  text-decoration: underline;
}
.zone-member .sidebar__member-zone .member-sidebar__menu {
  padding-left: 0;
  padding-right: 0;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li {
  padding: 0;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a {
  color: #000000;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #1D1D1B;
  text-decoration: underline;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active {
  display: inline-block;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active a {
  color: #1D1D1B;
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #323872;
  margin-bottom: 5px;
}
.zone-member .member h2 {
  color: #161E54;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  padding: 5px 0 8px 0;
}
.zone-member .member input#submit {
  float: left !important;
}
.zone-member .form-element-votre_photo .input-file .preview #preview {
  padding-bottom: 0;
  margin-bottom: 25px;
  height: 175px;
  width: 175px;
  border-radius: 100px;
  margin-left: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.zone-member .preview.row {
  margin-left: 0;
  margin-right: 0;
}

/*Événements en vedette - affichage mosaïque*/
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item a img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
/*Formulaire de Contact*/
/* Formulaire - Module Donnes*/
/* Image - (Default alignée à gauche) */
/*###########################  FIL D'ARIANE  ###########################*/
.line-breadcrumbs {
  padding-top: 10px;
  padding-bottom: 60px;
}
.line-breadcrumbs .zone-breadcrumbs {
  text-align: right;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway {
  text-decoration: none !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway:hover, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:focus, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:active {
  text-decoration: underline !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a, .line-breadcrumbs .zone-breadcrumbs ul li span {
  font-size: 13px;
  font-weight: 500;
}
.line-breadcrumbs .zone-breadcrumbs ul li + li:before {
  content: "/";
  color: #000000;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #F1BE48;
}

.zone-community .row .sidebar {
  width: 33.3333333%;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar {
    width: 100%;
    padding-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron {
  margin-right: 10px;
  background-color: #F0F1F1;
  padding: 25px 25px 35px 25px;
  margin-bottom: 110px;
}
@media (max-width: 991px) {
  .zone-community .row .sidebar .jumbotron {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron {
    margin-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron strong {
  font-size: 21px;
  line-height: 26px;
  color: #000000;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #000000;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #000000;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #000000;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #000000;
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #000000;
  font-weight: 700;
  display: block;
  margin-left: 25px;
  margin-bottom: 20px;
}
.zone-community .row .sidebar ul {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0 15px 0;
  margin-left: 25px;
  margin-right: 25px;
  list-style: none;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 9px;
}
.zone-community .row .sidebar ul li a:hover, .zone-community .row .sidebar ul li a:focus {
  color: #000000;
  text-decoration: none;
}
.zone-community .row .content {
  width: 66.6666667%;
}
@media (max-width: 767px) {
  .zone-community .row .content {
    width: 100%;
  }
}
.zone-community .row .content ul.nav {
  border-bottom: none;
  margin-top: 25px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.zone-community .row .content ul.nav li {
  padding: 0px 5px;
}
.zone-community .row .content ul.nav li a {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent !important;
  color: #000000 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: normal !important;
  height: 40px !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-transform: inherit !important;
  transition: all 150ms !important;
  border-bottom: 1px solid #F1BE48 !important;
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-community .row .content ul.nav li a {
    white-space: normal !important;
  }
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  background-color: transparent !important;
  color: #000000 !important;
  border-bottom: 1px solid #000000 !important;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #000000 !important;
}
.zone-community .row .content .tab-content ul.errors li {
  list-style: none;
}
.zone-community .row .content .tab-content h3 {
  text-transform: inherit;
}
.zone-community .row .content .tab-content .forum-message-content-filter {
  display: inline-flex;
  flex-flow: column;
  align-items: flex-start;
}
.zone-community .row .content .tab-content .forum-message-content-filter .add-mod-forum-item {
  margin-top: 10px;
}
.zone-community .row .content .tab-content .forum-item__btn-addMessage {
  margin-right: 25px;
}
.zone-community .row .content .tab-content .forum-list__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-community .row .content .forum-item, .zone-community .row .content .forum-item__wrapper {
  padding: 37px 0 30px;
}
.zone-community .row .content .forum-item:hover, .zone-community .row .content .forum-item__wrapper:hover {
  background-color: transparent;
}
.zone-community .row .content .forum-item .forum-item-title, .zone-community .row .content .forum-item__wrapper .forum-item-title {
  font-size: 18px;
  line-height: 21px;
}
.zone-community .row .content .forum-item .forum-item-author, .zone-community .row .content .forum-item__wrapper .forum-item-author {
  color: #000000;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle {
  min-height: 0;
  padding: 10px;
  background-color: #fff;
  border: 0;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle .caret, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle .caret {
  color: #000;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-menu li, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-menu li {
  margin-bottom: 0;
}
.zone-community .row .content .forum-message-child {
  padding: 37px 30px 30px;
}
.zone-community .row .content .forum-item__wrapper .forum-item-title {
  margin-right: 0;
}
.zone-community .row .content .forum-form__addMessage-wrapper #community_form_add_message {
  padding-top: 30px;
}
.zone-community .row .content #community-forum #community_form_add_message .section .form-group:last-of-type {
  padding-top: 20px;
}
.zone-community .row .content #community-forum .forum-item__btn-addMessage {
  margin-right: 25px;
}

.forum-item__likes-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.forum-item__likes-wrapper button {
  background-color: transparent !important;
  border: none !important;
  color: #000000 !important;
  text-transform: inherit;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  padding: 0 10px 0 0 !important;
  margin-right: 5px !important;
}
.forum-item__likes-wrapper button i:before {
  filter: hue-rotate(299deg);
}
.forum-item__likes-wrapper button[data-type=like] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-pouce.svg");
  width: 28px;
  height: 27px;
  display: block;
  margin-top: -9px;
  margin-right: 5px;
}
.forum-item__likes-wrapper button[data-type=follow] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-etoile.svg");
  width: 27px;
  height: 25px;
  display: block;
  margin-top: -7px;
  margin-right: 5px;
}
.forum-item__likes-wrapper .forum-item__action-count {
  margin: 0 5px 0 -5px;
}

.prebuilt-articles-vedette-col3 .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 a.viewAll {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}

.prebuilt-articles-vedette-title-left-text-right .container > .row > div h2 {
  margin-bottom: 35px;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row {
  padding-top: 30px;
  padding-bottom: 20px;
  margin: 0;
  border-bottom: 1px solid #000000;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row:nth-child(1) {
  border-top: 1px solid #000000;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item {
    columns: 2;
    column-gap: 40px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-transform: initial;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
    padding-right: 100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a {
  color: #000000;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a:focus {
  color: #000000;
  text-decoration: none;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .e-date {
    padding-right: 100px;
    break-after: column;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro {
    margin-left: -100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro p {
  margin: 0;
  padding: 0;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions {
  margin-top: 0;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions {
    margin-left: -100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
  margin-top: 80px;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}

.prebuilt-articles-multiples-col3 .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item p.news-keywords {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 a.viewAll {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}

/* 
Mosaique
1 collone
Résumer au centre
*/
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row {
  margin-top: 0;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-evenement-en-vedette-list-3 {
  padding-top: 115px;
  padding-bottom: 80px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash h2 {
  margin-bottom: 35px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 15px;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row {
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 235px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 175px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 135px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 185px !important;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-transform: initial;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item hr {
  display: none;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos {
  margin-bottom: 25px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
  text-transform: inherit;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions {
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a {
  margin-top: 20px;
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:hover, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:active, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}
/* Menu & Footer social icons*/
ul.social {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
ul.social li {
  width: 50px;
}
ul.social li a {
  text-decoration: none !important;
}
ul.social li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%231c1d1f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
ul.social li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23182cca'/%3E%3C/svg%3E%0A");
}
ul.social li a.facebook {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 11px;
  height: 22px;
  display: block;
  position: relative;
  left: 5px;
}
ul.social li a.facebook:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li a.youtube {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 24px;
  height: 17px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.youtube:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li a.twitter {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 21px;
  height: 17px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.twitter:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li.blue a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23182CCA'/%3E%3C/svg%3E%0A");
}
ul.social li.blue a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23000000'/%3E%3C/svg%3E%0A");
}
ul.social li.blue a.facebook {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.blue a.facebook:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%23000000'/%3e%3c/svg%3e");
}
ul.social li.blue a.youtube {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.blue a.youtube:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23000000'/%3e%3c/svg%3e");
}
ul.social li.blue a.twitter {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.blue a.twitter:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23000000'/%3e%3c/svg%3e");
}

.line-ligne-du-temps {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-ligne-du-temps {
    padding-top: 40px;
  }
}
.line-ligne-du-temps .newsList:before {
  content: "";
  height: calc(100% - 50px);
  position: absolute;
  border-right: 2px solid #000000;
  top: 52px;
  left: 315px;
  margin-left: 3px;
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList:before {
    left: 240px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList:before {
    left: 10px;
  }
}
.line-ligne-du-temps .newsList .row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 0 !important;
  padding: 40px 0 20px 0;
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row {
    display: block;
  }
}
.line-ligne-du-temps .newsList .row:not(:last-child):after {
  content: "";
  position: absolute;
  width: 1920px;
  left: 12%;
  height: 2px;
  bottom: 0;
  border-bottom: 2px dashed #000000;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row:not(:last-child):after {
    left: 16%;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row:not(:last-child):after {
    left: 15%;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row:not(:last-child):after {
    left: 0;
  }
}
.line-ligne-du-temps .newsList .row .item {
  width: 70%;
  margin: 0;
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item {
    width: 100%;
  }
}
.line-ligne-du-temps .newsList .row .item .itemImage {
  position: absolute;
  left: -350px;
  top: -105px;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item .itemImage {
    left: -280px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item .itemImage {
    left: -220px;
    top: -95px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .itemImage {
    position: relative;
    left: 25px;
    top: 0;
    margin-top: 20px;
  }
}
.line-ligne-du-temps .newsList .row .item .itemImage img {
  width: 133px;
  height: 133px;
  border-radius: 133px;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item .itemImage img {
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .itemImage img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .itemImage + h3:before {
    margin-top: -80px;
  }
}
.line-ligne-du-temps .newsList .row .item > h3 {
  position: absolute;
  text-align: right;
  color: #000000;
  font-weight: normal;
  left: -900px;
  top: 0;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item > h3 {
    left: -681px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item > h3 {
    left: -520px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item > h3 {
    position: relative !important;
    margin-bottom: 30px;
    left: 30px !important;
    text-align: left;
  }
}
.line-ligne-du-temps .newsList .row .item > h3:before {
  content: "";
  position: absolute;
  border-radius: 25px;
  width: 25px;
  height: 25px;
  background-color: #000000;
  margin-top: 0;
  margin-right: -95px;
  right: 0;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item > h3:before {
    right: 20px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item > h3:before {
    right: 36px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item > h3:before {
    left: -44px;
    right: auto;
  }
}
.line-ligne-du-temps .newsList .row .item h3 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item h3 {
    margin-bottom: 8px;
  }
}
.line-ligne-du-temps .newsList .row .item .intro {
  padding: 0 50px 0 65px;
  border-radius: 7px;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item .intro {
    padding: 0 50px 0 95px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item .intro {
    padding: 0 0 0 65px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .intro {
    padding: 0;
    margin-left: 30px;
  }
}

.line-btn-center-dashed {
  background-color: #F0F1F1;
  padding-top: 10px;
  padding-bottom: 135px;
  margin-bottom: 85px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-btn-center-dashed:before {
  content: "";
  position: absolute;
  width: 50%;
  left: -170px;
  height: 2px;
  border-bottom: 2px dashed #000000;
}
.line-btn-center-dashed:after {
  content: "";
  position: absolute;
  width: 50%;
  right: -170px;
  height: 2px;
  border-bottom: 2px dashed #000000;
}
.line-btn-center-dashed .content {
  text-align: center;
}
.line-btn-center-dashed .content .btn {
  margin-bottom: 0;
}

.line-accueil-vedette {
  padding-top: 25px;
  padding-bottom: 20px;
  background-color: #F0F1F1;
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.line-accueil-vedette .container-fluid > .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 55px;
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .line-accueil-vedette .container-fluid > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row > div {
    width: 100%;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(1) {
  width: 60%;
}
@media (max-width: 1199px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(1) {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(1) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(1) {
    width: 100%;
    padding-left: 15px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(1) .content .itemImage {
    margin-right: 45px;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(1) .content .itemImage img {
  width: 100%;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) {
  width: 40%;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) {
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) h5 {
  font-size: 14px;
  color: #fff;
  transform: rotate(270deg);
  -webkit-transform-origin: 50% 51%;
  position: relative;
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) h5 {
    position: absolute;
    top: -55vw;
    left: -100px;
    z-index: 1;
    width: 160px;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) h5:before {
  content: "";
  width: 110px;
  height: 1px;
  opacity: 0.24;
  position: absolute;
  background-color: #fff;
  margin-left: -135px;
  margin-top: 11px;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) h5:after {
  content: "";
  width: 110px;
  height: 1px;
  opacity: 0.24;
  position: absolute;
  background-color: #fff;
  right: -90px;
  margin-top: 11px;
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) h5:after {
    display: none;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content {
  padding-left: 55px;
  padding-right: 0;
  max-width: 400px;
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content {
    padding-left: 0;
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content {
    padding-left: 0;
    max-width: 100%;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item {
  display: flex;
  flex-direction: column;
  max-width: 375px;
}
@media (max-width: 991px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item {
    max-width: 100%;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item h3 {
  color: #000000;
  order: 2;
  margin-bottom: 20px;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item h3 a {
  color: #000000 !important;
  text-decoration: none !important;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item h3 a:hover, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item h3 a:focus, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item h3 a:active {
  color: #000000 !important;
  text-decoration: none !important;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .e-date {
  font-size: 12px;
  padding-bottom: 15px;
  color: #000000;
  font-weight: 600;
  order: 1;
  text-transform: none;
  text-decoration: none;
  position: relative;
  width: max-content;
  z-index: 1;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .e-date:before {
  content: "";
  width: calc(100% + 12px);
  height: 9px;
  bottom: 19px;
  left: -6px;
  border-radius: 5px;
  background-color: #F1BE48;
  position: absolute;
  z-index: -1;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .intro {
  order: 4;
  margin-top: 25px;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .intro p, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .intro h6 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
  color: #5b6770;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords {
  order: 3;
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  width: max-content;
  border-radius: 0;
  padding: 0;
  text-transform: inherit;
  transition: all 150ms;
  border-bottom: 1px solid #F1BE48;
  height: 30px;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords:hover, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords:active, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords {
    white-space: normal !important;
  }
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords:hover, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords:active, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .news-keywords:focus {
  background-color: transparent;
  color: #000000;
  border-bottom: 1px solid #000000;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .actions {
  margin-top: 10px;
  order: 5;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .actions a {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  text-decoration: none;
  height: 40px;
  border-radius: 50px;
}
.line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .actions a:hover, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .actions a:active, .line-accueil-vedette .container-fluid > .row > div:nth-child(2) .content .item .actions a:focus {
  background-color: #F1BE48;
  border: 1px solid #F1BE48;
  color: #000000;
}

.line-accueil-vedette-articles {
  background-color: #F0F1F1;
  position: relative;
  overflow: hidden;
}
.line-accueil-vedette-articles .container > .row > div {
  margin: 0;
}
.line-accueil-vedette-articles .container > .row > div > h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  position: relative;
}
.line-accueil-vedette-articles .container > .row > div > h4:after {
  content: "";
  background: #DBDBDB;
  position: absolute;
  width: 195px;
  height: 1px;
  bottom: 0;
  bottom: 10px;
  margin-left: 30px;
}
.line-accueil-vedette-articles .container > .row > div .content {
  display: flex;
  position: relative;
}
.line-accueil-vedette-articles .container > .row > div .content:before {
  content: "";
  width: 6000px;
  height: 100%;
  margin-left: -50%;
  background-color: #1D1D1B;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .line-accueil-vedette-articles .container > .row > div .content {
    flex-direction: column;
    padding-top: 15px;
  }
}
.line-accueil-vedette-articles .container > .row > div .content > .row {
  margin-top: 0;
  flex: 1 1 0px;
  margin-left: 0;
  margin-right: 0;
}
.line-accueil-vedette-articles .container > .row > div .content > .row:nth-child(1) {
  display: none;
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item {
  height: 100%;
  padding: 44px 30px 30px 30px;
  display: grid;
  grid-template-columns: 195px auto;
  grid-template-rows: auto 80px;
  grid-template-areas: "a c" "a b" "a d";
}
@media (max-width: 1199px) {
  .line-accueil-vedette-articles .container > .row > div .content > .row .item {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "a" "c" "b" "d";
    padding: 35px 30px 20px 30px;
  }
}
@media (max-width: 767px) {
  .line-accueil-vedette-articles .container > .row > div .content > .row .item {
    padding: 35px 0 20px 0;
  }
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item .itemImage {
  grid-area: a;
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item .itemImage a img {
  width: 160px;
  min-width: 160px;
  height: 90px !important;
  border-radius: 0;
  border: 0;
}
@media (max-width: 767px) {
  .line-accueil-vedette-articles .container > .row > div .content > .row .item .itemImage a img {
    width: 240px;
    min-width: 240px;
    height: 130px !important;
  }
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item h3 {
  grid-area: c;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .line-accueil-vedette-articles .container > .row > div .content > .row .item h3 {
    margin-top: 0;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .line-accueil-vedette-articles .container > .row > div .content > .row .item h3 {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .line-accueil-vedette-articles .container > .row > div .content > .row .item h3 {
    padding-right: 100px;
  }
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item h3 a {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
  font-size: 18px;
  line-height: 22px;
  color: #fff !important;
  text-decoration: none !important;
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item h3 a:hover, .line-accueil-vedette-articles .container > .row > div .content > .row .item h3 a:focus, .line-accueil-vedette-articles .container > .row > div .content > .row .item h3 a:active {
  color: #fff !important;
  text-decoration: none !important;
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item .e-date {
  grid-area: b;
  font-size: 12px;
  font-weight: 300;
  padding-bottom: 15px;
  font-weight: 300 !important;
  color: #fff;
  order: 1;
  text-transform: none;
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item .actions {
  grid-area: d;
  position: absolute;
  margin-top: 0;
  bottom: 18px;
  right: -6px;
  z-index: 10;
}
@media (max-width: 1199px) {
  .line-accueil-vedette-articles .container > .row > div .content > .row .item .actions {
    position: relative;
  }
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item .actions a {
  position: relative;
  display: block;
  background-color: #F1BE48 !important;
  border: 1px solid #F1BE48 !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
  margin-right: 0;
  margin-left: auto;
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item .actions a:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  filter: brightness(0);
  transform: rotate(-90deg);
  right: 8px;
  top: 12px;
  width: 11px;
  height: 7px;
}
.line-accueil-vedette-articles .container > .row > div .content > .row .item .actions a:hover, .line-accueil-vedette-articles .container > .row > div .content > .row .item .actions a:focus {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  text-decoration: none;
  /*
  &:after {
  	filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
  }
  */
}

.line-category {
  padding-top: 80px;
  padding-bottom: 50px;
}
.line-category .content {
  display: flex;
}
.line-category .content h4 {
  flex: 1;
  transform: rotate(-90deg);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  flex: 1 1 0px;
  height: 0;
  width: 0;
  top: 70px;
}
.line-category .content h4:after {
  content: "";
  background: #DBDBDB;
  position: absolute;
  width: 80px;
  height: 1px;
  bottom: 0;
  bottom: -30px;
  margin-left: -25px;
}
.line-category .content p {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  margin-left: 80px;
}
@media (min-width: 1200px) {
  .line-category .content p {
    margin-right: 200px;
  }
}
@media (max-width: 767px) {
  .line-category .content p {
    margin-left: 50px;
  }
}

.line-nouvelles {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .line-nouvelles {
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .line-nouvelles .news-mosaic {
    gap: 90px 20px !important;
  }
}
@media (max-width: 767px) {
  .line-nouvelles .news-mosaic {
    gap: 70px 20px !important;
  }
}
.line-nouvelles .news-mosaic h3.news-title a {
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-transform: initial;
}
.line-nouvelles .news-mosaic p.e-date {
  font-size: 14px !important;
}
.line-nouvelles .news-mosaic div.news-tags {
  margin-top: 10px;
  max-width: 100% !important;
}
.line-nouvelles .news-mosaic .news-intro {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
}
.line-nouvelles .news-mosaic .news-intro p, .line-nouvelles .news-mosaic .news-intro h6 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000000;
  color: #5b6770;
}
.line-accueil-nouvelles-cta {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .line-accueil-nouvelles-cta {
    padding-top: 0px;
    padding-bottom: 40px;
  }
}

.line-accueil-collaborateurs {
  padding-bottom: 80px;
}
.line-accueil-collaborateurs .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  top: 0;
}
.line-accueil-collaborateurs .container > .row {
  padding-top: 60px;
  display: flex;
}
@media (max-width: 767px) {
  .line-accueil-collaborateurs .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-accueil-collaborateurs .container > .row > div:nth-child(1) .content {
    padding-right: 40px;
    max-width: 460px;
  }
}
@media (max-width: 767px) {
  .line-accueil-collaborateurs .container > .row > div:nth-child(1) .content {
    text-align: center;
    padding-right: 0;
    padding-bottom: 35px;
    max-width: 100%;
  }
}
.line-accueil-collaborateurs .container > .row > div:nth-child(2) {
  display: flex;
  align-items: end;
}
@media (min-width: 992px) {
  .line-accueil-collaborateurs .container > .row > div:nth-child(2) .content {
    padding-left: 60px;
    max-width: 460px;
  }
}
@media (max-width: 767px) {
  .line-accueil-collaborateurs .container > .row > div:nth-child(2) .content {
    text-align: center;
  }
}
.line-accueil-collaborateurs .container > .row > div:nth-child(2) .content h2 {
  font-size: 45px;
  line-height: 48px;
  font-weight: 900;
  text-transform: initial;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-accueil-collaborateurs .container > .row > div:nth-child(2) .content h2 {
    font-size: 38px;
    line-height: 41px;
  }
}
.line-accueil-collaborateurs .container > .row > div:nth-child(2) .content p {
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000000;
}
.line-accueil-collaborateurs .container > .row > div:nth-child(2) .content .btn-secondary {
  margin-top: 45px;
}

.line-nouvelles-details {
  padding-top: 85px;
  padding-bottom: 20px;
}
.line-nouvelles-details .container > .row {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper h1 {
  margin-bottom: 25px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .mod-article__published-date {
  position: relative;
  width: max-content;
  z-index: 1;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .mod-article__published-date:before {
  content: "";
  width: calc(100% + 12px);
  height: 9px;
  bottom: 2px;
  left: -6px;
  border-radius: 5px;
  background-color: #F1BE48;
  position: absolute;
  z-index: -1;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .mod-article__author {
  margin-bottom: 5px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__img {
  order: 2;
  padding-bottom: 55px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content {
  order: 3;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content img {
  padding-bottom: 5px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content h2 {
  font-size: 32px;
  line-height: 37px;
  font-weight: 900;
  text-transform: initial;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-transform: initial;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content h4 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 900;
  text-transform: initial;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content h5 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content h5:has(u) {
  margin-top: -40px;
  margin-bottom: 40px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content h5:has(u) u:before {
  display: none;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content p {
  font-size: 22px;
  line-height: 29px;
  color: #5b6770;
  margin-bottom: 30px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content hr {
  border: 0;
  width: 100%;
  height: 7px;
  background-color: #F1BE48;
  margin-top: 40px;
  margin-bottom: 40px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content ul {
  margin-top: 50px;
  margin-bottom: 50px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content ul li {
  font-size: 22px !important;
  line-height: 29px !important;
  color: #5b6770 !important;
  margin-bottom: 16px !important;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content ul li img {
  padding-top: 40px;
  padding-bottom: 40px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content ol {
  margin-top: 50px;
  margin-bottom: 50px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content ol li {
  font-size: 22px;
  line-height: 29px;
  color: #5b6770;
  margin-bottom: 35px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content ol li::marker {
  font-size: 32px;
  line-height: 37px;
  font-weight: 700;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__content ol li img {
  padding-top: 40px;
  padding-bottom: 40px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags {
  order: 1;
  padding-bottom: 40px;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid #000000;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 150ms;
  text-transform: inherit;
  height: 40px;
  border-radius: 50px;
  margin: 0;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag:hover, .line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag:active, .line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag {
    white-space: normal !important;
  }
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag:hover, .line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag:active, .line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag:focus {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag.highlighted {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}
.line-nouvelles-details .container > .row .zone-article .mod-article__wrapper .news-content.mod-article__content .mod-article__tags .mod-article__tag:hover {
  background-color: #fff !important;
  border: 1px solid #000000 !important;
  color: #000000 !important;
}
table.paragraphe-large td {
  font-size: 25px !important;
  line-height: 32px !important;
  color: #1D1D1B !important;
  font-weight: 600 !important;
}
table.paragraphe-large td p {
  font-size: 25px !important;
  line-height: 32px !important;
  color: #1D1D1B !important;
  font-weight: 600 !important;
}
table.citation {
  background-color: #F0F1F1;
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  table.citation {
    width: 100% !important;
  }
}
table.citation td {
  padding: 50px 70px;
  font-size: 28px !important;
  line-height: 40px !important;
  color: #1D1D1B !important;
  font-weight: 500 !important;
  font-style: italic !important;
}
@media (max-width: 767px) {
  table.citation td {
    padding: 30px;
  }
}
table.citation td p {
  font-size: 28px !important;
  line-height: 40px !important;
  color: #1D1D1B !important;
  font-weight: 500 !important;
  font-style: italic !important;
  margin-bottom: 20px !important;
}
@media (max-width: 767px) {
  table.citation td p {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}
table.citation td h3 {
  font-size: 25px !important;
  line-height: 30px !important;
  font-weight: 900 !important;
  margin-bottom: 0;
  font-style: normal;
}
table.citation td h4 {
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  margin-bottom: 0;
}
table.collaborateur tr td h3 {
  font-size: 25px !important;
  line-height: 30px !important;
  font-weight: 500 !important;
  margin-bottom: 0;
  font-style: normal;
}
table.collaborateur tr td h4 {
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  margin-bottom: 0;
}
table.sources tr td h3 {
  font-size: 25px !important;
  line-height: 30px !important;
  font-weight: 900 !important;
  margin-bottom: 0;
  font-style: normal;
}
table.sources tr td ol {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
table.sources tr td ol li {
  margin-bottom: 0 !important;
}
table.sources tr td ol li a {
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  text-decoration: underline;
}
table.sources tr td ol li a:hover {
  text-decoration: none !important;
}
table.sources tr td ol li::marker {
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  color: #000000;
}
table.sources tr td ol li img {
  padding-top: 40px;
  padding-bottom: 40px;
}
table.relies {
  margin-bottom: 40px;
}
table.relies > tbody > tr {
  border-top: 1px solid #E2E5E7;
}
table.relies > tbody > tr:last-child {
  border-bottom: 1px solid #E2E5E7;
}
table.relies > tbody > tr > td {
  padding: 30px 0 33px 0;
}
table.relies > tbody > tr > td table tr td:nth-child(1) {
  width: 210px;
}
@media (max-width: 767px) {
  table.relies > tbody > tr > td table tr td:nth-child(1) {
    width: 130px;
  }
}
@media (max-width: 575px) {
  table.relies > tbody > tr > td table tr td:nth-child(1) {
    width: 100px;
  }
}
table.relies > tbody > tr > td table tr td:nth-child(3) {
  width: 170px;
}
@media (max-width: 767px) {
  table.relies > tbody > tr > td table tr td:nth-child(3) {
    width: 160px;
  }
}
@media (max-width: 575px) {
  table.relies > tbody > tr > td table tr td:nth-child(3) {
    width: 50px;
  }
}
table.relies > tbody > tr > td table tr td img {
  padding-bottom: 0 !important;
}
@media (max-width: 767px) {
  table.relies > tbody > tr > td table tr td img {
    width: 100px !important;
  }
}
@media (max-width: 575px) {
  table.relies > tbody > tr > td table tr td img {
    width: 80px !important;
  }
}
table.relies > tbody > tr > td table tr td h3 {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
}
table.relies > tbody > tr > td table tr td h4 {
  font-size: 12px !important;
  line-height: 25px !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
}
table.relies > tbody > tr > td table tr td .btn-arrow {
  position: relative;
  display: block;
  background-color: #F1BE48 !important;
  border: 1px solid #F1BE48 !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
  margin-left: auto;
  margin-right: 0;
}
table.relies > tbody > tr > td table tr td .btn-arrow:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  filter: brightness(0);
  transform: rotate(-90deg);
  right: 8px;
  top: 12px;
  width: 11px;
  height: 7px;
}
table.relies > tbody > tr > td table tr td .btn-arrow:hover, table.relies > tbody > tr > td table tr td .btn-arrow:focus {
  background-color: #000 !important;
  border: 1px solid #000 !important;
  text-decoration: none;
}
table.relies > tbody > tr > td table tr td .btn-arrow:hover:after, table.relies > tbody > tr > td table tr td .btn-arrow:focus:after {
  filter: invert(16%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}
table.table-relies {
  margin-top: 60px;
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}
table.table-relies:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E2E5E7;
  position: absolute;
  top: 0;
  margin-top: -30px;
}
table.table-relies > tbody tr td:nth-child(1) {
  width: 210px;
}
@media (max-width: 767px) {
  table.table-relies > tbody tr td:nth-child(1) {
    width: 130px;
  }
}
@media (max-width: 575px) {
  table.table-relies > tbody tr td:nth-child(1) {
    width: 100px;
  }
}
table.table-relies > tbody tr td:nth-child(3) {
  width: 170px;
}
@media (max-width: 767px) {
  table.table-relies > tbody tr td:nth-child(3) {
    width: 160px;
  }
}
@media (max-width: 575px) {
  table.table-relies > tbody tr td:nth-child(3) {
    width: 50px;
  }
}
table.table-relies > tbody tr td img {
  padding-bottom: 0 !important;
}
@media (max-width: 767px) {
  table.table-relies > tbody tr td img {
    width: 100px !important;
  }
}
@media (max-width: 575px) {
  table.table-relies > tbody tr td img {
    width: 80px !important;
  }
}
table.table-relies > tbody tr td h3 {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
}
table.table-relies > tbody tr td h4 {
  font-size: 12px !important;
  line-height: 25px !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
}
table.table-relies > tbody tr td .btn-arrow {
  position: relative;
  display: block;
  background-color: #F1BE48 !important;
  border: 1px solid #F1BE48 !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
  margin-left: auto;
  margin-right: 0;
}
table.table-relies > tbody tr td .btn-arrow:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  filter: brightness(0);
  transform: rotate(-90deg);
  right: 8px;
  top: 12px;
  width: 11px;
  height: 7px;
}
table.table-relies > tbody tr td .btn-arrow:hover, table.table-relies > tbody tr td .btn-arrow:focus {
  background-color: #000 !important;
  border: 1px solid #000 !important;
  text-decoration: none;
}
table.table-relies > tbody tr td .btn-arrow:hover:after, table.table-relies > tbody tr td .btn-arrow:focus:after {
  filter: invert(16%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}
table.articles-relies {
  margin-top: 80px;
  margin-bottom: 40px;
  border-color: #fff;
}
table.articles-relies > tbody > tr > td h3 {
  font-size: 32px !important;
  line-height: 37px !important;
  font-weight: 900 !important;
  margin-bottom: 40px;
}
table.articles-relies > tbody > tr > td p {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
  text-transform: inherit;
}
table.articles-relies > tbody > tr > td hr {
  border: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background-color: #E2E5E7 !important;
  margin-top: 30px !important;
  margin-bottom: 33px !important;
}
table.pub-revue {
  display: none !important;
  margin-bottom: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background-color: #F0F1F1;
  position: relative;
  padding: 60px 300px 40px 60px;
}
@media (max-width: 991px) {
  table.pub-revue {
    padding: 60px 60px 200px 60px;
    width: auto !important;
  }
}
@media (max-width: 575px) {
  table.pub-revue {
    padding: 40px 30px 250px 30px;
    width: auto !important;
    text-align: center;
  }
  table.pub-revue tbody, table.pub-revue tbody > tr, table.pub-revue tbody > tr > td {
    width: 100%;
    display: block;
  }
}
@media (max-width: 400px) {
  table.pub-revue {
    padding: 30px 20px 200px 20px;
  }
}
table.pub-revue p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
}
@media (max-width: 575px) {
  table.pub-revue p br {
    display: block !important;
  }
}
table.pub-revue .btn {
  margin-top: 25px;
}
table.pub-revue img {
  position: absolute;
  right: 30px;
  bottom: 0;
  padding-bottom: 0 !important;
}
@media (max-width: 575px) {
  table.pub-revue img {
    left: 30px;
    margin: auto;
  }
}
@media (max-width: 400px) {
  table.pub-revue img {
    width: 200px !important;
  }
}
table.tableau {
  margin-top: 50px;
  margin-bottom: 50px;
}
table.tableau thead {
  background-color: #F0F1F1;
}
table.tableau thead tr th {
  font-size: 20px !important;
  line-height: 24px !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
  padding: 10px 20px 0 20px;
}
@media (max-width: 767px) {
  table.tableau thead tr th {
    padding: 10px 10px 0 10px;
  }
}
table.tableau thead tr th p {
  font-size: 20px !important;
  line-height: 24px !important;
  margin-bottom: 10px !important;
}
table.tableau tbody tr td {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
  padding: 15px 20px 0 20px;
}
@media (max-width: 767px) {
  table.tableau tbody tr td {
    padding: 15px 10px 0 10px;
  }
}
table.tableau tbody tr td p {
  font-size: 18px !important;
  line-height: 22px !important;
  margin-bottom: 15px !important;
}
table.tableau tbody tr:first-child td {
  padding: 30px 20px 0 20px;
}
@media (max-width: 767px) {
  table.tableau tbody tr:first-child td {
    padding: 30px 10px 0 10px;
  }
}
table.tableau tbody tr:last-child td {
  padding: 15px 20px 20px 20px;
}
@media (max-width: 767px) {
  table.tableau tbody tr:last-child td {
    padding: 15px 10px 10px 10px;
  }
}

.line-nouvelles-details-categorie {
  padding-top: 10px;
  padding-bottom: 10px;
}
.line-nouvelles-details-categorie .container > .row {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.line-nouvelles-details-categorie .container > .row h3 {
  margin-bottom: 5px;
}
.line-nouvelles-details-categorie .container > .row .content {
  display: flex;
  padding-top: 20px;
}
.line-nouvelles-details-categorie .container > .row .content p {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

.line-nouvelles-details-recherche {
  padding-top: 20px;
  padding-bottom: 50px;
}
.line-nouvelles-details-recherche .container > .row {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.line-nouvelles-details-recherche .container > .row h3 {
  margin-bottom: 5px;
}

.line-collaborateur-titre {
  padding-top: 85px;
  padding-bottom: 30px;
}
.line-collaborateur-titre .content h2 {
  font-size: 45px;
  line-height: 48px;
  font-weight: 900;
  text-transform: initial;
  position: relative;
}
@media (max-width: 991px) {
  .line-collaborateur-titre .content h2 {
    font-size: 38px;
    line-height: 41px;
  }
}
.line-collaborateur-titre .content h2:before {
  content: "";
  width: 104px;
  height: 9px;
  bottom: -34px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  background-color: #F1BE48;
  position: absolute;
  z-index: -1;
}

.line-collaborateur {
  padding-top: 40px;
  padding-bottom: 40px;
}
.line-collaborateur .zone-news_flash > h3 {
  font-size: 25px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.line-collaborateur .zone-news_flash > h3:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
}
.line-collaborateur .zone-news_flash .newsList {
  gap: 60px 60px;
  margin-bottom: 50px;
}
.line-collaborateur .zone-news_flash .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.line-collaborateur .zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.line-collaborateur .zone-news_flash .newsList .row .item .itemImage img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center center;
}
.line-collaborateur .zone-news_flash .newsList .row .item h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-transform: initial;
  margin-bottom: 0;
}
.line-collaborateur .zone-news_flash .newsList .row .item h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.line-collaborateur .zone-news_flash .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.line-collaborateur .zone-news_flash .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.line-collaborateur .zone-news_flash .newsList .row .item div.intro {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  color: #5b6770;
}
.line-collaborateur .zone-news_flash .newsList .row .item div.intro p {
  color: #5b6770;
}
.line-collaborateur-cta {
  padding-bottom: 30px;
}

.line-infolettre-title {
  padding-top: 85px;
  padding-bottom: 55px;
}
.line-infolettre-title .content h2 {
  font-size: 45px;
  line-height: 48px;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-infolettre-title .content h2 {
    font-size: 38px;
    line-height: 41px;
  }
}
.line-infolettre-title .content h3 {
  font-size: 25px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000000;
  position: relative;
}
.line-infolettre-title .content h3:before {
  content: "";
  width: 104px;
  height: 9px;
  bottom: -34px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  background-color: #F1BE48;
  position: absolute;
  z-index: -1;
}

.line-infolettre-form {
  padding-bottom: 40px;
}
.line-infolettre-form #formbuilder-add-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.line-infolettre-form .formbuilder-confirmation-content {
  text-align: center;
}

.line-recherche {
  padding-bottom: 40px;
}
.line-recherche .gsc-search-box {
  max-width: 600px;
  padding-bottom: 20px;
}
.line-recherche button.gsc-search-button {
  display: inline-flex;
  background-color: transparent;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  height: 40px;
  padding: 0px 10px 0px 30px;
  text-transform: inherit;
  transition: all 150ms;
  position: relative;
  border: 0;
  overflow: hidden;
  /*border: 1px solid transparent;*/
}
.line-recherche button.gsc-search-button:before {
  content: "";
  width: 39px;
  height: 39px;
  background: url("https://cdn.ca.yapla.com/company/CPYh3egFLRCMIxmwyhmhL1L5/asset/images/Blogue%20assets%202024/Icon_Search-Header.svg") no-repeat;
  position: absolute;
  right: 0;
}
.line-recherche button.gsc-search-button:hover, .line-recherche button.gsc-search-button:active, .line-recherche button.gsc-search-button:focus {
  background-color: transparent;
  color: #000000;
  border: 0;
  text-decoration: underline;
  /*border: 1px solid $secondary;*/
}
.line-recherche button.gsc-search-button svg {
  display: none;
}

@media (max-width: 991px) {
  .line-404 {
    padding: 130px 0 10px 0 !important;
  }
}
.line-404 .row > div:first-child .content {
  text-align: center;
}
.line-404 .row > div:first-child .content h1 {
  color: #000000;
  font-size: 30px;
}
.line-404 .row > div:first-child .content h1 strong {
  display: block;
  font-size: 200px;
  line-height: 160px;
}
@media (max-width: 991px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 160px;
    line-height: 120px;
  }
}
@media (max-width: 575px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 120px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .line-404 .row > div:last-child .content {
    margin-top: 60px;
    text-align: center;
  }
}
.line-404 .row > div:last-child .content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
/**
* ----------------------------------------
* header
* ----------------------------------------
*/
@keyframes slide-down-header {
  0% {
    transform: translate(0, -40px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes logo-header {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/**
 * ----------------------------------------
 * Smooth bounce
 * ----------------------------------------
 */
@keyframes move {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
/**
 * ----------------------------------------
 * bounce_arrow
 * ----------------------------------------
 */
@keyframes bounce_arrow {
  0% {
    -webkit-transform: translateY(30);
    -ms-transform: translateY(30);
    transform: translateY(30);
  }
  40% {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
  80% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
.slide-right {
  -webkit-animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-fade-from-left
 * ----------------------------------------
 */
/* Fade From Left */
@-webkit-keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale3d(1, 1, 1);
  }
  50% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale3d(1, 1, 1);
  }
  50% {
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -o-transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.u--pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.u--flash {
  -webkit-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1vh, 0);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -moz-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -moz-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1vh, 0);
  }
}
@-o-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -o-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -o-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -o-transform: translate3d(0, -1vh, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -6vh, 0);
  }
  70% {
    transform: translate3d(0, -3vh, 0);
  }
  90% {
    transform: translate3d(0, -1vh, 0);
  }
}
.u--bounce {
  -webkit-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(1vw, 0, 0);
  }
}
@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(1vw, 0, 0);
  }
}
@-o-keyframes shake {
  0%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -o-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -o-transform: translate3d(1vw, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(1vw, 0, 0);
  }
}
.u--shake {
  -webkit-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -moz-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -moz-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -moz-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -o-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -o-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -o-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.u--swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -webkit-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes bounceIn {
  0% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -moz-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -moz-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes bounceIn {
  0% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -o-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.u--bounceIn {
  -webkit-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale(0.9);
  }
  50%, 65% {
    -webkit-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
}
@-moz-keyframes bounceOut {
  20% {
    -moz-transform: scale(0.9);
  }
  50%, 65% {
    -moz-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
}
@-o-keyframes bounceOut {
  20% {
    -o-transform: scale(0.9);
  }
  50%, 55% {
    -o-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
}
@keyframes bounceOut {
  20% {
    transform: scale(0.9);
  }
  50%, 65% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}
.u--bounceOut {
  -webkit-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInLeft {
  0% {
    -webkit-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    -moz-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInLeft {
  0% {
    -o-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInLeft {
  0% {
    transform: translate3d(-25%, 0, 0);
  }
  60% {
    transform: translate3d(3%, 0, 0);
  }
  75% {
    transform: translate3d(-1%, 0, 0);
  }
  90% {
    transform: translate3d(1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInLeft {
  -webkit-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInRight {
  0% {
    -webkit-transform: translate3d(25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInRight {
  0% {
    -moz-transform: translate3d(25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInRight {
  0% {
    -o-transform: translate3d(25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInRight {
  0% {
    transform: translate3d(25%, 0, 0);
  }
  60% {
    transform: translate3d(-3%, 0, 0);
  }
  75% {
    transform: translate3d(1%, 0, 0);
  }
  90% {
    transform: translate3d(-1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInRight {
  -webkit-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInUp {
  0% {
    -webkit-transform: translate3d(0, 25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, -3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInUp {
  0% {
    -moz-transform: translate3d(0, 25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, -3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInUp {
  0% {
    -o-transform: translate3d(0, 25%, 0);
  }
  60% {
    -o-transform: translate3d(0, -3%, 0);
  }
  75% {
    -o-transform: translate3d(0, 1%, 0);
  }
  90% {
    -o-transform: translate3d(0, -1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInUp {
  0% {
    transform: translate3d(0, 25%, 0);
  }
  60% {
    transform: translate3d(0, -3%, 0);
  }
  75% {
    transform: translate3d(0, 1%, 0);
  }
  90% {
    transform: translate3d(0, -1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInUp {
  -webkit-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInDown {
  0% {
    -webkit-transform: translate3d(0, -25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, 3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInDown {
  0% {
    -moz-transform: translate3d(0, -25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, 3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInDown {
  0% {
    -o-transform: translate3d(0, -25%, 0);
  }
  60% {
    -o-transform: translate3d(0, 3%, 0);
  }
  75% {
    -o-transform: translate3d(0, -1%, 0);
  }
  90% {
    -o-transform: translate3d(0, 1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInDown {
  0% {
    transform: translate3d(0, -25%, 0);
  }
  60% {
    transform: translate3d(0, 3%, 0);
  }
  75% {
    transform: translate3d(0, -1%, 0);
  }
  90% {
    transform: translate3d(0, 1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInDown {
  -webkit-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u--fadeIn {
  -webkit-animation: fadeIn 1s ease-in;
  -moz-animation: fadeIn 1s ease-in;
  -o-animation: fadeIn 1s ease-in;
  animation: fadeIn 1s ease-in;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInLeft {
  -webkit-animation: fadeInLeft 1s ease-in;
  -moz-animation: fadeInLeft 1s ease-in;
  -o-animation: fadeInLeft 1s ease-in;
  animation: fadeInLeft 1s ease-in;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInRight {
  -webkit-animation: fadeInRight 1s ease-in;
  -moz-animation: fadeInRight 1s ease-in;
  -o-animation: fadeInRight 1s ease-in;
  animation: fadeInRight 1s ease-in;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInUp {
  -webkit-animation: fadeInUp 1s ease-in;
  -moz-animation: fadeInUp 1s ease-in;
  -o-animation: fadeInUp 1s ease-in;
  animation: fadeInUp 1s ease-in;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInDown {
  -webkit-animation: fadeInDown 1s ease-in;
  -moz-animation: fadeInDown 1s ease-in;
  -o-animation: fadeInDown 1s ease-in;
  animation: fadeInDown 1s ease-in;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.u--fadeOut {
  -webkit-animation: fadeOut 1s ease-out;
  -moz-animation: fadeOut 1s ease-out;
  -o-animation: fadeOut 1s ease-out;
  animation: fadeOut 1s ease-out;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutLeft {
  -webkit-animation: fadeOutLeft 1s ease-out;
  -moz-animation: fadeOutLeft 1s ease-out;
  -o-animation: fadeOutLeft 1s ease-out;
  animation: fadeOutLeft 1s ease-out;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutRight {
  -webkit-animation: fadeOutRight 1s ease-out;
  -moz-animation: fadeOutRight 1s ease-out;
  -o-animation: fadeOutRight 1s ease-out;
  animation: fadeOutRight 1s ease-out;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutUp {
  -webkit-animation: fadeOutUp 1s ease-out;
  -moz-animation: fadeOutUp 1s ease-out;
  -o-animation: fadeOutUp 1s ease-out;
  animation: fadeOutUp 1s ease-out;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutDown {
  -webkit-animation: fadeOutDown 1s ease-out;
  -moz-animation: fadeOutDown 1s ease-out;
  -o-animation: fadeOutDown 1s ease-out;
  animation: fadeOutDown 1s ease-out;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@keyframes flip {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, -180deg);
  }
}
.u--flip {
  -webkit-animation: flip 2s ease-out;
  -moz-animation: flip 2s ease-out;
  -o-animation: flip 2s ease-out;
  animation: flip 2s ease-out;
}

@-webkit-keyframes flipX {
  0% {
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-moz-keyframes flipX {
  0% {
    -moz-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-o-keyframes flipX {
  0% {
    -o-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@keyframes flipX {
  0% {
    transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
}
.u--flipX {
  -webkit-animation: flipX 2s ease-in;
  -moz-animation: flipX 2s ease-in;
  -o-animation: flipX 2s ease-in;
  animation: flipX 2s ease-in;
}

@-webkit-keyframes flipY {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-moz-keyframes flipY {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-o-keyframes flipY {
  0% {
    -o-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes flipY {
  0% {
    transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
.u--flipY {
  -webkit-animation: flipY 2s ease-in;
  -moz-animation: flipY 2s ease-in;
  -o-animation: flipY 2s ease-in;
  animation: flipY 2s ease-in;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    transform: none;
  }
}
.u--rotate {
  -webkit-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: rotate 1s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpLeft {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpLeft {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpLeft {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpLeft {
  -webkit-animation: rotateUpLeft 1s;
  -moz-animation: rotateUpLeft 1s;
  -o-animation: rotateUpLeft 1s;
  animation: rotateUpLeft 1s;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateUpRight {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpRight {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpRight {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpRight {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpRight {
  -webkit-animation: rotateUpRight 1s;
  -moz-animation: rotateUpRight 1s;
  -o-animation: rotateUpRight 1s;
  animation: rotateUpRight 1s;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownLeft {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownLeft {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownLeft {
  -webkit-animation: rotateDownLeft 1s;
  -moz-animation: rotateDownLeft 1s;
  -o-animation: rotateDownLeft 1s;
  animation: rotateDownLeft 1s;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes rotateDownRight {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownRight {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownRight {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownRight {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownRight {
  -webkit-animation: rotateDownRight 1s;
  -moz-animation: rotateDownRight 1s;
  -o-animation: rotateDownRight 1s;
  animation: rotateDownRight 1s;
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translate3d(0, 100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideUp {
  0% {
    -o-transform: translate3d(0, 100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideUp {
  -webkit-animation: slideUp 1s;
  -moz-animation: slideUp 1s;
  -o-animation: slideUp 1s;
  animation: slideUp 1s;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translate3d(0, -100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideDown {
  0% {
    -o-transform: translate3d(0, -100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideDown {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideDown {
  -webkit-animation: slideDown 1s;
  -moz-animation: slideDown 1s;
  -o-animation: slideDown 1s;
  animation: slideDown 1s;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideLeft {
  0% {
    -o-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideLeft {
  -webkit-animation: slideLeft 1s;
  -moz-animation: slideLeft 1s;
  -o-animation: slideLeft 1s;
  animation: slideLeft 1s;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideRight {
  0% {
    -moz-transform: translate3d(100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideRight {
  0% {
    -o-transform: translate3d(100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideRight {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideRight {
  -webkit-animation: slideRight 1s;
  -moz-animation: slideRight 1s;
  -o-animation: slideRight 1s;
  animation: slideRight 1s;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes zoomIn {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes zoomIn {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.u--zoomIn {
  -webkit-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInDown {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInDown {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInDown {
  -webkit-animation: zoomInDown 1s;
  -moz-animation: zoomInDown 1s;
  -o-animation: zoomInDown 1s;
  animation: zoomInDown 1s;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInUp {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInUp {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInUp {
  -webkit-animation: zoomInUp 1s;
  -moz-animation: zoomInUp 1s;
  -o-animation: zoomInUp 1s;
  animation: zoomInUp 1s;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.u--zoomOut {
  -webkit-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutDown {
  -webkit-animation: zoomOutDown 1s;
  -moz-animation: zoomOutDown 1s;
  -o-animation: zoomOutDown 1s;
  animation: zoomOutDown 1s;
}

@-webkit-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutUp {
  -webkit-animation: zoomOutUp 1s;
  -moz-animation: zoomOutUp 1s;
  -o-animation: zoomOutUp 1s;
  animation: zoomOutUp 1s;
}

/* Bounce Zoom Fade In */
@-webkit-keyframes fadeInBounceZoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes fadeInBounceZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-o-keyframes fadeInBounceZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInBounceZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
img:not(.img) {
  opacity: 0;
}
img:not(.img).animate {
  animation-name: fadeInBounceZoom;
  animation-fill-mode: forwards;
  animation-duration: 0.7s;
  animation-delay: 0.1s;
}

/*
img {
    animation: transform 0.3s ease-in-out;
    &:hover {
        animation: imgFlash .6s ease-in-out!important;
    }
}

@keyframes imgFlash {
    0%   { transform: scale(1); filter: brightness(100%); }
    25%  { transform: scale(1.02); filter: brightness(100%); }
    50%  { transform: scale(0.98); filter: brightness(100%); }
    75%  { transform: scale(1.01); filter: brightness(100%); }
    100% { transform: scale(1); filter: brightness(100%); }
}
*/
.btn:hover {
  transform: translateY(-3px) scale(1.05);
}
.btn:active {
  transform: translateY(-1px) scale(1.02);
}

/*###########################  TITRES  ###########################*/
h1 {
  opacity: 0;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}

h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, a {
  opacity: 0;
}
h2.animate, h3.animate, h4.animate, h5.animate, h6.animate, .h1.animate, .h2.animate, .h3.animate, .h4.animate, .h5.animate, .h6.animate, a.animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}

ul:not(.mod-header):not(.nav):not(.dropdown-menu) li {
  opacity: 0;
}
ul:not(.mod-header):not(.nav):not(.dropdown-menu) li.animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}

p:not(.line-header p) {
  opacity: 0;
}
p:not(.line-header p).animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}

img:not(.line-header img):not(.news-thumbnail) {
  opacity: 0;
}
img:not(.line-header img):not(.news-thumbnail).animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}

/*########################### CANCEL ANIMATION  ###########################*/
/** pop-up **/
.modal h2, .modal h3, .modal h4, .modal h5, .modal h6, .modal p, .modal .h1, .modal .h2, .modal .h3, .modal .h4, .modal .h5, .modal .h6 {
  opacity: 1;
  animation: none;
}

/** Blogue **/
.prebuilt-articles-multiples-col3 h1, .prebuilt-articles-multiples-col3 h2, .prebuilt-articles-multiples-col3 h3, .prebuilt-articles-multiples-col3 h4, .prebuilt-articles-multiples-col3 h5, .prebuilt-articles-multiples-col3 h6, .prebuilt-articles-multiples-col3 ul, .prebuilt-articles-multiples-col3 li, .prebuilt-articles-multiples-col3 p, .prebuilt-articles-multiples-col3 .h1, .prebuilt-articles-multiples-col3 .h2, .prebuilt-articles-multiples-col3 .h3, .prebuilt-articles-multiples-col3 .h4, .prebuilt-articles-multiples-col3 .h5, .prebuilt-articles-multiples-col3 .h6, .prebuilt-articles-multiples-col3 img {
  opacity: 1 !important;
}

/** Événement **/
.line-programmation h1, .line-programmation h2, .line-programmation h3, .line-programmation h4, .line-programmation h5, .line-programmation h6, .line-programmation ul, .line-programmation li, .line-programmation p, .line-programmation .h1, .line-programmation .h2, .line-programmation .h3, .line-programmation .h4, .line-programmation .h5, .line-programmation .h6, .line-programmation img {
  opacity: 1 !important;
}

/** Membre **/
.zone-member h1, .zone-member h2, .zone-member h3, .zone-member h4, .zone-member h5, .zone-member h6, .zone-member ul, .zone-member li, .zone-member p, .zone-member .h1, .zone-member .h2, .zone-member .h3, .zone-member .h4, .zone-member .h5, .zone-member .h6, .zone-member img {
  opacity: 1 !important;
}

/** Politique de consentement / Cookies**/
.cookie-consent-modal h1, .cookie-consent-modal h2, .cookie-consent-modal h3, .cookie-consent-modal h4, .cookie-consent-modal h5, .cookie-consent-modal h6, .cookie-consent-modal ul, .cookie-consent-modal li, .cookie-consent-modal p, .cookie-consent-modal .h1, .cookie-consent-modal .h2, .cookie-consent-modal .h3, .cookie-consent-modal .h4, .cookie-consent-modal .h5, .cookie-consent-modal .h6, .cookie-consent-modal img, .cookie-modal h1, .cookie-modal h2, .cookie-modal h3, .cookie-modal h4, .cookie-modal h5, .cookie-modal h6, .cookie-modal ul, .cookie-modal li, .cookie-modal p, .cookie-modal .h1, .cookie-modal .h2, .cookie-modal .h3, .cookie-modal .h4, .cookie-modal .h5, .cookie-modal .h6, .cookie-modal img {
  opacity: 1 !important;
}

/** Recherche **/
.line-recherche h1, .line-recherche h2, .line-recherche h3, .line-recherche h4, .line-recherche h5, .line-recherche h6, .line-recherche ul, .line-recherche li, .line-recherche p, .line-recherche a, .line-recherche .h1, .line-recherche .h2, .line-recherche .h3, .line-recherche .h4, .line-recherche .h5, .line-recherche .h6, .line-recherche img {
  opacity: 1 !important;
}

.line-header .mod-header-container {
  animation-name: slide-down-header;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-header .container-fluid > .row > div:nth-child(1) .content {
  animation-name: slide-down-header;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-header .container-fluid > .row > div:nth-child(1) .content .logo-home.animate {
  animation-name: logo-header !important;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-container {
  animation-name: slide-down-header;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

/*@import "elements/cancel-animation.scss";*/
.demo-title .container .row .zone-html .content {
  padding: 64px 0 32px 0;
}
.demo-title .container .row .zone-html .content h2 {
  color: inherit;
  font-size: 48px;
  text-align: center;
}

.line-anim-test .zone-html .content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 50px;
  padding-bottom: 50px;
}
.line-anim-test .zone-html .content img:nth-child(1):hover {
  -webkit-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(2):hover {
  -webkit-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(3):hover {
  -webkit-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(4):hover {
  -webkit-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/*# sourceMappingURL=main.css.map */
