/***** Cookie-Banner - Start *****/
.msg-cookies {
    display: block;
    position: fixed;
    bottom: -100px;
    width: 100%;
    padding: 59px 0 60px;
    color: #fff;
    background-color: rgba(var(--color-primary), 0.85);
    z-index: 1000;

    opacity: 0;
    pointer-events: none;

    transition: all var(--transition-t2);
}
div.msg-cookies.show {
    bottom: 0;
    opacity: 1;
    pointer-events: auto;
}
div.msg-cookies p {
    margin: 0;
}
div.msg-cookies a {
    text-decoration: underline;
    margin: 10px 0 0 0;
}
div.msg-cookies a:hover {
    text-decoration: none;
}
div.msg-cookies a.seen {
    display: inline-block;
    margin: 0 0 24px;
    padding: 10px 24px 4px;
    text-decoration: none;
    font: 28px/1.2 var(--font-2);
    color: rgb(var(--color-secondary));
    background-color: #e7e7ea;

    transition: all var(--transition-t1);
}
div.msg-cookies a.seen:hover {
    background-color: #fff;
}
div.msg-cookies .close-banner {
    display: inline-block;
    margin: 0 0 0 24px;
    font-size: 20px;
    opacity: 0.8;
}
/***** Cookie-Banner - End *****/

/***** Cookies Reset-Button - Start *****/
.cookie-usage-reset {
    display: inline-block;
    margin: 0 0 76px;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    background-color: rgb(var(--color-secondary-light));
    cursor: pointer;
}
.cookie-usage-reset a {
    font: 14px/1.2 var(--font-2);
    text-decoration: none;
    border-bottom: 2px solid #fff;
    transition: all var(--transition-t1);
}
.cookie-usage-reset:hover a {
    border-bottom-color: transparent;
}
.cookie-usage-reset a span {
    font-size: 28px;
}
/***** Cookies Reset-Button - End *****/

/***** Mobile - Start *****/
@media screen and (min-width: 1px) and (max-width: 575px) {

    div.msg-cookies p {
        margin: 0 0 40px;
    }
}
/***** Mobile - End *****/

