/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}
/* PADDING */
.CodeMirror-lines{
  padding: 4px 0;
  /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */
}
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
.CodeMirror-guttermarker {
  color: black;
}
.CodeMirror-guttermarker-subtle {
  color: #999;
}
/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-webkit-keyframes blink {
  0% {}
  50% {
    background-color: transparent;
  }
  100% {}
}
@keyframes blink {
  0% {}
  50% {
    background-color: transparent;
  }
  100% {}
}
/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue;
}
.cm-s-default .cm-quote {
  color: #090;
}
.cm-negative {
  color: #d44;
}
.cm-positive {
  color: #292;
}
.cm-header, .cm-strong {
  font-weight: 700;
}
.cm-em {
  font-style: italic;
}
.cm-link {
  text-decoration: underline;
}
.cm-strikethrough {
  text-decoration: line-through;
}
.cm-s-default .cm-keyword {
  color: #708;
}
.cm-s-default .cm-atom {
  color: #219;
}
.cm-s-default .cm-number {
  color: #164;
}
.cm-s-default .cm-def {
  color: #00f;
}
.cm-s-default .cm-variable, .cm-s-default .cm-punctuation, .cm-s-default .cm-property, .cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {
  color: #05a;
}
.cm-s-default .cm-variable-3 {
  color: #085;
}
.cm-s-default .cm-comment {
  color: #a50;
}
.cm-s-default .cm-string {
  color: #a11;
}
.cm-s-default .cm-string-2 {
  color: #f50;
}
.cm-s-default .cm-meta {
  color: #555;
}
.cm-s-default .cm-qualifier {
  color: #555;
}
.cm-s-default .cm-builtin {
  color: #30a;
}
.cm-s-default .cm-bracket {
  color: #997;
}
.cm-s-default .cm-tag {
  color: #170;
}
.cm-s-default .cm-attribute {
  color: #00c;
}
.cm-s-default .cm-hr {
  color: #999;
}
.cm-s-default .cm-link {
  color: #00c;
}
.cm-s-default .cm-error {
  color: #f00;
}
.cm-invalidchar {
  color: #f00;
}
.CodeMirror-composing {
  border-bottom: 2px solid;
}
/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, .3);
}
.CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
.CodeMirror-widget {}
.CodeMirror-code {
  outline: none;
}
/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber {
  box-sizing: content-box;
}
.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre {
  position: static;
}
div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}
.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
.CodeMirror-selected {
  background: #d9d9d9;
}
.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
.CodeMirror-crosshair {
  cursor: crosshair;
}
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}
/* Used to force a border model for a node */
.cm-force-border {
  padding-right: .1px;
}
@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: '';
}
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none;
}
/*

    Name:       material
    Author:     Michael Kaminsky (http://github.com/mkaminsky11)

    Original material color scheme by Mattia Astorino (https://github.com/equinusocio/material-theme)

*/
.cm-s-material.CodeMirror {
  background-color: #263238;
  color: rgba(233, 237, 237, 1);
}
.cm-s-material .CodeMirror-gutters {
  background: #34495e;
  color: rgb(83,127,126);
  border: none;
  border-left: 6px solid #41B883;
  padding-left: 8px;
}
.cm-s-material .CodeMirror-guttermarker, .cm-s-material .CodeMirror-guttermarker-subtle, .cm-s-material .CodeMirror-linenumber {
  color: rgb(83,127,126);
}
.cm-s-material .CodeMirror-cursor {
  border-left: 1px solid #f8f8f0;
}
.cm-s-material div.CodeMirror-selected {
  background: rgba(255, 255, 255, 0.15);
}
.cm-s-material.CodeMirror-focused div.CodeMirror-selected {
  background: rgba(255, 255, 255, 0.10);
}
.cm-s-material .CodeMirror-line::-moz-selection, .cm-s-material .CodeMirror-line > span::-moz-selection, .cm-s-material .CodeMirror-line > span > span::-moz-selection {
  background: rgba(255, 255, 255, 0.10);
}
.cm-s-material .CodeMirror-line::selection, .cm-s-material .CodeMirror-line > span::selection, .cm-s-material .CodeMirror-line > span > span::selection {
  background: rgba(255, 255, 255, 0.10);
}
.cm-s-material .CodeMirror-line::-moz-selection, .cm-s-material .CodeMirror-line > span::-moz-selection, .cm-s-material .CodeMirror-line > span > span::-moz-selection {
  background: rgba(255, 255, 255, 0.10);
}
.cm-s-material .CodeMirror-activeline-background {
  background: rgba(0, 0, 0, 0);
}
.cm-s-material .cm-keyword {
  color: rgba(199, 146, 234, 1);
}
.cm-s-material .cm-operator {
  color: rgba(233, 237, 237, 1);
}
.cm-s-material .cm-variable-2 {
  color: #80CBC4;
}
.cm-s-material .cm-variable-3 {
  color: #82B1FF;
}
.cm-s-material .cm-builtin {
  color: #DECB6B;
}
.cm-s-material .cm-atom {
  color: #F77669;
}
.cm-s-material .cm-number {
  color: #F77669;
}
.cm-s-material .cm-def {
  color: rgba(233, 237, 237, 1);
}
.cm-s-material .cm-string {
  color: #C3E88D;
}
.cm-s-material .cm-string-2 {
  color: #80CBC4;
}
.cm-s-material .cm-comment {
  color: #546E7A;
}
.cm-s-material .cm-variable {
  color: #82B1FF;
}
.cm-s-material .cm-tag {
  color: #80CBC4;
}
.cm-s-material .cm-meta {
  color: #80CBC4;
}
.cm-s-material .cm-attribute {
  color: #FFCB6B;
}
.cm-s-material .cm-property {
  color: #80CBAE;
}
.cm-s-material .cm-qualifier {
  color: #DECB6B;
}
.cm-s-material .cm-variable-3 {
  color: #DECB6B;
}
.cm-s-material .cm-tag {
  color: rgba(255, 83, 112, 1);
}
.cm-s-material .cm-error {
  color: rgba(255, 255, 255, 1.0);
  background-color: #EC5F67;
}
.cm-s-material .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important;
}

.vuep {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
  height: 400px;
}

.vuep ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #F5F5F5;
}

.vuep ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
}

.vuep ::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #bbb;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.vuep ::-webkit-scrollbar-thumb:hover {
  border-radius: 8px;
  background-color: #777;
}

.vuep-editor, .vuep-preview, .vuep-error {
  border-radius: 2px;
  height: inherit;
  margin-right: 24px;
  overflow: auto;
  width: 50%;
}
.vuep-editor .CodeMirror-line {
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.8em;
  overflow: visible;
  background-color: transparent; 
}
.vuep-editor .CodeMirror, .vuep-preview .CodeMirror, .vuep-error .CodeMirror {
  height: inherit;
}

.vuep-editor:last-child, .vuep-preview:last-child, .vuep-error:last-child {
  margin-right: 0;
}

.vuep-editor {
  line-height: 1.2em;
}

.vuep-error {
  color: #f66;
}

