#clc-cookie-bar.clc-cookie-bar {
    position: fixed;
    z-index: 999999;
    background: var(--clc-bg, transparent);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    pointer-events: none;
}

#clc-cookie-bar[hidden] {
    display: none !important;
}

#clc-cookie-bar .clc-cookie-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    pointer-events: auto;
}

#clc-cookie-bar .clc-cookie-message {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 0 8px rgba(0, 0, 0, 0.55);
    white-space: nowrap;
}

#clc-cookie-bar .clc-cookie-accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    height: 50px;
    padding: 0 28px;
    cursor: pointer;
    border: 3px solid var(--clc-btn-border, #ffffff);
    background: var(--clc-btn-bg, #0C2340);
    color: var(--clc-btn-color, #ffb81c);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    border-radius: 0;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

#clc-cookie-bar .clc-cookie-accept:hover,
#clc-cookie-bar .clc-cookie-accept:focus {
    background: var(--clc-btn-hover-bg, transparent);
    border-color: var(--clc-btn-hover-border, #ffb81c);
    color: var(--clc-btn-color, #ffb81c);
    outline: none;
}

#clc-cookie-bar.clc-position-bottom-center {
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
}

#clc-cookie-bar.clc-position-bottom-left {
    left: 22px;
    bottom: 10px;
}

#clc-cookie-bar.clc-position-bottom-right {
    right: 22px;
    bottom: 10px;
}

#clc-cookie-bar.clc-position-top-center {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

#clc-cookie-bar.clc-position-top-left {
    left: 22px;
    top: 10px;
}

#clc-cookie-bar.clc-position-top-right {
    right: 22px;
    top: 10px;
}

@media (max-width: 767px) {
    #clc-cookie-bar.clc-cookie-bar {
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        background: var(--clc-bg, transparent);
    }

    #clc-cookie-bar .clc-cookie-inner {
        width: 100%;
        min-height: 64px;
        padding: 6px 20px;
        gap: 18px;
        box-sizing: border-box;
        justify-content: space-between;
    }

    #clc-cookie-bar .clc-cookie-message {
        white-space: normal;
        font-size: 13px;
    }

    #clc-cookie-bar .clc-cookie-accept {
        min-width: 118px;
        height: 52px;
        flex: 0 0 auto;
    }
}
