.cookie {
    background-color: #333
}

@font-face {
    font-family: Helvetica Neue;

}

@font-face {
    font-family: Avenir Roman;

}

@-webkit-keyframes fadeout {
    0% {
        opacity: 1;
        visibility: visible
    }

    to {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes fadeout {
    0% {
        opacity: 1;
        visibility: visible
    }

    to {
        opacity: 0;
        visibility: hidden
    }
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,.34);
    z-index: 10000
}

.cookie-overlay.fade-out {
    opacity: 0;
    -webkit-animation: fadeout .4s forwards;
    animation: fadeout .4s forwards
}

.cookie {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 60px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 10001
}

.cookie a {
    color: #fff;
    text-decoration: underline;
    font-size: .9em;
}

.cookie.fade-out {
    opacity: 0;
    -webkit-animation: fadeout .4s forwards;
    animation: fadeout .4s forwards
}

.cookie__text {
    color: #fff;
    margin: 0 20px 20px 0
}

.cookie__text p {
    margin-bottom: 0;
    margin-top: 0;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: .9em;
}

.cookie__button {
    border-radius: 5px;
    background-color: #1f6ba4;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 0 12px;
    height: 32px;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px
}

.cookie__button img {
    margin-right: 5px
}

.cookie__button:focus {
    border: 0;
    outline: 0
}

.cookie__button-collapse {
    display: none;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0 2rem;
    cursor: pointer;
    transition: transform .25s ease;
    line-height: 20px
}

.cookie__button-collapse.rotate-180 {
    transform: rotate(180deg)
}

.cookie__button-collapse:focus {
    border: 0;
    outline: 0
}

.cookie__button--close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
    font-size: 12px;
    background-color: transparent;
    border: 0;
    outline: 0
}

@media (min-width: 992px) {
    .cookie {
        flex-direction:row
    }

    .cookie__button {
        margin-left: 150px
    }

    .cookie__button-collapse {
        display: block
    }

    .cookie__text {
        margin: 0 20px 0 0;
        max-width: 50vw
    }

    .cookie__text-bottom {
        display: none
    }
}
