/* --------------------------------------------------
    
    LIVE VIDEO + SLIDO
    
-------------------------------------------------- */
.live-container {
    background-color: #79686e;
    padding: 30px 10px;
    box-sizing: border-box;
}

.live {
    max-width: 1280px;
    margin: 0 auto; 
}
.live-over-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}
.live-title {
    font-size: 38px;
    font-weight: 600;
    margin: 0 0 50px 0;
}
.live-rec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 400px;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    background: #fff;
    padding: 8px 15px;
    box-sizing: border-box; 
}
.live-rec span {
    width: 60px;
    height: 30px;
    margin-right: -30px;
}
.live-rec span::before {
    content: '';
    background-image: url(img/live.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
}

.live-rec p {
   margin: 0;
}
/* @media only screen and (max-width:400px) {
    p{
        display: none;
    }
} */
.live-rec a {
    text-decoration: none;
    background-color: #e9e5e2;
    border-radius: 5px;
    padding: 5px 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
 }
 .live-rec a:hover {
    background-color: #d9434f;
    color: #fff;
 }

.embed {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width:860px) {
    .embed {
        flex-direction: column;
    }
}

.part-left {
    display: flex;
    flex-direction: column;
    width: 854px;
    margin-right: 20px;
    max-width: 100%;
}
.yt {
    position: relative;
    padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
    height: 0;
    overflow: hidden;
}
.yt iframe{
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

.rescue-live {
    display: flex
}

.rescue-live a {
    margin-left: 10px;
}

.part-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.expand-button {
    display: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff;
    color: #3a3637;
    font-weight: 600;
    text-decoration: none;
    max-width: 360px;
    margin-bottom: 10px;
    margin-top: 10px;

}
.expand-button:after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #3a3637;
}


.slido {
    width: 380px;
    height: 610px;
    max-width: 100%;
}

.slido iframe {
    margin-bottom: 20px;
}

.test {
    display: block !important;
}

@media only screen and (max-width:860px) {
    .expand-button {
        display: block;
    }
    .slido {
        display: none;
    }
}



/* --------------------------------------------------
    
    PAGINATION
    
-------------------------------------------------- */
nav.navigation.pagination {
    margin-bottom: 20px !important;
}
h2.screen-reader-text {
    display: none!important;
}

.nav-links {
    display: flex;
    align-items: baseline;
}

.nav-links span{
    font-size: 16px;
    margin-left: 10px;
}
span.current {
    color: #4F26DB;
    font-weight: bold;
}

.nav-links a {
    font-size: 16px;
    margin-left: 10px;
    text-decoration: none;
}




/* --------------------------------------------------
    
    HOME SLIDER
    
-------------------------------------------------- */
.home-slider-container {
    background-color: #A0A0A0;
}
.home-slider {
    max-width: 1280px;
    margin: 0 auto;

    position: relative;

    /*border-bottom: 5px solid #f6f7f8;*/
}
.home-slider:after {
    content: '';
    display: block;
    clear: both;
}

.home-slider .top-slide-controls a {
    display: none;
    height: 30px;
    width: 30px;

    position: absolute;
    top: 171px;
    
    z-index: 100;

    background-color: #4F26DB;
    border-radius: 5px;
    text-indent: -5000px;

}

.home-slider .top-slide-controls a:after {
    position: absolute;
    top:10px;
}
.home-slider .top-slide-controls a.previous:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 7px solid #FFF;
    border-bottom: 5px solid transparent;

    left: 10px;
}

.home-slider .top-slide-controls a.next:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 7px solid #FFF;
    border-bottom: 5px solid transparent;

    left: 12px;
}

.home-slider .top-slide-controls a.previous {
    left: 20px;
}

.home-slider .top-slide-controls a.next {
    right: 20px;
}

.home-slider:hover .top-slide-controls a {
    display: block;
}



