/* Header */

footer {

z-index: 1000;
position: fixed;
bottom: 0;
right: 0;
width: 100%;
margin: 0;
padding: 0;
@include vendor('display', 'flex');
@include vendor('justify-content', 'space-between');
color: _palette(accent4);

.copyright {
    li {
        display: inline-block;
        margin-left: 1em;
        padding-left: 1em;
        border-left: solid 1px rgba(255, 255, 255, 0.25);
        line-height: 1em;

        &:first-child {
            border-left: 0;
            margin-left: 0;
            padding-left: 0;
        }
    }
}

}