/**
 * A default stylesheme for Listbox.js plugin.
 *
 * @copyright   (c) 2012, Igor Kalnitsky <igor@kalnitsky.org>
 * @version     0.3.0-dev
 * @license     BSD
 */

.lbjs {
    overflow: auto;
    margin: 0px;
    width: 260px;
    padding: 5px;
    /*border: 1px solid #CCC;*/
    /*border-radius: 5px;*/
    background: #fff;
    height: 300px;
    color: #939597;
    border: 1px solid #D78F1A;
}

    .lbjs .lbjs-list {
        margin: 0px;
        color: #000;
        /*overflow: auto;*/
    }


        .lbjs .lbjs-list .lbjs-item {
            margin: 0px;
            padding: 5px;
        }

            .lbjs .lbjs-list .lbjs-item:not([disabled]) {
                cursor: pointer;
            }

            .lbjs .lbjs-list .lbjs-item:hover:not([disabled]) {
                background: #c2124d;
            }

            .lbjs .lbjs-list .lbjs-item[selected] {
                background: #c2124d;
            }

            .lbjs .lbjs-list .lbjs-item[disabled] {
                color: #999;
                cursor: default;
            }

    .lbjs .lbjs-searchbar-wrapper {
        margin: 0px;
        margin-right: 12px;
    }

    .lbjs .lbjs-searchbar {
        margin: 0px;
        margin-bottom: 10px;
        width: 100%;
        padding: 3px 5px;
        border: 1px solid #ccc;
    }
