/* ======================================== */
/* HEADER                                   */
/* ======================================== */


/* Header */
.header {
    z-index: 999;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;

    padding-left: 1rem;

    background: var(--bg-0);


    height: var(--headerHeight);
}
.header-wrapper {
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;

    height: 100%;
    width: 100%;

    gap: 0.5rem;
}


/* Logo / Company */
.header-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;
}
.header-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: start;

    min-width: max-content;
    height: 50px;

    text-decoration: none;

    gap: 0.25rem;

    border-radius: var(--calc-radius);

    overflow: hidden;
}
.header-title-icon {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.header-title-text {
    font-size: 1rem;
    letter-spacing: -1px;
    font-weight: 600;
    color: var(--light-2);
}


/* Header Actions */
.header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    height: 100%;
}


/* Upload */
.upload {
    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;

    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 2rem;

    color: black;
    background: var(--accent-1);

    -webkit-tap-highlight-color: transparent;
}


/* Menu */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;

    padding-right: 1rem;
    padding-left: 1rem;
    height: 100%;
    gap: 5px;
}
.menu-bar {
    height: 1px;
    width: 1.1rem;

    background: white;
}


/* ======================================== */
/* Menu Slide */
/* ======================================== */


/* Shared Slide */

.slide.active {
    opacity: 1;
    pointer-events: auto;

    transform: translateX(0);
}

.menu-slide {
    z-index: 11111;
    position: fixed;
    top: 0;

    opacity: 1;
    pointer-events: none;

    width: 100%;
    height: 100vh;
    background: var(--bg-0);


    transform: translateX(-100%);

    transition: all 300ms ease;
}
.menu-slide-display {
    display: flex;
    align-items: center;
    justify-content: end;

    width: 100%;

    padding-right: 1rem;
    padding-left: 1rem;
    height: 50px;
}
.menu-slide-display-text {
    font-size: 1.2rem;
    font-weight: 600;
}
.menu-options {
    display: flex;
    flex-direction: column;

    padding-right: 2rem;
    padding-left: 2rem;
    padding-top: 1rem;
    gap: 2rem;

    height: calc(100% - 50px - 2rem);

    font-weight: 600;
}
.menu-options-divider {
    height: 1px;
    width: 2rem;

    margin-top: 1rem;
    margin-bottom: 1rem;
    background: white;
}

.menu-social {
    display: flex;
    align-items: center;
    justify-content: start;

    padding: 0.8rem;

    max-width: max-content;

    border-radius: 2rem;

    margin-top: auto;

    background: white;
}

/* ======================================== */
/* Menu Slide */
/* ======================================== */


.upload-slide {
    z-index: 11111;
    position: fixed;
    top: 0;
    bottom: 0;

    opacity: 1;
    pointer-events: none;

    transform: translateX(-100%);

    width: 100%;

    background: var(--bg-0);

    transition: all 300ms ease;
}
.upload-slide-display {
    display: flex;
    align-items: center;
    justify-content: end;

    width: 100%;

    padding-right: 1rem;
    padding-left: 1rem;
    height: 50px;
}
.upload-slide-display-text {
    font-size: 1.2rem;
    font-weight: 600;
}
.upload-options {
    display: flex;
    flex-direction: column;

    padding-right: 2rem;
    padding-left: 2rem;
    padding-top: 1rem;

    gap: 1rem;

    height: calc(100% - 50px - 2rem);
    position: relative;

    font-weight: 600;
}
.subscribe {
    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;

    margin-top: auto;

    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2rem;

    color: black;
    background: var(--accent-2);

    -webkit-tap-highlight-color: transparent;
}


/* ======================================== */
/* Subscription Slide */
/* ======================================== */


.subscription-slide {
    z-index: 11112;
    position: fixed;
    top: 0;
    bottom: 0;

    opacity: 1;
    pointer-events: none;

    width: 100%;
    transform: translateX(-100%);
    background: var(--bg-0);

    transition: all 300ms ease;
}
.action-a, .action-b, .action-c {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;

    color: white;
    outline: 1px solid var(--border);
    background: var(--bg-1);

    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 0.5rem;

    -webkit-tap-highlight-color: transparent;
}

/* ======================================== */
/* Main Content */
/* ======================================== */


/* Content */
.content {
    z-index: 1;
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;


    margin-top: 50px;

    height: calc(100% - 20px - 50px);
    width: 100%;

    gap: var(--sizing-adjustment);

    overflow: hidden;
}
.content.audio-adjustment {

}


/* Sections */
.section {
    z-index: 1;
    position: relative;

    display: none;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;

    height: 100%;
    width: 100%;

    user-select: none;

    overflow: hidden;
    transition: all 300ms ease-in-out;
}
.section.active {
    display: flex;
}
.section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: start;

    gap: var(--sizing-adjustment);

    height: 100%;
    width: 100%;

    overflow-y: scroll;
}


