<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

/**
 * @author: Peter Slagter
 * @about:  cookie-control.css -- Layout of cookie settings panes
 *			Makes excessive use of #id selectors, to prevent conflicts between generic functionality and UI layout
 */

/**
 * Defaults
 * Generic classes, resets, etc.
 */

/** Parent element, containing elements */
#scms-cc-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    text-align: left;
    font-size: 1em;
    line-height: 1.5;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    background-color: #fceda3;
    background-color: rgba(252, 237, 163, 0.95);
}

#scms-cc-cookie-bar .cb-content-container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 20px 15px 17px;
}

/** Clearfix */
#scms-cc-cookie-bar .cb-clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/** Button layout */
#scms-cc-cookie-bar .cb-button,
#scms-cc-cookie-bar .cb-button-primary,
#scms-cc-cookie-bar .cb-button-primary:hover,
#scms-cc-cookie-bar .cb-button-primary:visited,
#scms-cc-cookie-bar .cb-button-primary:focus {
    display: inline-block;
    position: relative;
    margin: 0 0 3px 0;
    padding: 0.5em 1em;
    font-weight: normal;
    font-size: 1em;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    color: #fff;
    border: 1px solid #37902f;
    background-color: #37902f;
    border-radius: 4px;
    transition: 0.1s linear all;
    box-shadow: none;
}

#scms-cc-cookie-bar .cb-button:hover {
    background-position: 0 -15px;
}

#scms-cc-cookie-bar button::after {
    content: none;
}

/**
 * Content &amp; grid settings
 * Generic classes related to bar-content &amp; -grid
 */

/** Content row */
#scms-cc-cookie-bar.cb-open .cb-content-row {
    margin-bottom: 1em;
    padding: 0 0 1em;
}

#scms-cc-cookie-bar.cb-open .cb-content-row-2 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

/** Content holder */
#scms-cc-cookie-bar .cb-content {
    position: relative;
    width: 100%;
}

#scms-cc-cookie-bar .cb-content-left {
    float: left;
    width: 60%;
}

#scms-cc-cookie-bar.cb-open .cb-content-left {
    width: 80%;
}

#scms-cc-cookie-bar .cb-content-right {
    float: right;
    width: 38%;
}

/** Content row headings */
#scms-cc-cookie-bar h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    margin: 0;
    padding: 0;
    text-align: right;
    text-transform: uppercase;
    border: 0;
    font-size: 1.1em;
    line-height: 1.4;
}

#scms-cc-cookie-bar h3,
#scms-cc-cookie-bar label {
    font-size: 1em;
    line-height: 1.4;
    font-weight: bold;
}

/** Cookie bar content layout */
#scms-cc-cookie-bar p {
    margin: 0 0 3px;
    text-indent: 0;
}

#scms-cc-cookie-bar .cb-inner-content {
    padding-left: 170px;
}

#scms-cc-cookie-bar a,
#scms-cc-cookie-bar a:hover,
#scms-cc-cookie-bar a:visited,
#scms-cc-cookie-bar a:focus {
    color: inherit;
    text-decoration: underline;
}

#scms-cc-cookie-bar a:hover {
    text-decoration: underline;
}

#scms-cc-cookie-bar strong {
    display: inline;
    font-weight: bold;
}

/** Screens smaller than 840px */
@media all and (max-width: 840px) {
    #scms-cc-cookie-bar .cb-content-left,
    #scms-cc-cookie-bar.cb-open .cb-content-left {
        width: 95%;
    }

    #scms-cc-cookie-bar h2 {
        position: static;
        width: auto;
        text-align: left;
    }

    #scms-cc-cookie-bar .cb-inner-content {
        padding: 0;
    }

    #scms-cc-cookie-bar .cb-content-right {
        float: left;
        width: 95%;
        margin: 1em 0 0 0;
        clear: both;
    }
}

