/**
 * @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
 * Helper for text elements.
 *
 * @package Utilities.
 */
/* Use. */
/* Text align. */
.u-text-align--left {
  text-align: left !important;
}

.u-text-align--right {
  text-align: right !important;
}

.u-text-align--center {
  text-align: center !important;
}

/* Text colors. */
.u-text-color--default {
  color: black !important;
}

.u-text-color--primary {
  color: #0062FF !important;
}

.u-text-color--secondary {
  color: #FFC542 !important;
}

.u-text-color--white {
  color: white !important;
}

.u-text-color--gray {
  color: #6c6b7e !important;
}

.u-text-color--dark-gray {
  color: #41404c !important;
}

/* Text weight. */
.u-text-weight--normal {
  font-weight: 600 !important;
}

.u-text-weight--bold {
  font-weight: 700 !important;
}

/* Text style. */
.u-text-style--italic {
  font-style: italic !important;
}

/* Text size. */
.u-text-size--small {
  font-size: 1.4rem !important;
}

.u-text-size--large {
  font-size: 1.8rem !important;
}

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