/**
 * Formatierung -> Cookie-Hinweis
 */
#cookie { /* Cookie Hinweis */
    text-align: center;
    display: none;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 130px;
    background: #21252f;
    -webkit-box-shadow: 0px 0px 5px 3px #006cf0;
    -moz-box-shadow: 0px 0px 5px 3px #006cf0;
    box-shadow: 0px 0px 5px 3px #006cf0;
    z-index: 999999;
}
    
#cookie .cookie-title { /* Titel */
    font-size: 1.25em;
    color: #006CF0;
    margin: 0;
    padding-top: 3px;
}
    
#cookie .cookie-content { /* Inhalt */
    font-size: 1em;
    color: #fff;
}
    
#cookie .cookie-comtent a {
    color: #006cf0;
}
    
#cookie .cookie-button { /* Button */
    width: 150px;
    margin-top: -5px;
    background: #006CF0;
    color: #fff;
    opacity: 0.3;
}
    
#cookie .cookie-button:hover,
#cookie .cookie-button:focus { /* Button-Effekte */
    opacity: 1;    
}