.ks-cookies {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    min-height: 5rem;
    padding: 0;
    margin: 0;

    font-family: 'RelatoSans Bold';
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;

    color: #fff;
    background-color: #0e7489;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
}

.ks-cookies--show {
    display: flex;
}

.ks-cookies__text {
    flex: 1 1 auto;
    margin: 0.5rem 1rem;
    text-align: center;
}

.ks-cookies__link {
    text-decoration: underline;
    color: #fff;
}

.ks-cookies__link:focus,
.ks-cookies__link:hover {
    color: #eee;
    transition: color 0.3s ease;
}

.ks-cookies__accept {
    flex: none;
    margin: 0.5rem 1rem;
    padding: 0.5em 2em;
    border: none;
    border-radius: 9999px;
    text-align: center;
    text-decoration: none;
    color: #0e7489;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.ks-cookies__accept:focus,
.ks-cookies__accept:hover {
    background-color: #eee;
}

@media only screen and (min-width: 768px) {
    .ks-cookies {
        flex-direction: row;
    }
}
