.webandbrand-cookiebar,
.webandbrand-cookiepopup,
.webandbrand-cookie-shortcode,
.webandbrand-cookie-declaration {
    --wbc-ink: #111827;
    --wbc-muted: #5b6472;
    --wbc-line: #e5e7eb;
    --wbc-soft: #f8fafc;
    --wbc-panel: #ffffff;
    --wbc-accent: #0f9f6e;
    --wbc-accent-dark: #08754f;
    --wbc-secondary: #253044;
    --wbc-warning: #b45309;
    --wbc-neutral-button-text: #111827;
    --wbc-neutral-button-bg: #f3f4f6;
    --wbc-neutral-button-border: #d1d5db;
    --wbc-neutral-button-hover: #e5e7eb;
    --wbc-radius: 8px;
    --wbc-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
    color: var(--wbc-ink);
    font-family: inherit;
}

.webandbrand-cookiebar *,
.webandbrand-cookiepopup *,
.webandbrand-cookie-shortcode *,
.webandbrand-cookie-declaration * {
    box-sizing: border-box;
}

.webandbrand-cookie-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(8, 16, 32, 0.56);
}

.webandbrand-cookie-overlay.is-active {
    display: block;
}

html.webandbrand-cookie-overlay-active,
body.webandbrand-cookie-overlay-active {
    overflow: hidden;
}

.webandbrand-cookiebar {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 99999;
    width: auto;
    padding: 0;
    color: var(--wbc-ink);
    transition: transform 220ms ease, opacity 220ms ease;
}

.webandbrand-cookiebar > .container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: min(1120px, 100%);
    max-height: calc(100dvh - 32px);
    margin: 0 auto;
    padding: 18px 22px;
    background: color-mix(in srgb, var(--wbc-panel) 96%, transparent);
    border: 1px solid color-mix(in srgb, var(--wbc-line) 80%, transparent);
    border-radius: var(--wbc-radius);
    box-shadow: var(--wbc-shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.webandbrand-cookiebar--theme-dark > .container {
    color: #ffffff;
    background: color-mix(in srgb, #0b0b0c 96%, transparent);
    border-color: #303030;
    --wbc-neutral-button-text: #ffffff;
    --wbc-neutral-button-bg: #242424;
    --wbc-neutral-button-border: #3f3f3f;
    --wbc-neutral-button-hover: #303030;
}

.webandbrand-cookiebar--theme-dark .webandbrand-cookiebar-description > p {
    color: #a7a7a7;
}

.webandbrand-cookiebar--theme-dark .webandbrand-cookiebar-settings {
    color: #ffffff;
    background: #171717;
    border-color: #303030;
}

.webandbrand-cookiebar-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    width: 100%;
}

.webandbrand-cookiebar.is-expanded .webandbrand-cookiebar-main {
    align-items: stretch;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    scrollbar-color: var(--wbc-line) transparent;
    scrollbar-width: thin;
}

.webandbrand-cookiebar.is-expanded .webandbrand-cookiebar-main::-webkit-scrollbar {
    width: 10px;
}

.webandbrand-cookiebar.is-expanded .webandbrand-cookiebar-main::-webkit-scrollbar-track {
    background: transparent;
}

.webandbrand-cookiebar.is-expanded .webandbrand-cookiebar-main::-webkit-scrollbar-thumb {
    background: var(--wbc-line);
    border: 3px solid var(--wbc-panel);
    border-radius: 999px;
}

.webandbrand-cookiebar-description {
    order: 1;
}

.webandbrand-cookiebar-buttons {
    order: 3;
}

.webandbrand-cookiebar.is-expanded .webandbrand-cookiebar-buttons {
    display: none;
}

.webandbrand-cookiebar--bottom {
    right: 0;
    bottom: 0;
    left: 0;
}

.webandbrand-cookiebar--bottom > .container {
    width: 100%;
    max-width: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
}

.webandbrand-cookiebar--left,
.webandbrand-cookiebar--right {
    bottom: 24px;
    width: min(430px, calc(100vw - 16px));
}

.webandbrand-cookiebar--left {
    right: auto;
    left: 0;
}

.webandbrand-cookiebar--right {
    right: 0;
    left: auto;
}

.webandbrand-cookiebar--left > .container,
.webandbrand-cookiebar--right > .container {
    width: 100%;
    align-items: stretch;
}

.webandbrand-cookiebar--left > .container {
    border-left: 0;
    border-radius: 0 var(--wbc-radius) var(--wbc-radius) 0;
}

.webandbrand-cookiebar--right > .container {
    border-right: 0;
    border-radius: var(--wbc-radius) 0 0 var(--wbc-radius);
}

.webandbrand-cookiebar--center {
    top: 50%;
    right: 16px;
    bottom: auto;
    left: 16px;
    transform: translateY(-50%);
}

.webandbrand-cookiebar--center > .container {
    width: min(560px, 100%);
}

.webandbrand-cookiebar--center .webandbrand-cookiebar-main {
    grid-template-columns: minmax(0, 1fr);
}

.webandbrand-cookiebar--center .webandbrand-cookiebar-description {
    padding-right: 0;
}

.webandbrand-cookiebar--center .webandbrand-cookiebar-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
}

