/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.cookie-bar {
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: #FBFBFB;
    transform: translateY(100%);
    transition: 400ms;
}
.cookie-bar.is-active {
    transform: translateY(0);
}
.cookie-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-bar .cookie-bar__text {
    font-size: 14px;
    width: 70%;
}

.cookie-bar__text a {
    text-decoration: underline;
    color: #0f74a8;
}

.cookie-bar .cookie-bar__button {
    background-color: #BD1D1D;
    padding: 10px 20px;
    color: #FFF;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: 400ms;
}
.cookie-bar .cookie-bar__button:hover {
    opacity: 0.8;
}