@CHARSET "UTF-8";

#cookiebar {
    background-color: rgba(0, 0, 0, 0.75);
    bottom: 0;
    color: #ffffff;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#cookiebar .wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1440px;
    padding: 8px;
}

#cookiebar .wrapper__buttons{
    display: flex;
    flex-flow: row nowrap;
}
#cookiebar .wrapper > * {
    margin: 8px;
}
#cookiebar a {
    color: rgba(53, 160, 147, 1);
}
#cookiebar .close {
    background: rgba(0, 0, 0, 0) url("../images/close-white.svg") no-repeat scroll center center / 20px auto;
    display: block;
    flex: 0 0 14px;
    height: 14px;
}
#cookiebar.hidden {
    display: none;
}
