﻿.appFooter {
    box-sizing: border-box;
    padding: 1em;
    display: grid;
    column-gap: 1em;
    row-gap: 1em;
    grid-template-columns: 1fr;
    text-align: center;

}

.appFooterLoggedIn {
    background: none;
    color: var(--app-color-palette-primary);
}

.appFooterNotLoggedIn {
    color: white;
    background: var(--app-color-palette-primary-color);
}

.appFooterMenus {
    display: flex;
    column-gap: 2em;
    justify-content: center;
}

.appFooterLogoContainer {
    display: grid;
    grid-template-columns: 3em 120px 1fr;
    column-gap: 1em;
    align-items: center;

    justify-content: start;
}

.appFooterLogoContainer img {
    width: 3em;
}

.appFooterLogoContainer span {
    font-weight: bold;
    font-size: 1.2em;
}

.appFooterLogoWrapper {
    text-align: start;
    display:grid;
    row-gap: 1em;
}


@media screen and (min-width: 480px) {


    .appFooterMenus {
        justify-content: start;
    }
}