.df-cookie-consent,
.df-cookie-modal {
    font-family: inherit;
    color: #ffffff;
    box-sizing: border-box;
}

.df-cookie-consent *,
.df-cookie-modal * {
    box-sizing: border-box;
}

.df-cookie-consent {
    position: fixed;
    right: 8px;
    bottom: 8px;
    left: 8px;
    z-index: 99990;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.df-cookie-consent__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: #125C91;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    /*backdrop-filter: blur(16px);*/
    pointer-events: auto;
}

.df-cookie-consent__content {
    max-width: 920px;
}

.df-cookie-consent__link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.df-cookie-consent__link:hover {
    color: #EFF8FF;
}

.df-cookie-consent__title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    color: #ffffff;
}

.df-cookie-consent__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

.df-cookie-consent__actions,
.df-cookie-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.df-cookie-consent__actions {
    flex: 0 0 auto;
    margin-left: auto;
}

.df-cookie-consent__btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    min-height: 48px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
}

.df-cookie-consent__btn:hover {
    transform: translateY(-2px);
}

.df-cookie-consent__btn:active {
    transform: translateY(0);
}

.df-cookie-consent__btn--primary {
    padding-inline: 26px;
    color: #1E579A;
    background: #ffffff;
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.df-cookie-consent__btn--primary:hover {
    padding-inline: 26px;
    color: #1E579A;
    background: #f4fbff;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.24),
        0 0 0 4px rgba(255, 255, 255, 0.16);
}

.df-cookie-consent__btn--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.df-cookie-consent__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.df-cookie-consent__btn--ghost {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.df-cookie-consent__btn--ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.28);
}

.df-cookie-consent__btn:focus-visible,
.df-cookie-modal__close:focus-visible,
.df-cookie-option input:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
}

.df-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.df-cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 12, 0.72);
    backdrop-filter: blur(10px);
}

.df-cookie-modal__panel {
    position: relative;
    width: min(100%, 680px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 24px;
    background: #125C91;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.df-cookie-modal__header,
.df-cookie-modal__body,
.df-cookie-modal__footer {
    padding: 22px;
}

.df-cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.df-cookie-modal__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    color: #ffffff;
}

.df-cookie-modal__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.df-cookie-modal__body {
    display: grid;
    gap: 14px;
}

.df-cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.df-cookie-option strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #ffffff;
}

.df-cookie-option p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.df-cookie-option input {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    cursor: pointer;
}

.df-cookie-option__fixed {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.df-cookie-modal__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
    .df-cookie-consent {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .df-cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 18px;
    }

    .df-cookie-consent__actions,
    .df-cookie-modal__footer {
        width: 100%;
        justify-content: stretch;
    }

    .df-cookie-consent__btn {
        flex: 1 1 auto;
    }

    .df-cookie-option {
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .df-cookie-consent__btn--primary {
        order: 1;
    }

    .df-cookie-consent__btn--secondary {
        order: 2;
    }

    .df-cookie-consent__btn--ghost {
        order: 3;
    }

    .df-cookie-consent__actions,
    .df-cookie-modal__footer {
        flex-direction: column;
    }

    .df-cookie-consent__btn {
        width: 100%;
    }

    .df-cookie-option {
        gap: 14px;
    }
}




.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: -40px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-legal-links a,
.footer-legal-inline a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-legal-links a:hover,
.footer-legal-inline a:hover {
    color: var(--accent-color);
}

.footer-legal-links span,
.footer-legal-inline span {
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-inline {
    display: none;
}

.footer-legal-links--pre-consent {
    display: none;
}

body.df-cookie-consent-pending .footer-legal-links--pre-consent {
    display: flex;
}

body.df-cookie-consent-set .footer-legal-inline {
    display: inline;
}

@media (max-width: 991px) {
    .footer-legal-links {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .footer-legal-links {
        justify-content: flex-start;
        margin-top: 28px;
        font-size: 14px;
        gap: 6px;
    }

    .footer-legal-inline {
        display: none !important;
    }

    body.df-cookie-consent-set .footer-legal-inline {
        display: block !important;
        margin-top: 8px;
        line-height: 1.7;
    }
}