/*==================================================
=            TOOLBAR
==================================================*/

.lca-cherche-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:40px 0 30px;

    padding-bottom:18px;

    border-bottom:1px solid #ECECEC;

}

.lca-cherche-toolbar__count{

    font-size:16px;

    color:#222;

}

.lca-cherche-toolbar__count strong{

    font-size:20px;

    font-weight:700;

}

.lca-cherche-toolbar__sort{

    display:flex;

    align-items:center;

    gap:12px;

}

.lca-cherche-toolbar__sort label{

    font-size:15px;

    color:#555;

}

.lca-cherche-toolbar__sort select{

    width:180px;

    height:42px;

    border:1px solid #DDD;

    border-radius:6px;

    padding:0 14px;

    background:#FFF;

    font-size:14px;

    cursor:pointer;

}

@media(max-width:768px){

.lca-cherche-toolbar{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

}