.menu_dash {
    position: fixed;
    background-color: var(--color-grey-2);
    width: 400px;
    height: 100%;
    padding: 32px 82px;
}

.menu_dash_mobile {
    display: none;
    position: fixed;
    right: 0;
    flex-direction: column;
}

.burger {
    max-height: 50px;
    max-width: 50px;
}

.burger_div {
    margin-left: auto;
}

.mobile_header {
    display: none;
    padding: 15px;
}

.boutons_problem {
    display: flex;
    flex-direction: column;
    bottom: 0;
}

.boutons_problem > a {
    padding-top: 10px;
}

.active {
    color: #c72564;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mobile_header {
        display: flex;
    }

    .menu_dash {
        display: none;
    }

    .menu_dash_mobile {
        display: flex;
    }
}