/**
 * @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
 * Table styles.
 *
 * @package Atoms.
 */
/* Use. */
/* Table. */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1.3rem 0 0;
  width: 100%;
}
h1 + table {
  margin-top: 1.95rem;
}

/* Table cell. */
th,
td {
  empty-cells: show;
  font-weight: 600;
  padding: 0.975rem;
  text-align: left;
  vertical-align: top;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}

/* Table header cell. */
th {
  font-weight: 700;
}

/* Caption. */
caption {
  font-weight: 700;
  margin-bottom: 0.975rem;
  text-align: left;
}

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