.home-slider .slide {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.home-slider .slide.current {
    display: block;
    position: static;
}
.home-slider img {
    display: block;
    width: 100%;
    height: auto;
}
.home-slider .slider-image {
    width: 60%;
    float: right;
}

.slide-caption {
    width: 40%;
    max-width: 640px;
    /*padding: 20px;*/

    background-color: #A0A0A0;

    position: absolute;
    top: 0px;
    left: 0px;
    bottom:0;


    font-size: 16px;
}
.slide-caption-wrap {
    max-width: 425px;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}
.slide-caption .type{
    display: block;
    margin-bottom: 15px;

    font-size: 12px;
    line-height: 13px;
    font-weight: 400;
    color: #FFF;
    text-transform: uppercase;
}
.slide-caption h2 {
    margin-top: 0;
    margin-bottom: 15px;

    color: #FFF;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-transform: uppercase;
}
.slide-caption .sub-title {
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;

    font-size: 20px;
    font-weight: 600;
    color: #FFF;
}

.slide-caption p {
    font-size: 14px;
    line-height: 26px;
    color: #FFF;
}
.slide-caption .cercle-button {
    border: none;

    background-color: #fff;
    color: #383637;
}

@media only screen and (max-width:1125px) {
    .slide-caption {
        width: auto;
        max-width: 100%;
        position: static;
    }
    .slide-caption-wrap {
        max-width: 100%;
    }
    .home-slider .slider-image {
        width: 100%;
        float: none;
    }
}

/* --------------------------------------------------
    
    SLIDER ARTICLES
    
-------------------------------------------------- */

.slider-bloc {
    background-color: #F0F0F0;
}
.regard-actu.slider-bloc {
    background-color: #DCDCDC;
}
.box-title {
    padding: 25px 15px;
}
.box-title:after {
    content: '';
    display: block;
    clear: both;
}
.box-title h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;

    font-size: 30px;
    line-height: 36px;
    color: #3a3637;
    text-align: center;

    position: relative;
    
}
.box-title h3:before {
    content: '';
    display: inline-block;
    height: 19px;
    width: 19px;
    margin-right: 20px;
    
    background-image: url(img/sprite.svg);
    background-position: -125px -4px;
    background-repeat: no-repeat;
}
.no-svg .box-title h3:before {
    background-image: url(img/sprite.png);
}

.regard-actu .box-title h3:before {
    background-position: -19px -20px;
    height: 32px;
    width: 33px;
    margin-top: -16px;
}
.publications .box-title h3:before {
    background-position: -54px -21px;
    height: 33px;
    width: 25px;
    margin-top: -16px;
}
.previous-editions .box-title h3:before {
    background-position: -267px -2px;
    height: 29px;
    width: 25px;
    margin-top: -15px;
}
.rendez-vous .box-title h3:before {
    background-position: -265px -35px;
    height: 31px;
    width: 29px;
    margin-top: -15px;
}
.slider-controls {
    padding-top: 30px;
    padding-bottom: 30px;

    text-align: center;
}
.slider-controls:after {
    content: '';
    display: block;
    clear: both;
}
.slider-controls a {
    margin-right: 10px;

    border: none;

    color: #666263;
    background-color: #fff;
}
.slider-controls a:last-child {
    margin-right: 0;
}
.slider-controls a.control{
    display: inline-block;
    width: 33px;
    height: 33px;

    position: relative;

    border-radius: 5px;

    text-indent: -5000px;
    line-height: 34px;
}

.slider-controls a.control:after {
    content: '';
    display: block;
    width: 8px;
    height: 11px;
    margin-left: -5px;
    margin-top: -5px;

    background-image: url(img/sprite.svg);
    background-position: -2px -17px;
    background-repeat: no-repeat;

    position: absolute;
    top: 50%;
    left: 50%;
}
.no-svg .slider-controls a.control:after {
    background-image: url(img/sprite.png);
}

.slider-controls a.next:after {
    background-position: -9px -17px;
}

.box-title .cercle-button {
    float: right;
}


@media only screen and (max-width:655px) {
    .box-title h3 {
        margin-bottom: 20px;
        float: none;
    }
}


/* --------------------------------------------------
    
    ARTICLE SLIDER
    
-------------------------------------------------- */



