:root {
    --branded-company-logo: url(/pdb/image/sb_logo.svg);
    /*
        Cannot use relative paths to CSS file location
        because of Safari consider the path to be relative to the current page URL
        Edge (Chromium) as well as Firefox consider the path relative to the location of this CSS file.
        --branded-company-logo: url(../image/sb_logo.svg);
     */
    --branded-background-color: rgb(183, 224, 183);
    --branded-accent-color: rgb(72, 72, 41);
    --branded-highlight-color: rgb(233, 251, 233);
    --branded-hover-color: rgb(122, 122, 91);
    --branded-border-color: rgb(143, 184, 143);
    --branded-note-color: rgb(112, 112, 81);
}

body input[type=submit]:not(.k-button),
body .k-button.k-primary,
body .k-button.k-primary:hover {
    background-color: var(--branded-accent-color);
    color: var(--branded-text-color-on-accent-color);
}