/* ======================================== */
/* Media Layout                             */
/* ======================================== */


/* Media Layout */
.media-layout {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    background: var(--bg-1);
    border-radius: 0 !important;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    overflow: hidden;

}
.media-layout-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;

    padding: 1rem;

    width: 100%;

    gap: 1rem;
}
.media-layout-heading-details {
    display: flex;
    flex-direction: column;
    align-items: start;

    gap: 0.25rem;
}
.media-layout-heading-details-title {
    font-size: 1.3rem;
    font-weight: 600;
}
.media-layout-heading-details-body {
    font-size: 0.7rem;
    opacity: 0.5;
}


/* No Display => */
.media-wrapper-heading-scroll {
    display: none;
    flex-direction: row;
    align-items: center;

    gap: 2rem;
    justify-content: space-between;
}


/* Media Grid */
.media-layout-grid {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;

    overflow-x: scroll;

    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
    gap: 1rem;
}

/* ======================================== */
/* Audio Item */
/* ======================================== */


/* Audio Item */
.audio-item {
    display: flex;
    flex-direction: column;

    height: 100%;
    width: 100%;

    gap: 0.5rem;

    cursor: pointer;
}


/* Audio Item Cover */
.audio-item-cover {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

    pointer-events: none;

    aspect-ratio: 1/1;

    border-radius: 0.5rem;

    width: 10rem;
    min-width: 10rem;
    height: 10rem;
    min-height: 10rem;
    max-height: 10rem;
}
.audio-item-cover-img {
    z-index: 1;

    width: 100%;
    height: 100%;

    object-position: center center;
    object-fit: cover;

    border-radius: 0.5rem;

    pointer-events: none;

    transition: all 150ms ease;
}


/* Audio Metadata */
.audio-item-metadata {
    display: flex;
    flex-direction: column;

    min-width: 0;
    gap: 0.25rem;
}
.audio-item-metadata-track {
    font-size: 0.65rem;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.audio-item-metadata-artist {
    font-size: 0.75rem;
    font-weight: 600;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.audio-item-metadata-genre {

    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent-1);

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

    padding-top: 0.5rem;

    transition: all 150ms ease;
}


/* Audio Play / Pause State */
.audio-item-cover-state {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;

    z-index: 4;

    pointer-events: none;

    min-width: 1.5rem;
    min-height: 1.5rem;

    background-color: white;
    border-radius: 50%;

    box-shadow: 0 0 12px 6px rgba(0, 0, 0, 0.3);

    opacity: 0;
}
.audio-item-cover-state-icon {
    min-width: 0.85rem;
    min-height: 0.85rem;
    max-width: 0.85rem;

    object-position: center center;
    object-fit: contain;
}


/* ======================================== */
/* Footer                                   */
/* ======================================== */


.footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;

    width: 100%;

    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    border-radius: 0 !important;

    gap: 2rem;
}
.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;

    width: 100%;

    gap: 2rem;
}


/* Links */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: start;

    gap: 0.5rem;
}
.footer-links-topic {
    font-size: 0.9rem;
    font-weight: 600;
}
.footer-links-container {
    display: flex;
    flex-direction: column;

    gap: 0.5rem;
}
.footer-links-container-title {
    font-size: 0.8rem;

    opacity: 0.5;

    padding-top: 0.25rem;
    padding-bottom: 0.25rem;

    text-decoration: none;
}


/* Branding */
.footer-branding {
    padding-top: calc(1rem + var(--safe-space));
    padding-bottom: calc(1rem + var(--safe-space));
    border-top: 1px solid var(--border);
    display: flex;
    align-items: start;
    width: 100%;
}
.footer-branding-title {
    font-size: 0.8rem;
    opacity: 0.5;
}


/* ======================================== */
/* AUDIO PLAYER */
/* ======================================== */


/* Player */
.player {
    z-index: 999;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    background: linear-gradient(to bottom, var(--bg-1), var(--bg-0));

    transition: all 300ms ease-in-out;
}
.player.is-playing {
    opacity: 1;
    pointer-events: auto;
}
.player-wrapper {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: start;
    align-content: start;
    justify-content: start;

    height: 100%;
    width: 100%;

}