.articles-slider {
    overflow: hidden;
}
.articles-slider:after {
    content: '';
    display: block;
    clear: both;
}
.article-slider-centre {
    max-width: 960px;
    margin: 0 auto;
}
.home .article-slider-centre {
    max-width: 1280px;
}
.article-slider-wrap {
    width: 2111px;
}
.slides-container {
    width: 100%;
    float: left;
    padding-left: 0;
    padding-right: 0;
}
.article-slide {
    width: 33.33333%;
    float: left;

    position: relative;
}
.list .article-slide {
    width: 50%;
}
.article-slide .disable-click {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.article-slide.active .disable-click {
    display: none;
}
.article-slide-wrap {
    padding: 30px;
    margin-left: 10px;
    margin-right: 10px;

    opacity: 0.5;

    background-color: #fff;
}
.active .article-slide-wrap {
    opacity: 1;
}

.article-slide-wrap:after {
    content: '';
    display: block;
    clear: both;
}

.article-slide-wrap .title, .article-slide-wrap .title a {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    display: block;
    margin-bottom: 14px;

    font-size: 20px;
    line-height: 20px;
    color: #4F26DB;

    text-decoration: none;
}
.article-slide-wrap .sub-title {
    display: block;
    margin-bottom: 26px;

    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}
.sub-title a {
    text-decoration: none;
}
.article-slide-wrap .athordate {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
}
.has-img .article-slide-wrap .left-content {
    margin-bottom: 20px;
}
.article-slide-wrap .image-container {
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 20px;
    
    text-align: center;

    position: relative;
}
.article-slide-wrap .image-container.has-margin {
    margin-bottom: 20px;
}
.is-video .image-container:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: -20px;
    margin-left: -15px;

    border-top: 20px solid transparent;
    border-left: 30px solid #FFF;
    border-bottom: 20px solid transparent;

    position: absolute;
    top: 50%;
    left: 50%;
}
.is-podcast .image-container:after {
    content: '';
    display: block;
    height: 42px;
    width: 30px;
    margin-top: -21px;
    margin-left: -15px;

    background-image: url(img/sprite.svg);
    background-position: -147px -4px;
    background-repeat: no-repeat;

    position: absolute;
    top: 50%;
    left: 50%;
}
.no-svg .is-podcast .image-container:after {
    background-image: url(img/sprite.png);
}
.article-slide-wrap .image-container img{
    display: inline-block;
    max-width: 100%;
    max-height: 186px;
    width: auto;
    height: auto;
}
.article-slide-wrap .image-container span {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;

    background-color: #4F26DB
    ;
    color: #FFF;
    font-size: 12px;

    position: absolute;
    top: 0;
    left: 0;
}
.article-slide-wrap .cercle-button.button-full {
    clear: both;
    display: block;
}
.list {
    padding-bottom: 20px;
}
.list .article-slide {
    border: none;
    clear: left;
}
.list .article-slide.right-align {
    float: right;
    clear: right;
}
.list .article-slide .article-slide-wrap{
    border: none;
    background-color: #f6f7f8;
    margin: 5px;
}
@media only screen and (max-width:780px) {
    .list .article-slide {
        width: 100%;
    }
}
@media only screen and (max-width:975px) {
    .article-slide-wrap .image-container {
        width: auto;
      float: none;
      clear: both;
      max-width: 208px;
      margin: 0 auto 20px auto;
    }
    .has-img .article-slide-wrap .left-content {
        width: 100%;
    }
    .article-slide .cercle-button {
        float: none;
        margin: 0 auto;
        display: block;
    }
}

/* --------------------------------------------------
    
    ARTICLE 
    
-------------------------------------------------- */

.article-wrap {
    max-width: 920px;
    padding-right: 20px;
    padding-bottom: 60px;
}
.top-article {
    padding-top: 40px;
    padding-left: 55px;
    margin-bottom: 24px;

    position: relative;
}
.top-page {
    padding-top: 40px;
    margin-bottom: 24px;
}
.top-article:before {
    content: '';
    display: block;
    width: 37px;
    height: 51px;

    position: absolute;
    top: 57px;
    left: 5px;

    background-image: url(img/sprite.svg);
    background-position: -180px 0;
    background-repeat: no-repeat;
}
.no-svg .top-article:before {
    background-image: url(img/sprite.png);
}

.top-article.top-event:before {
    width: 42px;
    height: 46px;

    background-position: -220px 0;

    top: 46px;
    left: 0px;
}


.top-article h1, .top-page h1 {
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 38px;
    line-height: 36px;
    color: #4F26DB;
    text-transform: uppercase;
}

