<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --noir: #000;
    --rouge: #FF0000;
    --blanc: #FFF;
    --gris-clair : #f2f4f7;

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






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

#page_flashs .titre{
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100% !important;

    color: var(--noir);
    margin-top: 15px;
    margin-bottom: 25px;
    background-color: rgba(255, 208, 157, 0.2);
    border-radius: 4px;
    border-bottom: 3px solid rgba(63, 78, 64, 0.6);
}
#page_flashs .titre h2{
    font-size: 16px;
    font-weight: 600;
}
#page_flashs .liste{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}
#page_flashs .liste::before{
    position: absolute;
    content: "";
    width: 8px;
    border-left: 0px dotted rgba(126, 126, 126, 0.3);
    top: 6px;
    bottom: 0;
    left: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

#page_flashs .liste .item{
    position: relative;
    width: 100%;

    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* justify-content: space-between; */
    min-height: 75px;
    margin-bottom: 12px;
    padding: 15px;
    /* border: 1px solid red; */
    background-color: rgba(123, 124, 95, 0.2);
}
#page_flashs .liste .item{
    position: relative;
    background-color: rgba(231, 253, 225, 0.3);
}
#page_flashs .liste .item.active{
    position: relative;
    background-color: rgba(134, 211, 115, 0.4);
}
#page_flashs .liste .item .libelle{
    position: relative;
    display: block;
    width: 99%;
    padding: 0 !important;
    max-height: auto !important;
    margin-left: 0px !important;
    height: auto;
    z-index: 5;
}

#page_flashs .liste .item .libelle .trait{
    position: relative;
    width: 22px;
    display: inline-block;
    /* border: 0px solid red; */
}
#page_flashs .liste .item .libelle .date{
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--noir);
}


#page_flashs .liste h1 {
    position: relative;
    width: 100%;
    font-size: 14px;
    color: var(--vert);
    margin-top: 65px;
    margin-bottom: 10px;
    font-weight: 600;
}
#page_flashs .liste .trait{
    position: relative;
    width: 100%;
    display: block;
    content: "";
    border: 1px dashed rgb(169, 169, 169);
    margin-top: 10px;
    margin-bottom: 30px;
}

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

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

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

}
@media screen and (max-width: 1350px) {
    
}
@media screen and (max-width: 1250px) {

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

}

@media screen and (max-width: 768px) {
   
   
}
@media screen and (max-width: 640px) {
    
}
@media screen and (max-width: 480px) {
  
}


/**************       dark mode   ***********/
.dark-mode #page_flashs {
    background-color: rgba(126, 126, 126, 0.001);
}
.dark-mode #page_flashs .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 #page_flashs .titre,
.dark-mode #page_flashs .liste .item .libelle .date{
    color: yellow !important;
}
.dark-mode #page_flashs .items .item a .caption .foot .right,
.dark-mode #page_flashs .one_video .item a .caption .foot .right{
    border: 1px solid yellow !important;
}
.dark-mode #page_flashs .titre{
    border-bottom: 1px solid yellow !important;
}
.dark-mode #page_flashs .trait,
.dark-mode #page_flashs .one_video{
    border-color: yellow;
}

.dark-mode #page_flashs .titre{
   background-color: rgb(43, 43, 43) !important;
}

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

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