.dvb-cookie-consent[hidden],
.dvb-cookie-settings[hidden] {
    display: none !important;
}

.dvb-cookie-consent {
    box-sizing: border-box;
    position: fixed;
    z-index: 10050;
    right: 24px;
    bottom: 24px;
    width: min(430px, calc(100vw - 48px));
    padding: 28px;
    border-top: 4px solid #baad7b;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(20, 30, 60, 0.24);
    color: #486173;
    font-family: "Poppins", sans-serif;
    opacity: 1;
    transform: translateY(16px);
    transition: transform 180ms ease;
}

.dvb-cookie-consent.is-visible {
    transform: translateY(0);
}

.dvb-cookie-consent__label {
    margin: 0 0 6px;
    color: #baad7b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.dvb-cookie-consent__title {
    margin: 0 0 12px;
    color: #141e3c;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 900;
    line-height: 1.2;
}

.dvb-cookie-consent__description {
    margin: 0;
    color: #486173;
    font-size: 14px;
    line-height: 1.65;
}

.dvb-cookie-consent__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.dvb-cookie-consent button.dvb-cookie-consent__button {
    min-width: 0;
    margin: 0;
    padding: 10px 20px;
    border: 2px solid #486173;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.dvb-cookie-consent button.dvb-cookie-consent__button--secondary {
    background: #ffffff;
    color: #486173;
}

.dvb-cookie-consent button.dvb-cookie-consent__button--secondary:hover,
.dvb-cookie-consent button.dvb-cookie-consent__button--secondary:focus-visible {
    background: #486173;
    color: #ffffff;
}

.dvb-cookie-consent button.dvb-cookie-consent__button--primary {
    border-color: #baad7b;
    background: #baad7b;
    color: #141e3c;
}

.dvb-cookie-consent button.dvb-cookie-consent__button--primary:hover,
.dvb-cookie-consent button.dvb-cookie-consent__button--primary:focus-visible {
    border-color: #141e3c;
    background: #141e3c;
    color: #ffffff;
}

.dvb-cookie-consent button.dvb-cookie-consent__button:focus-visible,
button.dvb-cookie-settings:focus-visible {
    outline: 3px solid rgba(186, 173, 123, 0.45);
    outline-offset: 3px;
}

button.dvb-cookie-settings {
    min-width: 0;
    margin: 8px 0 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: #486173;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

button.dvb-cookie-settings:hover {
    color: #baad7b;
}

@media (max-width: 575px) {
    .dvb-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
        padding: 22px 20px;
    }

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

    .dvb-cookie-consent button.dvb-cookie-consent__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dvb-cookie-consent {
        transition: none;
    }
}

@media print {
    .dvb-cookie-consent,
    .dvb-cookie-settings {
        display: none !important;
    }
}
