/*

    !!! DO NOT CHANGE - USE OVERRIDE RULES TO TWEAK LAYOUT / COLOURS !!!

*/
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    padding: 16px 32px;
    position: sticky;
    top: 0;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
}

header .logo {
    text-decoration: none;
    display: block;
    width: 300px;
}

header .logo svg {
    display: block;
    width: 300px;
}

.fixed-header main {
    padding-top: var(--header-height);
}

.fixed-footer main {
    padding-bottom: var(--footer-height);
}

footer {
    position: relative;
    top: 80px;
    font-size: 12px;
    padding: 0 0 10px 2px;
}

.fixed-footer footer {
    overflow: hidden;
    flex-shrink: 0;
    padding: 32px;
}

header menu {
    display: flex;
    align-items: center;
}


.nav-icon {
    display: none;
}

.mobile-menu {
    display: none;
}

.mobile-menu-items {
    display: none;
    flex-direction: column;
}

.mobile-menu-items.popped {
    display: flex;
}

@media screen and (max-width:600px) {
    .no-mobile {
        display: none;
    }

    .mobile-menu {
        display: flex
    }
}
