:root {
    --content-width: 1170px;
}

body {
    margin: 0px;
    padding: 0px;
}

div {
    margin: 0px;
    padding: 0px;
}

.content-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 2rem;
}

.horizontal-box {
    width: 100%;
    max-width: 1170px;
    padding: 2rem 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.vertical-box {
    width: 100%;
    max-width: var(--content-width);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.allow-wrap {
    flex-wrap: initial;
}

.align-inverse {
    align-items: flex-end;
}

.header {
    background-color: var(--brand-fade);
}

.top-bar {
    background-color: var(--brand-prime);
    width: 100%;
    height: 0.5rem;
}

.menu-box {
    width: 100%;
    max-width: 1170px;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background-color: var(--brand-fade);
}

.menu-item {
    padding: 1rem;
    border-top: 1px solid var(--brand-back);
}

.menu-button {
    display: none;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.menu-option {
    display: flex;
    color: var(--brand-prime);
    padding-right: 2rem;
}

.menu-option-selected {
    border-top: 1px solid var(--brand-prime);
}

.menu-filler {
    padding: 0;
    flex-grow: 1;
}

.page {
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.hidden {
    display: none;
}

.footer {
    font-size: 0.8rem;
    font-weight: 400;
    padding: 1rem;
    padding-bottom: 0.2rem;
    width: 100%;
    text-align: center;
}

.facebox {
    border: none;
    overflow: hidden;
    width: 520px;
    height: 550px;
}

@media (max-width: 1070px), (orientation: portrait) {
    .allow-wrap {
        flex-wrap: wrap;
    }

    .content-box {
        padding: 0 0.5rem;
    }

    .menu-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        width: 90%;
    }

    .closed {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .menu-box .menu-option {
        display: flex;
        width: 90%;
    }
}



.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 10px 10px 30px 10px;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
}

.cookie-popup p {
    margin: 0 0 10px 0;
}

.accept-cookies {
    background-color: #4caf50;
    border: solid 1px rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.decline-cookies {
    background-color: #fff;
    border: solid 1px #4caf50;
    color: #4caf50;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
