/** left-menu.css */

/** some layout */
.has-left-menu .col-md-left {
    float: left;
    padding: 0 15px;
    width: 216px;
}
.has-left-menu .col-md-main {
    float: left;
    padding: 0;
    width: 680px;
}

/** menu itself */
.left-menu {
    list-style-type: none;
    border: 1px solid #ebebec;
    padding: 0;
    margin: 0;
}
.left-menu > li {
    list-style-type: none;
    background-color: #f5f6f8;
    border-bottom: 1px solid #eaeaeb;
    padding: 15px 10px 10px 10px;
    margin: 0;
    font-weight: bold;
}

/** header */
.left-menu > li.header {
    background-color: white;
    border-bottom: 1px dashed #bcbdbe;
}
.left-menu > li.header > span,
.left-menu > li.header > a {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

/** selected */
.left-menu > li.selected {
    background-color: #0b80b7;
    border-bottom: 1px dashed #bcbdbe;
}
.left-menu > li.selected > span,
.left-menu > li.selected > a {
    line-height: 20px;
    color: white;
}

/** other */
.left-menu > li:last-child {
    border-bottom: none;
}
.left-menu > li > a,
.left-menu > li > span {
    font-size: 14px;
    color: #0b80b7;
}
.left-menu > li.current > span,
.left-menu > li.current > a {
    color: #444444;
}
.left-menu > li .extra {
    color: #444444;
    font-weight: normal;
}

/** full width for medium screens
@media screen and (max-width: 768px) {
*/
@media screen and (max-width: 912px) {
    .has-left-menu .col-md-left {
        float: none;
        padding: 0 15px;
        width: auto;
    }
    .has-left-menu .col-md-main {
        float: none;
        padding: 15px;
        width: auto;
    }
}
