// Justified button groups
// ----------------------
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  >.btn,
  >.btn-group {
    float: none;
    display: table-cell;
    width: 1%;
  }
  >.btn-group .btn {
    width: 100%;
  }
  >.btn-group .dropdown-menu {
    left: auto;
  }
}
