/* -----------------------------------------------------
*  Cookie Notice
*  ----------------------------------------------------- */

cookie-notice-container {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 8px;
    z-index: 700;
    font-size: 14px;
    text-shadow: 2px 2px 10px black;
    line-height: 1.5;
    pointer-events: none;
}
cookie-notice {
    display: flex;
    flex-direction: column;
    background: #101a21;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 3px 5px -1px rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%);
    transition: .3s;
    pointer-events: auto;
}
html:not(.mobile) cookie-notice {
    max-width: 400px;
}
cookie-notice .message {
    padding: 14px 16px;
}
cookie-notice .actions {
    display: flex;
    align-self: flex-end;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 8px 8px 0;
}
cookie-notice .actions > * {
    height: auto;
    padding: 0 16px;
    font-weight: 600;
}
cookie-notice a:hover {
    color: #eee;
}
cookie-notice button {
    color: var(--color-primary);
    background: none;
    border: 0;
    border-radius: 3px;
}
cookie-notice button:hover {
    background: #173244;
}
cookie-notice-container[hidden] {
    visibility: hidden;
    pointer-events: none;
}
[hiding] > cookie-notice {
    opacity: 0;
    transform: scale(.9);
}

/* -----------------------------------------------------
*  Burger Menu
*  ----------------------------------------------------- */

.burger-menu-open body {
    touch-action: none;
}

burger-menu {
    position: fixed;
    width: 100%;
    top: var(--site-header-height);
    left: 0;
    bottom: 0;
    display: block;
    pointer-events: none;
    touch-action: none;
    z-index: 900;
    color: var(--color-primary);
}
.burger-menu-open burger-menu {
    pointer-events: auto;
    touch-action: auto;
}
burger-menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    transition: var(--transition-burger);
    opacity: 0;
}
.burger-menu-open burger-menu::before {
    opacity: 1;
}
burger-menu .flyout {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    width: 33%;
    min-width: fit-content;
    box-shadow: 2px 0 12px rgb(0 0 0 / 40%);
    transform: translateX(-110%);
    transition: var(--transition-burger);
    background: #fff;
}

burger-menu .wrapper {
    padding: 0 40px;
    margin: auto;
}

.burger-menu-open .flyout {
    transform: none;
}

burger-menu .logo img {
    width: auto;
	height: 32px;
}

burger-menu nav {
    width: max-content;
    display: flex;
    flex-flow: column;
}
burger-menu a {
    font-size: 30px;
    margin-bottom: 20px;
}