.grid {
  display: grid;
}
.inline-flex {
  display: inline-flex;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-col {
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-flex-end,
.align-end {
  align-items: flex-end;
}
.align-stretch {
  align-items: stretch;
}
.justify-center {
  justify-content: center;
}
.justify-flex-start,
.justify-start {
  justify-content: flex-start;
}
.justify-flex-end,
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.width-100 {
  width: 100%;
}
.height-100 {
  height: 100%;
}
.sticky {
  position: sticky;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.naked {
  border: none;
  background: none;
}
.relative {
  position: relative;
}
.cover {
  top: 0 !important;
  left: 0;
  bottom: 0;
  right: 0;
}
.container {
  margin: 0 auto;
}
.mkui-container {
  max-width: var(--max-width-section);
  margin: 0 auto;
}
