/* Main Menu */

.menu-drawer {
    display: none;
    flex-flow: column;
    position: fixed;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    overflow-y: auto;
}

.menu-drawer--visible {
    display: flex;
}

.menu-drawer__nav {
    width: 100%;
    text-align: center;
}

.menu-drawer__link {
    display: block;
    font-size: 24rem;
    margin-bottom: 10rem;
    color: var(--text-color);
    text-decoration: none;
    transition: .4s;
}

.menu-drawer__close {
    position: fixed;
    right: 40rem;
    top: 40rem;
    font-size: 30rem;
    cursor: pointer;
}

/* Footer */

footer {
    color: var(--footer-color);
    background: var(--footer-background);
    border: var(--footer-border);
    border-radius: var(--footer-border-radius);
    box-shadow: var(--footer-box-shadow);
}

.footer__row--main {
    padding: 50rem;
}

.footer__logo {
    width: 150rem;
    margin: 0 auto;
    filter: invert();
}

.footer__link {
    color: var(--footer-color);
}

.footer__image {
    max-width: 100%;
    height: auto;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--column-gap-content);
}

.footer__col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer__row--copy {
    justify-content: center;
}

.footer__copy-link {
    color: var(--footer-color);
    font-size: 12rem;
    opacity: .7;
    padding: 10px 0;
}

@media (max-width: 991px) {
    .footer__row {
        flex-flow: column;
    }
}

@media (max-width: 767px) {
    .footer {
        padding-left: 30rem;
        padding-right: 30rem;
    }
}


/* Accessibility Links */

.accessibility-links {
    position: relative;
    z-index: 100;
}

.accessibility-link {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 2em;
    color: #000;
    background-color: #fff;
    font-weight: bold;
    width: 0;
    height: 0;
    overflow: hidden;
}

.accessibility-link:focus {
    width: auto;
    height: auto;
    padding: 20rem;
}

/* Cookie Banner */

.cookie-banner__more-info {
    max-height: 50vh;
    overflow-y: auto;
}

.cookie-banner__group-title {
    font-size: 1.2em;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10rem;
    padding-bottom: 10rem;
}

.cookie-banner__group {
    margin-bottom: 20rem;
}

.cookie__title {
    padding-top: 10rem;
    padding-bottom: 5rem;
    font-weight: bold;
}

.cookie__text,
.cookie__link {
    font-size: .8em;
}

.cookie-banner__back {
    cursor: pointer;
    text-decoration: underline;
    text-align: right;
}