/*body {
    margin: 0px;
    padding: 0px;
    background: url("img/patt.png");
}
*/

#cookieBar {
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 99999;

    background-color: rgba(165, 197, 95, 0.93);
    color: black;
    padding: 5px 10px;
    clear: both;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
    box-shadow: 1px 0px 11px rgba(0, 0, 0, 0.67);

    transition: background-color linear 0.5s;
    -webkit-transition: background-color linear 0.5s;
}

/*#cookieBar:hover {
    background-color: #1C352B;
    border-bottom: 2px solid #1db597;

    transition: all linear 0.5s;
    -webkit-transition: all linear 0.5s;
}*/



#cookieBarText {
    float: left;
    padding: 5px;
    padding-left: 10px;
    padding-right: 20px;
}

#cookieBarLink {
    padding: 5px;
    padding-left: 10px;
    float: left;
    color: black;
    font-weight: bold;
    font-size: 0.8em;
}

/*#cookieBarLink:hover {
    text-decoration: underline;
}*/



#cookieBarClose {
    display: inline-block;
    position: relative;
    left: -23px;
    float: right;

    padding: 4px 12px;
    cursor: pointer;
    border: solid 0px #fff;
    border-radius: 2px;
    background-color: #fff;
    /*border-color: #168972;*/
    /*background: #168972;*/
    color: #A5C555;

    transition: background linear 0.1s;
    -webkit-transition: background linear 0.1s;
}

#cookieBarClose:hover {
    background-color: #A5C555;
    color: white;

    transition: background linear 0.1s;
    -webkit-transition: background linear 0.1s;
}