/* .top-article .article-info {
    margin-bottom: 10px;
} */
.top-article span , .top-page span{
    font-size: 16px;
    font-weight: 600;
}
.top-article span span {
    font-weight: 700;
}
.top-article span span a {
    text-decoration: none;
}
.article-tags {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.article-tags li {
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 10px;
    border-radius: 30px;
    background-color: #f2f1f1;
}
.article-tags li a {
    font-size: 12px;
    line-height: 12px;
    text-decoration: none;
    color: #6e6668;
}
.article-content {
    position: relative;
}

.article-content h3, .article-content h2 {
    font-size: 22px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    text-transform: none;
}

/* .article-content h2 {
    font-size: 22px;
}

.article-content h3 {
    font-size: 2px;
} */

.article-content h3:first-letter, .article-content:first-letter {
    text-transform: uppercase;
}

.article-content .intro {
    display: block;
    margin-bottom: 34px;
    
    font-size: 20px;
    line-height: 20px;
    color: #b7224a;
}
.article-content p {
    font-size: 18px;
    line-height: 28px;
}

.summary-bloc {
    margin-top: 40px;
    margin-bottom: 65px;

    font-size: 14px;
}
.summary-bloc .title {
    display: block;
    margin-bottom: 30px;

    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.summary-bloc ul li{
    margin-bottom: 10px;

    font-size: 14px;
}

.related-articles {
    border-top: 5px solid #f6f7f8;
}

/* --------------------------------------------------
    
    SOCIAL
    
-------------------------------------------------- */

.social {
    padding-left: 0;
    padding-right: 18px;
    position: absolute;
    list-style: none;
    top: 0;
    right: 100%;
}
.social:after {
    content: '';
    display: block;
    clear: both;
}
.social li {
    margin-bottom: 5px;
}
.social li a{
    display: block;
    height: 40px;
    width: 40px;

    position: relative;

    background-color: #3b5998;

    text-indent: -5000px;
}
.social li a:before {
    content: '';
    display: block;
    height: 23px;
    width: 11px;
    margin-top: -11px;
    margin-left: -6px;

    background-image: url(img/sprite.svg);
    background-position: -107px -20px;
    background-repeat: no-repeat;

    position: absolute;
    top: 50%;
    left: 50%;
}
.no-svg .social li a:before {
    background-image: url(img/sprite.png);
}

.social li a.twitter {
    background-color: #01acee;
}
.social li a.twitter:before {
    height: 18px;
    width: 23px;
    margin-top: -9px;
    margin-left: -11px;

    background-position: -82px -21px;
}

.social li a.linkedin {
    background-color: #0374b3;
}
.social li a.linkedin:before {
    height: 26px;
    width: 26px;
    margin-top: -13px;
    margin-left: -13px;

    background-position: -295px -2px;
}

.social li a.mail {
    background-color: #4F26DB;
}
.social li a.mail:before {
    height: 18px;
    width: 22px;
    margin-top: -9px;
    margin-left: -11px;

    background-position: -221px -52px;
}

@media only screen and (max-width:1066px) {
    .social {
        position: static;

    }
    .social li {
        float: left;
        margin-right: 10px;
    }
}
/* --------------------------------------------------
    
    IFRAME
    
-------------------------------------------------- */

.iframe-wrap {
    height: 0;
    max-width: 620px;
    padding-top: 39.25%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 55px;
    margin-bottom: 55px;
    position: relative;
}
.iframe-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* --------------------------------------------------
    
    EVENT
    
-------------------------------------------------- */
.event-cover {
    position: relative;
}
.event-cover img {
    display: block;
    width: 100%;
    height: auto;

    margin-bottom: 25px;
}
.event-content {
    padding-right: 305px;
}

.event-content .content {
    float: left;
    font-size: 18px;
    line-height: 28px;
}
.event-content .content h2, .event-content .content h3 {
    font-size: 22px;
    font-weight: 600;
}

.event-content .sidebar {
    width: 250px;
    margin-right: -305px;
    float: right;
}


/* -------------------------
    SIDEBAR
------------------------- */

.sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;

    font-size: 30px;
    line-height: 30px;
}
.sidebar .partenaires-bloc {
    padding-bottom: 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid #e4e5e6;;
}
.sidebar .partenaires-bloc a {
    display: block;
    border: 1px solid #e4e5e6;
}
.sidebar .partenaires-bloc img {
    width: 100%;
    height: auto;
    border: none;
}

.download-button {
    display: block;
    margin-bottom: 25px;

    position: relative;
}
.download-button:after {
    content: '';
    display: block;
    width: 17px;
    height: 16px;
    margin-top: -8px;

    background-image: url(img/sprite.svg);
      background-position: -128px -44px;
    background-repeat: no-repeat;

    position: absolute;
    top: 50%;
    left: 15px;
}
.no-svg .download-button:after {
    background-image: url(img/sprite.png);
}

.infos-pratiques {
    padding-top: 25px;
    padding-bottom: 25px;

    border-top: 1px solid #e4e5e6;;
    border-bottom: 1px solid #e4e5e6;

    font-weight: 600;
    color: #504436;
}
.infos-pratiques .map {
    padding-top: 70%;
    height: 0;
    margin-bottom: 25px;

    position: relative;
}

#map-canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.infos-pratiques .date-hour {
    margin-bottom: 20px;
}
.infos-pratiques .date-hour:after {
    content: '';
    display: block;
    clear: both;
}
.infos-pratiques span {
    display: block;
    padding-left: 33px;

    position: relative;
}
.infos-pratiques span:before {
    content: '';
    display: block;
    width: 15px;
    height: 18px;

    background-image: url(img/sprite.svg);
    background-position: -147px -48px;
    background-repeat: no-repeat;

    position: absolute;
    top: 0;
    left: 0;
}
.no-svg .infos-pratiques span:before {
    background-image: url(img/sprite.png);
}
.infos-pratiques .date {
    float: left;
}
.infos-pratiques .hour {
    float: right;
}
.infos-pratiques .hour:before {
    background-position: -199px -51px;
    width: 17px;
}
.infos-pratiques .place {
    margin-bottom: 20px;
}
.infos-pratiques .place:before {
    background-position: -165px -48px;
    height: 24px;
}
.infos-pratiques .acces:before {
    background-position: -182px -52px;
    height: 19px;
}

.historique {
    padding-top: 25px;
    padding-bottom: 25px;

    border-top: 1px solid #e4e5e6;;
    border-bottom: 1px solid #e4e5e6;

    font-weight: 600;
    color: #504436;

    line-height: 25px;
}

@media only screen and (max-width:770px) {
    .event-content {
        padding-right: 0;
    }
    .event-content .sidebar {
        margin-right: 0;
		float: none;
		clear: both;
        margin: 0 auto 40px auto;
    }
}




