footer {
    width: calc(100% - var(--sidebar-size));
    margin-left: var(--sidebar-size);
    position: relative;
    display: grid;
    height: var(--footer-size);
    background-color: var(--white3);
}

.footer-content {
    background-color: var(--white3);
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
}

.footer-content p {
    line-height: 1;
    font-size: 12px;
    word-wrap: break-word;
}

.footer-left {
    flex-grow: 1;
}

.footer-right {
    flex: 0 0 270px;
    margin-right: 3%;
    text-align: center;
    align-content: center;
}


 @media (max-width: 599px) {

    .footer-left {
        display: none;
    }

    .footer-right p {
        font-size: 9px;
    }
} 

/* tablette */
/* @media (min-width: 600px) and (max-width: 1023px) {
    footer {
        width: calc(100% - var(--sidebar-size-tablet));
        margin-left: var(--sidebar-size-tablet);
    }
} */