/** Screens smaller than 500px */
@media all and (max-width: 500px) {
    #scms-cc-cookie-bar {
        position: absolute;
        top: 0;
        bottom: auto;
        border-top: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .scms-cookie-control .cb-button {
        margin-bottom: 5px;
        padding: 8px 14px;
    }
}

/** Screens lower than 900px, to make sure all options can be reached */
@media screen and (min-width: 500px) and (max-height: 900px) {
    #scms-cc-cookie-bar.cb-open {
        top: 0;
        overflow-y: auto;
    }

    body.cookiebar-is-open {
        overflow-y: hidden !important; /** prevent double scrollbars */
    }
}

/**
 * .cb-buttons
 * Button container in notice row
 */

#scms-cc-cookie-bar .cb-buttons .cb-inner-content {
    padding: 0;
}

#scms-cc-cookie-bar.cb-open .cb-buttons {
    display: none;
}

/**
 * .cb-cookie-settings
 * Second row which contains actual cookie settings
 */

/** Toggle cookie settings visibility */
#scms-cc-cookie-bar .cb-content-row-2 {
    display: none;
}

#scms-cc-cookie-bar.cb-open .cb-content-row-2 {
    display: block;
}

/** Form */
#scms-cc-cookie-bar.cb-open .cb-content-row-2 fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

/** Settings form */
#scms-cc-cookie-bar .cb-cookie-settings ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

#scms-cc-cookie-bar .cb-cookie-settings li {
    position: relative;
    float: left;
    width: 100%;
    margin: 0 10px 10px 0;
    padding: 10px 100px 10px 10px;
    background-color: #e6c463;
    box-sizing: border-box;
}

#scms-cc-cookie-bar.cb-js .cb-cookie-settings li {
    cursor: pointer;
}

#scms-cc-cookie-bar.cb-js .cb-cookie-settings .cb-cookies-always-on,
#scms-cc-cookie-bar.cb-js .cb-cookie-settings .cb-cookies-always-on label,
#scms-cc-cookie-bar.cb-js .cb-cookie-settings .cb-cookies-always-on .cb-onoffswitch {
    cursor: default;
}

/** Checkboxes */
#scms-cc-cookie-bar .cb-onoffswitch-checkbox {
    width: auto;
    height: auto;
    margin-top: -2px;
    padding: 0;
    vertical-align: middle;
}

/** On / off switches */
#scms-cc-cookie-bar .cb-onoffswitch {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 55px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#scms-cc-cookie-bar .cb-onoffswitch-wrapper {
    overflow: hidden;
    border: 2px solid #fff;
}

#scms-cc-cookie-bar .cb-onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

#scms-cc-cookie-bar .cb-onoffswitch-inner span {
    display: block;
    float: left;
    width: 50%;
    height: 20px;
    padding: 0;
    color: #fff;
    font: bold 12px/22px Arial, "Helvetica Neue", Helvetica, sans-serif;
    box-sizing: border-box;
}

#scms-cc-cookie-bar .cb-onoffswitch-inner .cb-onoffswitch-active {
    padding-right: 17px;
    text-align: center;
    background-color: #3d8830;
    color: #fff;
}

#scms-cc-cookie-bar .cb-onoffswitch-inner .cb-onoffswitch-inactive {
    padding-left: 17px;
    background-color: #eee;
    color: #777;
    text-align: center;
    text-shadow: 1px 1px 1px #fff;
}

#scms-cc-cookie-bar .cb-onoffswitch-switch {
    display: block;
    position: absolute;
    top: 7px;
    right: 38px;
    width: 10px;
    height: 10px;
    margin: 0;
    background: #ccc;
    border: 2px solid #999;
    border-radius: 15px;
    transition: all 0.3s ease-in 0s;
}

#scms-cc-cookie-bar .cb-cookies-enabled .cb-onoffswitch-inner {
    margin-left: 0;
}

#scms-cc-cookie-bar .cb-cookies-enabled .cb-onoffswitch-switch {
    right: 6px;
}
</pre></body></html>