/* ----------------------------------------- Cookiebar CSS ----------------------------------------- */
.cookie-bar {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 20px 20px 0;
    transition: all 2s linear;
    z-index: 999;
}
.cookie-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cookie-bar .btn:not(:last-child) {
    margin-inline-end: 10px;
}
.cookie-bar .btn::before {
    content: none;
}
.cookie-bar.show {
    bottom: 0;
    transition: all 2s linear;
}