/* ==========================================================================
   LCC Default Styles
   (paste this entire block to replace your current CSS)
   ========================================================================== */

[class^=lcc-] {
    box-sizing: border-box !important;
    color: #ffffff;
    font-size: 14px;
    line-height: 18px;
}

[class^=lcc-]:first-child {
    margin-top: 0;
}

[class^=lcc-]:last-child {
    margin-bottom: 0;
}

[class^=lcc-][inert] {
    cursor: default;
    pointer-events: none;
}

[class^=lcc-][inert],
[class^=lcc-][inert] * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.lcc-text {
    font-size: 14px;
    margin: 0 0 22px;
}

.lcc-button {
    background: none;
    background-color: #111;
    border: 1px solid #111;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    margin: 1px 0;
    padding: 6px 15px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.lcc-button:focus,
.lcc-button:hover {
    background: #555;
    border-color: #555;
}

.lcc-button.lcc-button--ghost {
    background: transparent;
    border: 1px solid #111;
    color: #000;
}

.lcc-button.lcc-button--ghost:focus,
.lcc-button.lcc-button--ghost:hover {
    background: #555;
    border-color: #555;
    color: #fff;
}

.lcc-button.lcc-button--link {
    background: transparent;
    border-color: transparent;
    color: inherit;
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline;
}

.lcc-button.lcc-button--link:focus,
.lcc-button.lcc-button--link:hover {
    background: transparent;
    border-color: transparent;
    text-decoration: none;
}

.lcc-button.lcc-button--link+.lcc-button.lcc-button--link {
    margin-top: 0;
}

.lcc-label {
    align-items: baseline;
    display: flex;
    font-weight: 600;
    margin-bottom: 5px;
}

.lcc-label[for] {
    cursor: pointer;
}

.lcc-label>* {
    margin-right: 10px;
}

input[id^=lcc-]:disabled {
    color: #555;
    cursor: default;
    opacity: .55;
}

input[id^=lcc-]:disabled+span {
    cursor: default;
    opacity: .6;
}

.lcc-modal {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
    left: 50%;
    max-height: 90%;
    max-width: 90%;
    overflow: auto;
    padding: 30px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 475px;
    z-index: 10001;
}

.lcc-modal .lcc-modal__close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 24px;
    line-height: 1.25;
    position: absolute;
    right: 0;
    top: 0;
    transition: color .2s ease;
    width: 30px;
}

.lcc-modal .lcc-modal__close:focus,
.lcc-modal .lcc-modal__close:hover {
    color: #555;
}

.lcc-modal .lcc-modal__title {
    font-size: 22px;
    margin-bottom: 1em;
}

.lcc-modal .lcc-modal__section {
    margin-bottom: 20px;
}

.lcc-modal .lcc-modal__section .lcc-text {
    margin-left: 24px;
}

.lcc-modal .lcc-modal__actions {
    margin-top: 30px;
}

.lcc-modal .lcc-modal__actions-center {
    display: flex;
    justify-content: center;
}

.lcc-modal .lcc-modal__actions>* {
    display: block;
    margin-top: 8px;
}

.lcc-modal.lcc-modal--settings {
    z-index: 10002;
}

.lcc-u-sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.lcc-u-text-center {
    text-align: center !important;
}


/* ==========================================================================
   Footer Bar Dark Mode + Liquid-Glass Override
   (drop this at the very end of the file)
   ========================================================================== */


/* 1) Make the alert modal a full-width footer */

.lcc-modal.js-lcc-modal-alert {
    position: fixed !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(30, 30, 30, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5) !important;
    transform: none !important;
    z-index: 9999 !important;
}


/* 2) Frosted-glass content container */

.lcc-modal.js-lcc-modal-alert .lcc-modal__content {
    max-width: 1344px;
    text-align: left;
    margin: auto;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: #fff !important;
    padding: 16px 24px !important;
    width: 100% !important;
}


/* 3) Headline & text styling */

.lcc-modal.js-lcc-modal-alert .lcc-modal__title {
    font-size: 1rem !important;
    margin: 0 0 .5em 0 !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.lcc-modal.js-lcc-modal-alert .lcc-text {
    flex: 1 1 300px !important;
    margin: 0 !important;
    font-size: .775rem !important;
    line-height: 1.4 !important;
    opacity: .85 !important;
    color: #fff !important;
    font-weight: 100;
}


/* 4) Button group flex layout */

.lcc-modal.js-lcc-modal-alert .lcc-modal__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 12px 0 0 0 !important;
}

@media (min-width: 600px) {
    .lcc-modal.js-lcc-modal-alert .lcc-modal__actions {
        margin: 0 0 0 24px !important;
    }
}


/* 5) Primary buttons in #ae8efe */

.lcc-modal.js-lcc-modal-alert .lcc-button {
    background-color: #ae8efe !important;
    color: #111 !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-size: .675rem !important;
}

.lcc-modal.js-lcc-modal-alert .lcc-button:hover {
    filter: brightness(0.9) !important;
}


/* 6) Ghost buttons match accent */

.lcc-modal.js-lcc-modal-alert .lcc-button.lcc-button--ghost {
    background: transparent !important;
    border: 1px solid #ae8efe !important;
    color: #ae8efe !important;
}

.lcc-modal.js-lcc-modal-alert .lcc-button.lcc-button--ghost:hover {
    background: rgba(230, 248, 94, 0.1) !important;
}


/* 7) Hide the dark backdrop */

.lcc-backdrop,
.lcc-modal-backdrop {
    display: none !important;
}

.lcc-modal--settings {
    background: rgba(30, 30, 30, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.lcc-modal--settings .lcc-modal__content {
    color: white !important;
}

.js-lcc-accept {
    background-color: #ae8efe !important;
    color: #111 !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-size: .875rem !important;
}

.js-lcc-settings-save {
    background-color: #ae8efe !important;
    color: #111 !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-size: .875rem !important;
}


/* 1) Restore page scrolling when consent UI is active */

html.js-lcc-active,
body.js-lcc-active {
    overflow: auto !important;
    overscroll-behavior: auto !important;
}


/* 3) Let clicks pass through the wrapper except on the bar itself */

.lcc-modal.js-lcc-modal-alert {
    pointer-events: none !important;
}

.lcc-modal.js-lcc-modal-alert .lcc-modal__content,
.lcc-modal.js-lcc-modal-alert .lcc-modal__actions,
.lcc-modal.js-lcc-modal-alert .lcc-button {
    pointer-events: auto !important;
}
