/**
 * provide an entry for JS
 */
:root {
  /**
   * text
   */
  --text-color: #444;
  --text-font: 14px/1.6 Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
  --mono-font: Lucida Console, Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;

  /*
   * basic color
   */
  --red: hsl(5, 72%, 63%);
  --orange: hsl(25, 75%, 58%);
  --yellow: hsl(45, 88%, 57%);
  --green: hsl(120, 45%, 54%);
  --cyan: hsl(185, 50%, 60%);
  --blue: hsl(210, 70%, 67%);
  --indigo: hsl(235, 45%, 65%);
  --purple: hsl(259, 45%, 60%);
  --pink: hsl(309, 31%, 64%);
  --gray: hsl(208, 6%, 53%);
  --white: #fff;
  --dark: #444;
  --black: #000;

  /**
   * functional color names
   */
  --primary-color: var(--blue);
  --success-color: var(--green);
  --warning-color: var(--yellow);
  --danger-color: var(--red);

  /**
   * grid layout
   */
  --grid-gap: 0;
  --container-padding: 24px;
  --container-margin: 24px;
  --container-size-sm: 600px;
  --container-size-md: 800px;
  --container-size-lg: 960px;

  /**
   * spacing
   */
  --spacing-none: 0;
  --spacing-unit: 16px;
  --spacing-xs: calc(var(--spacing-unit) / 4);
  --spacing-sm: calc(var(--spacing-unit) / 2);
  --spacing-md: var(--spacing-unit);
  --spacing-lg: calc(var(--spacing-unit) * 2);
  --spacing-xl: calc(var(--spacing-unit) * 4);

  /**
   * custom media for responsiveness
   */
  @custom-media --xs-up (width > 0);
  @custom-media --sm-up (width > 600px);
  @custom-media --md-up (width > 960px);
  @custom-media --lg-up (width > 1200px);
  @custom-media --xl-up (width > 1920px);
  @custom-media --xs-only (width <= 600px);
  @custom-media --sm-only (width > 600px) and (width <= 960px);
  @custom-media --md-only (width > 960px) and (width <= 1200px);
  @custom-media --lg-only (width > 1200px) and (width <= 1920px);
  @custom-media --xl-only (width > 1920px);

  /**
   * form element
   */
  --focus-ring-opacity: 0.3;
  --form-font-xs: 12px;
  --form-font-sm: 12px;
  --form-font-md: 14px;
  --form-font-lg: 16px;
  --form-font-xl: 20px;
  --form-height-xs: 22px;
  --form-height-sm: 26px;
  --form-height-md: 32px;
  --form-height-lg: 40px;
  --form-height-xl: 48px;
  --form-width-shortest: 4em;
  --form-width-shorter: 6em;
  --form-width-short: 8em;
  --form-width-normal: 12em;
  --form-width-long: 16em;
  --form-width-longer: 24em;
  --form-width-longest: 32em;

  /**
   * button
   */
  --button-default-color: var(--gray);
  --button-lightness-normal: 60%;
  --button-lightness-hover: 50%;
  --button-lightness-active: 40%;
  --button-lightness-disabled: 80%;
  --button-flat-hover-lightness: 95%;

  /**
   * table
   */
  --table-border-color: #ddd;
  --table-cell-padding: 0.5em 1em;

  /**
   * tooltip
   * background & text color
   */
  --tooltip-bg-dark: rgba(0, 0, 0, 0.72);
  --tooltip-color-dark: #fff;
  --tooltip-bg-light: #fff;
  --tooltip-color-light: var(--text-color);

  /**
  * menu
  */
  --submenu-max-height: 20em;
}
/**
 * an custom.css placeholder, leave this file empty
 */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details, /* 1 */
