#nosArtisansMap {
    width: 100%;
    height: 400px;
    background: #d6d6d6;
    margin-bottom: 20px;
}

#nosartisans-searchform > div {
    margin: 0 auto;
    border-radius: 10px;
    height: 60px;
    max-width: 370px;
    position: relative;
    padding-left: 50px;
    & .loupe {
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 10px 0px 0px 10px;
        border: 1px #F49529 solid !important;
        height: 100%;
        aspect-ratio: 1;
        background-color: #F49529;
        background-image: url(/wp-content/uploads/2024/01/loupe.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        cursor: pointer;
    }
    & #nosartisans-searchinput {
        border-radius: 10px;
        border: 1px #cccccc solid !important;
        height: 100%;
        width: 100%;
        border: none;
        color: #676767;
        font-size: 1.2em;
        text-align: center;
    }
}

#artisan_results {
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    flex-flow: column wrap;
    align-items: center;
    & .artisan {
        min-width: 100%;
        display: flex;
        flex-direction: row;
        border: 1px #cccccc solid;
        border-radius: 10px;
        margin-bottom: 20px;
        & .thumbnail {
            object-fit: cover;
            height: auto;
            border-radius: 10px 0px 0px 10px;
            background-color: #106939;
            width: 270px;
            aspect-ratio: 1 / 1;
        }
        & .infos {
            width: 100%;
            display: flex;
            flex-direction: column;
            margin: 18px;
            margin-left: 28px;
            & .title {
                color: #f49529;
                font-weight: 600;
                margin-bottom: 10px;
                font-size: 1.5em;
                & span {
                    color: #666666;
                }
            }
            & .gerant {
                color: #666666;
                margin-bottom: 5px;
                & span {
                    color: #106939;
                    font-weight: 600;
                }
            }
            & .details {
                & > * {
                    display: block;
                }
                & .adresse {
                    color: #666666;
                    &:before {
                        background-image: url('/wp-content/uploads/2024/01/pinmap.png');
                        background-size: 20px 20px;
                        display: inline-block;
                        width: 20px;
                        height: 20px;
                        content:"";
                        position: relative;
                        left: -5px;
                        top: 4px;
                    }
                }
                & .tel {
                    color: #666666;
                    &:before {
                        background-image: url('/wp-content/uploads/2024/01/tel1.png');
                        background-size: 20px 20px;
                        display: inline-block;
                        width: 20px;
                        height: 20px;
                        content:"";
                        position: relative;
                        left: -5px;
                        top: 4px;
                        width: 20px
                    }
                }
                & .email {
                    color: #666666;
                    &:before {
                        background-image: url('/wp-content/uploads/2024/01/email.png');
                        background-size: 20px 20px;
                        display: inline-block;
                        width: 20px;
                        height: 20px;
                        content:"";
                        position: relative;
                        left: -5px;
                        top: 4px;
                    }
                }
            }
            & .fiche {
                margin-top: 10px;
                text-align: right;
                & a {
                    background-color: #106939;
                    border-top-left-radius: 10px;
                    border-bottom-left-radius: 10px;
                    border-top-right-radius: 10px;
                    border-bottom-right-radius: 10px;
                    padding-top: 10px;
                    padding-bottom: 10px;
                    padding-left: 20px;
                    padding-right: 20px;
                    color: #ffffff;
                    font-size: 0.8em;
                }
            }
            & .actions {
                margin-top: 20px;
                display: flex;
                justify-content: left;
                & .rdv {
                    max-width: 50%;
                    color: #666666;
                    flex: 0 0 auto;
                    font-size: 1.0em;
                    margin-right: 15%;
                    &:before {
                        background-image: url('/wp-content/uploads/2024/01/rdv-1.png');
                        background-size: 20px 20px;
                        display: inline-block;
                        width: 20px;
                        height: 20px;
                        content:"";
                        position: relative;
                        left: -5px;
                        top: 4px;
                    }
                }
                & .appel {
                    max-width: 50%;
                    color: #666666;
                    flex: 0 0 auto;
                    font-size: 1.0em;
                    &:before {
                        background-image: url('/wp-content/uploads/2024/01/tel2.png');
                        background-size: 20px 20px;
                        display: inline-block;
                        width: 20px;
                        height: 20px;
                        content:"";
                        position: relative;
                        left: -5px;
                        top: 4px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 600px) {
    #artisan_results {
        & .artisan {
            min-width: 0;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            & .infos {
                width: auto;
            }
            max-width: 500px;
            flex-direction: column;
            text-align: left;
            & .thumbnail {
                width: auto;
            }
            & .infos {
                & .fiche {
                    text-align: center;
                }
            }
        }
    }
}