/* ---------------------------
   -- CSS Datei für Cookies --
   ---------------------------
 */
.cookieViewer {
    position: absolute;
    height: auto;
    padding-bottom:20px;
    width: 100%;
    bottom: 100px;
    left: 0px;
    background-color: grey;
    z-index: 10002;
    transition: 1s;
    opacity: 0;
}
.cookieText {
    text-align: center;
    color: white;
    font-size: 1em;
}
.cookieText1 {
    padding: 20px 5px 0px 5px;
}
.cookieText2 {
    padding-bottom: 5px;
}
.cookieButton {
    padding: 10px;
    width: 10%;
    min-width: 100px;
    margin-left: 45%;
    text-align: center;
    font-size: 1em;
    background-color: white;
    border-radius: 5px;
}
.cookieButton:hover {
    background-color: lightgray;
    cursor:pointer;
    box-shadow: 0px 0px 10px black;
}