<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***** css de la pop up de lecture de vidÃ©os facebook */
:root {
    --noir: #000;
    --rouge: #FF0000;
    --blanc: #FFF;
    --gris-clair : #f2f4f7;

    --noir: #262626;
    --orange: #EF7D00;
    --vert-drapeau: #3FA535;
    --vert: #0f7705;
    --vert-fonce:#023A05;
    --blanc: #FFF;
}

#facebook_popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(14, 14, 14, 0.0);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 0;
    transition: all 0.2s ease;
    cursor: grab;
}
#facebook_popup.active{
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    z-index: 1000;
}
#facebook_popup .video{
    position: absolute;
    top: -350px;
    opacity: 0.5;

    width: 850px;
    height: 480px;
    background-color: #1a1a1a;
    border: 3px solid #1a1a1a;

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.35s ease;
}
#facebook_popup.active .video{
    position: absolute;
    top: 20vh;
    opacity: 1;
    animation: animbox 0.5s;
    cursor: pointer;
}
@keyframes animbox{
    0%{
        opacity: 0;
        top: -100px;
    }
    100% {
        opacity: 1;
        top: 20vh;
    }
}
#facebook_popup .video iframe{
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;

}





#facebook_popup .video{
    position: absolute;
    top: -350px;
    opacity: 0.5;

    width: 850px;
    height: 480px;
    background-color: #1a1a1a;
    border: 3px solid #1a1a1a;

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.35s ease;
}

@media (max-width: 992px){
    #facebook_popup .video{
        width: 600px;
        height: 350px;
    }
} 

@media (max-width: 620px) {
    #facebook_popup .video{
        width: 400px;
        height: 280px;
    }

}

@media (max-width: 480px) {
    
    #facebook_popup .video{
        width: 95%;
        height: 250px;
    }

}</pre></body></html>