﻿/*!
 * jQuery Cookiebar Plugin
 * https://github.com/carlwoodhouse/jquery.cookieBar
 *
 * Copyright 2012, Carl Woodhouse
 * Disclaimer: if you still get fined for not complying with the eu cookielaw, it's not our fault.
 */
body:not(.sfPageEditor) .ui-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-size: .875rem;
}

    .ui-widget .row {
        margin: 0;
    }

.cookie-message {
    background: #000000;
    position: relative;
    padding: 1rem 0;
    color: #FFF;
}

    .cookie-message p {
        margin: 0;
        color: #FFF;
    }

    .cookie-message a {
        color: #FFFFFF;
        text-decoration: underline;
    }

        .cookie-message a.cookiebar-close {
            text-decoration: none;
            font-weight: 700;
            display: block;
            padding: .5rem 1rem;
            position: absolute;
            top: 0;
            right: 1rem;
            left: auto;
            bottom: 0;
            cursor: pointer;
            margin: auto;
            height: 33px;
            background: #8cb34b;
            color: #FFF;
            line-height: normal;
        }

@media screen and (max-width: 500px) {
    body:not(.sfPageEditor) .ui-widget {
        position: relative !important;
        z-index: 999;
    }
}
