/* COOKIE MELDER */
.cookie-banner {
position: fixed;
z-index: 40;
left: 100px;
width: 800px;
padding: 30px;
background: #ffb23e;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
text-align: left;
bottom: -100%;
animation-name: show;
animation-fill-mode: forwards;
animation-duration: .5s;
animation-delay: .75s;
}

.cookie-banner strong {
display: inline-block;
color: #00b1ec;
font-size: 22px;
line-height: .7;
margin-bottom: 20px;
}

.cookie-top {
    display: flex;
    align-items: center;
}

.cookie-bottom {
    display: flex;
    align-items: center;
}

.cookie-banner p {
    color: #fff;
}

.cookie-intro {
    width: 90%;
}

.cookie-banner img {
    width: 120px;
    margin-left: 30px;
}

.cookie-accept {
    display: inline-block;
    background-color: #00b1ec;
    color: #fff;
    height: 40px;
    width: 100px;
    border-radius: 8px;
    text-align: center;
    line-height: 35px;
    font-size: 16px;
    transition-duration: 0.5s;
    border: 2px solid transparent !important;
}

.cookie-accept:hover {
    color: #ffffff;
    background-color: #016995;
    border: 2px solid #016995 !important;
    text-decoration: none;
}

.cookie-smalltext {
    display: inline-block;
    text-align: center;
    border-left: 1px solid #fff;
    padding-left: 30px;
    margin-left: 30px;
    margin-bottom: 0;
}

.cookie-privacy {
    color: #00b1ec;
}

@keyframes show {
from {
    bottom: -100%;
}
to {
    bottom: 0;
}
}

@media only screen and (max-width: 1199px) {
    .cookie-banner img {
        display: none;
    }

    .cookie-banner {
        width: 450px;
    }

    .cookie-intro {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .cookie-banner {
        left: 50px;
        width: 300px;
    }

    .cookie-bottom {
        display: block;
    }

    .cookie-smalltext {
        padding-left: 0;
        margin-left: 0;
        border: 0;
        text-align: left;
        margin-top: 10px;
    }

    .cookie-smalltext br {
        display: none;
    }

    .cookie-banner p {
        font-size: 12px;
        line-height: 16px;
    }

    .cookie-banner strong {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cookie-accept {
        font-size: 14px;
        line-height: 30px;
        height: 30px;
    }
}
