:root {
    --light-green: #6edda7;
    --light-red: #ff9999;
}

.sidebar-fixed {
    height: 100vh;
    width: 270px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    z-index: 1050;
    background-color: #fff;
    padding: 1.5rem;
    padding-top: 0;
}
.sidebar-fixed .list-group .active {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.sidebar-fixed .logo-wrapper {
    padding: 2.5rem;
}
.sidebar-fixed .logo-wrapper img {
    max-height: 50px;
}

@media (min-width: 1200px) {
    .navbar,
    .page-footer,
    main {
        padding-left: 270px; }
}

@media (max-width: 1199.98px) {
    .sidebar-fixed {
        display: none; }
}


.no-left-padding {
    padding-left: 0;
}
.calendar .pager {
    margin-top: 0;
}
.calendar .header {
    text-align: center;
}
.calendar .day {
    width: 14.28%;
    height: 11em;
}
.calendar .day .inactive {
    color: #bbb !important;
}
.calendar .day:hover {
    background-color: lightgray;
}
.calendar .day .publish-button {
    display: none;
}
.calendar .day:hover .publish-button {
    display: inline;
}


.list-group.list-group-root {
    padding: 0;
    overflow: hidden;
}

.list-group.list-group-root .list-group {
    margin-bottom: 0;
}

.list-group.list-group-root .list-group-item {
    border-radius: 0;
    border-width: 1px 0 0 0;
}

.list-group.list-group-root > .list-group-item:first-child {
    border-top-width: 0;
}

.list-group.list-group-root > .list-group > .list-group-item {
    padding-left: 30px;
}

.list-group.list-group-root > .list-group > .list-group > .list-group-item {
    padding-left: 45px;
}

.list-group-item .glyphicon {
    margin-right: 5px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
}

/*
 * Typeahead
 */
.scrollable-dropdown-menu {
    padding-right: 15px;
}
.scrollable-dropdown-menu .twitter-typeahead {
    width: 100% !important;
}
.scrollable-dropdown-menu .tt-dropdown-menu {
    max-height: 150px;
    overflow-y: auto;
}
.tt-menu {
    width: 422px;
    margin: 12px 0;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
.tt-menu, .gist {
    text-align: left;
}
.tt-suggestion {
    padding: 3px 20px;
    font-size: 18px;
    line-height: 24px;
}
.tt-suggestion:hover, .tt-suggestion.tt-cursor {
    cursor: pointer;
    color: #fff;
    background-color: #0097cf;
}
.label.label-big {
    font-size: 1em;
}
.padding-top-15 {
    padding-top: 15px;
}
.remove-item:hover {
    text-decoration: none;
}
.float-right {
    float: right;
}
.noresize {
    resize: none;
}

.checkPassed {
    background-color: var(--light-green);
}
.checkFailed {
    background-color: var(--light-red);
}