/*!
 * 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-btn-wr {
    width: 20%;
    float: right;
}

.cookie-msg-text {
    width: 80%;
    float: left;
    text-align: left;
    color: #fff;
}

.cookie-message{
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 3px #ccc;
    z-index: 99;
    background: #f3a46b;
    color: #fff;
    font-size: 11px;
    font-family: Arial, sans-serif;
    padding: 10px 15px;
}
.cookie-message .cookie-btn-wr a {
    cursor: pointer;
    color: #000;
    font-weight: bold;
    padding: 7px 15px;
    text-align: center;
    margin-left: 30px;
    margin: .6em 30px;
    font: 700 11px/18px Arial;
    background: #fff;
}
.cookie-message .cookie-btn-wr a:hover{
    text-decoration: none;
    background: #999;
    color: #000;
}
.cookie-message p{
    color:#333;
    font:700 11px/18px Arial;
    margin:.6em 0
}

.cookie-msg-text a {
    color: #ddd;
}

.cookie-msg-text a:hover {
    color: #fff;
}

@media(max-width: 680px){
    .cookie-msg-text{
        width: 100%;
    }

    .cookie-btn-wr {
        width: 100%;
        float: left;
        margin-top: 10px;
    }

    .cookie-message .cookie-btn-wr a {
        margin: 0!important;
        display: inline-block;
        padding: 2px 7px;        
    }    
}