.hide {
  display: none !important;
}

.block {
  display: block !important;
}

.flex {
  display: flex !important;
  flex-direction: row;
}

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

.flex-reverse {
  display: flex !important;
  flex-direction: row-reverse;
}

.flex-column {
  display: flex !important;
  flex-direction: column;
}

.flex-column-reverse {
  display: flex !important;
  flex-direction: column-reverse;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

@media screen and (min-width: 480px) {
  .hide-sm {
    display: none !important;
  }
  .block-sm {
    display: block !important;
  }
  .inline-sm {
    display: inline !important;
  }
  .flex-sm {
    display: flex !important;
    flex-direction: row;
  }
  .flex-reverse-sm {
    display: flex !important;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .hide-md {
    display: none !important;
  }
  .block-md {
    display: block !important;
  }
  .flex-md {
    display: flex !important;
    flex-direction: row;
  }
  .flex-reverse-md {
    display: flex !important;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .hide-lg {
    display: none !important;
  }
  .block-lg {
    display: block !important;
  }
  .flex-lg {
    display: flex !important;
    flex-direction: row;
  }
  .flex-reverse-lg {
    display: flex !important;
    flex-direction: row-reverse;
  }
}
.flex-grow {
  flex-grow: 1;
}

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

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

.align-items-baseline {
  align-items: baseline;
}

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

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

.gap-xs {
  gap: var(--margin-xs) !important;
}

.gap-sm {
  gap: var(--margin-sm) !important;
}

.gap-md {
  gap: var(--margin-md) !important;
}

.gap-lg {
  gap: var(--margin-lg) !important;
}

.gap-xl {
  gap: var(--margin-xl) !important;
}

/*# sourceMappingURL=layout.css.map */
