
.cookies-eu-banner {
    background: #808040;
    border: 5px solid silver;
    border-radius: 20px 20px 20px 20px;
    color: white;
    padding: 6px;
    font-size: 1.0em;
    text-align: center;
    position: absolute;
    top: 200px;
    left: 200px;
    height: 185px;
    width: 44%;
    z-index: 10;
    font-size: 1.2em;
}

    .cookies-eu-banner button {
        text-decoration: none;
        background: green;
        color: white;
        border: 2px solid lime;
        border-radius: 0.5em 0.5em 0.5em 0.5em;
        cursor: pointer;
        padding: 4px 7px;
        margin: 2px 0;
        font-size: 1.2em;
        font-weight: bold;
        transition: background 0.07s, color 0.07s, border-color 0.5s;
    }

        .cookies-eu-banner button:hover {
            border: 3px solid salmon;
            background: lightgreen;
            color: black;
        }

.goButton {
    text-decoration: none;
    background: yellow;
    color: black;
    border: 2px solid orange;
    border-radius: 0.5em 0.5em 0.5em 0.5em;
    cursor: pointer;
    padding: 4px 7px;
    margin: 2px 0;
    font-size: 1em;
    font-weight: bold;
    transition: background 0.07s, color 0.07s, border-color 0.5s;
}

.hidden {
    display: none;
}


/*  PopUp */

* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    line-height: 1.5em;
}



p {
    padding: 1rem 0;
}


dialog[open] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 6rem;
    border: none;
    border-radius: 0.6rem;
}

    dialog[open] p {
        padding: 2rem;
    }

    dialog[open] div {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    dialog[open] button {
        margin: 0 1rem 1rem;
    }

    dialog[open]::backdrop {
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(3px);
    }
