/*
Theme Name: LM-Template
Author: Lennart Möller
Author URI: https://www.lennartmoeller.com/
Description: Minimalistic Wordpress Theme
*/

#cookie-notice {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    position: fixed;
    display: none;
    bottom: 0;
    min-height: 60px;
    padding: 10px;
    padding-left: 15px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    box-sizing: border-box;
    transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
}
#cookie-notice > .cn-wrapper {
    max-width: 1100px;
    position: relative;
    margin: 0 auto;
}
#cookie-notice > div > div {
    line-height: 2;
    color: white;
}
#cookie-notice-text {
    width: calc(100% - 120px);
    margin: 6px 0;
}
#cookie-notice-accept-cookie {
    background-color: var(--akzent-color);
    padding: 5px 12px;
    border-radius: 3px;
    cursor: pointer;
    top: 50%;
    right: 10px;
    position: absolute;
    transform: translateY(-50%);
}

body.cookie_notice_accepted #cookie-notice {
    opacity: 0;
}
body.cookie_notice_accepted-transition #cookie-notice {
    z-index: -1000;
}

@media screen and (max-width: 500px) {
    #cookie-notice {
        padding: 15px;
    }
    #cookie-notice-text {
        width: 100%;
        margin: 0;
    }
    #cookie-notice-accept-cookie {
        float: right;
        position: initial;
        transform: none;
        margin-top: 10px;
    }
}
