/* =====================
   Footer
   ===================== */

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

    height: 48px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--footer-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-top: 1px solid var(--footer-border-top);
    color: var(--footer-text);

    font-size: 13px;
    z-index: 100;
}

.app-footer span {
    white-space: nowrap;
}

/* Sections */

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
}

.footer-center {
    opacity: 0.6;
    font-size: 12px;
}

/* Link */

.app-footer a {
    color: rgba(120, 180, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
}

.app-footer a:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 700px) {
    .footer-center {
        display: none;
    }
}