/* Player Heading */
.player-heading {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;

    padding-top: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;

    width: 100%;
}
.player-heading-display {
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-heading-display-title {
    font-size: 0.8rem;
    font-weight: 600;
}
.player-heading-options {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Cover / Display */
.player-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
}
.player-cover-img {
    max-width: 100%;
    max-height: 45dvh;
    aspect-ratio: 1 / 1;

    object-fit: cover;
    object-position: center;

    border-radius: 0.5rem;
}


/* Metadata */
.player-metadata {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
}
.player-metadata-display {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;

    gap: 0.25rem;
}
.player-metadata-display-track {
    font-size: 0.9rem;
    font-weight: 600;
}
.player-metadata-display-artist {
    font-size: 0.8rem;
    opacity: 0.75;
}
.player-metadata-interaction {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;

    border-radius: 50%;
}


/* Track Length / Seek */
.player-seek {
    position: relative;
    top: -1px;
    left: 0;
    right: 0;

    margin-left: 2rem;
    margin-right: 2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    width: calc( 100% - 4rem );

    gap: 0.5rem;
}
.player-seek-bar {
    position: relative;

    display: flex;
    align-items: start;
    justify-content: start;
    background: var(--bg-2);

    border-radius: 1rem;

    height: 4px;
    width: 100%;
}
.player-seek-bar-fill {
    height: 4px;
    width: 0;

    border-radius: 1rem;

    background: var(--accent-1);
}
.player-seek-time {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    width: 100%;
}
.player-seek-time-title {
    font-size: 0.6rem;
    letter-spacing: 1px;
}


/* Player Actions */
.player-controls {
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;

    width: 100%;
    height: 100%;

    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;

    gap: 1rem;
}
.player-controls-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}
.player-controls-focus {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;

    height: 3rem;
    width: 3rem;

    background: var(--bg-2);
    border-radius: 50%;
}
.player-controls-sub {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;

    opacity: 0.25;

    border-radius: 50%;
}
.player-controls-side {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;

    opacity: 0.25;

    border-radius: 50%;
}


/* Base */
.player-base {
    width: 100%;
    min-height: 2rem;
    max-height: 2rem;
}



























/* ======================================== */
/* Icons */
/* ======================================== */


.small-icon {
    width: 1rem;
    height: 1rem;

    object-fit: cover;
    object-position: center center;
}
.medium-icon {
    min-width: 1.5rem;
    min-height: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;

    object-fit: cover;
    object-position: center center;
}
.large-icon {
    width: 2rem;
    height: 2rem;

    object-fit: cover;
    object-position: center center;
}



.login {
    z-index: 9999;

    position: fixed;
    top: 0;

    display: none;
    flex-direction: column;

    padding: 2rem;

    gap: 1rem;

    height: 100vh;

    background: var(--bg-0);
}


























/* ======================================== */
/* SIDEBAR (Hidden on Mobile)               */
/* ======================================== */


.sidebar {
    position: relative;

    display: none;
    flex-direction: column;
    align-items: start;
    align-content: center;
    justify-content: space-between;

    width: var(--sidebarHidden);
    min-width: var(--sidebarHidden);
    height: 100%;

    background: var(--bg-1);
    border-radius: var(--calc-radius);

    cursor: e-resize;

    overflow: hidden;

    transition: width 1s ease;
}
.sidebar.sidebar-expanded {
    width: var(--sidebarRevealed);
    min-width: var(--sidebarRevealed);
}













/* ======================================== */
/* Style for Laptop                         */
/* ======================================== */


