<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    -webkit-transition: margin 1s;
    transition: margin 1s;
}
.bannerStyle{
    background-color:rgba(0,0,0,0.8);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top:0;
    -webkit-transition: all 1s;
    transition: all 1s;
    position:fixed;
    -webkit-transform: translateY(-100%);

            transform: translateY(-100%);

    z-index:666;        
}
#cookieBanner{
    width:100%;
}
#miniBanner{
    cursor:pointer;
    margin-left:20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#miniBanner.active{

    -webkit-transform: translateY(-85%);

            transform: translateY(-85%);

}
#miniBanner.active:hover{

    -webkit-transform: translateY(0);

            transform: translateY(0);

}
#cookieBanner.active{

    -webkit-transform: translateY(0);

            transform: translateY(0);

}


.bannerStyle .text{
    color:rgba(255,255,255,1);
    padding:25px;
    width: 80%;
}
#cookieBanner.bfull&gt;div.text{
    text-align: center;
}
#cookieBanner&gt;div.text&gt;a{
    color:rgb(245, 243, 109);
}
#miniBanner .text&gt;a{
    color:rgb(255, 255, 255);
}
.bannerStyle .text&gt;a:hover,.bannerStyle .text&gt;a:active,.bannerStyle .text&gt;a:visited{
    text-decoration: underline;
}

#cookieBanner button{
    color:rgb(255,255,255);
    padding:15px;
    margin-right:25px;
    cursor:pointer;
    border:1px solid rgba(255,255,255,0.8);
    border-radius: 15px;
    background: transparent;
    outline: none;
    text-decoration: none;
    vertical-align: baseline;
    z-index: 1;
}
#cookieBanner button:hover{
    color:rgb(0,0,0);
    background-color: rgb(255,255,255);
    
}

</pre></body></html>