/* Scope Bars */

.scope-bar {
    margin: 20px 0;
    }
    .scope-bar:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
    .scope-bar > section {
        float: left;
        margin: 0;
        padding: 0;
        border-right: 1px solid #ccc;
        }
        .scope-bar > section:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
        .scope-bar > section > header {
            float: left;
            margin: 0;
            padding: 0 15px;
            font-size: 14px;
            font-weight: 300;
            line-height: 24px;
            color: hsl(210, 10%, 40%);
            }
            .scope-bar > section:first-child > header {
                padding-left: 0;
                }
        .scope-bar > section > ul {
            float: left;
            margin: 0;
            padding: 0;
            list-style: none;
            }
            .scope-bar > section > ul:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
            .scope-bar > section > ul > li {
                float: left;
                margin: 4px 5px 4px 0;
                padding: 2px 10px;
                font-size: 12px;
                font-weight: bold;
                line-height: 14px;
                color: hsl(210, 10%, 20%);
                border-radius: 15px;
                }
                .scope-bar > section > ul > li.selected {
                    background-color: hsl(210, 10%, 60%);
                    color: white;
                    }
                .scope-bar > section > ul > li:hover {
                    background-color: hsl(210, 10%, 90%);
                    }
                .scope-bar > section > ul > li:active {
                    background-color: hsl(210, 10%, 80%);
                    }
    .scope-bar > .accessory {
        margin: 0 5px;
        float: right;
        }
        .scope-bar > .accessory > input[type="search"] {
            margin: 3px 0 2px 0;
            width: 180px;
            }