@media (min-width: 1000px) {
    /* MAIN CONTENT */
    .content {
        z-index: 1;
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        margin-top: var(--content-top);
        margin-bottom: var(--content-bottom);
        margin-left: var(--sizing-adjustment);
        margin-right: var(--sizing-adjustment);

        height: calc(100vh - var(--content-top) - var(--content-bottom));
        width: calc(100% - (2 * var(--sizing-adjustment)));

        gap: var(--sizing-adjustment);

        overflow: hidden;
    }
    .section {
        z-index: 1;
        position: relative;

        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;

        height: 100%;
        width: 100%;

        user-select: none;
        border-radius: var(--calc-radius);

        overflow: hidden;
        transition: all 300ms ease-in-out;
    }
    .section.audio-adjustment {
        margin-bottom: var(--content-bottom-with-audio);
        height: calc(100% - var(--content-bottom-with-audio));
    }
    .section-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: start;

        gap: var(--sizing-adjustment);

        height: 100%;
        width: 100%;

        overflow-y: scroll;
    }


    /* SIDEBAR */
    .sidebar {
        position: relative;

        display: flex;
        flex-direction: column;
        align-items: start;
        align-content: center;
        justify-content: space-between;

        width: var(--sidebarHidden);
        min-width: var(--sidebarHidden);
        height: 100%;

        background: var(--bg-1);
        border-radius: var(--calc-radius);

        cursor: e-resize;

        overflow: hidden;

        transition: width 1s ease;
    }
    .sidebar.sidebar-expanded {
        width: var(--sidebarRevealed);
        min-width: var(--sidebarRevealed);
    }

    /* HEADER */
    .header {
        z-index: 999;

        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;

        margin-left: var(--sizing-adjustment);
        margin-top: var(--sizing-adjustment);
        margin-right: var(--sizing-adjustment);

        height: var(--headerHeight);
    }
    .header-action {
        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 0.75rem;
        padding-left: 1rem;
        padding-right: 1rem;

        height: 100%;
        min-width: max-content;

        border-radius: var(--calc-radius);

        gap: 0.5rem;

        cursor: pointer;
    }
    .header-action:hover {
        background: var(--bg-2);
    }
    .subscription {
        background: var(--bg-1);
        color: white;
    }
    .upload {
        background: var(--bg-1);
        color: white;
    }
    .search {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 100%;

        gap: 1rem;

        background: var(--bg-1);

        padding-left: 1rem;
        padding-right: 1rem;

        border-radius: var(--calc-radius);
    }


    /* BANNER */
    .banner {
        z-index: 9;

        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;

        margin-left: var(--sizing-adjustment);
        margin-right: var(--sizing-adjustment);
        margin-bottom: var(--sizing-adjustment);
        height: var(--bannerHeight);

        border-radius: var(--calc-radius);
    }

    /* AUDIO PLAYER */
    .player {
        z-index: 999;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: center;

        opacity: 0;
        pointer-events: none;

        margin-left: calc(var(--sidebarHidden) + (2 * var(--sizing-adjustment)));
        margin-right: var(--sizing-adjustment);
        margin-bottom: calc(var(--bannerHeight) + (2 * var(--sizing-adjustment)));

        height: var(--playerHeight);

        border-radius: var(--calc-radius);
    }
    .player.is-playing {
        opacity: 1;
        pointer-events: auto;
    }

    /* TOOLTIP */
    .tooltip {
        z-index: 999;

        position: absolute;

        display: none;
        align-items: center;
        align-content: center;
        justify-content: center;

        background: var(--bg-0);
        font-size: 0.7rem;
        height: 44px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        letter-spacing: 1px;

        border-radius: var(--calc-radius);
        pointer-events: none;
    }


    .media-wrapper {
        display: flex;
        flex-direction: column;

        width: 100%;

        background: var(--bg-1);

        padding: 2rem;
        border-radius: var(--calc-radius);

        gap: 2rem;
    }
    .media-wrapper-heading {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        gap: 2rem;
    }
    .media-wrapper-heading-title {
        display: flex;
        flex-direction: column;
        align-items: start;

        gap: 0.5rem;
    }
    .media-wrapper-heading-title-main {
        font-size: 1.75rem;
        font-weight: 800;
    }
    .media-wrapper-heading-title-sub {
        font-size: 0.8rem;
        opacity: 0.5;
    }
    .media-wrapper-heading-scroll {
        display: flex;
        flex-direction: row;
        align-items: center;

        gap: 2rem;
        justify-content: space-between;
    }

    .media-wrapper-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);

        gap: 2rem;
    }

    /* Audio Item */
    .audio-item {
        display: flex;
        flex-direction: column;

        height: 100%;
        width: 100%;

        gap: 1rem;

        cursor: pointer;

        overflow: hidden;
    }

    /* Audio Item Cover */
    .audio-item-cover {
        position: relative;

        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;

        pointer-events: none;

        aspect-ratio: 1/1;

        border-radius: 0.5rem !important;

        min-height: 18rem;
        max-height: 18rem;
    }
    .audio-item-cover-img {
        z-index: 1;

        width: 100%;
        height: 100%;

        object-position: center center;
        object-fit: cover;

        border-radius: 0.5rem !important;

        pointer-events: none;

        transition: all 150ms ease;
    }

    /* Metadata */
    .audio-item-metadata {
        display: flex;
        flex-direction: column;

        min-width: 0;
        gap: 0.25rem;
    }
    .audio-item-metadata-track {
        font-size: 0.9rem;

        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .audio-item-metadata-artist {
        font-size: 0.85rem;
        font-weight: 600;

        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .audio-item-metadata-genre {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--accent-1);

        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;

        padding-top: 0.5rem;

        transition: all 150ms ease;
    }

    /* Play / Pause */
    .audio-item-cover-state {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;

        position: absolute;
        bottom: 1rem;
        right: 1rem;

        z-index: 4;

        pointer-events: none;

        min-width: 2.25rem;
        min-height: 2.25rem;

        background-color: white;
        border-radius: 50%;

        box-shadow: 0 0 12px 6px rgba(0, 0, 0, 0.25);

        opacity: 0;
    }
    .audio-item-cover-state-icon {
        min-width: 1.5rem;
        min-height: 1.5rem;
        max-width: 1.5rem;

        object-position: center center;
        object-fit: contain;
    }

    .footer {
        display: none;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;

        width: 100%;

        background: var(--bg-1);

        padding: 2rem;

        border-radius: 0.5rem;

        gap: 2rem;
    }
    .footer-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        gap: 2rem;
    }
}