@charset "UTF-8";
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&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 */
/*
$xlargepadding: 160px;
$largepadding: 120px;
$padding: 80px;
$smallpadding: 40px;
$xsmallpadding: 20px;

$mobilexlargepadding: 80px;
$mobilelargepadding: 60px;
$mobilepadding: 30px;
$mobilesmallpadding: 20px;
$mobilexsmallpadding: 10px;
*/
/* PADDINGS FORM ADHESION/INSCRIPTION */
/*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;}
    }
}*/
/* 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 */
@media (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1152px;
  }
}
.container {
  /*
  @include min-custom(1500px) {
      width: $xlg-container;
  }
  */
}

/* All titles */
/* Replace URL if empty 
- Need to cange the url image to the client media
- Need to replace width and height
*/
/* 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 */
/********************************************************************/
/* 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 */
/********************************************************************/
.pt-no {
  padding-top: 0 !important;
}

.pb-no {
  padding-bottom: 0 !important;
}

@media (min-width: 992px) {
  .p-xs {
    padding: 20px 0 !important;
  }
}
@media (max-width: 991px) {
  .p-xs {
    padding: 10px 0 !important;
  }
}

@media (min-width: 992px) {
  .pt-xs {
    padding-top: 20px !important;
  }
}
@media (max-width: 991px) {
  .pt-xs {
    padding-top: 10px !important;
  }
}

@media (min-width: 992px) {
  .pb-xs {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 991px) {
  .pb-xs {
    padding-bottom: 10px !important;
  }
}

@media (min-width: 992px) {
  .p-sm {
    padding: 40px 0 !important;
  }
}
@media (max-width: 991px) {
  .p-sm {
    padding: 20px 0 !important;
  }
}

@media (min-width: 992px) {
  .pt-sm {
    padding-top: 40px !important;
  }
}
@media (max-width: 991px) {
  .pt-sm {
    padding-top: 20px !important;
  }
}

@media (min-width: 992px) {
  .pb-sm {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 991px) {
  .pb-sm {
    padding-bottom: 20px !important;
  }
}

@media (min-width: 992px) {
  .p-md {
    padding: 60px 0 !important;
  }
}
@media (max-width: 991px) {
  .p-md {
    padding: 30px 0 !important;
  }
}

@media (min-width: 992px) {
  .pt-md {
    padding-top: 60px !important;
  }
}
@media (max-width: 991px) {
  .pt-md {
    padding-top: 30px !important;
  }
}

@media (min-width: 992px) {
  .pb-md {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 991px) {
  .pb-md {
    padding-bottom: 30px !important;
  }
}

@media (min-width: 992px) {
  .p-lg {
    padding: 80px 0 !important;
  }
}
@media (max-width: 991px) {
  .p-lg {
    padding: 40px 0 !important;
  }
}

@media (min-width: 992px) {
  .pt-lg {
    padding-top: 80px !important;
  }
}
@media (max-width: 991px) {
  .pt-lg {
    padding-top: 40px !important;
  }
}

@media (min-width: 992px) {
  .pb-lg {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .pb-lg {
    padding-bottom: 40px !important;
  }
}

@media (min-width: 992px) {
  .p-xl {
    padding: 100px 0 !important;
  }
}
@media (max-width: 991px) {
  .p-xl {
    padding: 60px 0 !important;
  }
}

@media (min-width: 992px) {
  .pt-xl {
    padding-top: 100px !important;
  }
}
@media (max-width: 991px) {
  .pt-xl {
    padding-top: 60px !important;
  }
}

@media (min-width: 992px) {
  .pb-xl {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 991px) {
  .pb-xl {
    padding-bottom: 60px !important;
  }
}

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

.xsmallpadding           { padding:         $xsmallpadding 0!important; }
.xsmallpaddingtop        { padding-top:     $xsmallpadding!important;   }
.xsmallpaddingbottom     { padding-bottom:  $xsmallpadding!important;   }
.smallpadding            { padding:         $smallpadding 0!important; }
.smallpaddingtop         { padding-top:     $smallpadding!important;   }
.smallpaddingbottom      { padding-bottom:  $smallpadding!important;   }
.padding            	 { padding:         $padding 0!important; }
.paddingtop         	 { padding-top:     $padding!important;   }
.paddingbottom      	 { padding-bottom:  $padding!important;   }
.largepadding            { padding:         $largepadding 0!important; }
.largepaddingtop         { padding-top:     $largepadding!important;   }
.largepaddingbottom      { padding-bottom:  $largepadding!important;   }
.xlargepadding           { padding:         $xlargepadding 0!important; }
.xlargepaddingtop        { padding-top:     $xlargepadding!important;   }
.xlargepaddingbottom     { padding-bottom:  $xlargepadding!important;   }

@include max-sm {
	.xsmallpadding          { padding:         $mobilexsmallpadding 0;}
	.xsmallpaddingtop       { padding-top:     $mobilexsmallpadding;  }
	.xsmallpaddingbottom    { padding-bottom:  $mobilexsmallpadding;  }
	.smallpadding           { padding:         $mobilesmallpadding 0; }
	.smallpaddingtop        { padding-top:     $mobilesmallpadding;   }
	.smallpaddingbottom     { padding-bottom:  $mobilesmallpadding;   }
	.padding            	{ padding:         $mobilepadding 0; }
	.paddingtop         	{ padding-top:     $mobilepadding;   }
	.paddingbottom      	{ padding-bottom:  $mobilepadding;   }
	.largepadding           { padding:         $mobilelargepadding 0; }
	.largepaddingtop        { padding-top:     $mobilelargepadding;   }
	.largepaddingbottom     { padding-bottom:  $mobilelargepadding;   }
	.xlargepadding          { padding:         $mobilexlargepadding 0;}
	.xlargepaddingtop       { padding-top:     $mobilexlargepadding;  }
	.xlargepaddingbottom    { padding-bottom:  $mobilexlargepadding;  }
}
*/
/********************************************************************/
/* 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;
  }
}

.container-element {
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: auto 100%;
  grid-template-areas: "c a" "c b";
}
.container-element .element-1 {
  grid-area: a;
}
.container-element .element-2 {
  grid-area: b;
}
.container-element .element-3 {
  grid-area: c;
}

/********************************************************************/
/* TITLES */
/********************************************************************/
.whitetitles h1, .whitetitles h2, .whitetitles h3, .whitetitles h4, .whitetitles h5, .whitetitles h6, .whitetitles p, .whitetitles small, .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 small, .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;
}

.h1 {
  background: linear-gradient(to bottom, #194c33, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 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: 60px 40px;
}
.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;
}

/* 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;
}

/* ################################# */
body {
  font-family: "clother", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

/*########################### TEXT SELECTION  ###########################*/
::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #393575;
}

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

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, small, .h1, .h2, .h3, .h4, .h5, .h6, .small {
  font-family: "clother", sans-serif;
  margin-bottom: 15px;
  width: 100%;
  color: #393575;
  text-wrap: pretty;
}
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, small:hover, .h1:hover, .h2:hover, .h3:hover, .h4:hover, .h5:hover, .h6:hover, .small: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, small a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover, .small a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br, small br, .h1 br, .h2 br, .h3 br, .h4 br, .h5 br, .h6 br, .small br {
    display: none !important;
  }
}
@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, p, small, .h1, .h2, .h3, .h4, .h5, .h6, .small {
    word-break: keep-all;
  }
}

/** TEXT COLOR **/
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white small, .text-white ul, .text-white li, .text-white .h1, .text-white .h2, .text-white .h3, .text-white .h4, .text-white .h5, .text-white .h6, .text-white .small {
  color: #fff !important;
}

h1, .h1 {
  font-size: 66px;
  line-height: 76px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 42px;
    line-height: 44px;
  }
}

h2, .h2 {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

h3, .h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

h4, .h4 {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
h5, .h5 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  text-transform: initial;
}
h6, .h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.text_default {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.p-small {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
small, .small {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: initial;
  font-family: "clother", sans-serif;
}
@media (max-width: 767px) {
  small, .small {
    font-size: 15px;
    line-height: 22px;
  }
}

hr {
  border-color: rgba(244, 216, 162, 0.35);
}

a:not(.btn):not(.switch-language):not(.news-title a):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(.ui-state-default) {
  color: #393575;
  word-break: break-word;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: #F4D8A2;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
a:not(.btn):not(.switch-language):not(.news-title a):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(.ui-state-default):hover, a:not(.btn):not(.switch-language):not(.news-title a):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(.ui-state-default):active, a:not(.btn):not(.switch-language):not(.news-title a):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(.ui-state-default):focus {
  color: #393575;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #F4D8A2;
}

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: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
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 {
  margin-bottom: 15px;
}
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: #393575;
}
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;
}

/*###########################  BOUTONS  ###########################*/
/* Calendar event BTN  */
.calendar-link-content {
  z-index: 10;
}
.calendar-link-content .v-btn {
  color: #393575 !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: #393575 !important;
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
  text-decoration: underline !important;
  text-decoration-color: #F4D8A2 !important;
}
.calendar-link-content .v-btn:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/%2B_calendar%201.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: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.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, input.btn.btn-primary, a.btn.btn-primary {
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus {
  background-color: #393575;
  border: 1px solid #F4D8A2;
  color: #fff;
}
.btn.btn-primary-clear, input.btn.btn-primary-clear, a.btn.btn-primary-clear {
  background-color: transparent;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #fff;
}
.btn.btn-primary-clear:hover, .btn.btn-primary-clear:active, .btn.btn-primary-clear:focus, input.btn.btn-primary-clear:hover, input.btn.btn-primary-clear:active, input.btn.btn-primary-clear:focus, a.btn.btn-primary-clear:hover, a.btn.btn-primary-clear:active, a.btn.btn-primary-clear:focus {
  background-color: #F4D8A2;
  border: 1px solid #F4D8A2;
  color: #393575 !important;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: #F4D8A2;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #F4D8A2;
}
.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: #393575;
  border: 1px solid #393575;
  color: #fff;
}
.btn.btn-secondary-clear, input.btn.btn-secondary-clear, a.btn.btn-secondary-clear {
  background-color: #fff;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #fff;
}
.btn.btn-secondary-clear:hover, .btn.btn-secondary-clear:active, .btn.btn-secondary-clear:focus, input.btn.btn-secondary-clear:hover, input.btn.btn-secondary-clear:active, input.btn.btn-secondary-clear:focus, a.btn.btn-secondary-clear:hover, a.btn.btn-secondary-clear:active, a.btn.btn-secondary-clear:focus {
  background-color: #F4D8A2;
  border: 1px solid #F4D8A2;
  color: #393575;
}
.btn.btn-link, input.btn.btn-link, a.btn.btn-link {
  background-color: transparent;
  color: #393575;
  padding: 15px 0;
  transition: all 150ms;
  border: none;
  border-bottom: 1px solid #393575;
  border-radius: 0;
}
.btn.btn-link:hover, .btn.btn-link:active, .btn.btn-link:focus, input.btn.btn-link:hover, input.btn.btn-link:active, input.btn.btn-link:focus, a.btn.btn-link:hover, a.btn.btn-link:active, a.btn.btn-link:focus {
  background-color: transparent;
  color: #393575;
  border: none;
  border-bottom: 1px solid #F4D8A2;
}
.btn.btn-link-clear, input.btn.btn-link-clear, a.btn.btn-link-clear {
  background-color: transparent;
  color: #fff;
  padding: 15px 0;
  transition: all 150ms;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
}
.btn.btn-link-clear:hover, .btn.btn-link-clear:active, .btn.btn-link-clear:focus, input.btn.btn-link-clear:hover, input.btn.btn-link-clear:active, input.btn.btn-link-clear:focus, a.btn.btn-link-clear:hover, a.btn.btn-link-clear:active, a.btn.btn-link-clear:focus {
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #F4D8A2;
}
.btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #393575;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  background-repeat: no-repeat;
  right: -13px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 5px;
  height: 8px;
  animation-name: none;
}
.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: transparent !important;
  text-decoration: none;
  color: #F4D8A2;
}
.btn.btn-arrow:hover:after, .btn.btn-arrow:focus:after, input.btn.btn-arrow:hover:after, input.btn.btn-arrow:focus:after, a.btn.btn-arrow:hover:after, a.btn.btn-arrow:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.btn.btn-back, input.btn.btn-back, a.btn.btn-back {
  background-color: transparent !important;
  border: none !important;
  color: #393575 !important;
  margin-right: 32px !important;
  text-decoration: underline !important;
  text-transform: inherit !important;
}
.btn.btn-back:hover, .btn.btn-back:focus, .btn.btn-back:active, input.btn.btn-back:hover, input.btn.btn-back:focus, input.btn.btn-back:active, a.btn.btn-back:hover, a.btn.btn-back:focus, a.btn.btn-back:active {
  background: transparent !important;
  color: #FCC0C0 !important;
  border: none !important;
}
.btn.btn-back, input.btn.btn-back, a.btn.btn-back {
  /*
  font-size:16px;
  line-height:24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0!important;
  border:none!important;
  padding: 10px 0 10px 0;
  color:$primary;
  text-transform: inherit;
  font-weight:500;
  background-color: transparent;
  transition: all 300ms;
  position: relative;
  &:before {
  	content:"";
  	background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  	background-repeat: no-repeat;
  	left: -13px;
  	margin-top: -2px;
  	position: relative;
  	display: inline-block;
  	width:5px;
  	height:8px;
  	animation-name:none;
  	transform: rotate(180deg);
  }
  &:hover, &:focus {
  	background-color: transparent!important;
  	text-decoration: none;
  	color:$secondary;
  	&:before {
  		-webkit-animation-duration: 1s;
  		animation-duration: 1s;
  		-webkit-animation-fill-mode: both;
  		animation-fill-mode: both;
  		-webkit-animation-timing-function: ease-in-out;
  		animation-timing-function: ease-in-out;
  		animation-iteration-count: infinite;
  		-webkit-animation-iteration-count: infinite;
  		animation-name: bounce_arrow;
  		-moz-animation-name: bounce_arrow;
  	}
  }
  	*/
}
.btn.btn-download, input.btn.btn-download, a.btn.btn-download {
  position: relative;
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
  padding-left: 50px;
}
.btn.btn-download:before, input.btn.btn-download:before, a.btn.btn-download:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/download-arrow.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 22px;
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.btn.btn-download:hover, .btn.btn-download:focus, .btn.btn-download:active, input.btn.btn-download:hover, input.btn.btn-download:focus, input.btn.btn-download:active, a.btn.btn-download:hover, a.btn.btn-download:focus, a.btn.btn-download:active {
  background: #F4D8A2;
  border: 1px solid #F4D8A2;
}
.btn.btn-default, input.btn.btn-default, a.btn.btn-default {
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
}
.btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus {
  background-color: #393575;
  border: 1px solid #F4D8A2;
  color: #fff;
}

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

.back-to-list {
  background-color: transparent;
  color: #393575;
  padding: 15px 0;
  transition: all 150ms;
  border: none;
  border-bottom: 1px solid #393575;
  border-radius: 0;
}
.back-to-list:hover, .back-to-list:active, .back-to-list:focus {
  background-color: transparent;
  color: #393575;
  border: none;
  border-bottom: 1px solid #F4D8A2;
}

/*###########################  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: #393575;
  -webkit-box-shadow: 0 0 0 rgb(5, 5, 5) 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 h2.section-title,
form.search-form h2.section-title {
  margin-top: 40px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  form.form-horizontal h2.section-title,
  form.search-form h2.section-title {
    font-size: 24px;
    line-height: 28px;
  }
}
form.form-horizontal,
form.search-form {
  /*Fix col-md-12 full width qui affiche a moitié - width égale*/
}
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;
}
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: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 0;
  color: #393575;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Required Red Star Styles */
}
form.form-horizontal .form-group span.control-label--required,
form.search-form .form-group span.control-label--required {
  padding-left: 2px;
  color: #393575 !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Input Global Style */
}
form.form-horizontal .form-group input:not(.btn):not([type=file]), form.form-horizontal .form-group select, form.form-horizontal .form-group textarea,
form.search-form .form-group input:not(.btn):not([type=file]),
form.search-form .form-group select,
form.search-form .form-group textarea {
  font-size: 18px;
  background-color: transparent !important;
  color: #393575;
  padding: 15px !important;
  border-radius: 5px !important;
}
form.form-horizontal .form-group input[type=checkbox],
form.search-form .form-group input[type=checkbox] {
  padding: 4px !important;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 0px;
}
form.form-horizontal .form-group input[type=radio],
form.search-form .form-group input[type=radio] {
  padding: 4px !important;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 25px;
}
form.form-horizontal .form-group .payment_method label,
form.search-form .form-group .payment_method label {
  position: relative;
}
form.form-horizontal .form-group .payment_method label input[type=radio],
form.search-form .form-group .payment_method label input[type=radio] {
  top: 0;
}
form.form-horizontal .form-group .payment_method input[type=radio],
form.search-form .form-group .payment_method input[type=radio] {
  left: initial;
}
form.form-horizontal .form-group .input-file,
form.search-form .form-group .input-file {
  width: 100%;
}
form.form-horizontal .form-group .input-file input[type=file],
form.search-form .form-group .input-file input[type=file] {
  border-bottom: 1px solid #000;
  border-radius: 0;
}
form.form-horizontal .form-group .radio label, form.form-horizontal .form-group .checkbox label, form.form-horizontal .form-group .input-radio > div label,
form.search-form .form-group .radio label,
form.search-form .form-group .checkbox label,
form.search-form .form-group .input-radio > div label {
  padding-left: 28px;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Direct input overrides */
}
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 {
  font-size: 18px;
  border: 1px solid #D9E8F3 !important;
  color: #393575;
  padding: 12px !important;
  height: 51px !important;
  border-radius: 5px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  padding: 15px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  background: #D9E8F3 url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/chevron-down-Icon.svg) no-repeat right 20px center !important;
  -webkit-border-radius: 51px !important;
  border-radius: 5px !important;
  background-size: 24px 24px;
}
form.form-horizontal .form-group select option,
form.search-form .form-group select option {
  color: #393575 !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,
form.search-form .form-group {
  /*Category Dropdown Styles*/
}
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: #D9E8F3 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.search-form .form-group {
  /*Keywords Dropdown Styles*/
}
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;
  max-width: 528px;
  border: 1px solid #F4D8A2 !important;
  background: #FFFFFF url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/chevron-down-Icon.svg) no-repeat right 20px center !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: #393575 !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,
form.search-form .form-group {
  /*Error Text Style*/
}
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,
form.search-form {
  /*Static Text in forms*/
}
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: 30px;
  text-align: center;
}
form.form-horizontal .crm-footer-frame button,
form.search-form .crm-footer-frame button {
  background-color: #F4D8A2;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #F4D8A2;
}
form.form-horizontal .crm-footer-frame button:hover, form.form-horizontal .crm-footer-frame button:active, form.form-horizontal .crm-footer-frame button:focus,
form.search-form .crm-footer-frame button:hover,
form.search-form .crm-footer-frame button:active,
form.search-form .crm-footer-frame button:focus {
  background-color: #393575;
  border: 1px solid #393575;
  color: #fff;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(244, 216, 162, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #F4D8A2;
}

.overrideformtitle .zone-crm h1 {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 767px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
.overrideformtitle .zone-crm h1 {
  text-align: center;
}

#form-formbuilder .help-block {
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
  color: #393575;
  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: transparent;
}
@media (max-width: 767px) {
  .zone-member #login_content_box {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.zone-member #member_adhesion_form {
  background-color: #F7F7F9;
}

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

@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;
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper a,
.zone-member .form-withProgress__wrapper a {
  color: #393575 !important;
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Formulaire*/
}
.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: 19px;
  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,
.zone-member .form-withProgress__wrapper {
  /*Récapitulatif*/
}
.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: 19px;
  font-weight: 800;
  text-transform: initial;
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  color: #393575;
}
@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,
.zone-member .form-withProgress__wrapper {
  /*Total box*/
}
.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: #393575 !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: #393575 !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,
.zone-member .form-withProgress__wrapper {
  /*Bottom Nav*/
}
.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 {
  margin-left: 15px !important;
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.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 {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary {
  margin-left: 15px !important;
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link {
  margin-left: 15px !important;
  padding: 20px 0 !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: none !important;
  border-bottom: 1px solid #393575 !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-link:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  color: #393575 !important;
  border-bottom: 1px solid #F4D8A2 !important;
}
.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 {
  padding: 20px 0 !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: none !important;
  border-bottom: 1px solid #393575 !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  color: #393575 !important;
  border-bottom: 1px solid #F4D8A2 !important;
}
.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;
                  &:hover, &:focus, &:active {
                      background: transparent;
                      color: $third;
                      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: #FCC0C0;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !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 {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}

.modal .modal-dialog .modal-content .modal-footer button {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !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 {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}

/*ETAPES INSCRIPTION NOUVEAU MEMBRE*/
/*Étapes 1 - Type d'adhesion*/
.zone-member {
  padding-top: 90px;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form {
  margin-top: 0px;
}
@media (max-width: 991px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0;
  }
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
  font-family: "clother", sans-serif;
  padding-bottom: 16px;
}
.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;
}
.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: 19px;
  font-weight: 800;
  text-transform: initial;
}
.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: 19px;
  font-weight: 800;
  text-transform: initial;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-date {
  font-size: 14px;
  color: #000;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-description {
  padding-left: 20px;
  font-size: 14px;
  color: #393575;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-description p, .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-description ul li {
  font-size: 14px !important;
  color: #000 !important;
  font-weight: 400 !important;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .memberships_options h4 {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
  background: #F4D8A2;
  border-bottom: none;
  display: flex;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
    padding: 5px;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .badge {
  order: 1;
  flex: 1;
}
.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) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group {
    flex: 0 0 70%;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group label {
  font-weight: 600;
}
.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) {
  .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) {
  .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%;
  }
}
.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) {
  .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;
  }
}
.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) {
  .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;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom:first-child {
  margin-top: 20px;
}
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary {
  margin-left: 25px;
}

/*Étapes 2 - information de l'adherent*/
.zone-member {
  padding-top: 90px;
}
.zone-member .form-withProgress__wrapper .form-horizontal .section .row .form-group input.form-control {
  background-color: #f7f7f7 !important;
}
/*Étapes 3 - Résumé Informations*/
.zone-member .form-withProgress__wrapper h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion {
  padding-left: 0px;
  padding-right: 0px;
}
.zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion span {
  color: #393575;
}
.zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper fieldset legend {
    font-size: 24px;
    line-height: 28px;
  }
}
.zone-member .form-withProgress__wrapper fieldset legend {
  color: #393575 !important;
  padding-top: 32px !important;
}
.zone-member .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.zone-member .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section {
  background: #393575;
}
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  color: #fff !important;
}
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
  color: #fff !important;
}

