.cdp-consent[hidden] {
    display: none !important;
}

.cdp-consent {
    position: fixed;
    z-index: 999999;
    right: 24px;
    bottom: 24px;
    width: min(520px, calc(100vw - 32px));
    color: #f7f7f5;
    background: #101113;
    border-top: 4px solid #ff5a24;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    font-family: Arial, sans-serif;
}

.cdp-consent__inner {
    padding: 26px;
}

.cdp-consent h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
}

.cdp-consent p {
    margin: 0;
    color: #d3d5d7;
    font-size: 14px;
    line-height: 1.55;
}

.cdp-consent a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cdp-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cdp-consent button {
    min-height: 44px;
    padding: 11px 17px;
    border: 1px solid #fff;
    border-radius: 0;
    font: 700 12px/1 Arial, sans-serif;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
}

.cdp-consent__accept {
    color: #101113;
    background: #ff5a24;
    border-color: #ff5a24 !important;
}

.cdp-consent__essential {
    color: #fff;
    background: transparent;
}

.cdp-cookie-settings {
    padding: 0;
    color: inherit;
    background: none;
    border: 0;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cdp-consent {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .cdp-consent__inner {
        padding: 21px;
    }

    .cdp-consent__actions,
    .cdp-consent button {
        width: 100%;
    }
}

/* CDP consent contrast lock */
.cdp-consent h2,
.cdp-consent a {
    color: #fff !important;
}
.cdp-consent .cdp-consent__accept {
    color: #101113 !important;
    background: #ff5a24 !important;
    border-color: #ff5a24 !important;
}
.cdp-consent .cdp-consent__essential {
    color: #fff !important;
    background: transparent !important;
    border-color: #fff !important;
}