/* Containers */
.container {
  max-width: calc(var(--content-max-width) + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    max-width: calc(var(--content-max-width) + 3rem);
    padding: 0 1.5rem;
  }
}

.is-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 0;
}

.is-flex-wrap-wrap {
  flex-wrap: wrap;
}

.is-flex-wrap-nowrap {
  flex-wrap: nowrap;
}

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

.is-flex-direction-row {
  flex-direction: row;
}

.is-flex-direction-row-reverse {
  flex-direction: row-reverse;
}

.is-flex-desktop-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 680px) {
  .is-flex-desktop-reverse {
    flex-direction: row;
  }
}

.is-flex-direction-column-reverse {
  flex-direction: column-reverse;
}

.is-align-items-center {
  align-items: center;
}

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

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

.is-justify-content-space-around {
  justify-content: space-around;
}

.is-justify-content-space-evenly {
  justify-content: space-evenly;
}

.is-justify-content-space-between {
  justify-content: space-between;
}

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

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

.is-justify-content-center {
  justify-content: center;
}

.is-gap-1 {
  gap: 0.5rem;
}

.is-gap-2 {
  gap: 1.5rem;
}

.is-gap-3 {
  gap: 2rem;
}

.is-flex-grow-0 {
  flex-grow: 0;
}

.is-flex-grow-1 {
  flex-grow: 1;
}

.is-flex-shrink-0 {
  flex-shrink: 0;
}

.is-flex-shrink-1 {
  flex-shrink: 1;
}

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

.is-text-smaller {
  font-size: 80%;
}

.is-text-center {
  text-align: center;
}

.is-text-left {
  text-align: left;
}

.is-text-right {
  text-align: right;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mt-05 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}
