.kp-cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99990;

    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    font-family: "Noto Sans", sans-serif;
}

.kp-cookie-consent[hidden] {
    display: none;
}

.kp-cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kp-cookie-consent__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    padding: 20px 22px;

    background: #fff;

    border: 1px solid #e0e4eb;
    border-radius: 14px;

    box-shadow:
        0 12px 45px rgba(20, 31, 52, .16);
}

.kp-cookie-consent__content {
    min-width: 0;
    max-width: 760px;
}

.kp-cookie-consent__title {
    display: block;

    margin-bottom: 6px;

    color: #201e24;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.kp-cookie-consent__text {
    margin: 0;

    color: #55545a;

    font-size: 13px;
    line-height: 1.55;
}

.kp-cookie-consent__text a {
    color: #23488f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.kp-cookie-consent__actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 10px;
}

.kp-cookie-consent__button {
    min-height: 42px;

    padding: 10px 22px;

    border-radius: 8px;

    font: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease;
}

.kp-cookie-consent__button--accept {
    border: 1px solid #23488f;
    background: #23488f;
    color: #fff;
}

.kp-cookie-consent__button--accept:hover {
    background: #19386f;
    border-color: #19386f;
}

.kp-cookie-consent__button--reject {
    border: 1px solid #cfd5df;
    background: #fff;
    color: #323238;
}

.kp-cookie-consent__button--reject:hover {
    border-color: #9da7b6;
    background: #f5f6f8;
}

.siteFooterCookieSettings {
    padding: 0;

    border: 0;
    background: transparent;

    color: inherit;
    font: inherit;

    text-decoration: underline;
    cursor: pointer;
}

.siteFooterBottomLinks {
    display: flex;
    align-items: center;
    gap: 18px;
}


@media (max-width: 767px) {

    .kp-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .kp-cookie-consent__inner {
        display: block;
        padding: 18px;
        border-radius: 12px;
    }

    .kp-cookie-consent__content {
        max-width: none;
    }

    .kp-cookie-consent__title {
        font-size: 16px;
    }

    .kp-cookie-consent__text {
        font-size: 13px;
    }

    .kp-cookie-consent__actions {
        width: 100%;
        margin-top: 16px;
    }

    .kp-cookie-consent__button {
        flex: 1 1 0;
    }

    .siteFooterBottomLinks {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


@media (max-width: 420px) {

    .kp-cookie-consent__actions {
        flex-direction: column-reverse;
    }

    .kp-cookie-consent__button {
        width: 100%;
    }
}