.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200000;
    padding: 13px 16px 14px;
    border-radius: 18px 18px 0 0;
    background: #343941;
    color: #fff;
    box-shadow: 0 -7px 22px rgba(25, 30, 36, .22);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    transition: opacity .18s ease, transform .18s ease;
}

.cookie-consent.is-hiding {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.cookie-consent__text {
    display: inline;
}

.cookie-consent a {
    color: #9eb66c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent a:hover {
    color: #b4ca82;
}

.cookie-consent__button {
    flex: 0 0 auto;
    min-width: 40px;
    height: 30px;
    padding: 0 10px;
    border: 0;
    border-radius: 8px;
    background: #93ad5e;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    background: #7f984c;
    outline: none;
}

@media (max-width: 760px) {
    .cookie-consent {
        padding: 11px 12px 12px;
        font-size: 12px;
    }

    .cookie-consent__inner {
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 520px) {
    .cookie-consent__inner {
        flex-direction: column;
    }

    .cookie-consent__button {
        min-width: 62px;
    }
}


.cookie-consent__form {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}
