.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

#footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer li {
    display: inline-block;

    &:not(:last-child):after {
        content: '|';
        margin: 1.5rem
    }
}

#footer a {
    text-decoration: none !important;
    color: #000 !important;
}

#footer .d-flex {
    display: none !important;
}

@media (min-width: 640px) {
    #footer .d-flex {
        display: flex !important;
    }
}