/*É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 .form-withProgress__wrapper .registration-event-bloc {
  /*padding: 32px 0;*/
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  background-color: #F7F7F9;
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !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 {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  /*
  padding: 15px !important;
  color: $primary !important;
  font-weight: 500 !important;
  border: 2px solid $secondary !important;
  */
}
.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: $clrWhite !important;
  text-decoration: none !important;
  border: 2px solid $secondary !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: 19px;
  font-weight: 800;
  text-transform: initial;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend {
  padding-top: 32px;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
/*Étapes - Résumé Informations*/
.step-resume .field-object-temp h2 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #393575;
}
.step-resume .field-object-temp .object-top-action input {
  margin-right: 16px;
}
.step-resume .field-object-temp .object-main-title {
  margin-bottom: 64px;
}
.step-resume .field-object-temp .object-main-title h2 {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.step-resume .field-object-temp .field-object-next-element, .step-resume .field-object-temp .field-object-prev-element {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.step-resume .field-object-temp .field-object-next-element:hover, .step-resume .field-object-temp .field-object-next-element:active, .step-resume .field-object-temp .field-object-next-element:focus, .step-resume .field-object-temp .field-object-prev-element:hover, .step-resume .field-object-temp .field-object-prev-element:active, .step-resume .field-object-temp .field-object-prev-element:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.step-resume .field-object-temp .crm-entity__info-wrapper {
  border: 1px solid #DDDDDD;
}
.step-resume .field-object-temp .crm-entity__info-wrapper .section-title-toggle {
  display: none;
}
.step-resume .field-object-temp .list-group__wrapper .list-group__title {
  border: 1px solid #DDDDDD;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-resume .field-object-temp .object-form-action {
  margin-bottom: 32px;
}
.step-resume .field-object-temp .object-form-action a.btn {
  margin-top: 0 !important;
}

/*É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: $clrWhite !important;*/
}

/*###########################  TABLEAU  ###########################*/
/* basically le bottin de yapla */
.list-group__wrapper .list-group .list-group-item {
  color: #393575;
}
.list-group__wrapper .list-group .list-group-item span {
  color: #393575;
}
.list-group__wrapper .list-group .list-group-item.active {
  background-color: rgba(244, 216, 162, 0.25);
  border-color: #F4D8A2;
}

/*###########################  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(244, 216, 162, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "clother", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(244, 216, 162, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #393575;
  color: #F4D8A2;
}

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

/*###########################  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 */
  margin-bottom: 15px !important;
  border-bottom: none !important;
  border-radius: 10px !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: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.panel-news-accordion .panel-heading .panel-title {
  margin-bottom: 0;
  padding-right: 0px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title {
    font-size: 22px;
    line-height: 25px;
  }
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 30px 20px;
  padding-right: 100px;
  color: #fff;
  text-decoration: none;
  background: #393575;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a {
    padding-right: 50px;
  }
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "";
  display: block;
  position: absolute;
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_parcours/accordeon-minus.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 50px;
  height: 50px;
  right: 55px;
  top: 22%;
  transition: all 150ms;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a:after {
    right: 22px;
    background-size: contain;
    width: 40px;
    height: 40px;
  }
}
.panel-news-accordion .panel-heading .panel-title a.collapsed {
  padding-right: 100px;
  background: #fff;
  color: #393575;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a.collapsed {
    padding-right: 80px;
  }
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:after {
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_parcours/accordeon-plus.svg);
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a.collapsed:after {
    background-size: contain;
    width: 40px;
    height: 40px;
  }
}
.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 20px;
  margin-top: -10px;
}
.panel-news-accordion .panel-body .news-accordion-content {
  max-width: 70%;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-body .news-accordion-content {
    max-width: 100%;
  }
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body a {
  color: #393575 !important;
  text-decoration: underline !important;
  text-decoration-color: #F4D8A2 !important;
  text-decoration-thickness: 2px !important;
  text-decoration-inset: 3px !important;
}
.panel-news-accordion .panel-body a:hover {
  text-decoration-color: #393575 !important;
}
.panel-news-accordion .panel-body ul li a {
  color: #393575 !important;
  text-decoration: underline !important;
  text-decoration-color: #F4D8A2 !important;
  text-decoration-thickness: 2px !important;
  text-decoration-inset: 3px !important;
}
.panel-news-accordion .panel-body ul li a:hover {
  text-decoration-color: #393575 !important;
}
.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;
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
  position: relative;
}
table.accordeon tbody:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/plus-open.svg);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 150ms;
  cursor: pointer;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr td {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
table.accordeon tbody tr td h4, table.accordeon tbody tr td p {
  margin-bottom: 20px;
}
table.accordeon tbody tr td p:last-of-type {
  margin-bottom: 0;
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #FFFFFF;
  padding: 40px 20px 110px;
  position: relative;
  border-radius: 15px;
}
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 and opened content */
}
table.accordeon.active tbody:after {
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/minus-close.svg);
  background-repeat: no-repeat;
}
table.accordeon.active tbody tr:first-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 0;
}
table.accordeon.active tbody tr:last-child {
  padding: 20px 20px 110px;
  background-color: #FFFFFF;
}
table.accordeon.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}

.modal-backdrop.in {
  opacity: 0.5;
}

body:not(.modal-open) .modal {
  display: none;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-dialog {
  transform: none !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: #393575;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #F4D8A2;
}
.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: #F7F7F9 !important;
  color: #393575 !important;
  border: none;
}
#backgroundBox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  /*background: transparent url(../image/halftransparent.gif) repeat scroll 0 0;*/
}

.nav-pills {
  background-image: none;
}

.nav-progress {
  overflow: hidden;
}
.nav-progress li.disabled {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.nav-progress li.disabled a,
.nav-progress li.disabled a:hover,
.nav-progress li.disabled a:focus {
  font-family: "clother", sans-serif;
  color: #F4D8A2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-transform: none;
  text-align: center;
  position: absolute;
  float: none;
  margin-top: 110px;
  padding-top: 6px;
  width: 100%;
}
.nav-progress li.disabled a:before,
.nav-progress li.disabled a:hover:before,
.nav-progress li.disabled a:focus:before {
  content: "";
  position: absolute;
  top: -40px;
  left: calc(50% + 40px);
  right: 0;
  width: calc(100% - 80px);
  display: block;
  margin: auto;
  height: 2px;
  background-color: #F4D8A2 !important;
}
@media (max-width: 767px) {
  .nav-progress li.disabled a:before,
  .nav-progress li.disabled a:hover:before,
  .nav-progress li.disabled a:focus:before {
    display: none;
  }
}
.nav-progress li.disabled:before {
  float: none;
  width: 100%;
  text-align: center;
  font-size: 32px;
  line-height: 43px;
  font-weight: 700;
  border: none;
  color: white;
  background-color: #F4D8A2;
  padding: 5px;
  width: 57px;
  height: 57px;
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  /*opacity: 1;*/
}
.nav-progress li.disabled.active a {
  color: #393575;
}
.nav-progress li.disabled.active:before {
  color: #fff;
  background-color: #393575;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li a {
  color: #d5d6e0;
}
.nav-progress li.disabled.active ~ li:before {
  color: rgba(57, 53, 117, 0.4);
  background-color: #ADD1EA;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}
@media (max-width: 767px) {
  .nav-progress li.disabled:not(.active) {
    margin-left: -1000000px;
    position: absolute;
  }
}
.nav-progress li:last-child a:before {
  display: none;
}
.nav-progress li:last-child a:hover:before {
  display: none;
}

.line-banner {
  background: #393575;
  padding-top: 115px;
  padding-bottom: 115px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .line-banner {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .line-banner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.line-banner:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_acceuil/fleche-jaune-verticale.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 318px;
  height: 440px;
  position: absolute;
  top: 0;
  left: 75%;
  transform: translateY(-100%);
  animation: slideDownYellow 2s ease-out forwards;
  z-index: 5;
}
@media (max-width: 767px) {
  .line-banner:before {
    width: 105px;
    height: 153px;
    left: 83%;
  }
}
.line-banner.home {
  padding-top: 176px;
  padding-bottom: 225px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-banner.home {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .line-banner.home {
    padding-top: 35px !important;
    padding-bottom: 0 !important;
  }
}
.line-banner.home:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_acceuil/fleche-jaune-verticale.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 318px;
  height: 440px;
  position: absolute;
  top: 0;
  left: 52%;
  transform: translateY(-100%);
  animation: slideDownYellow 2s ease-out forwards;
}
@media (max-width: 991px) {
  .line-banner.home:before {
    width: 237px;
    height: 423px;
    top: 50%;
    left: 40%;
  }
}
@media (max-width: 767px) {
  .line-banner.home:before {
    width: 159px;
    height: 286px;
    top: 53%;
    left: 11%;
  }
}
.line-banner.home:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_acceuil/fleche-bleu-verticale.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 318px;
  height: 563px;
  position: absolute;
  bottom: 0;
  left: 75%;
  z-index: 1;
  transform: translateY(100%);
  animation: slideUpBlue 2s ease-out forwards;
}
@media (max-width: 991px) {
  .line-banner.home:after {
    width: 237px;
    height: 423px;
  }
}
@media (max-width: 767px) {
  .line-banner.home:after {
    width: 159px;
    height: 286px;
    z-index: 1;
    left: 70%;
  }
}
.line-banner.home .container .row > div .content {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .line-banner.home .container .row > div .content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .line-banner.home .container .row > div .content .hb-left-content {
    margin-bottom: 70px;
  }
}
.line-banner.home .container .row > div .content .hb-left-content p, .line-banner.home .container .row > div .content .hb-left-content h1 {
  color: #fff;
}
.line-banner.home .container .row > div .content .hb-left-content h1 {
  margin-bottom: 25px;
}
.line-banner.home .container .row > div .content .hb-left-content p {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .line-banner.home .container .row > div .content .hb-left-content p.flex-btns .btn-secondary-clear {
    margin-bottom: 0 !important;
  }
}
.line-banner.home .container .row > div .content .hb-left-content p.flex-btns .btn-primary-clear {
  color: #fff;
}
.line-banner.home .container .row > div .content .hb-right-content img {
  z-index: 5;
}
@media (min-width: 992px) {
  .line-banner.home .container .row > div .content .hb-right-content img {
    position: absolute;
    top: -160px;
    right: -10px;
  }
}
@media (max-width: 991px) {
  .line-banner.home .container .row > div .content .hb-right-content img {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .line-banner.home .container .row > div .content .hb-right-content img {
    max-width: 310px;
    position: relative;
  }
}
.line-banner.actu::before {
  display: none;
}
.line-banner.actu .container > .row > div .content {
  text-align: center;
}
.line-banner.actu .container > .row > div .content h5 {
  display: inline-block;
  padding: 10px 20px;
  background: #F4D8A2;
  border-radius: 40px;
  width: 130px;
}
.line-banner.actu .container > .row > div .content h1 {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.line-banner.actu .container > .row > div .content p#thedate {
  color: #fff;
  margin-top: 40px;
}
.line-banner .container > .row > div .content h1 {
  color: #fff;
}
.line-banner .container > .row > div .content h1 strong {
  color: #ADD1EA;
}
.line-banner .container > .row > div .content h3, .line-banner .container > .row > div .content h4 {
  color: #fff;
}
.line-banner .container > .row > div .content .text_default {
  margin-top: 40px;
  color: #fff;
}
.line-banner .container > .row > div .content .ressources-banner {
  text-align: center;
}
.line-banner .container > .row > div .content .ressources-banner p#ressource-title {
  display: inline-block;
  padding: 10px 20px;
  background: #F4D8A2;
  border-radius: 40px;
  width: 130px;
}
.line-banner .container > .row > div .content .ressources-banner p:last-of-type {
  color: #fff;
}
.line-banner .container > .row > div .content .ressources-banner.medias p#ressource-title {
  width: 160px;
}
.line-banner .container > .row > div .content .ressources-banner.medias h1 {
  margin-bottom: 40px;
}
.line-banner .container > .row > div .content .ressources-banner.medias p:last-of-type {
  border-bottom: 2px solid #F4D8A2;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@keyframes slideDownYellow {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUpBlue {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .line-header .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-header .container > .row .zone-header .header-ext-custom {
  margin-bottom: 0 !important;
}
.line-header .container > .row .zone-header .header-ext-custom ul li {
  margin-bottom: 0 !important;
}

body:not(.member--isConnected) #memberzone {
  display: none;
}
body.member--isConnected #memberzone {
  display: inline-block;
}

