<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 12px;
    left: 50%;
    margin-left: -310px;
    margin-bottom: 0;
    z-index: 999;
    text-align: left;
    transform: translateY(120%);
    transition: all 500ms ease-out;
    box-shadow: 0 -2px 16px rgb(20 34 180 / 10%);
    background: #26262b;
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    max-width: 620px;
    font-size: 12px;
    line-height: 1.50;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px){
    .cookiealert {
        position: fixed;
        bottom: 12px;
        left: 50%;
        margin-left: -165px;
        margin-bottom: 0;
        z-index: 999;
        text-align: left;
        transform: translateY(120%);
        transition: all 500ms ease-out;
        box-shadow: 0 -2px 16px rgb(20 34 180 / 10%);
        background: #26262b;
        border-radius: 10px;
        padding: 12px 16px;
        color: #fff;
        max-width: 330px;
        font-size: 12px;
        line-height: 1.50;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    
}

@media screen and (max-width: 768px) {
    .btn1 {
        background-color: #fff;
        border-color: #fff;
        color: #26262b;
        padding: 5px 22px;
        cursor: pointer;
        font-size: .875rem;
        line-height: 1.4289;
    }
}


    .btn1 {
        background-color: #fff;
        border-color: #fff;
        color: #26262b;
        padding: 5px 22px;
        cursor: pointer;
        font-size: .875rem;
        line-height: 1.4289;
    }

    .alcontent {
        float: left;
        width: 480px;
    }

@media screen and (max-width: 768px) {
    .alcontent {
        float: left;
        width: 300px;
        text-align:center!important;
    }
}

.alcontentright {
    float: right;
    
}

@media screen and (max-width: 768px) {
    .alcontentright {
        float: none;
        margin-left:100px;
        margin-top:10px;
        
    }
}


    .cookiealert.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

    .cookiealert a {
        text-decoration: underline
    }

    .cookiealert .acceptcookies {
        margin-left: 10px;
        vertical-align: baseline;
    }
</pre></body></html>