@media (max-width: 960px) {
    .mobile_only {
        display: block;
    }

    .desktop_only {
        display: none;
    }

    .mobile_fixed_header {
        position: fixed;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
        height: 60px;
        padding: 5px;
        z-index: 1000;
        opacity: 0.9;
        background-image: url("../../img/background2.png");
    }

    .mobile_fixed_header div {
        height: auto;
        width: auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
    }

    .mobile_fixed_header div>span {
        font-size: 14px;
        color: black;
        font-family: 'Oswald', sans-serif;
    }

    .mobile_fixed_header img {
        height: 25px;
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    #div_rdv {
        padding: 10px;
        border-radius: 50%;
        height: 40px;
        width: 40px;
        background: rgba(0, 153, 51, 0.6);
        text-align: center;
    }

    #div_rdv img {
        margin-left: auto;
        margin-right: auto;
        filter: invert(100%);
    }

    #div_rdv span {
        color: white;
    }

    #admin_button_mob {
        background: red;
        border-radius: 25px;
        padding: 0.5em;
        color: white;
        font-weight: bolder;
    }

    #admin_button_mob img {
        filter: invert(100%);
    }
}