.propositions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-self: center;
    justify-content: space-around;
    width: 100%;
    padding-top: 33px;
    padding-bottom: 35px;
    background: rgb(248, 248, 248);
    z-index: 2;
}

.propositions .liste {
    overflow-x: scroll;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: rgb(248, 248, 248);
    -ms-overflow-style: scroll;
    scrollbar-width: none;width: 116vw;
position: relative;
left: -9vw;
}

.propositions .liste::-webkit-scrollbar {
    display: none;
}

.propositions h2 {
    padding: 1px;
    width: 100%;
    margin-bottom: 38px;
    text-align: center;
    font-family: 'Mulish', 'Ubuntu', Arial, Helvetica, sans-serif;
    font-weight: 1;
    color: #282828;
}

.propositions div.element {
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    width: 225px;
    min-width: 225px;
    margin-left: 10px;
    margin-bottom: 25px;
    background-color: white;
    box-shadow: 0px 0px 3px 0px rgb(204, 204, 204);
    transition: 0.2s;
}

.propositions div.element:hover {
    cursor: pointer;
}

.propositions div.element span {
    padding-left: 15px;
    padding-right: 15px;
}

.propositions div.element span.localisation {
    margin-top: 8px;
    font-family: Calibri, arial;
    color: #bfbfbf;
}

.propositions div.element span.nom {
    transition: 0.3s;
    margin-top: 5px;
    height: 70px;
    overflow: hidden;
    font-family: Calibri, arial;
    font-weight: bold;
    color: #323232;
}

div.element:hover span.nom {
    transition: 0.3s;
    color: rgb(27, 145, 223);
}

.propositions div.element img {
    width: 100%;
    height: 150px;
    opacity: 0.99;
    transition: 0.3s;
}

div.element:hover img {
    transition: 0.3s;
    opacity: 0.93;
}

.propositions div.element button {
    width: 100%;
    height: 33px;
    background-color: #0e84a1;
    border: none;
    font-weight: bold;
    font-size: 15px;
    color: whitesmoke;
}

.propositions button.supprimer {
    background-color: #cf3333 !important;
}

.propositions div button:hover {
    cursor: pointer;
    transition: 0.7s;
    background-color: #07667e;
}

.propositions button.supprimer:hover {
    background-color: #c51f1f;
}


/* Arrows */

div.arrows {
    padding-right: 9px;
    padding-left: 9px;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    display: none;
}

.arrows button {
    width: 41px;
    height: 41px;
    border: none;
    background-color: rgba(255, 255, 255, 0.308);
    border-radius: 50px;
    color: rgb(39, 39, 39);
    font-size: 15px;
    transition: 0.2s;
}

.arrows button:hover {
    transition: 0.2s;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 650px) {
    .propositions h2 {
        margin-bottom: 0px;
    }
    .propositions .liste {
        justify-content: initial !important;
    }
    div.arrows {
        display: flex;
    }
}
