.cookie-consent {
    position: fixed;
    z-index: 1050;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(20, 43, 68, .15);
    border-radius: .5rem;
    box-shadow: 0 .5rem 2rem rgba(20, 43, 68, .18);
}

.cookie-consent__inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: .5rem;
    align-items: center;
}

@media (max-width: 700px) {
    .cookie-consent__inner {
        display: block;
    }

    .cookie-consent__actions {
        margin-top: .75rem;
    }
}
