.center,
.center-column,
.top,
.right,
.bottom,
.left {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.center-column {
  flex-direction: column;
}

.top {
  align-items: flex-start;
}

.right {
  justify-content: flex-end;
}

.bottom {
  align-items: flex-end;
}

.bottom-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(290px, 430px);
  margin: auto;
}

.left {
  justify-content: flex-start;
}

.single-spaced,
.single-spaced * {
  line-height: 1;
}

@media (max-width: 1024px) {
  .desktop {
    display: none;
  }
}

@media (min-width: 1024px) {
  .is-hidden-desktop {
    display: none;
  }
}
