:host {
    display: block;
    height: 100%;
    position: relative;
    --background-img: '';
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: var(--app-height);
}

.content-wrapper {
    flex-grow: 1;
    background-color: var(--color-light-grey);
    overflow-y: scroll;
    bottom: 0;
    padding-bottom: 2rem;
}

.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    padding: 0.5rem 1rem;
    background: var(--color-grey);
    z-index: 10;
    box-shadow: 0px 3px 6px #00000029;
    display: flex;
}

.header-bar .logo-wrapper {
    max-width: 100%;
}
.header-bar .logo-wrapper img {
    width: 45px;
    max-width: 100%;
    height: auto;
    margin-right: 0.5rem;
}

.burger-menu {
    background: none;
    border: none;
    margin-left: auto;
}

.burger-menu svg {
    width: 30px;
    height: auto;
    fill: var(--color-black);
}

.top-bar {
    --logo-height: 125px;

    background-color: var(--color-primary);
    background-image: var(--background-img);
    background-size: cover;
    background-blend-mode: multiply;
    height: calc(var(--logo-height) / 2 + 1rem);
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.top-bar .logo {
    width: var(--logo-height);
    height: var(--logo-height);
    cursor: pointer;
    z-index: 2;
}

footer {
    background-color: var(--color-primary);
    font-size: 0.75rem;
}

footer .partner-logos {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width: 370px) {
    footer .partner-logos {
        width: 100px;
    }
}

@media screen and (min-width: 576px) {
    footer {
        font-size: 0.875rem;
    }
    footer .partner-logos {
        width: 125px;
    }
}

@media screen and (min-width: 768px) {
    footer .partner-logos {
        width: 175px;
    }
}

@media screen and (min-width: 1200px) {
    .header-bar {
        display: none;
    }
}
