
#contenu_listeVente {
    min-height: 100vh;
    margin-top: 25px;
    display: flex;
}

/* Bloc Menu Lateral */
#contenu_listeVente #categorie_listeVente {
    margin-right: 30px;
    flex: 1;
    position: fixed;
    margin-top: 80px;
    width: 240px;
}

#menu_lesVentes {
    margin-right: 25px;
    width: 240px;
}

/* Titre Rubrique */
#contenu_listeVente .rubrique {
    text-align: right;
    min-height: inherit;
    margin-bottom: 20px;
    position: fixed;
}

#contenu_listeVente .rubrique h2 {
    font-size: 30px;
}

#contenu_listeVente .rubrique h2 .ombre {
    text-transform: none;
    right: 10px;
    top: 16px;
    font-size: 22px;
}

/* Bloc Ventes */
#contenu_listeVente #lesVentes {
    flex: 4;
}

#contenu_listeVente #lesVentes .bloc_vente:first-of-type {
    margin-top: 0;
}

#contenu_listeVente #lesVentes .bloc_vente:last-of-type {
    margin-bottom: 0;
}

#contenu_listeVente #lesVentes .bloc_vente {
    overflow: hidden;
    display: flex;
    margin-right: 25px;
    margin-top: 35px;
    margin-bottom: 35px;
    min-height: 280px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/*
#contenu_listeVente #lesVentes #bloc_vente1 {
    background-image: url(../images/photo_vente1.png);
}
#contenu_listeVente #lesVentes #bloc_vente2 {
    background-image: url(../images/photo_vente2.png);
}
#contenu_listeVente #lesVentes #bloc_vente3 {
    background-image: url(../images/photo_vente3.png);
}
#contenu_listeVente #lesVentes #bloc_vente4 {
    background-image: url(../images/photo_vente4.png);
}
*/

/* Bloc Infos */
#contenu_listeVente #lesVentes .infos_vente {
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 320px;
    background-color: rgba(0,0,0,0.7);
}

#contenu_listeVente #lesVentes h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight:500;
}
#contenu_listeVente #lesVentes .infos_vente h2 {
    color: white;
    padding-bottom: 5px;
    border-bottom: solid white 1px;
}

#contenu_listeVente #lesVentes .description_infos_vente {
    padding-top: 10px;
    padding-right: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contenu_listeVente #lesVentes .description_infos_vente > p {
    color: white;
}

.vprecisions {
  font-style:italic;
}

.description_infos_vente .date_lieu {
    font-size: 14px;
}

.description_infos_vente .horaires {
    margin: 10px 0;
}
.description_infos_vente .horaires > p{
    color: white;
    font-size: 12px;
}

.description_infos_vente .complement {
    font-size: 10px;
}

/* Bloc Contenu */
#contenu_listeVente #lesVentes .contenu_vente {
    position: relative;
    z-index: 0;
    width: 100%;
}

#contenu_listeVente #lesVentes .contenu_vente .after {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: '';
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

/*

#contenu_listeVente #lesVentes .contenu_vente::after {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: '';
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}



#contenu_listeVente #lesVentes #sous_bloc_vente1::after {
    background-image: url(../images/photo_vente1.png);
}
#contenu_listeVente #lesVentes #sous_bloc_vente2::after  {
    background-image: url(../images/photo_vente2.png);
}
#contenu_listeVente #lesVentes #sous_bloc_vente3::after  {
    background-image: url(../images/photo_vente3.png);
}
#contenu_listeVente #lesVentes #sous_bloc_vente4::after  {
    background-image: url(../images/photo_vente4.png);
}
*/

#contenu_listeVente #lesVentes .contenu_vente > h2 {
    position: absolute;
    bottom: 25px;
    color: #8C1D4C;
    width: 100%;
    text-align: center;
    background-color: rgba(255,255,255,0.6);
    transition: all 0.4s cubic-bezier(.57, 0, .58, 1);
}

#contenu_listeVente #lesVentes .bloc_vente:hover .contenu_vente > h2 {
    bottom: -40px;
}

#contenu_listeVente #lesVentes .bloc_vente:hover .contenu_vente_hover {
    top: 0;
}

#contenu_listeVente #lesVentes .contenu_vente_hover {
    display: flex;
    min-height: 280px;
    padding-top: 50px;
    padding-bottom: 25px;
    justify-content: space-around;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    position: relative;
    top: 100%;
    transition: all 0.4s cubic-bezier(.57, 0, .58, 1);
}

#contenu_listeVente #lesVentes .contenu_vente_hover h2 {
    display: inline-block;
    background-color: transparent;
    color: #C19947;
    padding-bottom: 5px;
    border-bottom: solid 1px #C19947;
}

#contenu_listeVente #lesVentes .contenu_vente_hover a:hover {
    text-decoration: underline;
}

#contenu_listeVente #lesVentes .contenu_vente_hover a {
    padding-top: 5px;
    color: white;
    display: block;
}
#contenu_listeVente #lesVentes .contenu_vente_hover a:first-of-type {
    padding-top: 10px;
}



/* Vente Inactive */

#contenu_listeVente #lesVentes .bloc_vente[etat=inactive] .contenu_vente  {
    background-color:rgba(0,0,0,0.4);
}

#contenu_listeVente #lesVentes .bloc_vente[etat=inactive] .contenu_vente {
    min-height: 150px;
}

/* Vente terminée */

#contenu_listeVente #lesVentes .bloc_vente[etat=terminee] .contenu_vente_hover{
    top: 0;
}

/* ---------------------- @NOTE RESPONSIVE 920px */

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

    #contenu_listeVente #lesVentes .bloc_vente {
        margin-left: 25px;
    }
    #contenu_listeVente {
        flex-direction: column;
    }
    #contenu_listeVente #btn_menu_secondaire_lateral {
        left: 4%;
        position: fixed;
        top: 180px;
    }
    #contenu_listeVente #categorie_listeVente {
        width: 100px;
    }
    #contenu_listeVente .rubrique {
        position: relative;
        margin-left: 25px;
    }
    #contenu_listeVente #categorie_listeVente {
        margin-right: 0px;
        margin-top: 0px;
        left: 4%;
    }
}

/* ---------------------- @NOTE RESPONSIVE 800px */

@media screen and (max-width: 800px) {
    
    #contenu_listeVente #lesVentes .bloc_vente {
        flex-direction: column;
        min-height: inherit;
    }
    #contenu_listeVente #lesVentes .infos_vente {
        background-color: #8C1D4C;
        width: inherit;
    }
    #contenu_listeVente #lesVentes #bloc_vente1 {
        background-image: none;
    }
    #contenu_listeVente #lesVentes #bloc_vente2 {
        background-image: none;
    }
    #contenu_listeVente #lesVentes #bloc_vente3 {
        background-image: none;
    }
    #contenu_listeVente #lesVentes #bloc_vente4 {
        background-image: none;
    }
    #contenu_listeVente #lesVentes .contenu_vente_hover {
        padding-top: 25px;
    }
    #contenu_listeVente #lesVentes .contenu_vente {
        height: max-content;
    }
    #contenu_listeVente #lesVentes .contenu_vente .after {
        opacity: 1;
    }    
    /*
    #contenu_listeVente #lesVentes .contenu_vente::after {
        opacity: 1;
    }
    */
    
    /**/

}

/* ---------------------- @NOTE RESPONSIVE 420px */

@media screen and (max-width: 420px) {
    #contenu_listeVente #lesVentes .contenu_vente_hover h2, #contenu_listeVente #lesVentes .contenu_vente > h2 {
        font-size: 18px;
    }

}
