<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

#cookie-consent {
    display: none;

    width:100%;
    height: 100%;

    position:fixed;
    bottom:0px;

    background-color: rgba(0,0,0,0.8);

    z-index: 100000;
}

.cookie-consent-inner {
    width:100%;
    padding: 20px;
    position:
    fixed;
    bottom:0px;
    background-color: rgba(255,255,255,0.9);
    color: #000;
}

.cookie {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;

    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-msg {
    width: calc(100% - 120px);
    margin-right: 20px;
    float: left;
}
.cookie-accept {
    width: 100px;
    float: right;
}
.cookie-button {
    font-size: 16px;
    line-height: 40px;
    padding: 0px;
    color: #FFF;
    width: 100px;
    background-color: #008489;
    cursor: pointer;
    border: 1px solid white!important;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-align: center;
}
.cookie-button:hover {
    background-color: #333;
}</pre></body></html>