﻿/*!
 * 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: 700px;
}

.cookie-message {
    background: #000000;
    position: relative;
    padding: 1rem 0;
    color: rgb(102, 102, 102);
}

.cookie-message p {
    margin: 0;
}

.cookie-message a {
    color: rgb(153, 153, 153);
}

.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(102, 102, 102);
    color: #FFF;
    line-height: normal;
    border-radius: 6px;
}

@media screen and (max-width: 500px) {
    body:not(.sfPageEditor) .ui-widget {
        position: relative !important;
        z-index: 999;
    }
}