#keh-cookie-banner .cb-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 40;
    background: #feece7;
    padding: 14px 24px;
    color: black;
    display: flex;
    justify-content: center;
}

#keh-cookie-banner .cb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 32px;
}

#keh-cookie-banner .cb-text {
    font-size: 13px;
    line-height: 1.4;
}

#keh-cookie-banner .cb-text a {
    text-decoration: underline;
    font-size: 13px;
}

#keh-cookie-banner .cb-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

#keh-cookie-banner .cb-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

#keh-cookie-banner .cb-label .cb-check {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid black;
    background: transparent;
    flex-shrink: 0;
    box-sizing: border-box;
}

#keh-cookie-banner .cb-label input[type="checkbox"]:focus-visible + .cb-check {
    outline: 2px solid #c2410c;
    outline-offset: 2px;
}

#keh-cookie-banner .cb-label input[type="checkbox"]:checked + .cb-check::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 6px;
    height: 11px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#keh-cookie-banner .cb-btn {
    padding: 8px 24px;
    border: 1px solid #f8af99;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    color: #c2410c;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 0.125rem;
    box-sizing: border-box;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, outline 0.2s ease-in-out;
}

#keh-cookie-banner .cb-btn:hover {
    color: #9a3412;
    border-color: #9a3412;
}

#keh-cookie-banner .cb-btn:focus-visible {
    outline: 4px solid rgb(248, 175, 153);
    outline-offset: 2px;
}

#keh-cookie-banner .cb-btn:active {
    border-color: #f56438;
}

@media (max-width: 980px) {
    #keh-cookie-banner .cb-inner {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
}

@media (max-width: 767px) {
    #keh-cookie-banner .cb-label input[type="checkbox"]:checked + .cb-check::after {
        top: 5px;
    }

    #keh-cookie-banner .cb-wrapper {
        padding: 20px 24px;
    }
    #keh-cookie-banner .cb-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    #keh-cookie-banner .cb-btn {
        width: 100%;
        padding: 12px 24px;
        text-align: center;
    }
}
