/* GENERAL */

.modal-bloc-infos .modal-content-infos{
    display: none;
}

.open-modal{
    cursor: pointer;
}

.show-modal{
    position: fixed;
    top: 0;
    right: -100vw;
    display: flex;
    z-index: 999;
    transition: ease-in 500ms;
    height: 100vh;
}

.show-modal.active {
    right: 0;
}

.show-modal .background-bloc{
    position: fixed;
    top: 0;
    left: 0vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    display: none;
}

.show-modal.active .background-bloc{
    display: block;
}

.show-modal .content-bloc{
    transition: ease-in 500ms;
    background: #fff;
    margin: 15px;
    /*width: 100vw;*/
    padding: 25px;
    position: relative;
    width: calc(100vw - 30px);
    max-width: 800px;
    height: calc(100vh - 30px);
    overflow-y: auto;
}

.show-modal .content-bloc .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    border: 1px solid #000;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.show-modal .content-bloc .header-modal {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.show-modal .content-bloc .content-modal .programmes{
    margin-bottom: 25px;
}

.show-modal .content-bloc .content-modal .videos {
    margin-bottom: 25px;
}

.show-modal .content-bloc .content-modal .distributions{
    margin-bottom: 25px;
}

.show-modal .content-bloc .content-modal .content-row{
    display: flex;
    flex-wrap: wrap;
}

.show-modal .content-bloc .header-modal .title{
    margin-bottom: 0;
}

.show-modal .content-bloc .header-modal .button-modal {
    display: none;
}

.show-modal .content-bloc .content-modal .title{
    margin-bottom: 25px;
}



/* SW POSTS LIST */

.sw-block .sw-posts-bloc {
    max-width: 100vw;
    overflow: hidden;
}

.sw-block .sw-posts-list{
    display: flex;
    flex-wrap: wrap;

    /*animation: actualites-anim 80s linear infinite;
    animation-play-state: running;
    display: flex;
    position: relative;
    transform: translate3d(0%,0,0);
    width: -moz-fit-content;
    width: fit-content;*/
}

