<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}

#wrapper
{
    position: relative;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    z-index: 0;
}

#header
{
    width: 100%;
    max-width: 100%;
}

#content
{
    padding-bottom: 80px;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 10px;
}

#footer
{
    position: absolute;
    bottom: 0px;
    width: 100%;
    min-height: 70px;
    padding-bottom: 10px;
}

#cookie_note_main
{
    display: none;
    z-index: 1;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

#cookie_note_background
{
    background-color: black;
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

#cookie_content
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookie_box
{
    width: 40%;
    background-color: white;
    opacity: 1;
    padding: 15px;
    font-family: Arial;
    border-radius: 10px;
    line-height: 1.5;
    text-align: center;
}

#cookie_box h2
{
    text-align: center;
}

#cookie_box button
{
    width: 50%;
    height: 80px;
    text-align: center;
    vertical-align: center;
    font-size: 2em;
    margin-top: 50px;
    background-color: limegreen;
    border-radius: 8px;
}



@media only screen and (max-width:899px)
{
    #cookie_box
    {
        width: 80%;
    }

    #cookie_box h2
    {
        font-size: 1.2em;
    }

    #cookie_box button
    {
        width: 80%;
        height: 50px;
        font-size: 1em;
        background-color: limegreen;
    }

    #cookie_content
    {
        align-items: flex-start;
        padding-top: 50px;
        height: calc(100% - 50px);
    }
}</pre></body></html>