/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Map functions.
 *
 * @package Functions.
 */
/* Use. */
/* Next. */
/* Prev. */
/**
 * @file
 * Mixins for breakpoints.
 *
 * @package Tools.
 */
/* Use. */
/* Breakpoint up. */
/* Breakpoint down. */
/* Breakpoint only. */
/**
 * @file
 * Helper for align.
 *
 * @package Utilities.
 */
/* Use. */
/* Align left. */
.h-align--left {
  float: none;
  margin-bottom: 1.3rem;
  margin-top: 1.3rem;
  max-width: 100%;
}
@media (min-width: 560px) {
  .h-align--left {
    float: left;
    margin-right: 1.3rem;
    max-width: 50%;
  }
}

/* Align right. */
.h-align--right {
  float: none;
  max-width: 100%;
}
@media (min-width: 560px) {
  .h-align--right {
    float: right;
    margin-left: 1.3rem;
    max-width: 50%;
  }
}

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