
:root {
    --noir: #000;
    --rouge: #FF0000;
    --blanc: #FFF;
    --gris-clair : #f2f4f7;

    --noir: #262626;
    --orange: #EF7D00;
    --vert-drapeau: #3FA535;
    --vert: #0f7705;
    --vert-fonce:#023A05;
    --blanc: #FFF;
    --bleu: rgb(29 138 240);
}



#playlist{
    display: block;
    width: 100% !important;
    /* border: 1px solid rgb(215, 234, 13); */
    background-color: var(--blanc);
    padding: 0px;
}

#playlist .titre{
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 100% !important;
    margin-top: 15px;
    margin-bottom: 20px;
    /* background-color: rgba(255, 208, 157, 0.2); */
    border-radius: 4px;
    border-bottom: 3px solid rgba(63, 78, 64, 0.6);
    background-color: var(--orange);
}
#playlist .titre h2{
    font-size: 16px;
    font-weight: 600;
    color: var(--blanc);
}
#playlist .titre h2 span{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--noir);
}

#playlist header{
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    height: auto;
}
#playlist header .inner{
    position: relative;
    width: 100%;
    min-height: 425px;
}

#playlist header iframe{
    position: relative;
    width: 100%;
    min-height: 425px;
}


#playlist .items{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
#playlist .items .item{
    position: relative;
    width:  100%;
    background-color: rgba(26, 31, 42, 0.1555);
    padding: 20px;
    border-radius: 5px;
   
}
#playlist .items .item{
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
#playlist .items .item .inner{
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-bottom: 10px;
}
#playlist .items .item .inner a{
    position: relative;
    display: block;
    width: 100%;
    transition: ease 0.3s all;
}

#playlist .items .item .inner img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
#playlist .items .item a:hover img{
    transform: scale(1.02);
}
#playlist .items .item .caption{
    position: relative;
    width: 100%;
}

#playlist .items .item .caption h3{
    position: relative;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    color: rgb(61, 61, 61);
    margin-left: 5px;

}
#playlist .items .item .caption .links{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#playlist .items .item .caption .links a{
    position: relative;
    background-color: rgba(48, 57, 48, 0.5);
    text-align: center;
    padding: 6px 15px;
    border-radius: 20px;
    color: var(--gris-clair);
    font-size: 14px;
    transition: ease 0.3s all;
    text-decoration: none;
    cursor: pointer;
    min-width: 70px;
}
#playlist .items .item .caption .links a:nth-child(1){
    /* background-color: rgba(3, 150, 3, 0.7); */
    /* background-color: rgba(40, 40, 40, 0.7); */
    margin-bottom: 3px;
    margin-right: 7px;
}
#playlist .items .item .caption .links a:nth-child(1):hover{
    background-color: rgba(3, 118, 3, 0.99);
}

#playlist .items .item .caption .links a:nth-child(2){
    background-color: rgba(255, 255, 255, 0.999);
    margin-right: 7px;
    color: #262626;
}
#playlist .items .item .caption .links a:nth-child(2):hover{
     background-color: rgba(40, 40, 40, 0.99);
     color: var(--blanc);
}

/******************************************* Responsive********************/

@media screen and (max-width: 1520px) {

}
@media screen and (max-width: 1400px) {
    #playlist header{
       position: relative;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 400px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 400px;
    }
}
@media screen and (max-width: 1350px) {
    #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 1250px) {
    #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
     #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 350px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 350px;
    }
}
@media screen and (max-width: 1024px) {
    #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 485px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 485px;
    }
}

@media screen and (max-width: 992px) {
    #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 450px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 450px;
    }
}
@media screen and (max-width: 840px) {
    #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 375px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 375px;
    }
}

@media screen and (max-width: 768px) {
    #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 330px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 330px;
    }


    #playlist .items{
        position: relative;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 640px) {
    #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 280px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 280px;
    }
}
@media screen and (max-width: 480px) {
   #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 250px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 250px;
    }
}
@media screen and (max-width: 400px) {
   #playlist header{
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }
    #playlist header .inner{
        position: relative;
        width: 100%;
        min-height: 220px;
    }

    #playlist header iframe{
        position: relative;
        width: 100%;
        min-height: 220px;
    }
}


/**************       dark mode   ***********/
.dark-mode #playlist {
    background-color: rgba(126, 126, 126, 0.001);
}
.dark-mode #playlist .items .item{
    box-shadow: 0 4px 8px 0 rgba(189, 189, 189, 0.01), 0 6px 20px 0 rgba(195, 148, 41, 0.081);
}
.dark-mode #playlist .titre h2,
.dark-mode #playlist .items .item a .caption h3,
.dark-mode #playlist .items .item a .caption .foot .right,
.dark-mode #playlist .items .item a .inner .icon span{
    color: yellow !important;
}
.dark-mode #playlist .items .item a .caption .foot .right{
    border: 1px solid yellow !important;
}
.dark-mode #footer .section_two .content .links_gouv{
    border-top: 1px solid yellow !important;
    border-bottom: 1px solid yellow !important;
}
.dark-mode #page_video_liste .items .item a .caption .foot .right{
    border-bottom: 2px solid yellow;
}

.dark-mode #playlist .items .item a .inner .icon span{
   background-color: rgb(43, 43, 43) !important;
}

.dark-mode #playlist .titre{
   background-color: rgb(34, 34, 34) !important;
   background: rgb(44, 44, 44) !important;
}
.dark-mode #page_galerie .liste .item .inner .icon{
    background-color: #000 !important;
    background: #000 !important;
}
