.cookie-notice {
    display: none;
    position: fixed;
    z-index: 10000;
    right: 24px;
    bottom: 24px;
    left: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px solid rgba(137, 155, 183, .25);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 32px rgba(2, 2, 2, .15);
    color: #343333;
    font: 15px/1.4 Arial, sans-serif;
    box-sizing: border-box;
}

.cookie-notice.is-visible {
    display: flex;
}

.cookie-notice a {
    color: #188bbe;
    text-decoration: underline;
}

.cookie-notice__button {
    flex: 0 0 auto;
    min-width: 130px;
    padding: 12px 20px;
    border: 0;
    border-radius: 8px;
    background: #188bbe;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

@media (max-width: 650px) {
    .cookie-notice {
        right: 15px;
        bottom: 15px;
        left: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        max-width: calc(100% - 30px);
        font-size: 14px;
    }

    .cookie-notice__button {
        width: 100%;
    }
}