.event-conclusion {
    clear: both;
    font-size: 16px;
}

.event-media-slider {
    width: 100%;
    overflow: hidden;
}
.event-media-slider .title-bar {
    margin-bottom: 30px;
    margin-top: 30px;
}
.event-media-slider .title-bar:after {
    content: '';
    display: block;
    clear: both;
}

.event-media-slider h3 {
      margin-top: 0;
      margin-bottom: 0;
      margin-right: 75px;
      font-size: 30px;
      line-height: 30px;
      color: #3a3637;
      position: relative;
      float: left;
}
.event-media-slider .slider-controls {

}

.event-media-slider ul {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
}

.event-media-slider ul li {
    float: left;
    width: 100%;
    max-width: 960px;
}
.event-media-slider ul li a {
    display: block;
    width: 33.33333%;

    position: relative;

    float: left;
}
.event-media-slider ul li a.video:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: -20px;
    margin-left: -15px;
    border-top: 20px solid transparent;
    border-left: 30px solid #FFF;
    border-bottom: 20px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
}
.event-media-slider ul li a .slide-wrapper {
    display: block;
    margin-left: 15px;
    margin-right: 15px;
}
.event-media-slider ul li img {
    display: block;
    width: 100%;
    height: auto;

}


/* -------------------------
    EVENT JME
------------------------- */

.event-jme {
    padding: 25px;
    margin-bottom: 30px;

    position: relative;

    background-color: #f2f1f1;

    font-size: 16px;
}
.event-jme:after {
    content: '';
    display: block;
    clear: both;
}
.event-jme .jme-image {
    display: block;
    float: left;
    margin-right: 30px;
}
.jme-content span {
    display: block;
    margin-bottom: 5px;

    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}
.jme-content span.price {
    margin-bottom: 20px;
}

@media only screen and (max-width:1066px) {
    .jme-content{
        clear: both;
        padding-top: 10px;
    }
}
@media only screen and (max-width:615px) {
    .event-jme .jme-image {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;

        text-align: center;
    }
}

/* --------------------------------------------------
    
    SEARCH
    
-------------------------------------------------- */
.search-results-list {
    float: right;
    width: 100%;

    position: relative;
}

.loading {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
}
.loading .loader{
    height: 32px;
    width: 32px;
    margin-left: -16px;

    background: transparent url(img/ajax-loader.gif) no-repeat left top;

    text-indent: -5000px;

    position: absolute;
    left: 50%;
    top: 50px;
}

.search-wrapper {
    max-width: 633px;
    padding-left: 327px;
    padding-top: 50px;
}
.filters-bar {
    width: 207px;
    padding: 0 20px;
    margin-left: -327px;

    float: left;
}
.filters-bar h2 {
    font-size: 30px;
    padding-left: 43px;
    margin-top: 0;

    position: relative;
}
.filters-bar h2:before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    margin-top: -14px;

    position: absolute;
    left: 3px;
    top: 50%;

    background-image: url(img/sprite.svg);
    background-position: -297px -36px;
    background-repeat: no-repeat;
}
.no-svg .filters-bar h2:before {
    background-image: url(img/sprite.png);
}

.publication-type {
    margin-bottom: 30px;
}
.publication-type label {
    float: left;
    width: 176px;
    margin-bottom: 5px;
}

div.selector {
    margin-bottom: 20px;
    max-width: 247px;

    border: 1px solid #4F26DB;
    border-radius: 5px;

    font-weight: 600;
}
div.selector span {
    position: relative;
    max-width: 224px;

}
div.selector span:after {
    content: '';
    display: block;
    width: 11px;
    height: 7px;
    margin-top: -3px;

    /* background-image: url(img/sprite.svg); */
    background-image: url(img/fleche.svg);
    /* background-position: -5px -51px; */
    background-repeat: no-repeat;

    position: absolute;
    right: 9px;
    top: 50%;
}
/* .no-svg div.selector span:after {
    background-image: url(img/sprite.png);
} */
div.checker {
    margin-right: 10px;
    margin-bottom: 5px;
    float: left;
}
div.checker span, div.checker span:hover, div.checker span:focus, div.checker span:active, div.checker.focus span, div.checker.active span{
    height: 18px;
    width: 18px;

    /* background-image: url(img/sprite.svg);
    background-position: -123px -25px; */
    background-image: url(img/case.svg);
    background-repeat: no-repeat;
    background-position: center !important;
}
/* .no-svg div.checker span {
    background-image: url(img/sprite.png);
} */
div.checker span.checked, div.checker.focus span.checked, div.checker.hover span.checked, div.checker.active span.checked {
    /* background-position: -246px -51px; */
    background-image: url(img/croix2.svg);
    /* background-size: 60%; */
}