.line-header {
  padding: 0;
  height: auto;
  background-color: #F7F7F9;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
@media (max-width: 991px) {
  .line-header {
    /*
    height: 0;
    top: -100%;
    overflow: hidden;
    bottom: 100%;
    display: block;
    z-index: 99999999;
    */
  }
}
.line-header.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;
}
.line-header.opened .container .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger a {
  padding-right: 55px;
  position: relative;
}
.line-header.opened .container .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger a:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/X-menu.svg);
  background-repeat: no-repeat;
  width: 25px;
  height: 24px;
  position: absolute;
  top: 16px;
  right: 20px;
}
.line-header.opened .container .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M24.0416 20.5061L21.2132 23.3345L0.707099 2.82842L3.53553 -3.90353e-06L24.0416 20.5061Z' fill='%23FFFFFF'/%3E%3Cpath d='M2.82842 23.3345L-2.76051e-06 20.5061L20.5061 -9.29832e-06L23.3345 2.82842L2.82842 23.3345Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
.line-header .container .row-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  bottom: 6px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.line-header .container .row-fluid:after, .line-header .container .row-fluid:before {
  display: none;
}
.line-header .container .row-fluid > div {
  align-items: center;
  padding: 0;
}
.line-header .container .row-fluid > div.zone-html {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.line-header .container .row-fluid > div.zone-html .content {
  display: flex;
  /*margin-top: 14px;
  @include max-md {
  	margin-top: 24px;
  }
  */
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div.zone-html .content img {
    width: 140px !important;
  }
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext + .header-ext {
  margin-left: 20px;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom {
  order: 2;
  margin-right: 0px;
  margin-left: 20px;
  text-align: right;
  color: #393575;
}
@media (max-width: 991px) {
  .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom {
    display: none;
  }
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom ul {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  gap: 20px;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom ul li {
  font-size: 18px !important;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom ul li a {
  color: #393575 !important;
  text-decoration: none !important;
  transition: all 150ms smooth;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom ul li a:hover {
  color: #393575 !important;
  padding-bottom: 5px !important;
  border-bottom: 2px solid #F4D8A2 !important;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
  order: 1;
  margin-left: 20px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none !important;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
    display: none;
  }
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .member-greeting {
  font-size: 18px !important;
  color: #393575 !important;
  font-weight: 400 !important;
  text-transform: none !important;
  line-height: 15px !important;
  margin-right: 10px !important;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a {
  font-size: 18px !important;
  color: #393575 !important;
  font-weight: 400 !important;
  vertical-align: text-bottom !important;
  line-height: 15px !important;
  padding: 0;
  transition: all 150ms smooth;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a:hover, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a:focus, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a:active {
  color: #393575 !important;
  text-decoration: underline !important;
  text-decoration-color: #F4D8A2 !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 5px !important;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
  border-radius: 0 !important;
  border: none !important;
  margin-right: 0 !important;
  position: relative;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:hover {
  font-weight: 700 !important;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    white-space: normal !important;
  }
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  background-color: #393575;
  border: 1px solid #F4D8A2;
  color: #fff;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .separator {
  height: 4px;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-language {
  order: 3;
  margin-left: 0;
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-language {
    display: none;
  }
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger {
  order: 4;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger .menu-hamburger {
  overflow: hidden;
  width: auto;
  height: auto;
  margin-right: 0;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.5s;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger .menu-hamburger a {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger .menu-hamburger:hover, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger .menu-hamburger:hover span, .line-header .container .row-fluid > div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-hamburger .menu-hamburger:focus span {
  background-color: #F4D8A2;
}

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

.line-menu-container {
  padding-top: 75px;
  z-index: 10000;
  position: fixed;
  width: 50vw;
  height: auto;
  top: 127px;
  bottom: 0;
  background-color: #393575;
  right: -50vw;
  transition: 1s right cubic-bezier(0, 0.77, 0.175, 1);
}
@media (max-width: 991px) {
  .line-menu-container {
    width: 70vw;
    right: -70vw;
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  .line-menu-container {
    width: 100%;
    right: -100vw;
    padding-top: 0;
  }
}
.line-menu-container.opened {
  right: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  box-shadow: -25px 0 40px 4px rgba(0, 0, 0, 0.3);
  clip-path: inset(0 0 0 -60px);
}
.line-menu-container .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.line-menu-container .container > .row {
  display: flex;
  flex-direction: column;
  margin: 0 5px 0 5px;
}
.line-menu-container .container > .row > div {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .line-menu-container .container > .row > div {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-menu-container .container > .row > div:nth-child(1) {
  display: none;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar {
  margin-top: 10px;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  display: flex;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav {
    padding-bottom: 0;
  }
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav li {
  margin-bottom: 0;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav li a {
  /*color:$clrWhite!important;*/
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav li a.active {
  /*color: $secondary!important;*/
  text-decoration: underline !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav li:focus {
  color: #F4D8A2 !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav li .dropdown-backdrop {
  position: relative;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li {
  color: #F4D8A2;
  font-size: 32px;
  line-height: 120%;
  font-weight: 700;
  border: 0;
  display: inline-block;
  width: 100%;
  z-index: 99;
  margin-left: 0 !important;
  margin-bottom: 0;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li:focus, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li.active {
  cursor: pointer;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > a {
  padding: 15px 15px 10px 25px;
  height: auto !important;
  width: 100%;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid transparent;
  color: #fff !important;
}
@media (max-width: 991px) {
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > a {
    padding-left: 0;
  }
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > a.dropdown-toggle {
  display: block;
  text-align: right;
  margin-top: -45px;
  height: 47px !important;
  padding: 0 !important;
  margin-left: 0;
  width: 100%;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > a.dropdown-toggle .caret {
  content: "";
  width: 28px;
  height: 29px;
  margin-top: 0px;
  margin-right: 18px;
  right: 10px !important;
  top: 17px !important;
  position: initial !important;
  display: block;
  float: right;
  background-image: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/fleche-menu.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  transform: rotate(0deg);
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > a.dropdown-toggle .caret {
    margin-right: 0;
  }
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151048] > a {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-153326] {
    display: none;
  }
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-153326] a {
  width: fit-content;
  height: 65px !important;
  display: block;
  background-color: #F7F7F9;
  padding: 23px 27px 19px 60px;
  line-height: 14px;
  font-size: 20px;
  font-weight: 400;
  color: #393575 !important;
  border-radius: 33px;
  text-decoration: none !important;
  text-align: right;
  transition: all 150ms;
  border: 1px solid #393575;
  margin-top: 20px;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-153326] a:after {
  content: "";
  width: 28px;
  height: 33px;
  display: block;
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_logos/mini-logo-faire-un-don-parcours-adoption-quebec.svg) center center no-repeat;
  background-size: contain;
  position: relative;
  left: -37px;
  bottom: 24px;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-153326] a:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-153326] a:focus, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-153326] a:active {
  background: #F4D8A2;
  border-color: #F4D8A2;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151050], .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151022], .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151023], .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151024], .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151025] {
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151050] > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151022] > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151023] > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151024] > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151025] > a {
  padding-top: 0;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151050] > a.active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151022] > a.active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151023] > a.active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151024] > a.active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151025] > a.active {
  color: #F4D8A2 !important;
  text-decoration: none !important;
}
@media (min-width: 992px) {
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] {
    padding-left: 25px !important;
  }
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a {
  max-width: fit-content !important;
  margin-top: 30px !important;
  color: #393575 !important;
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a {
    white-space: normal !important;
  }
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a {
  background-color: #fff;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #fff;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:focus {
  background-color: #F4D8A2;
  border: 1px solid #F4D8A2;
  color: #393575;
}
@media (max-width: 767px) {
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a {
    margin-top: 10px !important;
  }
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:focus, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049] a:active {
  color: #393575 !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li[rel=data-menu-151049]:hover a {
  background-color: #F4D8A2 !important;
  border: 1px solid #F4D8A2 !important;
  color: #393575 !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li.open > .dropdown-toggle .caret, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li.active > .dropdown-toggle .caret {
  background-image: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/Arrow-down-yellow.svg");
  width: 29px;
  height: 28px;
  transition: all 0.5s;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li.open > .dropdown-menu, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li.active > .dropdown-menu {
  max-height: 800px;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li.open > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li.active > a:not(.dropdown-toggle) {
  border: none;
  background-color: transparent;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > 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 > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li {
  padding: 0 20px 0 40px;
  background-color: transparent;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  text-align: left;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:first-child {
  margin-top: 0;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:last-child {
  margin-bottom: 0;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:focus {
  background-color: transparent !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > a {
  padding: 0px 0 8px 0;
  width: 100%;
  color: #F7F7F9;
  margin-left: 0;
  background-color: transparent;
  border-radius: 4px;
  white-space: normal;
  font-size: 16px;
  text-decoration: none !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > a.dropdown-toggle {
  position: absolute;
  display: block;
  text-align: right;
  height: 46px !important;
  padding: 0 !important;
  margin-left: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > a.dropdown-toggle .caret {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 24px;
  margin-right: 20px;
  right: 10px !important;
  top: 17px !important;
  position: initial !important;
  display: block;
  float: right;
  background-image: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/menu-arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  transform: rotate(0deg);
  transition: all 0.5s;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > a.active {
  color: #F4D8A2;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:focus, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.active {
  cursor: pointer;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:hover > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:focus > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.active > a {
  color: #F4D8A2;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:hover > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:focus > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.active > a:not(.dropdown-toggle) {
  color: #F4D8A2;
  text-decoration: underline;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:hover > a.active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li:focus > a.active, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.active > a.active {
  color: #F4D8A2;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.open > .dropdown-toggle .caret, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.active > .dropdown-toggle .caret {
  background-image: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/menu-arrow-white.svg");
  transform: rotate(90deg);
  transition: all 0.5s;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.open > .dropdown-menu, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li.active > .dropdown-menu {
  max-height: 800px;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > 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%;
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  height: auto;
  max-height: 0;
  height: auto;
  margin-bottom: 0;
  top: 0;
  left: 0;
  padding: 0;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > ul.dropdown-menu > li {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > ul.dropdown-menu > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > ul.dropdown-menu > li:focus {
  background-color: transparent !important;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 200;
  padding: 10px 20px 10px 15px;
  width: 100%;
  white-space: inherit;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a:hover {
  color: #F4D8A2;
  text-decoration: none;
}
.line-menu-container .container > .row > div:nth-child(2) div.navbar ul.nav > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a.child-link {
  width: 100%;
}
.line-menu-container .container > .row > div:nth-child(3) {
  padding-bottom: 100px;
}
@media (max-width: 575px) {
  .line-menu-container .container > .row > div:nth-child(3) {
    padding-bottom: 40px;
  }
}
.line-menu-container .container > .row > div:nth-child(3) > .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 0px 15px 0 0px;
}
.line-menu-container.sticked {
  top: 122px;
}
@media (max-width: 991px) {
  .line-menu-container.sticked {
    top: 90px;
  }
}

.overflowhidden .line-menu:not(.sticked) .navbar-header {
  /*height: 110px;*/
}
.overflowhidden .line-menu > .container {
  /* height: 110px; */
  border-bottom: none;
}
.overflowhidden .line-menu > .container .zone-image a {
  margin-left: 5px;
}

.line-bg-menu-open {
  overflow: hidden;
  background-color: #393575;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 1s;
}

body.overflowhidden .line-bg-menu-open {
  opacity: 0.4;
  pointer-events: fill;
  cursor: pointer;
}

/* OPTION - Hide munu item when logged */
body.member--isConnected .line-menu-container .zone-menu .navbar ul.nav > li[rel=data-menu-152649], body.member--isConnected .line-menu-container .zone-menu .navbar ul.nav > li[rel=data-menu-152650] {
  display: none !important;
}

/**
 * ----------------------------------------
 * 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;
  }
}
.line-header:not(.sticked, .menuopened) {
  /*transition: top 250ms;*/
}
.line-header:not(.sticked, .menuopened) > .container {
  /*
  top: -100px;
  transition: top 250ms;*/
  /*position: static;*/
}
.line-header.sticked {
  -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;
  background: #fff;
}
@media (max-width: 991px) {
  .line-header.sticked {
    background-color: #fff;
  }
}
.line-header.sticked > .container > .row {
  margin-top: 0;
  bottom: 0;
  padding-top: 15px;
}
.line-header.sticked > .container > .row > div:nth-child(1) {
  /*
  .content {
      margin-top: 15px;
      .menu-hamburger {
          span {
              background-color: $primary;
          }
      }
  }
  */
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part .mod-header {
  margin-top: 6px;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login) {
  color: #393575 !important;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):hover, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):focus, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):active {
  color: #F4D8A2 !important;
}
.line-header.sticked:not(.menuopened) {
  position: sticky;
  top: 0;
}
/* OPTION - Hide munu item when logged */
body.member--isConnected .line-menu-container .container > .row > div.zone-menu .navbar #mainMenu ul.nav li[rel=data-menu-151049] {
  display: none !important;
}
body.member--isConnected .line-menu-container .container > .row > div.zone-menu .navbar #mainMenu ul.nav li[rel=data-menu-151040] > ul.dropdown-menu > li[rel=data-children-152649], body.member--isConnected .line-menu-container .container > .row > div.zone-menu .navbar #mainMenu ul.nav li[rel=data-menu-151040] > ul.dropdown-menu > li[rel=data-children-152650] {
  display: none !important;
}

.panel-header {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
@media (min-width: 992px) {
  .panel-header {
    display: none;
  }
}
.panel-header a {
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  text-transform: initial;
}
.panel-header a {
  color: #fff !important;
  font-weight: 500;
}
.panel-header a:hover {
  color: #F4D8A2 !important;
  text-decoration: none !important;
}

.panel-connexion {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .panel-connexion {
    padding-left: 25px;
  }
}
@media (min-width: 992px) {
  .panel-connexion {
    display: none;
  }
}
.panel-connexion .member-login {
  opacity: 1 !important;
  max-width: fit-content;
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.panel-connexion .member-login:hover, .panel-connexion .member-login:active, .panel-connexion .member-login:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .panel-connexion .member-login {
    white-space: normal !important;
  }
}
.panel-connexion .member-login {
  background-color: #F4D8A2;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #F4D8A2;
}
.panel-connexion .member-login:hover, .panel-connexion .member-login:active, .panel-connexion .member-login:focus {
  background-color: #393575;
  border: 1px solid #393575;
  color: #fff;
}
.panel-connexion .member-greeting {
  margin-top: 30px;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}
.panel-connexion a.member-myprofile {
  color: #fff !important;
  font-size: 22px !important;
  margin-bottom: 15px;
}
.panel-connexion .separator {
  display: none;
}
.panel-connexion a.member-logout {
  color: white !important;
  font-size: 22px;
}

.panel-language a.switch-language {
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  text-transform: initial;
}
.panel-language a.switch-language {
  color: #fff !important;
  font-weight: 500;
}
.panel-language a.switch-language:hover {
  color: #F4D8A2 !important;
  text-decoration: none !important;
}

@media (min-width: 992px) {
  .panel-social {
    padding-left: 25px;
  }
}
.panel-social {
  /*
  width:100%;
  padding-top: 10px;
  p {
      &:nth-child(1) {
          display:none;
      }
      &:nth-child(2) {
          margin-top: 0;
          margin-bottom: 35px;
          display:flex;
          flex-direction: row;

          a {
              display:flex;
              align-items: flex-end;
              justify-content: flex-start;
              width: 26px;
              height: 40px;
              margin-right: 20px;
              transition: all 250ms;
              filter: brightness(3.5) hue-rotate(318deg);
              &:hover {
                  opacity: .7;
              }
          }
      }
      &:nth-child(3) {
          a {
              @include p-small;
              color: $third!important;
          }
      }
  }

  */
  /*
  .social {
      justify-content: flex-end;
  }
  */
}

.line-newsletter {
  position: relative;
  background: linear-gradient(180deg, rgb(247, 247, 249) 63%, rgb(57, 53, 117) 63%);
}
.line-newsletter:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_asset/fleche-rouge-hor-droite.svg);
  background-repeat: no-repeat;
  width: 573px;
  height: 318px;
  position: absolute;
  right: 0;
  bottom: -180px;
  z-index: 1;
}
@media (max-width: 991px) {
  .line-newsletter:before {
    background-size: contain;
    width: 460px;
    height: 280px;
  }
}
@media (max-width: 767px) {
  .line-newsletter:before {
    width: 209px;
    height: 143px;
    bottom: -122px;
  }
}
.line-newsletter:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_asset/fleche-jaune-hor-gauche.svg);
  background-repeat: no-repeat;
  width: 573px;
  height: 318px;
  position: absolute;
  left: 0;
  top: -160px;
  z-index: 3;
}
@media (max-width: 1199px) {
  .line-newsletter:after {
    background-size: contain;
    width: 390px;
    height: 280px;
    top: -112px;
  }
}
@media (max-width: 767px) {
  .line-newsletter:after {
    width: 247px;
    height: 143px;
    top: -40px;
  }
}
.line-newsletter .container > .row > div .content, .line-newsletter .container-fluid > .row > div .content {
  background: #ADD1EA;
  box-shadow: 0 11px 49px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  padding: 74px 53px 75px 62px;
  border-radius: 15px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .line-newsletter .container > .row > div .content, .line-newsletter .container-fluid > .row > div .content {
    flex-direction: column;
    padding: 126px 20px 30px;
  }
}
.line-newsletter .container > .row > div .content .nl-left, .line-newsletter .container > .row > div .content .nl-right, .line-newsletter .container-fluid > .row > div .content .nl-left, .line-newsletter .container-fluid > .row > div .content .nl-right {
  width: 50%;
}
@media (max-width: 767px) {
  .line-newsletter .container > .row > div .content .nl-left, .line-newsletter .container > .row > div .content .nl-right, .line-newsletter .container-fluid > .row > div .content .nl-left, .line-newsletter .container-fluid > .row > div .content .nl-right {
    width: 100%;
  }
}
.line-newsletter .container > .row > div .content .nl-left h2, .line-newsletter .container-fluid > .row > div .content .nl-left h2 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-newsletter .container > .row > div .content .nl-left h2, .line-newsletter .container-fluid > .row > div .content .nl-left h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .line-newsletter .container > .row > div .content .nl-left p, .line-newsletter .container-fluid > .row > div .content .nl-left p {
    margin-bottom: 25px;
  }
}
.line-newsletter .container > .row > div .content .nl-right .btn, .line-newsletter .container-fluid > .row > div .content .nl-right .btn {
  margin-bottom: 0;
}

.line-footer {
  padding-top: 133px;
  padding-bottom: 80px;
  background-color: #393575;
  border-bottom: 1px solid #E2E2E2;
}
.line-footer .container > .row {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .line-footer .container > .row {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div .content p br {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(1) {
    margin-bottom: 80px;
  }
}
.line-footer .container > .row > div:nth-child(1) .content h3 {
  color: #393575 !important;
}
.line-footer .container > .row > div:nth-child(1) .content p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.line-footer .container > .row > div:nth-child(1) .content p:not(:first-child) {
  font-size: 14px;
}
@media (min-width: 992px) {
  .line-footer .container > .row > div:nth-child(2) {
    padding-left: 90px;
  }
}
.line-footer .container > .row > div:nth-child(2) .content h3 {
  color: #fff !important;
}
.line-footer .container > .row > div:nth-child(2) .content p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.line-footer .container > .row > div:nth-child(2) .content ul {
  padding-left: 0 !important;
  margin-top: 0 !important;
  list-style: none;
  text-align: right;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(2) .content ul {
    text-align: center;
  }
}
.line-footer .container > .row > div:nth-child(2) .content ul li {
  font-size: 16px !important;
  line-height: 20px !important;
  margin-bottom: 15px !important;
  color: #fff !important;
}
.line-footer .container > .row > div:nth-child(2) .content ul li a {
  color: #fff !important;
  text-decoration: none !important;
}
.line-footer .container > .row > div:nth-child(2) .content ul li a:hover {
  color: #F4D8A2 !important;
  text-decoration: none;
}
.line-footer .container > .row > div:nth-child(3) .content {
  text-align: right;
}
.line-footer .container > .row > div:nth-child(3) .content p a {
  color: #fff !important;
  text-decoration: none !important;
}
.line-footer .container > .row > div:nth-child(3) .content p a:hover {
  color: #F4D8A2 !important;
  text-decoration: none;
}
.line-footer .container > .row > div:nth-child(3) .content a.btn-secondary {
  padding-left: 55px;
  padding-right: 45px;
  position: relative;
  margin-bottom: 20px;
}
.line-footer .container > .row > div:nth-child(3) .content a.btn-secondary:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_logos/icone-telephone.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.line-footer .container > .row > div:nth-child(3) .content a.btn-secondary:hover, .line-footer .container > .row > div:nth-child(3) .content a.btn-secondary:focus, .line-footer .container > .row > div:nth-child(3) .content a.btn-secondary:active {
  background: #fff;
  border: 1px solid #fff;
  color: #393575;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(3) .content .social {
    justify-content: center;
  }
}
.line-footer .container > .row > div:nth-child(3) .content .social {
  margin-bottom: 20px;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(3) .content p {
    text-align: center;
  }
}
.line-footer .container > .row > div:nth-child(3) .content p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.line-footer .container > .row > div:nth-child(3) .content p a:not(.btn) {
  color: #F4D8A2 !important;
  text-decoration: none !important;
}
.line-footer .container > .row > div:nth-child(3) .content p a:not(.btn):hover {
  color: #393575 !important;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(3) .content hr {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-footer .container > .row > div:nth-child(3) .content hr {
  border-color: #E2E2E2;
  max-width: 216px;
  margin-right: 0;
  margin-bottom: 25px;
}

.line-footer-copyright {
  padding-top: 18px;
  padding-bottom: 18px;
  background: #F7F7F9;
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div .content {
    max-width: 67%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-footer-copyright .container > .row > div .content {
  text-align: center;
}
.line-footer-copyright .container > .row > div .content p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 2px;
}
.line-footer-copyright .container > .row > div .content p a {
  color: #393575 !important;
}

.poweredBy-wrapper {
  background-color: #fff;
}

.article-main {
  padding-bottom: 80px;
}
.article-main .container .row .zone-article .mod-article__wrapper {
  max-width: 926px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__title {
  order: 0;
  margin-top: 70px;
  margin-bottom: 56px;
  color: #393575;
  border-bottom: 1px solid #ccc;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__published-date {
  order: 1;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__category {
  order: 2;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content {
  order: 3;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__img {
  margin-bottom: 78px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h2 {
  margin-bottom: 45px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h3 {
  margin-top: 40px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 64px;
  border-left: 11px solid #F4D8A2;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content iframe {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__tags {
  display: none;
}
.line-article-retour {
  padding-top: 45px;
  padding-bottom: 90px;
}
.line-article-retour .container {
  max-width: 926px;
}
.line-article-retour .container .row .zone-html .content a {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-article-retour .container .row .zone-html .content a {
    white-space: normal !important;
  }
}
.line-article-retour .container .row .zone-html .content a {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}

/* Module articles en vedette */
a.workshop {
  padding: 35px 50px 35px 50px !important;
  text-decoration: none !important;
}

.sidebox {
  padding: 35px 20px 15px 30px !important;
}

.workshop-category, .workshop-tag {
  font-size: 18px;
  line-height: 19px;
  color: #393575;
  border-radius: 50px;
  padding: 10px 30px;
}

.workshop-category {
  color: #fff !important;
  background-color: #F4D8A2;
}

.workshop-tag {
  color: #fff !important;
  background-color: #FCC0C0;
}

.event-schedule .date-pagination {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}
.event-schedule .date-pagination .current-page {
  margin-top: 0;
}
.event-schedule .date-pagination .current-page .current-date {
  /*
  @include h5;
  margin-bottom: 12px;
  */
  /*
  width: auto;
  @include btn;
  @include btn-primary-important;
  */
}
.event-schedule .date-pagination .current-page .highlight {
  /*
  width: 200px;
  display:none;
  */
}
.event-schedule .pagination-control .previous-date {
  background-color: transparent !important;
  /*
  @include h5;
  padding: 15px 15px 10px 15px;
  */
  /*
  gap: 10px;
  @include btn;
  @include btn-secondary-important;
  height: 50px;

  i {
      font-size: 14px;
      margin-top: -3px; 
      display:none;
  }
  */
}
.event-schedule .pagination-control .next-date {
  background-color: transparent !important;
  /*
  @include h5;
  padding: 15px 15px 10px 15px;
  */
  /*
  gap: 10px;
  @include btn;
  @include btn-secondary-important;
  height: 50px;

  i {
      font-size: 14px;
      margin-top: -3px; 
      display:none;
  }
  */
}
.event-schedule .time-block .time-block-header h3 {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 767px) {
  .event-schedule .time-block .time-block-header h3 {
    font-size: 32px;
    line-height: 38px;
  }
}
.event-schedule .time-block .workshops .workshop .workshop-header {
  gap: 10px 20px;
  flex-direction: row;
}
.event-schedule .time-block .workshops .workshop .workshop-time {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.event-schedule .time-block .workshops .workshop .workshop-time {
  color: #000;
  margin-bottom: 10px;
  width: auto;
}
.event-schedule .time-block .workshops .workshop .workshop-duration {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.event-schedule .time-block .workshops .workshop .workshop-duration {
  color: #000;
  margin-bottom: 10px;
  width: auto;
  flex-basis: 80%;
}
.event-schedule .time-block .workshops .workshop .workshop-category {
  width: auto;
}
.event-schedule .time-block .workshops .workshop .workshop-tag {
  width: auto;
}
.event-schedule .time-block .workshops h5 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .event-schedule .time-block .workshops h5 {
    font-size: 24px;
    line-height: 28px;
  }
}
.event-schedule .time-block .workshops .speakers {
  color: #000;
  font-size: 18px;
  line-height: 19px;
}
.zone-event_schedule > h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-event_schedule > h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
.zone-event_schedule > div .workshop-detail .workshop-header {
  margin-bottom: 50px;
}
.zone-event_schedule > div .workshop-detail .workshop-header .event-name {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-event_schedule > div .workshop-detail .workshop-header .event-name {
    font-size: 32px;
    line-height: 38px;
  }
}
.zone-event_schedule > div .workshop-detail .workshop-header .event-name {
  color: #393575;
}
.zone-event_schedule > div .workshop-detail .workshop-header .workshop-category {
  width: auto;
}
.zone-event_schedule > div .workshop-detail .workshop-header .workshop-tag {
  width: auto;
}
.zone-event_schedule > div .workshop-detail .content-grid .workshop-content {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .zone-event_schedule > div .workshop-detail .content-grid .workshop-content {
    margin-right: 60px;
  }
}
.zone-event_schedule > div .workshop-detail .content-grid .workshop-content img {
  margin-bottom: 30px;
}
.zone-event_schedule > div .workshop-detail .content-grid .workshop-sidebar .sidebox .workshop-details .workshop-date {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.zone-event_schedule > div .workshop-detail .content-grid .workshop-sidebar .sidebox .workshop-details .workshop-date {
  color: #000;
  margin-bottom: 10px;
}
.zone-event_schedule > div .workshop-detail .content-grid .workshop-sidebar .sidebox .workshop-details .workshop-time {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.zone-event_schedule > div .workshop-detail .content-grid .workshop-sidebar .sidebox .workshop-details .workshop-time {
  color: #000;
  margin-bottom: 10px;
}
.zone-event_schedule > div .workshop-detail .workshop-speakers {
  margin-bottom: 80px;
}
.zone-event_schedule > div .workshop-detail .workshop-speakers .speakers-title {
  color: #000 !important;
}
.zone-event_schedule > div .workshop-detail .workshop-return a {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-event_schedule > div .workshop-detail .workshop-return a:hover, .zone-event_schedule > div .workshop-detail .workshop-return a:active, .zone-event_schedule > div .workshop-detail .workshop-return a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event_schedule > div .workshop-detail .workshop-return a {
    white-space: normal !important;
  }
}
.zone-event_schedule > div .workshop-detail .workshop-return a {
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
}
.zone-event_schedule > div .workshop-detail .workshop-return a:hover, .zone-event_schedule > div .workshop-detail .workshop-return a:active, .zone-event_schedule > div .workshop-detail .workshop-return a:focus {
  background-color: #393575;
  border: 1px solid #F4D8A2;
  color: #fff;
}

/**************************************************
ACCORDEON INTERVENANT
**************************************************/
table.accordeon-intervenant {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
}
table.accordeon-intervenant tbody, table.accordeon-intervenant tr, table.accordeon-intervenant td {
  border: 0;
}
table.accordeon-intervenant tbody {
  display: block;
}
table.accordeon-intervenant tbody tr {
  /* Title/accordeon box */
}
table.accordeon-intervenant tbody tr:first-child {
  cursor: pointer;
  display: block;
  border-bottom: 1px solid #393575;
  padding: 15px 0;
  position: relative;
}
table.accordeon-intervenant tbody tr:first-child td h3 {
  font-size: 22px !important;
  line-height: 24px !important;
  font-weight: 700 !important;
  color: #393575 !important;
  padding: 10px 60px 10px 0 !important;
  margin-bottom: 4px !important;
}
table.accordeon-intervenant tbody tr:first-child td h3:hover {
  color: #393575 !important;
}
table.accordeon-intervenant tbody tr:first-child td h3:after {
  content: "" !important;
  font-size: 22px !important;
}
table.accordeon-intervenant tbody tr:first-child td h4 {
  color: #393575 !important;
}
table.accordeon-intervenant tbody tr:first-child:after {
  content: "+";
  display: block;
  position: absolute;
  right: 15px;
  top: 25px;
  font-size: 50px;
  line-height: 20px;
  font-weight: 500;
  color: #393575;
  transition: transform 150ms;
}
table.accordeon-intervenant tbody tr {
  /* content */
}
table.accordeon-intervenant tbody tr:last-child {
  display: block;
}
table.accordeon-intervenant tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 70px 0 0;
  color: #393575 !important;
}
table.accordeon-intervenant tbody tr:last-child td p {
  color: #393575 !important;
}
table.accordeon-intervenant {
  /* active and opened content */
}
table.accordeon-intervenant.active tbody tr:first-child {
  border-bottom: 2px solid #393575;
}
table.accordeon-intervenant.active tbody tr:first-child h3 {
  color: #393575 !important;
}
table.accordeon-intervenant.active tbody tr:first-child:after {
  transform: rotate(45deg);
}
table.accordeon-intervenant.active tbody tr:last-child {
  padding: 20px 0 0 0;
}
table.accordeon-intervenant.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}

/* CARROUSEL - pleine largeur */
.zone-carousel .carousel {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.zone-carousel .carousel ol.carousel-indicators {
  order: 1;
}
.zone-carousel .carousel ol.carousel-indicators li {
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-indent: -9999px !important;
  overflow: hidden;
  width: 10px;
  height: 10px;
  background: rgba(57, 53, 117, 0.2);
}
.zone-carousel .carousel ol.carousel-indicators li.active {
  background: #393575;
}
.zone-carousel .carousel .carousel-inner {
  order: 0;
  background: #F7F7F9;
  border-radius: 15px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.zone-carousel .carousel .carousel-inner .item {
  padding: 60px;
  max-height: 220px !important;
  height: 220px !important;
}
@media (max-width: 767px) {
  .zone-carousel .carousel .carousel-inner .item {
    padding: 50px;
    max-height: 250px !important;
    height: 250px !important;
  }
}
@media (max-width: 575px) {
  .zone-carousel .carousel .carousel-inner .item {
    max-height: 275px !important;
    height: 275px !important;
  }
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
    white-space: normal !important;
  }
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:focus {
  background-color: #393575;
  border: 1px solid #F4D8A2;
  color: #fff;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  margin-bottom: 30px;
}

/*###########################  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*/
@media (min-width: 768px) {
  .zone-member .member-login-wrapper, .zone-member .login-wrapper__login, .zone-login .member-login-wrapper, .zone-login .login-wrapper__login {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper h1, .zone-member .login-wrapper__login h1, .zone-login .member-login-wrapper h1, .zone-login .login-wrapper__login h1 {
    text-align: center;
  }
}
.zone-member .member-login-wrapper h1, .zone-member .login-wrapper__login h1, .zone-login .member-login-wrapper h1, .zone-login .login-wrapper__login h1 {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper h1, .zone-member .login-wrapper__login h1, .zone-login .member-login-wrapper h1, .zone-login .login-wrapper__login h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
.zone-member .member-login-wrapper h1, .zone-member .login-wrapper__login h1, .zone-login .member-login-wrapper h1, .zone-login .login-wrapper__login h1 {
  padding-bottom: 32px;
  text-align: left;
}
.zone-member .member-login-wrapper #profile_login_form, .zone-member .member-login-wrapper #login_content_box, .zone-member .login-wrapper__login #profile_login_form, .zone-member .login-wrapper__login #login_content_box, .zone-login .member-login-wrapper #profile_login_form, .zone-login .member-login-wrapper #login_content_box, .zone-login .login-wrapper__login #profile_login_form, .zone-login .login-wrapper__login #login_content_box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form, .zone-member .member-login-wrapper #login_content_box .zend_form, .zone-member .login-wrapper__login #profile_login_form .zend_form, .zone-member .login-wrapper__login #login_content_box .zend_form, .zone-login .member-login-wrapper #profile_login_form .zend_form, .zone-login .member-login-wrapper #login_content_box .zend_form, .zone-login .login-wrapper__login #profile_login_form .zend_form, .zone-login .login-wrapper__login #login_content_box .zend_form {
  display: flex;
  /*flex-direction: column;*/
  flex-wrap: wrap;
  max-width: 100%;
  gap: 10px; /* Optional: adds space between items */
  width: 500px; /* Adjust as needed */
}
.zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-email, .zone-member .member-login-wrapper #login_content_box .zend_form div.form-element-email, .zone-member .login-wrapper__login #profile_login_form .zend_form div.form-element-email, .zone-member .login-wrapper__login #login_content_box .zend_form div.form-element-email, .zone-login .member-login-wrapper #profile_login_form .zend_form div.form-element-email, .zone-login .member-login-wrapper #login_content_box .zend_form div.form-element-email, .zone-login .login-wrapper__login #profile_login_form .zend_form div.form-element-email, .zone-login .login-wrapper__login #login_content_box .zend_form div.form-element-email {
  width: 100%;
  order: 0;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-password, .zone-member .member-login-wrapper #login_content_box .zend_form div.form-element-password, .zone-member .login-wrapper__login #profile_login_form .zend_form div.form-element-password, .zone-member .login-wrapper__login #login_content_box .zend_form div.form-element-password, .zone-login .member-login-wrapper #profile_login_form .zend_form div.form-element-password, .zone-login .member-login-wrapper #login_content_box .zend_form div.form-element-password, .zone-login .login-wrapper__login #profile_login_form .zend_form div.form-element-password, .zone-login .login-wrapper__login #login_content_box .zend_form div.form-element-password {
  width: 100%;
  order: 1;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:nth-child(3), .zone-member .member-login-wrapper #login_content_box .zend_form > div:nth-child(3), .zone-member .login-wrapper__login #profile_login_form .zend_form > div:nth-child(3), .zone-member .login-wrapper__login #login_content_box .zend_form > div:nth-child(3), .zone-login .member-login-wrapper #profile_login_form .zend_form > div:nth-child(3), .zone-login .member-login-wrapper #login_content_box .zend_form > div:nth-child(3), .zone-login .login-wrapper__login #profile_login_form .zend_form > div:nth-child(3), .zone-login .login-wrapper__login #login_content_box .zend_form > div:nth-child(3) {
  text-align: left;
  margin-bottom: 32px;
  order: 5;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form input#submit, .zone-member .member-login-wrapper #profile_login_form .zend_form #submitform, .zone-member .member-login-wrapper #login_content_box .zend_form input#submit, .zone-member .member-login-wrapper #login_content_box .zend_form #submitform, .zone-member .login-wrapper__login #profile_login_form .zend_form input#submit, .zone-member .login-wrapper__login #profile_login_form .zend_form #submitform, .zone-member .login-wrapper__login #login_content_box .zend_form input#submit, .zone-member .login-wrapper__login #login_content_box .zend_form #submitform, .zone-login .member-login-wrapper #profile_login_form .zend_form input#submit, .zone-login .member-login-wrapper #profile_login_form .zend_form #submitform, .zone-login .member-login-wrapper #login_content_box .zend_form input#submit, .zone-login .member-login-wrapper #login_content_box .zend_form #submitform, .zone-login .login-wrapper__login #profile_login_form .zend_form input#submit, .zone-login .login-wrapper__login #profile_login_form .zend_form #submitform, .zone-login .login-wrapper__login #login_content_box .zend_form input#submit, .zone-login .login-wrapper__login #login_content_box .zend_form #submitform {
  order: 2;
  margin-right: 16px;
  max-width: fit-content;
  margin-top: 0px;
  margin-bottom: 10px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription {
  order: 3;
  margin-top: 0px;
  margin-bottom: 10px;
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.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, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription:focus, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:active, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:focus, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription:hover, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription:active, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription:focus, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription:hover, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription:active, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription:focus, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:hover, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:active, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:focus, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription:hover, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription:active, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription {
  max-width: fit-content;
}
.zone-member .member-resetpassword-wrapper > h1, .zone-login .member-resetpassword-wrapper > h1 {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .member-resetpassword-wrapper > h1, .zone-login .member-resetpassword-wrapper > h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 768px) {
  .zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email, .zone-login .member-resetpassword-wrapper #forget_password_form .form-element-email {
    max-width: 50%;
  }
}
.zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email, .zone-login .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 32px;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn, .zone-login .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 15px;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:hover, .zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:active, .zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:focus, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link:hover, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link:active, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link {
  border-radius: 60px !important;
}

/*Espace Evenements - Vue Details*/
/* Espace Evenement - Mosaique */
/*###########################  ESPACE MEMBRE  ###########################*/
.member--isConnected .line-menu {
  background-color: #fff;
}
.member--isConnected .line-zone-membre .container {
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 991px) {
  .member--isConnected .line-zone-membre .container {
    max-width: 100%;
  }
}

.line-zone-membre {
  padding-top: 80px;
  padding-bottom: 80px;
}

.zone-member .sidebar__member-zone {
  width: 33%;
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone {
    width: 100%;
  }
}
.zone-member .sidebar__member-zone {
  /*
  @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 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #393575;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding-top: 36px;
  padding-bottom: 36px;
  background: transparent;
  border-top: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__member-footer a {
    white-space: normal !important;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  background-color: #F4D8A2;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #F4D8A2;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  background-color: #393575;
  border: 1px solid #393575;
  color: #fff;
}
.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: 12px;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
  text-transform: inherit;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #393575;
  text-decoration: underline;
  font-weight: 700;
  text-decoration-color: #F4D8A2;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.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: #393575;
}
.zone-member .member {
  width: 66%;
}
@media (max-width: 767px) {
  .zone-member .member {
    width: 100%;
  }
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
  margin-bottom: 5px;
  margin-top: 10px;
}
.zone-member .member h1 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #393575;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .member h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  color: #393575;
}
.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;
}
.zone-member .heading-container .heading {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
  color: #393575;
}
.zone-member .registration-list .subtitle {
  margin-top: 25px;
}
.zone-member .field-object-temp .object-main-title h2 {
  width: auto;
}
.zone-member .field-object-temp .object-main-title .btn-link {
  margin-left: 30px;
}
.zone-member .field-object-temp .btn-link {
  padding: 0px 30px;
}
.zone-member .field-object-temp .btn-action {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.zone-member .field-object-temp .btn-action:hover, .zone-member .field-object-temp .btn-action:active, .zone-member .field-object-temp .btn-action:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}

.member a.fa-file-invoice:before {
  content: "" !important;
  display: inline-block;
  background-image: url(https://cdn.ca.yapla.com/company/CPYyF1CPJXDlsRVQc9wxEUTSn/asset/images/_shapes-icons/icone-facture.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  height: px;
}

/*Événements en vedette - affichage mosaïque*/
/*###########################  FIL D'ARIANE  ###########################*/
.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: #393575;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #F4D8A2;
}

.zone-donation {
  padding-top: 10px;
}
.zone-donation > h2 {
  display: none;
}
.zone-donation .don {
  /*display: none;*/
}
.zone-donation .don-form-wrapper h2 {
  font-size: 20px;
  line-height: 26px;
  padding-top: 48px;
  padding-bottom: 32px;
  margin-bottom: 0;
  font-weight: 500;
}
.zone-donation .don-form-wrapper h4 {
  font-size: 20px;
  line-height: 26px;
  padding-top: 48px;
  padding-bottom: 16px;
  font-weight: 500;
  margin-bottom: 0;
  color: #393575;
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate:hover, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:active, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:focus,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:hover,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:active,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper div.donation-footer-frame button#validate,
  .zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment {
    white-space: normal !important;
  }
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate:hover, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:active, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:focus,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:hover,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:active,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment {
  margin-left: 16px;
}
.zone-donation .don-form-wrapper div.donation-footer-frame a.btn-link {
  margin-right: 20px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.zone-donation .don-form-wrapper div.donation-footer-frame input#submit,
.zone-donation .don-form-wrapper div.donation-footer-frame input#js-btn-submit {
  margin-left: 16px;
  /*
  font-size: 14px;
  border: 1px solid $primary;
  margin: 15px;
  width: fit-content;
  color: #000;
  */
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper div.donation-footer-frame input#submit,
  .zone-donation .don-form-wrapper div.donation-footer-frame input#js-btn-submit {
    float: left;
  }
}
.step-donation_infos .line-soutenir {
  padding-top: 90px;
  height: auto;
}
.step-donation_infos .line-soutenir h2 {
  display: block;
  margin-bottom: 0;
}
.step-donation_infos .zone-donation h1 {
  margin-bottom: 30px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step {
  margin: 20px 0;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
    white-space: normal !important;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
    margin-right: 8px;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
    white-space: normal !important;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
    margin-right: 8px;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked) {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked):hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked):active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked):focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked) {
    white-space: normal !important;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked) {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked):hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked):active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked):focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked) {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:has(input:checked) {
    margin-right: 8px;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-donation_choice_id {
  float: left;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount {
  float: left;
  clear: both;
  padding-top: 24px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount label {
  display: block;
  font-size: 16px;
  padding-left: 2px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12 {
  margin-left: 0;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12:after {
  color: #393575;
  font-size: 18px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12 #custom_amount {
  font-size: 18px;
  width: 150px;
  border-radius: 0;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-donation_choice_idrecurrent {
  float: left;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent {
  float: left;
  clear: both;
  padding-top: 24px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent label {
  display: block;
  font-size: 18px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent .col-md-12:after {
  color: #393575;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent .col-md-12 #custom_amountrecurrent {
  width: 150px;
  border-radius: 0;
  /*font-size: inherit;
  height: 41px !important;
  border: 1px solid #2D4800 !important;
  border-radius: 0px;
  padding-right: 42px;
  background-color: #fff !important;
  box-shadow: none !important;*/
}

.step-donor_infos .line-soutenir {
  padding-top: 90px;
  height: auto;
}
.step-donor_infos .line-soutenir h2 {
  display: block;
  margin-bottom: 0;
}
.step-donor_infos .zone-donation .don-form-wrapper .form-donor-infos-step .section h2.section-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-donor_infos .zone-donation .don-form-wrapper .form-donor-infos-step .section .row .col-sm-18 {
  padding-left: 0 !important;
}
.step-donor_infos .zone-donation .don-form-wrapper .form-donor-infos-step .section .row .col-sm-18 textarea {
  border: 1px solid #FCC0C0 !important;
}

.step-payment .line-soutenir {
  padding-top: 90px;
  height: auto;
}
.step-payment .line-soutenir h2 {
  display: block;
  margin-bottom: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 {
  padding: 20px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row {
  padding-left: 16px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row .col-sm-20 {
  padding: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row .col-sm-20 .form-element-card_owner_in .col-md-24 {
  padding: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_summary {
  margin-bottom: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_summary h4 {
  font-size: 18px;
  padding-top: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_summary strong {
  padding-right: 12px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_grand_total .total-amount-section {
  background-color: #fff;
  border: 1px solid #FCC0C0;
  border-radius: 15px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_grand_total .total-amount-section h4.total-amount-price span {
  color: #393575 !important;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_grand_total .total-amount-section h4 {
  padding-top: 16px !important;
}

/*Espace Dons*/
.zone-donation .don {
  /*display: none;*/
}
.zone-donation .don-form-wrapper h2 {
  font-size: 26px;
  text-decoration: underline;
  padding-top: 48px;
  padding-bottom: 32px;
  font-weight: 400;
  margin-bottom: 0;
}
.zone-donation .don-form-wrapper h4 {
  font-size: 32px;
  padding-top: 48px;
  padding-bottom: 32px;
  font-weight: 400;
  margin-bottom: 0;
  color: #393575;
}
.zone-donation .don-form-wrapper .form-donation__info-step {
  margin: 20px;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
    white-space: normal !important;
  }
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  background-color: #393575;
  border: 1px solid #F4D8A2;
  color: #fff;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
  font-size: 16px !important;
  line-height: 1.2 !important;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  background-color: #F4D8A2 !important;
  border: 1px solid #F4D8A2 !important;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
    white-space: normal !important;
  }
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  background-color: #F4D8A2 !important;
  border: 1px solid #F4D8A2 !important;
}
.zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
  pointer-events: none;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-donation_choice_id {
  float: left;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount {
  float: left;
  clear: both;
  padding-top: 24px;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount label {
  display: block;
  font-size: 18px;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12 {
  margin-left: 0;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12:after {
  color: #F4D8A2;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12 #custom_amount {
  width: 150px;
  border-radius: 0;
  /*font-size: inherit;
  height: 48px !important;
  border: 1px solid #2D4800 !important;
  border-radius: 0px;
  padding-right: 42px;
  background-color: #fff !important;
  box-shadow: none !important;*/
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-donation_choice_idrecurrent {
  float: left;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent {
  float: left;
  clear: both;
  padding-top: 24px;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent label {
  display: block;
  font-size: 18px;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent .col-md-12:after {
  color: #393575;
  font-size: 18px;
}
.zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent .col-md-12 #custom_amountrecurrent {
  width: 150px;
  border-radius: 0;
  font-size: 18px;
  /*font-size: inherit;
  height: 41px !important;
  border: 1px solid #2D4800 !important;
  border-radius: 0px;
  padding-right: 42px;
  background-color: #fff !important;
  box-shadow: none !important;*/
}
.zone-donation .don-form-wrapper #sub_step_3 {
  padding: 20px;
}
.zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row {
  padding-left: 16px;
}
.zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row .col-sm-20 {
  padding: 0;
}
.zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row .col-sm-20 .form-element-card_owner_in .col-md-24 {
  padding: 0;
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment {
  background-color: transparent;
  color: #393575;
  border: none;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.zone-donation .don-form-wrapper div.donation-footer-frame input#submit,
.zone-donation .don-form-wrapper div.donation-footer-frame input#js-btn-submit {
  /*
  font-size: 14px;
  border: 1px solid $primary;
  margin: 15px;
  width: fit-content;
  color: #000;
  */
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper div.donation-footer-frame input#submit,
  .zone-donation .don-form-wrapper div.donation-footer-frame input#js-btn-submit {
    float: left;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper {
  margin-right: 75px;
}
@media (max-width: 1199px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper {
    margin-right: 25px;
  }
}
@media (max-width: 991px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper {
    margin-right: 0;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart thead tr th {
  padding: 1.8rem 0 0.8rem 0;
  border-bottom: 1px solid #F4D8A2;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart thead h6.table-cart__heading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item h3.cart-item__name {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item p.cart-item__description {
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  text-transform: initial;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit {
    white-space: normal !important;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit {
  background-color: transparent;
  color: #393575;
  padding: 15px 0;
  transition: all 150ms;
  border: none;
  border-bottom: 1px solid #393575;
  border-radius: 0;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:focus {
  background-color: transparent;
  color: #393575;
  border: none;
  border-bottom: 1px solid #F4D8A2;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover {
  text-decoration: none !important;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete {
    white-space: normal !important;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete {
  background-color: transparent;
  color: #393575;
  padding: 15px 0;
  transition: all 150ms;
  border: none;
  border-bottom: 1px solid #393575;
  border-radius: 0;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:focus {
  background-color: transparent;
  color: #393575;
  border: none;
  border-bottom: 1px solid #F4D8A2;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover {
  text-decoration: none !important;
}
.zone-cart .cart-summary__wrapper > .row > div:last-child .order-totals__wrapper {
  padding: 3.7rem 2.2rem 1.7rem 2.2rem;
}
.zone-cart .cart-summary__wrapper > .row > div:last-child .order-totals__wrapper .order-summary h3.order-summary__title {
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  text-transform: initial;
}
.zone-cart .cart-summary__wrapper > .row > div:last-child .order-totals__wrapper .order-summary h3.order-summary__title {
  padding: 0 0 2rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #F4D8A2;
}
.zone-cart .cart-summary__wrapper > .row > div:last-child .order-totals__wrapper .order-summary .table-order-taxes td:last-child {
  width: 100px;
}
.zone-cart .cart-summary__wrapper > .row > div:last-child .order-totals__wrapper .order-summary .table-order-taxes tbody .order-summary__subtotal {
  font-size: 1.5rem;
}
.zone-cart .cart-summary__wrapper > .row > div:last-child .order-totals__wrapper .order-summary .table-order-taxes tbody .order-summary__subtotal-amount {
  font-size: 1.5rem;
}
.zone-cart .cart-confirmation__wrapper .cart-wrapper--confirmation table.table-cart thead h6.table-cart__heading {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-cart .cart-confirmation__wrapper .cart-wrapper--confirmation table.table-cart thead h6.table-cart__heading {
    font-size: 24px;
    line-height: 28px;
  }
}

/* MULTI-SLIDE CARROUSEL - carousel pleine largeur (mode vertical) */
@media (min-width: 992px) {
  .multislides .carousel {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.multislides {
  /* DEFAULTS */
}
.multislides .carousel-inner {
  background: #F7F7F9;
  max-width: 550px;
  border-radius: 15px;
  padding: 60px;
}
.multislides .carousel-inner .active,
.multislides .carousel-inner .next,
.multislides .carousel-inner .prev {
  display: block;
}
.multislides .carousel-inner .active {
  left: 0;
}
.multislides .carousel-inner .active.left {
  left: -100%;
}
.multislides .carousel-inner .active.right {
  left: 100%;
}
.multislides .carousel-inner .next,
.multislides .carousel-inner .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.multislides .carousel-inner .next {
  left: 100%;
}
.multislides .carousel-inner .next.left {
  left: 0;
}
.multislides .carousel-inner .prev {
  left: -100%;
}
.multislides .carousel-inner .prev.right {
  left: 0;
}
.multislides {
  /* MULTISLIDES OVERRIDES */
}
.multislides .carousel-control {
  width: 8%;
  width: 0px;
}
.multislides .carousel-control.left, .multislides .carousel-control.right {
  margin-right: 40px;
  margin-left: 32px;
  background-image: none;
  opacity: 1;
}
.multislides .carousel-control a span {
  color: white;
  font-size: 29px !important;
}
.multislides .carousel-text {
  position: relative;
  min-height: 1px;
  padding: 5px;
  float: none;
  background-color: #F7F7F9;
}
.multislides .active div:first-child {
  display: block;
}
.multislides {
  /*xxs*/
}
@media (max-width: 575px) {
  .multislides .carousel-inner .active.left {
    left: -100%;
  }
  .multislides .carousel-inner .active.right {
    left: 100%;
  }
  .multislides .carousel-inner .next {
    left: 100%;
  }
  .multislides .carousel-inner .prev {
    left: -100%;
  }
  .multislides .carousel-text {
    width: 100%;
  }
  .multislides .active div:first-child {
    display: block;
  }
}
.multislides {
  /*xs*/
}
@media (min-width: 576px) and (max-width: 767px) {
  .multislides .carousel-inner .active.left {
    left: -50%;
  }
  .multislides .carousel-inner .active.right {
    left: 50%;
  }
  .multislides .carousel-inner .next {
    left: 50%;
  }
  .multislides .carousel-inner .prev {
    left: -50%;
  }
  .multislides .carousel-text {
    width: 50%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
}
.multislides {
  /*sm*/
}
@media (min-width: 768px) and (max-width: 991px) {
  .multislides .carousel-inner .active.left {
    left: -50%;
  }
  .multislides .carousel-inner .active.right {
    left: 50%;
  }
  .multislides .carousel-inner .next {
    left: 50%;
  }
  .multislides .carousel-inner .prev {
    left: -50%;
  }
  .multislides .carousel-text {
    width: 50%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
}
.multislides {
  /*md*/
}
@media (min-width: 992px) and (max-width: 1199px) {
  .multislides .carousel-inner .active.left {
    left: -50%;
  }
  .multislides .carousel-inner .active.right {
    left: 50%;
  }
  .multislides .carousel-inner .next {
    left: 50%;
  }
  .multislides .carousel-inner .prev {
    left: -50%;
  }
  .multislides .carousel-text {
    width: 50%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
}
.multislides {
  /*lg*/
}
@media (min-width: 1200px) {
  .multislides .carousel-inner .active.left {
    left: -50%;
  }
  .multislides .carousel-inner .active.right {
    left: 50%;
  }
  .multislides .carousel-inner .next {
    left: 50%;
  }
  .multislides .carousel-inner .prev {
    left: -50%;
  }
  .multislides .carousel-text {
    width: 50%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
  .multislides .active > div:first-child + div + div {
    display: block;
  }
  .multislides .active > div:first-child + div + div + div {
    display: block;
  }
}

.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: #F7F7F9;
  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: #393575;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #393575;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #393575;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #393575;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #393575;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #393575;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  background-repeat: no-repeat;
  right: -13px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 5px;
  height: 8px;
  animation-name: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover, .zone-community .row .sidebar .jumbotron a:last-of-type:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #F4D8A2;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover:after, .zone-community .row .sidebar .jumbotron a:last-of-type:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #393575;
  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;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul {
  list-style: none;
}
.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: #393575;
  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: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !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 {
  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 {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !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 {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-community .row .content ul.nav li a {
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #393575 !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: 19px;
  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: #393575;
}
.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: #393575 !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;
}

.cookie-consent-modal {
  width: 90% !important;
  max-width: 500px !important;
  gap: 4px;
  padding: 40px 60px 30px 50px;
  box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .cookie-consent-modal {
    margin-right: 70px !important;
  }
}
.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 p, .cookie-consent-modal span, .cookie-consent-modal ul, .cookie-consent-modal li, .cookie-consent-modal button {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.cookie-consent-modal P.consent-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #242424;
}
.cookie-consent-modal p.consent-description {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  color: #000;
}
.cookie-consent-modal p.consent-description a {
  color: #393575 !important;
  text-decoration: underline !important;
  opacity: 1 !important;
}
.cookie-consent-modal p.consent-description a:hover {
  color: #F4D8A2;
  text-decoration: none;
}
.cookie-consent-modal .actions-container {
  justify-content: flex-end !important;
  gap: 40px !important;
  padding-top: 0 !important;
}
.cookie-consent-modal .actions-container .btn-link {
  text-transform: initial;
  padding: 20px 0 !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: none !important;
  border-bottom: 1px solid #393575 !important;
}
.cookie-consent-modal .actions-container .btn-link:hover, .cookie-consent-modal .actions-container .btn-link:active, .cookie-consent-modal .actions-container .btn-link:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  color: #393575 !important;
  border-bottom: 1px solid #F4D8A2 !important;
}
.cookie-consent-modal .actions-container .btn-primary {
  text-transform: initial;
}

.cookie-modal .cm-modal .cm-header a {
  color: #F4D8A2 !important;
  opacity: 1 !important;
}
.cookie-modal .cm-modal .cm-header p {
  opacity: 1 !important;
}
.cookie-modal .cm-modal .cm-header h1 {
  opacity: 1 !important;
}
.cookie-modal .cm-modal .cm-body .cm-services {
  opacity: 1 !important;
}
.cookie-modal .cm-modal .cm-body .cm-services .cm-service {
  opacity: 1 !important;
}
.cookie-modal .cm-modal .cm-body .cm-services .cm-service a {
  color: #393575 !important;
}
.cookie-modal .cm-modal .cm-body .cm-services .cm-service p {
  opacity: 1 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline {
  border-radius: 0 !important;
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline {
  padding: 20px 0 !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: none !important;
  border-bottom: 1px solid #393575 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  color: #393575 !important;
  border-bottom: 1px solid #F4D8A2 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #F4D8A2 !important;
  background-color: transparent !important;
  color: #393575 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #393575 !important;
  color: #393575 !important;
}

/* GRID SPACE **********/
/* columns */
/* rows */
/* ITEM **********/
/* img */
.prebuilt-articles-vedette-col3 .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 15px;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
.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: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item a.news-category {
  order: 4;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.prebuilt-articles-vedette-col3 .newsList .row .item a.news-category {
  margin-bottom: 0;
  color: #393575 !important;
  font-weight: 600;
  text-transform: inherit;
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item a.news-category:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date {
  order: 3;
  margin-bottom: 5px;
  font-weight: 600;
  color: #393575 !important;
  text-transform: inherit;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  margin-bottom: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  font-weight: 600;
  text-transform: inherit;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.actions {
  margin-top: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.actions a {
  margin-top: 30px;
}
.prebuilt-articles-vedette-col3 a.viewAll {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.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 {
  background-color: transparent;
  color: #393575;
  padding: 15px 0;
  transition: all 150ms;
  border: none;
  border-bottom: 1px solid #393575;
  border-radius: 0;
}
.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: #393575;
  border: none;
  border-bottom: 1px solid #F4D8A2;
}

@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 {
    padding-top: 60px;
  }
}
.prebuilt-articles-multiples-col3 {
  padding-top: 130px;
}
.prebuilt-articles-multiples-col3 #newsFilterForm {
  padding-bottom: 50px;
}
.prebuilt-articles-multiples-col3 .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 15px;
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div {
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a {
  order: 1;
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 {
  order: 2;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category {
  order: 4;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category {
  margin-bottom: 0;
  color: #393575 !important;
  font-weight: 600;
  text-transform: inherit;
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div .e-date {
  order: 3;
  margin-bottom: 5px;
  font-weight: 600;
  color: #393575 !important;
  text-transform: inherit;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div p.news-keywords {
  order: 5;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div p.news-keywords {
  font-weight: 600;
  text-transform: inherit;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro {
  order: 6;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
  order: 7;
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:active, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
    white-space: normal !important;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:active, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
  width: fit-content;
  margin-top: 30px;
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 {
  /*
  >a:not(&:first-child){
      order: 6;
      @include btn;
      @include btn-link;
  }
  */
}

/* GRID SPACE **********/
/* columns */
/* rows */
/* ITEM **********/
/* img */
/* h3 */
.prebuilt-evenement-en-vedette {
  padding-top: 40px;
  padding-bottom: 80px;
}
.prebuilt-evenement-en-vedette .zone-event_flash h2 {
  margin-bottom: 35px;
}
.prebuilt-evenement-en-vedette .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 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row {
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette .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 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 210px !important;
  }
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 800;
  text-transform: initial;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item hr {
  display: none;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-intro {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-intro p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions {
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a {
  margin-top: 20px;
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary {
  background-color: transparent;
  color: #393575;
  transition: all 150ms;
  border: 1px solid #393575;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:hover, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:active, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:focus {
  background-color: #393575;
  border: 1px solid #F4D8A2;
  color: #fff;
}
/* 
Mosaique
1 collone
Résumer au centre
*/
.prebuilt-espace-evenements {
  padding-top: 80px;
  padding-bottom: 80px;
}
.prebuilt-espace-evenements .zone-event h2 {
  margin-bottom: 35px;
}
.prebuilt-espace-evenements .zone-event .event_list_filter {
  padding-bottom: 60px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 15px;
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row {
  margin-top: 0;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 800;
  text-transform: initial;
  margin-bottom: 15px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item .e-date {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item .events-mosaic__short-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item .events-mosaic__short-description p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  text-transform: inherit;
  margin-bottom: 15px;
}
/*
body.activities-details {
    .line-evenements {
        padding-top: 60px;
    }
}
*/
/*
.line-evenements {
    padding-top: 30px;
    padding-bottom: 140px;
    */
.zone-event .row .event-detail .row-event-jumbotron__left-right {
  display: flex;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right {
    flex-direction: column;
    gap: 60px;
    justify-content: space-between;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .jumbotron {
  position: sticky;
  top: 120px;
  background: transparent !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .jumbotron p {
  font-size: 18px !important;
  line-height: 22px !important;
  color: #393575 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  /*width: 33.33333%;*/
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  padding: 10px 20px;
  border-radius: 40px;
  display: inline-block;
  background: #F4D8A2;
  font-weight: 700;
  font-size: 18px;
  color: #393575;
  font-style: normal;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  margin-top: 0 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__image-wrapper img {
  border-radius: 8px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper h4 {
  margin-top: 25px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper table.photos {
  max-width: 628px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper table.photos {
    max-width: 300px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper table.photos {
  position: relative;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper table.photos:after {
  content: "";
  background: #F4D8A2;
  display: block;
  width: 172px;
  height: 2px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper table.photos tbody tr {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper table.photos tbody tr td img {
  max-width: 300px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  margin-top: 60px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
  display: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav {
  display: block;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta {
  display: flex;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default {
  text-decoration: none !important;
  border-radius: 0px !important;
  padding: 20px 0 !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: none !important;
  border-bottom: 1px solid #393575 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  color: #393575 !important;
  border-bottom: 1px solid #F4D8A2 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
  /*width: 66.66666%;*/
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left {
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  padding: 0px 40px 30px 40px;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left {
    padding: 0 0 30px 0;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date {
  color: #393575;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F4D8A2;
  font-size: 32px !important;
  line-height: 40px !important;
  text-transform: none;
}
.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: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .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: 24px;
    line-height: 28px;
  }
}
.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 {
  color: #393575;
  margin-bottom: 20px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-place {
  font-size: 18px;
  line-height: 24px;
  color: #393575;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-country {
  display: 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 {
  display: flex;
  flex-direction: column;
}
.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 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .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 {
    font-size: 24px;
    line-height: 28px;
  }
}
.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 {
  color: #393575;
  margin-bottom: 20px;
}
.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 {
  font-size: 18px;
  line-height: 24px;
  color: #393575;
}
.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 a, .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 a, .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 a {
  font-size: 18px !important;
  line-height: 24px !important;
  color: #393575 !important;
  text-decoration: none !important;
}
.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 {
  margin-top: 20px;
  padding-bottom: 20px;
  color: #393575 !important;
  border-bottom: 2px solid #F4D8A2;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !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 {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}

/*
}
    */
.line-alert-info {
  background: #F4D8A2;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .line-alert-info {
    display: none !important;
  }
}
.line-alert-info .container {
  position: relative;
}
.line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p {
  margin-bottom: 0 !important;
}
.line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p:first-of-type {
  text-align: center;
  color: #393575;
}
.line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p:first-of-type a {
  color: #393575 !important;
  text-decoration: none !important;
  position: relative;
}
.line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p:first-of-type a:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/mini-fleche-boite-contextuelle.svg);
  background-repeat: no-repeat;
  width: 19px;
  height: 20px;
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}
.line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p:first-of-type a:hover {
  text-decoration: underline !important;
}
.line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p:last-of-type {
  max-width: fit-content;
}
.line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p:last-of-type #close-box {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .line-alert-info .container > .row > div .mod-article__wrapper .news-content .mod-article__content p:last-of-type #close-box {
    right: 25px;
    top: 5px;
  }
}
.line-alert-info {
  /*
  background-color: $primary;
  padding-top: 20px;
  padding-bottom: 20px;
  .container {
      >.row {
          >div {
              .content {
                  display: flex;
                  justify-content: space-between;
                  a {
                      color: $clrWhite!important;
                  }
                  .close {
                      font-family: $font;
                      color: $primary;
                      font-size: 9rem;
                      line-height: 40px;
                      font-weight: 100;
                      margin: 5px 5px 0 0;
                      display: block;
                      cursor: pointer;
                      opacity: 1;
                      text-shadow: none;
                      filter: invert(1);
                      @include max-sm {
                          font-size: 4rem;
                          line-height: 30px;
                      }
                  }
              }
          }
      }
  }
  */
}

.line-sticky {
  position: relative;
  z-index: 10;
}
.line-sticky .content {
  opacity: 1;
  position: fixed;
  right: -60px;
  top: 300px;
}
.line-sticky .content:hover {
  animation-name: anime-faire-don;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.line-sticky .content .sticky-container {
  transform: rotate(270deg);
  -webkit-transform-origin: 50% 51%;
  border-radius: 100px;
  transition: translate 300ms;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-sticky .content .sticky-container {
    display: none;
  }
}
.line-sticky .content .sticky-container .btn-sticky {
  width: auto;
  height: 55px;
  display: block;
  background-color: #F7F7F9;
  padding: 19px 27px 13px 70px;
  line-height: 14px;
  font-size: 20px;
  font-weight: 400;
  color: #393575 !important;
  border-radius: 33px;
  text-decoration: none !important;
  text-align: right;
  transition: all 150ms;
  border: 1px solid #393575;
}
.line-sticky .content .sticky-container .btn-sticky:hover, .line-sticky .content .sticky-container .btn-sticky:focus, .line-sticky .content .sticky-container .btn-sticky:active {
  background-color: #F7F7F9;
  text-decoration: none !important;
  font-weight: 400 !important;
  transition: all 150ms;
  border: 1px solid #393575;
}
.line-sticky .content .sticky-container .btn-sticky::after {
  content: "";
  width: 48px;
  height: 53px;
  display: block;
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_asset/mini-logo-faire-un-don-parcours-adoption-quebec.svg) center center no-repeat;
  background-size: 46px;
  position: relative;
  left: -60px;
  bottom: 32px;
  rotate: 90deg;
}

/** bt slide **/
/** bt slide - up/down loop **/
.anime-faire-don {
  -webkit-animation: anime-faire-don 1.5s ease-in-out infinite;
  animation: anime-faire-don 1.5s ease-in-out infinite;
}

@keyframes anime-faire-don {
  0%, 100% {
    top: 300px;
  }
  50% {
    top: 290px;
  }
}
/* Menu & Footer social icons svg to css*/
/* https://www.svgbackgrounds.com/tools/svg-to-css/ */
/* Browser support: Legacy (IE9+) */
/* CSS Helpers: Basic background-image */
/** variables **/
/* Exemple couleur svg = %23 + #ffffff*/
/* scss*/
ul.social {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style-type: none;
  margin-bottom: 0 !important;
  padding-left: 0;
}
ul.social li {
  width: 62px;
  display: flex;
  justify-content: flex-end;
}
ul.social li a {
  text-decoration: none !important;
  width: 20px;
}
ul.social li a.email {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='22' viewBox='0 0 34 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='32' height='20' rx='2' stroke='white' stroke-width='2'/%3E%3Cpath d='M3 2L17.79 10L32 2' stroke='%23074a8d' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 58px;
  height: 58px;
  display: block;
}
ul.social li a.email:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='22' viewBox='0 0 34 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='32' height='20' rx='2' stroke='white' stroke-width='2'/%3E%3Cpath d='M3 2L17.79 10L32 2' stroke='%23074a8d' stroke-width='2'/%3E%3C/svg%3E");
}
ul.social li a.bluesky {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 28 28'%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: %23%23188af5%3B %7D %3C/style%3E%3C/defs%3E%3Cg id='jyutC3.tif'%3E%3Cpath class='st0' d='M7.79 6.3c2.51 1.89 5.22 5.73 6.21 7.8v5.44c0-.12-.04.02-.14.3-.52 1.53-2.54 7.49-7.17 2.72-2.44-2.51-1.31-5.02 3.13-5.78-2.54.43-5.39-.28-6.17-3.09-.23-.81-.61-5.78-.61-6.45 0-3.37 2.94-2.31 4.75-.94ZM20.21 6.3c-2.51 1.89-5.22 5.73-6.21 7.8v5.44c0-.12.04.02.14.3.52 1.53 2.54 7.49 7.17 2.72 2.44-2.51 1.31-5.02-3.13-5.78 2.54.43 5.39-.28 6.17-3.09.23-.81.61-5.78.61-6.45 0-3.37-2.94-2.31-4.75-.94h0Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
}
ul.social li a.bluesky:hover {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 28 28'%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: %23%23074a8d%3B %7D %3C/style%3E%3C/defs%3E%3Cg id='jyutC3.tif'%3E%3Cpath class='st0' d='M7.79 6.3c2.51 1.89 5.22 5.73 6.21 7.8v5.44c0-.12-.04.02-.14.3-.52 1.53-2.54 7.49-7.17 2.72-2.44-2.51-1.31-5.02 3.13-5.78-2.54.43-5.39-.28-6.17-3.09-.23-.81-.61-5.78-.61-6.45 0-3.37 2.94-2.31 4.75-.94ZM20.21 6.3c-2.51 1.89-5.22 5.73-6.21 7.8v5.44c0-.12.04.02.14.3.52 1.53 2.54 7.49 7.17 2.72 2.44-2.51 1.31-5.02-3.13-5.78 2.54.43 5.39-.28 6.17-3.09.23-.81.61-5.78.61-6.45 0-3.37-2.94-2.31-4.75-.94h0Z'/%3E%3C/g%3E%3C/svg%3E");
}
ul.social li a.instagram {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 5.80188C16.67 5.80188 16.9865 5.81189 18.041 5.86014C18.6749 5.86773 19.3028 5.98441 19.8974 6.2047C20.3318 6.36496 20.7248 6.62076 21.0474 6.95289C21.3796 7.2755 21.6354 7.66848 21.7956 8.10293C22.0159 8.69748 22.1326 9.32544 22.1402 9.95936C22.1884 11.0139 22.1984 11.3303 22.1984 14.0003C22.1984 16.6703 22.1884 16.9868 22.1402 18.0413C22.1326 18.6752 22.0159 19.3032 21.7956 19.8977C21.4591 20.77 20.7697 21.4595 19.8974 21.7959C19.3028 22.0162 18.6749 22.1329 18.041 22.1405C16.9865 22.1888 16.67 22.1988 14 22.1988C11.33 22.1988 11.0135 22.1888 9.95904 22.1405C9.32479 22.1329 8.69651 22.0164 8.1018 21.7959C7.66767 21.6355 7.27502 21.3799 6.95273 21.0478C6.6206 20.7251 6.3648 20.3322 6.20454 19.8977C5.98425 19.3032 5.86757 18.6752 5.85998 18.0413C5.81173 16.9868 5.80172 16.6703 5.80172 14.0003C5.80172 11.3303 5.81173 11.0139 5.85998 9.95936C5.86757 9.32544 5.98425 8.69748 6.20454 8.10293C6.3648 7.66848 6.6206 7.2755 6.95273 6.95289C7.27534 6.62076 7.66832 6.36496 8.10277 6.2047C8.69732 5.98441 9.32527 5.86773 9.9592 5.86014C11.0137 5.81189 11.3302 5.80188 14.0002 5.80188M14 4C11.2845 4 10.9437 4.01178 9.87722 4.06004C9.04769 4.07666 8.22688 4.23369 7.44996 4.52451C6.78231 4.77579 6.17775 5.16989 5.6781 5.67907C5.16941 6.1784 4.77562 6.78279 4.52451 7.44996C4.23385 8.22704 4.07714 9.04785 4.06084 9.87722C4.01081 10.9437 4 11.2845 4 14C4 16.7155 4.01178 17.0563 4.06004 18.1228C4.07666 18.9523 4.23369 19.7731 4.52451 20.55C4.77579 21.2177 5.16989 21.8222 5.67907 22.3219C6.1784 22.8306 6.78279 23.2244 7.44996 23.4755C8.22704 23.7662 9.04785 23.9229 9.87722 23.9392C10.9437 23.9892 11.2845 24 14 24C16.7155 24 17.0563 23.9882 18.1228 23.94C18.9523 23.9233 19.7731 23.7663 20.55 23.4755C21.8937 22.956 22.956 21.8937 23.4755 20.55C23.7662 19.773 23.9229 18.9521 23.9392 18.1228C23.9892 17.0563 24 16.7155 24 14C24 11.2845 23.9882 10.9437 23.94 9.87722C23.9233 9.04769 23.7663 8.22688 23.4755 7.44996C23.2242 6.78231 22.8301 6.17775 22.3209 5.6781C21.8216 5.16941 21.2172 4.77562 20.55 4.52451C19.773 4.23385 18.9521 4.07714 18.1228 4.06084C17.0563 4.01081 16.7155 4 14 4ZM14 8.86468C11.1638 8.86468 8.86452 11.164 8.86452 14.0002C8.86452 16.8364 11.1638 19.1356 14 19.1356C16.8362 19.1356 19.1355 16.8364 19.1355 14.0002C19.1355 11.164 16.8362 8.86468 14 8.86468ZM14 17.3338C12.1589 17.3338 10.6662 15.8413 10.6662 14C10.6662 12.1589 12.1587 10.6662 14 10.6662C15.8413 10.6662 17.3338 12.1587 17.3338 14C17.3338 15.8411 15.8413 17.3338 14 17.3338ZM19.3382 7.4619C18.6754 7.4619 18.1381 7.99916 18.1381 8.66198C18.1381 9.32479 18.6754 9.86205 19.3382 9.86205C20.001 9.86205 20.5383 9.32479 20.5383 8.66198C20.5383 7.99916 20.001 7.4619 19.3382 7.4619Z' fill='%23188af5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
}
ul.social li a.instagram:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 5.80188C16.67 5.80188 16.9865 5.81189 18.041 5.86014C18.6749 5.86773 19.3028 5.98441 19.8974 6.2047C20.3318 6.36496 20.7248 6.62076 21.0474 6.95289C21.3796 7.2755 21.6354 7.66848 21.7956 8.10293C22.0159 8.69748 22.1326 9.32544 22.1402 9.95936C22.1884 11.0139 22.1984 11.3303 22.1984 14.0003C22.1984 16.6703 22.1884 16.9868 22.1402 18.0413C22.1326 18.6752 22.0159 19.3032 21.7956 19.8977C21.4591 20.77 20.7697 21.4595 19.8974 21.7959C19.3028 22.0162 18.6749 22.1329 18.041 22.1405C16.9865 22.1888 16.67 22.1988 14 22.1988C11.33 22.1988 11.0135 22.1888 9.95904 22.1405C9.32479 22.1329 8.69651 22.0164 8.1018 21.7959C7.66767 21.6355 7.27502 21.3799 6.95273 21.0478C6.6206 20.7251 6.3648 20.3322 6.20454 19.8977C5.98425 19.3032 5.86757 18.6752 5.85998 18.0413C5.81173 16.9868 5.80172 16.6703 5.80172 14.0003C5.80172 11.3303 5.81173 11.0139 5.85998 9.95936C5.86757 9.32544 5.98425 8.69748 6.20454 8.10293C6.3648 7.66848 6.6206 7.2755 6.95273 6.95289C7.27534 6.62076 7.66832 6.36496 8.10277 6.2047C8.69732 5.98441 9.32527 5.86773 9.9592 5.86014C11.0137 5.81189 11.3302 5.80188 14.0002 5.80188M14 4C11.2845 4 10.9437 4.01178 9.87722 4.06004C9.04769 4.07666 8.22688 4.23369 7.44996 4.52451C6.78231 4.77579 6.17775 5.16989 5.6781 5.67907C5.16941 6.1784 4.77562 6.78279 4.52451 7.44996C4.23385 8.22704 4.07714 9.04785 4.06084 9.87722C4.01081 10.9437 4 11.2845 4 14C4 16.7155 4.01178 17.0563 4.06004 18.1228C4.07666 18.9523 4.23369 19.7731 4.52451 20.55C4.77579 21.2177 5.16989 21.8222 5.67907 22.3219C6.1784 22.8306 6.78279 23.2244 7.44996 23.4755C8.22704 23.7662 9.04785 23.9229 9.87722 23.9392C10.9437 23.9892 11.2845 24 14 24C16.7155 24 17.0563 23.9882 18.1228 23.94C18.9523 23.9233 19.7731 23.7663 20.55 23.4755C21.8937 22.956 22.956 21.8937 23.4755 20.55C23.7662 19.773 23.9229 18.9521 23.9392 18.1228C23.9892 17.0563 24 16.7155 24 14C24 11.2845 23.9882 10.9437 23.94 9.87722C23.9233 9.04769 23.7663 8.22688 23.4755 7.44996C23.2242 6.78231 22.8301 6.17775 22.3209 5.6781C21.8216 5.16941 21.2172 4.77562 20.55 4.52451C19.773 4.23385 18.9521 4.07714 18.1228 4.06084C17.0563 4.01081 16.7155 4 14 4ZM14 8.86468C11.1638 8.86468 8.86452 11.164 8.86452 14.0002C8.86452 16.8364 11.1638 19.1356 14 19.1356C16.8362 19.1356 19.1355 16.8364 19.1355 14.0002C19.1355 11.164 16.8362 8.86468 14 8.86468ZM14 17.3338C12.1589 17.3338 10.6662 15.8413 10.6662 14C10.6662 12.1589 12.1587 10.6662 14 10.6662C15.8413 10.6662 17.3338 12.1587 17.3338 14C17.3338 15.8411 15.8413 17.3338 14 17.3338ZM19.3382 7.4619C18.6754 7.4619 18.1381 7.99916 18.1381 8.66198C18.1381 9.32479 18.6754 9.86205 19.3382 9.86205C20.001 9.86205 20.5383 9.32479 20.5383 8.66198C20.5383 7.99916 20.001 7.4619 19.3382 7.4619Z' fill='%23074a8d'/%3E%3C/svg%3E");
}
ul.social li a.spotify {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='31' cy='31' r='31' fill='%23F4D8A2'/%3E%3Cpath d='M42.8083 28.8918C36.675 25.2502 26.4208 24.8668 20.575 26.6877C19.6166 26.9752 18.6583 26.4002 18.3708 25.5377C18.0833 24.5793 18.6583 23.621 19.5208 23.3335C26.325 21.321 37.5375 21.7043 44.6291 25.921C45.4916 26.4002 45.7791 27.5502 45.3 28.4127C44.8208 29.0835 43.6708 29.371 42.8083 28.8918ZM42.6166 34.2585C42.1375 34.9293 41.275 35.2168 40.6041 34.7377C35.4291 31.5752 27.5708 30.6168 21.5333 32.5335C20.7666 32.7252 19.9041 32.3418 19.7125 31.5752C19.5208 30.8085 19.9041 29.946 20.6708 29.7543C27.6666 27.646 36.2916 28.7002 42.2333 32.3418C42.8083 32.6293 43.0958 33.5877 42.6166 34.2585ZM40.3166 39.5293C39.9333 40.1043 39.2625 40.296 38.6875 39.9127C34.1833 37.1335 28.5291 36.5585 21.8208 38.0918C21.15 38.2835 20.575 37.8043 20.3833 37.2293C20.1916 36.5585 20.6708 35.9835 21.2458 35.7918C28.5291 34.1627 34.8541 34.8335 39.8375 37.9002C40.5083 38.1877 40.6041 38.9543 40.3166 39.5293ZM31.5 11.8335C28.983 11.8335 26.4906 12.3293 24.1652 13.2925C21.8398 14.2557 19.7269 15.6675 17.9471 17.4473C14.3527 21.0417 12.3333 25.9168 12.3333 31.0002C12.3333 36.0835 14.3527 40.9586 17.9471 44.553C19.7269 46.3328 21.8398 47.7446 24.1652 48.7079C26.4906 49.6711 28.983 50.1668 31.5 50.1668C36.5833 50.1668 41.4584 48.1475 45.0529 44.553C48.6473 40.9586 50.6666 36.0835 50.6666 31.0002C50.6666 28.4832 50.1709 25.9908 49.2077 23.6654C48.2445 21.34 46.8326 19.2271 45.0529 17.4473C43.2731 15.6675 41.1602 14.2557 38.8347 13.2925C36.5093 12.3293 34.017 11.8335 31.5 11.8335Z' fill='%23393575'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-size: cover;
  width: 62px;
  height: 62px;
  display: block;
}
ul.social li a.spotify:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='31' cy='31' r='31' fill='%23F7F7F9'/%3E%3Cpath d='M42.8083 28.8918C36.675 25.2502 26.4208 24.8668 20.575 26.6877C19.6166 26.9752 18.6583 26.4002 18.3708 25.5377C18.0833 24.5793 18.6583 23.621 19.5208 23.3335C26.325 21.321 37.5375 21.7043 44.6291 25.921C45.4916 26.4002 45.7791 27.5502 45.3 28.4127C44.8208 29.0835 43.6708 29.371 42.8083 28.8918ZM42.6166 34.2585C42.1375 34.9293 41.275 35.2168 40.6041 34.7377C35.4291 31.5752 27.5708 30.6168 21.5333 32.5335C20.7666 32.7252 19.9041 32.3418 19.7125 31.5752C19.5208 30.8085 19.9041 29.946 20.6708 29.7543C27.6666 27.646 36.2916 28.7002 42.2333 32.3418C42.8083 32.6293 43.0958 33.5877 42.6166 34.2585ZM40.3166 39.5293C39.9333 40.1043 39.2625 40.296 38.6875 39.9127C34.1833 37.1335 28.5291 36.5585 21.8208 38.0918C21.15 38.2835 20.575 37.8043 20.3833 37.2293C20.1916 36.5585 20.6708 35.9835 21.2458 35.7918C28.5291 34.1627 34.8541 34.8335 39.8375 37.9002C40.5083 38.1877 40.6041 38.9543 40.3166 39.5293ZM31.5 11.8335C28.983 11.8335 26.4906 12.3293 24.1652 13.2925C21.8398 14.2557 19.7269 15.6675 17.9471 17.4473C14.3527 21.0417 12.3333 25.9168 12.3333 31.0002C12.3333 36.0835 14.3527 40.9586 17.9471 44.553C19.7269 46.3328 21.8398 47.7446 24.1652 48.7079C26.4906 49.6711 28.983 50.1668 31.5 50.1668C36.5833 50.1668 41.4584 48.1475 45.0529 44.553C48.6473 40.9586 50.6666 36.0835 50.6666 31.0002C50.6666 28.4832 50.1709 25.9908 49.2077 23.6654C48.2445 21.34 46.8326 19.2271 45.0529 17.4473C43.2731 15.6675 41.1602 14.2557 38.8347 13.2925C36.5093 12.3293 34.017 11.8335 31.5 11.8335Z' fill='%23393575'/%3E%3C/svg%3E ");
}
ul.social li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='31' cy='31' r='31' fill='%23F4D8A2'/%3E%3Cpath d='M23.1409 20.4755C23.1406 21.2712 22.8416 22.0342 22.31 22.5966C21.7783 23.159 21.0574 23.4747 20.3059 23.4743C19.5543 23.4739 18.8337 23.1574 18.3026 22.5945C17.7714 22.0315 17.4733 21.2682 17.4736 20.4725C17.474 19.6767 17.7729 18.9137 18.3046 18.3514C18.8363 17.789 19.5572 17.4732 20.3087 17.4736C21.0602 17.474 21.7808 17.7905 22.312 18.3535C22.8431 18.9164 23.1413 19.6797 23.1409 20.4755ZM23.2259 25.6961H17.5586V44.4783H23.2259V25.6961ZM32.1803 25.6961H26.5413V44.4783H32.1236V34.6221C32.1236 29.1315 38.8818 28.6214 38.8818 34.6221V44.4783H44.4783V32.5819C44.4783 23.3258 34.4755 23.6709 32.1236 28.2164L32.1803 25.6961Z' fill='%23393575'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-size: cover;
  width: 62px;
  height: 62px;
  display: block;
}
ul.social li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='31' cy='31' r='31' fill='%23F7F7F9'/%3E%3Cpath d='M23.1409 20.4755C23.1406 21.2712 22.8416 22.0342 22.31 22.5966C21.7783 23.159 21.0574 23.4747 20.3059 23.4743C19.5543 23.4739 18.8337 23.1574 18.3026 22.5945C17.7714 22.0315 17.4733 21.2682 17.4736 20.4725C17.474 19.6767 17.7729 18.9137 18.3046 18.3514C18.8363 17.789 19.5572 17.4732 20.3087 17.4736C21.0602 17.474 21.7808 17.7905 22.312 18.3535C22.8431 18.9164 23.1413 19.6797 23.1409 20.4755ZM23.2259 25.6961H17.5586V44.4783H23.2259V25.6961ZM32.1803 25.6961H26.5413V44.4783H32.1236V34.6221C32.1236 29.1315 38.8818 28.6214 38.8818 34.6221V44.4783H44.4783V32.5819C44.4783 23.3258 34.4755 23.6709 32.1236 28.2164L32.1803 25.6961Z' fill='%23393575'/%3E%3C/svg%3E ");
}
ul.social li a.facebook {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='31' cy='31' r='31' fill='%23F4D8A2'/%3E%3Cpath d='M37.0882 33.6142L37.7568 28.438H32.6363V25.136C32.6363 23.6365 33.0562 22.6153 35.2039 22.6153H37.9426V17.9834C36.6164 17.8431 35.2836 17.7752 33.95 17.78C29.9999 17.78 27.2934 20.1925 27.2934 24.624V28.441H22.8224V33.6142H27.2934V45.1983H32.6377V33.6142H37.0882Z' fill='%23393575'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 62px;
  height: 62px;
  display: block;
  position: relative;
}
ul.social li a.facebook:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='31' cy='31' r='31' fill='%23F7F7F9'/%3E%3Cpath d='M37.088 33.6142L37.7567 28.438H32.6362V25.136C32.6362 23.6365 33.056 22.6153 35.2037 22.6153H37.9424V17.9834C36.6163 17.8431 35.2834 17.7752 33.9499 17.78C29.9997 17.78 27.2933 20.1925 27.2933 24.624V28.441H22.8223V33.6142H27.2933V45.1983H32.6376V33.6142H37.088Z' fill='%23393575'/%3E%3C/svg%3E%0A");
}
ul.social li a.youtube {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4932' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4932)'%3E%3Cpath d='M20.2821 7.80798H8.64709C6.42209 7.80798 5.51904 9.60798 5.51904 11.837V16.098C5.51904 18.323 6.51907 20.127 8.74207 20.127H20.1881C22.4121 20.127 23.1731 18.327 23.1731 16.098V11.837C23.1731 9.61098 22.5071 7.80798 20.2821 7.80798ZM12.7251 16.383V11.551L17.353 13.967L12.7251 16.383Z' fill='%23188af5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
}
ul.social li a.youtube:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4932' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4932)'%3E%3Cpath d='M20.2821 7.80798H8.64709C6.42209 7.80798 5.51904 9.60798 5.51904 11.837V16.098C5.51904 18.323 6.51907 20.127 8.74207 20.127H20.1881C22.4121 20.127 23.1731 18.327 23.1731 16.098V11.837C23.1731 9.61098 22.5071 7.80798 20.2821 7.80798ZM12.7251 16.383V11.551L17.353 13.967L12.7251 16.383Z' fill='%23074a8d'/%3E%3C/g%3E%3C/svg%3E");
}
ul.social li a.x {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4937' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4937)'%3E%3Cpath d='M7.08 6.12904H9.428L20.235 21.268H17.887L7.08 6.12904ZM20.236 5.00104L14.636 11.376L10.16 5.00104H5L11.765 14.642L5 22.342H6.528L12.442 15.608L17.166 22.342H22.325L15.312 12.342L21.764 5.00104H20.236Z' fill='%23188af5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.x:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4937' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4937)'%3E%3Cpath d='M7.08 6.12904H9.428L20.235 21.268H17.887L7.08 6.12904ZM20.236 5.00104L14.636 11.376L10.16 5.00104H5L11.765 14.642L5 22.342H6.528L12.442 15.608L17.166 22.342H22.325L15.312 12.342L21.764 5.00104H20.236Z' fill='%23074a8d'/%3E%3C/g%3E%3C/svg%3E");
}

@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: #393575;
  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: 19px;
  font-weight: 800;
  text-transform: initial;
}
@media (min-width: 1200px) {
  .intro .container > .row > div .content, .intro .container-fluid > .row > div .content {
    max-width: 62%;
  }
}

@media (max-width: 767px) {
  .line-title-link-all {
    padding-top: 50px;
  }
}
.line-title-link-all {
  padding-top: 108px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(1) {
    margin-bottom: 20px;
  }
}
.line-title-link-all .container > .row > div:nth-child(1) .content h2 {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.line-title-link-all .container > .row > div:nth-child(1) .content h2 {
  color: #F4D8A2;
  /*
  padding: 8px 14px 6px 10px;
  background-color: $third;
  border-radius: 5px;
  */
  max-width: fit-content;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
.line-title-link-all .container > .row > div:nth-child(2) .content {
  text-align: right;
}
.line-title-link-all .container > .row > div:nth-child(2) .content .btn {
  margin-top: 0px;
}

p.flex-btns {
  display: flex;
}
@media (max-width: 767px) {
  p.flex-btns {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  p.flex-btns .btn {
    max-width: fit-content;
  }
}
@media (min-width: 768px) {
  p.flex-btns.just-center {
    justify-content: center;
  }
}

.pink-arrow {
  position: relative;
}
.pink-arrow:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/fleche-rouge-horiz-gauche.svg);
  background-repeat: no-repeat;
  width: 573px;
  height: 318px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .pink-arrow:before {
    background-size: contain;
    width: 257px;
    height: 143px;
    bottom: unset;
    top: 235px;
    bottom: unset;
  }
}
.pink-arrow.soutien:before {
  bottom: 30%;
}
@media (max-width: 767px) {
  .pink-arrow.soutien:before {
    top: 220px;
  }
}
@media (max-width: 767px) {
  .pink-arrow.about:before {
    top: 337px;
  }
}
.pink-arrow.bottom15:before {
  bottom: 15%;
}
.pink-arrow.bottom30:before {
  bottom: 30%;
}
.pink-arrow.rapports:before {
  bottom: 15%;
}
@media (max-width: 767px) {
  .pink-arrow.rapports:before {
    bottom: unset;
    top: 530px;
  }
}
@media (max-width: 767px) {
  .pink-arrow.entraide:before {
    bottom: unset;
    top: 178px;
  }
}
.pink-arrow.parcours:before {
  bottom: 15%;
}
@media (max-width: 767px) {
  .pink-arrow.parcours:before {
    bottom: unset;
    top: 174px;
  }
}

.blue-arrow {
  position: relative;
}
.blue-arrow:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_parcours/bluearrow-bogVector.svg);
  background-repeat: no-repeat;
  width: 573px;
  height: 318px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .blue-arrow:before {
    background-size: contain;
    width: 257px;
    height: 143px;
  }
}
.blue-arrow.bottom15:before {
  bottom: 15%;
}
@media (max-width: 767px) {
  .blue-arrow.parcours:before {
    bottom: unset;
    top: 180px;
  }
}
@media (max-width: 767px) {
  .blue-arrow.dons:before {
    bottom: unset;
    top: 160px;
  }
}

.bottom-parallax-cta {
  padding-bottom: 225px !important;
  position: relative;
  overflow: visible;
}
@media (max-width: 767px) {
  .bottom-parallax-cta {
    padding-bottom: 125px;
  }
}
.bottom-parallax-cta:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 45%;
  width: 249px;
  height: 138px;
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/fleche-bleu-paralax.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-180px, 0) translateX(var(--arrow-x-blue, 0px));
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 767px) {
  .bottom-parallax-cta:before {
    top: 15%;
    width: 200px;
    height: 90px;
    left: 60%;
  }
}
.bottom-parallax-cta:after {
  content: "";
  position: absolute;
  top: 10%;
  left: 45%;
  width: 249px;
  height: 138px;
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/fleche-rouge-paralax.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(20px, 0) translateX(var(--arrow-x-pink, 0px));
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 767px) {
  .bottom-parallax-cta:after {
    top: 5%;
    left: 33%;
    width: 200px;
    height: 90px;
  }
}
.bottom-parallax-cta .container {
  position: relative;
  z-index: 1;
}
.neige-bg {
  background: #f7f7f9;
}

@media (max-width: 767px) {
  .image-text .container > .row, .image-text .container-fluid > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .image-text .container > .row > div:first-child, .image-text .container-fluid > .row > div:first-child {
    margin-bottom: 100px;
  }
}
.image-text .container > .row > div:first-child .content img, .image-text .container-fluid > .row > div:first-child .content img {
  border-radius: 15px;
  max-width: 100%;
  box-shadow: -22.363px 22.363px 49.027px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  .image-text .container > .row > div:first-child .content img, .image-text .container-fluid > .row > div:first-child .content img {
    max-width: 550px;
  }
}
@media (min-width: 1200px) {
  .image-text .container > .row > div:last-child .content, .image-text .container-fluid > .row > div:last-child .content {
    padding-left: 100px;
  }
}
.image-text .container > .row > div:last-child .content h2, .image-text .container > .row > div:last-child .content h3, .image-text .container-fluid > .row > div:last-child .content h2, .image-text .container-fluid > .row > div:last-child .content h3 {
  margin-bottom: 40px;
}
.image-text.big-pb {
  padding-bottom: 185px;
}
@media (max-width: 767px) {
  .image-text.big-pb {
    padding-bottom: 40px;
  }
}

.line-liens {
  padding-bottom: 210px;
}

.pb-extra {
  padding-bottom: 210px;
}

.line-form-title {
  position: relative;
}
.line-form-title .container {
  position: relative;
}
.line-form-title .container:before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #F4D8A2;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
}

.line-form .container {
  max-width: 940px;
  width: 100%;
}
.line-form .container form .form-group input:not(.btn):not([type=file]), .line-form .container form .form-group select, .line-form .container form .form-group textarea {
  font-size: 18px;
  background-color: #D9E8F3 !important;
  color: #393575;
  border: 1px solid #D9E8F3 !important;
  padding: 15px !important;
  border-radius: 5px !important;
}
@media (max-width: 767px) {
  .line-form .container form .form-group input:not(.btn):not([type=file]), .line-form .container form .form-group select, .line-form .container form .form-group textarea {
    padding: 5px !important;
  }
}
.line-form.bordertop .container > .row {
  padding-top: 142px;
  border-top: 3px solid #F4D8A2;
}

.line-partenaires-title .container > .row > div h2 {
  margin-bottom: 30px;
}
.line-partenaires-title .container > .row > div .content {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .line-partenaires-title .container > .row > div .content {
    max-width: 75%;
  }
}

.line-partenaires .container > .row > div h2 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .line-partenaires .container > .row > div .news-mosaic {
    gap: 30px;
  }
}
.line-partenaires .container > .row > div .news-mosaic > .row > div {
  display: flex;
  flex-direction: column;
}
.line-partenaires .container > .row > div .news-mosaic > .row > div h3 {
  font-weight: 300 !important;
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  text-transform: initial;
}
.line-partenaires.last .container > .row {
  padding-bottom: 142px;
  border-bottom: 3px solid #F4D8A2;
}

@media (max-width: 767px) {
  .rsv-membres .container > .row > div .content p br, .rsv-membres .container-fluid > .row > div .content p br {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .rsv-membres .container > .row > div .content .flex-btns, .rsv-membres .container-fluid > .row > div .content .flex-btns {
    align-items: center !important;
  }
}

@media (max-width: 991px) {
  .home-fold1 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 767px) {
  .home-fold1 {
    padding-top: 80px !important;
    padding-bottom: 35px !important;
  }
}
@media (max-width: 991px) {
  .home-fold1 .container > .row, .home-fold1 .container-fluid > .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 991px) {
  .home-fold1 .container > .row > div:first-child, .home-fold1 .container-fluid > .row > div:first-child {
    width: 100%;
    margin-bottom: 35px;
  }
}
.home-fold1 .container > .row > div:first-child .content h2, .home-fold1 .container-fluid > .row > div:first-child .content h2 {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .home-fold1 .container > .row > div:first-child .content h2, .home-fold1 .container-fluid > .row > div:first-child .content h2 {
    display: none;
  }
}
.home-fold1 .container > .row > div:first-child .content img, .home-fold1 .container-fluid > .row > div:first-child .content img {
  position: relative;
  z-index: 4;
  border-radius: 15px;
  max-width: 550px;
  box-shadow: -22px 22px 49px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1199px) and (min-width: 992px) {
  .home-fold1 .container > .row > div:first-child .content img, .home-fold1 .container-fluid > .row > div:first-child .content img {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .home-fold1 .container > .row > div:first-child .content img, .home-fold1 .container-fluid > .row > div:first-child .content img {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .home-fold1 .container > .row > div:first-child .content img, .home-fold1 .container-fluid > .row > div:first-child .content img {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .home-fold1 .container > .row > div:last-child, .home-fold1 .container-fluid > .row > div:last-child {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .home-fold1 .container > .row > div:last-child .content, .home-fold1 .container-fluid > .row > div:last-child .content {
    padding-left: 80px;
  }
}
.home-fold1 .container > .row > div:last-child .content h2, .home-fold1 .container-fluid > .row > div:last-child .content h2 {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .home-fold1 .container > .row > div:last-child .content h2, .home-fold1 .container-fluid > .row > div:last-child .content h2 {
    display: none;
  }
}
.home-fold1 .container > .row > div:last-child .content h3, .home-fold1 .container-fluid > .row > div:last-child .content h3 {
  margin-bottom: 40px;
}
.home-fold1 .container > .row > div:last-child .content p:first-of-type, .home-fold1 .container-fluid > .row > div:last-child .content p:first-of-type {
  margin-bottom: 25px;
}

.home-fold2 {
  position: relative;
}
.home-fold2:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/fleche-rouge-horiz-gauche.svg);
  background-repeat: no-repeat;
  width: 573px;
  height: 318px;
  position: absolute;
  top: -275px;
  left: 0;
  z-index: 3;
}
@media (max-width: 767px) {
  .home-fold2:before {
    background-size: contain;
    width: 257px;
    height: 143px;
    top: -125px;
  }
}
.home-fold2:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/fleche-jaune-horiz-droite.svg);
  background-repeat: no-repeat;
  width: 466px;
  height: 318px;
  position: absolute;
  bottom: -275px;
  right: 0;
  z-index: 3;
}
@media (max-width: 767px) {
  .home-fold2:after {
    background-size: contain;
    width: 209px;
    height: 143px;
    bottom: -120px;
  }
}
@media (min-width: 1200px) {
  .home-fold2 .container, .home-fold2 .container-fluid {
    width: 1122px;
  }
}
.home-fold2 .container > .row, .home-fold2 .container-fluid > .row {
  position: relative;
  z-index: 1;
  background: #393575;
  border-radius: 15px;
  padding: 85px 0 70px 80px;
}
@media (max-width: 991px) {
  .home-fold2 .container > .row, .home-fold2 .container-fluid > .row {
    display: flex;
    flex-direction: column;
    padding: 55px 20px;
  }
}
@media (max-width: 991px) {
  .home-fold2 .container > .row > div, .home-fold2 .container-fluid > .row > div {
    width: 100%;
  }
}
.home-fold2 .container > .row > div:first-child .content h2, .home-fold2 .container > .row > div:first-child .content h3, .home-fold2 .container > .row > div:first-child .content p, .home-fold2 .container-fluid > .row > div:first-child .content h2, .home-fold2 .container-fluid > .row > div:first-child .content h3, .home-fold2 .container-fluid > .row > div:first-child .content p {
  color: #fff;
}
.home-fold2 .container > .row > div:first-child .content h2, .home-fold2 .container-fluid > .row > div:first-child .content h2 {
  margin-bottom: 20px;
}
.home-fold2 .container > .row > div:first-child .content h3, .home-fold2 .container > .row > div:first-child .content p:first-of-type, .home-fold2 .container-fluid > .row > div:first-child .content h3, .home-fold2 .container-fluid > .row > div:first-child .content p:first-of-type {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .home-fold2 .container > .row > div:last-child, .home-fold2 .container-fluid > .row > div:last-child {
    width: 100%;
  }
}
.home-fold2 .container > .row > div:last-child .content img, .home-fold2 .container-fluid > .row > div:last-child .content img {
  border-radius: 15px;
  box-shadow: -22px 22px 49px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  .home-fold2 .container > .row > div:last-child .content img, .home-fold2 .container-fluid > .row > div:last-child .content img {
    right: -60px;
  }
}
@media (max-width: 1199px) {
  .home-fold2 .container > .row > div:last-child .content img, .home-fold2 .container-fluid > .row > div:last-child .content img {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .home-fold2 .container > .row > div:last-child .content img, .home-fold2 .container-fluid > .row > div:last-child .content img {
    position: absolute;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .home-fold2 .container > .row > div:last-child .content img, .home-fold2 .container-fluid > .row > div:last-child .content img {
    max-width: 300px;
  }
}
@media (max-width: 575px) {
  .home-fold2 .container > .row > div:last-child .content img, .home-fold2 .container-fluid > .row > div:last-child .content img {
    max-width: 280px;
  }
}

.home-actu-title {
  padding-top: 180px;
}
.home-actu-title .container > .row > div:last-child .content {
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .home-actu-title .container > .row > div:last-child .content p {
    text-align: left !important;
  }
}
.home-actu-title.smol-pt {
  padding-top: 60px;
}

.home-actu {
  padding-bottom: 140px;
}
@media (max-width: 767px) {
  .home-actu {
    padding-bottom: 40px;
  }
}
.home-actu .container > .row > div .news-mosaic > .row:first-child {
  background: #ADD1EA;
  border-radius: 8px;
}
.home-actu .container > .row > div .news-mosaic > .row > div {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 397px 1fr auto;
  gap: 0 60px;
  align-items: start;
}
@media (max-width: 991px) {
  .home-actu .container > .row > div .news-mosaic > .row > div {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .home-actu .container > .row > div .news-mosaic > .row > div {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .home-actu .container > .row > div .news-mosaic > .row > div .news-title,
  .home-actu .container > .row > div .news-mosaic > .row > div .news-published-date {
    grid-column: 1;
  }
}
.home-actu .container > .row > div .news-mosaic > .row > div .news-title {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
@media (min-width: 992px) {
  .home-actu .container > .row > div .news-mosaic > .row > div .news-title {
    grid-row: 1;
    align-self: start;
  }
}
.home-actu .container > .row > div .news-mosaic > .row > div .news-title > a {
  color: #393575 !important;
}
.home-actu .container > .row > div .news-mosaic > .row > div .news-published-date {
  color: #393575;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
@media (min-width: 992px) {
  .home-actu .container > .row > div .news-mosaic > .row > div .news-published-date {
    grid-row: 2;
    align-self: start;
  }
}
@media (min-width: 992px) {
  .home-actu .container > .row > div .news-mosaic > .row > div .news-intro {
    grid-column: 2;
    grid-row: 1/3;
  }
}
.home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
  font-weight: 700 !important;
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:hover, .home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:active, .home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
    white-space: normal !important;
  }
}
.home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:hover, .home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:active, .home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
@media (min-width: 992px) {
  .home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
    grid-column: 3;
    grid-row: 1/3;
  }
}
@media (max-width: 991px) {
  .home-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
    max-width: fit-content;
  }
}

.fold-home-temoignages {
  background: #F4D8A2;
  position: relative;
}
.fold-home-temoignages:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/open-quote.svg);
  background-repeat: no-repeat;
  width: 593px;
  height: 545px;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: 1;
}
@media (max-width: 991px) {
  .fold-home-temoignages:before {
    background-size: contain;
    width: 350px;
    height: 400px;
    top: 12px;
  }
}
@media (max-width: 767px) {
  .fold-home-temoignages:before {
    width: 172px;
    height: 158px;
    top: 30px;
  }
}
@media (max-width: 575px) {
  .fold-home-temoignages:before {
    height: 137px;
    width: 115px;
  }
}
.fold-home-temoignages:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/close-quote.svg);
  background-repeat: no-repeat;
  width: 591px;
  height: 545px;
  position: absolute;
  right: 0;
  bottom: -50px;
  z-index: 1;
}
@media (max-width: 991px) {
  .fold-home-temoignages:after {
    background-size: contain;
    width: 350px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .fold-home-temoignages:after {
    width: 172px;
    height: 158px;
    bottom: 20px;
  }
}
@media (max-width: 575px) {
  .fold-home-temoignages:after {
    height: 137px;
    width: 115px;
  }
}
.fold-home-temoignages .home-temoignages-title {
  padding-top: 65px;
  padding-bottom: 65px;
}
@media (max-width: 767px) {
  .fold-home-temoignages .home-temoignages-title {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.fold-home-temoignages .home-temoignages-title .content {
  position: relative;
  z-index: 3;
}
.fold-home-temoignages .home-temoignages .carousel {
  position: relative;
  z-index: 3;
}
.fold-home-temoignages .home-temoignages-cta .content p {
  margin-bottom: 45px;
}

.fold-home-events {
  position: relative;
  background: #F7F7F9;
}
.fold-home-events:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_acceuil/logo-parcours-adoption-quebec-pattern.svg);
  background-repeat: no-repeat;
  width: 581px;
  height: 650px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .fold-home-events:before {
    display: none;
  }
}
.fold-home-events .home-events-title {
  padding-top: 150px;
  padding-bottom: 60px;
}
.fold-home-events .home-events-title .container > .row > div:first-child .content {
  display: flex;
  gap: 25px;
  align-items: center;
}
@media (max-width: 767px) {
  .fold-home-events .home-events-title .container > .row > div:last-child .content p {
    text-align: left !important;
  }
}
.fold-home-events .home-events {
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .fold-home-events .home-events {
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .fold-home-events .home-events .container > .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .fold-home-events .home-events .container > .row > div:first-child {
    width: 0;
  }
}
@media (max-width: 991px) {
  .fold-home-events .home-events .container > .row > div:last-child {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .fold-home-events .home-events .container > .row > div .eventsList > .row {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .fold-home-events .home-events .container > .row > div .eventsList > .row > div {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
  }
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  padding: 40px 25px;
  background: #fff;
  position: relative;
  width: 360px;
}
@media (min-width: 1200px) {
  .fold-home-events .home-events .container > .row > div .eventsList > .row > div .item {
    width: 455px;
  }
}
@media (max-width: 767px) {
  .fold-home-events .home-events .container > .row > div .eventsList > .row > div .item {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item:before {
  content: "";
  background: #393575;
  width: 360px;
  height: 380px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (min-width: 1200px) {
  .fold-home-events .home-events .container > .row > div .eventsList > .row > div .item:before {
    width: 455px;
  }
}
@media (max-width: 767px) {
  .fold-home-events .home-events .container > .row > div .eventsList > .row > div .item:before {
    width: 300px;
  }
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .events-mosaic-category {
  order: 0;
  background: #F4D8A2;
  color: #393575;
  border-radius: 40px;
  padding: 10px 20px;
  display: block;
  max-width: fit-content;
  margin-bottom: 40px;
  font-weight: 700;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item > h3 {
  order: 1;
  color: #fff !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 126px;
  max-height: 126px;
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .itemInfos {
  order: 2;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .itemInfos .e-date {
  color: #fff !important;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .itemInfos br {
  display: none;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .itemInfos .city {
  display: none;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .event-flash-tags {
  order: 3;
  color: #fff;
  margin-bottom: 65px;
  position: relative;
  padding-left: 30px;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .event-flash-tags:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/mini-fleche-activites.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item hr {
  display: none;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .intro {
  order: 4;
}
.fold-home-events .home-events .container > .row > div .eventsList > .row > div .item .actions {
  order: 5;
}
@media (max-width: 767px) {
  .fold-home-events .home-events .container > .row > div .eventsList > .row > div .item:first-child {
    margin-bottom: 45px;
  }
}

.line-events {
  padding-bottom: 200px;
  padding-top: 90px;
  background: #F7F7F9;
}
@media (max-width: 767px) {
  .line-events {
    padding-top: 45px;
  }
}
.line-events .container > .row .zone-event .event_list_filter {
  margin-bottom: 60px;
}
.line-events .container > .row .zone-event #event_content_box h1.form-withProgress__title-main {
  text-align: center;
}
@media (max-width: 991px) {
  .line-events .container > .row .zone-event .events-mosaic > .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
  .line-events .container > .row .zone-event .events-mosaic > .row:before, .line-events .container > .row .zone-event .events-mosaic > .row:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .line-events .container > .row .zone-event .events-mosaic > .row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  padding: 40px 25px;
  background: #fff;
  position: relative;
  width: 360px;
}
@media (max-width: 1199px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item {
    width: 290px;
  }
}
@media (max-width: 991px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item {
    width: 360px;
  }
}
@media (max-width: 767px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item {
    margin-left: auto;
    margin-right: auto;
    width: 364px;
  }
}
@media (max-width: 575px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item {
    width: 300px;
  }
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item:before {
  content: "";
  background: #393575;
  width: 360px;
  height: 380px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (max-width: 1199px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item:before {
    width: 290px;
  }
}
@media (max-width: 991px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item:before {
    width: 360px;
  }
}
@media (max-width: 767px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item:before {
    width: 364px;
  }
}
@media (max-width: 767px) {
  .line-events .container > .row .zone-event .events-mosaic > .row > div .item:before {
    width: 300px;
  }
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .events-mosaic-category {
  order: 0;
  background: #F4D8A2;
  color: #393575;
  border-radius: 40px;
  padding: 10px 20px;
  display: block;
  max-width: fit-content;
  margin-bottom: 40px;
  font-weight: 700;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .e-date {
  order: 1;
  color: #fff !important;
  text-transform: none !important;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .e-date br {
  display: none;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item > h3 {
  order: 2;
  color: #fff !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 126px;
  max-height: 126px;
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .events-mosaic-tags {
  order: 3;
  color: #fff;
  margin-bottom: 65px;
  position: relative;
  padding-left: 30px;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .events-mosaic-tags:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/mini-fleche-activites.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .address, .line-events .container > .row .zone-event .events-mosaic > .row > div .item .contact {
  display: none;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .events-mosaic__short-description {
  order: 4;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .events-mosaic__short-description + p {
  display: none;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .actions {
  order: 5;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .actions .btn-default {
  border-radius: 0 !important;
  padding: 20px 0 !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: none !important;
  border-bottom: 1px solid #393575 !important;
}
.line-events .container > .row .zone-event .events-mosaic > .row > div .item .actions .btn-default:hover, .line-events .container > .row .zone-event .events-mosaic > .row > div .item .actions .btn-default:active, .line-events .container > .row .zone-event .events-mosaic > .row > div .item .actions .btn-default:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  color: #393575 !important;
  border-bottom: 1px solid #F4D8A2 !important;
}

.event-title-banner {
  background: #393575;
  padding: 130px 0;
}
.event-title-banner .container > .row > div .content h2 {
  color: #fff;
}

.apropos-fold1 {
  padding-bottom: 180px;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .apropos-fold1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .apropos-fold1 .container > .row > div:first-child, .apropos-fold1 .container-fluid > .row > div:first-child {
    margin-bottom: 100px;
  }
}
.apropos-fold1 .container > .row > div:first-child .content h2, .apropos-fold1 .container-fluid > .row > div:first-child .content h2 {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .apropos-fold1 .container > .row > div:first-child .content h2, .apropos-fold1 .container-fluid > .row > div:first-child .content h2 {
    padding-bottom: 15px;
  }
}
.apropos-fold1 .container > .row > div:first-child .content img, .apropos-fold1 .container-fluid > .row > div:first-child .content img {
  border-radius: 15px;
  box-shadow: -22.363px 22.363px 49.027px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .apropos-fold1 .container > .row > div:first-child .content img, .apropos-fold1 .container-fluid > .row > div:first-child .content img {
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .apropos-fold1 .container > .row > div:last-child .content, .apropos-fold1 .container-fluid > .row > div:last-child .content {
    padding-left: 100px;
  }
}
.apropos-fold1 .container > .row > div:last-child .content h3:last-child, .apropos-fold1 .container-fluid > .row > div:last-child .content h3:last-child {
  margin-bottom: 40px;
}

.apropos-fold2 {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .apropos-fold2 .container > .row > div:first-child .content, .apropos-fold2 .container-fluid > .row > div:first-child .content {
    padding-top: 60px;
  }
}
.apropos-fold3 {
  padding-bottom: 175px;
}
@media (max-width: 767px) {
  .apropos-fold3 {
    margin-bottom: 60px;
  }
}
.apropos-fold3 .container > .row > div h2 {
  text-align: center;
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .apropos-fold3 .container > .row > div h2 {
    margin-bottom: 70px;
  }
}
.apropos-fold3 .container > .row > div .content ul {
  list-style: none;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
}
@media (max-width: 767px) {
  .apropos-fold3 .container > .row > div .content ul {
    flex-direction: column;
    align-items: center;
  }
}
.apropos-fold3 .container > .row > div .content ul li {
  text-align: center;
  max-width: 280px;
  position: relative;
}
.apropos-fold3 .container > .row > div .content ul li h3 {
  margin-bottom: 30px;
}
.apropos-fold3 .container > .row > div .content ul li:before {
  content: "";
  background-repeat: no-repeat;
  width: 200px;
  height: 360px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .apropos-fold3 .container > .row > div .content ul li:before {
    width: 100px;
    height: 200px;
    top: -20px;
  }
}
.apropos-fold3 .container > .row > div .content ul li:first-child:before {
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_a-propos/fleche-rouge-3-niveaux.svg);
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .apropos-fold3 .container > .row > div .content ul li:first-child:before {
    background-size: contain;
  }
}
.apropos-fold3 .container > .row > div .content ul li:nth-child(2):before {
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_a-propos/fleche-jaune-3-niveaux.svg);
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .apropos-fold3 .container > .row > div .content ul li:nth-child(2):before {
    background-size: contain;
  }
}
.apropos-fold3 .container > .row > div .content ul li:last-child:before {
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_a-propos/fleche-bleu-3-niveaux.svg);
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .apropos-fold3 .container > .row > div .content ul li:last-child:before {
    background-size: contain;
  }
}

@media (max-width: 767px) {
  .apropos-fold4 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 767px) {
  .apropos-fold4 .container > .row, .apropos-fold4 .container-fluid > .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.apropos-fold4 .container > .row > div:first-child .content img, .apropos-fold4 .container-fluid > .row > div:first-child .content img {
  border-radius: 15px;
  box-shadow: -22.363px 22.363px 49.027px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .apropos-fold4 .container > .row > div:last-child, .apropos-fold4 .container-fluid > .row > div:last-child {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .apropos-fold4 .container > .row > div:last-child .content, .apropos-fold4 .container-fluid > .row > div:last-child .content {
    padding-left: 100px;
  }
}

@media (max-width: 767px) {
  .apropos-fold5 {
    padding-bottom: 80px;
  }
}
.apropos-fold5 .container > .row > div h2 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .apropos-fold5 .container > .row > div h2 {
    margin-bottom: 40px;
  }
}
.apropos-fold5 .container > .row > div .newsList > .row .item h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 5px solid #F4D8A2;
  border-radius: 5px;
}
.line-team {
  padding-bottom: 100px;
}
.line-team .container > .row > div > h2 {
  margin-bottom: 60px;
}
.line-team .container > .row > div .news-mosaic > .row .news-intro table tbody tr:first-child td img {
  border-radius: 50%;
}

.equipe-title .content h2 {
  margin-bottom: 60px;
}

.rapport-vedette {
  padding-top: 115px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .rapport-vedette .container > .row > div:first-child, .rapport-vedette .container-fluid > .row > div:first-child {
    margin-bottom: 100px;
  }
}
.rapport-vedette .container > .row > div:first-child .mod-article__wrapper .news-content, .rapport-vedette .container-fluid > .row > div:first-child .mod-article__wrapper .news-content {
  text-align: center;
}
.rapport-vedette .container > .row > div:first-child .mod-article__wrapper .news-content .mod-article__img, .rapport-vedette .container-fluid > .row > div:first-child .mod-article__wrapper .news-content .mod-article__img {
  border-radius: 15px;
  max-width: 360px;
  box-shadow: -22.363px 22.363px 49.027px 0 rgba(0, 0, 0, 0.15);
}
.rapport-vedette .container > .row > div:last-child .mod-article__wrapper .news-content .mod-article__content h2, .rapport-vedette .container-fluid > .row > div:last-child .mod-article__wrapper .news-content .mod-article__content h2 {
  margin-bottom: 40px;
}
.rapport-vedette .container > .row > div:last-child .mod-article__wrapper .news-content .mod-article__content .btn, .rapport-vedette .container-fluid > .row > div:last-child .mod-article__wrapper .news-content .mod-article__content .btn {
  margin-top: 40px;
}

.rapports-anciens {
  padding-bottom: 90px;
}
.rapports-anciens .container > .row > div .newsList > .row .item .intro h4, .rapports-anciens .container > .row > div .newsList > .row .item .intro p {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .rapports-anciens .container > .row > div .newsList > .row .item .intro h4 br, .rapports-anciens .container > .row > div .newsList > .row .item .intro p br {
    display: block !important;
  }
}

.parcours-ctas {
  padding-bottom: 210px !important;
}
@media (max-width: 767px) {
  .parcours-ctas {
    padding-top: 80px;
  }
}
.parcours-ctas .container > .row > div .content, .parcours-ctas .container-fluid > .row > div .content {
  background: #393575;
  display: flex;
  border-radius: 15px;
  padding: 80px 80px 50px;
  gap: 100px;
}
@media (max-width: 1199px) {
  .parcours-ctas .container > .row > div .content, .parcours-ctas .container-fluid > .row > div .content {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .parcours-ctas .container > .row > div .content, .parcours-ctas .container-fluid > .row > div .content {
    flex-direction: column-reverse;
    padding: 50px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .parcours-ctas .container > .row > div .content, .parcours-ctas .container-fluid > .row > div .content {
    padding-top: 215px;
    padding: 215px 25px 25px;
  }
}
.parcours-ctas .container > .row > div .content .parcours-left, .parcours-ctas .container-fluid > .row > div .content .parcours-left {
  width: 50%;
}
@media (max-width: 991px) {
  .parcours-ctas .container > .row > div .content .parcours-left, .parcours-ctas .container-fluid > .row > div .content .parcours-left {
    width: 100%;
  }
}
.parcours-ctas .container > .row > div .content .parcours-left h2, .parcours-ctas .container > .row > div .content .parcours-left p, .parcours-ctas .container-fluid > .row > div .content .parcours-left h2, .parcours-ctas .container-fluid > .row > div .content .parcours-left p {
  color: #fff;
}
.parcours-ctas .container > .row > div .content .parcours-left h2 strong, .parcours-ctas .container > .row > div .content .parcours-left p strong, .parcours-ctas .container-fluid > .row > div .content .parcours-left h2 strong, .parcours-ctas .container-fluid > .row > div .content .parcours-left p strong {
  color: #F4D8A2;
}
.parcours-ctas .container > .row > div .content .parcours-left p .btn-link, .parcours-ctas .container-fluid > .row > div .content .parcours-left p .btn-link {
  color: #fff !important;
  border-bottom: 1px solid #fff;
  padding-left: 0;
  padding-right: 0;
}
.parcours-ctas .container > .row > div .content .parcours-left p .btn-link:hover, .parcours-ctas .container-fluid > .row > div .content .parcours-left p .btn-link:hover {
  border-bottom: 1px solid #F4D8A2;
}
.parcours-ctas .container > .row > div .content .parcours-right, .parcours-ctas .container-fluid > .row > div .content .parcours-right {
  width: 50%;
  text-align: right;
}
@media (max-width: 991px) {
  .parcours-ctas .container > .row > div .content .parcours-right, .parcours-ctas .container-fluid > .row > div .content .parcours-right {
    width: 100%;
    position: absolute;
    top: 50px;
    right: 50px;
  }
}
@media (max-width: 767px) {
  .parcours-ctas .container > .row > div .content .parcours-right, .parcours-ctas .container-fluid > .row > div .content .parcours-right {
    text-align: left;
    right: unset;
    left: 25px;
  }
}
@media (max-width: 991px) {
  .parcours-ctas .container > .row > div .content .parcours-right img, .parcours-ctas .container-fluid > .row > div .content .parcours-right img {
    max-width: 130px;
  }
}

.adoption-type {
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .adoption-type .container > .row > div:first-child, .adoption-type .container-fluid > .row > div:first-child {
    width: 40%;
  }
}
.adoption-type .container > .row > div:first-child .content h3, .adoption-type .container-fluid > .row > div:first-child .content h3 {
  display: block;
  margin-bottom: 0;
  padding: 5px 0px 5px 20px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .adoption-type .container > .row > div:first-child .content h3, .adoption-type .container-fluid > .row > div:first-child .content h3 {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .adoption-type .container > .row > div:last-child, .adoption-type .container-fluid > .row > div:last-child {
    width: 60%;
  }
}
.adoption-type.no-pb {
  padding-bottom: 0;
}
.adoption-type.blue .container > .row > div:first-child .content h3 {
  background: #ADD1EA;
}
.adoption-type.pink .container > .row > div:first-child .content h3 {
  background: #FCC0C0;
}
.adoption-type.yellow .container > .row > div:first-child .content h3 {
  background: #F4D8A2;
}

@media (max-width: 767px) {
  .nota-bene {
    padding-top: 75px !important;
  }
}
.nota-bene .container > .row > div .content, .nota-bene .container-fluid > .row > div .content {
  max-width: 90%;
  margin-right: 0;
  margin-left: auto;
  background: #393575;
  padding: 60px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .nota-bene .container > .row > div .content, .nota-bene .container-fluid > .row > div .content {
    padding: 20px;
    max-width: 100%;
  }
}
.nota-bene .container > .row > div .content:before, .nota-bene .container-fluid > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_parcours/Vector-yellow-smolarrow.svg);
  background-repeat: no-repeat;
  width: 157px;
  height: 87px;
  position: absolute;
  top: -72px;
  left: -62px;
}
.nota-bene .container > .row > div .content h3, .nota-bene .container > .row > div .content p, .nota-bene .container-fluid > .row > div .content h3, .nota-bene .container-fluid > .row > div .content p {
  color: #fff;
}
.nota-bene .container > .row > div .content h3, .nota-bene .container-fluid > .row > div .content h3 {
  margin-bottom: 40px;
}

.line-all-temoignages {
  position: relative;
}
@media (max-width: 991px) {
  .line-all-temoignages {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 767px) {
  .line-all-temoignages {
    padding-top: 50px;
  }
}
.line-all-temoignages:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_parcours/guillemet-gauche.svg);
  background-repeat: no-repeat;
  width: 297px;
  height: 273px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .line-all-temoignages:before {
    background-size: contain;
    width: 200px;
  }
}
@media (max-width: 767px) {
  .line-all-temoignages:before {
    width: 140px;
    top: -50px;
  }
}
.line-all-temoignages:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_parcours/guillemet-droite.svg);
  background-repeat: no-repeat;
  width: 296px;
  height: 273px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .line-all-temoignages:after {
    background-size: contain;
    width: 200px;
    bottom: -60px;
  }
}
@media (max-width: 767px) {
  .line-all-temoignages:after {
    width: 140px;
    bottom: -125px;
  }
}
.line-all-temoignages .container > .row > div .news-mosaic > .row + .row {
  margin-top: 20px;
}
.line-all-temoignages .container > .row > div .news-mosaic {
  display: block;
  columns: 2;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .line-all-temoignages .container > .row > div .news-mosaic {
    display: flex;
    flex-direction: column;
  }
}
.line-all-temoignages .container > .row > div .news-mosaic > .row {
  break-inside: avoid;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}
.line-all-temoignages .container > .row > div .news-mosaic > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.line-all-temoignages .container > .row > div .news-mosaic > .row > div .news-intro {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 11px 49px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .line-all-temoignages .container > .row > div .news-mosaic > .row > div .news-intro {
    padding: 40px;
  }
}

.line-contact-media {
  position: relative;
}
.line-contact-media .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-contact-media .container > .row {
    flex-direction: column;
  }
}
.line-contact-media .container > .row > div:nth-child(1) {
  width: 250px;
}
@media (max-width: 767px) {
  .line-contact-media .container > .row > div:nth-child(1) {
    margin-bottom: 40px;
  }
}
.line-contact-media .container > .row > div:nth-child(2) {
  width: calc(100% - 250px);
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-contact-media .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-contact-media .container > .row > div:nth-child(2) .content p br {
    display: block !important;
  }
}
.line-contact-media .container > .row > div:nth-child(2) .content a {
  color: #393575 !important;
  text-decoration: none !important;
}

.soutien-avantages .container > .row > div h2 {
  margin-bottom: 60px;
}
.soutien-avantages .container > .row > div .newsList > .row .item .intro h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.soutien-avantages .container > .row > div .newsList > .row .item .intro h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #F4D8A2;
  border-radius: 2px;
}

.qui-devenir-membre {
  padding-top: 100px;
  padding-bottom: 224px;
}
.qui-devenir-membre .container > .row > div:first-child h2, .qui-devenir-membre .container-fluid > .row > div:first-child h2 {
  margin-bottom: 40px;
}
.qui-devenir-membre .container > .row > div:first-child .btn, .qui-devenir-membre .container-fluid > .row > div:first-child .btn {
  margin-top: 20px;
}
.qui-devenir-membre .container > .row > div:first-child ul li, .qui-devenir-membre .container-fluid > .row > div:first-child ul li {
  margin-bottom: 7px;
}
.qui-devenir-membre .container > .row > div:last-child .content img, .qui-devenir-membre .container-fluid > .row > div:last-child .content img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: -22.363px 22.363px 49.027px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  .qui-devenir-membre .container > .row > div:last-child .content img, .qui-devenir-membre .container-fluid > .row > div:last-child .content img {
    max-width: 550px;
  }
}

.group-type {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .group-type .container > .row > div:first-child, .group-type .container-fluid > .row > div:first-child {
    width: 60%;
    padding-right: 125px;
  }
}
.group-type .container > .row > div:first-child .content h2, .group-type .container-fluid > .row > div:first-child .content h2 {
  margin-bottom: 40px;
}
.group-type .container > .row > div:first-child .content .frequence, .group-type .container-fluid > .row > div:first-child .content .frequence {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.group-type .container > .row > div:first-child .content .frequence h4, .group-type .container-fluid > .row > div:first-child .content .frequence h4 {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .group-type .container > .row > div:last-child, .group-type .container-fluid > .row > div:last-child {
    width: 40%;
  }
}
.group-type .container > .row > div:last-child .content img, .group-type .container-fluid > .row > div:last-child .content img {
  box-shadow: -22.363px 22.363px 49.027px 0 rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

.bottom-quote {
  padding-top: 170px;
  padding-bottom: 280px;
  position: relative;
}
.bottom-quote:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_soutien/guillemets-gauche.svg);
  background-repeat: no-repeat;
  width: 297px;
  height: 273px;
  position: absolute;
  top: 150px;
  left: 20px;
}
@media (max-width: 767px) {
  .bottom-quote:before {
    background-size: contain;
    width: 115px;
    height: 140px;
    z-index: 2;
    top: 92px;
  }
}
.bottom-quote:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_soutien/guillemets-droite.svg);
  background-repeat: no-repeat;
  width: 115px;
  height: 273px;
  position: absolute;
  top: 150px;
  right: 20px;
}
@media (max-width: 767px) {
  .bottom-quote:after {
    background-size: contain;
    width: 115px;
    height: 140px;
    top: unset;
    bottom: 180px;
  }
}
.bottom-quote .container > .row > div .content, .bottom-quote .container-fluid > .row > div .content {
  width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 11px 49px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .bottom-quote .container > .row > div .content, .bottom-quote .container-fluid > .row > div .content {
    width: 90%;
    padding: 30px;
  }
}

.line-nous-joindre-coordonnees .container {
  position: relative;
  padding-bottom: 190px;
}
.line-nous-joindre-coordonnees .container:before {
  content: "";
  display: block;
  width: 581px;
  height: 650px;
  background: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_nous-joindre/logo-parcours-adoption-quebec-pattern.svg");
  background-repeat: no-repeat;
  position: absolute;
  background-size: cover;
  top: -100px;
  right: 20px;
}
@media (max-width: 767px) {
  .line-nous-joindre-coordonnees .container:before {
    background-size: contain;
    width: 250px;
    height: 300px;
  }
}
.line-nous-joindre-coordonnees .container > .row > div .content .btn-secondary {
  padding-left: 55px;
  position: relative;
}
.line-nous-joindre-coordonnees .container > .row > div .content .btn-secondary:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_logos/icone-telephone.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.line-nous-joindre-coordonnees .container > .row > div .content .btn-secondary:hover {
  background: #F7F7F9;
  border: 1px solid #393575;
  color: #393575;
}

@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group {
    margin-bottom: 30px;
  }
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group input:not(.btn):not([type=file]) {
  background-color: #fff !important;
  border: none !important;
  color: #393575 !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .search_input {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .search_input select.form-control {
  width: 538px;
  max-width: 528px;
  border: 1px solid #F4D8A2 !important;
  background: #FFFFFF url(https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/chevron-down-Icon.svg) no-repeat right 20px center !important;
}
@media (max-width: 991px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .search_input select.form-control {
    width: 350px;
    max-width: 350px;
  }
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms {
  width: 538px;
  max-width: 528px;
  border-color: #F4D8A2 !important;
  --ms-ring-color: transparent !important;
}
@media (max-width: 991px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms {
    width: 350px;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms {
    margin-left: 0;
    margin-right: auto;
  }
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect .multiselect-wrapper, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms .multiselect-wrapper {
  min-height: 51px !important;
  border-color: #F4D8A2 !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect .multiselect-wrapper input, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms .multiselect-wrapper input {
  background-color: #fff !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect .multiselect-wrapper .multiselect-placeholder, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms .multiselect-wrapper .multiselect-placeholder {
  color: #393575 !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect .multiselect-wrapper .multiselect-caret, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms .multiselect-wrapper .multiselect-caret {
  mask-image: none !important;
  -webkit-mask-image: none !important;
  background-color: transparent !important;
  background-image: url("https://cdn.ca.yapla.com/company/CPYmv4EMDJP8TOXQYruH19knW/asset/images/_icons-shapes/chevron-down-Icon.svg") !important;
  background-repeat: no-repeat !important;
  width: 24px !important;
  height: 24px !important;
  background-size: 24px 24px !important;
  background-position: center !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect .multiselect-wrapper .multiselect-caret.is-open, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms .multiselect-wrapper .multiselect-caret.is-open {
  transform: none !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .multiselect--ms-ring-color, .line-repertoire .container > .row > div .search-object-bloc .search-object-form form.search-form .section > div .form-group .cms--ms-ring-color {
  color: transparent !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search {
  text-align: right;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced {
  border-radius: 0 !important;
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple:hover, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple:active, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple:focus, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced:hover, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced:active, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced {
    white-space: normal !important;
  }
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced {
  padding: 20px 0 !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: none !important;
  border-bottom: 1px solid #393575 !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple:hover, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple:active, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_simple:focus, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced:hover, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced:active, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search #search_advanced:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  color: #393575 !important;
  border-bottom: 1px solid #F4D8A2 !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary:hover, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary:active, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary {
    white-space: normal !important;
  }
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary {
  padding: 20px 30px !important;
  background-color: #F4D8A2 !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #F4D8A2 !important;
  border-radius: 40px !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary:hover, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary:active, .line-repertoire .container > .row > div .search-object-bloc .search-object-form #section-footer-search .btn-primary:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 991px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div {
  background: #fff;
  max-width: 360px;
  padding: 40px 25px;
  gap: 40px;
  border-radius: 15px;
  text-align: center;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div h4:first-child {
  margin-bottom: 0;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div h4:last-child {
  margin-bottom: 40px;
}
.line-repertoire .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div h5 {
  margin-top: 30px;
  padding: 10px;
  background: #F4D8A2;
  border-radius: 40px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.line-repertoire .container > .row > div .search-object-detail-bloc .media-video {
  text-align: center;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(57, 53, 117, 0.3);
}
.line-repertoire .container > .row > div .search-object-detail-bloc .media-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
}
.line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(57, 53, 117, 0.3);
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact {
    flex-direction: column;
  }
}
.line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-right, .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-left {
  width: 50%;
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-right, .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-left {
    width: 100%;
  }
}
.line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-right ul, .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-left ul {
  list-style-type: disc !important;
}
@media (min-width: 992px) {
  .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-left {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-left {
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-right {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-right {
    text-align: center;
  }
}
.line-repertoire .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-right img {
  max-width: 243px;
}
.line-repertoire .container > .row > div .search-object-detail-bloc .pratique {
  color: #393575;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #393575;
}
.line-repertoire .container > .row > div .search-object-detail-bloc .pratique ul {
  list-style-type: disc !important;
  margin-bottom: 0 !important;
}
.line-repertoire .container > .row > div .search-object-detail-bloc .pratique h4 {
  margin-top: 45px;
}
.line-repertoire.medias .container > .row > div .search-object-detail-bloc .ressources-contact .ressources-contact-right img {
  max-width: 100%;
}

.line-actu .container > .row > div form {
  margin-bottom: 60px;
}
.line-actu .container > .row > div .news-mosaic > .row:first-child {
  background: #ADD1EA;
  border-radius: 8px;
}
.line-actu .container > .row > div .news-mosaic > .row > div {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 397px 1fr auto;
  gap: 0 60px;
  align-items: start;
}
@media (max-width: 991px) {
  .line-actu .container > .row > div .news-mosaic > .row > div {
    grid-template-columns: 269px 1fr auto;
  }
}
@media (max-width: 767px) {
  .line-actu .container > .row > div .news-mosaic > .row > div {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .line-actu .container > .row > div .news-mosaic > .row > div .news-title,
  .line-actu .container > .row > div .news-mosaic > .row > div .news-published-date {
    grid-row: 1;
    align-self: start;
  }
}
.line-actu .container > .row > div .news-mosaic > .row > div .news-title {
  font-size: 28px;
  line-height: 31px;
  font-weight: 400;
  text-transform: initial;
}
.line-actu .container > .row > div .news-mosaic > .row > div .news-title > a {
  color: #393575 !important;
}
.line-actu .container > .row > div .news-mosaic > .row > div .news-published-date {
  color: #393575;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #393575;
}
@media (min-width: 992px) {
  .line-actu .container > .row > div .news-mosaic > .row > div .news-published-date {
    grid-row: 2;
    align-self: start;
  }
}
@media (min-width: 768px) {
  .line-actu .container > .row > div .news-mosaic > .row > div .news-intro {
    grid-column: 2;
    grid-row: 1/3;
  }
}
@media (max-width: 767px) {
  .line-actu .container > .row > div .news-mosaic > .row > div .news-intro {
    margin-bottom: 30px;
  }
}
.line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
  font-family: "clother", sans-serif;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 40px;
  text-decoration: none !important;
}
.line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:hover, .line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:active, .line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
    white-space: normal !important;
  }
}
.line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
  height: 55px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: #393575 !important;
  transition: all 150ms !important;
  border: 1px solid #393575 !important;
}
.line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:hover, .line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:active, .line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type:focus {
  text-decoration: none !important;
  background-color: #393575 !important;
  border: 1px solid #393575 !important;
  color: #fff !important;
}
@media (min-width: 768px) {
  .line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
    grid-column: 3;
    grid-row: 1/3;
  }
}
@media (max-width: 767px) {
  .line-actu .container > .row > div .news-mosaic > .row > div > a:last-of-type {
    max-width: fit-content;
  }
}

.line-faire-un-don .container > .row > div .content {
  max-width: 840px;
  background-color: #FCC0C0;
  border-radius: 8px;
  padding: 30px 80px 20px 70px;
}
@media (max-width: 767px) {
  .line-faire-un-don .container > .row > div .content {
    padding: 30px;
  }
}

.line-faire-un-don-2col .container > .row > div:nth-child(1) .content {
  text-align: right;
  margin-right: 90px;
}
@media (max-width: 767px) {
  .line-faire-un-don-2col .container > .row > div:nth-child(1) .content {
    text-align: left;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .line-faire-un-don-2col .container > .row > div:nth-child(1) .content img {
    width: 150px !important;
  }
}
/**
* ----------------------------------------
* header
* ----------------------------------------
*/
@keyframes slide-down-header {
  0% {
    transform: translate(0, -40px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 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.445, 0.05, 0.55, 0.95);
  -moz-animation: bounceIn 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounceIn 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounceIn 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-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.445, 0.05, 0.55, 0.95);
  -moz-animation: bounceOut 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounceOut 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounceOut 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-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.445, 0.05, 0.55, 0.95);
  -moz-animation: bounceInLeft 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounceInLeft 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounceInLeft 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-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.445, 0.05, 0.55, 0.95);
  -moz-animation: bounceInRight 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounceInRight 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounceInRight 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-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.445, 0.05, 0.55, 0.95);
  -moz-animation: bounceInUp 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounceInUp 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounceInUp 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-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.445, 0.05, 0.55, 0.95);
  -moz-animation: bounceInDown 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounceInDown 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounceInDown 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-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 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: rotate 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: rotate 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: rotate 2s;
  -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 2s;
  -moz-animation: rotateUpLeft 2s;
  -o-animation: rotateUpLeft 2s;
  animation: rotateUpLeft 2s;
  -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 2s;
  -moz-animation: rotateUpRight 2s;
  -o-animation: rotateUpRight 2s;
  animation: rotateUpRight 2s;
  -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 2s;
  -moz-animation: rotateDownLeft 2s;
  -o-animation: rotateDownLeft 2s;
  animation: rotateDownLeft 2s;
  -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 2s;
  -moz-animation: rotateDownRight 2s;
  -o-animation: rotateDownRight 2s;
  animation: rotateDownRight 2s;
  -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 2s;
  -moz-animation: slideUp 2s;
  -o-animation: slideUp 2s;
  animation: slideUp 2s;
}

@-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 2s;
  -moz-animation: slideDown 2s;
  -o-animation: slideDown 2s;
  animation: slideDown 2s;
}

@-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 2s;
  -moz-animation: slideLeft 2s;
  -o-animation: slideLeft 2s;
  animation: slideLeft 2s;
}

@-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 2s;
  -moz-animation: slideRight 2s;
  -o-animation: slideRight 2s;
  animation: slideRight 2s;
}

@-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 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomIn 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomIn 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomIn 2s 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 2s;
  -moz-animation: zoomInDown 2s;
  -o-animation: zoomInDown 2s;
  animation: zoomInDown 2s;
}

@-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 2s;
  -moz-animation: zoomInUp 2s;
  -o-animation: zoomInUp 2s;
  animation: zoomInUp 2s;
}

@-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 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomOut 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomOut 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomOut 2s 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 2s;
  -moz-animation: zoomOutDown 2s;
  -o-animation: zoomOutDown 2s;
  animation: zoomOutDown 2s;
}

@-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 2s;
  -moz-animation: zoomOutUp 2s;
  -o-animation: zoomOutUp 2s;
  animation: zoomOutUp 2s;
}

/*###########################  TITRES  ###########################*/
h1 {
  opacity: 0;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1.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: 1.5s;
  animation-delay: 0.2s;
}

a:not(.cke_button):not(.form-group) {
  opacity: 0;
}
a:not(.cke_button):not(.form-group).animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

ul:not(.mod-header):not(.multiselect-options):not(.mod-header-wrapper):not(.nav):not(.dropdown-menu):not(.chosen-results):not(.chosen-choices):not(.list-unstyled) li {
  opacity: 0;
}
ul:not(.mod-header):not(.multiselect-options):not(.mod-header-wrapper):not(.nav):not(.dropdown-menu):not(.chosen-results):not(.chosen-choices):not(.list-unstyled) li.animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1.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: 1.5s;
  animation-delay: 0.2s;
}

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

.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(2) .mod-header-container {
  animation-name: slide-down-header;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

/**
* ----------------------------------------
* Submenu
* ----------------------------------------
*/
@keyframes submenu {
  0% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.news-intro {
  opacity: 0;
}
.news-intro.animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

/*########################### CANCEL ANIMATION  ###########################*/
/** pop-up **/
[class*=modal] h2, [class*=modal] h3, [class*=modal] h4, [class*=modal] h5, [class*=modal] h6, [class*=modal] p, [class*=modal] a, [class*=modal] img, [class*=modal] .h1, [class*=modal] .h2, [class*=modal] .h3, [class*=modal] .h4, [class*=modal] .h5, [class*=modal] .h6 {
  opacity: 1 !important;
  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 a, .prebuilt-articles-multiples-col3 img, .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 {
  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 a, .line-programmation img, .line-programmation .h1, .line-programmation .h2, .line-programmation .h3, .line-programmation .h4, .line-programmation .h5, .line-programmation .h6 {
  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 a, .zone-member img, .zone-member .h1, .zone-member .h2, .zone-member .h3, .zone-member .h4, .zone-member .h5, .zone-member .h6 {
  opacity: 1 !important;
}

/** congres **/
.event-schedule h1, .event-schedule h2, .event-schedule h3, .event-schedule h4, .event-schedule h5, .event-schedule h6, .event-schedule ul, .event-schedule li, .event-schedule p, .event-schedule a, .event-schedule .h1, .event-schedule .h2, .event-schedule .h3, .event-schedule .h4, .event-schedule .h5, .event-schedule .h6, .event-schedule img, .workshop-detail h1, .workshop-detail h2, .workshop-detail h3, .workshop-detail h4, .workshop-detail h5, .workshop-detail h6, .workshop-detail ul, .workshop-detail li, .workshop-detail p, .workshop-detail a, .workshop-detail .h1, .workshop-detail .h2, .workshop-detail .h3, .workshop-detail .h4, .workshop-detail .h5, .workshop-detail .h6, .workshop-detail 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 a, .cookie-consent-modal img, .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-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 a, .cookie-modal img, .cookie-modal .h1, .cookie-modal .h2, .cookie-modal .h3, .cookie-modal .h4, .cookie-modal .h5, .cookie-modal .h6 {
  opacity: 1 !important;
}

/** Calendar **/
.calendar-link-content h1, .calendar-link-content h2, .calendar-link-content h3, .calendar-link-content h4, .calendar-link-content h5, .calendar-link-content h6, .calendar-link-content ul, .calendar-link-content li, .calendar-link-content p, .calendar-link-content a, .calendar-link-content img, .calendar-link-content .h1, .calendar-link-content .h2, .calendar-link-content .h3, .calendar-link-content .h4, .calendar-link-content .h5, .calendar-link-content .h6 {
  opacity: 1 !important;
}

.ui-datepicker a {
  opacity: 1 !important;
}

/** Recherche Google **/
.gsc-control-wrapper-cse h1, .gsc-control-wrapper-cse h2, .gsc-control-wrapper-cse h3, .gsc-control-wrapper-cse h4, .gsc-control-wrapper-cse h5, .gsc-control-wrapper-cse h6, .gsc-control-wrapper-cse ul, .gsc-control-wrapper-cse li, .gsc-control-wrapper-cse p, .gsc-control-wrapper-cse a, .gsc-control-wrapper-cse img, .gsc-control-wrapper-cse .h1, .gsc-control-wrapper-cse .h2, .gsc-control-wrapper-cse .h3, .gsc-control-wrapper-cse .h4, .gsc-control-wrapper-cse .h5, .gsc-control-wrapper-cse .h6 {
  opacity: 1 !important;
}

/** Form **/
.chosen-choices li, .chosen-results li {
  opacity: 1 !important;
}
.chosen-choices li a, .chosen-results li a {
  opacity: 1 !important;
}

.text-danger {
  opacity: 1 !important;
}

/** Icons zone de texte html **/
.cke_toolgroup a.cke_button {
  opacity: 1 !important;
}

.mod-header-wrapper li {
  opacity: 1 !important;
}
.mod-header-wrapper li a {
  opacity: 1 !important;
}

ul.social li {
  opacity: 1 !important;
}
ul.social li a {
  opacity: 1 !important;
}

.form-group .search_input a {
  opacity: 1 !important;
}

.line-repertoire ul li {
  opacity: 1 !important;
}
.line-repertoire ul li a {
  opacity: 1 !important;
}

.line-events .iem h3, .line-events .iem h4, .line-events .iem p, .line-events .iem a {
  opacity: 1 !important;
}

.line-repertoire h4, .line-repertoire h5, .line-repertoire p, .line-repertoire ul li {
  opacity: 1 !important;
}

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