/*!
 * 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.
 */

.cookie-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 20px;
    max-width: calc(100vw - 60px);
    background: #fff;
    border-bottom: 1px solid #ccc;
    box-shadow: 0px 0px 15px #ccc;
    box-sizing: border-box;
    z-index: 99;
}

.cookie-message a.my-close-button {
    display: inline-block;
    border: 1px solid #445355;
    cursor: pointer;
    padding: 0.8em 1.2em;
    text-decoration: none;
}
.cookie-message a.my-close-button:hover {
    background: #445355;
    color: #fff;
}

.cookie-message p,
.cookie-message a {
    color: #333;
    margin: 0.6em 0;
    font-size: 12px;
}

.blue {
    border-bottom: 1px solid #0E83AE;
    background-color: #0990c3;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0e83ae), color-stop(50%, #0990c3), color-stop(100%, #0e9dd2));
    background: -webkit-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
    background: -moz-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
    background: -o-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
    background: -ms-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
    background: linear-gradient(#0e83ae, #0990c3, #0e9dd2);
}

.blue p, .blue a {
    color: #fff;
}