.msk-button-group {
  display: flex;
}
.msk-button-group > .bx--btn {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.msk-button-group > .bx--btn:first-child {
  margin-left: 0;
}
.msk-button-group > .bx--btn:last-child {
  margin-right: 0;
}
@media (min-width: max-width) {
  .msk-button-group.msk-button-group-responsive > .bx--btn {
    flex: 1 1;
    justify-content: center;
    max-width: unset;
  }
}
.msk-button-group-grid > .msk-button-group {
  margin-top: 0.5rem;
}
.msk-button-group-grid > .msk-button-group:first-child {
  margin-top: 0;
}
.msk-button-group-center {
  justify-content: center;
}
.msk-button-group-right {
  justify-content: right;
}
.msk-button-group-opposite {
  justify-content: space-between;
}
.msk-button-group-full > .bx--btn {
  flex: 1 1;
  justify-content: center;
  max-width: unset;
}