/**
 * @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
 * Mixin to build a icon.
 *
 * @package Tools.
 */
/* Use. */
/* Base. */
/**
 * @file
 * Icon styles.
 *
 * @package Molecules.
 */
/* Import */
/* Icon. */
.m-icon {
  display: inline-block;
  height: 2rem;
  vertical-align: middle;
  width: 2rem;
  /* Directions. */
  /* Sizes. */
}
.m-icon svg {
  display: block;
  fill: currentColor;
  height: inherit;
  width: inherit;
}
.m-icon--direction-top {
  transform: rotate(270deg);
}
.m-icon--direction-right {
  transform: rotate(0deg);
}
.m-icon--direction-left {
  transform: rotate(180deg);
}
.m-icon--direction-bottom {
  transform: rotate(90deg);
}
.m-icon--size-small {
  height: 1.6rem;
  width: 1.6rem;
}
.m-icon--size-medium {
  height: 3.2rem;
  width: 3.2rem;
}
.m-icon--size-large {
  height: 4.8rem;
  width: 4.8rem;
}
.m-icon--size-full {
  height: 100%;
  width: 100%;
}

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