body { background-color:#fafafa;}
#templates { display: none; }
#kanban-board ul {
    min-height: 500px;
    padding: 3px 0;
}
div.board-list {
    padding-right: 0px;
}

div.board-list li.card {
    margin: 6px 0px 6px -5px;
    min-height: 70px;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

li.list-group-item.card.is-hovered {
    /*background-color: #FFEB3B;*/
    background-color: rgba(255, 235, 59, 0.22);
}

h2.section-header {
    border-bottom: 1px solid;
}

div.board-filters a {
    margin-right: 16px;
}

#kanban-board div.board-list.off { display: none; }

li.list-group-item.card.bug span.type {
    background-color: tomato;
}
li.list-group-item.card.feature span.type {
    background-color: seagreen;
}
li.list-group-item.card.task span.type {
    background-color: skyblue;
}
li.list-group-item.card.hotfix span.type {
    background-color: black;
    color: white;
    text-transform: capitalize;
}

#kanban-board.feature-off li.card.feature {
    display: none!important;
}

#kanban-board.bug-off li.card.bug {
    display: none!important;
}

#kanban-board.task-off li.card.task {
    display: none!important;
}

#kanban-board.feature-off.resorting li.card.feature {
    display: block!important;
}

#kanban-board.bug-off.resorting li.card.bug {
    display: block!important;
}

#kanban-board.task-off.resorting li.card.task {
    display: block!important;
}

li.card-placeholder {
    position: relative;
    display: none;
    background-color: rgba(255, 235, 59, 0.22);
    border: 1px dotted rgb(221, 221, 221);
    margin: 6px 0px 6px -5px;
    height: 70px;
    padding-top: 1.24em;
}

#kanban-board.resorting li.card-placeholder {
    display: block;
}

@media (min-width: 1200px) {
    div.container {
        width: 1326px!important;
    }
}

#tests.configuring li.test-case span.case-title:before {
    content: "☐";
    padding-right: 6px;
}

li.test-case.failed span.case-title:before {
    content: "✘";
    padding-right: 6px;
    color: red;
}

li.test-case.passed span.case-title:before {
    content: "✔";
    padding-right: 6px;
    color: green;
}

ul.options {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.options li.option {
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
    opacity: 0.5;
}
ul.options li.option.selected,
ul.options li.option:hover {
    opacity: 1;
}
ul.options li.option:last-child {
    border-bottom: 0 none;
}
ul.options li.option::before {
    content: "✓";
    font-weight: bold;
    color: transparent;
    padding-right: 4px;
}
ul.options li.option.selected::before {
    color: initial;
}