.webandbrand-cookiebar--center .webandbrand-cookiebar-buttons > button {
    width: 100%;
    min-height: 46px;
    padding: 10px 18px;
    border-width: 2px;
    font-size: 15px;
    font-weight: 800;
}

.webandbrand-cookiebar--center .webandbrand-cookiebar-accept {
    grid-column: 1 / -1;
}

.webandbrand-cookiebar-description {
    position: relative;
    min-width: 0;
    padding-right: 44px;
    padding-top: 2px;
}

.webandbrand-cookiebar-description-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.webandbrand-cookiebar-description-head > strong {
    display: block;
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.25;
}

.webandbrand-cookiebar-description > p {
    max-width: 780px;
    margin: 0;
    color: var(--wbc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.webandbrand-cookiebar-close {
    display: none;
    place-items: center;
    position: absolute;
    top: 2px;
    right: 0;
    flex: 0 0 auto;
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
    padding: 0;
    color: transparent;
    background: #eef0f3;
    border: 2px solid #9ca3af;
    border-radius: 8px;
    font-size: 0;
    line-height: 1;
}

.webandbrand-cookiebar-close:before,
.webandbrand-cookiebar-close:after {
    content: "";
    position: absolute;
    width: 13px;
    height: 3px;
    background: #4b5563;
    border-radius: 999px;
    transition: background 160ms ease;
}

.webandbrand-cookiebar-close:before {
    transform: rotate(45deg);
}

.webandbrand-cookiebar-close:after {
    transform: rotate(-45deg);
}

.webandbrand-cookiebar-close:hover {
    color: transparent;
    background: var(--wbc-accent);
    border-color: var(--wbc-accent);
}

.webandbrand-cookiebar-close:hover:before,
.webandbrand-cookiebar-close:hover:after {
    background: #ffffff;
}

.webandbrand-cookiebar--theme-dark .webandbrand-cookiebar-close {
    background: #171717;
    border-color: #484848;
}

.webandbrand-cookiebar--theme-dark .webandbrand-cookiebar-close:before,
.webandbrand-cookiebar--theme-dark .webandbrand-cookiebar-close:after {
    background: #a7a7a7;
}

.webandbrand-cookiebar.is-expanded .webandbrand-cookiebar-close {
    display: grid;
}

.webandbrand-cookiebar-description .webandbrand-cookiepopup-inline-action {
    display: inline;
    min-height: 0;
    padding: 0 !important;
    margin: 0;
    color: var(--wbc-accent);
    background: transparent;
    border: 0;
    border-radius: 0;
    font: inherit;
    font-weight: 700;
    line-height: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    vertical-align: baseline;
    appearance: none;
    transform: none;
}

.webandbrand-cookiebar-description .webandbrand-cookiepopup-inline-action:hover {
    transform: none;
}

.webandbrand-cookiebar-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.webandbrand-cookiebar button,
.webandbrand-cookiepopup button,
.webandbrand-cookiepopup-privacy,
.webandbrand-cookie-settings-link {
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    appearance: none;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.webandbrand-cookiebar button:hover,
.webandbrand-cookiepopup button:hover,
.webandbrand-cookiepopup-privacy:hover,
.webandbrand-cookie-settings-link:hover {
    transform: translateY(-1px);
}

.webandbrand-cookiebar-settings,
.webandbrand-cookiebar-reject,
.webandbrand-cookiepopup-reject,
.webandbrand-cookiepopup-revoke,
.webandbrand-cookiepopup-privacy,
.webandbrand-cookie-settings-link {
    color: var(--wbc-secondary);
    background: #ffffff;
    border-color: var(--wbc-line);
}

.webandbrand-cookiepopup-save {
    color: #ffffff;
    background: var(--wbc-secondary);
}

.webandbrand-cookiepopup-save:hover {
    background: color-mix(in srgb, var(--wbc-secondary) 86%, #000000);
}

.webandbrand-cookiebar-reject:hover {
    background: var(--wbc-neutral-button-hover);
    border-color: var(--wbc-neutral-button-border);
}

.webandbrand-cookiebar-reject {
    color: var(--wbc-neutral-button-text);
    background: var(--wbc-neutral-button-bg);
    border-color: var(--wbc-neutral-button-border);
}

.webandbrand-cookiebar-accept,
.webandbrand-cookiepopup-accept {
    color: var(--bar-dark, #081020);
    background: var(--bar-accent-orange, #e59a30);
    border-color: var(--bar-accent-orange, #e59a30);
}

.webandbrand-cookiebar-accept:hover,
.webandbrand-cookiepopup-accept:hover {
    color: var(--bar-dark, #081020);
    background: var(--bar-accent-orange-hover, #efad4b);
    border-color: var(--bar-accent-orange-hover, #efad4b);
}

.webandbrand-cookiepopup-revoke {
    color: var(--wbc-warning);
}

.webandbrand-cookiepopup {
    display: none;
    order: 2;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    --wbc-popup-bg: var(--wbc-panel);
    --wbc-popup-card: var(--wbc-soft);
    --wbc-popup-card-border: var(--wbc-line);
    --wbc-popup-text: var(--wbc-ink);
    --wbc-popup-muted: var(--wbc-muted);
    --wbc-popup-button-border: var(--wbc-line);
    transition: max-height 260ms ease, opacity 180ms ease, margin-bottom 260ms ease, visibility 180ms ease;
}

.webandbrand-cookiepopup--dark {
    --wbc-popup-bg: #0b0b0c;
    --wbc-popup-card: #171717;
    --wbc-popup-card-border: #303030;
    --wbc-popup-text: #ffffff;
    --wbc-popup-muted: #a7a7a7;
    --wbc-popup-button-border: #484848;
    --wbc-secondary: #111111;
    --wbc-neutral-button-text: #ffffff;
    --wbc-neutral-button-bg: #242424;
    --wbc-neutral-button-border: #3f3f3f;
    --wbc-neutral-button-hover: #303030;
}

.webandbrand-cookiepopup--light {
    --wbc-popup-bg: #ffffff;
    --wbc-popup-card: #f8fafc;
    --wbc-popup-card-border: var(--wbc-line);
    --wbc-popup-text: var(--wbc-ink);
    --wbc-popup-muted: var(--wbc-muted);
    --wbc-popup-button-border: var(--wbc-line);
}

.webandbrand-cookiepopup.is-active {
    display: block;
    max-height: none;
    margin-bottom: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.webandbrand-cookiepopup-inner {
    position: relative;
    width: 100%;
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: var(--wbc-popup-bg);
    border: 1px solid var(--wbc-popup-card-border);
    border-radius: 24px;
    box-shadow: none;
    scrollbar-color: var(--wbc-popup-card-border) transparent;
    scrollbar-width: thin;
}

.webandbrand-cookiepopup-inner::-webkit-scrollbar {
    width: 10px;
}

.webandbrand-cookiepopup-inner::-webkit-scrollbar-track {
    background: transparent;
}

.webandbrand-cookiepopup-inner::-webkit-scrollbar-thumb {
    background: var(--wbc-popup-card-border);
    border: 3px solid var(--wbc-popup-bg);
    border-radius: 999px;
}

.webandbrand-cookiepopup-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    padding: 18px 32px;
}

.webandbrand-cookiepopup-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webandbrand-cookiepopup-category-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 16px 18px;
    color: var(--wbc-popup-text);
    background: var(--wbc-popup-card);
    border: 1px solid var(--wbc-popup-card-border);
    border-radius: 16px;
    cursor: pointer;
}

.webandbrand-cookiepopup-category-card.is-required {
    cursor: default;
}

.webandbrand-cookiepopup-category-copy {
    min-width: 0;
}

.webandbrand-cookiepopup-category-copy > strong {
    display: block;
    margin: 0 0 4px;
    color: var(--wbc-popup-text);
    font-size: 18px;
    line-height: 1.1;
}

.webandbrand-cookiepopup-category-copy > span {
    display: block;
    color: var(--wbc-popup-muted);
    font-size: 14px;
    line-height: 1.35;
}

.webandbrand-cookiepopup-check {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
}

.webandbrand-cookiepopup-check > input {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.webandbrand-cookiepopup-check > input:disabled {
    cursor: not-allowed;
}

.webandbrand-cookiepopup-check-visual {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: transparent;
    border: 2px solid var(--wbc-popup-button-border);
    border-radius: 8px;
    transition: background 160ms ease, border-color 160ms ease;
}

.webandbrand-cookiepopup-check-visual:before {
    content: "";
    width: 11px;
    height: 6px;
    border-bottom: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    opacity: 0;
    transform: rotate(-45deg) translate(1px, -1px);
}

.webandbrand-cookiepopup-check > input:checked + .webandbrand-cookiepopup-check-visual,
.webandbrand-cookiepopup-category-card.is-enabled .webandbrand-cookiepopup-check-visual {
    background: var(--wbc-accent);
    border-color: var(--wbc-accent);
}

.webandbrand-cookiepopup-category-card.is-required .webandbrand-cookiepopup-check-visual,
.webandbrand-cookiepopup-category-card.is-required.is-enabled .webandbrand-cookiepopup-check-visual {
    background: #d1d5db;
    border-color: #d1d5db;
}

.webandbrand-cookiepopup--dark .webandbrand-cookiepopup-category-card.is-required .webandbrand-cookiepopup-check-visual,
.webandbrand-cookiepopup--dark .webandbrand-cookiepopup-category-card.is-required.is-enabled .webandbrand-cookiepopup-check-visual {
    background: #52525b;
    border-color: #52525b;
}

.webandbrand-cookiepopup-check > input:checked + .webandbrand-cookiepopup-check-visual:before,
.webandbrand-cookiepopup-category-card.is-enabled .webandbrand-cookiepopup-check-visual:before {
    opacity: 1;
}

.webandbrand-cookiepopup-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 8px 32px 28px;
    background: var(--wbc-popup-bg);
}

.webandbrand-cookiepopup-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.webandbrand-cookiepopup-buttons > button {
    min-height: 46px;
    padding: 10px 18px;
    color: var(--wbc-popup-text);
    background: transparent;
    border: 2px solid var(--wbc-popup-button-border);
    font-size: 15px;
    font-weight: 800;
}

.webandbrand-cookiepopup-buttons > .webandbrand-cookiepopup-accept {
    grid-column: 1 / -1;
    color: var(--bar-dark, #081020);
    background: var(--wbc-accent);
    border-color: var(--wbc-accent);
}

.webandbrand-cookiepopup-buttons > .webandbrand-cookiepopup-save,
.webandbrand-cookiepopup-buttons > .webandbrand-cookiepopup-reject {
    color: var(--wbc-popup-text);
    background: transparent;
    border-color: var(--wbc-popup-button-border);
}

.webandbrand-cookiepopup-buttons > .webandbrand-cookiepopup-reject {
    color: var(--wbc-neutral-button-text);
    background: var(--wbc-neutral-button-bg);
    border-color: var(--wbc-neutral-button-border);
}

.webandbrand-cookiepopup-buttons > .webandbrand-cookiepopup-reject:hover {
    background: var(--wbc-neutral-button-hover);
    border-color: var(--wbc-neutral-button-border);
}

.webandbrand-cookie-shortcode {
    margin: 18px 0;
}

.webandbrand-cookie-settings-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.webandbrand-cookie-declaration {
    width: 100%;
    margin: 24px 0;
    overflow-x: auto;
}

.webandbrand-cookie-declaration table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid var(--wbc-line);
    border-radius: var(--wbc-radius);
    overflow: hidden;
}

.webandbrand-cookie-declaration th,
.webandbrand-cookie-declaration td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--wbc-line);
    color: var(--wbc-ink);
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
}

.webandbrand-cookie-declaration th {
    background: var(--wbc-soft);
    font-weight: 800;
}

.webandbrand-cookie-declaration tr:last-child td {
    border-bottom: 0;
}

.webandbrand-cookie-declaration code {
    white-space: nowrap;
}

@media (min-width: 860px) {
    .webandbrand-cookiebar--floating > .container,
    .webandbrand-cookiebar--bottom > .container {
        padding: 18px 24px;
    }

    .webandbrand-cookiebar--floating .webandbrand-cookiebar-main,
    .webandbrand-cookiebar--bottom .webandbrand-cookiebar-main {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .webandbrand-cookiebar--floating .webandbrand-cookiebar-buttons,
    .webandbrand-cookiebar--bottom .webandbrand-cookiebar-buttons {
        flex-wrap: nowrap;
    }

    .webandbrand-cookiebar--left .webandbrand-cookiebar-buttons,
    .webandbrand-cookiebar--right .webandbrand-cookiebar-buttons {
        justify-content: stretch;
    }

    .webandbrand-cookiebar--left .webandbrand-cookiebar-buttons > button,
    .webandbrand-cookiebar--right .webandbrand-cookiebar-buttons > button {
        width: 100%;
    }
}

@media (max-width: 749px) {
    .webandbrand-cookiebar,
    .webandbrand-cookiebar--left,
    .webandbrand-cookiebar--right {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
    }

    .webandbrand-cookiebar--bottom {
        right: 0;
        bottom: 0;
        left: 0;
    }

    .webandbrand-cookiebar > .container,
    .webandbrand-cookiebar--left > .container,
    .webandbrand-cookiebar--right > .container {
        border-radius: var(--wbc-radius);
    }

    .webandbrand-cookiebar--bottom > .container {
        border-radius: var(--wbc-radius) var(--wbc-radius) 0 0;
    }

    .webandbrand-cookiebar-buttons,
    .webandbrand-cookiepopup-buttons {
        justify-content: stretch;
    }

    .webandbrand-cookiebar-buttons > button,
    .webandbrand-cookiepopup-buttons > button {
        width: 100%;
    }

    .webandbrand-cookiebar > .container {
        max-height: calc(100dvh - 20px);
        padding: 14px;
    }

    .webandbrand-cookiebar-main {
        gap: 10px;
    }

    .webandbrand-cookiebar.is-expanded .webandbrand-cookiebar-main {
        max-height: calc(100dvh - 48px);
    }

    .webandbrand-cookiebar-description-head > strong {
        font-size: 14px;
    }

    .webandbrand-cookiebar-description > p {
        font-size: 13px;
        line-height: 1.42;
    }

    .webandbrand-cookiebar-buttons {
        gap: 8px;
    }

    .webandbrand-cookiebar button {
        min-height: 38px;
        padding: 9px 16px;
        font-size: 13px;
    }

    .webandbrand-cookiebar .webandbrand-cookiebar-close {
        width: 26px;
        min-width: 26px;
        height: 26px;
        min-height: 26px;
        padding: 0;
    }

    .webandbrand-cookiebar-close:before,
    .webandbrand-cookiebar-close:after {
        width: 12px;
    }

    .webandbrand-cookiepopup.is-active {
        max-height: none;
        margin-bottom: 0;
    }

    .webandbrand-cookiepopup-inner {
        width: 100%;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .webandbrand-cookiepopup-content {
        gap: 10px;
        padding: 12px 0;
    }

    .webandbrand-cookiepopup-category-list {
        gap: 8px;
    }

    .webandbrand-cookiepopup-category-card {
        min-height: 70px;
        gap: 10px;
        padding: 13px 14px;
        border-radius: 14px;
    }

    .webandbrand-cookiepopup-category-copy > strong {
        font-size: 16px;
    }

    .webandbrand-cookiepopup-category-copy > span {
        font-size: 13px;
        line-height: 1.3;
    }

    .webandbrand-cookiepopup-check {
        width: 26px;
        height: 26px;
    }

    .webandbrand-cookiepopup-footer {
        padding: 8px 0 0;
    }

    .webandbrand-cookiepopup-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .webandbrand-cookiepopup-buttons > button {
        width: 100%;
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13px;
    }
}
