.home {
    /* border: 1px dashed red; */
    position: relative;
}

.home .pdg {
    position: relative;
    padding: 20px;
}

.home .list-restos .separe-line-top {
    border-bottom:1px solid #ccc;
    margin: 20px 0;
}

.home .zone-list-choix {
    display: flex;
    flex-wrap: wrap;
    background: #ccc;
    gap: 1px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    /* padding: 1px; */
}

.home .zone-btn {
    display: flex;
    justify-content: center;
    padding: 10px;
    background: #fff;
    flex-grow: 1;
    cursor: pointer;
}

.home .zone-btn.selected {
    background: #f9f9f9;
}

.home .list-restos .separe-line {
    padding-top:40px;
    border-bottom:1px solid #ccc;
}

.home .list-restos .separe-line:last-child {
    border: 0;
}

.home .title-resto {
    /* border: 1px dashed; */
    position: relative;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

.home .title-resto:first-child {
    margin-top: 0;
}

.home .list-resto {
    /* border: 1px dashed; */
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.home .soon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .soon.txt {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 460px) {
    .home .list-resto {
        grid-template-columns: 0.5fr 0.5fr;
        gap: 15px;
    }
}

@media (max-width: 320px) {
    .home .list-resto {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.home .list-resto > div {
    position: relative;
    box-shadow: 0 0 10px 0 #bbb;
    border-radius: 7px;
    overflow: hidden;
}

.home .list-resto > div > a {
    position: relative;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
    height: 100%;
    display: grid;
    grid-template-rows: 0.7fr auto auto;
    /* grid-auto-flow: column; */
    /* padding: 15px; */
    text-decoration: none;
    color: inherit;
}

.home .list-resto > div > a > span {
    /* border: 1px dashed green; */
    /* position: relative; */
    display: flex;
    width: 100%;
}

.home .list-resto .home-img {
    height: 100%;
    /* max-height: 250px; */
    background: #f9f9f9;
}

.home .list-resto > div > a > .home-img img {
    position: relative;
    width: 100%;
    /* height: auto; */
    height: 200px;
    object-fit: cover;
}

@media (max-width: 500px) {
    .home .list-resto > div > a > .home-img img {
        height: 150px;
    }
}

.home .list-resto .titre,.home .list-resto .descr {
    /* border: 1px dashed green; */
    padding: 10px;
}

.home .list-resto .titre {
    padding-bottom: 0;
}

.home .list-resto .descr {
    padding-top: 0;
}

#app .home-ftr {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

#app .home-ftr-center {
    position: relative;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1440px;
    padding: 40px 20px;
}

#app .home-ftr-center a {
    text-decoration: none;
    color: initial;
}

.home .course-flex {
    /* border: 1px dashed; */
    display: flex;
    justify-content: center;
    padding: 20px;
}

.home .course-mxw {
    /* border: 1px dashed; */
    width: 100%;
    max-width: 600px;
}

.home .courses-cnt {
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 7px 0 #ddd;
}