/* ----------------------------------

*****
SOMMAIRE
*****


01 - Listing des produits
    A - Filtre de recherche
    B - Résumé de produit
    C - Pager

02 - Détail produit



---------------------------------- */









/* 01 - Listing des produits */
    /* A - Filtre de recherche */
    #leftbar .filter{
        position: relative;
        z-index: 100;
        margin-top: -80px;
        padding: 30px;
        background-color: var(--light-grey);
        transition: 0.2s ease-in-out;
    }
    #leftbar .is_stuck .filter{
        margin-top: 30px;
    }
    #leftbar .filter .like-h2{
        font-style: 4.5rem;
    }
    form ul{
        margin: 0;
    }
    form ul li::before{
        display: none;
    }
    form ul li{
        list-style: none;
    }



    
    /* B - Résumé de produit */
    .tease-mp_produit{}
    div.resumProduct_picture::before{
        display: block;
        content: '';
        padding-top: 120%;
        width: 100%;
    }
    div.resumProduct_picture{
        position: relative;
        max-height: 80vh;
    }
    a.resumProduct_Picture{
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        z-index: 0;
        align-items: center;
        justify-content: center;
    }
        a.resumProduct_Picture img{
            max-height: 100%;
        }
        .resumProduct_hover::after{
        	display:none;
        }
        .resumProduct_hover{
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            transition: 0.2s ease-in-out;
            overflow: hidden;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 130px;
            height: 130px;
            z-index: 10;
            line-height: 1;
            display: flex;
            align-items: center;
            padding: 10px;
            border-radius: 50%;
            font-size:1.8rem;
            justify-content: center;
            background-color: rgba(10, 68, 61, 0.7);
        }
            .tease-mp_produit:hover .resumProduct_hover{
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

    /* C - Pager */

/* 02 - Détail produit */

.single-mp_produit #wrapper .inner{
    margin-top: 0;
}
.single-mp_produit section#contents {
    padding: 0;
}
.singleProduct_description{
    font-size: 1.6rem;
    color: var(--green);
}


.singleProduct_advantages h2{
    color: var(--green);
    font-style: normal;
    font-size: 2.5rem;
}
#wrapperInner .singleProduct_advantages ul li{
    padding-left: 60px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    padding:0 0 0 50px;
    min-height: 40px;
    margin-bottom: 10px;
}

#wrapperInner .singleProduct_advantages ul li::before{
    display: block;
    width: 40px;
    min-width: 40px;
    margin-top:-10px;
    height: 40px;
    background-color: transparent;
    background-image: url('../img/charte/fertil-eveil-sprite.svg');
    background-repeat: no-repeat;
    background-size: 400px auto;
    background-position: -80px -80px;

}
.detailCol li,
.detailCol p{
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green );
}

@media (max-width:955px){
    .detailCol:not(:last-child){
        border-bottom: 2px solid #fff;
    }
}
@media (min-width:956px){
    .detailCol:not(:last-child){
        border-right: 2px solid #fff;
    }
}



.detailCol ul li{
    line-height: 1;
    margin-bottom: 15px;
}

.detailCol ul li::before {
    content: '';
    width: 7px;
    min-width: 7px;
    height: 7px;
    background-color: var(--green);
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0;
}


/* Pager */

.pages span,
.pages a{
    justify-content: center;
    align-items: center;
    min-height: 40px;
    min-width: 40px;
    font-weight: 700;
    font-size: 1.6rem;
    font-family: "kaneda-gothic", sans-serif;
    text-decoration: none !important;
    transition: 0.2s ease-in-out;
}
.pages a:hover,
.pages .current{
    background-color: var(--green) !important;
    color: var(--white) !important;
}