.sw-block .sw-posts-list .sw-post {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

/*.sw-block .sw-posts-list .sw-post.post-flex{
    display: flex;
}*/

.sw-block .sw-posts-list .sw-post:nth-child(2n + 1){
    /*padding-left: 0;*/
}

.sw-block .sw-posts-list .sw-post:nth-child(2n){
    padding-right: 0;
}

.sw-block .sw-posts-list .sw-post .image{
    max-width: 350px;
    width: 50%;
    height: 100%;
}

.sw-block .sw-posts-list .sw-post .image a{
    display: block !important;
    height: 100%;
    width: 100%;
}

.sw-block .sw-posts-list .sw-post .image img{
    object-fit: contain;
    height: 100%;
    width: 100%;
    max-width: unset;
    z-index: -1;
    position: relative;
    display: block;
}

.sw-block .sw-posts-list .sw-post .content{
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 15px;
}

/*.sw-block .sw-posts-list .sw-post.post-flex .content{
    padding-top: 0;
    padding-left: 15px;
}*/

.sw-block .sw-posts-list .sw-post .content .date {
    text-transform: uppercase;
    /*font-weight: bold;*/
    font-weight: 300;
    font-size: 14px;
}

.sw-block .sw-posts-list .sw-post .content .title{
    /*font-weight: 600;*/
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 15px;
}

.sw-block .sw-posts-list .sw-post .content .resume{
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
}

.sw-block .sw-posts-list .sw-post .content .link {
    height: 100%;
    display: flex;
    align-items: end;
    text-transform: uppercase;
}

.sw-block .sw-posts-list .sw-post .content .link a{
    background: transparent;
    color: #9d6e3e;
    line-height: 1;
    border-left: 3px solid #9d6e3e;
    /*font-weight: bold;*/
    font-weight: 300;
    padding: 5px 10px;
    font-size: 14px !important;
    text-decoration: none;
    transition: ease-in 250ms;
}

.sw-block .sw-posts-list .sw-post .content .link a:hover{
    background: #9d6e3e;
    color: #fff;
}

.sw-block .sw-posts-list .sw-post .content .place{
    display: flex;
    font-style: italic;
    margin-bottom: 15px;
}

.sw-block .sw-posts-list .sw-post .content .place .separator{
    padding: 0 5px;
    transform: rotate(10deg);
}

.sw-block .sw-posts-list .sw-post .content .buttons{
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    height: 100%;
}

.sw-block .sw-posts-list .sw-post .content .button {
    /*background: transparent;
    width: fit-content;
    padding: 5px 10px;
    color: #9d6e3e;
    border: 2px solid #9d6e3e;
    text-transform: uppercase;
    text-decoration: none;
    transition: ease-in 250ms;
    font-size: 14px;
    margin-top: 5px;*/
    background: transparent;
    color: #9d6e3e;
    line-height: 1;
    border-left: 3px solid #9d6e3e;
    /*font-weight: bold;*/
    font-weight: 300;
    padding: 5px 10px;
    font-size: 14px !important;
    text-decoration: none;
    transition: ease-in 250ms;
    text-transform: uppercase;
}

.sw-block .sw-posts-list .sw-post .content .button i{
    padding: 0 5px;
}

.sw-block .sw-posts-list .sw-post .content .button{
    margin-bottom: 10px;
}

.sw-block .sw-posts-list .sw-post .content .button:first-child{
    margin-right: 15px;
}

.sw-block .sw-posts-list .sw-post .content .button:hover {
    background: #9d6e3e;
    color: #fff;
}

@media(max-width: 1200px){
    .sw-block .sw-posts-list .sw-post .content{
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }

    .sw-block .sw-posts-list .sw-post .image{
        width: 100%;
    }
}

@media(max-width: 768px){
    .sw-block .sw-posts-list .sw-post{
        width: 100%;
        /*padding-left: 0 !important;
        padding-right: 0 !important;*/
        margin-bottom: 25px;
    }

    .sw-block .sw-posts-list.no-loop{
        width: unset;
    }
}

/* Animation */

@keyframes actualites-anim {
    0% {
        transform: translate3d(0%,0,0)
    }

    to {
        transform: translate3d(-50%,0,0)
    }
}



/* SW INTERVIEWS LIST */

.sw-block .sw-interviews-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.sw-block .sw-interviews-header .title{
    margin-bottom: 0;
}

.sw-block .sw-interviews-header a{
    background: transparent;
    color: #9d6e3e;
    line-height: 1;
    border-left: 3px solid #9d6e3e;
    /*font-weight: bold;*/
    font-weight: 300;
    padding: 5px 10px;
    font-size: 14px !important;
    text-decoration: none;
    transition: ease-in 250ms;
    text-transform: uppercase;
}

.sw-block .sw-interviews-header a:hover{
    background: #9d6e3e;
    color: #fff;
}

.sw-block .sw-interviews-list{
    display: flex;
    flex-wrap: wrap;
    /*margin: 0 -25px;*/
}

.sw-block .sw-interview {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.sw-block .sw-interview .image{
    width: 50%;
    height: 100%;
    max-width: 350px;
}

.sw-block .sw-interview .image.image-bottom{
    margin-top: 25px;
}

.sw-block .sw-interview .image a{
    display: block !important;
    height: 100%;
    width: 100%;
    position: relative;
}

.sw-block .sw-interview .image img{
    object-fit: contain;
    height: 100%;
    width: 100%;
    max-width: unset;
    z-index: -1;
    position: relative;
    display: block;
}

.sw-block .sw-interview .content{
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 15px;
}

.sw-block .sw-interview .content .title{
    /*font-weight: 600;*/
    font-weight: 300;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.sw-block .sw-interview .content .title.title-top {
    margin-top: 0;
}

.sw-block .sw-interview .content .citation{
    font-size: 16px;
    position: relative;
    padding-top: 0;
    text-align: left;
    margin: 0 0 15px;
}

.sw-block .sw-interview .content .citation::before{
    content: unset;
}

.sw-block .sw-interview .content .resume{
    margin-bottom: 25px;
    /*font-size: 18px;*/
    /*font-style: italic;*/
}

.sw-block .sw-interview .content .link {
    height: 100%;
    display: flex;
    align-items: end;
    text-transform: uppercase;
}

.sw-block .sw-interview .content .link a{
    background: transparent;
    color: #9d6e3e;
    line-height: 1;
    border-left: 3px solid #9d6e3e;
    /*font-weight: bold;*/
    font-weight: 300;
    padding: 5px 10px;
    font-size: 14px !important;
    text-decoration: none;
    transition: ease-in 250ms;
}

.sw-block .sw-interview .content .link a:hover{
    background: #9d6e3e;
    color: #fff;
}

@media(max-width: 1200px) {
    .sw-block .sw-interview{
        /*width: 50%;
        margin-bottom: 25px;*/
    }

    .sw-block .sw-interview .image{
        width: 100%;
    }

    .sw-block .sw-interview .content{
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }
}

@media(max-width: 767px) {
    /*.sw-block .sw-interview{
        width: 100%;
    }*/
}



/* SW PARALAX IMAGE */

.sw-block .sw-paralax-image {
    height: 600px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.home .sw-block .sw-paralax-image {
    height: 600px !important;
}

@media(max-width: 992px){
    .sw-block .sw-paralax-image {
        height: 400px;
    }

    @supports (-webkit-touch-callout: none) {
        .sw-block .sw-paralax-image {
            background-attachment: scroll;
        }
    }
}



/* SW BLOCK VIDEO */

.before-parallax-video{
    background: #fff;
    padding: 100px 0;
    margin: 0 auto;
    max-width: unset;
}

.before-parallax-video > div{
    max-width: 1800px;
    margin: 0 auto;
}

.container-before-parallax-video{
    margin: 0;
    padding: 100px 0;
    background: #fff;
    max-width: unset;
}

.container-before-parallax-video > div {
    max-width: 1800px;
    padding: 0 100px;
    margin: 0 auto;
    position: relative;
}

.container-before-parallax-video .wp-block-columns{
    margin-bottom: 0;
}

.block-video{
    height: 500px;
    padding-bottom: 50px;
    padding-top: 50px;
}

.block-video video{
    min-width: 100%;
    position: fixed;
    /*top:0;*/
    z-index: -999;
    top: calc(50% - 150px);
    transform: translateY(-50%);
    max-width: 100vw;
}

.block-video.hide video{
    display: none;
}

@media(max-width: 992px){
    .before-parallax-video{
        padding: 50px 50px;
    }

    .block-video {
        display: none;
    }

    .container-before-parallax-video > div{
        padding: 0 50px;
    }
}

@media(max-width: 767px){
    .before-parallax-video{
        padding: 50px;
    }

    .container-before-parallax-video{
        padding: 50px 0;
    }
}

@media(max-width: 576px){
    .before-parallax-video{
        padding: 0 25px;
        margin: 50px auto;
    }

    .container-before-parallax-video > div{
        padding: 0 25px;
    }
}



/* SW BLOCK ALL INTERVIEWS */

/*.sw-block .sw-full-interview {
    display: flex;
    flex-wrap: wrap;
}

.sw-block .sw-full-interview .left-col {
    width: 33%;
}

.sw-block .sw-full-interview .right-col {
    width: 67%;
    padding-left: 25px;
}*/

.sw-block .sw-all-interviews {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}

.sw-block .sw-all-interviews .sw-interview-col {
    width: 33.33%;
    padding: 0 25px;
    margin-bottom: 100px;
    display: block;
}

.sw-block .sw-all-interviews .sw-interview {
    max-width: 350px;
    margin: 0 auto;
}

.sw-block .sw-all-interviews .sw-interview .image{
    width: 100%;
    height: unset;
}

.sw-block .sw-all-interviews .sw-interview .image img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sw-block .sw-all-interviews .sw-interview .content{
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
}

.sw-block .sw-all-interviews .sw-interview{
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
}

.sw-block .sw-all-interviews .sw-interview .title{
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.5;
    text-transform: none;
}

.sw-block .sw-all-interviews .sw-interview .title .subtitle {
    font-size: 18px;
    text-transform: none;
    font-style: italic;
}

.sw-block .sw-all-interviews .sw-interview .buttons{
    margin-top: 0;
}

@media(max-width: 992px){
    .sw-block .sw-all-interviews .sw-interview-col {
        width: 50%;
    }
}

@media(max-width: 767px){
    .sw-block .sw-all-interviews .sw-interview-col {
        margin-bottom: 50px;
    }
}

@media(max-width: 576px){
    .sw-block .sw-all-interviews .sw-interview-col {
        width: 100%;
    }
}



/* OWL CAROUSEL */

.sw-block .owl-nav{
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
}

.sw-block .owl-nav button{
    font-size: 35px !important;
    transition: ease-in 250ms;
    width: 32px;
    height: 32px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    border: 1px solid #000 !important;
}

.sw-block .owl-nav button:hover{
    background: #9d6e3e !important;
    border-color: #9d6e3e !important;
    color: #FFF !important;
}

.sw-block .owl-nav button span {
    line-height: 1;
}

.sw-block .owl-nav .owl-next span{
    margin-left: 2px;
}

.sw-block .owl-nav .owl-prev span{
    margin-right: 1px;
}


/* BLOC SW ALL DISCOGRAPHIES, ALL ECOUTER VOIR et ALL MEDIAS */

.sw-block .sw-all-discographies,
.sw-block .sw-all-ecouter-voir,
.sw-block .sw-all-medias,
.sw-block .sw-all-photos{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}

.sw-block .sw-discographie-col,
.sw-block .sw-ecouter-voir-col,
.sw-block .sw-media-col,
.sw-block .sw-photos-col {
    width: 33.33%;
    padding: 0 25px;
    margin-bottom: 100px;
}

.sw-block .sw-photos-col{
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-block .sw-discographie,
.sw-block .sw-ecouter-voir,
.sw-block .sw-media {
    max-width: 350px;
}

.sw-block .sw-photos {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.sw-block .sw-discographie .image{
    /*height: 350px;*/
    width: 350px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sw-block .sw-discographie .image img{
    display: block;
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
}

.sw-block .sw-ecouter-voir .image img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sw-block .sw-media .image img{
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    width: auto;
    display: block;
}

.sw-block .sw-photos .image{
    /*height: 350px;*/
    width: 350px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sw-block .sw-photos .image img{
    display: block;
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
}

.sw-block .sw-all-photos .buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 100px;
}

.sw-block .sw-discographie .content,
.sw-block .sw-ecouter-voir .content,
.sw-block .sw-media .content{
    padding-top: 15px;
    display: flex;
    flex-direction: column;
}

.sw-block .sw-discographie .date,
.sw-block .sw-ecouter-voir .date{
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
}

.sw-block .sw-discographie .title,
.sw-block .sw-ecouter-voir .title{
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.sw-block .sw-media .title{
    display: none;
}

.sw-block .sw-media .citation{
    font-size: 16px;
    position: relative;
    padding-top: 0;
    text-align: left;
    margin: 0 0 15px;
}

.sw-all-medias .header-modal .citation{
    display: none;
}

.sw-block .sw-discographie .category,
.sw-block .sw-ecouter-voir .category{
    font-style: italic;
    margin-top: -15px;
    margin-bottom: 15px;
}

.sw-block .sw-discographie .buttons,
.sw-block .sw-ecouter-voir .buttons,
.sw-block .sw-media .buttons{
    margin-top: 0;
}

.show-modal .content-bloc .videos .video iframe {
    width: 100%;
}

.show-modal .content-bloc .videos .owl-nav{
    margin-top: 5px;
}

.show-modal .content-bloc .content-modal .content-row .programme,
.show-modal .content-bloc .content-modal .content-row .distribution{
    width: 50%;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.show-modal .content-bloc .content-modal .content-row .programme.one-col,
.show-modal .content-bloc .content-modal .content-row .distribution.one-col{
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.show-modal .content-bloc .content-modal .content-row .programme:nth-child(2n + 1),
.show-modal .content-bloc .content-modal .content-row .distribution:nth-child(2n + 1){
    padding-right: 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.show-modal .content-bloc .content-modal .content-row .programme.one-col:nth-child(2n + 1),
.show-modal .content-bloc .content-modal .content-row .distribution.one-col:nth-child(2n + 1){
    padding-right: 0;
    border-right: unset;
}

.show-modal .content-bloc .content-modal .content-row .programme:nth-child(2n),
.show-modal .content-bloc .content-modal .content-row .distribution:nth-child(2n){
    padding-left: 25px;
}

.show-modal .content-bloc .content-modal .buttons{
    margin-top: 0;
    margin-bottom: 10px;
}

@media(max-width: 992px){
    .sw-block .sw-discographie-col,
    .sw-block .sw-ecouter-voir-col,
    .sw-block .sw-media-col{
        width: 50%;
    }

    .sw-block .sw-photos-col {
        width: 50%;
    }
}

@media(max-width: 767px){
    .sw-block .sw-discographie-col,
    .sw-block .sw-ecouter-voir-col,
    .sw-block .sw-media-col{
        margin-bottom: 50px;
    }
}

@media(max-width: 576px){
    .sw-block .sw-discographie-col,
    .sw-block .sw-ecouter-voir-col,
    .sw-block .sw-media-col{
        width: 100%;
    }

    .show-modal .content-bloc .content-modal .content-row .programme,
    .show-modal .content-bloc .content-modal .content-row .distribution{
        width: 100%;
    }

    .show-modal .content-bloc .content-modal .content-row .programme:nth-child(2n + 1),
    .show-modal .content-bloc .content-modal .content-row .distribution:nth-child(2n + 1){
        padding-right: 0;
        border-right: unset;
    }

    .show-modal .content-bloc .content-modal .content-row .programme:nth-child(2n),
    .show-modal .content-bloc .content-modal .content-row .distribution:nth-child(2n){
        padding-left: 0;
    }

    .sw-block .sw-photos-col {
        width: 100%;
    }
}