.btn-group.bootstrap-select select {
  width: 1px !important;
}

th.rotate {
  /* Something you can count on */
  height: 140px;
  white-space: nowrap;
}

th.rotate > div {
  transform:
    /* Magic Numbers */
          translate(25px, 51px)
            /* 45 is really 360 - 45 */
          rotate(315deg);
  width: 30px;
}
th.rotate > div > span {
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
}

.modal-xl {
  max-width: 90% !important;
}

.modal-lg {
  max-width: 70% !important;
}

.progress-bar.indeterminate {
  position: relative;
  animation: progress-indeterminate 3s linear infinite;
}

@keyframes progress-indeterminate {
  from { left: -25%; width: 25%; }
  to { left: 100%; width: 25%;}
}