/*

*/


body {
  display: flex;
  flex-flow: column;
}

.body {
  overflow: auto;
  flex-grow: 1;
}

.carousel-inner.vertical > .carousel-item.carousel-item-next:not(.carousel-item-start),
.carousel-inner.vertical > .carousel-item.active.carousel-item-end {
  transform: translateY(100%);
}
.carousel-inner.vertical > .carousel-item.carousel-item-prev:not(.carousel-item-end),
.carousel-inner.vertical > .carousel-item.active.carousel-item-start {
  transform: translateY(-100%);
}

table.sortable thead th i.sort.fa {
  visibility: hidden;
  display: none;
}

table.sortable thead th.asc.sorted:not(.desc) i.sort.fa.fa-sort-up,
table.sortable thead th.desc.sorted:not(.asc) i.sort.fa.fa-sort-down {
  visibility: visible;
  display: inline-block;
}

/*
th.asc.sorted::after {
content: " ";
}
th.desc.sorted::after {
content: " ";
}
*/