/* Control Bar Buttons */
/* =================== */

/* Control bar button container - container for control bar buttons and controls */
.control-bar-button-container {
  display: flex;
  flex-direction: row;

  column-gap: 0.5rem;

  @media (width <=576px) {
    flex-direction: column;

    row-gap: 0.5rem;

    align-self: stretch;
    justify-content: stretch;
  }
}