.vuep-preview, .vuep-error {
  border: 1px solid #eee;
  box-sizing: border-box;
  padding: 25px 35px;
}

@media (max-width: 1246px) {
  .vuep {
    display: block;
    height: auto;
  }

  .vuep-editor, .vuep-preview, .vuep-error {
    margin: 0 0 24px 0;
    width: 100%;
  }
  .vuep-editor {
   max-height: 400px;
  }
}
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */

article,
aside,
details, /* 1 */
figcaption,
figure,
footer,
header,
main, /* 2 */
menu,
nav,
section,
summary { /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */

template, /* 1 */
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * 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 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */

a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in 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;
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * 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;
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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 */
}

/* Forms
   ========================================================================== */

/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
select,
textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */

optgroup {
  font-weight: bold;
}

/**
 * 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;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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 */
}

/**
 * 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 OS X.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 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 */
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  font-family: Roboto, Lato, sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.87);
  border: 1px solid '/Users/jiayihu/jiayi/projects/v-verify/node_modules/muse-ui/src/styles/themes/variables/green.less';
}
body,
html {
  overflow-x: hidden;
  overflow-y: auto;
}
pre {
  white-space: pre-wrap;
  word-break: break-all;
  margin: 0;
}
a {
  text-decoration: none;
  color: #ff4081;
  user-select: none;
  -webkit-user-select: none;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.row > [class*="col-"] {
  box-sizing: border-box;
}
@media all and (max-width: 600px) {
  .row .col-auto {
    width: 100%;
  }
  .row .col-100 {
    width: 100%;
    width: -webkit-calc((100% - 16px*0) / 1);
    width: calc((100% - 16px*0) / 1);
  }
  .row.no-gutter .col-100 {
    width: 100%;
  }
  .row .col-95 {
    width: 95%;
    width: -webkit-calc((100% - 16px*0.05263157894736836) / 1.0526315789473684);
    width: calc((100% - 16px*0.05263157894736836) / 1.0526315789473684);
  }
  .row.no-gutter .col-95 {
    width: 95%;
  }
  .row .col-90 {
    width: 90%;
    width: -webkit-calc((100% - 16px*0.11111111111111116) / 1.1111111111111112);
    width: calc((100% - 16px*0.11111111111111116) / 1.1111111111111112);
  }
  .row.no-gutter .col-90 {
    width: 90%;
  }
  .row .col-85 {
    width: 85%;
    width: -webkit-calc((100% - 16px*0.17647058823529416) / 1.1764705882352942);
    width: calc((100% - 16px*0.17647058823529416) / 1.1764705882352942);
  }
  .row.no-gutter .col-85 {
    width: 85%;
  }
  .row .col-80 {
    width: 80%;
    width: -webkit-calc((100% - 16px*0.25) / 1.25);
    width: calc((100% - 16px*0.25) / 1.25);
  }
  .row.no-gutter .col-80 {
    width: 80%;
  }
  .row .col-75 {
    width: 75%;
    width: -webkit-calc((100% - 16px*0.33333333333333326) / 1.3333333333333333);
    width: calc((100% - 16px*0.33333333333333326) / 1.3333333333333333);
  }
  .row.no-gutter .col-75 {
    width: 75%;
  }
  .row .col-70 {
    width: 70%;
    width: -webkit-calc((100% - 16px*0.4285714285714286) / 1.4285714285714286);
    width: calc((100% - 16px*0.4285714285714286) / 1.4285714285714286);
  }
  .row.no-gutter .col-70 {
    width: 70%;
  }
  .row .col-66 {
    width: 66.66666666666666%;
    width: -webkit-calc((100% - 16px*0.5000000000000002) / 1.5000000000000002);
    width: calc((100% - 16px*0.5000000000000002) / 1.5000000000000002);
  }
  .row.no-gutter .col-66 {
    width: 66.66666666666666%;
  }
  .row .col-65 {
    width: 65%;
    width: -webkit-calc((100% - 16px*0.5384615384615385) / 1.5384615384615385);
    width: calc((100% - 16px*0.5384615384615385) / 1.5384615384615385);
  }
  .row.no-gutter .col-65 {
    width: 65%;
  }
  .row .col-60 {
    width: 60%;
    width: -webkit-calc((100% - 16px*0.6666666666666667) / 1.6666666666666667);
    width: calc((100% - 16px*0.6666666666666667) / 1.6666666666666667);
  }
  .row.no-gutter .col-60 {
    width: 60%;
  }
  .row .col-55 {
    width: 55%;
    width: -webkit-calc((100% - 16px*0.8181818181818181) / 1.8181818181818181);
    width: calc((100% - 16px*0.8181818181818181) / 1.8181818181818181);
  }
  .row.no-gutter .col-55 {
    width: 55%;
  }
  .row .col-50 {
    width: 50%;
    width: -webkit-calc((100% - 16px*1) / 2);
    width: calc((100% - 16px*1) / 2);
  }
  .row.no-gutter .col-50 {
    width: 50%;
  }
  .row .col-45 {
    width: 45%;
    width: -webkit-calc((100% - 16px*1.2222222222222223) / 2.2222222222222223);
    width: calc((100% - 16px*1.2222222222222223) / 2.2222222222222223);
  }
  .row.no-gutter .col-45 {
    width: 45%;
  }
  .row .col-40 {
    width: 40%;
    width: -webkit-calc((100% - 16px*1.5) / 2.5);
    width: calc((100% - 16px*1.5) / 2.5);
  }
  .row.no-gutter .col-40 {
    width: 40%;
  }
  .row .col-35 {
    width: 35%;
    width: -webkit-calc((100% - 16px*1.8571428571428572) / 2.857142857142857);
    width: calc((100% - 16px*1.8571428571428572) / 2.857142857142857);
  }
  .row.no-gutter .col-35 {
    width: 35%;
  }
  .row .col-33 {
    width: 33.333333333333336%;
    width: -webkit-calc((100% - 16px*2) / 3);
    width: calc((100% - 16px*2) / 3);
  }
  .row.no-gutter .col-33 {
    width: 33.333333333333336%;
  }
  .row .col-30 {
    width: 30%;
    width: -webkit-calc((100% - 16px*2.3333333333333335) / 3.3333333333333335);
    width: calc((100% - 16px*2.3333333333333335) / 3.3333333333333335);
  }
  .row.no-gutter .col-30 {
    width: 30%;
  }
  .row .col-25 {
    width: 25%;
    width: -webkit-calc((100% - 16px*3) / 4);
    width: calc((100% - 16px*3) / 4);
  }
  .row.no-gutter .col-25 {
    width: 25%;
  }
  .row .col-20 {
    width: 20%;
    width: -webkit-calc((100% - 16px*4) / 5);
    width: calc((100% - 16px*4) / 5);
  }
  .row.no-gutter .col-20 {
    width: 20%;
  }
  .row .col-15 {
    width: 15%;
    width: -webkit-calc((100% - 16px*5.666666666666667) / 6.666666666666667);
    width: calc((100% - 16px*5.666666666666667) / 6.666666666666667);
  }
  .row.no-gutter .col-15 {
    width: 15%;
  }
  .row .col-10 {
    width: 10%;
    width: -webkit-calc((100% - 16px*9) / 10);
    width: calc((100% - 16px*9) / 10);
  }
  .row.no-gutter .col-10 {
    width: 10%;
  }
  .row .col-5 {
    width: 5%;
    width: -webkit-calc((100% - 16px*19) / 20);
    width: calc((100% - 16px*19) / 20);
  }
  .row.no-gutter .col-5 {
    width: 5%;
  }
  .row .col-auto:nth-last-child(1),
  .row .col-auto:nth-last-child(1) ~ .col-auto {
    width: 100%;
    width: -webkit-calc((100% - 16px*0) / 1);
    width: calc((100% - 16px*0) / 1);
  }
  .row.no-gutter .col-auto:nth-last-child(1),
  .row.no-gutter .col-auto:nth-last-child(1) ~ .col-auto {
    width: 100%;
  }
  .row .col-auto:nth-last-child(2),
  .row .col-auto:nth-last-child(2) ~ .col-auto {
    width: 50%;
    width: -webkit-calc((100% - 16px*1) / 2);
    width: calc((100% - 16px*1) / 2);
  }
  .row.no-gutter .col-auto:nth-last-child(2),
  .row.no-gutter .col-auto:nth-last-child(2) ~ .col-auto {
    width: 50%;
  }
  .row .col-auto:nth-last-child(3),
  .row .col-auto:nth-last-child(3) ~ .col-auto {
    width: 33.33333333%;
    width: -webkit-calc((100% - 16px*2) / 3);
    width: calc((100% - 16px*2) / 3);
  }
  .row.no-gutter .col-auto:nth-last-child(3),
  .row.no-gutter .col-auto:nth-last-child(3) ~ .col-auto {
    width: 33.33333333%;
  }
  .row .col-auto:nth-last-child(4),
  .row .col-auto:nth-last-child(4) ~ .col-auto {
    width: 25%;
    width: -webkit-calc((100% - 16px*3) / 4);
    width: calc((100% - 16px*3) / 4);
  }
  .row.no-gutter .col-auto:nth-last-child(4),
  .row.no-gutter .col-auto:nth-last-child(4) ~ .col-auto {
    width: 25%;
  }
  .row .col-auto:nth-last-child(5),
  .row .col-auto:nth-last-child(5) ~ .col-auto {
    width: 20%;
    width: -webkit-calc((100% - 16px*4) / 5);
    width: calc((100% - 16px*4) / 5);
  }
  .row.no-gutter .col-auto:nth-last-child(5),
  .row.no-gutter .col-auto:nth-last-child(5) ~ .col-auto {
    width: 20%;
  }
  .row .col-auto:nth-last-child(6),
  .row .col-auto:nth-last-child(6) ~ .col-auto {
    width: 16.66666667%;
    width: -webkit-calc((100% - 16px*5) / 6);
    width: calc((100% - 16px*5) / 6);
  }
  .row.no-gutter .col-auto:nth-last-child(6),
  .row.no-gutter .col-auto:nth-last-child(6) ~ .col-auto {
    width: 16.66666667%;
  }
  .row .col-auto:nth-last-child(7),
  .row .col-auto:nth-last-child(7) ~ .col-auto {
    width: 14.28571429%;
    width: -webkit-calc((100% - 16px*6) / 7);
    width: calc((100% - 16px*6) / 7);
  }
  .row.no-gutter .col-auto:nth-last-child(7),
  .row.no-gutter .col-auto:nth-last-child(7) ~ .col-auto {
    width: 14.28571429%;
  }
  .row .col-auto:nth-last-child(8),
  .row .col-auto:nth-last-child(8) ~ .col-auto {
    width: 12.5%;
    width: -webkit-calc((100% - 16px*7) / 8);
    width: calc((100% - 16px*7) / 8);
  }
  .row.no-gutter .col-auto:nth-last-child(8),
  .row.no-gutter .col-auto:nth-last-child(8) ~ .col-auto {
    width: 12.5%;
  }
  .row .col-auto:nth-last-child(9),
  .row .col-auto:nth-last-child(9) ~ .col-auto {
    width: 11.11111111%;
    width: -webkit-calc((100% - 16px*8) / 9);
    width: calc((100% - 16px*8) / 9);
  }
  .row.no-gutter .col-auto:nth-last-child(9),
  .row.no-gutter .col-auto:nth-last-child(9) ~ .col-auto {
    width: 11.11111111%;
  }
  .row .col-auto:nth-last-child(10),
  .row .col-auto:nth-last-child(10) ~ .col-auto {
    width: 10%;
    width: -webkit-calc((100% - 16px*9) / 10);
    width: calc((100% - 16px*9) / 10);
  }
  .row.no-gutter .col-auto:nth-last-child(10),
  .row.no-gutter .col-auto:nth-last-child(10) ~ .col-auto {
    width: 10%;
  }
  .row .col-auto:nth-last-child(11),
  .row .col-auto:nth-last-child(11) ~ .col-auto {
    width: 9.09090909%;
    width: -webkit-calc((100% - 16px*10) / 11);
    width: calc((100% - 16px*10) / 11);
  }
  .row.no-gutter .col-auto:nth-last-child(11),
  .row.no-gutter .col-auto:nth-last-child(11) ~ .col-auto {
    width: 9.09090909%;
  }
  .row .col-auto:nth-last-child(12),
  .row .col-auto:nth-last-child(12) ~ .col-auto {
    width: 8.33333333%;
    width: -webkit-calc((100% - 16px*11) / 12);
    width: calc((100% - 16px*11) / 12);
  }
  .row.no-gutter .col-auto:nth-last-child(12),
  .row.no-gutter .col-auto:nth-last-child(12) ~ .col-auto {
    width: 8.33333333%;
  }
  .row .col-auto:nth-last-child(13),
  .row .col-auto:nth-last-child(13) ~ .col-auto {
    width: 7.69230769%;
    width: -webkit-calc((100% - 16px*12) / 13);
    width: calc((100% - 16px*12) / 13);
  }
  .row.no-gutter .col-auto:nth-last-child(13),
  .row.no-gutter .col-auto:nth-last-child(13) ~ .col-auto {
    width: 7.69230769%;
  }
  .row .col-auto:nth-last-child(14),
  .row .col-auto:nth-last-child(14) ~ .col-auto {
    width: 7.14285714%;
    width: -webkit-calc((100% - 16px*13) / 14);
    width: calc((100% - 16px*13) / 14);
  }
  .row.no-gutter .col-auto:nth-last-child(14),
  .row.no-gutter .col-auto:nth-last-child(14) ~ .col-auto {
    width: 7.14285714%;
  }
  .row .col-auto:nth-last-child(15),
  .row .col-auto:nth-last-child(15) ~ .col-auto {
    width: 6.66666667%;
    width: -webkit-calc((100% - 16px*14) / 15);
    width: calc((100% - 16px*14) / 15);
  }
  .row.no-gutter .col-auto:nth-last-child(15),
  .row.no-gutter .col-auto:nth-last-child(15) ~ .col-auto {
    width: 6.66666667%;
  }
  .row .col-auto:nth-last-child(16),
  .row .col-auto:nth-last-child(16) ~ .col-auto {
    width: 6.25%;
    width: -webkit-calc((100% - 16px*15) / 16);
    width: calc((100% - 16px*15) / 16);
  }
  .row.no-gutter .col-auto:nth-last-child(16),
  .row.no-gutter .col-auto:nth-last-child(16) ~ .col-auto {
    width: 6.25%;
  }
  .row .col-auto:nth-last-child(17),
  .row .col-auto:nth-last-child(17) ~ .col-auto {
    width: 5.88235294%;
    width: -webkit-calc((100% - 16px*16) / 17);
    width: calc((100% - 16px*16) / 17);
  }
  .row.no-gutter .col-auto:nth-last-child(17),
  .row.no-gutter .col-auto:nth-last-child(17) ~ .col-auto {
    width: 5.88235294%;
  }
  .row .col-auto:nth-last-child(18),
  .row .col-auto:nth-last-child(18) ~ .col-auto {
    width: 5.55555556%;
    width: -webkit-calc((100% - 16px*17) / 18);
    width: calc((100% - 16px*17) / 18);
  }
  .row.no-gutter .col-auto:nth-last-child(18),
  .row.no-gutter .col-auto:nth-last-child(18) ~ .col-auto {
    width: 5.55555556%;
  }
  .row .col-auto:nth-last-child(19),
  .row .col-auto:nth-last-child(19) ~ .col-auto {
    width: 5.26315789%;
    width: -webkit-calc((100% - 16px*18) / 19);
    width: calc((100% - 16px*18) / 19);
  }
  .row.no-gutter .col-auto:nth-last-child(19),
  .row.no-gutter .col-auto:nth-last-child(19) ~ .col-auto {
    width: 5.26315789%;
  }
  .row .col-auto:nth-last-child(20),
  .row .col-auto:nth-last-child(20) ~ .col-auto {
    width: 5%;
    width: -webkit-calc((100% - 16px*19) / 20);
    width: calc((100% - 16px*19) / 20);
  }
  .row.no-gutter .col-auto:nth-last-child(20),
  .row.no-gutter .col-auto:nth-last-child(20) ~ .col-auto {
    width: 5%;
  }
  .row .col-auto:nth-last-child(21),
  .row .col-auto:nth-last-child(21) ~ .col-auto {
    width: 4.76190476%;
    width: -webkit-calc((100% - 16px*20) / 21);
    width: calc((100% - 16px*20) / 21);
  }
  .row.no-gutter .col-auto:nth-last-child(21),
  .row.no-gutter .col-auto:nth-last-child(21) ~ .col-auto {
    width: 4.76190476%;
  }
}
@media all and (max-width: 992px) and (min-width: 601px) {
  .row .tablet-100 {
    width: 100%;
    width: -webkit-calc((100% - 16px*0) / 1);
    width: calc((100% - 16px*0) / 1);
  }
  .row.no-gutter .tablet-100 {
    width: 100%;
  }
  .row .tablet-95 {
    width: 95%;
    width: -webkit-calc((100% - 16px*0.05263157894736836) / 1.0526315789473684);
    width: calc((100% - 16px*0.05263157894736836) / 1.0526315789473684);
  }
  .row.no-gutter .tablet-95 {
    width: 95%;
  }
  .row .tablet-90 {
    width: 90%;
    width: -webkit-calc((100% - 16px*0.11111111111111116) / 1.1111111111111112);
    width: calc((100% - 16px*0.11111111111111116) / 1.1111111111111112);
  }
  .row.no-gutter .tablet-90 {
    width: 90%;
  }
  .row .tablet-85 {
    width: 85%;
    width: -webkit-calc((100% - 16px*0.17647058823529416) / 1.1764705882352942);
    width: calc((100% - 16px*0.17647058823529416) / 1.1764705882352942);
  }
  .row.no-gutter .tablet-85 {
    width: 85%;
  }
  .row .tablet-80 {
    width: 80%;
    width: -webkit-calc((100% - 16px*0.25) / 1.25);
    width: calc((100% - 16px*0.25) / 1.25);
  }
  .row.no-gutter .tablet-80 {
    width: 80%;
  }
  .row .tablet-75 {
    width: 75%;
    width: -webkit-calc((100% - 16px*0.33333333333333326) / 1.3333333333333333);
    width: calc((100% - 16px*0.33333333333333326) / 1.3333333333333333);
  }
  .row.no-gutter .tablet-75 {
    width: 75%;
  }
  .row .tablet-70 {
    width: 70%;
    width: -webkit-calc((100% - 16px*0.4285714285714286) / 1.4285714285714286);
    width: calc((100% - 16px*0.4285714285714286) / 1.4285714285714286);
  }
  .row.no-gutter .tablet-70 {
    width: 70%;
  }
  .row .tablet-66 {
    width: 66.66666666666666%;
    width: -webkit-calc((100% - 16px*0.5000000000000002) / 1.5000000000000002);
    width: calc((100% - 16px*0.5000000000000002) / 1.5000000000000002);
  }
  .row.no-gutter .tablet-66 {
    width: 66.66666666666666%;
  }
  .row .tablet-65 {
    width: 65%;
    width: -webkit-calc((100% - 16px*0.5384615384615385) / 1.5384615384615385);
    width: calc((100% - 16px*0.5384615384615385) / 1.5384615384615385);
  }
  .row.no-gutter .tablet-65 {
    width: 65%;
  }
  .row .tablet-60 {
    width: 60%;
    width: -webkit-calc((100% - 16px*0.6666666666666667) / 1.6666666666666667);
    width: calc((100% - 16px*0.6666666666666667) / 1.6666666666666667);
  }
  .row.no-gutter .tablet-60 {
    width: 60%;
  }
  .row .tablet-55 {
    width: 55%;
    width: -webkit-calc((100% - 16px*0.8181818181818181) / 1.8181818181818181);
    width: calc((100% - 16px*0.8181818181818181) / 1.8181818181818181);
  }
  .row.no-gutter .tablet-55 {
    width: 55%;
  }
  .row .tablet-50 {
    width: 50%;
    width: -webkit-calc((100% - 16px*1) / 2);
    width: calc((100% - 16px*1) / 2);
  }
  .row.no-gutter .tablet-50 {
    width: 50%;
  }
  .row .tablet-45 {
    width: 45%;
    width: -webkit-calc((100% - 16px*1.2222222222222223) / 2.2222222222222223);
    width: calc((100% - 16px*1.2222222222222223) / 2.2222222222222223);
  }
  .row.no-gutter .tablet-45 {
    width: 45%;
  }
  .row .tablet-40 {
    width: 40%;
    width: -webkit-calc((100% - 16px*1.5) / 2.5);
    width: calc((100% - 16px*1.5) / 2.5);
  }
  .row.no-gutter .tablet-40 {
    width: 40%;
  }
  .row .tablet-35 {
    width: 35%;
    width: -webkit-calc((100% - 16px*1.8571428571428572) / 2.857142857142857);
    width: calc((100% - 16px*1.8571428571428572) / 2.857142857142857);
  }
  .row.no-gutter .tablet-35 {
    width: 35%;
  }
  .row .tablet-33 {
    width: 33.333333333333336%;
    width: -webkit-calc((100% - 16px*2) / 3);
    width: calc((100% - 16px*2) / 3);
  }
  .row.no-gutter .tablet-33 {
    width: 33.333333333333336%;
  }
  .row .tablet-30 {
    width: 30%;
    width: -webkit-calc((100% - 16px*2.3333333333333335) / 3.3333333333333335);
    width: calc((100% - 16px*2.3333333333333335) / 3.3333333333333335);
  }
  .row.no-gutter .tablet-30 {
    width: 30%;
  }
  .row .tablet-25 {
    width: 25%;
    width: -webkit-calc((100% - 16px*3) / 4);
    width: calc((100% - 16px*3) / 4);
  }
  .row.no-gutter .tablet-25 {
    width: 25%;
  }
  .row .tablet-20 {
    width: 20%;
    width: -webkit-calc((100% - 16px*4) / 5);
    width: calc((100% - 16px*4) / 5);
  }
  .row.no-gutter .tablet-20 {
    width: 20%;
  }
  .row .tablet-15 {
    width: 15%;
    width: -webkit-calc((100% - 16px*5.666666666666667) / 6.666666666666667);
    width: calc((100% - 16px*5.666666666666667) / 6.666666666666667);
  }
  .row.no-gutter .tablet-15 {
    width: 15%;
  }
  .row .tablet-10 {
    width: 10%;
    width: -webkit-calc((100% - 16px*9) / 10);
    width: calc((100% - 16px*9) / 10);
  }
  .row.no-gutter .tablet-10 {
    width: 10%;
  }
  .row .tablet-5 {
    width: 5%;
    width: -webkit-calc((100% - 16px*19) / 20);
    width: calc((100% - 16px*19) / 20);
  }
  .row.no-gutter .tablet-5 {
    width: 5%;
  }
  .row .tablet-auto:nth-last-child(1),
  .row .tablet-auto:nth-last-child(1) ~ .col-auto {
    width: 100%;
    width: -webkit-calc((100% - 16px*0) / 1);
    width: calc((100% - 16px*0) / 1);
  }
  .row.no-gutter .tablet-auto:nth-last-child(1),
  .row.no-gutter .tablet-auto:nth-last-child(1) ~ .tablet-auto {
    width: 100%;
  }
  .row .tablet-auto:nth-last-child(2),
  .row .tablet-auto:nth-last-child(2) ~ .col-auto {
    width: 50%;
    width: -webkit-calc((100% - 16px*1) / 2);
    width: calc((100% - 16px*1) / 2);
  }
  .row.no-gutter .tablet-auto:nth-last-child(2),
  .row.no-gutter .tablet-auto:nth-last-child(2) ~ .tablet-auto {
    width: 50%;
  }
  .row .tablet-auto:nth-last-child(3),
  .row .tablet-auto:nth-last-child(3) ~ .col-auto {
    width: 33.33333333%;
    width: -webkit-calc((100% - 16px*2) / 3);
    width: calc((100% - 16px*2) / 3);
  }
  .row.no-gutter .tablet-auto:nth-last-child(3),
  .row.no-gutter .tablet-auto:nth-last-child(3) ~ .tablet-auto {
    width: 33.33333333%;
  }
  .row .tablet-auto:nth-last-child(4),
  .row .tablet-auto:nth-last-child(4) ~ .col-auto {
    width: 25%;
    width: -webkit-calc((100% - 16px*3) / 4);
    width: calc((100% - 16px*3) / 4);
  }
  .row.no-gutter .tablet-auto:nth-last-child(4),
  .row.no-gutter .tablet-auto:nth-last-child(4) ~ .tablet-auto {
    width: 25%;
  }
  .row .tablet-auto:nth-last-child(5),
  .row .tablet-auto:nth-last-child(5) ~ .col-auto {
    width: 20%;
    width: -webkit-calc((100% - 16px*4) / 5);
    width: calc((100% - 16px*4) / 5);
  }
  .row.no-gutter .tablet-auto:nth-last-child(5),
  .row.no-gutter .tablet-auto:nth-last-child(5) ~ .tablet-auto {
    width: 20%;
  }
  .row .tablet-auto:nth-last-child(6),
  .row .tablet-auto:nth-last-child(6) ~ .col-auto {
    width: 16.66666667%;
    width: -webkit-calc((100% - 16px*5) / 6);
    width: calc((100% - 16px*5) / 6);
  }
  .row.no-gutter .tablet-auto:nth-last-child(6),
  .row.no-gutter .tablet-auto:nth-last-child(6) ~ .tablet-auto {
    width: 16.66666667%;
  }
  .row .tablet-auto:nth-last-child(7),
  .row .tablet-auto:nth-last-child(7) ~ .col-auto {
    width: 14.28571429%;
    width: -webkit-calc((100% - 16px*6) / 7);
    width: calc((100% - 16px*6) / 7);
  }
  .row.no-gutter .tablet-auto:nth-last-child(7),
  .row.no-gutter .tablet-auto:nth-last-child(7) ~ .tablet-auto {
    width: 14.28571429%;
  }
  .row .tablet-auto:nth-last-child(8),
  .row .tablet-auto:nth-last-child(8) ~ .col-auto {
    width: 12.5%;
    width: -webkit-calc((100% - 16px*7) / 8);
    width: calc((100% - 16px*7) / 8);
  }
  .row.no-gutter .tablet-auto:nth-last-child(8),
  .row.no-gutter .tablet-auto:nth-last-child(8) ~ .tablet-auto {
    width: 12.5%;
  }
  .row .tablet-auto:nth-last-child(9),
  .row .tablet-auto:nth-last-child(9) ~ .col-auto {
    width: 11.11111111%;
    width: -webkit-calc((100% - 16px*8) / 9);
    width: calc((100% - 16px*8) / 9);
  }
  .row.no-gutter .tablet-auto:nth-last-child(9),
  .row.no-gutter .tablet-auto:nth-last-child(9) ~ .tablet-auto {
    width: 11.11111111%;
  }
  .row .tablet-auto:nth-last-child(10),
  .row .tablet-auto:nth-last-child(10) ~ .col-auto {
    width: 10%;
    width: -webkit-calc((100% - 16px*9) / 10);
    width: calc((100% - 16px*9) / 10);
  }
  .row.no-gutter .tablet-auto:nth-last-child(10),
  .row.no-gutter .tablet-auto:nth-last-child(10) ~ .tablet-auto {
    width: 10%;
  }
  .row .tablet-auto:nth-last-child(11),
  .row .tablet-auto:nth-last-child(11) ~ .col-auto {
    width: 9.09090909%;
    width: -webkit-calc((100% - 16px*10) / 11);
    width: calc((100% - 16px*10) / 11);
  }
  .row.no-gutter .tablet-auto:nth-last-child(11),
  .row.no-gutter .tablet-auto:nth-last-child(11) ~ .tablet-auto {
    width: 9.09090909%;
  }
  .row .tablet-auto:nth-last-child(12),
  .row .tablet-auto:nth-last-child(12) ~ .col-auto {
    width: 8.33333333%;
    width: -webkit-calc((100% - 16px*11) / 12);
    width: calc((100% - 16px*11) / 12);
  }
  .row.no-gutter .tablet-auto:nth-last-child(12),
  .row.no-gutter .tablet-auto:nth-last-child(12) ~ .tablet-auto {
    width: 8.33333333%;
  }
  .row .tablet-auto:nth-last-child(13),
  .row .tablet-auto:nth-last-child(13) ~ .col-auto {
    width: 7.69230769%;
    width: -webkit-calc((100% - 16px*12) / 13);
    width: calc((100% - 16px*12) / 13);
  }
  .row.no-gutter .tablet-auto:nth-last-child(13),
  .row.no-gutter .tablet-auto:nth-last-child(13) ~ .tablet-auto {
    width: 7.69230769%;
  }
  .row .tablet-auto:nth-last-child(14),
  .row .tablet-auto:nth-last-child(14) ~ .col-auto {
    width: 7.14285714%;
    width: -webkit-calc((100% - 16px*13) / 14);
    width: calc((100% - 16px*13) / 14);
  }
  .row.no-gutter .tablet-auto:nth-last-child(14),
  .row.no-gutter .tablet-auto:nth-last-child(14) ~ .tablet-auto {
    width: 7.14285714%;
  }
  .row .tablet-auto:nth-last-child(15),
  .row .tablet-auto:nth-last-child(15) ~ .col-auto {
    width: 6.66666667%;
    width: -webkit-calc((100% - 16px*14) / 15);
    width: calc((100% - 16px*14) / 15);
  }
  .row.no-gutter .tablet-auto:nth-last-child(15),
  .row.no-gutter .tablet-auto:nth-last-child(15) ~ .tablet-auto {
    width: 6.66666667%;
  }
  .row .tablet-auto:nth-last-child(16),
  .row .tablet-auto:nth-last-child(16) ~ .col-auto {
    width: 6.25%;
    width: -webkit-calc((100% - 16px*15) / 16);
    width: calc((100% - 16px*15) / 16);
  }
  .row.no-gutter .tablet-auto:nth-last-child(16),
  .row.no-gutter .tablet-auto:nth-last-child(16) ~ .tablet-auto {
    width: 6.25%;
  }
  .row .tablet-auto:nth-last-child(17),
  .row .tablet-auto:nth-last-child(17) ~ .col-auto {
    width: 5.88235294%;
    width: -webkit-calc((100% - 16px*16) / 17);
    width: calc((100% - 16px*16) / 17);
  }
  .row.no-gutter .tablet-auto:nth-last-child(17),
  .row.no-gutter .tablet-auto:nth-last-child(17) ~ .tablet-auto {
    width: 5.88235294%;
  }
  .row .tablet-auto:nth-last-child(18),
  .row .tablet-auto:nth-last-child(18) ~ .col-auto {
    width: 5.55555556%;
    width: -webkit-calc((100% - 16px*17) / 18);
    width: calc((100% - 16px*17) / 18);
  }
  .row.no-gutter .tablet-auto:nth-last-child(18),
  .row.no-gutter .tablet-auto:nth-last-child(18) ~ .tablet-auto {
    width: 5.55555556%;
  }
  .row .tablet-auto:nth-last-child(19),
  .row .tablet-auto:nth-last-child(19) ~ .col-auto {
    width: 5.26315789%;
    width: -webkit-calc((100% - 16px*18) / 19);
    width: calc((100% - 16px*18) / 19);
  }
  .row.no-gutter .tablet-auto:nth-last-child(19),
  .row.no-gutter .tablet-auto:nth-last-child(19) ~ .tablet-auto {
    width: 5.26315789%;
  }
  .row .tablet-auto:nth-last-child(20),
  .row .tablet-auto:nth-last-child(20) ~ .col-auto {
    width: 5%;
    width: -webkit-calc((100% - 16px*19) / 20);
    width: calc((100% - 16px*19) / 20);
  }
  .row.no-gutter .tablet-auto:nth-last-child(20),
  .row.no-gutter .tablet-auto:nth-last-child(20) ~ .tablet-auto {
    width: 5%;
  }
  .row .tablet-auto:nth-last-child(21),
  .row .tablet-auto:nth-last-child(21) ~ .col-auto {
    width: 4.76190476%;
    width: -webkit-calc((100% - 16px*20) / 21);
    width: calc((100% - 16px*20) / 21);
  }
  .row.no-gutter .tablet-auto:nth-last-child(21),
  .row.no-gutter .tablet-auto:nth-last-child(21) ~ .tablet-auto {
    width: 4.76190476%;
  }
}
@media all and (min-width: 993px) {
  .row .desktop-100 {
    width: 100%;
    width: -webkit-calc((100% - 16px*0) / 1);
    width: calc((100% - 16px*0) / 1);
  }
  .row.no-gutter .desktop-100 {
    width: 100%;
  }
  .row .desktop-95 {
    width: 95%;
    width: -webkit-calc((100% - 16px*0.05263157894736836) / 1.0526315789473684);
    width: calc((100% - 16px*0.05263157894736836) / 1.0526315789473684);
  }
  .row.no-gutter .desktop-95 {
    width: 95%;
  }
  .row .desktop-90 {
    width: 90%;
    width: -webkit-calc((100% - 16px*0.11111111111111116) / 1.1111111111111112);
    width: calc((100% - 16px*0.11111111111111116) / 1.1111111111111112);
  }
  .row.no-gutter .desktop-90 {
    width: 90%;
  }
  .row .desktop-85 {
    width: 85%;
    width: -webkit-calc((100% - 16px*0.17647058823529416) / 1.1764705882352942);
    width: calc((100% - 16px*0.17647058823529416) / 1.1764705882352942);
  }
  .row.no-gutter .desktop-85 {
    width: 85%;
  }
  .row .desktop-80 {
    width: 80%;
    width: -webkit-calc((100% - 16px*0.25) / 1.25);
    width: calc((100% - 16px*0.25) / 1.25);
  }
  .row.no-gutter .desktop-80 {
    width: 80%;
  }
  .row .desktop-75 {
    width: 75%;
    width: -webkit-calc((100% - 16px*0.33333333333333326) / 1.3333333333333333);
    width: calc((100% - 16px*0.33333333333333326) / 1.3333333333333333);
  }
  .row.no-gutter .desktop-75 {
    width: 75%;
  }
  .row .desktop-70 {
    width: 70%;
    width: -webkit-calc((100% - 16px*0.4285714285714286) / 1.4285714285714286);
    width: calc((100% - 16px*0.4285714285714286) / 1.4285714285714286);
  }
  .row.no-gutter .desktop-70 {
    width: 70%;
  }
  .row .desktop-66 {
    width: 66.66666666666666%;
    width: -webkit-calc((100% - 16px*0.5000000000000002) / 1.5000000000000002);
    width: calc((100% - 16px*0.5000000000000002) / 1.5000000000000002);
  }
  .row.no-gutter .desktop-66 {
    width: 66.66666666666666%;
  }
  .row .desktop-65 {
    width: 65%;
    width: -webkit-calc((100% - 16px*0.5384615384615385) / 1.5384615384615385);
    width: calc((100% - 16px*0.5384615384615385) / 1.5384615384615385);
  }
  .row.no-gutter .desktop-65 {
    width: 65%;
  }
  .row .desktop-60 {
    width: 60%;
    width: -webkit-calc((100% - 16px*0.6666666666666667) / 1.6666666666666667);
    width: calc((100% - 16px*0.6666666666666667) / 1.6666666666666667);
  }
  .row.no-gutter .desktop-60 {
    width: 60%;
  }
  .row .desktop-55 {
    width: 55%;
    width: -webkit-calc((100% - 16px*0.8181818181818181) / 1.8181818181818181);
    width: calc((100% - 16px*0.8181818181818181) / 1.8181818181818181);
  }
  .row.no-gutter .desktop-55 {
    width: 55%;
  }
  .row .desktop-50 {
    width: 50%;
    width: -webkit-calc((100% - 16px*1) / 2);
    width: calc((100% - 16px*1) / 2);
  }
  .row.no-gutter .desktop-50 {
    width: 50%;
  }
  .row .desktop-45 {
    width: 45%;
    width: -webkit-calc((100% - 16px*1.2222222222222223) / 2.2222222222222223);
    width: calc((100% - 16px*1.2222222222222223) / 2.2222222222222223);
  }
  .row.no-gutter .desktop-45 {
    width: 45%;
  }
  .row .desktop-40 {
    width: 40%;
    width: -webkit-calc((100% - 16px*1.5) / 2.5);
    width: calc((100% - 16px*1.5) / 2.5);
  }
  .row.no-gutter .desktop-40 {
    width: 40%;
  }
  .row .desktop-35 {
    width: 35%;
    width: -webkit-calc((100% - 16px*1.8571428571428572) / 2.857142857142857);
    width: calc((100% - 16px*1.8571428571428572) / 2.857142857142857);
  }
  .row.no-gutter .desktop-35 {
    width: 35%;
  }
  .row .desktop-33 {
    width: 33.333333333333336%;
    width: -webkit-calc((100% - 16px*2) / 3);
    width: calc((100% - 16px*2) / 3);
  }
  .row.no-gutter .desktop-33 {
    width: 33.333333333333336%;
  }
  .row .desktop-30 {
    width: 30%;
    width: -webkit-calc((100% - 16px*2.3333333333333335) / 3.3333333333333335);
    width: calc((100% - 16px*2.3333333333333335) / 3.3333333333333335);
  }
  .row.no-gutter .desktop-30 {
    width: 30%;
  }
  .row .desktop-25 {
    width: 25%;
    width: -webkit-calc((100% - 16px*3) / 4);
    width: calc((100% - 16px*3) / 4);
  }
  .row.no-gutter .desktop-25 {
    width: 25%;
  }
  .row .desktop-20 {
    width: 20%;
    width: -webkit-calc((100% - 16px*4) / 5);
    width: calc((100% - 16px*4) / 5);
  }
  .row.no-gutter .desktop-20 {
    width: 20%;
  }
  .row .desktop-15 {
    width: 15%;
    width: -webkit-calc((100% - 16px*5.666666666666667) / 6.666666666666667);
    width: calc((100% - 16px*5.666666666666667) / 6.666666666666667);
  }
  .row.no-gutter .desktop-15 {
    width: 15%;
  }
  .row .desktop-10 {
    width: 10%;
    width: -webkit-calc((100% - 16px*9) / 10);
    width: calc((100% - 16px*9) / 10);
  }
  .row.no-gutter .desktop-10 {
    width: 10%;
  }
  .row .desktop-5 {
    width: 5%;
    width: -webkit-calc((100% - 16px*19) / 20);
    width: calc((100% - 16px*19) / 20);
  }
  .row.no-gutter .desktop-5 {
    width: 5%;
  }
  .row .desktop-auto:nth-last-child(1),
  .row .desktop-auto:nth-last-child(1) ~ .col-auto {
    width: 100%;
    width: -webkit-calc((100% - 16px*0) / 1);
    width: calc((100% - 16px*0) / 1);
  }
  .row.no-gutter .desktop-auto:nth-last-child(1),
  .row.no-gutter .desktop-auto:nth-last-child(1) ~ .desktop-auto {
    width: 100%;
  }
  .row .desktop-auto:nth-last-child(2),
  .row .desktop-auto:nth-last-child(2) ~ .col-auto {
    width: 50%;
    width: -webkit-calc((100% - 16px*1) / 2);
    width: calc((100% - 16px*1) / 2);
  }
  .row.no-gutter .desktop-auto:nth-last-child(2),
  .row.no-gutter .desktop-auto:nth-last-child(2) ~ .desktop-auto {
    width: 50%;
  }
  .row .desktop-auto:nth-last-child(3),
  .row .desktop-auto:nth-last-child(3) ~ .col-auto {
    width: 33.33333333%;
    width: -webkit-calc((100% - 16px*2) / 3);
    width: calc((100% - 16px*2) / 3);
  }
  .row.no-gutter .desktop-auto:nth-last-child(3),
  .row.no-gutter .desktop-auto:nth-last-child(3) ~ .desktop-auto {
    width: 33.33333333%;
  }
  .row .desktop-auto:nth-last-child(4),
  .row .desktop-auto:nth-last-child(4) ~ .col-auto {
    width: 25%;
    width: -webkit-calc((100% - 16px*3) / 4);
    width: calc((100% - 16px*3) / 4);
  }
  .row.no-gutter .desktop-auto:nth-last-child(4),
  .row.no-gutter .desktop-auto:nth-last-child(4) ~ .desktop-auto {
    width: 25%;
  }
  .row .desktop-auto:nth-last-child(5),
  .row .desktop-auto:nth-last-child(5) ~ .col-auto {
    width: 20%;
    width: -webkit-calc((100% - 16px*4) / 5);
    width: calc((100% - 16px*4) / 5);
  }
  .row.no-gutter .desktop-auto:nth-last-child(5),
  .row.no-gutter .desktop-auto:nth-last-child(5) ~ .desktop-auto {
    width: 20%;
  }
  .row .desktop-auto:nth-last-child(6),
  .row .desktop-auto:nth-last-child(6) ~ .col-auto {
    width: 16.66666667%;
    width: -webkit-calc((100% - 16px*5) / 6);
    width: calc((100% - 16px*5) / 6);
  }
  .row.no-gutter .desktop-auto:nth-last-child(6),
  .row.no-gutter .desktop-auto:nth-last-child(6) ~ .desktop-auto {
    width: 16.66666667%;
  }
  .row .desktop-auto:nth-last-child(7),
  .row .desktop-auto:nth-last-child(7) ~ .col-auto {
    width: 14.28571429%;
    width: -webkit-calc((100% - 16px*6) / 7);
    width: calc((100% - 16px*6) / 7);
  }
  .row.no-gutter .desktop-auto:nth-last-child(7),
  .row.no-gutter .desktop-auto:nth-last-child(7) ~ .desktop-auto {
    width: 14.28571429%;
  }
  .row .desktop-auto:nth-last-child(8),
  .row .desktop-auto:nth-last-child(8) ~ .col-auto {
    width: 12.5%;
    width: -webkit-calc((100% - 16px*7) / 8);
    width: calc((100% - 16px*7) / 8);
  }
  .row.no-gutter .desktop-auto:nth-last-child(8),
  .row.no-gutter .desktop-auto:nth-last-child(8) ~ .desktop-auto {
    width: 12.5%;
  }
  .row .desktop-auto:nth-last-child(9),
  .row .desktop-auto:nth-last-child(9) ~ .col-auto {
    width: 11.11111111%;
    width: -webkit-calc((100% - 16px*8) / 9);
    width: calc((100% - 16px*8) / 9);
  }
  .row.no-gutter .desktop-auto:nth-last-child(9),
  .row.no-gutter .desktop-auto:nth-last-child(9) ~ .desktop-auto {
    width: 11.11111111%;
  }
  .row .desktop-auto:nth-last-child(10),
  .row .desktop-auto:nth-last-child(10) ~ .col-auto {
    width: 10%;
    width: -webkit-calc((100% - 16px*9) / 10);
    width: calc((100% - 16px*9) / 10);
  }
  .row.no-gutter .desktop-auto:nth-last-child(10),
  .row.no-gutter .desktop-auto:nth-last-child(10) ~ .desktop-auto {
    width: 10%;
  }
  .row .desktop-auto:nth-last-child(11),
  .row .desktop-auto:nth-last-child(11) ~ .col-auto {
    width: 9.09090909%;
    width: -webkit-calc((100% - 16px*10) / 11);
    width: calc((100% - 16px*10) / 11);
  }
  .row.no-gutter .desktop-auto:nth-last-child(11),
  .row.no-gutter .desktop-auto:nth-last-child(11) ~ .desktop-auto {
    width: 9.09090909%;
  }
  .row .desktop-auto:nth-last-child(12),
  .row .desktop-auto:nth-last-child(12) ~ .col-auto {
    width: 8.33333333%;
    width: -webkit-calc((100% - 16px*11) / 12);
    width: calc((100% - 16px*11) / 12);
  }
  .row.no-gutter .desktop-auto:nth-last-child(12),
  .row.no-gutter .desktop-auto:nth-last-child(12) ~ .desktop-auto {
    width: 8.33333333%;
  }
  .row .desktop-auto:nth-last-child(13),
  .row .desktop-auto:nth-last-child(13) ~ .col-auto {
    width: 7.69230769%;
    width: -webkit-calc((100% - 16px*12) / 13);
    width: calc((100% - 16px*12) / 13);
  }
  .row.no-gutter .desktop-auto:nth-last-child(13),
  .row.no-gutter .desktop-auto:nth-last-child(13) ~ .desktop-auto {
    width: 7.69230769%;
  }
  .row .desktop-auto:nth-last-child(14),
  .row .desktop-auto:nth-last-child(14) ~ .col-auto {
    width: 7.14285714%;
    width: -webkit-calc((100% - 16px*13) / 14);
    width: calc((100% - 16px*13) / 14);
  }
  .row.no-gutter .desktop-auto:nth-last-child(14),
  .row.no-gutter .desktop-auto:nth-last-child(14) ~ .desktop-auto {
    width: 7.14285714%;
  }
  .row .desktop-auto:nth-last-child(15),
  .row .desktop-auto:nth-last-child(15) ~ .col-auto {
    width: 6.66666667%;
    width: -webkit-calc((100% - 16px*14) / 15);
    width: calc((100% - 16px*14) / 15);
  }
  .row.no-gutter .desktop-auto:nth-last-child(15),
  .row.no-gutter .desktop-auto:nth-last-child(15) ~ .desktop-auto {
    width: 6.66666667%;
  }
  .row .desktop-auto:nth-last-child(16),
  .row .desktop-auto:nth-last-child(16) ~ .col-auto {
    width: 6.25%;
    width: -webkit-calc((100% - 16px*15) / 16);
    width: calc((100% - 16px*15) / 16);
  }
  .row.no-gutter .desktop-auto:nth-last-child(16),
  .row.no-gutter .desktop-auto:nth-last-child(16) ~ .desktop-auto {
    width: 6.25%;
  }
  .row .desktop-auto:nth-last-child(17),
  .row .desktop-auto:nth-last-child(17) ~ .col-auto {
    width: 5.88235294%;
    width: -webkit-calc((100% - 16px*16) / 17);
    width: calc((100% - 16px*16) / 17);
  }
  .row.no-gutter .desktop-auto:nth-last-child(17),
  .row.no-gutter .desktop-auto:nth-last-child(17) ~ .desktop-auto {
    width: 5.88235294%;
  }
  .row .desktop-auto:nth-last-child(18),
  .row .desktop-auto:nth-last-child(18) ~ .col-auto {
    width: 5.55555556%;
    width: -webkit-calc((100% - 16px*17) / 18);
    width: calc((100% - 16px*17) / 18);
  }
  .row.no-gutter .desktop-auto:nth-last-child(18),
  .row.no-gutter .desktop-auto:nth-last-child(18) ~ .desktop-auto {
    width: 5.55555556%;
  }
  .row .desktop-auto:nth-last-child(19),
  .row .desktop-auto:nth-last-child(19) ~ .col-auto {
    width: 5.26315789%;
    width: -webkit-calc((100% - 16px*18) / 19);
    width: calc((100% - 16px*18) / 19);
  }
  .row.no-gutter .desktop-auto:nth-last-child(19),
  .row.no-gutter .desktop-auto:nth-last-child(19) ~ .desktop-auto {
    width: 5.26315789%;
  }
  .row .desktop-auto:nth-last-child(20),
  .row .desktop-auto:nth-last-child(20) ~ .col-auto {
    width: 5%;
    width: -webkit-calc((100% - 16px*19) / 20);
    width: calc((100% - 16px*19) / 20);
  }
  .row.no-gutter .desktop-auto:nth-last-child(20),
  .row.no-gutter .desktop-auto:nth-last-child(20) ~ .desktop-auto {
    width: 5%;
  }
  .row .desktop-auto:nth-last-child(21),
  .row .desktop-auto:nth-last-child(21) ~ .col-auto {
    width: 4.76190476%;
    width: -webkit-calc((100% - 16px*20) / 21);
    width: calc((100% - 16px*20) / 21);
  }
  .row.no-gutter .desktop-auto:nth-last-child(21),
  .row.no-gutter .desktop-auto:nth-last-child(21) ~ .desktop-auto {
    width: 4.76190476%;
  }
}

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