/* Cookie */
.cookie-privacy {
    background-color: rgba(0, 0, 0, .4);
    bottom: 0;
    color: #fff;
    left: 0;
    padding: .9rem 1.8rem;
    position: fixed;
    right: 0;
    z-index: 1000;
}

.cookie-privacy__text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.8rem
}

.cookie-privacy__text a {
    color: inherit;
    font-family: inherit;
    text-decoration: underline
}

.cookie-privacy__buttons {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    margin-left: 2rem;
}

.cookie-privacy__buttons .btn {
    background-color: #39bb9d;
    color: white;
    padding: 1rem 3rem;
}

.cookie-privacy__buttons .btn:hover {
    background: #000;
}

.cookie-privacy__buttons .btn:not(:first-child) {
    margin-left: 1rem
}

@media print,
screen and (min-width: 40em) {
    .cookie-privacy {
        padding: 1.2rem 2.4rem
    }
}

@media print,
screen and (min-width: 64em) {
    .cookie-privacy {
        display: flex;
        flex-flow: row nowrap
    }
}

@media print,
screen and (min-width: 64em) {
    .cookie-privacy__buttons {
        flex: 0 0 auto
    }
}

/* End Cookie */