.cookie-alert {
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: #0b0803cc;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    display: none;
}

.cookie-alert__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    font-size: 0.8em;
    line-height: 1em;
}

.cookie-alert__button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    padding: 14px 16px;
    background-color: #999;
}

@media screen and (max-width: 475px) {
    .cookie-alert__inner {
        flex-direction: column
    }

    .cookie-alert .cookie-alert__text {
        padding: 5px 15px 5px 5px;
        font-size: 0.6em;
        line-height: 1.4;
    }
}