/* -------------------------
    PAGINATION BAR
------------------------- */
.pagination-bar {
    padding-top: 15px;
    padding-bottom: 15px;
}
.bottom-bar {
    margin-bottom: 30px;
}
.pagination-bar:after {
    content: '';
    display: block;
    clear: both;
}
.pagination-bar .result-length {
    float: left;
}
.pagination-bar ul {
    margin-bottom: 0;
    padding-left: 0;

    list-style: none;

    float: right;
}
.archive-page-bar.pagination-bar ul {
    float: none;
    clear: both;
    padding-top: 20px;
    text-align: center;
}
.pagination-bar ul li {
    float: left;
    margin-right:25px;
    margin-bottom: 0;
}
.archive-page-bar.pagination-bar ul li {
    float: none;
    display: inline-block;
}
.pagination-bar ul li:last-child {
    margin-right: 0;
}
.pagination-bar ul li a {
    text-decoration: none;
}
.pagination-bar ul li.current a {
    font-weight: 700;
}
.pagination-bar ul li a.previous, .pagination-bar ul li a.next {
    display: block;
    width: 5px;
    height: 8px;
    margin-top: 6px;

    text-indent: -5000px;

    background-image: url(img/sprite.svg);
    background-position: -5px -41px;
    background-repeat: no-repeat;
}
.pagination-bar ul li a.next {
    background-position: -11px -41px;
}
.no-svg .pagination-bar ul li a.previous, .no-svg .pagination-bar ul li a.next {
    background-image: url(img/sprite.png);
}

.search-article {
    padding: 25px;

    border-bottom: 1px solid #6e6668;
}
.search-article:after {
    content: '';
    display: block;
    clear: both;
}
.search-article:first-child {
    border-top: 1px solid #6e6668;
}
.search-article .article-wrap {
    padding: 0;
}
.search-article .type {
    font-weight: bold;
    line-height: 14px;
}
.search-article h2, .search-article h2 a {
    margin: 8px 0;
    font-size: 20px;
    line-height: 20px;
    color: #4F26DB;

    text-decoration: none;
}
.search-article .author-date {
    display: block;
    margin-bottom: 15px;
}
.search-article p {
    margin-bottom: 15px;
    line-height: 25px;
}

.search-article img {
    float: left;
    margin-right: 25px;
}
.search-article.has-image:after {
    content: '';
    display: block;
    clear: both;
}
.search-article.has-image .article-wrap {
    /*max-width: 390px;*/
}

.search-keyword {
    font-weight: 700;
}

.search-results-list .notfound {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

.search-results-list .notfoundlink {
    display: block;
    font-size: 16px;
    color: #4F26DB;;
    text-align: center;
}


@media only screen and (max-width:850px) {
    .search-wrapper {
      max-width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }
    .filters-bar {
        width: auto;
        margin-left:0;
        margin-bottom: 30px;
        padding: 15px;
        float: none;
        background-color: #f6f7f8;
    }
    .filters-bar h2{
        margin-bottom: 0;
        cursor: pointer;
    }
    .filters-bar h2:after {
        content: '';
        width: 0;
        height: 0;
        margin-top: -7px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid #3a3637;

        position: absolute;
        right: 15px;
        top: 50%;
    }
    .filters-bar form {
        display: none;
    }
    .open.filters-bar form {
        display: block;
    }
    .open.filters-bar h2:after {
        border-top: none;
        border-bottom: 15px solid #3a3637;
    }
    .open.filters-bar h2{
        margin-bottom: 24px;
    }
    
}


.scroll-arrow {
    display: block;
    height: 40px;
    width: 40px;
    margin-left: -20px;

    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 110;

    border-radius: 50%;

    background-color: #4F26DB;
    text-indent: -5000px;
}
.scroll-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #FFF;
    position: absolute;
    top: 17px;
    left: 15px;
}


/* --------------------------------------------------
    
    TOGGLE
    
-------------------------------------------------- */
.toggle {
    margin-bottom: 20px;
}
.toggle__title {
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;

    border-bottom: 1px solid #454545;
    border-top: 1px solid #454545;
}
.toggle__title:after {
    content: '';
    display: block;
    clear: both;
}
.toggle__title h2 {
    float: left;
}
.toggle__content {
    display: none;
    border-bottom: 1px solid #454545;
}
.toggle__icon {
    float: right;

    width: 0;
    height: 0;
    margin-top: 23px;
    margin-right: 20px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #454545;
}
.opentoggle .toggle__content {
    display: block;
}
.opentoggle .toggle__icon {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 16px solid #454545;
}
.article-reviews {
    padding-top: 50px;
    padding-bottom: 50px;
}
.article-reviews .review {
    margin-bottom: 10px;
    width: 50%;
    float: left;
    clear: left;
}

