#page-footer {
    display: block;
    flex: 0;
    width: 100%;
    border-top: 1px solid var(--color-border-2);
}

#p-f-layout {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 18px 0px;
}

@media only screen and (max-width: 520px) {
    #p-f-layout {
        flex-direction: column;
        justify-content: start;
        padding: 22px 0px;
    }
}

#p-f-layout p,
#p-f-layout a,
#p-f-layout button {
    font-size: 13.5px;
    letter-spacing: 0.4px;
    color: var(--color-text-50);
    -webkit-transition: color 0.15s;
    -moz-transition: color 0.15s;
    -ms-transition: color 0.15s;
    -o-transition: color 0.15s;
    transition: color 0.15s;
}

#p-f-layout a:hover,
#p-f-layout a:focus,
#p-f-layout button:hover,
#p-f-layout button:focus {
    color: var(--color-text);
}

#p-f-layout button {
    display: inline-block;
    background-color: transparent;
}

#p-f-layout p:first-child {
    text-align: left;
    margin-right: 16px;
}

#p-f-layout p:last-child {
    text-align: right;
    margin-left: 16px;
}

@media only screen and (max-width: 520px) {
    #p-f-layout p {
        margin-bottom: 9px;
    }

    #p-f-layout p:first-child {
        margin-right: 0px;
    }

    #p-f-layout p:last-child {
        text-align: left;
        margin-bottom: 0px;
        margin-left: 0px;
    }
}