.single-wpsl_stores .wpsl-locations-details {
	display: none;
}

/***********************************recherche*******************************/
/*liste*/
#wpsl-search-wrap {
    float: none;
    clear: both;
    text-align: center;
}

#wpsl-search-wrap form {
    display: inline-block;
    margin: 0 auto;
}

.wpsl-search {
    margin-bottom: 20px;
    padding: 0 !important;
    background: transparent;
}

.wpsl-input label {
    display: none !important;
}

.wpsl-input,
.wpsl-input #wpsl-search-input {
    width: 360px;
}

/*champ et btn*/
#wpsl-search-input {
    border: 1px solid var(--ast-global-color-2) !important; 
    border-radius: 50px !important; 
    background: #fff;
}

/**********************************liste*******************************/
.wpsl-gmap-canvas {
	display: none;
}

#wpsl-stores ul {
    margin: 40px 5px 20px;
}

.store-item {
    -webkit-box-shadow: var(--mon-ombre);
    box-shadow: var(--mon-ombre); 
    border-radius: 20px;
    padding: 30px 30px !important;
    margin-bottom: 20px; 
    transition: all .3s;
    border-bottom: none !important;
}

.store-item .store-link-box{
    color: var(--ast-global-color-2); 
    transition: all .3s;
}

.store-item:hover {
    background-color: var(--ast-global-color-2);
}

.store-item:hover .store-link-box{
    color: var(--ast-global-color-5);
}

.antenne-img img{
    background-color: #fff;
    border-radius: 100% !important;
}

#wpsl-stores .wpsl-store-thumb{
    margin: 0 !important;
}

.wpsl-name{
    font-weight: 700;
    font-size: 20px;
}

.wpsl-city{
    margin: 10px 0;
    font-style: italic;
}

.wpsl-no-results-msg{
    padding: 0 !important;
}


/* Styles pour les écrans de plus de 921px */
@media (min-width: 921px) {
    #wpsl-stores ul {
        display: flex;
        flex-wrap: wrap;
    }

    .store-item {
        width: calc(50% - 20px); /* soustraire la marge */
        margin-right: 20px; /* ajouter une marge à droite */ 
    }

    .wpsl-store-location {
        display: flex;
    }

    .antenne-item {
        display: flex;
        align-items: center;
    }

    .antenne-img {
        margin-right: 50px;
        max-width: 150px !important;
        max-height: 150px !important;
    }

    .antenne-img img{
        max-width: 150px !important;
        max-height: 150px !important;
    }
}

/* Styles pour les écrans de moins de 921px */
@media (max-width: 920px) {
    .store-item {
        width: 100%;
        padding: 20px 10px !important;
    }

    .wpsl-store-location {
        display: flex;
    }

    .antenne-item {
        display: flex;
        align-items: center;
    }

    .antenne-img {
        margin-right: 20px;
        max-width: 100px !important;
        max-height: 100px !important;
    }

    .antenne-img img{
        max-width: 100px !important;
        max-height: 100px !important;
    }

    .wpsl-input,
    .wpsl-input #wpsl-search-input{
        width: 100% !important;
        display: block;
    }

    .wpsl-search form{
        width: 100% !important;
    }
}

