// Grid
@use './mixins' as *;
@use './variables' as var;

.mobile-only {
  @media only screen and (min-width: var.$breakpoint-md) {
    display: none !important;
  }
}

//FLEX
.flex-direction-column {
  flex-direction: column;
}

// Content Alignment
.align-items-center {
  align-items: center;
}
.align-items-flex-start {
  align-items: flex-start;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.align-self-center {
  align-self: center;
}

.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}

.max-content-width {
  width: max-content;
}
.max-content-height {
  height: max-content;
}

.white-space-nowrap {
  white-space: nowrap;
}