.article-reviews .review .review-wrap {
    padding-top: 20px;
    margin: 0 10px 20px 10px;
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}
.article-reviews .review:hover .review-wrap {
    background-color: #f7f7f7;
}
.article-reviews .review.right {
    float: right;
    clear: right;
}
.article-reviews .review .title {
    display: block;
    text-align: center;

    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;

    cursor: pointer;

}
.article-reviews .review .top-review {
    text-align: center;
    cursor: pointer;
    padding: 20px;
}
.article-reviews .review .top-review span {
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
}
.article-reviews .review .top-review span.sub-title {
    background-color: transparent;
    display: block;
    margin-bottom: 0;
}
.article-reviews .review .top-review span.sub-title.title-rev {
    padding-top: 15px;
}
.article-reviews .review .top-review span.member-pict {
    margin-right: 20px;
}




.article-reviews .review .top-review img {
    display: block;
    max-height: 150px;
    max-width: 200px;
    width: auto;
    height: auto;
}
.article-reviews .review .top-review .member-pict img {
    max-width: 83px;
}
.article-reviews .review .top-review .review-logo img {
    max-height: 110px;
}
.article-reviews .review .review-content {
    padding: 40px 20px 20px 20px;
    margin-top: -45px;

    font-size: 14px;
    line-height: 24px;
    display: none;
}
.article-reviews .review .sub-title {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.article-reviews .review .review-content .file_link {
    display: block;
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;

    background-image: url(img/pdf.png);

    background-size: 100%;
    text-indent: -5000px;
}

.article-reviews .review .review-content .external_link {
    display: block;
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;

    background-image: url(img/site.png);

    background-size: 100%;
    text-indent: -5000px;
}
.article-reviews .review .review-content iframe {
    max-width: 100%;
}

/* --------------------------------------------------
        
       NEWSLETTER
        
    -------------------------------------------------- */


.digiForm input[type="text"] {
    border-style: solid;
    border-width: 1px;
    padding: 1px 2px;
}

.df-form-widget {
	text-align: left;
}

.df-form-widget li {
	margin: 0;
	padding: 0;
}
.df-form-widget li::before {
	display: none;
}


/* --------------------------------------------------
	ERRORS
-------------------------------------------------- */

.df-form-widget .errors {
	margin-bottom: 20px;
	padding: 14px 16px;
	color: #ff0000;
	font-weight: bold;
	background: #ffe7e7;
	border-left: 3px solid #f00;
}
.df-form-widget .errors li + li {
	margin-top: 0.5em;
}


/* --------------------------------------------------
	SUCCESS
-------------------------------------------------- */

.df-form-widget .formOk {
	margin-bottom: 20px;
	padding: 14px 16px;
	color: #008e18;
	font-weight: bold;
	background: #ebffef;
	border-left: 3px solid #008e18;
}


/* --------------------------------------------------
	FIELDSET / STRUCTURE
-------------------------------------------------- */

.df-form-widget fieldset {
	padding: 0;
	border: none;
}

.df-form-widget fieldset > article {
	margin: 10px 0;
	margin-left: 200px;
}
.df-form-widget fieldset > article::after {
	content: '';
	display: block;
	clear: both;
}
.df-form-widget fieldset > article > label {
	width: 200px;
	display: block;
	margin: 1px 0 1px -200px;
	padding: 0.5em 30px 0.5em 0;
	box-sizing: border-box;
	float: left;

	text-align: right;
	font-weight: bold;
}
/*.df-form-widget fieldset > article.error {
	padding-bottom: 2px;
    border-bottom: 2px dotted #f00;
}*/
.df-form-widget fieldset > article.error > div {
	background: #fff1f1;
}
.df-form-widget fieldset > article.req > label::after {
	content: '*';
	font-size: 0.8em;
	padding-left: 0.2em;
	vertical-align: top;
	color: #dc2c4e;
}

@media (max-width: 560px) {
	.df-form-widget fieldset > article {
		margin-left: 0;
	}
	.df-form-widget fieldset > article > label {
		float: none;
		width: auto;
		text-align: left;
		padding: 0;
		margin: 15px 0 5px;
	}
}


/* --------------------------------------------------
	CHAMPS
-------------------------------------------------- */

.df-form-widget input[type="text"],
.df-form-widget select {
	box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0.5em 0.6em;
    font-size: 1em;
    border: 1px solid #888;
}
.df-form-widget fieldset > article.error input[type="text"],
.df-form-widget fieldset > article.error select {
	background: #fff1f1;
}
/*.df-form-widget fieldset > article.error input[type="text"],
.df-form-widget fieldset > article.error select {
	border-color: #f00;
}*/


/* -------------------------
	TEXTE
------------------------- */

.df-form-widget fieldset > article.formTxt  {
	margin-top: 30px;
	font-style: italic;
}

.df-form-widget fieldset > article.formTxt h1  {
	display: none;
}


/* -------------------------
	RADIO
------------------------- */

.df-form-widget fieldset > article.formRadio li {
	display: inline-block;
    padding: 0.5em 0;
    margin-right: 15px;
}
.df-form-widget fieldset > article.formRadio li input[type="radio"] {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.3em 0 0;
}


/* -------------------------
	RADIO
------------------------- */

.df-form-widget fieldset > article.formCheckbox {
	position: relative;
}
.df-form-widget fieldset > article.formCheckbox > label {
	width: auto;
	float: none;
	padding: 0;
	margin-left: 20px;
	display: block;
	text-align: left;
	font-weight: normal;
}
.df-form-widget fieldset > article.formCheckbox > div {
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.df-form-widget fieldset > article.formCheckbox input[type="checkbox"] {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.3em 0 0;
}


/* -------------------------
	BUTTON
------------------------- */

.df-form-widget fieldset > article:last-child {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #c2c2c2;
}

.df-form-widget button {
	display: block;
	margin-left: 200px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	padding: 1em 1.5em;
	color: #fff;
	border: none;
	background: #dc2c4e;
	border-radius: 5px;
}

/* --------------------------------------------------
        
       TEAM
        
    -------------------------------------------------- */



.team-selector {
    padding: 0;
    margin: 0;
    padding-top: 50px;
    font-size: 0;

    list-style: none;
    text-align: center;
    border-bottom: 1px solid #4F26DB
    ;
}
.team-selector li {
    display: inline-block;
    width: 33.3333%;
    margin-bottom: 0;
}
.team-selector li a {
    display: block;
    padding: 10px;
    text-decoration: none;
     background-color: #f1f0ec;
     text-transform: uppercase;
     font-size: 14px;
     font-weight: bold;
}
.team-selector li.current a {
    background-color: #4F26DB
    ;
    color: #fff;
}




.service-block {
    margin-bottom: 50px;
    text-align: center;
    display: none;
}
.service-block.current {
    display: block;
}
.service-block-wrap > img {
    margin-top: 20px;
}
.service_group_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}
.service_group_wrap:after {
    content: '';
    display: block;
    clear: both;
}
.service-block h2 {
    text-align: center;
}




.service-block .team-member {
    display: block;
    width: 25%;
    margin-bottom: 40px;
    font-size: 0;
}
.service-block .team-member-wrap {
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
}
.service-block .team-member img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.service-block .team-member span {
    display: block;
}
.service-block .team-member span.name {
    font-weight: bold;
}


.service-block .team-member span.img-layers {
    position: relative;
}
.service-block .team-member span.img-layers:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    opacity: 0;

    background-color: rgba(0, 0, 0, 0.7);

    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -ms-transition: opacity .15s ease-in-out;
    -o-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
}
.service-block .team-member span.img-layers span.info-hover {
    display: block;
    color: #fff;
    position: absolute;
    z-index: 2;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    bottom: 30px;
    left: 0;
    right: 0;
    opacity: 0;

    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -ms-transition: opacity .15s ease-in-out;
    -o-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
}
.service-block .team-member span.img-layers span.info-hover a {
    display: block;
    padding: 10px 5px;
    background-color: #4F26DB;
    text-decoration: none;

    margin-bottom: 20px;
    color: #fff;
}
.service-block .team-member:hover span.img-layers span, .service-block .team-member:hover span.img-layers:after {
    opacity: 1;
}