menu {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
/**
 * clair base
 */
* {
  box-sizing: inherit;
}
ul {
  padding-left: 2em;
}
html {
  box-sizing: border-box;
  background: #fff;
  color: var(--text-color);
  font: var(--text-font);
  -webkit-font-smoothing: antialiased;
}
pre,
code {
  font-family: var(--mono-font);
}
*:not(pre) > code {
  margin: 0 1px;
  background: color(var(--text-color) l(95%));
  padding: 1px 0.25em;
  border-radius: 3px;
  font-size: 0.9em;
  border: 1px solid color(var(--text-color) l(90%));
}
pre {
  overflow: auto;
  background: color(var(--text-color) l(95%));
  padding: 1em;
  border-radius: 3px;
  font-size: 0.9em;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  margin-bottom: 1em;

  & th {
    text-align: left;
    border: none;
    padding: var(--table-cell-padding);
  }

  & td {
    border: none;
    border-top: 1px solid var(--table-border-color);
    padding: var(--table-cell-padding);
  }
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}
/* stylelint-disable function-whitespace-after, at-rule-no-unknown */
.is-bg-red-1 {
      color: var(--text-color) !important;
    }
.is-bg-red-2 {
      color: var(--text-color) !important;
    }
.is-bg-red-3 {
      color: var(--text-color) !important;
    }
.is-bg-red-4 {
      color: var(--text-color) !important;
    }
.is-bg-red-5 {
      color: var(--text-color) !important;
    }
.is-bg-red-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-red-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-red-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-red-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-red-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-red-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-red-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-orange-1 {
      color: var(--text-color) !important;
    }
.is-bg-orange-2 {
      color: var(--text-color) !important;
    }
.is-bg-orange-3 {
      color: var(--text-color) !important;
    }
.is-bg-orange-4 {
      color: var(--text-color) !important;
    }
.is-bg-orange-5 {
      color: var(--text-color) !important;
    }
.is-bg-orange-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-orange-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-orange-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-orange-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-orange-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-orange-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-orange-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-yellow-1 {
      color: var(--text-color) !important;
    }
.is-bg-yellow-2 {
      color: var(--text-color) !important;
    }
.is-bg-yellow-3 {
      color: var(--text-color) !important;
    }
.is-bg-yellow-4 {
      color: var(--text-color) !important;
    }
.is-bg-yellow-5 {
      color: var(--text-color) !important;
    }
.is-bg-yellow-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-yellow-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-yellow-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-yellow-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-yellow-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-yellow-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-yellow-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-green-1 {
      color: var(--text-color) !important;
    }
.is-bg-green-2 {
      color: var(--text-color) !important;
    }
.is-bg-green-3 {
      color: var(--text-color) !important;
    }
.is-bg-green-4 {
      color: var(--text-color) !important;
    }
.is-bg-green-5 {
      color: var(--text-color) !important;
    }
.is-bg-green-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-green-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-green-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-green-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-green-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-green-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-green-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-cyan-1 {
      color: var(--text-color) !important;
    }
.is-bg-cyan-2 {
      color: var(--text-color) !important;
    }
.is-bg-cyan-3 {
      color: var(--text-color) !important;
    }
.is-bg-cyan-4 {
      color: var(--text-color) !important;
    }
.is-bg-cyan-5 {
      color: var(--text-color) !important;
    }
.is-bg-cyan-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-cyan-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-cyan-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-cyan-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-cyan-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-cyan-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-cyan-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-blue-1 {
      color: var(--text-color) !important;
    }
.is-bg-blue-2 {
      color: var(--text-color) !important;
    }
.is-bg-blue-3 {
      color: var(--text-color) !important;
    }
.is-bg-blue-4 {
      color: var(--text-color) !important;
    }
.is-bg-blue-5 {
      color: var(--text-color) !important;
    }
.is-bg-blue-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-blue-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-blue-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-blue-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-blue-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-blue-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-blue-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-indigo-1 {
      color: var(--text-color) !important;
    }
.is-bg-indigo-2 {
      color: var(--text-color) !important;
    }
.is-bg-indigo-3 {
      color: var(--text-color) !important;
    }
.is-bg-indigo-4 {
      color: var(--text-color) !important;
    }
.is-bg-indigo-5 {
      color: var(--text-color) !important;
    }
.is-bg-indigo-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-indigo-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-indigo-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-indigo-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-indigo-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-indigo-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-indigo-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-purple-1 {
      color: var(--text-color) !important;
    }
.is-bg-purple-2 {
      color: var(--text-color) !important;
    }
.is-bg-purple-3 {
      color: var(--text-color) !important;
    }
.is-bg-purple-4 {
      color: var(--text-color) !important;
    }
.is-bg-purple-5 {
      color: var(--text-color) !important;
    }
.is-bg-purple-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-purple-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-purple-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-purple-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-purple-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-purple-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-purple-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-pink-1 {
      color: var(--text-color) !important;
    }
.is-bg-pink-2 {
      color: var(--text-color) !important;
    }
.is-bg-pink-3 {
      color: var(--text-color) !important;
    }
.is-bg-pink-4 {
      color: var(--text-color) !important;
    }
.is-bg-pink-5 {
      color: var(--text-color) !important;
    }
.is-bg-pink-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-pink-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-pink-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-pink-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-pink-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-pink-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-pink-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-gray-1 {
      color: var(--text-color) !important;
    }
.is-bg-gray-2 {
      color: var(--text-color) !important;
    }
.is-bg-gray-3 {
      color: var(--text-color) !important;
    }
.is-bg-gray-4 {
      color: var(--text-color) !important;
    }
.is-bg-gray-5 {
      color: var(--text-color) !important;
    }
.is-bg-gray-6 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-gray-7 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-gray-8 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-gray-9 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-gray-10 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-gray-11 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-bg-gray-12 {
      color: rgba(255, 255, 255, 0.9) !important;
    }
.is-text-red-0 {
      color: color(var(--red) l(100%)) !important;
    }
.is-bg-red-0 {
      background-color: color(var(--red) l(100%)) !important;
    }
.is-text-red-1 {
      color: color(var(--red) l(97%)) !important;
    }
.is-bg-red-1 {
      background-color: color(var(--red) l(97%)) !important;
    }
.is-text-red-2 {
      color: color(var(--red) l(92%)) !important;
    }
.is-bg-red-2 {
      background-color: color(var(--red) l(92%)) !important;
    }
.is-text-red-3 {
      color: color(var(--red) l(85%)) !important;
    }
.is-bg-red-3 {
      background-color: color(var(--red) l(85%)) !important;
    }
.is-text-red-4 {
      color: color(var(--red) l(77%)) !important;
    }
.is-bg-red-4 {
      background-color: color(var(--red) l(77%)) !important;
    }
.is-text-red-5 {
      color: color(var(--red) l(68%)) !important;
    }
.is-bg-red-5 {
      background-color: color(var(--red) l(68%)) !important;
    }
.is-text-red-6 {
      color: color(var(--red) l(57%)) !important;
    }
.is-bg-red-6 {
      background-color: color(var(--red) l(57%)) !important;
    }
.is-text-red-7 {
      color: color(var(--red) l(52%)) !important;
    }
.is-bg-red-7 {
      background-color: color(var(--red) l(52%)) !important;
    }
.is-text-red-8 {
      color: color(var(--red) l(45%)) !important;
    }
.is-bg-red-8 {
      background-color: color(var(--red) l(45%)) !important;
    }
.is-text-red-9 {
      color: color(var(--red) l(37%)) !important;
    }
.is-bg-red-9 {
      background-color: color(var(--red) l(37%)) !important;
    }
.is-text-red-10 {
      color: color(var(--red) l(29%)) !important;
    }
.is-bg-red-10 {
      background-color: color(var(--red) l(29%)) !important;
    }
.is-text-red-11 {
      color: color(var(--red) l(20%)) !important;
    }
.is-bg-red-11 {
      background-color: color(var(--red) l(20%)) !important;
    }
.is-text-red-12 {
      color: color(var(--red) l(10%)) !important;
    }
.is-bg-red-12 {
      background-color: color(var(--red) l(10%)) !important;
    }
.is-text-orange-0 {
      color: color(var(--orange) l(100%)) !important;
    }
.is-bg-orange-0 {
      background-color: color(var(--orange) l(100%)) !important;
    }
.is-text-orange-1 {
      color: color(var(--orange) l(97%)) !important;
    }
.is-bg-orange-1 {
      background-color: color(var(--orange) l(97%)) !important;
    }
.is-text-orange-2 {
      color: color(var(--orange) l(92%)) !important;
    }
.is-bg-orange-2 {
      background-color: color(var(--orange) l(92%)) !important;
    }
.is-text-orange-3 {
      color: color(var(--orange) l(85%)) !important;
    }
.is-bg-orange-3 {
      background-color: color(var(--orange) l(85%)) !important;
    }
.is-text-orange-4 {
      color: color(var(--orange) l(77%)) !important;
    }
.is-bg-orange-4 {
      background-color: color(var(--orange) l(77%)) !important;
    }
.is-text-orange-5 {
      color: color(var(--orange) l(68%)) !important;
    }
.is-bg-orange-5 {
      background-color: color(var(--orange) l(68%)) !important;
    }
.is-text-orange-6 {
      color: color(var(--orange) l(57%)) !important;
    }
.is-bg-orange-6 {
      background-color: color(var(--orange) l(57%)) !important;
    }
.is-text-orange-7 {
      color: color(var(--orange) l(52%)) !important;
    }
.is-bg-orange-7 {
      background-color: color(var(--orange) l(52%)) !important;
    }
.is-text-orange-8 {
      color: color(var(--orange) l(45%)) !important;
    }
.is-bg-orange-8 {
      background-color: color(var(--orange) l(45%)) !important;
    }
.is-text-orange-9 {
      color: color(var(--orange) l(37%)) !important;
    }
.is-bg-orange-9 {
      background-color: color(var(--orange) l(37%)) !important;
    }
.is-text-orange-10 {
      color: color(var(--orange) l(29%)) !important;
    }
.is-bg-orange-10 {
      background-color: color(var(--orange) l(29%)) !important;
    }
.is-text-orange-11 {
      color: color(var(--orange) l(20%)) !important;
    }
.is-bg-orange-11 {
      background-color: color(var(--orange) l(20%)) !important;
    }
.is-text-orange-12 {
      color: color(var(--orange) l(10%)) !important;
    }
.is-bg-orange-12 {
      background-color: color(var(--orange) l(10%)) !important;
    }
.is-text-yellow-0 {
      color: color(var(--yellow) l(100%)) !important;
    }
.is-bg-yellow-0 {
      background-color: color(var(--yellow) l(100%)) !important;
    }
.is-text-yellow-1 {
      color: color(var(--yellow) l(97%)) !important;
    }
.is-bg-yellow-1 {
      background-color: color(var(--yellow) l(97%)) !important;
    }
.is-text-yellow-2 {
      color: color(var(--yellow) l(92%)) !important;
    }
.is-bg-yellow-2 {
      background-color: color(var(--yellow) l(92%)) !important;
    }
.is-text-yellow-3 {
      color: color(var(--yellow) l(85%)) !important;
    }
.is-bg-yellow-3 {
      background-color: color(var(--yellow) l(85%)) !important;
    }
.is-text-yellow-4 {
      color: color(var(--yellow) l(77%)) !important;
    }
.is-bg-yellow-4 {
      background-color: color(var(--yellow) l(77%)) !important;
    }
.is-text-yellow-5 {
      color: color(var(--yellow) l(68%)) !important;
    }
.is-bg-yellow-5 {
      background-color: color(var(--yellow) l(68%)) !important;
    }
.is-text-yellow-6 {
      color: color(var(--yellow) l(57%)) !important;
    }
.is-bg-yellow-6 {
      background-color: color(var(--yellow) l(57%)) !important;
    }
.is-text-yellow-7 {
      color: color(var(--yellow) l(52%)) !important;
    }
.is-bg-yellow-7 {
      background-color: color(var(--yellow) l(52%)) !important;
    }
.is-text-yellow-8 {
      color: color(var(--yellow) l(45%)) !important;
    }
.is-bg-yellow-8 {
      background-color: color(var(--yellow) l(45%)) !important;
    }
.is-text-yellow-9 {
      color: color(var(--yellow) l(37%)) !important;
    }
.is-bg-yellow-9 {
      background-color: color(var(--yellow) l(37%)) !important;
    }
.is-text-yellow-10 {
      color: color(var(--yellow) l(29%)) !important;
    }
.is-bg-yellow-10 {
      background-color: color(var(--yellow) l(29%)) !important;
    }
.is-text-yellow-11 {
      color: color(var(--yellow) l(20%)) !important;
    }
.is-bg-yellow-11 {
      background-color: color(var(--yellow) l(20%)) !important;
    }
.is-text-yellow-12 {
      color: color(var(--yellow) l(10%)) !important;
    }
.is-bg-yellow-12 {
      background-color: color(var(--yellow) l(10%)) !important;
    }
.is-text-green-0 {
      color: color(var(--green) l(100%)) !important;
    }
.is-bg-green-0 {
      background-color: color(var(--green) l(100%)) !important;
    }
.is-text-green-1 {
      color: color(var(--green) l(97%)) !important;
    }
.is-bg-green-1 {
      background-color: color(var(--green) l(97%)) !important;
    }
.is-text-green-2 {
      color: color(var(--green) l(92%)) !important;
    }
.is-bg-green-2 {
      background-color: color(var(--green) l(92%)) !important;
    }
.is-text-green-3 {
      color: color(var(--green) l(85%)) !important;
    }
.is-bg-green-3 {
      background-color: color(var(--green) l(85%)) !important;
    }
.is-text-green-4 {
      color: color(var(--green) l(77%)) !important;
    }
.is-bg-green-4 {
      background-color: color(var(--green) l(77%)) !important;
    }
.is-text-green-5 {
      color: color(var(--green) l(68%)) !important;
    }
.is-bg-green-5 {
      background-color: color(var(--green) l(68%)) !important;
    }
.is-text-green-6 {
      color: color(var(--green) l(57%)) !important;
    }
.is-bg-green-6 {
      background-color: color(var(--green) l(57%)) !important;
    }
.is-text-green-7 {
      color: color(var(--green) l(52%)) !important;
    }
.is-bg-green-7 {
      background-color: color(var(--green) l(52%)) !important;
    }
.is-text-green-8 {
      color: color(var(--green) l(45%)) !important;
    }
.is-bg-green-8 {
      background-color: color(var(--green) l(45%)) !important;
    }
.is-text-green-9 {
      color: color(var(--green) l(37%)) !important;
    }
.is-bg-green-9 {
      background-color: color(var(--green) l(37%)) !important;
    }
.is-text-green-10 {
      color: color(var(--green) l(29%)) !important;
    }
.is-bg-green-10 {
      background-color: color(var(--green) l(29%)) !important;
    }
.is-text-green-11 {
      color: color(var(--green) l(20%)) !important;
    }
.is-bg-green-11 {
      background-color: color(var(--green) l(20%)) !important;
    }
.is-text-green-12 {
      color: color(var(--green) l(10%)) !important;
    }
.is-bg-green-12 {
      background-color: color(var(--green) l(10%)) !important;
    }
.is-text-cyan-0 {
      color: color(var(--cyan) l(100%)) !important;
    }
.is-bg-cyan-0 {
      background-color: color(var(--cyan) l(100%)) !important;
    }
.is-text-cyan-1 {
      color: color(var(--cyan) l(97%)) !important;
    }
.is-bg-cyan-1 {
      background-color: color(var(--cyan) l(97%)) !important;
    }
.is-text-cyan-2 {
      color: color(var(--cyan) l(92%)) !important;
    }
.is-bg-cyan-2 {
      background-color: color(var(--cyan) l(92%)) !important;
    }
.is-text-cyan-3 {
      color: color(var(--cyan) l(85%)) !important;
    }
.is-bg-cyan-3 {
      background-color: color(var(--cyan) l(85%)) !important;
    }
.is-text-cyan-4 {
      color: color(var(--cyan) l(77%)) !important;
    }
.is-bg-cyan-4 {
      background-color: color(var(--cyan) l(77%)) !important;
    }
.is-text-cyan-5 {
      color: color(var(--cyan) l(68%)) !important;
    }
.is-bg-cyan-5 {
      background-color: color(var(--cyan) l(68%)) !important;
    }
.is-text-cyan-6 {
      color: color(var(--cyan) l(57%)) !important;
    }
.is-bg-cyan-6 {
      background-color: color(var(--cyan) l(57%)) !important;
    }
.is-text-cyan-7 {
      color: color(var(--cyan) l(52%)) !important;
    }
.is-bg-cyan-7 {
      background-color: color(var(--cyan) l(52%)) !important;
    }
.is-text-cyan-8 {
      color: color(var(--cyan) l(45%)) !important;
    }
.is-bg-cyan-8 {
      background-color: color(var(--cyan) l(45%)) !important;
    }
.is-text-cyan-9 {
      color: color(var(--cyan) l(37%)) !important;
    }
.is-bg-cyan-9 {
      background-color: color(var(--cyan) l(37%)) !important;
    }
.is-text-cyan-10 {
      color: color(var(--cyan) l(29%)) !important;
    }
.is-bg-cyan-10 {
      background-color: color(var(--cyan) l(29%)) !important;
    }
.is-text-cyan-11 {
      color: color(var(--cyan) l(20%)) !important;
    }
.is-bg-cyan-11 {
      background-color: color(var(--cyan) l(20%)) !important;
    }
.is-text-cyan-12 {
      color: color(var(--cyan) l(10%)) !important;
    }
.is-bg-cyan-12 {
      background-color: color(var(--cyan) l(10%)) !important;
    }
.is-text-blue-0 {
      color: color(var(--blue) l(100%)) !important;
    }
.is-bg-blue-0 {
      background-color: color(var(--blue) l(100%)) !important;
    }
.is-text-blue-1 {
      color: color(var(--blue) l(97%)) !important;
    }
.is-bg-blue-1 {
      background-color: color(var(--blue) l(97%)) !important;
    }
.is-text-blue-2 {
      color: color(var(--blue) l(92%)) !important;
    }
.is-bg-blue-2 {
      background-color: color(var(--blue) l(92%)) !important;
    }
.is-text-blue-3 {
      color: color(var(--blue) l(85%)) !important;
    }
.is-bg-blue-3 {
      background-color: color(var(--blue) l(85%)) !important;
    }
.is-text-blue-4 {
      color: color(var(--blue) l(77%)) !important;
    }
.is-bg-blue-4 {
      background-color: color(var(--blue) l(77%)) !important;
    }
.is-text-blue-5 {
      color: color(var(--blue) l(68%)) !important;
    }
.is-bg-blue-5 {
      background-color: color(var(--blue) l(68%)) !important;
    }
.is-text-blue-6 {
      color: color(var(--blue) l(57%)) !important;
    }
.is-bg-blue-6 {
      background-color: color(var(--blue) l(57%)) !important;
    }
.is-text-blue-7 {
      color: color(var(--blue) l(52%)) !important;
    }
.is-bg-blue-7 {
      background-color: color(var(--blue) l(52%)) !important;
    }
.is-text-blue-8 {
      color: color(var(--blue) l(45%)) !important;
    }
.is-bg-blue-8 {
      background-color: color(var(--blue) l(45%)) !important;
    }
.is-text-blue-9 {
      color: color(var(--blue) l(37%)) !important;
    }
.is-bg-blue-9 {
      background-color: color(var(--blue) l(37%)) !important;
    }
.is-text-blue-10 {
      color: color(var(--blue) l(29%)) !important;
    }
.is-bg-blue-10 {
      background-color: color(var(--blue) l(29%)) !important;
    }
.is-text-blue-11 {
      color: color(var(--blue) l(20%)) !important;
    }
.is-bg-blue-11 {
      background-color: color(var(--blue) l(20%)) !important;
    }
.is-text-blue-12 {
      color: color(var(--blue) l(10%)) !important;
    }
.is-bg-blue-12 {
      background-color: color(var(--blue) l(10%)) !important;
    }
.is-text-indigo-0 {
      color: color(var(--indigo) l(100%)) !important;
    }
.is-bg-indigo-0 {
      background-color: color(var(--indigo) l(100%)) !important;
    }
.is-text-indigo-1 {
      color: color(var(--indigo) l(97%)) !important;
    }
.is-bg-indigo-1 {
      background-color: color(var(--indigo) l(97%)) !important;
    }
.is-text-indigo-2 {
      color: color(var(--indigo) l(92%)) !important;
    }
.is-bg-indigo-2 {
      background-color: color(var(--indigo) l(92%)) !important;
    }
.is-text-indigo-3 {
      color: color(var(--indigo) l(85%)) !important;
    }
.is-bg-indigo-3 {
      background-color: color(var(--indigo) l(85%)) !important;
    }
.is-text-indigo-4 {
      color: color(var(--indigo) l(77%)) !important;
    }
.is-bg-indigo-4 {
      background-color: color(var(--indigo) l(77%)) !important;
    }
.is-text-indigo-5 {
      color: color(var(--indigo) l(68%)) !important;
    }
.is-bg-indigo-5 {
      background-color: color(var(--indigo) l(68%)) !important;
    }
.is-text-indigo-6 {
      color: color(var(--indigo) l(57%)) !important;
    }
.is-bg-indigo-6 {
      background-color: color(var(--indigo) l(57%)) !important;
    }
.is-text-indigo-7 {
      color: color(var(--indigo) l(52%)) !important;
    }
.is-bg-indigo-7 {
      background-color: color(var(--indigo) l(52%)) !important;
    }
.is-text-indigo-8 {
      color: color(var(--indigo) l(45%)) !important;
    }
.is-bg-indigo-8 {
      background-color: color(var(--indigo) l(45%)) !important;
    }
.is-text-indigo-9 {
      color: color(var(--indigo) l(37%)) !important;
    }
.is-bg-indigo-9 {
      background-color: color(var(--indigo) l(37%)) !important;
    }
.is-text-indigo-10 {
      color: color(var(--indigo) l(29%)) !important;
    }
.is-bg-indigo-10 {
      background-color: color(var(--indigo) l(29%)) !important;
    }
.is-text-indigo-11 {
      color: color(var(--indigo) l(20%)) !important;
    }
.is-bg-indigo-11 {
      background-color: color(var(--indigo) l(20%)) !important;
    }
.is-text-indigo-12 {
      color: color(var(--indigo) l(10%)) !important;
    }
.is-bg-indigo-12 {
      background-color: color(var(--indigo) l(10%)) !important;
    }
.is-text-purple-0 {
      color: color(var(--purple) l(100%)) !important;
    }
.is-bg-purple-0 {
      background-color: color(var(--purple) l(100%)) !important;
    }
.is-text-purple-1 {
      color: color(var(--purple) l(97%)) !important;
    }
.is-bg-purple-1 {
      background-color: color(var(--purple) l(97%)) !important;
    }
.is-text-purple-2 {
      color: color(var(--purple) l(92%)) !important;
    }
.is-bg-purple-2 {
      background-color: color(var(--purple) l(92%)) !important;
    }
.is-text-purple-3 {
      color: color(var(--purple) l(85%)) !important;
    }
.is-bg-purple-3 {
      background-color: color(var(--purple) l(85%)) !important;
    }
.is-text-purple-4 {
      color: color(var(--purple) l(77%)) !important;
    }
.is-bg-purple-4 {
      background-color: color(var(--purple) l(77%)) !important;
    }
.is-text-purple-5 {
      color: color(var(--purple) l(68%)) !important;
    }
.is-bg-purple-5 {
      background-color: color(var(--purple) l(68%)) !important;
    }
.is-text-purple-6 {
      color: color(var(--purple) l(57%)) !important;
    }
.is-bg-purple-6 {
      background-color: color(var(--purple) l(57%)) !important;
    }
.is-text-purple-7 {
      color: color(var(--purple) l(52%)) !important;
    }
.is-bg-purple-7 {
      background-color: color(var(--purple) l(52%)) !important;
    }
.is-text-purple-8 {
      color: color(var(--purple) l(45%)) !important;
    }
.is-bg-purple-8 {
      background-color: color(var(--purple) l(45%)) !important;
    }
.is-text-purple-9 {
      color: color(var(--purple) l(37%)) !important;
    }
.is-bg-purple-9 {
      background-color: color(var(--purple) l(37%)) !important;
    }
.is-text-purple-10 {
      color: color(var(--purple) l(29%)) !important;
    }
.is-bg-purple-10 {
      background-color: color(var(--purple) l(29%)) !important;
    }
.is-text-purple-11 {
      color: color(var(--purple) l(20%)) !important;
    }
.is-bg-purple-11 {
      background-color: color(var(--purple) l(20%)) !important;
    }
.is-text-purple-12 {
      color: color(var(--purple) l(10%)) !important;
    }
.is-bg-purple-12 {
      background-color: color(var(--purple) l(10%)) !important;
    }
.is-text-pink-0 {
      color: color(var(--pink) l(100%)) !important;
    }
.is-bg-pink-0 {
      background-color: color(var(--pink) l(100%)) !important;
    }
.is-text-pink-1 {
      color: color(var(--pink) l(97%)) !important;
    }
.is-bg-pink-1 {
      background-color: color(var(--pink) l(97%)) !important;
    }
.is-text-pink-2 {
      color: color(var(--pink) l(92%)) !important;
    }
.is-bg-pink-2 {
      background-color: color(var(--pink) l(92%)) !important;
    }
.is-text-pink-3 {
      color: color(var(--pink) l(85%)) !important;
    }
.is-bg-pink-3 {
      background-color: color(var(--pink) l(85%)) !important;
    }
.is-text-pink-4 {
      color: color(var(--pink) l(77%)) !important;
    }
.is-bg-pink-4 {
      background-color: color(var(--pink) l(77%)) !important;
    }
.is-text-pink-5 {
      color: color(var(--pink) l(68%)) !important;
    }
.is-bg-pink-5 {
      background-color: color(var(--pink) l(68%)) !important;
    }
.is-text-pink-6 {
      color: color(var(--pink) l(57%)) !important;
    }
.is-bg-pink-6 {
      background-color: color(var(--pink) l(57%)) !important;
    }
.is-text-pink-7 {
      color: color(var(--pink) l(52%)) !important;
    }
.is-bg-pink-7 {
      background-color: color(var(--pink) l(52%)) !important;
    }
.is-text-pink-8 {
      color: color(var(--pink) l(45%)) !important;
    }
.is-bg-pink-8 {
      background-color: color(var(--pink) l(45%)) !important;
    }
.is-text-pink-9 {
      color: color(var(--pink) l(37%)) !important;
    }
.is-bg-pink-9 {
      background-color: color(var(--pink) l(37%)) !important;
    }
.is-text-pink-10 {
      color: color(var(--pink) l(29%)) !important;
    }
.is-bg-pink-10 {
      background-color: color(var(--pink) l(29%)) !important;
    }
.is-text-pink-11 {
      color: color(var(--pink) l(20%)) !important;
    }
.is-bg-pink-11 {
      background-color: color(var(--pink) l(20%)) !important;
    }
.is-text-pink-12 {
      color: color(var(--pink) l(10%)) !important;
    }
.is-bg-pink-12 {
      background-color: color(var(--pink) l(10%)) !important;
    }
.is-text-gray-0 {
      color: color(var(--gray) l(100%)) !important;
    }
.is-bg-gray-0 {
      background-color: color(var(--gray) l(100%)) !important;
    }
.is-text-gray-1 {
      color: color(var(--gray) l(97%)) !important;
    }
.is-bg-gray-1 {
      background-color: color(var(--gray) l(97%)) !important;
    }
.is-text-gray-2 {
      color: color(var(--gray) l(92%)) !important;
    }
.is-bg-gray-2 {
      background-color: color(var(--gray) l(92%)) !important;
    }
.is-text-gray-3 {
      color: color(var(--gray) l(85%)) !important;
    }
.is-bg-gray-3 {
      background-color: color(var(--gray) l(85%)) !important;
    }
.is-text-gray-4 {
      color: color(var(--gray) l(77%)) !important;
    }
.is-bg-gray-4 {
      background-color: color(var(--gray) l(77%)) !important;
    }
.is-text-gray-5 {
      color: color(var(--gray) l(68%)) !important;
    }
.is-bg-gray-5 {
      background-color: color(var(--gray) l(68%)) !important;
    }
.is-text-gray-6 {
      color: color(var(--gray) l(57%)) !important;
    }
.is-bg-gray-6 {
      background-color: color(var(--gray) l(57%)) !important;
    }
.is-text-gray-7 {
      color: color(var(--gray) l(52%)) !important;
    }
.is-bg-gray-7 {
      background-color: color(var(--gray) l(52%)) !important;
    }
.is-text-gray-8 {
      color: color(var(--gray) l(45%)) !important;
    }
.is-bg-gray-8 {
      background-color: color(var(--gray) l(45%)) !important;
    }
.is-text-gray-9 {
      color: color(var(--gray) l(37%)) !important;
    }
.is-bg-gray-9 {
      background-color: color(var(--gray) l(37%)) !important;
    }
.is-text-gray-10 {
      color: color(var(--gray) l(29%)) !important;
    }
.is-bg-gray-10 {
      background-color: color(var(--gray) l(29%)) !important;
    }
.is-text-gray-11 {
      color: color(var(--gray) l(20%)) !important;
    }
.is-bg-gray-11 {
      background-color: color(var(--gray) l(20%)) !important;
    }
.is-text-gray-12 {
      color: color(var(--gray) l(10%)) !important;
    }
.is-bg-gray-12 {
      background-color: color(var(--gray) l(10%)) !important;
    }
.is-text-white {
  color: color(#f00 blackness(+20%)) !important;
}
.is-text-black {
  color: var(--black) !important;
}
.is-text-dark {
  color: var(--dark) !important;
}
.is-text-primary {
  color: var(--primary-color) !important;
}
.is-bg-white {
  background-color: #fff !important;
}
.is-bg-black {
  background-color: var(--black) !important;
}
.c-box {
  display: flex;
  flex-flow: row wrap;
  margin-left: calc(var(--grid-gap) / -2);
  margin-right: calc(var(--grid-gap) / -2);
}
.is-flex,
.c-spacer {
  flex: 1 1 0;
}
.is-fill-height {
  height: 100%;
}
.c-box__item {
  padding: calc(var(--grid-gap) * 0.5);
  flex: 1 1 auto;

  &.is-narrow {
    flex-grow: 0;
  }
}
.is-justify-start {
  justify-content: flex-start;
}
.is-justify-end {
  justify-content: flex-end;
}
.is-justify-center {
  justify-content: center;
}
.is-justify-space-between {
  justify-content: space-between;
}
.is-justify-space-around {
  justify-content: space-around;
}
.is-align-start {
  align-items: flex-start;
}
.is-align-end {
  align-items: flex-end;
}
.is-align-center {
  align-items: center;
}
.is-align-baseline {
  align-items: baseline;
}
.is-align-stretch {
  align-items: stretch;
}
.c-box.no-gap {
  margin-left: 0;
  margin-right: 0;

  & > * {
    padding-left: 0;
    padding-right: 0;
  }
}
/* stylelint-disable function-whitespace-after, at-rule-no-unknown */
.has-offset-0 {
    margin-left: calc(0 / 12 * 100)%;
  }
.is-0 {
    flex: 0 1 auto;
    width: calc(0 / 12 * 100)%;
  }
.has-offset-1 {
    margin-left: calc(1 / 12 * 100)%;
  }
.is-1 {
    flex: 0 1 auto;
    width: calc(1 / 12 * 100)%;
  }
.has-offset-2 {
    margin-left: calc(2 / 12 * 100)%;
  }
.is-2 {
    flex: 0 1 auto;
    width: calc(2 / 12 * 100)%;
  }
.has-offset-3 {
    margin-left: calc(3 / 12 * 100)%;
  }
.is-3 {
    flex: 0 1 auto;
    width: calc(3 / 12 * 100)%;
  }
.has-offset-4 {
    margin-left: calc(4 / 12 * 100)%;
  }
.is-4 {
    flex: 0 1 auto;
    width: calc(4 / 12 * 100)%;
  }
.has-offset-5 {
    margin-left: calc(5 / 12 * 100)%;
  }
.is-5 {
    flex: 0 1 auto;
    width: calc(5 / 12 * 100)%;
  }
.has-offset-6 {
    margin-left: calc(6 / 12 * 100)%;
  }
.is-6 {
    flex: 0 1 auto;
    width: calc(6 / 12 * 100)%;
  }
.has-offset-7 {
    margin-left: calc(7 / 12 * 100)%;
  }
.is-7 {
    flex: 0 1 auto;
    width: calc(7 / 12 * 100)%;
  }
.has-offset-8 {
    margin-left: calc(8 / 12 * 100)%;
  }
.is-8 {
    flex: 0 1 auto;
    width: calc(8 / 12 * 100)%;
  }
.has-offset-9 {
    margin-left: calc(9 / 12 * 100)%;
  }
.is-9 {
    flex: 0 1 auto;
    width: calc(9 / 12 * 100)%;
  }
.has-offset-10 {
    margin-left: calc(10 / 12 * 100)%;
  }
.is-10 {
    flex: 0 1 auto;
    width: calc(10 / 12 * 100)%;
  }
.has-offset-11 {
    margin-left: calc(11 / 12 * 100)%;
  }
.is-11 {
    flex: 0 1 auto;
    width: calc(11 / 12 * 100)%;
  }
.has-offset-12 {
    margin-left: calc(12 / 12 * 100)%;
  }
.is-12 {
    flex: 0 1 auto;
    width: calc(12 / 12 * 100)%;
  }
.is-flex {
    display: flex;
  }
.is-block {
    display: block;
  }
.is-inline {
    display: inline;
  }
.is-inline-block {
    display: inline-block;
  }
.is-none {
    display: none;
  }
.has-dir-row {
  flex-direction: row;
}
.has-dir-column {
  flex-direction: column;
}
/**
 * responsive
 */
@media (--xs-up) {
      .is-1-xs {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-xs {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-xs {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-xs {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-xs {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-xs {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-xs {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-xs {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-xs {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-xs {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-xs {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-xs {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-xs {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-xs {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-xs {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-xs {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-xs {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-xs {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-xs {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-xs {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-xs {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-xs {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-xs {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-xs {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-xs {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-xs {
        display: block;
      }
      .is-inline-block-xs {
        display: inline-block;
      }
      .is-flex-xs {
        display: flex;
      }
      .is-inline-xs {
        display: inline;
      }
      .is-none-xs {
        display: none;
      }

    .has-dir-column-xs {
      flex-direction: column;
    }

    .has-dir-row-xs {
      flex-direction: row;
    }
  }
@media (--xs-only) {
      .is-1-xs-only {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-xs-only {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-xs-only {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-xs-only {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-xs-only {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-xs-only {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-xs-only {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-xs-only {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-xs-only {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-xs-only {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-xs-only {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-xs-only {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-xs-only {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-xs-only {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-xs-only {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-xs-only {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-xs-only {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-xs-only {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-xs-only {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-xs-only {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-xs-only {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-xs-only {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-xs-only {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-xs-only {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-xs-only {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-xs-only {
        display: block;
      }
      .is-inline-block-xs-only {
        display: inline-block;
      }
      .is-flex-xs-only {
        display: flex;
      }
      .is-inline-xs-only {
        display: inline;
      }
      .is-none-xs-only {
        display: none;
      }

    .has-dir-column-xs-only {
      flex-direction: column;
    }

    .has-dir-row-xs-only {
      flex-direction: row;
    }
  }
@media (--sm-up) {
      .is-1-sm {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-sm {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-sm {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-sm {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-sm {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-sm {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-sm {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-sm {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-sm {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-sm {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-sm {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-sm {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-sm {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-sm {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-sm {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-sm {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-sm {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-sm {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-sm {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-sm {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-sm {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-sm {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-sm {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-sm {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-sm {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-sm {
        display: block;
      }
      .is-inline-block-sm {
        display: inline-block;
      }
      .is-flex-sm {
        display: flex;
      }
      .is-inline-sm {
        display: inline;
      }
      .is-none-sm {
        display: none;
      }

    .has-dir-column-sm {
      flex-direction: column;
    }

    .has-dir-row-sm {
      flex-direction: row;
    }
  }
@media (--sm-only) {
      .is-1-sm-only {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-sm-only {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-sm-only {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-sm-only {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-sm-only {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-sm-only {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-sm-only {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-sm-only {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-sm-only {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-sm-only {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-sm-only {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-sm-only {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-sm-only {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-sm-only {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-sm-only {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-sm-only {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-sm-only {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-sm-only {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-sm-only {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-sm-only {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-sm-only {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-sm-only {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-sm-only {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-sm-only {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-sm-only {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-sm-only {
        display: block;
      }
      .is-inline-block-sm-only {
        display: inline-block;
      }
      .is-flex-sm-only {
        display: flex;
      }
      .is-inline-sm-only {
        display: inline;
      }
      .is-none-sm-only {
        display: none;
      }

    .has-dir-column-sm-only {
      flex-direction: column;
    }

    .has-dir-row-sm-only {
      flex-direction: row;
    }
  }
@media (--md-up) {
      .is-1-md {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-md {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-md {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-md {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-md {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-md {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-md {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-md {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-md {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-md {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-md {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-md {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-md {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-md {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-md {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-md {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-md {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-md {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-md {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-md {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-md {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-md {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-md {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-md {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-md {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-md {
        display: block;
      }
      .is-inline-block-md {
        display: inline-block;
      }
      .is-flex-md {
        display: flex;
      }
      .is-inline-md {
        display: inline;
      }
      .is-none-md {
        display: none;
      }

    .has-dir-column-md {
      flex-direction: column;
    }

    .has-dir-row-md {
      flex-direction: row;
    }
  }
@media (--md-only) {
      .is-1-md-only {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-md-only {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-md-only {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-md-only {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-md-only {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-md-only {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-md-only {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-md-only {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-md-only {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-md-only {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-md-only {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-md-only {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-md-only {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-md-only {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-md-only {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-md-only {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-md-only {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-md-only {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-md-only {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-md-only {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-md-only {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-md-only {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-md-only {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-md-only {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-md-only {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-md-only {
        display: block;
      }
      .is-inline-block-md-only {
        display: inline-block;
      }
      .is-flex-md-only {
        display: flex;
      }
      .is-inline-md-only {
        display: inline;
      }
      .is-none-md-only {
        display: none;
      }

    .has-dir-column-md-only {
      flex-direction: column;
    }

    .has-dir-row-md-only {
      flex-direction: row;
    }
  }
@media (--lg-up) {
      .is-1-lg {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-lg {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-lg {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-lg {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-lg {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-lg {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-lg {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-lg {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-lg {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-lg {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-lg {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-lg {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-lg {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-lg {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-lg {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-lg {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-lg {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-lg {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-lg {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-lg {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-lg {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-lg {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-lg {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-lg {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-lg {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-lg {
        display: block;
      }
      .is-inline-block-lg {
        display: inline-block;
      }
      .is-flex-lg {
        display: flex;
      }
      .is-inline-lg {
        display: inline;
      }
      .is-none-lg {
        display: none;
      }

    .has-dir-column-lg {
      flex-direction: column;
    }

    .has-dir-row-lg {
      flex-direction: row;
    }
  }
@media (--lg-only) {
      .is-1-lg-only {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-lg-only {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-lg-only {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-lg-only {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-lg-only {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-lg-only {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-lg-only {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-lg-only {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-lg-only {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-lg-only {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-lg-only {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-lg-only {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-lg-only {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-lg-only {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-lg-only {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-lg-only {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-lg-only {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-lg-only {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-lg-only {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-lg-only {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-lg-only {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-lg-only {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-lg-only {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-lg-only {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-lg-only {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-lg-only {
        display: block;
      }
      .is-inline-block-lg-only {
        display: inline-block;
      }
      .is-flex-lg-only {
        display: flex;
      }
      .is-inline-lg-only {
        display: inline;
      }
      .is-none-lg-only {
        display: none;
      }

    .has-dir-column-lg-only {
      flex-direction: column;
    }

    .has-dir-row-lg-only {
      flex-direction: row;
    }
  }
@media (--xl-up) {
      .is-1-xl {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-xl {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-xl {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-xl {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-xl {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-xl {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-xl {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-xl {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-xl {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-xl {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-xl {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-xl {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-xl {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-xl {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-xl {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-xl {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-xl {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-xl {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-xl {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-xl {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-xl {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-xl {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-xl {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-xl {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-xl {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-xl {
        display: block;
      }
      .is-inline-block-xl {
        display: inline-block;
      }
      .is-flex-xl {
        display: flex;
      }
      .is-inline-xl {
        display: inline;
      }
      .is-none-xl {
        display: none;
      }

    .has-dir-column-xl {
      flex-direction: column;
    }

    .has-dir-row-xl {
      flex-direction: row;
    }
  }
@media (--xl-only) {
      .is-1-xl-only {
        flex: 0 1 auto;
        width: calc(1 / 12 * 100)%;
      }

      .has-offset-1-xl-only {
        margin-left: calc(1 / 12 * 100)%;
      }
      .is-2-xl-only {
        flex: 0 1 auto;
        width: calc(2 / 12 * 100)%;
      }

      .has-offset-2-xl-only {
        margin-left: calc(2 / 12 * 100)%;
      }
      .is-3-xl-only {
        flex: 0 1 auto;
        width: calc(3 / 12 * 100)%;
      }

      .has-offset-3-xl-only {
        margin-left: calc(3 / 12 * 100)%;
      }
      .is-4-xl-only {
        flex: 0 1 auto;
        width: calc(4 / 12 * 100)%;
      }

      .has-offset-4-xl-only {
        margin-left: calc(4 / 12 * 100)%;
      }
      .is-5-xl-only {
        flex: 0 1 auto;
        width: calc(5 / 12 * 100)%;
      }

      .has-offset-5-xl-only {
        margin-left: calc(5 / 12 * 100)%;
      }
      .is-6-xl-only {
        flex: 0 1 auto;
        width: calc(6 / 12 * 100)%;
      }

      .has-offset-6-xl-only {
        margin-left: calc(6 / 12 * 100)%;
      }
      .is-7-xl-only {
        flex: 0 1 auto;
        width: calc(7 / 12 * 100)%;
      }

      .has-offset-7-xl-only {
        margin-left: calc(7 / 12 * 100)%;
      }
      .is-8-xl-only {
        flex: 0 1 auto;
        width: calc(8 / 12 * 100)%;
      }

      .has-offset-8-xl-only {
        margin-left: calc(8 / 12 * 100)%;
      }
      .is-9-xl-only {
        flex: 0 1 auto;
        width: calc(9 / 12 * 100)%;
      }

      .has-offset-9-xl-only {
        margin-left: calc(9 / 12 * 100)%;
      }
      .is-10-xl-only {
        flex: 0 1 auto;
        width: calc(10 / 12 * 100)%;
      }

      .has-offset-10-xl-only {
        margin-left: calc(10 / 12 * 100)%;
      }
      .is-11-xl-only {
        flex: 0 1 auto;
        width: calc(11 / 12 * 100)%;
      }

      .has-offset-11-xl-only {
        margin-left: calc(11 / 12 * 100)%;
      }
      .is-12-xl-only {
        flex: 0 1 auto;
        width: calc(12 / 12 * 100)%;
      }

      .has-offset-12-xl-only {
        margin-left: calc(12 / 12 * 100)%;
      }

    .is-auto-xl-only {
      flex: 0 1 auto;
      width: auto;
    }
      .is-block-xl-only {
        display: block;
      }
      .is-inline-block-xl-only {
        display: inline-block;
      }
      .is-flex-xl-only {
        display: flex;
      }
      .is-inline-xl-only {
        display: inline;
      }
      .is-none-xl-only {
        display: none;
      }

    .has-dir-column-xl-only {
      flex-direction: column;
    }

    .has-dir-row-xl-only {
      flex-direction: row;
    }
  }
/**
 * responsive listener
 */
.c-responsive-listener {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  visibility: hidden !important;
  height: 1px !important;
  padding: 0 !important;
  transition: width 1ms ease;
}
@media (--xs-only) {
  .c-responsive-listener {
    width: 0 !important;
  }
}
@media (--sm-only) {
  .c-responsive-listener {
    width: 1px !important;
  }
}
@media (--md-only) {
  .c-responsive-listener {
    width: 2px !important;
  }
}
@media (--lg-only) {
  .c-responsive-listener {
    width: 3px !important;
  }
}
@media (--xl-only) {
  .c-responsive-listener {
    width: 4px !important;
  }
}
.c-container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--container-margin);

  &.is-sm {
    max-width: var(--container-size-sm);
  }

  &.is-md {
    max-width: var(--container-size-md);
  }

  &.is-lg {
    max-width: var(--container-size-lg);
  }

  &.is-left {
    margin-left: 0;
  }

  &.is-right {
    margin-right: 0;
  }
}
/**
 * typography sizing
 */
.is-size-xxl {
  font-size: 28px;
}
.is-size-xl {
  font-size: 20px;
}
.is-size-lg {
  font-size: 16px;
}
.is-size-md {
  font-size: 14px;
}
.is-size-sm {
  font-size: 13px;
}
.is-size-xs {
  font-size: 12px;
}
.is-size-xxs {
  font-size: 10px;
}
.has-weight-bold {
  font-weight: bold;
}
.has-weight-normal {
  font-weight: normal;
}
.has-weight-light {
  font-weight: 100;
}
/**
 * text align
 */
.has-text-left {
  text-align: left;
}
.has-text-centered {
  text-align: center;
}
.has-text-right {
  text-align: right;
}
.has-text-justified {
  text-align: justify;
}
/**
 * line height
 */
.has-leading-xs {
  line-height: 1;
}
.has-leading-sm {
  line-height: 1.25;
}
.has-leading-md {
  line-height: 1.6;
}
.has-leading-lg {
  line-height: 2;
}
.has-leading-xl {
  line-height: 3;
}
/**
 * spacing helper
 */
.has-margin-none {
      margin: var(--spacing-none) !important;
    }
.has-margin-top-none {
        margin-top: var(--spacing-none) !important;
      }
.has-margin-right-none {
        margin-right: var(--spacing-none) !important;
      }
.has-margin-bottom-none {
        margin-bottom: var(--spacing-none) !important;
      }
.has-margin-left-none {
        margin-left: var(--spacing-none) !important;
      }
.has-padding-none {
      padding: var(--spacing-none) !important;
    }
.has-padding-top-none {
        padding-top: var(--spacing-none) !important;
      }
.has-padding-right-none {
        padding-right: var(--spacing-none) !important;
      }
.has-padding-bottom-none {
        padding-bottom: var(--spacing-none) !important;
      }
.has-padding-left-none {
        padding-left: var(--spacing-none) !important;
      }
.has-margin-xs {
      margin: var(--spacing-xs) !important;
    }
.has-margin-top-xs {
        margin-top: var(--spacing-xs) !important;
      }
.has-margin-right-xs {
        margin-right: var(--spacing-xs) !important;
      }
.has-margin-bottom-xs {
        margin-bottom: var(--spacing-xs) !important;
      }
.has-margin-left-xs {
        margin-left: var(--spacing-xs) !important;
      }
.has-padding-xs {
      padding: var(--spacing-xs) !important;
    }
.has-padding-top-xs {
        padding-top: var(--spacing-xs) !important;
      }
.has-padding-right-xs {
        padding-right: var(--spacing-xs) !important;
      }
.has-padding-bottom-xs {
        padding-bottom: var(--spacing-xs) !important;
      }
.has-padding-left-xs {
        padding-left: var(--spacing-xs) !important;
      }
.has-margin-sm {
      margin: var(--spacing-sm) !important;
    }
.has-margin-top-sm {
        margin-top: var(--spacing-sm) !important;
      }
.has-margin-right-sm {
        margin-right: var(--spacing-sm) !important;
      }
.has-margin-bottom-sm {
        margin-bottom: var(--spacing-sm) !important;
      }
.has-margin-left-sm {
        margin-left: var(--spacing-sm) !important;
      }
.has-padding-sm {
      padding: var(--spacing-sm) !important;
    }
.has-padding-top-sm {
        padding-top: var(--spacing-sm) !important;
      }
.has-padding-right-sm {
        padding-right: var(--spacing-sm) !important;
      }
.has-padding-bottom-sm {
        padding-bottom: var(--spacing-sm) !important;
      }
.has-padding-left-sm {
        padding-left: var(--spacing-sm) !important;
      }
.has-margin-md {
      margin: var(--spacing-md) !important;
    }
.has-margin-top-md {
        margin-top: var(--spacing-md) !important;
      }
.has-margin-right-md {
        margin-right: var(--spacing-md) !important;
      }
.has-margin-bottom-md {
        margin-bottom: var(--spacing-md) !important;
      }
.has-margin-left-md {
        margin-left: var(--spacing-md) !important;
      }
.has-padding-md {
      padding: var(--spacing-md) !important;
    }
.has-padding-top-md {
        padding-top: var(--spacing-md) !important;
      }
.has-padding-right-md {
        padding-right: var(--spacing-md) !important;
      }
.has-padding-bottom-md {
        padding-bottom: var(--spacing-md) !important;
      }
.has-padding-left-md {
        padding-left: var(--spacing-md) !important;
      }
.has-margin-lg {
      margin: var(--spacing-lg) !important;
    }
.has-margin-top-lg {
        margin-top: var(--spacing-lg) !important;
      }
.has-margin-right-lg {
        margin-right: var(--spacing-lg) !important;
      }
.has-margin-bottom-lg {
        margin-bottom: var(--spacing-lg) !important;
      }
.has-margin-left-lg {
        margin-left: var(--spacing-lg) !important;
      }
.has-padding-lg {
      padding: var(--spacing-lg) !important;
    }
.has-padding-top-lg {
        padding-top: var(--spacing-lg) !important;
      }
.has-padding-right-lg {
        padding-right: var(--spacing-lg) !important;
      }
.has-padding-bottom-lg {
        padding-bottom: var(--spacing-lg) !important;
      }
.has-padding-left-lg {
        padding-left: var(--spacing-lg) !important;
      }
.has-margin-xl {
      margin: var(--spacing-xl) !important;
    }
.has-margin-top-xl {
        margin-top: var(--spacing-xl) !important;
      }
.has-margin-right-xl {
        margin-right: var(--spacing-xl) !important;
      }
.has-margin-bottom-xl {
        margin-bottom: var(--spacing-xl) !important;
      }
.has-margin-left-xl {
        margin-left: var(--spacing-xl) !important;
      }
.has-padding-xl {
      padding: var(--spacing-xl) !important;
    }
.has-padding-top-xl {
        padding-top: var(--spacing-xl) !important;
      }
.has-padding-right-xl {
        padding-right: var(--spacing-xl) !important;
      }
.has-padding-bottom-xl {
        padding-bottom: var(--spacing-xl) !important;
      }
.has-padding-left-xl {
        padding-left: var(--spacing-xl) !important;
      }
.drop-shadow {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
/*
 * transition and animation
 */
.fade-in-down-enter-active,
.fade-in-down-leave-active {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.fade-in-down-enter,
.fade-in-down-leave-to,
.fade-in-down-leave-active {
  opacity: 0;
  transform: translateY(-10px);
}
/*
 * common animations
 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0.5;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
/**
* c-breadcrumb
*/
.c-breadcrumb {
  color: color(var(--gray) l(70%));
  margin-bottom: 1em;

  & .c-breadcrumb__item {
    display: inline-block;

    &:last-child {
      color: color(var(--gray) l(50%));
    }

    & a {
      color: inherit;

      &:hover {
        color: var(--primary-color);
      }
    }
  }

  & .c-breadcrumb__divider {
    display: inline-block;
    padding: 0 0.5em;
  }
}
/**
 * c-button-group
 */
.c-button-group {
  display: inline-block;

  & .c-button {
    float: left;
    border-radius: 0;

    &:first-child {
      border-radius: 3px 0 0 3px;
    }

    &:last-child {
      border-radius: 0 3px 3px 0;
    }

    &:not(.c-button--outline) {
      border-left: 1px solid color(var(--gray) l(68%));

      &:first-child {
        border-left: none;
      }
    }

    &.c-button--outline:not(:first-child) {
      border-left: 0;
    }
  }

  & .c-button:focus {
    position: relative;
    z-index: 1;
  }

  & .c-button + .c-button {
    margin-left: 0;
  }
}
.c-button-group .c-button--primary:not(.c-button--outline) {
  border-left-color: color(var(--primary-color) l(+8%));
}
.c-button-group .c-button--danger:not(.c-button--outline) {
  border-left-color: color(var(--danger-color) l(+8%));
}
.c-button-group + .c-button-group {
  margin-left: 8px;
}
/**
 * default button
 */
.c-button {
  box-sizing: border-box;
  display: inline-block;
  font-size: var(--form-font-md);
  height: var(--form-height-md);
  padding: 0 11px;
  border: 1px solid transparent;
  line-height: 1.2;
  background: color(var(--button-default-color) l(var(--button-lightness-normal)));
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  &:not([disabled]):hover {
    background-color: color(var(--button-default-color) l(var(--button-lightness-hover)));
    color: #fff;
  }

  &:active,
  &:focus {
    outline: none;
    box-shadow: 0 0 0 0.2em color(var(--button-default-color) l(var(--button-lightness-hover)) a(var(--focus-ring-opacity)));
  }

  &[disabled] {
    cursor: not-allowed;
    opacity: 0.6;

    &:active,
    &:focus {
      box-shadow: none;
    }
  }

  & .c-icon:first-child {
    margin-right: 4px;
  }

  & .c-icon:last-child {
    margin-left: 4px;
  }

  & .c-icon:only-child {
    margin-left: -3px;
    margin-right: -3px;
  }

  & span:empty {
    display: none;
  }
}
/**
 * primary color
 */
.c-button--primary {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;

  &:not([disabled]):hover {
    background-color: color(var(--primary-color) l(var(--button-lightness-hover)));
    color: #fff;
  }

  &:active,
  &:focus {
    box-shadow: 0 0 0 0.2em color(var(--primary-color) a(0.4));
  }
}
/**
 * danger color
 */
.c-button--danger {
  border-color: var(--danger-color);
  background: var(--danger-color);
  color: #fff;

  &:not([disabled]):hover {
    background-color: color(var(--danger-color) l(var(--button-lightness-hover)));
    color: #fff;
  }

  &:active,
  &:focus {
    box-shadow: 0 0 0 0.2em color(var(--danger-color) a(var(--focus-ring-opacity)));
  }
}
/**
 * success color
 */
.c-button--success {
  border-color: var(--success-color);
  background: var(--success-color);
  color: #fff;

  &:not([disabled]):hover {
    background-color: color(var(--success-color) l(var(--button-lightness-hover)));
    color: #fff;
  }

  &:active,
  &:focus {
    box-shadow: 0 0 0 0.2em color(var(--success-color) a(var(--focus-ring-opacity)));
  }
}
/**
 * success color
 */
.c-button--warning {
  border-color: var(--warning-color);
  background: var(--warning-color);
  color: #fff;

  &:not([disabled]):hover {
    background-color: color(var(--warning-color) l(var(--button-lightness-hover)));
    color: #fff;
  }

  &:active,
  &:focus {
    box-shadow: 0 0 0 0.2em color(var(--warning-color) a(var(--focus-ring-opacity)));
  }
}
/**
 * flat style
 */
.c-button--flat {
  background: transparent;
  border-color: transparent;
  color: var(--text-color);

  &:not([disabled]):hover {
    background: color(var(--gray) l(var(--button-flat-hover-lightness)));
    color: var(--text-color);
  }

  &:active,
  &:focus {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.07) inset;
    border-color: transparent;
  }

  &.c-button--primary {
    color: var(--primary-color);

    &:not([disabled]):hover {
      background: color(var(--primary-color) l(var(--button-flat-hover-lightness)));
      color: var(--primary-color);
    }
  }

  &.c-button--danger {
    color: var(--danger-color);

    &:not([disabled]):hover {
      background: color(var(--danger-color) l(var(--button-flat-hover-lightness)));
      color: var(--danger-color);
    }
  }

  &.c-button--success {
    color: var(--success-color);

    &:not([disabled]):hover {
      background: color(var(--success-color) l(var(--button-flat-hover-lightness)));
      color: var(--success-color);
    }
  }

  &.c-button--warning {
    color: var(--warning-color);

    &:not([disabled]):hover {
      background: color(var(--warning-color) l(var(--button-flat-hover-lightness)));
      color: var(--warning-color);
    }
  }
}
/**
 * outline style
 */
.c-button--outline {
  background-color: #fff;
  border: 1px solid currentColor;
  color: color(var(--button-default-color) l(var(--button-lightness-normal)));

  &.c-button--outline:not([disabled]):hover {
    color: #fff;
    background: color(var(--button-default-color) l(var(--button-lightness-normal)));
  }

  &:not([disabled]):hover {
    background: color(var(--button-default-color) l(var(--button-lightness-hover)));
    border-color: color(var(--button-default-color) l(var(--button-lightness-normal)));
  }
}
.c-button--outline.c-button--primary {
  color: var(--primary-color);

  &:not([disabled]):hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }
}
.c-button--outline.c-button--danger {
  color: var(--danger-color);

  &:not([disabled]):hover {
    background: var(--danger-color);
    border-color: var(--danger-color);
  }
}
.c-button--outline.c-button--success {
  color: var(--success-color);

  &:not([disabled]):hover {
    background: var(--success-color);
    border-color: var(--success-color);
  }
}
.c-button--outline.c-button--warning {
  color: var(--warning-color);

  &:not([disabled]):hover {
    background: var(--warning-color);
    border-color: var(--warning-color);
  }
}
/**
 * button and button
 */
.c-button + .c-button {
  margin-left: 8px;
}
/**
 * round button style
 */
.c-button--round {
  border-radius: 30px;
}
/**
 * sizing
 */
.c-button.is-xs,
.c-button-group.is-xs > .c-button{
  font-size: var(--form-font-xs);
  height: var(--form-height-xs);
  padding: 0 4px;

  & .c-icon:only-child {
    margin-left: 0;
    margin-right: 0;
  }
}
.c-button.is-sm,
.c-button-group.is-sm > .c-button{
  font-size: var(--form-font-sm);
  height: var(--form-height-sm);

  & .c-icon:only-child {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.c-button.is-lg,
.c-button-group.is-lg > .c-button{
  font-size: var(--form-font-lg);
  height: var(--form-height-lg);

  & .c-icon:only-child {
    margin-left: 0;
    margin-right: 0;
  }
}
.c-button.is-xl,
.c-button-group.is-xl > .c-button{
  font-size: var(--form-font-xl);
  height: var(--form-height-xl);
  padding: 0 16px;

  & .c-icon:only-child {
    margin-left: -3px;
    margin-right: -3px;
  }
}
/**
 * loading
 */
.c-button--loading {
  & .c-icon {
    animation: spin 2s infinite linear;
  }
}
/**
* c-calendar
*/
.c-calendar {
  width: 20em;
  min-height: 20em;
  font-size: 14px;
  border: 1px solid color(var(--gray) l(85%));
  border-radius: 0.2em;
  padding: 1em;
  user-select: none;
  box-shadow: 2px 2px 0.5em 0 color(var(--gray) l(95%));
  background: color(var(--white));

  &.is-sm {
    font-size: 12px;
  }

  &.is-md {
    font-size: 14px;
  }

  &.is-lg {
    font-size: 16px;
  }
}
.c-calendar__header {
  text-align: center;
  position: relative;
  margin-bottom: 1em;
}
.c-calendar__spacer {
  display: inline-block;
  margin: 0 0.5em;
}
.c-calendar .c-calendar__prev-month,
.c-calendar .c-calendar__next-month,
.c-calendar .c-calendar__prev-year,
.c-calendar .c-calendar__next-year {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;

  &.disabled,
  &.disabled:hover {
    color: color(var(--text-color) l(85%));
    cursor: not-allowed;
  }

  &:hover {
    color: color(var(--blue));
  }
}
.c-calendar .c-calendar__prev-year {
  left: 10px;
}
.c-calendar .c-calendar__prev-month {
  left: 29px;
}
.c-calendar .c-calendar__next-year {
  right: 10px;
}
.c-calendar .c-calendar__next-month {
  right: 29px;
}
.c-calendar__month {
  color: color(var(--text-color));
  cursor: pointer;

  &:hover {
    color: color(var(--blue));
  }
}
.c-calendar__body .c-calendar__month-table,
.c-calendar__body .c-calendar__day-table {
  margin: 0;
  width: 100%;

  & .lastmonth .day-cell,
  & .nextmonth .day-cell {
    color: color(var(--text-color) l(65%));
  }

  & .day-cell-range {
    position: relative;

    &::before {
      content: '';
      display: block;
      background: #e6f7ff;
      border-radius: 0;
      border: 0;
      position: absolute;
      top: 4px;
      bottom: 4px;
      left: 0;
      right: 0;
    }
  }

  & .day-cell {
    width: 2em;
    line-height: 2em;
    display: inline-block;
    color: color(var(--text-color));
    border-radius: 50%;
    position: relative;
    transition: background 0.3s ease;
  }

  & .day-cell:hover {
    background: color(var(--blue) l(85%));
  }

  & .active .day-cell {
    color: #fff;
    background: color(var(--blue));
  }

  & .disabled .day-cell,
  & .disabled:hover .day-cell {
    color: color(var(--text-color) l(85%));
    cursor: not-allowed;
    background: color(var(--white));
  }

  & .month-cell {
    width: 3.5em;
    line-height: 2em;
    display: inline-block;
    border: 1px solid #fff;
    color: color(var(--text-color));

    &.disabled,
    &.disabled:hover {
      color: color(var(--text-color) l(85%));
      cursor: not-allowed;
      border: 0;
      box-shadow: none;
    }

    &:hover {
      border: 1px solid color(var(--blue) l(85%));
      box-shadow: 1px 1px color(var(--blue) l(95%));
    }

    &.active {
      color: #fff;
      background: color(var(--blue));
    }
  }
}
.c-calendar__body .c-calendar__month-table td {
  padding: 1em;
}
.c-calendar__body table thead th,
.c-calendar__body table tbody td {
  padding: 0.3em 0.1em;
  font-weight: normal;
  border: 0;
  text-align: center;
}
/**
* c-card
*/
.c-card {
  background: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;

  &:hover {
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.3);
  }

  & .c-card__title {
    white-space: nowrap;
    padding: 1em 1.5em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

    & h1,
    & h2,
    & h3,
    & h4,
    & h5,
    & h6 {
      margin: 0;
      line-height: inherit;
    }
  }

  & .c-card__body {
    padding: 1.5em;
  }

  & .c-card__media {
    & img {
      display: block;
      max-width: 100%;
    }
  }

  & .c-card__actions {
    padding: 0.5em;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  &.is-horizontal {
    display: flex;

    & .c-card__body {
      flex: 1;
      padding-top: 0.5em;
      padding-bottom: 0.5em;
      align-self: center;
    }
  }
}
/**
* c-cascader
*/
.c-cascader {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  border-radius: 0.2em;
  overflow: hidden;
  width: 15em;
  cursor: pointer;

  & .c-input-wrap {
    width: 100%;
  }

  & input {
    margin: 0;
    width: 100%;
  }
}
.c-cascader__icon {
  position: absolute;
  right: 0.5em;
  top: 50%;
  font-size: 0.85em;
  transform: translateY(-50%);
  color: color(var(--text-color) l(65%));
}
.c-cascader__childmenu {
  display: inline-block;
  vertical-align: top;
}
.cascader-menu {
  width: 10em;
  box-shadow: 0 0 5px color(var(--gray) l(95%));
  list-style: none;
  max-height: 274px;
  overflow-y: auto;
  border: 1px solid color(var(--gray) l(85%));
  background-color: color(var(--white));
  box-sizing: border-box;
  z-index: 99;
  padding: 0;
  margin: 0;
  display: inline-block;
  user-select: none;
  border-radius: 5px;

  &::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }

  &::-webkit-scrollbar-thumb {
    background: #ced3d9;
    border-radius: 10px;
    border-radius: 30px;
  }

  &::-webkit-scrollbar-track {
    background: #eaeced;
  }
}
.casecader-menu-item {
  position: relative;
  padding: 0.5em 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  color: color(var(--text-color));
  font-size: var(--form-font-md);
  font-weight: normal;

  &.active {
    color: var(--primary-color);
    background: color(var(--gray) l(97%));
  }

  &:hover {
    background: color(var(--primary-color) l(95%));
  }

  &.disabled {
    color: color(var(--gray) l(80%));
    cursor: not-allowed;
  }
}
.c-select__caret {
  position: absolute;
  z-index: 1;
  right: 0.5em;
  top: 50%;
  margin-top: -6px;
  color: var(--gray);
  border: 4px solid;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
  transform-origin: 25% 75%;
  transition: transform 0.2s ease;
}
.is-open .c-select__caret {
  transform: rotate(-225deg);
}
.cascader-icon {
  position: absolute;
  right: 5px;
  font-size: 16px;
}
/* size */
.cascader-dropmenu {
  &.is-sm .casecader-menu-item {
    font-size: var(--form-font-sm);
  }

  &.is-md .casecader-menu-item {
    font-size: var(--form-font-md);
  }

  &.is-lg .casecader-menu-item {
    font-size: var(--form-font-lg);
  }
}
.c-checkbox {
  display: inline-block;
  position: relative;
  margin-right: 1em;
  cursor: pointer;
  user-select: none;

  & > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }

  & > .c-checkbox__box {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    border: 1px solid var(--gray);
    margin-right: 0.3em;
    border-radius: 0.15em;
    transition: all 0.2s ease;

    &::after {
      content: '';
      position: absolute;
      top: 0.23em;
      left: 0.13em;
      width: 0.5em;
      height: 0.2em;
      border-left: 0.1em solid currentColor;
      border-bottom: 0.1em solid currentColor;
      transform: rotate(-45deg) scale(0);
    }
  }

  &:hover > .c-checkbox__box {
    border-color: var(--primary-color);
  }

  & > input:checked + .c-checkbox__box {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
  }

  & > input:checked + .c-checkbox__box::after {
    transition: transform 0.2s ease;
    transform: rotate(-45deg) scale(1.01);
  }

  & > input:focus + .c-checkbox__box {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15em color(var(--primary-color) l(80%));
  }

  & > input[disabled] + .c-checkbox__box {
    border-color: var(--gray);
    background-color: color(var(--gray) l(90%));
    color: color(var(--gray) l(70%));
    cursor: not-allowed;
  }

  & > input[disabled] ~ .c-checkbox__label {
    color: var(--gray);
    cursor: not-allowed;
  }

  /**
   * sizing
   */
  font-size: var(--form-font-md);
  line-height: calc(var(--form-height-md) - 2px);

  &.is-xs {
    font-size: var(--form-font-xs);
    line-height: calc(var(--form-height-xs) - 2px);
  }

  &.is-sm {
    font-size: var(--form-font-sm);
    line-height: calc(var(--form-height-sm) - 2px);
  }

  &.is-lg {
    font-size: var(--form-font-lg);
    line-height: calc(var(--form-height-lg) - 2px);
  }

  &.is-xl {
    font-size: var(--form-font-xl);
    line-height: calc(var(--form-height-xl) - 2px);
  }
}
.c-checkbox > input:indeterminate + .c-checkbox__box {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);

  &::after {
    transform: scale(1.01);
    border-left: 0;
    left: 0.18em;
  }
}
.c-checkbox-group {
  display: inline-block;
}
/**
* c-chip
*/
.c-chip__wrapper {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding: 0 10px;
  height: 28px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  background-color: var(--gray);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0 8px 0 0;

  &:not([disabled]):hover {
    background-color: color(var(--button-default-color) l(var(--button-lightness-hover)));
    color: #fff;
  }

  & .c-icon {
    margin-left: 5px;
  }

  & .c-icon:hover {
    color: #ccc;
  }
}
.c-chip__label {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
}
/**
 * type color
 */
.c-chip--red {
    border-color: var(--red);
    background: var(--red);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--red) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--red) a(0.4));
    }
  }
.c-chip--orange {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--orange) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--orange) a(0.4));
    }
  }
.c-chip--yellow {
    border-color: var(--yellow);
    background: var(--yellow);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--yellow) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--yellow) a(0.4));
    }
  }
.c-chip--green {
    border-color: var(--green);
    background: var(--green);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--green) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--green) a(0.4));
    }
  }
.c-chip--cyan {
    border-color: var(--cyan);
    background: var(--cyan);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--cyan) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--cyan) a(0.4));
    }
  }
.c-chip--blue {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--blue) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--blue) a(0.4));
    }
  }
.c-chip--indigo {
    border-color: var(--indigo);
    background: var(--indigo);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--indigo) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--indigo) a(0.4));
    }
  }
.c-chip--purple {
    border-color: var(--purple);
    background: var(--purple);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--purple) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--purple) a(0.4));
    }
  }
.c-chip--pink {
    border-color: var(--pink);
    background: var(--pink);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--pink) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--pink) a(0.4));
    }
  }
.c-chip--gray {
    border-color: var(--gray);
    background: var(--gray);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--gray) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--gray) a(0.4));
    }
  }
.c-chip--dark {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--dark) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--dark) a(0.4));
    }
  }
.c-chip--black {
    border-color: var(--black);
    background: var(--black);
    color: #fff;

    &:not([disabled]):hover {
      background-color: color(var(--black) l(var(--button-lightness-hover)));
      color: #fff;
    }

    &:active,
    &:focus {
      box-shadow: 0 0 0 0.2em color(var(--black) a(0.4));
    }
  }
.c-chip--dark {
    &:not([disabled]):hover {
      border: 1px solid color(var(--dark) l(var(--button-lightness-hover)));
    }
  }
.c-chip--black {
    &:not([disabled]):hover {
      border: 1px solid color(var(--dark) l(var(--button-lightness-hover)));
    }
  }
/**
 * chip size
 */
.c-chip__wrapper.is-xs {
  height: 20px;
  padding: 0 6px;

  & .c-chip__label {
    transform: scale(0.9);
  }
}
.c-chip__wrapper.is-sm {
  height: 24px;
  padding: 0 8px;
}
.c-chip__wrapper.is-lg {
  height: 32px;
  padding: 0 12px;

  & .c-chip__label {
    font-size: 14px;
  }
}
.c-chip__wrapper.is-xl {
  height: 36px;
  padding: 0 14px;

  & .c-chip__label {
    font-size: 16px;
  }
}
/**
* c-color-picker
*/
.cp__wrapper {
  width: 250px;
  margin: 0;
  background: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .3), 0 4px 8px rgba(0, 0, 0, .3);
          box-shadow: 0 0 2px rgba(0, 0, 0, .3), 0 4px 8px rgba(0, 0, 0, .3);
  font-family: Menlo, 'Microsoft Yahei', sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.cp__v-ctrl {
  position: relative;
}
.cp__thumb {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 0;
  border-radius: 50%;
  margin-top: -1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f8f8f8;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .368627);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .368627);
  cursor: default;
}
.cp__saturation {
  position: relative;
  width: 100%;
  padding-bottom: 55%;
  border-radius: 2px 2px 0 0;
  overflow: hidden
}
.cp__saturation > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.cp__saturation > .msk-white {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(hsla(0, 0%, 100%, 0)));
  background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
}
.cp__saturation > .msk-black {
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
  background: linear-gradient(0deg, #000, transparent);
}
.cp__saturation > .cp__thumb {
  background-color: transparent;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, .3), 0 0 1px 2px rgba(0, 0, 0, .4);
          box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, .3), 0 0 1px 2px rgba(0, 0, 0, .4);
}
.cp__ctrl-pane {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 16px 12px
}
.cp__ctrl-pane > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cp__tracks {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.cp__ctrl-bar {
  height: 10px;
}
.cp__ctrl-hue {
  background: -webkit-gradient(linear, right top, left top, from(red), color-stop(17%, #ff0), color-stop(33%, #0f0), color-stop(50%, #0ff), color-stop(67%, #00f), color-stop(83%, #f0f), to(red));
  background: linear-gradient(-90deg, red, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red);
}
.cp__ctrl-alpha {
  margin-top: 8px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==) left center;
}
.cp__preview {
  position: relative;
  width: 28px;
  height: 28px;
  margin-right: 5px;
  overflow: hidden;
  border-radius: 50%;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==) center
}
.cp__preview > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cp__fm-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1
}
.cp__fm-fields > div {
  padding-left: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.cp__fm-fields input {
  width: 100%;
  height: 22px;
  font-size: 11px;
  text-align: center;
  color: rgb(51, 51, 51);
  border-radius: 2px;
  border: none;
  -webkit-box-shadow: rgb(218, 218, 218) 0px 0px 0px 1px inset;
          box-shadow: rgb(218, 218, 218) 0px 0px 0px 1px inset;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  -moz-appearance: textfield;
}
.cp__fm-fields input:focus {
  outline: 0;
  -webkit-box-shadow: rgb(0, 125, 255) 0px 0px 0px 1px inset;
          box-shadow: rgb(0, 125, 255) 0px 0px 0px 1px inset;
}
.cp__fm-fields input::-webkit-inner-spin-button,
    .cp__fm-fields input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.cp__fm-fields span {
  display: block;
  margin-top: 12px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 11px;
  color: rgb(150, 150, 150);
  text-align: center;
}
/* color format switcher */
.cp__fm-switcher {
  position: relative;
  width: 32px;
  text-align: right
}
.cp__fm-switcher > div {
  position: relative;
  margin-right: -4px;
  margin-top: 12px;
  cursor: pointer;
}
.cp__fm-switcher > div > svg {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid transparent;
}
.cp__fm-switcher > div > svg:hover {
  border-color: rgb(238, 238, 238);
  background: rgb(238, 238, 238);
}
.color-picker__wrapper {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.15em;
}
.color-picker__pane--portal {
  transition: visibility 0.5s ease, opacity 0.5s ease;
}
.color-picker__trigger {
  position: relative;
  margin: 6px;
  border: 1px solid transparent;

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==) left top;
  }
}
/**
* c-datepicker
*/
.c-datepicker {
  display: inline-block;
  position: relative;
  border-radius: 0.2em;
  width: 15em;
  cursor: pointer;

  & .c-input-wrap {
    width: 100%;
  }

  & input {
    margin: 0;
    width: 100%;
  }

  & .c-input[readonly] {
    background: #fff;
    color: var(--text-color);
  }

  &:hover .c-datepicker__hovericon + .c-datepicker__icon {
    z-index: -1;
    opacity: 0;
  }

  &:hover .c-datepicker__hovericon {
    z-index: 2;
    opacity: 1;
  }
}
.c-datepicker__icon {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  color: color(var(--text-color) l(65%));

  &.disabled {
    cursor: not-allowed;
  }
}
.c-datepicker__hovericon {
  z-index: -1;
  opacity: 0;
}
.c-datepicker__panel {
  box-shadow: 2px 2px 0.5em 0 color(var(--gray) l(95%));
  overflow: hidden;

  &.withBorder {
    border: 1px solid rgb(214, 217, 219);
    border-radius: 0.2em;
  }

  & .c-calendar {
    border: 0;
    box-shadow: none;
  }
}
.c-datepicker__panel .c-datepicker__range {
  background: color(var(--white));
  padding: 1em;
  font-size: 14px;
  display: flex;
  padding-bottom: 4em;

  &.is-sm {
    font-size: 12px;

    & .c-calendar {
      font-size: 12px;
    }
  }

  &.is-md {
    font-size: 14px;

    & .c-calendar {
      font-size: 14px;
    }
  }

  &.is-lg {
    font-size: 16px;

    & .c-calendar {
      font-size: 16px;
    }
  }
}
.c-datepicker__content {
  display: inline-block;
}
.c-datepicker__content + .c-datepicker__content {
  margin-left: 1em;
}
.c-datepicker__body .c-calendar {
  display: inline-block;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.c-datepicker__text {
  text-align: center;
  margin: 0.5em 0;
  position: absolute;
  bottom: 1em;
  padding-right: 2em;
  width: 100%;
}
.c-datepicker__btns {
  position: absolute;
  right: 1em;
  bottom: 1.5em;
  cursor: pointer;
}
.c-datepicker__sidebar {
  border-right: 1px solid #e4e4e4;
  box-sizing: border-box;
  padding-top: 6px;
  background-color: #fff;
  overflow: auto;
  width: 6em;
}
.c-datepicker__sidebar ul {
  padding: 0;
}
.c-datepicker__sidebar .optionbtn {
  display: block;
  width: 100%;
  border: 0;
  background-color: transparent;
  line-height: 28px;
  font-size: 14px;
  color: #606266;
  padding: 0 12px;
  text-align: left;
  outline: none;
  cursor: pointer;
}
.c-datepicker__sidebar + .c-calendar {
  border: 0;
}
.withSidebar {
  background: #fff;
  border: 1px solid rgb(214, 217, 219);
  border-radius: 0.2em;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
/**
* c-form
*/
.c-form {
  font-size: var(--form-font-md);

  &.is-xs {
    font-size: var(--form-font-xs);

    & .c-form-item__label,
    & .c-form-item__control {
      line-height: var(--form-height-xs);
    }
  }

  &.is-sm {
    font-size: var(--form-font-sm);

    & .c-form-item__label,
    & .c-form-item__control {
      line-height: var(--form-height-sm);
    }
  }

  &.is-lg {
    font-size: var(--form-font-lg);

    & .c-form-item__label,
    & .c-form-item__control {
      line-height: var(--form-height-lg);
    }
  }

  &.is-xl {
    font-size: var(--form-font-xl);

    & .c-form-item__label,
    & .c-form-item__control {
      line-height: var(--form-height-xl);
    }
  }
}
.c-form-item {
  margin-bottom: 0.5em;
  display: flex;
  align-items: flex-start;

  & .c-form-item__label {
    display: block;
    flex-shrink: 0;
    width: 4em;
    text-align: right;
    margin-right: 0.5em;
    line-height: var(--form-height-md);
  }

  &.is-required .c-form-item__label::before {
    content: '*';
    color: var(--danger-color);
    padding-right: 0.3em;
  }

  & .c-form-item__control {
    flex: 1 0 auto;
    flex-basis: content;
    line-height: var(--form-height-md);
  }

  & .c-form-item__error {
    min-height: 1.5em;
    line-height: 1.2;
    padding-top: 0.3em;
    font-size: 0.866em;
    color: var(--danger-color);
    opacity: 0;
    transition: all 0.2s ease;
    transform: translateY(-30%);
  }

  & .has-error .c-form-item__error {
    opacity: 1;
    transform: translateY(0);
  }

  & .c-error-msg {
    display: none;
  }

  &.is-flex {
    display: flex;

    & .c-form-item__control {
      flex-grow: 1;
    }
  }
}
.c-form--inline {
  display: flex;

  & .c-form-item {
    &:not(:last-child) {
      margin-right: 1em;
    }

    & .c-form-item__label {
      width: auto;
    }
  }

  & .c-form-item__error {
    display: none;
  }

  & .has-error .c-form-item__error {
    display: block;
  }
}
.c-error-msg {
  color: var(--danger-color);
  margin-left: 0.2em;
  font-style: normal;
}
/**
 * c-grid
 */
/**
 * c-icon
 */
i.c-icon {
  display: inline-block;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
/**
 * SEE  https://www.w3cplus.com/css/icon-align-to-text.html
 * and  https://codepen.io/airen/full/pZVvyL/
 */
span.c-icon {
  display: inline-flex;
  align-items: center;
}
/**
* c-input
*/
/* 输入框
 *  ===========================================================================
 */
.c-input-wrap {
  display: inline-block;
  font-size: var(--form-font-md);

  &.is-xs {
    font-size: var(--form-font-xs);

    & .c-input {
      height: var(--form-height-xs);
    }
  }

  &.is-sm {
    font-size: var(--form-font-sm);

    & .c-input {
      height: var(--form-height-sm);
    }
  }

  &.is-lg {
    font-size: var(--form-font-lg);

    & .c-input {
      height: var(--form-height-lg);
    }
  }

  &.is-xl {
    font-size: var(--form-font-xl);

    & .c-input {
      height: var(--form-height-xl);
    }
  }

  &.is-shortest .c-input {
    width: var(--form-width-shortest);
  }

  &.is-shorter .c-input {
    width: var(--form-width-shorter);
  }

  &.is-short .c-input {
    width: var(--form-width-short);
  }

  &.is-long .c-input {
    width: var(--form-width-long);
  }

  &.is-longer .c-input {
    width: var(--form-width-longer);
  }

  &.is-longest .c-input {
    width: var(--form-width-longest);
  }

  &.is-flexible {
    display: block;

    & .c-input {
      display: block;
      width: 100%;
    }
  }

  &.c-input--error {
    & .c-input {
      border-color: var(--danger-color);
      color: var(--danger-color);

      &:focus {
        box-shadow: 0 0 0 0.2em color(var(--danger-color) a(var(--focus-ring-opacity)));
      }
    }
  }
}
.c-input {
  border: 1px solid color(var(--gray) l(85%));
  border-radius: 3px;
  background-color: #fff;
  color: var(--text-color);
  line-height: normal;
  width: var(--form-width-normal);
  height: var(--form-height-md);
  padding: 0 0.5em;
  box-shadow: inset 0 1px 3px #eee;
  transition: all 0.3s ease;

  &:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2em color(var(--primary-color) l(90%));
  }

  &[readonly] {
    background-color: color(var(--gray) l(97%));
    color: color(var(--gray) l(65%));
    cursor: default;
    box-shadow: none;
  }

  &[disabled] {
    background-color: color(var(--gray) l(90%));
    color: color(var(--gray) l(75%));
    box-shadow: none;
    cursor: not-allowed;
  }

  &.c-input--error {
    border-color: var(--danger-color);
  }

  &::-ms-clear {
    display: none;
  }
}
textarea.c-input {
  height: auto;
  padding: 0.5em;
}
/**
* c-menu
*/
.c-menu {
  display: flex;
  background: #fff;

  & .c-menu__item {
    line-height: 3;
    padding: 0 1em;
    cursor: pointer;
    white-space: nowrap;

    & a {
      color: inherit;
      display: block;
      margin: 0 -1em;
      padding: 0 1em;
      outline-offset: -1px;
    }

    & .c-icon:first-child {
      margin-right: 0.5em;
      width: 1em;
    }

    &:hover {
      background: color(var(--primary-color) l(80%) a(0.15));
    }
  }
}
/**
 * 子菜单
 */
.c-submenu {
  position: relative;
  background-color: inherit;

  & .c-submenu__title {
    position: relative;
  }

  & .c-submenu__popup {
    background-color: inherit;
  }
}
/**
 * 横向菜单
 */
.c-menu--horizontal {
  flex-direction: row;
  border-bottom: 1px solid color(var(--gray) l(90%));

  & .c-menu__item {
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;

    &.is-active {
      border-color: var(--primary-color);
      color: var(--primary-color);
    }
  }

  & .c-submenu__popup {
    position: absolute;
    z-index: 9;
    border: 1px solid color(var(--primary-color) l(70%) a(0.15));
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    min-width: 100%;
    opacity: 0;
    transition: all 0.2s ease 0.2s;
    transform-origin: 0 0;
    transform: scaleY(0);
  }

  & .c-submenu {
    &.is-open .c-submenu__popup {
      display: block;
      opacity: 1;
      transform: scaleY(1);
    }
  }

  & .c-submenu:hover .c-submenu__title {
    background: color(var(--primary-color) l(80%) a(0.15));
  }

  & .c-submenu__popup .c-menu__item:not(:last-child) {
    border-bottom: 1px solid;
    border-color: inherit;
  }
}
/**
 * 纵向菜单
 */
.c-menu--vertical {
  flex-direction: column;
  border-right: 1px solid color(var(--gray) l(90%));

  & .c-menu__item {
    border-right: 2px solid transparent;
    margin-right: -1px;

    &.is-active {
      border-color: var(--primary-color);
      color: var(--primary-color);
      background: color(var(--primary-color) l(50%) a(0.1));
    }
  }

  & .c-submenu {
    & .c-submenu__popup {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease;
    }

    &.is-open .c-submenu__popup {
      max-height: var(--submenu-max-height);
    }

    &.is-open .c-submenu__title::after {
      transform: rotate(45deg);
    }
  }

  & .c-submenu__title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -0.25em;
    width: 0.5em;
    height: 0.5em;
    border-left: 1px solid;
    border-top: 1px solid;
    transform: rotate(225deg);
    transform-origin: 25% 25%;
    transition: transform 0.2s ease;
  }

  & .c-submenu .c-menu__item:not(.c-submenu__title) {
    padding-left: 2.5em;
  }

  & .c-submenu .c-menu__item a {
    padding-left: 2.5em;
    margin-left: -2.5em;
  }
}
/**
 * 深色主题
 */
.c-menu--dark {
  background: color(var(--primary-color) l(10%));
  border-color: transparent;
  color: #fff;

  & .c-menu__item.is-active {
    border-color: color(var(--primary-color) l(80%));
    color: color(var(--primary-color) l(80%));
  }
}
/**
 * 收起的菜单
 */
.c-menu {
  transition: width 0.2s ease;

  &.c-menu--collapsed {
    width: 4em;

    & > .c-menu__item {
      padding: 0;

      & .c-tip {
        display: block;
      }
    }

    & .c-icon {
      margin-left: 1.5em;
      transform: scale(1.2);
    }

    & > .c-menu__item a span {
      display: none;
    }

    & > .c-submenu > .c-submenu__title > span {
      display: none;
    }

    & > .c-submenu > .c-submenu__title {
      padding: 0;

      & > span {
        display: none;
      }

      &::after {
        display: none;
      }
    }

    & .c-submenu__popup {
      position: absolute;
      z-index: 9;
      visibility: visible;
      transform: scale(0);
      transform-origin: 0 0;
      top: 0;
      left: 100%;
      max-height: 20em;
      opacity: 0;
      transition: all 0.2s ease;

      & .c-menu__item:not(.c-submenu__title) {
        padding-left: 1em;
      }
    }

    & .is-open {
      & .c-submenu__title {
        color: var(--primary-color);
        background: color(var(--primary-color) l(80%) a(0.15));
      }

      & .c-submenu__popup {
        display: block;
        opacity: 1;
        transform: scale(1);
        box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
      }
    }
  }
}
/**
* c-modal
*/
.c-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background-color: rgba(0, 0, 0, 0.6);
}
.c-modal__wrapper {
  position: relative;
  width: 50%;
  top: 15%;
  margin: 0 auto;
  padding: 0 1.6em;
  background: #fff;
  border-radius: 3px;
}
.c-modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  border: none;
  background: transparent;
  vertical-align: middle;

  &:hover,
  &:focus,
  &:active {
    color: var(--primary-color);
  }
}
.c-modal__header {
  padding: 1em 1.2em 1em 0;
  line-height: 1;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-color);
}
.c-modal__body {
  padding: 1.2em 1em;
}
.c-modal__footer {
  padding: 0 0 1em;
  text-align: right;
}
/**
 * message body
 */
.c-modal-message {
  position: relative;

  & > .c-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 2em;
    color: var(--primary-color);

    &.success {
      color: var(--success-color);
    }

    &.warning {
      color: var(--warning-color);
    }

    &.error {
      color: var(--danger-color);
    }

    &.info {
      color: var(--primary-color);
    }
  }

  & > div {
    padding-left: 3em;
  }
}
/**
 * modal transition
 */
.modal-enter-active,
.modal-leave-active {
  transition: all 0.5s;
}
.modal-enter,
.modal-leave-to {
  opacity: 0;
}
.modal-enter > .c-modal__wrapper,
.modal-leave-to > .c-modal__wrapper {
  animation: zoomIn 0.5s;
}
.modal-enter > .c-modal__wrapper,
.modal-leave-to > .c-modal__wrapper {
  animation: zoomOut 0.5s;
}
/**
* c-notification
*/
.c-notification {
  position: fixed;
  display: flex;
  z-index: 9999;
}
.c-notification-topRight {
  top: 80px;
  right: 40px;
  flex-direction: column;
}
.c-notification-bottomRight {
  bottom: 80px;
  right: 40px;
  flex-direction: column-reverse;
}
.c-notification-topLeft {
  top: 80px;
  left: 40px;
  flex-direction: column;
}
.c-notification-bottomLeft {
  bottom: 80px;
  left: 40px;
  flex-direction: column-reverse;
}
.c-notice__wrapper {
  position: relative;
  margin-bottom: 16px;
  padding: 1.6em;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  width: 360px;

  & .c-notification__icon > .c-icon {
    font-size: 2em;
    padding-right: 10px;
    color: var(--primary-color);

    &.success {
      color: var(--success-color);
    }

    &.warning {
      color: var(--warning-color);
    }

    &.error {
      color: var(--danger-color);
    }

    &.info {
      color: var(--primary-color);
    }
  }
}
.c-notice__header {
  padding: 0 1.2em 0.6em 0;
  line-height: 1;
  font-size: 1.2em;
  font-weight: bold;
  color: #444;
}
.c-notice__body {
  padding: 0 1.2em 0 0;
}
.c-notice__close {
  position: absolute;
  right: 1em;
  top: 1em;
}
/**
 * notification transition
 */
.notification-enter-active,
.notification-leave-active {
  transition: all 0.5s;
}
.notification-enter,
.notification-leave-to {
  opacity: 0;
}
.c-notification-bottomLeft .notification-enter-to.notification-enter-active,
.c-notification-topLeft .notification-enter-to.notification-enter-active {
  animation-name: NotificationLeftFadeIn;
}
.c-notification .notification-enter-to {
  animation-duration: 0.24s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.notification-enter-to {
  opacity: 0;
  animation-play-state: paused;
}
.notification-enter-to,
.notification-leave-to {
  animation-duration: 0.24s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.notification-leave-to {
  animation-duration: 0.2s;
  animation-play-state: paused;
}
.notification-enter-to.notification-enter-active {
  animation-name: NotificationFadeIn;
  animation-play-state: running;
}
.notification-leave-to.notification-leave-active {
  animation-name: NotificationFadeOut;
  animation-play-state: running;
}
@keyframes NotificationFadeIn {
  0% {
    opacity: 0;
    left: 400px;
  }

  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes NotificationLeftFadeIn {
  0% {
    opacity: 0;
    right: 400px;
  }

  to {
    right: 0;
    opacity: 1;
  }
}
@keyframes NotificationFadeOut {
  0% {
    opacity: 1;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    max-height: 100px;
  }

  to {
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
  }
}
/**
* c-pagination
*/
.c-pagination {
  margin-bottom: 1em;
}
.c-pagination__total {
  display: inline-block;
  margin-right: 1em;

  & em {
    font-style: normal;
    padding: 0 0.2em;
  }
}
.c-pagination__pages {
  & > * {
    display: inline-block;
    text-align: center;
    line-height: 2;
    min-width: 2em;
    margin-right: 0.5em;
  }

  & a {
    color: inherit;
    background: color(var(--gray) a(0.1));
    border-radius: 3px;
    padding-left: 0.25em;
    padding-right: 0.25em;
    outline-offset: 0;

    &.is-disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    &.is-active,
    &:not(.is-disabled):hover {
      color: var(--primary-color);
      background: color(var(--primary-color) a(0.1));
    }
  }
}
/**
* c-pop-confirm
*/
.c-pop-confirm {
  padding: 0;
}
.c-pop-confirm__body {
  margin: 0;
}
.c-pop-confirm__footer {
  text-align: right;
  margin-top: var(--spacing-sm);
}
/**
* c-radio
*/
.c-radio {
  position: relative;
  cursor: pointer;
  user-select: none;

  & > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }

  & > .c-radio__box {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    border: 1px solid var(--gray);
    margin-right: 0.3em;
    border-radius: 1em;
    transition: all 0.2s ease;

    &::after {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      width: 1em;
      height: 1em;
      border-radius: 0.5em;
      background-color: currentColor;
      transform: scale(0);
      transition: transform 0.2s ease;
    }
  }

  &:hover > .c-radio__box {
    border-color: var(--primary-color);
  }

  & > input:checked + .c-radio__box {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
  }

  & > input:checked + .c-radio__box::after {
    transform: scale(0.5);
  }

  & > input:focus + .c-radio__box {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15em color(var(--primary-color) l(80%));
  }

  & > input[disabled] + .c-radio__box {
    border-color: var(--gray);
    background-color: color(var(--gray) l(90%));
    color: color(var(--gray) l(70%));
    cursor: not-allowed;
  }

  & > input[disabled] ~ .c-radio__label {
    color: var(--gray);
    cursor: not-allowed;
  }
}
.c-radio-group {
  display: inline-flex;
  font-size: var(--form-font-md);
  line-height: calc(var(--form-height-md) - 2px);

  &.is-xs {
    font-size: var(--form-font-xs);
    line-height: var(--form-height-xs);
    line-height: calc(var(--form-height-xs) - 2px);
  }

  &.is-sm {
    font-size: var(--form-font-sm);
    line-height: var(--form-height-sm);
    line-height: calc(var(--form-height-sm) - 2px);
  }

  &.is-lg {
    font-size: var(--form-font-lg);
    line-height: var(--form-height-lg);
    line-height: calc(var(--form-height-lg) - 2px);
  }

  &.is-xl {
    font-size: var(--form-font-xl);
    line-height: calc(var(--form-height-xl) - 2px);
  }
}
.c-radio + .c-radio {
  margin-left: 1em;
}
.c-radio--button {
  display: block;
  position: relative;

  & > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }

  & > .c-radio__label {
    position: relative;
    display: block;
    white-space: nowrap;
    border: 1px solid color(var(--gray) l(80%));
    padding: 0 1em;
    margin-left: -1px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
  }

  &:first-child .c-radio__label {
    margin-left: 0;
    border-radius: 0.3em 0 0 0.3em;
  }

  &:last-child .c-radio__label {
    border-radius: 0 0.3em 0.3em 0;
  }

  &:hover {
    color: var(--primary-color);
  }

  & > input:checked ~ .c-radio__label {
    z-index: 1;
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }

  & > input:active ~ .c-radio__label {
    z-index: 2;
    box-shadow: 0 0 0 0.4em color(var(--gray) l(50%) a(0.2));
  }

  & > input:focus ~ .c-radio__label {
    z-index: 1;
    box-shadow: 0 0 0 0.2em color(var(--primary-color) l(85%));
  }

  & > input[disabled] ~ .c-radio__label {
    background: color(var(--gray) l(95%));
    color: color(var(--gray) l(75%));
    cursor: not-allowed;
  }
}
.c-form-item__control .c-radio-group {
  /* fix IE10 alignment bug */
  vertical-align: top;
}
/**
* c-select
*/
:root {
  --select-padding-xs: 3px;
  --select-padding-sm: 3px;
  --select-padding-md: 4px;
  --select-padding-lg: 5px;
  --select-padding-xl: 6px;
}
.c-select {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  border: 1px solid color(var(--gray) l(85%));
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;

  &::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    pointer-events: none;
  }

  &:focus,
  &:focus-within {
    outline: none;
    box-shadow: 0 0 0 0.2em color(var(--primary-color) a(var(--focus-ring-opacity)));
  }

  &.is-disabled {
    background: color(var(--gray) l(95%));
    cursor: not-allowed;

    & .c-select__selection {
      opacity: 0.3;
    }
  }
}
.c-select__selection {
  position: relative;
  padding-right: 2em;
  background: #fff;
  overflow: hidden;
  min-height: inherit;
  margin: -1px;

  & .c-chip {
    float: left;

    &.is-disabled {
      color: color(var(--gray) l(80%));
      padding-right: 4px;

      & .c-chip__close {
        display: none;
      }
    }
  }
}
.c-select__value,
.c-select__placeholder {
  color: var(--text-color);
  cursor: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-select__placeholder {
  color: color(var(--gray) l(50%));
}
.c-select__menu {
  position: absolute;
  z-index: 9;
  border-radius: 0.2em;
  background: #fff;
  font-size: var(--form-font-md);
  border: 1px solid color(var(--gray) l(85%));
  box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.2);
  line-height: 1.5;
  max-height: calc(25em + 2px);
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;

  &.is-xs {
    font-size: var(--form-font-xs);
  }

  &.is-sm {
    font-size: var(--form-font-sm);
  }

  &.is-lg {
    font-size: var(--form-font-lg);
  }

  &.is-xl {
    font-size: var(--form-font-xl);
  }
}
.c-select__empty {
  padding: 0.5em 1em;
  color: var(--gray);
}
.c-select__input {
  &.is-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    & input {
      padding-right: 1.8em;
    }
  }

  &.is-multiple {
    float: left;
    width: 4em;
    overflow: visible;
    margin-top: 0.5em;

    & input {
      height: 1.5em;
      width: 20em;
    }
  }

  & input {
    display: block;
    width: 100%;
    border: none;
    height: 2.5em;
    padding: 0 0.5em;

    &:focus {
      outline: none;
    }
  }
}
.c-select__caret {
  position: absolute;
  z-index: 1;
  right: 0.5em;
  top: 50%;
  margin-top: -6px;
  color: var(--gray);
  border: 4px solid;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
  transform-origin: 25% 75%;
  transition: transform 0.2s ease;
}
.is-open .c-select__caret {
  transform: rotate(-225deg);
}
.c-select__option {
  display: block;
  padding: 0.5em 1.5em;
  cursor: pointer;
  position: relative;

  &.is-selected {
    color: var(--primary-color);
    background: color(var(--gray) l(97%));

    &::after {
      content: '';
      position: absolute;
      top: 1em;
      right: 0.5em;
      height: 0.25em;
      width: 0.5em;
      transform: rotate(-45deg);
      border-left: 1px solid;
      border-bottom: 1px solid;
    }
  }

  &.is-hover {
    background: color(var(--primary-color) l(95%));
  }

  &.is-disabled {
    background: #fff;
    cursor: not-allowed;
    color: color(var(--gray) l(80%));
  }
}
/*
 * TODO: move to chip component
 */
.c-chip {
  display: inline-block;
  position: relative;
  background: color(var(--gray) l(95%));
  border-radius: 3px;
  white-space: nowrap;
  max-width: 10em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-chip__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1.4em;
  cursor: pointer;

  &:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  & .c-icon {
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    right: 0.3em;
    line-height: 1;
  }
}
/**
 * sizing
 */
.c-select {
  font-size: var(--form-font-md);
  width: var(--form-width-normal);
  min-height: var(--form-height-md);
}
.c-select__selection {
  line-height: calc(var(--form-height-md) - 2 * var(--select-padding-md));
  padding-bottom: var(--select-padding-md);

  & .c-chip {
    line-height: inherit;
    padding: 0 0.4em;
    margin-left: var(--select-padding-md);
    margin-top: var(--select-padding-md);

    &.is-closeable {
      padding-right: 1.5em;
    }
  }
}
.c-select__placeholder,
.c-select__value {
  padding: var(--select-padding-md) calc(var(--select-padding-md) + 1px) 0;
}
.c-select {
  /* sizing */
  &.is-xs {
    font-size: var(--form-font-xs);
    min-height: var(--form-height-xs);

    & .c-select__selection {
      line-height: calc(var(--form-height-xs) - 2 * var(--select-padding-xs));
      padding-bottom: var(--select-padding-xs);

      & .c-chip {
        margin-left: var(--select-padding-xs);
        margin-top: var(--select-padding-xs);
      }
    }

    & .c-select__placeholder,
    & .c-select__value {
      padding: var(--select-padding-xs) calc(var(--select-padding-xs) + 1px) 0;
    }
  }

  &.is-sm {
    font-size: var(--form-font-sm);
    min-height: var(--form-height-sm);

    & .c-select__selection {
      line-height: calc(var(--form-height-sm) - 2 * var(--select-padding-sm));
      padding-bottom: var(--select-padding-sm);

      & .c-chip {
        margin-left: var(--select-padding-sm);
        margin-top: var(--select-padding-sm);
      }
    }

    & .c-select__placeholder,
    & .c-select__value {
      padding: var(--select-padding-sm) calc(var(--select-padding-sm) + 1px) 0;
    }
  }

  &.is-lg {
    font-size: var(--form-font-lg);
    min-height: var(--form-height-lg);

    & .c-select__selection {
      line-height: calc(var(--form-height-lg) - 2 * var(--select-padding-lg));
      padding-bottom: var(--select-padding-lg);

      & .c-chip {
        margin-left: var(--select-padding-lg);
        margin-top: var(--select-padding-lg);
      }
    }

    & .c-select__placeholder,
    & .c-select__value {
      padding: var(--select-padding-lg) calc(var(--select-padding-lg) + 1px) 0;
    }
  }

  &.is-xl {
    font-size: var(--form-font-xl);
    min-height: var(--form-height-xl);

    & .c-select__selection {
      line-height: calc(var(--form-height-xl) - 2 * var(--select-padding-xl));
      padding-bottom: var(--select-padding-xl);

      & .c-chip {
        margin-left: var(--select-padding-xl);
        margin-top: var(--select-padding-xl);
      }
    }

    & .c-select__placeholder,
    & .c-select__value {
      padding: var(--select-padding-xl) calc(var(--select-padding-xl) + 1px) 0;
    }
  }

  &.is-shortest {
    width: var(--form-width-shortest);
  }

  &.is-shorter {
    width: var(--form-width-shorter);
  }

  &.is-short {
    width: var(--form-width-short);
  }

  &.is-long {
    width: var(--form-width-long);
  }

  &.is-longer {
    width: var(--form-width-longer);
  }

  &.is-longest {
    width: 50em;
    width: var(--form-width-longest);
  }

  &.is-flexible {
    display: block;
    width: 100%;
  }
}
.c-slider {
  position: relative;
  border-radius: 0.25em;
  margin: 1em 0;
  background-color: color(var(--gray) l(92%));
  cursor: pointer;

  & > input[type="range"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }

  & > input[type="range"]:focus ~ .c-slider__thumb {
    box-shadow: 0 0 0 0.15em color(var(--primary-color) l(80%));
  }
}
.c-slider__progress {
  background-color: color(var(--blue) l(68%));
}
.c-slider--disabled {
  cursor: not-allowed;

  & > .c-slider__progress {
    background-color: color(var(--gray) l(75%));
  }

  & > .c-slider__thumb {
    border-color: color(var(--gray) l(70%));

    &:active {
      box-shadow: none;
    }
  }
}
.c-slider__thumb {
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border: 3px solid var(--blue);
  border-radius: 50%;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
.c-slider__thumb--hover,
.c-slider__thumb--dragging {
  box-shadow: 0 0 0 0.15em color(var(--primary-color) l(80%));
}
.c-slider__thumb--hover > .c-slider__tip,
.c-slider__thumb--dragging > .c-slider__tip {
  display: block;
}
.c-slider__tip {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -150%);
  padding: 0 0.4em;
  min-width: 3em;
  color: #fff;
  background-color: var(--dark);
  text-align: center;
  border-radius: 3px;
  white-space: nowrap;

  &::after {
    content: " ";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0.3em;
    height: 0.3em;
    margin-left: -0.15em;
    margin-top: -0.2em;
    transform: rotate(-45deg);
    background-color: var(--dark);
  }
}
.c-slider__marks {
  position: relative;

  & > li {
    position: absolute;
    margin: 0 !important;
    list-style: none !important;
    white-space: nowrap;
  }
}
.c-slider--horizontal {
  height: 0.4em;

  & .c-slider__thumb {
    top: 0;
    margin-top: -0.4em;
    transform: translateX(-50%);
  }

  & .c-slider__progress {
    width: 0;
    height: 0.4em;
    border-radius: 0.25em;
  }

  & .c-slider__marks {
    margin-top: 0.5em;

    & > li {
      transform: translateX(-50%);
    }
  }

  & .c-slider__stops {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;

    & > span {
      position: absolute;
      width: 2px;
      height: 0.4em;
      transform: translateX(-50%);
      background: #fff;
    }
  }
}
.c-slider--vertical {
  width: 0.4em;
  height: 300px;

  & .c-slider__thumb {
    left: 0;
    margin-left: -0.4em;
    transform: translateY(50%);
  }

  & .c-slider__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.25em;
  }

  .c-slider__tip {
    position: absolute;
    transform: translate(-50%, -160%);
    background-color: var(--dark);
    padding: 0 0.2em;
    color: #fff;
    min-width: 3em;
    text-align: center;
    border-radius: 3px;
  }

  & .c-slider__marks {
    height: 100%;
    left: 2em;
    padding: 0 0 0 1em;

    & > li {
      left: 100%;
      transform: translate(-50%, 50%);
    }
  }

  & .c-slider__stops {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    & > span {
      position: absolute;
      width: 100%;
      height: 0.2em;
      transform: translateY(50%);
      background: #fff;
    }
  }
}
/**
* c-steps
*/
.c-steps-container {
  display: flex;

  &.c-steps-horizontal {
    flex-direction: row;

    & .left:not(:last-child) .c-title::after,
    & .top:not(:last-child) .c-step-header::after {
      position: absolute;
      content: '';
      display: block;
      width: 9999px;
      height: 1px;
      background-color: color(var(--gray) l(var(--button-lightness-disabled)));
      left: 100%;
      top: 19px;
    }

    & .left:not(:last-child) .c-title::after {
      left: 100%;
    }

    & .top:not(:last-child) .c-step-header::after {
      left: 56px;
    }
  }

  &.c-steps-vertical {
    flex-direction: column;

    & .c-step {
      display: flex;
      flex-direction: row;

      & .c-step-header {
        margin-right: 20px;
        position: relative;
        padding-bottom: 8px;
      }

      &:not(:last-child) .c-step-header::after {
        content: '';
        display: block;
        width: 1px;
        height: 30px;
        background-color: color(var(--gray) l(var(--button-lightness-disabled)));
        margin-left: 19px;
        margin-top: 8px;
      }
    }
  }
}
.c-step {
  display: flex;

  & .c-title {
    height: 36px;
    line-height: 36px;
    font-size: 16px;
  }

  &.top {
    flex-direction: column;
  }

  &.left {
    flex-direction: row;
    overflow: hidden;

    & .c-step-header {
      margin-right: 10px;
    }

    & .c-title {
      position: relative;
      display: inline-block;
      vertical-align: top;
      padding-right: 20px;
    }
  }
}
.c-step:not(:last-child) {
  flex: 1;
  margin-right: 20px;

  & .c-step-header {
    position: relative;
    overflow: hidden;
  }
}
.c-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: color(var(--gray) l(+30%));
  border: 2px solid color(var(--gray) l(+10%));
  box-sizing: border-box;
  color: color(var(--gray) l(+10%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.c-step.active .c-step-icon,
.c-step.loading .c-step-icon {
  background: var(--primary-color);
  border: 2px solid color(var(--primary-color) l(-10%));
  color: #fff;
}
.c-step.loading .c-icon {
  animation: spin 2s infinite linear;
}
.c-step.success .c-step-icon {
  background: var(--success-color);
  border: 2px solid color(var(--success-color) l(-10%));
  color: #fff;
}
.c-step.warning .c-step-icon {
  background: var(--warning-color);
  border: 2px solid color(var(--warning-color) l(-10%));
  color: #fff;
}
.c-step.error .c-step-icon {
  background: var(--danger-color);
  border: 2px solid color(var(--danger-color) l(-10%));
  color: #fff;
}
.c-step-description {
  color: #888;
}
/**
* c-switch
*/
.c-switch {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.c-switch__checkbox {
  position: absolute;
  width: 0;
  height: 0;
  -webkit-appearance: none;
  margin: 0;
  opacity: 0;
}
.c-switch__layoutbox {
  position: relative;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  cursor: pointer;
  background-color: color(var(--gray) l(+30%));
  border: 2px solid color(var(--gray) l(+30%));
  transition: all 0.2s linear;

  &::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 10px;
    transition: all 0.2s linear;
  }
}
.c-switch__innerbox {
  position: absolute;
  display: flex;
  align-items: center;
  height: 16px;
  left: 100%;
  margin-left: -16px;
  color: #fff;
}
.c-switch__checkbox:checked + .c-switch__layoutbox {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);

  & .c-switch__innerbox {
    left: 2px;
    margin-left: 0;
  }

  &::after {
    left: 100%;
    margin-left: -16px;
  }
}
.c-switch__checkbox:disabled + .c-switch__layoutbox {
  opacity: 0.65;
  cursor: not-allowed;
}
.c-switch.is-sm {
  & .c-switch__layoutbox {
    width: 30px;
    height: 14px;
    border-radius: 7px;

    &::after {
      width: 10px;
      height: 10px;
    }
  }

  & .c-switch__checkbox:checked + .c-switch__layoutbox::after {
    margin-left: -10px;
  }
}
/**
* c-table
*/
.c-table__sm {
  & table th,
  & table td {
    font-size: 12px;
  }
}
.c-table__md {
  & table th,
  & table td {
    font-size: 14px;
  }
}
.c-table__lg {
  & table th,
  & table td {
    font-size: 16px;
  }
}
.c-fixtable__left,
.c-fixtable__right {
  position: absolute;
  top: 0;
  z-index: 1;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
.c-fixtable__left {
  left: 0;
}
.c-fixtable__right {
  right: 0;
  background: rgb(246, 250, 253);
}
.c-fixed__leftscroll {
  box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.2);
}
.c-fixed__rightscroll {
  box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.2);
}
.c-scroll__thead {
  overflow-x: hidden;
  overflow-y: scroll;

  & table {
    table-layout: fixed;
  }
}
.c-fixtable__left .c-scroll__thead {
  overflow-y: hidden;
}
.c-table__body table {
  width: 100%;
  margin: 0;
  table-layout: fixed;
}
.c-scroll__table,
.c-scroll__tbody,
.c-scrolltable {
  overflow-x: auto;
  position: relative;

  & table {
    table-layout: fixed;
  }
}
.c-table {
  position: relative;

  & table {
    width: 100%;
    overflow: auto;
    border-spacing: 0;
    border-collapse: collapse;
    margin: 0;

    & th,
    & td {
      text-align: left;
      padding: 0.7em 1em;
      border: 0;
    }

    & thead {
      & tr {
        background: color(var(--blue) l(98%));

        & th {
          color: color(var(--text-color) l(35%));
          font-weight: normal;
          padding-top: 0;
          padding-bottom: 0;
          vertical-align: middle;

          &[colspan]:not([colspan="1"]) {
            text-align: center !important;
          }
        }
      }
    }

    & tbody {
      & tr {
        background-color: #fff;

        &.row-hover {
          background: color(var(--primary-color) l(95%));
        }

        & td {
          color: color(var(--text-color));
        }

        & .c-table__noresult {
          text-align: center;
        }
      }
    }

    & .c-checkbox {
      line-height: inherit;
    }
  }

  &.c-table__horizon {
    border-bottom: 1px solid color(var(--gray) l(85%));

    & table {
      & th,
      & td {
        border-top: 1px solid color(var(--gray) l(85%));
      }
    }
  }

  &.c-table__vertical {
    border-top: 1px solid color(var(--gray) l(85%));
    border-bottom: 1px solid color(var(--gray) l(85%));
  }

  &.c-table__group {
    border-color: color(var(--gray) l(85%));
    border-bottom: 1px solid color(var(--gray) l(85%));

    & table th,
    & table td {
      &.c-table__bl {
        border-left: 1px solid color(var(--gray) l(85%));
      }

      &.c-table__br {
        border-right: 1px solid color(var(--gray) l(85%));
      }
    }

    & table th {
      border-top: 1px solid color(var(--gray) l(85%));
      border-bottom: 1px solid color(var(--gray) l(85%));

      &[colspan]:not([colspan="1"]) {
        border-left: 1px solid color(var(--gray) l(85%));
        border-right: 1px solid color(var(--gray) l(85%));
      }
    }
  }
}
.c-table__body {
  overflow-y: auto;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.c-table__all.c-table {
  & table {
    & th,
    & td {
      border: 1px solid color(var(--gray) l(85%));
    }
  }
}
.c-table__vertical.c-table {
  & table th,
  & table td {
    border-left: 1px solid color(var(--gray) l(85%));

    &:first-child {
      border-left: 0;
    }
  }
}
.c-table__group.c-table {
  & table th:first-child {
    border-left: 1px solid color(var(--gray) l(85%));
  }

  & table th:last-child {
    border-right: 1px solid color(var(--gray) l(85%));
  }
}
.c-table__wrapper .c-fixtable__left table,
.c-table__wrapper .c-fixtable__right table {
  width: auto;
  table-layout: fixed;
}
.c-table__vertical {
  &.c-table__horizon.c-table {
    border-top: 0;
  }

  &.c-table .c-fixtable__right {
    & table {
      & th,
      & td {
        border-left: 1px solid color(var(--gray) l(85%));
      }
    }
  }
}
.c-table__sort {
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;

  & .c-sort-asc,
  & .c-sort-desc {
    line-height: 6px;
    display: block;
    width: 1em;
    height: 6px;
    cursor: pointer;
    text-align: center;
    position: relative;

    & i.sort-asc {
      top: -8px;
    }

    & i.sort-desc {
      top: 18px;
    }

    & i.sort-asc::before,
    & i.sort-desc::before {
      content: '';
      width: 0;
      height: 0;
      border-bottom: 5px dashed;
      border-right: 4px solid transparent;
      border-left: 4px solid transparent;
      display: block;
    }

    & i.sort-desc::before {
      border-top: 5px dashed;
      border-bottom: 0;
    }

    &.sorted,
    &:hover {
      color: color(var(--primary-color));
    }

    &::after {
      position: absolute;
      content: '';
      height: 20px;
      width: 14px;
      left: 0;
      top: 3px;
    }
  }

  & .c-sort-asc::after {
    top: -23px;
  }
}
/* border */
.c-table__box {
  &.c-table {
    border: 1px solid color(var(--gray) l(85%));
  }
}
.c-table__wrapper {
  & .c-fixtable__left {
    & .c-table__body {
      border-bottom: 0;
      -ms-overflow-style: none;
      overflow: hidden;
    }
  }

  & .c-table__headwrapper + .c-table__bodywrapper {
    & table {
      border-top: 0;
    }
  }
}
.c-table__all.c-table .c-table__wrapper {
  & table tbody tr:first-child td {
    border-top: 0;
  }
}
/**
* c-tabs
*/
.c-tabs {
  display: flex;

  & div[role="tab"] {
    box-sizing: border-box;
    outline: none;
    border: 2px solid transparent;
    border-radius: 3px;
  }

  & .is-active.is-focused {
    border: 2px solid var(--primary-color);
    box-shadow: inset 0 0 2px color(var(--primary-color) l(var(--button-lightness-active)));
  }
}
.tabs-nav {
  position: relative;
  list-style: none;
  transition: color cubic-bezier(0.645, 0.045, 0.355, 1);
  border: transparent;

  & .tabs-nav__item {
    cursor: pointer;
    padding: 0 0.6em;
    line-height: 2.8em;
    color: var(--black);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);

    &:hover,
    &.is-active {
      color: var(--primary-color);
    }

    &.disabled {
      color: color(var(--gray) l(80%));
      cursor: not-allowed;
    }
  }

  & .tabs-nav--item:last-child {
    margin-right: 0;
  }
}
.nav-outer {
  display: flex;
}
.nav-bar__active {
  z-index: 1;
  position: absolute;
  box-sizing: border-box;
  background-color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-tabs--top {
  flex-direction: column;
}
.c-tabs--bottom {
  flex-direction: column-reverse;
}
.c-tabs--top .tabs-nav,
.c-tabs--bottom .tabs-nav {
  border-bottom: 1px solid color(var(--gray) l(90%));

  & .tabs-nav__item {
    margin-right: 1.5em;
  }

  & .nav-bar__active {
    height: 2px;
    bottom: -1px;
  }
}
.c-tabs--left {
  flex-direction: row;

  & .nav-outer {
    flex-direction: column;
  }

  & .tabs-nav {
    border-right: 1px solid color(var(--gray) l(90%));

    & .nav-bar__active {
      width: 2px;
      right: -1px;
    }
  }
}
.c-tabs--right {
  flex-direction: row-reverse;

  & .nav-outer {
    flex-direction: column;
  }

  & .tabs-nav {
    border-left: 1px solid color(var(--gray) l(90%));

    & .nav-bar__active {
      width: 2px;
      left: -1px;
    }
  }
}
.c-tabs--left > .tabs-nav__item:not(:nth-last-child(2)),
.c-tabs--right > .tabs-nav__item:not(:nth-last-child(2)) {
  margin-bottom: 0.6em;
}
.tab-pane__content {
  padding: 0.6em;
  flex-grow: 1;
}
.c-tabs--card {
  display: block;
  border: 1px solid color(var(--gray) l(90%));

  & .tabs-nav {
    display: flex;
    background: color(var(--primary-color) l(50%) a(0.1));

    & .tabs-nav__item {
      padding: 0 1.5em;
      margin-right: 0;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;

      &.is-active {
        background-color: #fff;
        position: relative;

        &::after {
          position: absolute;
          z-index: 1;
          content: '';
          width: 100%;
          height: 1px;
          background-color: #fff;
          left: 0;
          bottom: -1px;
        }
      }

      &:first-child.is-active {
        border-right: 1px solid color(var(--gray) l(90%));
      }

      &:not(:first-child).is-active {
        border-left-color: color(var(--gray) l(90%));
        border-right-color: color(var(--gray) l(90%));
      }
    }
  }
}
/**
* c-timepicker
*/
.c-timepicker {
  display: inline-block;
  position: relative;
  border-radius: 0.2em;

  & .c-input-wrap {
    width: 12em;
  }

  & input {
    margin: 0;
    width: 100%;
  }

  & .c-timepicker__icon {
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    color: color(var(--text-color) l(65%));

    &.disabled {
      cursor: not-allowed;
    }
  }

  & .c-timepicker__hovericon {
    z-index: -1;
    opacity: 0;
  }

  &:hover .c-timepicker__hovericon + .c-timepicker__icon {
    z-index: -1;
    opacity: 0;
  }

  &:hover .c-timepicker__hovericon {
    z-index: 2;
    opacity: 1;
  }
}
.c-timepicker__panel {
  display: flex;
  width: 12em;

  & li {
    list-style: none;
    color: color(var(--text-color));
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0;
    padding: 0 0 0 12px;
    width: 100%;
    height: 2em;
    line-height: 2em;
    text-align: left;
    cursor: pointer;
  }

  & li.disabled {
    color: color(var(--gray) l(95%));
  }

  & li.active {
    font-weight: bold;
    color: color(var(--text-color));
    background: color(var(--gray) l(95%));
  }
}
.c-timerange__panel,
.c-timepicker__wrap {
  display: none;
  background: #fff;
  border: 1px solid #d4d9db;
  overflow: hidden;

  & ul {
    list-style: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 12em;
    text-align: center;
    margin: 0;
  }

  & .c-timepicker__item {
    flex: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    max-height: 14em;

    &:hover {
      overflow-y: auto;
    }
  }

  & .c-timepicker__item + .c-timepicker__item {
    border-left: 1px solid color(var(--gray) l(85%));
  }
}
.show {
  display: block;
}
.c-timepicker__timerange {
  width: 15em;
  border: 1px solid color(var(--gray) l(85%));
  border-radius: 3px;


  & .c-timerange__wrapper {
    display: flex;

    &.readonly {
      background-color: color(var(--gray) l(97%));
      color: color(var(--gray) l(65%));
      cursor: default;
    }

    &.disabled {
      background-color: color(var(--gray) l(90%));
      color: color(var(--gray) l(75%));
      cursor: not-allowed;
    }

    & input {
      border: 0;
      box-shadow: none;
    }

    & span {
      line-height: 32px;
    }

    &.is-size__lg span {
      line-height: 40px;
      font-size: 16px;
    }

    &.is-size__sm span {
      line-height: 26px;
      font-size: 12px;
    }
  }
}
.c-timerange__panel {
  display: none;
  border-left: 1px solid color(var(--gray) l(85%));

  &.show {
    display: block;
  }

  & .c-timerange__container {
    display: flex;
  }

  & .c-timepicker__wrap {
    display: block;
    border: 0;

    & p {
      width: 100%;
      text-align: center;
    }
  }

  & .c-timepicker__panel {
    border: 1px solid color(var(--gray) l(85%));
    margin: 0.5em;
  }

  & .c-timerange__btns {
    text-align: right;
    margin: 0.5em;
  }
}
/**
* c-tip
*/
.c-tip {
  position: relative;
  display: inline-block;
}
.c-tip__container {
  position: absolute;
  padding: 10px 16px;
  color: var(--tooltip-color-dark);
  background-color: var(--tooltip-bg-dark);
  border-radius: 4px;
  visibility: hidden;
  transition: visibility 0.5s ease, opacity 0.5s ease;
}
.c-tip__arrow {
  position: absolute;
  margin: auto;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}
.c-tip__arrow--top {
  bottom: 100%;
  left: 0;
  right: 0;
  border-bottom-color: var(--tooltip-bg-dark);
}
.c-tip__arrow--right {
  top: 0;
  left: 100%;
  bottom: 0;
  border-left-color: var(--tooltip-bg-dark);
}
.c-tip__arrow--bottom {
  top: 100%;
  left: 0;
  right: 0;
  border-top-color: var(--tooltip-bg-dark);
}
.c-tip__arrow--left {
  top: 0;
  right: 100%;
  bottom: 0;
  border-right-color: var(--tooltip-bg-dark);
}
.c-tip__container--light {
  background-color: var(--tooltip-bg-light);
  color: var(--tooltip-color-light);
  padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);

  & > .c-tip__arrow {
    width: 10px;
    height: 10px;
    transform: rotateZ(45deg);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  & > .c-tip__arrow--top {
    margin-bottom: -5px;
    border-right: 0;
    border-bottom: 0;
  }

  & > .c-tip__arrow--right {
    margin-left: -5px;
    border-bottom: 0;
    border-left: 0;
  }

  & > .c-tip__arrow--bottom {
    margin-top: -5px;
    border-left: 0;
    border-top: 0;
  }

  & > .c-tip__arrow--left {
    margin-right: -5px;
    border-top: 0;
    border-right: 0;
  }
}
@supports (filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3))) {
  .c-tip__container--light {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
    box-shadow: none;

    & > .c-tip__arrow {
      border: none;
    }
  }
}
.c-toolbar {
  display: flex;
  line-height: 3em;
  background: #fff;
  color: color(var(--primary-color) l(15%));
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.15);

  &.is-primary {
    background: var(--primary-color);
    color: #fff;
  }

  & > .c-toolbar__item {
    display: flex;

    & > a {
      display: block;
      color: inherit;
      padding: 0 1em;

      &:hover {
        background: rgba(0, 0, 0, 0.1);
        cursor: pointer;
      }

      &:active,
      &:focus {
        box-shadow: none;
        outline-offset: -0.12em;
      }
    }

    & > .c-button {
      background: none;
      height: 100%;
      font-size: inherit;
      border: none;
      border-radius: 0;
      color: inherit;

      &:hover {
        background: rgba(0, 0, 0, 0.1);
      }

      &:active,
      &:focus {
        box-shadow: none;
        outline: 1px solid;
        outline-offset: -1px;
      }
    }
  }

  & > .is-flex {
    flex: 1;
  }
}
/**
* c-tree
*/
.c-tree__title {
  display: flex;
  cursor: pointer;
  line-height: 1.8;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  align-items: center;

  &.is-leaf {
    margin-left: 1.4em;
    padding-left: 0.4em;
  }

  & .c-icon {
    padding: 0.4em;
  }

  & .c-checkbox {
    line-height: 24px;
    margin-right: 0.3em;
  }

  &:hover {
    background: color(var(--primary-color) l(98%));
  }
}
.c-tree__label {
  flex: 1;
}
.c-tree_children {
  margin-left: 1.4em;
}
/**
* c-upload
*/
