.footer {
    font-size: .9rem;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    min-height: 0;
    height: 100% !important;
}

.copyright-text {
    display: block;
}

.copyright-text--mobile {
    display: none;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .footer-content {
        text-align: center;
        margin-bottom: 45px;
        padding-top: 7px;
        padding-bottom: 7px;
    }
    
    .copyright-text--mobile {
        display: block;
    }

    .copyright-text {
        display: none;
    }
}