@media only screen and (max-width:900px) {
    .service-block .team-member {
        width: 33.33333%;
    }
}


@media only screen and (max-width:810px) {
    .article-reviews .review {
        width: 100%;
        float: none;
    }
}

@media only screen and (max-width:650px) {
    .service-block .team-member {
        width: 50%;
    }
}
@media only screen and (max-width:420px) {
    .service-block .team-member {
        width: 100%;
        max-width: 250px;
    }
}
/* --------------------------------------------------
        
       END TEAM
        
    -------------------------------------------------- */

    .author-side {
     padding-right: 320px;
    }
    .author-side .aside {
        width: 260px;
        float: right;
        margin-right: -320px;
        background-color: #4F26DB;
        padding: 20px;
    }
    .author-side .aside h2 {
        color: #fff;
        text-transform: unset;
    }
    .author-side .aside a {
        display: block;
        padding: 10px;
        font-size: 16px;
        color: #fff;
        font-weight: bold;
        text-decoration: none;

        border-bottom: 1px solid #4F26DB;
    }
    .author-side .aside a:hover {
        background-color: #fff;
        color: #4F26DB;
    }

    .author-side .aside a.morearticles {
        margin-top: 20px;
        font-size: 14px;
        text-align: center;

        background-color: #f1f0ec;
        color: #4F26DB;
    }

    @media only screen and (max-width:740px) {
        .author-side {
            padding-right: 0;
        }
        .author-side .aside {
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 20px;
            float: none;
            margin-right: auto;
            margin-left: auto;
        }
    }

    
/* --------------------------------------------------
    
    DIGIFACTORY FORM HACK
    
-------------------------------------------------- */

fieldset[data-codeform="Toulouse2020_gp"] section.grp_group_2 {
    display: none;
}