html{
    overflow-x: hidden;
}

.festival-vimeo-videos-container {
    margin: 0px 0 25px 0px;
    width: 100%;
    height: auto;
    display: grid;
    /* grid-template-columns: 33% 33% 33%; */
    grid-template-rows: 75px 50px 350px;

}

/*** === DATES === ***/

.festival-vimeo-videos-container .dates {
    display: flex;
    justify-content: space-between;
    place-items: center;
}

.festival-vimeo-videos-container .dates .date {
    width: 33.3%;
    height: 100%;
    text-align: center;
    background: #f2f2f2;
    border: 1px solid #dfdfdf;
    cursor: pointer;
}

.festival-vimeo-videos-container .dates .date h4 {
    color: #a7262e;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 75px;
    margin: 0;
}

.festival-vimeo-videos-container .dates .date.active {
    background: #a7262e;
    border: 1px solid #f95456;
}

.festival-vimeo-videos-container .dates .date.active h4 {
    color: white;
}

/*** === PARTIES DE LA JOURNÉE === ***/

.festival-vimeo-videos-container .day_parts {
    display: flex;
    justify-content: space-between;
    place-items: center;
    background: #f2f2f2;
}

.festival-vimeo-videos-container .day_parts .day_part {
    width: 33.3%;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    place-items: center;
    cursor: pointer;
}

.festival-vimeo-videos-container .day_parts .day_part:nth-child(2) {
    border-width: 0 1px;
    border-style: solid;
    border-color: #6c6c6c;
}

.festival-vimeo-videos-container .day_parts .day_part h4 {
    color: black;
    font-size: 1.2rem;
    width: fit-content;
    height: 35px;
    font-weight: 500;
    line-height: 35px;
    margin: 0;
    padding: 0 35px;
}

.festival-vimeo-videos-container .day_parts .day_part.active h4 {
    color: white;
    background: black;
}

/*** === PARTIES DE LA JOURNÉE === ***/

.festival-vimeo-videos-container .vimeo-videos {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 100%;
    width: fit-content;
    height: 100%;
    justify-content: start;
    align-items: center;
    overflow: hidden;
    background: white;
}

.festival-vimeo-videos-container .vimeo-videos .date-videos {
    position: absolute;
    top: 20px;
    left: calc(-0% + 2.5px);
    display: none;
    min-width: 100%;
    width: fit-content;
    height: 250px;
    transition: 0.5s;
}

.festival-vimeo-videos-container .vimeo-videos .date-videos.active {
    display: block;
}

.festival-vimeo-videos-container .vimeo-videos .day_part-videos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    flex-direction: row;
    /* flex-wrap: wrap; */
}

.festival-vimeo-videos-container .vimeo-videos .day_part-videos.active {
    display: flex;
}

.festival-vimeo-videos-container .vimeo-videos .day_part-videos .video {
    min-width: calc(33% - 80px);
    width: calc(33% - 80px);
    max-width: 100%;
    height: 225px;
    cursor: pointer;
    margin: 0 27px;
}

.festival-vimeo-videos-container .vimeo-videos .day_part-videos .video:nth-of-type(3n + 1){
    margin-left: 70px;
}

.festival-vimeo-videos-container .vimeo-videos .day_part-videos .video:nth-of-type(3n){
    margin-right: 70px;
}

/*** === BOUTONS === ***/

.festival-vimeo-videos-container .vimeo-videos .slide_btns {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 50px;
    text-align: center;
    line-height: 50px;
    color: orange;
    z-index: 999999;
    cursor: pointer;
    transition: 0.5s;
}

.festival-vimeo-videos-container .vimeo-videos .slide_btns:hover {
    color: red;
}

.festival-vimeo-videos-container .vimeo-videos .prev_btn {
    left: 20px;
    display: none;
}

.festival-vimeo-videos-container .vimeo-videos .next_btn {
    right: 20px;
}

/* Vidéo Séléctionnée */

.ic-vimeo-videos-container{
    background: white;
}

.ic-vimeo-videos-container .selected-video{
    position: relative;
}

.ic-vimeo-videos-container .selected-video .ic-video-iframe{
    padding: 30px;
}

.ic-vimeo-videos-container .selected-video .ic-video-iframe iframe{
    width: 100%;
}

.ic-vimeo-videos-container .selected-video .ic-video-iframe .ic-video-titles{
    display: flex;
    justify-content: space-between;
}

.ic-vimeo-videos-container .selected-video .ic-video-iframe .ic-video-titles a{
    background: #a7262e;
    padding: 5px 10px;
    color: white;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}

.ic-vimeo-videos-container .selected-video .ic-video-iframe .ic-video-titles label{
    color: #a7262e;
}

.ic-vimeo-videos-container .selected-video .ic-video-related-pages {
    position: absolute;
    left: 100%;
    top: 0;
    width: 250px;
    background: linear-gradient(180deg, #F0A210, #f0a21000);
    height: 100%;
}

.ic-vimeo-videos-container .selected-video .ic-video-related-pages{
    padding: 10px;
}

.ic-vimeo-videos-container .selected-video .ic-video-related-pages h3{
    color: white;
}

.ic-vimeo-videos-container .selected-video .page {
    display: flex;
    margin-bottom: 20px;
}

.ic-vimeo-videos-container .selected-video .page img {
    width: 45%;
    flex: 45%;
    max-width: 45%;
    margin-right: 10px;
    object-fit: contain;
}

.ic-vimeo-videos-container .selected-video .page h4{
    padding: 0;
    font-size: 0.8rem;
    color: #a7262e;
}

.ic-vimeo-videos-container button.back_to_live{
    display: none;
}