@media (max-width: 900px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 0px 0px;
        grid-template-areas: ". .";
    }

    .sidebar {
        width: 100vw;
        height: 76px;
        position: fixed;
        bottom: 0;
        flex-direction: row;
        top: unset;
    }

    nav {
        width: 100vw;
        height: 80px;
    }

    .mobile-logo {
        display: block;
        margin-left: 20px;
    }

    .product-label-initials {
        display: none;
    }

    .legal {
        display: none;
    }

    .navbar-logo {
        display: none;
    }

    .navigation-links {
        flex-direction: row;
        width: 100%;
        align-items: center;
        gap: 0;
    }

    .link-text {
        font-size: 14px;
    }

    .link-wrapper {
        flex-direction: column;
        justify-content: center;
        width: auto;
        gap: 4px;
    }
}

.testBackground {
    width: 100%;
    height: 100%;
    background-color: #2d3153;
}

.background.active {
    background-color: #ff3d00;
}
