body {
    padding-top: 60px;
}

@media (max-width: 979px) {
    body {
        padding-top: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
}

.table-counter tbody {
    counter-reset: row;
}
.table-counter td:first-of-type:before {
    counter-increment: row;
    content: counter(row);
}
.table-counter thead th:first-of-type,
.table-counter tbody td:first-of-type {
    width: 24px;
    text-align: right;
}
tr.transition td {
    -webkit-transition: background-color .5s;
    -moz-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
}