﻿#main-cookie-policy {
    font-family: cursive;
}

input[type='checkbox'] {
    display: none;
}

.wrap-collabsible {
    margin: 20px 0;
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, .1);
}

.lbl-toggle {
    display: block;
    font-size: 2rem;
    text-align: center;
    padding: 1.5rem;
    padding-bottom: 10px;
    color: #301800;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease-out;
    font-weight:700;
}

    .lbl-toggle::before {
        content: ' ';
        display: inline-block;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid currentColor;
        vertical-align: middle;
        margin-right: .7rem;
        transform: translateY(-2px);
        transition: transform .2s ease-out;
    }

.collapsible-content .content-inner {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5rem 1.5rem;
    font-size: 20px;
    margin: 0px 20px;
    color: #301800;
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: fit-content;
}

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navigation-table {
    display: flex;
    flex-flow: wrap;
    margin: 10px 0;
    justify-content: space-around;
    border-radius: 3px;
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, .1);
}

    .navigation-table div {
        display: flex;
        flex-flow: column;
    }

    .navigation-table a {
        margin: 15px;
        color: #301800;
        font-size: 18px;
        cursor: pointer;
    }

        .navigation-table a:before {
            content: "";
            font-weight: bold;
            border: 1px solid;
            width: 11px;
            display: inline-block;
            margin: 0px 12px;
            height: 6px;
        }

#cookie-policy {
    font-size: 3em;
    color: #301800
}

iv {
    box-sizing: border-box;
}

.table-container {
    margin: 20px 0px;
}

.flex-table {
    display: flex;
    flex-flow: row wrap;
    border-left: solid 1px #d9d9d9;
    transition: 0.5s;
}

    .flex-table .flex-row:last-child {
        flex-grow: 2.5;
    }

    .flex-table:first-of-type .flex-row {
        background: #fcb94d;
        color: #301800;
        font-weight: bold;
    }

    .flex-table.row:nth-child(odd) .flex-row {
        background: #f4f2f1;
    }

    .flex-table:hover {
        background: #F5F5F5;
        transition: 500ms;
    }

.flex-row {
    flex: 1;
    padding: 0.5em 0.8em 0.5em 0.8em;
    border-right: solid 1px #d9d9d9;
    border-bottom: solid 1px #d9d9d9;
    word-break: break-word;
}

.mobile .lbl-toggle {
    font-size: 1.4em;
    padding-right: 0.5em;
    padding-left: 0.5em;
}

.mobile #cookie-policy {
    font-size: 2.5em;
}

.mobile .wrap-collabsible {
    margin-top: 10px;
    margin-top: 10px;
}

.mobile .collapsible-content .content-inner {
    padding: 0px;
    font-size: 1em;
}

.mobile .content-inner p:not(.no-jsutify) {
    text-align: justify;
}

.mobile #main-cookie-policy {
    font-family: inherit;
}

.mobile .flex-table {
    border: 1px solid #301800;
    flex-flow: column;
}

.mobile .table-container {
    margin: 0px;
}