<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookies {
    display: none;
    padding: 22px;
    background-color: #357875;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9997;
}

    .cookies .btn--secondary:hover {
        color: #357875;
    }

.cookie__title {
    color: #ffffff;
    font-size: 19px;
}

.cookie__info {
    max-width: 700px;
    padding-right: 60px;
}

.cookie__text {
    color: #ffffff;
    font-size: 12px;
    line-height: 16px;
}

    .cookie__text a {
        color: #fff;
        font-weight: 600;
        text-decoration: underline;
    }

.cookies .wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cookies .close-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    right: 26px;
    background: transparent;
    cursor: pointer;
    outline: none;
    z-index: 100;
}

@media screen and (max-width:1024px) {
    .cookies .wrapper {
        padding-right: 80px;
    }

    .cookies .close-btn {
        right: 16px;
    }
}

@media screen and (max-width:767px) {
    .cookies .wrapper {
        padding-right: 0px;
        display: block;
    }

    .cookies .close-btn {
        width: 20px;
        height: 20px;
        position: relative;
        left: auto;
        right: 0px;
        top: 0;
        border: 0;
        display: block;
        margin: 0;
        margin-bottom: 10px;
        float: right;
    }

    .cookie__info {
        padding: 0;
        clear: both;
    }

    .cookies .wrapper {
        padding: 0;
    }
}
</pre></body></html>