﻿/*!
 * 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: 10pt;
}

    .ui-widget .row {
        margin: 0 auto;
        max-width: 980px;
    }

.cookie-message {
    background: #FFFFFF;
    position: relative;
    padding: 1rem 0;
    color: #000;
}

    .cookie-message p {
        margin: 0;
        padding: 0;
    }

    .cookie-message a {
        color: #000;
    }

        .cookie-message a.cookiebar-close {
            text-decoration: none;
            font-weight: 700;
            display: block;
            padding: .5rem 1rem;
            position: absolute;
            right: 1rem;
            bottom: -6px;
            cursor: pointer;
            margin: auto;
            background: rgb(191, 217, 19);
            color: #FFF;
            line-height: normal;
            border-radius: 0px;
            -o-transition: background 0.5s ease-in;
            -webkit-transition: background 0.25s ease-in;
            -moz-transition: background 0.25s ease-in;
        }

            .cookie-message a.cookiebar-close:hover {
                background-color: rgb(153,174,15);
                color: #FFF !important;
            }

@media screen and (max-width: 500px) {
    body:not(.sfPageEditor) .ui-widget {
        position: relative !important;
        z-index: 999;
    }
}
