@font-face {
  font-family: "Proxima Nova";
  src: url(./fonts/Proxima-Nova-Regular.4107948c.eot);
  src:
    url(./fonts/Proxima-Nova-Regular.4107948c.eot?#iefix) format("embedded-opentype"),
    url(./fonts/Proxima-Nova-Regular.23e166a5.woff2) format("woff2"),
    url(./fonts/Proxima-Nova-Regular.37c2dbc0.woff) format("woff"),
    url(./fonts/Proxima-Nova-Regular.1a380498.ttf) format("truetype"),
    url(./fonts/Proxima-Nova-Regular.09546c84.svg#proxima_nova_altregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova";
  src: url(./fonts/Proxima-Nova-Bold.238ec908.eot);
  src:
    url(./fonts/Proxima-Nova-Bold.238ec908.eot?#iefix) format("embedded-opentype"),
    url(./fonts/Proxima-Nova-Bold.9d4649c4.woff2) format("woff2"),
    url(./fonts/Proxima-Nova-Bold.a44f607c.woff) format("woff"),
    url(./fonts/Proxima-Nova-Bold.53df9da8.ttf) format("truetype"),
    url(./fonts/Proxima-Nova-Bold.772d95b9.svg#proxima_nova_bold) format("svg");
  font-weight: bold;
  font-style: normal;
}
/* .medium-toolbar-arrow-under::after {
  border-color: #fff transparent transparent;
  top: 50px;
} */

.medium-toolbar-arrow-over::before {
  border-color: transparent transparent #727b84;
  top: -8px;
}

.medium-toolbar-arrow-under::after, .medium-toolbar-arrow-under::before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.medium-toolbar-arrow-under::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 5px !important;
  margin-left: -5px !important;
}

.medium-toolbar-arrow-under::before {
  border-color: rgba(179, 176, 176, 0);
  border-top-color: #b3b0b0;
  border-width: 6px;
  margin-left: -6px;
}

.medium-editor-toolbar {
  /* background: #fefefe; */
  border: 1px solid #e2dfdf;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 10px #e2dfdf;
          box-shadow: 0 2px 10px #e2dfdf;
}

.medium-editor-toolbar li button {
  background: #fefefe;
  border: 0;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .3);
          box-shadow: 0 0 2px rgba(0, 0, 0, .3);
  color: #727b84;
  height: 50px;
  min-width: 50px;
  -webkit-transition: background-color .2s ease-in;
  transition: background-color .2s ease-in;
}

.medium-editor-toolbar li button:hover {
  color: #000;
  background: #f8fafc;
}

.medium-editor-toolbar li .medium-editor-button-first {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.medium-editor-toolbar li .medium-editor-button-last {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.medium-editor-toolbar li .medium-editor-button-active {
  background: #f8fafc;
}

.medium-editor-toolbar-form {
  background: #fefefe;
  border-radius: 5px;
  color: #999;
}

.medium-editor-toolbar-form .medium-editor-toolbar-input {
  background: #fefefe;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #666;
  height: 50px;
  border-radius: 5px;
}

.medium-editor-toolbar-form a {
  color: #727b84;
}

.medium-editor-toolbar-anchor-preview {
  background: #727b84;
  border-radius: 5px;
  color: #fff;
}

.medium-editor-placeholder::after {
  color: #b3b3b1;
}
/* Flexbox
─────────────────────────────────────────────────────────────────────────────
flexbox layout engine (grid)
───────────────────────────────────────────────────────────────────────────── */
.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.flex-j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-row, .flex-left, .flex-center, .flex-right, .flex-top, .flex-middle, .flex-bottom, .flex-vertical {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; /* Needed for cases where we wan't to override default behavior */
}
.flex-row, .flex-left, .flex-center, .flex-right, .flex-top, .flex-middle, .flex-bottom, .flex-vertical.flex-left, .flex-vertical.flex-center, .flex-vertical.flex-right, .flex-vertical.flex-top, .flex-vertical.flex-middle, .flex-vertical.flex-bottom {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex-center, .flex-vertical.flex-middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-right, .flex-vertical.flex-bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex-top, .flex-vertical.flex-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-middle, .flex-vertical.flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-bottom, .flex-vertical.flex-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.gutter {
  margin-left: undefined;
  margin-right: undefined;
}
.gutter > .flex-cell-10 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-20 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-25 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-33 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-40 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-50 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-60 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-66 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-75 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-80 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter > .flex-cell-90 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large {
  margin-left: undefined;
  margin-right: undefined;
}
.gutter-large > .flex-cell-10 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-20 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-25 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-33 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-40 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-50 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-60 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-66 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-75 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-80 {
  padding-left: undefined;
  padding-right: undefined;
}
.gutter-large > .flex-cell-90 {
  padding-left: undefined;
  padding-right: undefined;
}
.flex-cell {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}
.flex-cell-10, .flex-cell-20, .flex-cell-25, .flex-cell-33, .flex-cell-40, .flex-cell-50, .flex-cell-60, .flex-cell-66, .flex-cell-75, .flex-cell-80, .flex-cell-90 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flex-cell-10 {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  max-width: 10%;
}
.flex-cell-20 {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}
.flex-cell-25 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
.flex-cell-33 {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
  max-width: 33.33333%;
}
.flex-cell-40 {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  max-width: 40%;
}
.flex-cell-50 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
.flex-cell-60 {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  max-width: 60%;
}
.flex-cell-66 {
  -ms-flex-preferred-size: 66.66666%;
      flex-basis: 66.66666%;
  max-width: 66.66666%;
}
.flex-cell-75 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
.flex-cell-80 {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  max-width: 80%;
}
.flex-cell-90 {
  -ms-flex-preferred-size: 90%;
      flex-basis: 90%;
  max-width: 90%;
}
.flex-column, .flex-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-vertical > .flex-cell, .flex-vertical > .flex-cell-10, .flex-vertical > .flex-cell-20, .flex-vertical > .flex-cell-25, .flex-vertical > .flex-cell-33, .flex-vertical > .flex-cell-40, .flex-vertical > .flex-cell-50, .flex-vertical > .flex-cell-60, .flex-vertical > .flex-cell-66, .flex-vertical > .flex-cell-75, .flex-vertical > .flex-cell-80, .flex-vertical > .flex-cell-90 {
  max-width: none;
}
.flex-vertical > .flex-cell-10 {
  max-height: 10%;
}
.flex-vertical > .flex-cell-20 {
  max-height: 20%;
}
.flex-vertical > .flex-cell-25 {
  max-height: 25%;
}
.flex-vertical > .flex-cell-30 {
  max-height: 30%;
}
.flex-vertical > .flex-cell-33 {
  max-height: 33.33333%;
}
.flex-vertical > .flex-cell-40 {
  max-height: 40%;
}
.flex-vertical > .flex-cell-50 {
  max-height: 50%;
}
.flex-vertical > .flex-cell-60 {
  max-height: 60%;
}
.flex-vertical > .flex-cell-66 {
  max-height: 66.66666%;
}
.flex-vertical > .flex-cell-75 {
  max-height: 75%;
}
.flex-vertical > .flex-cell-80 {
  max-height: 80%;
}
.flex-vertical > .flex-cell-90 {
  max-height: 90%;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* Container
─────────────────────────────────────────────────────────────────────────────
Main content container
───────────────────────────────────────────────────────────────────────────── */
.container, .container-wider, .container-fluid {
  position: relative;
  width: 100%; /* padding: 0 var(--gutter-width) var(--gutter-width); */
  margin: 0 auto;

  /* flex-grow: 1; overflow: hidden; */
}
.container {
  max-width: undefined;
}
.container-wider {
  max-width: undefined;
}
/* molecular or super */

/* Variables
─────────────────────────────────────────────────────────────────────────────
Theme configuration settings - colors, paddings, margins, fonts etc.
───────────────────────────────────────────────────────────────────────────── */

:root {
  /* ──── Color palettes ──── */

  /* Custom unnamed colors */

  /* ──── Colors - generic ──── */

  /* ──── Colors - default types ──── */

  /* --color-tertiary: var(--palette-custom-2); */

  /* ──── Faded colors ──── */

  /* ──── Backgrounds ──── */

  /* ──── Layout ──── */

  /* ──── Base unit ──── */

  /* ──── Border ──── */

  /* ──── Paddings ──── */

  /* ──── Typography ──── */

  /* ──── Line height ──── */

  /* ──── Spacing ──── */

  /* ──── Font sizing ──── */

  /* ──── Font details ──── */

  /* ────  Monospace font ──── */

  /* ──── Headings ──── */

  /* ──── Borders ──── */

  /* ──── Animations ──── */

  /* ──── Shadows ──── */

  /* ──── Z-Index ──── */

  /* ──── Input ──── */

  /* ──── AutoComplete input ──── */

  /* ──── Buttons ──── */ /* Only on buttons that have min-width - dialog / table etc. */

  /* ──── Navigation ──── */

  /* ──── Appbar ──── */

  /* ──── Breadcrumbs ──── */

  /* ──── Cards ──── */

  /* ──── Avatar ──── */

  /* ──── Tooltip ──── */ /* rgba(53, 64, 82, 0.4); */

  /* ──── Dropdown ──── */

  /* Not really sure why, but the inverse version has a bigger gap */

  /* ──── Application ──── */

  /* ──── Media query ──── */

  /* Devices (defined by max width) */

  /* Devices (defined by min-width) */

  /* ──── Orientation ──── */
}

/* HTML Reset
─────────────────────────────────────────────────────────────────────────────
Global resets to common HTML elements.
Doesn't depend on any third party libraries.
Inspired by Normalise.css and bootstrap/_reboot.scss
Doesn't reset form and table -
because it's hard to set styles back in third-party libraries
───────────────────────────────────────────────────────────────────────────── */

/* ──── `html` and `body` ──── */

/* Reset the box-sizing */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;

  /* Prevent adjustments of font size after orientation changes in IE and iOS. */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: #fff;
  color: #7f8fa4;
  font-size: 1.6em; /* font-size: var(--font-size); */
  font-family: "Proxima Nova",
    
    
    
    "BlinkMacSystemFont",
    
    "Roboto",
    
    "Segoe UI",
    
    "Oxygen-Sans",
    "Ubuntu",
    "Cantarell",
    
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif,
    
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  line-height: 1.6;
  letter-spacing: .01em;
  margin: 0;
}

body {
  font-family: "Proxima Nova",
    
    
    
    "BlinkMacSystemFont",
    
    "Roboto",
    
    "Segoe UI",
    
    "Oxygen-Sans",
    "Ubuntu",
    "Cantarell",
    
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif,
    
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}

button {
  font-family: "Proxima Nova",
    
    
    
    "BlinkMacSystemFont",
    
    "Roboto",
    
    "Segoe UI",
    
    "Oxygen-Sans",
    "Ubuntu",
    "Cantarell",
    
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif,
    
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}

input {
  font-family: "Proxima Nova",
    
    
    
    "BlinkMacSystemFont",
    
    "Roboto",
    
    "Segoe UI",
    
    "Oxygen-Sans",
    "Ubuntu",
    "Cantarell",
    
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif,
    
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}

select {
  font-family: "Proxima Nova",
    
    
    
    "BlinkMacSystemFont",
    
    "Roboto",
    
    "Segoe UI",
    
    "Oxygen-Sans",
    "Ubuntu",
    "Cantarell",
    
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif,
    
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}

textarea {
  font-family: "Proxima Nova",
    
    
    
    "BlinkMacSystemFont",
    
    "Roboto",
    
    "Segoe UI",
    
    "Oxygen-Sans",
    "Ubuntu",
    "Cantarell",
    
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif,
    
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}

textarea {
  /* Prevent resizing of textareas, we are hanling that with autoresize */
  resize: none;
}

/* ──── Typography ──── */

h1 {
  margin: 30px 0 0;
}

h2 {
  margin: 30px 0 0;
}

h3 {
  margin: 30px 0 0;
}

h4 {
  margin: 30px 0 0;
}

h5 {
  margin: 30px 0 0;
}

h6 {
  margin: 30px 0 0;
}

p {
  margin: 15px 0 0;
}

blockquote {
  margin: 15px 0 0;
}

table {
  margin: 15px 0 0;
}

hr {
  margin: 15px 0 0;
}

dl {
  margin: 15px 0 0;
}

ul {
  margin: 15px 0 0;
}

ol {
  margin: 15px 0 0;
}

pre {
  margin: 15px 0 0;
}

address {
  margin: 15px 0 0;
}

figure {
  margin: 15px 0 0;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

h4 {
  font-weight: 700;
}

h5 {
  font-weight: 700;
}

h6 {
  font-weight: 700;
}

h1 { font-size: 32px; }

h2 { font-size: 26px; }

h3 { font-size: 22px; }

h4 { font-size: 20px; }

h5 { font-size: 18px; }

h6 { font-size: 16px; }

a {
  color: #0275d8;
  text-decoration: none;

  /* Remove gaps in links underline in iOS 8+ and Safari 8+. */
  -webkit-text-decoration-skip: objects
}

a:active, a:hover {
  text-decoration: underline;
}

b {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

dt {
  font-weight: 700;
}

code {
  background-color: rgb(242, 242, 242);
  font-size: 14px;
  padding: .2em .3em;
}

kbd {
  background-color: rgb(242, 242, 242);
  font-size: 14px;
  padding: .2em .3em;
}

samp {
  background-color: rgb(242, 242, 242);
  font-size: 14px;
  padding: .2em .3em;
}

code {
  font-family: "Menlo",
    "Monaco",
    "Consolas",
    "Liberation Mono",
    "Courier New",
    monospace;
}

kbd {
  font-family: "Menlo",
    "Monaco",
    "Consolas",
    "Liberation Mono",
    "Courier New",
    monospace;
}

samp {
  font-family: "Menlo",
    "Monaco",
    "Consolas",
    "Liberation Mono",
    "Courier New",
    monospace;
}

pre {
  font-family: "Menlo",
    "Monaco",
    "Consolas",
    "Liberation Mono",
    "Courier New",
    monospace;
}

pre {
  background-color: rgb(242, 242, 242);
  font-size: 13px;
  line-height: 1.2;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 15px

  /* Override the code styles */
}

pre code {
  background-color: transparent;
  font-size: 13px;
  padding: 0;
}

blockquote {
  border-left: 16px solid #dfe2e5;
  color: #ced0da;
  padding-left: 15px;
}

ul {
  padding-left: 30px;
}

ol {
  padding-left: 30px;
}

dt, dd, ol ol, ul ul, ol ul, ul ol {
  margin: 0;
}

hr {
  border: 0;
  border-top: 1px solid #dfe2e5;
}

small {
  font-size: 14px;
}

/* Prevent `sub` and `sup` elements from affecting the line height in all browsers. */

sub {
  font-size: 14px;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 14px;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.2em;
}

sup {
  top: -.4em;
}

address, time {
  font-style: normal;
}

mark {
  background-color: yellow;
  color: #7f8fa4;
  padding: 0 .2em;
}

rt {
  font-size: 60%;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/* ──── Embedded Content ──── */

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

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

img {
  max-width: 100%;
  vertical-align: middle;

  /* Remove the border on images inside links in IE 10-. */
  border-style: none;
}

audio, video {
  max-width: 100%;
}

figcaption {
  color: #ced0da;
  font-size: 14px;
}

/* Forms
─────────────────────────────────────────────────────────────────────────────
iOS "clickable elements" fix for role="button"
Fixes "clickability" issue (and more generally,
the firing of events such as focus as well)
for traditionally non-focusable elements with role="button"
see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
───────────────────────────────────────────────────────────────────────────── */

[role="button"] {
  cursor: pointer;
}

/* Avoid 300ms click delay on touch devices that support the `touch-action` CSS property. */

a, area, button, [role="button"], input, label, select, summary, textarea {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button, html [type=button], [type=reset], [type=submit], ::-webkit-file-upload-button {
  /* (*) Correct the inability to style clickable types in iOS and Safari. */
  -webkit-appearance: button;
          appearance: button;
}

[type=search] {
  /* Correct the odd appearance in Chrome and Safari. */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Change font properties to `inherit` in Safari. */

::-webkit-file-upload-button {
  font: inherit;
}

[hidden] {
  display: none;
}

fieldset {
  border: 1px solid #dfe2e5;
  margin: 15px 0 0;
  padding: 0 15px 15px;
}

legend {
  padding: 0 .2em;
}

optgroup {
  color: #ced0da;
  font-style: normal;
  font-weight: normal;
}

option {
  color: #7f8fa4;
}

progress {
  max-width: 100%;
}

.switcher {
  position: relative; /* overflow-y: auto; *//* overflow-x: hidden; */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 140px
}

.switcher > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;/* bottom: 0; */
}

.switcher > div::after {
  display: block;
  height: 140px;
  content: "";
}

/** NEXT TRANSITION **/

.next1 .enter {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}

.next1 .enter-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.next1 .leave {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

.next1 .leave-active {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

/** BACK TRANSITION **/

.back2 .enter {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.back2 .enter-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.back2 .leave {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

.back2 .leave-active {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

/* Novo */

.next .enter {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
}

.next .enter-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.next .leave {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

.next .leave-active {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.back .enter {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
}

.back .enter-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.back .leave {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

.back .leave-active {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
  -webkit-transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

svg {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  min-height: 100vh
}

.app .body {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background: #f1f4f6;
}

.app .body .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom table cell styling */

table {
  margin-top: 0
}

table span.type-status {
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
  padding: 0 20px;
  font-size: 12px;
  display: inline-block !important;
  width: auto !important;
  text-align: center;
  min-width: 8.6em;
}

table span.type-status.type-processed {
  background: #5cb85c;
}

table span.type-status.type-in-progress {
  background: #f0ad4e;
}

table td svg {
  color: #7f8fa4;
}

table td svg:hover {
  color: #0275d8;
}

table {/* Fix long text in table buttons */
}

table .button-link {
  width: 100% !important;
  text-overflow: ellipsis;
  overflow: hidden;
}

.contact-col {
}

.contact-col .avatar {
  margin-right: 20px;
}

.product-col {
}

.product-col .avatar {
  margin-right: 20px;
}

.user-col {
  text-transform: capitalize
}

.user-col .avatar {
  margin-right: 20px;
  font-size: 14px;
}

.contact-col .avatar {
  font-size: 14px;
}

.drop-wrapper {
  position: relative;
}

.drop-zone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background: #fff;
  border-radius: 4px;
  border: dashed 2px #dfe2e5;

  /* center the label hor/ver */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center
}

.drop-zone p {
  display: inline-block;
  background: #7f8fa4;
  padding: 2px 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 15px;
  margin: 0;
}

/* Custom app styles
─────────────────────────────────────────────────────────────────────────────
Styles that are custom to the application, pages etc.
───────────────────────────────────────────────────────────────────────────── */

/* Edit pages with user picture */

.square-box {
  position: relative;
  margin: 0 50px 149px
}

.square-box .drop-zone > div {/* margin-top: 82px; */
}

.square-box .drop-zone > div span {
  display: block;
  font-weight: bold;
  color: #7f8fa4;
  margin: 0 30px;
}

.square-box .drop-zone > div p {
  margin: 10px 0 0;
}

.square-box.edit-user {
  margin-bottom: 38px;
}

/* Card for edit pages */

.colored-card {
  background-color: #f8fafc !important;
  border: solid 1px #dfe2e5 !important;
}

/* Last input field in edit-user/contact doesn't have a bottom padding */

.form-group:last-child .form-control-feedback {
  margin-top: 0;
}

/* Re-add margin-top for form elements in edit newsletter screen */

.newsletter-edit .form-group:last-child .form-control-feedback {
  margin-top: -25px;
}

/* Login */

.login-box {
  -ms-flex-preferred-size: 36rem;
      flex-basis: 36rem;
  max-width: 36rem;
  border-radius: 4px;
  margin-top: 100px
}

.login-box .card-body.with-header {
  padding-top: 40px;
  padding-bottom: 60px;
}

.login-box label {
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
  text-align: left;
  color: #7f8fa4;
}

.login-box input {
  width: 300px;
  height: 38px;
  border-radius: 4px;
  background-color: #fff;
  border: solid 1px #dfe2e5;
  margin-bottom: 24px;
  padding: 0 16px;
  font-size: 16px;
}

.login-box input:focus {
  outline: 0;
  border-color: #0275d8;
}

.login-box .forgot-button {
  width: auto !important;
  font-weight: normal;
  font-size: 14px;
  margin-top: 16px;
  color: #7f8fa4;
}

.login-box .form-control-feedback {
  right: 25px;
}

.login-box .form-group:last-child .form-control-feedback {
  margin-top: -25px;
}

.login-box button {
  padding-top: 8px;
  padding-bottom: 8px;
}

.login-box .card-dark-header, .login-box .card-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  height: auto;
}

.card-dark-header .card-header {
  background: #354052;
  color: #fff;
  padding: 17px 30px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.product-logo-label {
  color: #7f8fa4;
  border: 1px solid transparent;
  cursor: pointer;
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
}

.form.product .center-vertical {
  min-width: 50%;
  max-width: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.v-padding-large {
  padding: 30px 0 !important;
}

.t-padding-large {
  padding-top: 30px;
}

.color-field {
  position: absolute;
  right: 7px;
  top: 44px;
  width: 1.6em;
  height: 1.6em;
  pointer-events: none;
  border-radius: 4px;
}

/* Newsletter edit pages */

.app-bar-inverse {
  background: #f8fafc;
  color: #7f8fa4;
  -webkit-box-shadow: 0 1px 0 0 #dfe2e5;
          box-shadow: 0 1px 0 0 #dfe2e5;
  min-height: 70px;
  font-size: 24px;
  padding: 20px 0 20px 32px
}

.app-bar-inverse svg {
  display: inline-block;
  margin-right: 20px;
}

.app-bar-inverse .app-bar-inverse-item {
  white-space: nowrap;
  margin-right: 20px;/* overflow: hidden;
    text-overflow: ellipsis; */
}

.app-bar-inverse .app-bar-inverse-active {
  color: #354052;
}

.newsletter-edit .app-bar-inverse, .add-component .app-bar-inverse {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 998;
}

.newsletter-edit .app-bar-inverse a, .add-component .app-bar-inverse a {
  color: #354052;
}

.add-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  top: 83px !important;
  height: calc(100% - 83px) !important;
}

.newsletter-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  top: 83px !important;
  height: calc(100% - 83px) !important
}

.newsletter-edit::after {
  display: none !important;
}

.newsletter-edit .block-card {/* margin-bottom: calc(2.5 * var(--unit)); */
}

.newsletter-edit .container {
  max-width: none !important;
  position: static;
  position: initial;/* margin-top: calc(var(--unit) * 7); *//* max-width: var(--max-width-container-narrower); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
}

.newsletter-edit .container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 auto;
  max-width: 113.8rem;
}

.newsletter-edit .card {
  background-color: #f8fafc;
  border: solid 1px #b1bcca;
  border-radius: 4px;
}

.newsletter-edit .card-header {
  color: #b1bcca;
  font-size: 16px;
  font-weight: bold;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px 20px 5px;
  border-bottom: 1px solid #dfe2e5;
}

.newsletter-edit .card-header svg {
  cursor: pointer;
  color: #7f8fa4;
}

.newsletter-edit .card-header svg:hover {
  color: #0275d8;
}

.newsletter-edit .card-header > svg {
  margin-top: .7em;
  margin-right: .3em;
  -webkit-transition: .35s transform ease-in;
  transition: .35s transform ease-in;
}

.newsletter-edit .card-header div {
  margin-left: auto;
}

.newsletter-edit .card-body {
  -webkit-transition: .35s all ease-out;
  transition: .35s all ease-out;
  padding: 0;/* max-height: 1000px; */
  padding-top: 0;
  padding-bottom: 0;
}

.newsletter-edit .block-card.block-active {
  border-color: #0275d8;
}

.newsletter-edit .block-card .card-body {
  overflow: hidden;/* hide overflow only for dnd block elements */
}

.newsletter-edit .card-content {
  padding: 0 35px 35px;
}

.newsletter-edit .block-minimized .card-header > svg {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.newsletter-edit .block-minimized .card-body {
  max-height: 0;
}

.newsletter-edit .block-wraper {
  margin: 0 0 25px;
}

.add-icon {
  margin: 56px 0 24px;
}

.newsletter-selected .block-card {
  opacity: .5;
}

.newsletter-selected .block-card.block-active {
  opacity: 1;
  -webkit-box-shadow: 0 2px 12px 0 rgba(127, 143, 164, .2);
          box-shadow: 0 2px 12px 0 rgba(127, 143, 164, .2);
  overflow: hidden;
}

.newsletter-edit-sidebar {
  -ms-flex-preferred-size: 16.3rem;
      flex-basis: 16.3rem;
  margin-top: 35px

  /* Edit forms */
}

.newsletter-edit-sidebar .form input, .newsletter-edit-sidebar .form select {
  font-size: 14px;
  line-height: 1;
  padding: .95rem 1.2rem;
  margin: 0;
}

.newsletter-edit-sidebar .splitted::after {
  content: "";
  display: table;
  clear: both;
}

.newsletter-edit-sidebar .splitted .form-group {
  width: calc(50% - 8px);
  float: left;
}

.newsletter-edit-sidebar .splitted .form-group:first-child {
  margin-right: 8px;
}

.newsletter-edit-sidebar .splitted .form-group:last-child {
  margin-left: 8px;
}

.newsletter-edit-sidebar {/* overflow: hidden; *//* needed for dropdown animation */
}

.newsletter-edit-sidebar.newsletter-edit-aside {
  -ms-flex-preferred-size: 26.3rem;
      flex-basis: 26.3rem;
}

.newsletter-edit-sidebar.newsletter-edit-aside .previews img {
  max-width: 100%;
  height: auto;
}

.newsletter-edit-sidebar.newsletter-edit-aside .button {
  margin-bottom: 16px;
}

.newsletter-edit-sidebar.newsletter-edit-aside .form .form-group {
  margin-bottom: 16px;
}

.newsletter-edit-sidebar {/* & span.sidelink {
    cursor: pointer;
  } */
}

.newsletter-edit-sidebar svg {
  vertical-align: middle;
}

.newsletter-edit-sidebar .sidebar-active {
  color: #7f8fa4;
}

.newsletter-edit-sidebar .sidebar-active span {
  cursor: default;
}

.newsletter-edit-sidebar .sidebar-inactive {
  color: #b1bcca;
}

.newsletter-edit-sidebar .sidebar-inactive span {
  cursor: pointer;
}

.newsletter-edit-sidebar > div {
  position: absolute;
  top: 100px;
  width: 260px;
}

.newsletter-edit-content {
  margin: 70px 30px 0;
  -ms-flex-preferred-size: 65.2rem;
      flex-basis: 65.2rem
}

.newsletter-edit-content > div {
  padding-bottom: 140px;
}

.newsletter-edit-content {/* & .form input[type=text] {
    padding-top: 14px;
    padding-bottom: 14px;
  } *//* overflow: auto; */
}

.newsletter-edit-content:not(.with-aside) {
  margin-right: 29.3rem;
}

.newsletter-edit-content {/* & .no-items {
    opacity: .9;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.71;
    color: #414141;
  } */
}

.newsletter-edit-content .block-active .card-body {
  background: #fff;
}

.newsletter-edit-content {/* Preview block holders */
}

.newsletter-edit-content .renderpreview {
  margin-top: 36px;
  background: #fff;
  border: solid 1px #dfe2e5;
}

.newsletter-edit-content .renderpreview h1 {
  color: #414141;
  font-size: 36px;
  margin: 0;
  line-height: 1.1;
}

.newsletter-edit-content .infothek-preview {
  padding: 36px 40px;
}

.newsletter-edit-content .text-preview {
  padding: 36px 40px;
}

.newsletter-edit-content .imagetext-preview {
  padding-bottom: 36px;
}

.newsletter-edit-content .imagetext-preview .innerwrap {
  margin-top: 36px;
  padding: 0 40px;
}

.newsletter-edit-content .akademie-preview {
  padding: 36px 40px;
}

.newsletter-edit-content .akademie-preview .empty-image {
  margin: -36px -40px;
  width: calc(100% + 80px);
  margin-bottom: 0;
}

.newsletter-edit-content {/* Empty image box */
}

.newsletter-edit-content .empty-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;/* align horizontal */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;/* align vertical */
  height: 250px;
  width: 100%;
  background: #7f8fa4;
  color: #fff;
  position: relative;
}

/* Add new content to NL */

.narrow-container {
  max-width: 79rem;
}

.new-content {
  border: solid 2px #dfe2e5;
  border-radius: 4px;
  margin-bottom: 16px
}

.new-content:hover {
  border-color: #b1bcca;
}

.new-content.new-content-selected {
  border-color: #0275d8 !important;
  -webkit-box-shadow: 0 2px 12px 0 rgba(127, 143, 164, .2);
          box-shadow: 0 2px 12px 0 rgba(127, 143, 164, .2);
}

/* lock icon on dashboard */

.lock-icon {
  fill: red;
  position: absolute;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 12px;
}

/* disable pointer events (works for all childs and not the element with the class */

.disablepointer > * {
  pointer-events: none;
}

/* Rte editor overrides */

body div.mce-fullscreen {
  top: 84px;
}

.DraftEditor-editorContainer {
  max-height: 140px;
  overflow: auto;
}

.public-DraftEditor-content {
  font-family: "Proxima Nova", "BlinkMacSystemFont", "Roboto", "Segoe UI", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
}

/* Fix for Firefox svg medium editor buttons */

button.medium-editor-action svg {
  width: 20px;
  height: 20px;
}

.app-bar {
  background: #354052;
  color: #fff;
  position: relative;
  padding: 0;
  -webkit-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
          transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.app-bar a {
  color: #7f8fa4;
  text-decoration: none;
  display: block;
  margin-top: 2px;/* padding: 20px 0; */
  position: relative;
}

.app-bar a::after {
  display: block;
  content: attr(data-title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.app-bar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0;
  list-style: none;
  padding: 0;
  height: 70px;
}

.app-bar-nav-item {
  padding-left: 28px;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap
}

.app-bar-nav-item:nth-child(2) {
  padding-left: 40px;
}

.app-bar-active a {
  color: #fff;
  font-weight: bold;/* &::before {
      display:block;
      content: "";
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 3px;
      background: var(--palette-cerulean);
    } */
}

.app-bar-logo {
  margin-left: 0;
  margin-top: -2px;
  padding-left: 32px;
}

.app-bar-right {
  padding-right: 27px;
  padding-left: 0;
}

.app-bar-user {
  position: relative;
  margin-right: 32px;
  padding-left: 0
}

.app-bar-user .avatar {
  background: #7f8fa4;
  color: #fff;
  height: 37px;
  width: 37px;
  font-size: 1em;
  padding-top: 10px;
}

.app-bar-user {/* &:hover .avatar,
  & .active .avatar {
    color: #7f8fa4;
  } */
}

@media screen and (max-width: 480px) and (orientation: portrait) {
  height: var(--appbar-height-m-portrait);
}

@media screen and (max-width: 600px) and (orientation: landscape) {
  height: var(--appbar-height-m-landscape);
}

.app-bar-underline {
  background-color: #0275d8;
  height: 3px;
  margin-top: -3px;
  position: absolute;
  -webkit-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: left, width;
  transition-property: left, width;
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
          transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  width: 0;
}

.app-bar-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 20px;
  font-weight: 500;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-bar-left-icon {
  margin-left: -12px;
}

.app-bar-right-icon {
  margin-right: -12px;
}

.dropdown {
  display: block;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  top: 70px;
  right: -12px;
  position: absolute;
  opacity: .0001;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  -webkit-transition: .35s cubic-bezier(.2, 0, 0, 1.6);
  transition: .35s cubic-bezier(.2, 0, 0, 1.6);
  color: #354052;
  background: #fff;
  border: solid 1px #dfe2e5;
  border-radius: 4px;
  min-width: 150px;
  -webkit-box-shadow: 0 6px 12px 0 rgba(53, 64, 82, .4);
          box-shadow: 0 6px 12px 0 rgba(53, 64, 82, .4);
  z-index: 100
}

.dropdown li {
  display: block;
  padding: 5px 20px;
}

.dropdown li.dropdown-spacer {
  padding: 0;
  margin: 5px 20px;
  height: 1px;
  background: #dfe2e5;
}

.dropdown li.dropdown-link {
  cursor: pointer;
}

.dropdown li:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: default;
}

.dropdown::before {
  content: "";
  z-index: -1;
  position: absolute;
  height: 10px;
  width: 10px;
  border: solid 1px #fff;
  border-width: 1px 0 0 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  top: -6px;
  right: 23px;
}

.active .dropdown {
  opacity: .9999;
  -webkit-transform: none;
          transform: none;
}

.dropdown > li > a {
  padding: 8px 12px;
  width: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: #969696;
}

/* Container
─────────────────────────────────────────────────────────────────────────────
Main content container
───────────────────────────────────────────────────────────────────────────── */

.container, .container-wider, .container-fluid {
  position: relative;
  width: 100%; /* padding: 0 var(--gutter-width) var(--gutter-width); */
  margin: 0 auto;

  /* flex-grow: 1; overflow: hidden; */
}

.container {
  max-width: 114rem;
}

.container-wider {
  max-width: 120rem;
}

.breadcrumb {
  padding: 40px 0 24px 0;
  font-size: 24px;

  &ul {
    list-style: none;
  }
}

.breadcrumb > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.breadcrumb-item {
  color: #7f8fa4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  -webkit-transition: 350ms;
  transition: 350ms
}

.breadcrumb-item a {
  color: inherit;
}

.breadcrumb-item.breadcrumb-active {
  color: #354052;
}

.breadcrumb-item.breadcrumb-active a {
  color: inherit;
}

.breadcrumb-item.breadcrumb-actions {
  position: absolute;
  right: 0;
  top: 0;
}

.breadcrumb-item > svg {
  margin: 0 2rem;
}

/* Animations */

.crumb-enter {
  opacity: .01;
}

.crumb-enter.crumb-enter-active {
  opacity: 1;
  -webkit-transition: 350ms;
  transition: 350ms;
}

.crumb-leave {
  opacity: 1;
  position: absolute;
}

.crumb-leave.crumb-leave-active {
  opacity: .01;
  -webkit-transition: 350ms;
  transition: 350ms;
}

/*
PostCSS mixins doc @
https://github.com/postcss/postcss-mixins
*/

/* Workoround for postcss variables limitation (they are applied to entire rule) */

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  /* 1-2: Disable browser default list styles */
  padding-left: 0; /* 1 */
  list-style: none /* 2 */
}

.pagination svg {
  vertical-align: middle;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-bottom-left-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}

.page-item:last-child .page-link {
  border-bottom-right-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.page-item.active .page-link {/* z-index: 2; */
  color: #fff;
  background-color: #0275d8;
  border-color: #e6eaee;
}

.page-item.disabled .page-link {
  color: #ced0da;
  pointer-events: none;
  background-color: #fff;
  border-color: #e6eaee;
}

.page-item .page-link {
  position: relative;
  display: block;
  padding: 9px 14px;
  margin-left: -1px;
  line-height: 1.5;
  cursor: pointer;
  color: #7f8fa4;
  background-color: #fff;
  border: 1px solid #e6eaee;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
  padding: 9px 10px;
}

/* Base styles */

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff; /* height: 100%; */
  border: 1px solid #dfe2e5;
  border-radius: 4px
}

.card.color-pale-gray-two {
  background-color: #f8fafc;
}

.card-body {
  /* Enable `flex-grow: 1` for decks and groups so that card blocks take up
     as much space as possible, ensuring footers are aligned to the bottom. */
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 24px
}

.card-body.with-header {
  padding-top: 0;
}

.card-body.without-header {
  padding-top: 5px;
}

.card-title {
  margin-bottom: 24px;
}

.card-subtitle {
  margin-top: -12px;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link {
  text-decoration: none;

  + .cardLink {
    margin-left: 24px;
  }
}

/* Optional textual caps */

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 24px 0 24px;
  font-size: 18px;
  color: #354052;
  line-height: 38px
}

.card-header input {
  float: right;
  font-size: 16px;
  padding: 0 16px;
  width: 15em;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #dfe2e5;
  line-height: inherit;
}

.card-footer {
  padding: 24px;
  border-top: 1px solid #dfe2e5;
}

/* Colors
─────────────────────────────────────────────────────────────────────────────
Text and background colors for elements
───────────────────────────────────────────────────────────────────────────── */

.text-success {
  color: #5cb85c;
}

a.text-success {
  color: #5cb85c;
}

.text-warning {
  color: #bdd164;
}

a.text-warning {
  color: #bdd164;
}

.text-inverse {
  color: #fff;
}

a.text-inverse {
  color: #fff;
}

a.text-success, a.text-warning, a.text-inverse {
  text-decoration: underline;
}

.bg-primary {
  background-color: #0275d8;
}

.bg-success {
  background-color: #5cb85c;
}

.bg-warning {
  background-color: #bdd164;
}

.bg-danger {
  background-color: #db5656;
}

.bg-inverse {
  background-color: #7f8fa4;
}

.bg-primary-faded {
  background-color: rgb(2, 103, 192);
}

.bg-success-faded {
  background-color: rgb(76, 174, 76);
}

.bg-warning-faded {
  background-color: rgb(181, 203, 82);
}

.bg-danger-faded {
  background-color: rgb(215, 66, 66);
}

.bg-faded {
  background-color: rgb(242, 242, 242);
}

/* Flexbox
─────────────────────────────────────────────────────────────────────────────
flexbox layout engine (grid)
───────────────────────────────────────────────────────────────────────────── */

.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-row, .flex-left, .flex-center, .flex-right, .flex-top, .flex-middle, .flex-bottom, .flex-vertical {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; /* Needed for cases where we wan't to override default behavior */
}

.flex-row, .flex-left, .flex-center, .flex-right, .flex-top, .flex-middle, .flex-bottom, .flex-vertical.flex-left, .flex-vertical.flex-center, .flex-vertical.flex-right, .flex-vertical.flex-top, .flex-vertical.flex-middle, .flex-vertical.flex-bottom {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-center, .flex-vertical.flex-middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-right, .flex-vertical.flex-bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-top, .flex-vertical.flex-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-middle, .flex-vertical.flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-bottom, .flex-vertical.flex-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.gutter {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.gutter > .flex-cell-10 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-20 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-25 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-33 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-40 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-50 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-60 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-66 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-75 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-80 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter > .flex-cell-90 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutter-large, .__row-gutter-large-margin-bottom-double {
  margin-left: -15px;
  margin-right: -15px;
}

.gutter-large > .flex-cell-10, .__row-gutter-large-margin-bottom-double > .flex-cell-10 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-20, .__row-gutter-large-margin-bottom-double > .flex-cell-20 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-25, .__row-gutter-large-margin-bottom-double > .flex-cell-25 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-33, .__row-gutter-large-margin-bottom-double > .flex-cell-33 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-40, .__row-gutter-large-margin-bottom-double > .flex-cell-40 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-50, .__row-gutter-large-margin-bottom-double > .flex-cell-50 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-60, .__row-gutter-large-margin-bottom-double > .flex-cell-60 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-66, .__row-gutter-large-margin-bottom-double > .flex-cell-66 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-75, .__row-gutter-large-margin-bottom-double > .flex-cell-75 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-80, .__row-gutter-large-margin-bottom-double > .flex-cell-80 {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-large > .flex-cell-90, .__row-gutter-large-margin-bottom-double > .flex-cell-90 {
  padding-left: 15px;
  padding-right: 15px;
}

.flex-cell {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.flex-cell-10, .flex-cell-20, .flex-cell-25, .flex-cell-33, .flex-cell-40, .flex-cell-50, .flex-cell-60, .flex-cell-66, .flex-cell-75, .flex-cell-80, .flex-cell-90 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-cell-10 {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  max-width: 10%;
}

.flex-cell-20 {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}

.flex-cell-25 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}

.flex-cell-33 {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.flex-cell-40 {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  max-width: 40%;
}

.flex-cell-50 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

.flex-cell-60 {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  max-width: 60%;
}

.flex-cell-66 {
  -ms-flex-preferred-size: 66.66666%;
      flex-basis: 66.66666%;
  max-width: 66.66666%;
}

.flex-cell-75 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}

.flex-cell-80 {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  max-width: 80%;
}

.flex-cell-90 {
  -ms-flex-preferred-size: 90%;
      flex-basis: 90%;
  max-width: 90%;
}

.flex-column, .flex-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-vertical > .flex-cell, .flex-vertical > .flex-cell-10, .flex-vertical > .flex-cell-20, .flex-vertical > .flex-cell-25, .flex-vertical > .flex-cell-33, .flex-vertical > .flex-cell-40, .flex-vertical > .flex-cell-50, .flex-vertical > .flex-cell-60, .flex-vertical > .flex-cell-66, .flex-vertical > .flex-cell-75, .flex-vertical > .flex-cell-80, .flex-vertical > .flex-cell-90 {
  max-width: none;
}

.flex-vertical > .flex-cell-10 {
  max-height: 10%;
}

.flex-vertical > .flex-cell-20 {
  max-height: 20%;
}

.flex-vertical > .flex-cell-25 {
  max-height: 25%;
}

.flex-vertical > .flex-cell-30 {
  max-height: 30%;
}

.flex-vertical > .flex-cell-33 {
  max-height: 33.33333%;
}

.flex-vertical > .flex-cell-40 {
  max-height: 40%;
}

.flex-vertical > .flex-cell-50 {
  max-height: 50%;
}

.flex-vertical > .flex-cell-60 {
  max-height: 60%;
}

.flex-vertical > .flex-cell-66 {
  max-height: 66.66666%;
}

.flex-vertical > .flex-cell-75 {
  max-height: 75%;
}

.flex-vertical > .flex-cell-80 {
  max-height: 80%;
}

.flex-vertical > .flex-cell-90 {
  max-height: 90%;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* spacing helper
─────────────────────────────────────────────────────────────────────────────
Helper for adding vertical or horizontal gutter between elements
───────────────────────────────────────────────────────────────────────────── */

.top-margin-0 {
  margin-top: 0 !important;
}

.top-margin-half {
  margin-top: 7.5px !important;
}

.top-margin {
  margin-top: 15px !important;
}

.top-margin-24 {
  margin-top: 24px !important;
}

.top-margin-large {
  margin-top: 30px !important;
}

.bottom-margin-0 {
  margin-bottom: 0 !important;
}

.bottom-margin {
  margin-bottom: 15px !important;
}

.bottom-margin-double {
  margin-bottom: 30px !important;
}

.bottom-margin-large {
  margin-bottom: 45px !important;
}

.left-margin-auto {
  margin-left: auto;
}

.right-margin {
  margin-right: 15px !important;
}

.right-margin-8 {
  margin-right: 8px;
}

.right-margin-24 {
  margin-right: 24px;
}

.h-padding {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.h-padding-large {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.padding-top-80 {
  padding-top: 80px;
}

.margin-bottom-48 {
  margin-bottom: 48px;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.margin-0-auto {
  margin: 0 auto;
}

.va-middle {
  vertical-align: middle;
}

.center-vertical {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.position-relative {
  position: relative;
}

/* Mobile helpers
─────────────────────────────────────────────────────────────────────────────
Show / hide helpers handling mobile visibility
───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-on-mobile {
    display: none !important;
  }
}

/* Table
─────────────────────────────────────────────────────────────────────────────
Table styles, based on main `table` class, clean <table> tag won't have style
───────────────────────────────────────────────────────────────────────────── */

.table {
  /* Reset for nesting within parents with `background-color`. */
  table-layout: fixed;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: #fff;
  width: 100%
}

.table.without-head {
  margin-top: 1.2rem;
}

.table.without-head tr:first-child th, .table.without-head tr:first-child td, .table.without-head tr:first-child .th, .table.without-head tr:first-child .td, .table.without-head .tr:first-child th, .table.without-head .tr:first-child td, .table.without-head .tr:first-child .th, .table.without-head .tr:first-child .td {
  border-top: .1rem solid #e1e1e1;
}

.table caption {
  caption-side: bottom;
  color: #ced0da;
  font-size: 14px;
  padding: 16px;
  text-align: left;
}

.table th {
  border: 0;
  border-bottom: 1px solid #dfe2e5;
  padding: .75rem 0 .75rem 2.25rem;
  text-align: left;
  white-space: nowrap;
}

.table td {
  border: 0;
  border-bottom: 1px solid #dfe2e5;
  padding: .75rem 0 .75rem 2.25rem;
  text-align: left;
  white-space: nowrap;
}

.table .th {
  border: 0;
  border-bottom: 1px solid #dfe2e5;
  padding: .75rem 0 .75rem 2.25rem;
  text-align: left;
  white-space: nowrap;
}

.table .td {
  border: 0;
  border-bottom: 1px solid #dfe2e5;
  padding: .75rem 0 .75rem 2.25rem;
  text-align: left;
  white-space: nowrap;
}

.table th {/* background-color: var(--color-background-faded); */
  color: #7f8fa4;
  font-weight: 700;
  position: relative;
  cursor: default;
}

.table th span {
  line-height: 1.5em;
  font-size: 14px;
}

.table th {/* Special case for order button */
}

.table th button {
  display: block;
  color: inherit !important;
}

.table th button > span {
  float: left;
}

.table th button > svg {
  float: right;
  color: var(--palette-silver);
}

.table .th {/* background-color: var(--color-background-faded); */
  color: #7f8fa4;
  font-weight: 700;
  position: relative;
  cursor: default;
}

.table .th span {
  line-height: 1.5em;
  font-size: 14px;
}

.table .th {/* Special case for order button */
}

.table .th button {
  display: block;
  color: inherit !important;
}

.table .th button > span {
  float: left;
}

.table .th button > svg {
  float: right;
  color: var(--palette-silver);
}

.table td span, .table.td span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}

.table tr:hover td {
  background: #f8fafc;
}

.table tr:hover .th {
  background: #f8fafc;
}

.table tr:hover {/* & td {
      color: var(--palette-dark-grey-blue);
    } */
}

.table.sortable .sorted {
  color: #7f8fa4;
}

.table.sortable .sorted::after {
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  background: #7f8fa4;
  bottom: 0;
  left: 0;
  width: 100%;
}

.table.sortable th:not(.sorted) svg {
  color: #dfe2e5;
}

.table .column-simple {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* Buttons
─────────────────────────────────────────────────────────────────────────────
Button colors, sizing, typography and other stylings
───────────────────────────────────────────────────────────────────────────── */

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: default;
  display: inline-block;  /* margin: var(--gutter-width) 0 0; */
  padding: .6rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #7f8fa4;
  background-color: #f1f4f6;
  line-height: 1.31;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  outline: 0

  /* box-shadow: var(--shadow-2p); */
}

.button:focus, .button.button-focus {
  outline: 0;
}

.button {/* Disabled comes first so active can properly restyle *//* pointer-events: none; */
}

.button[disabled], .button:disabled, .button.button-disabled {
  cursor: not-allowed;
  opacity: .65;
}

.button:hover:not(.nohover) {
  background-color: rgb(242, 242, 242);
  text-decoration: none;
}

.button:active {
  background-color: rgb(242, 242, 242);
  text-decoration: none;
}

.button.button-active {
  background-color: rgb(242, 242, 242);
  text-decoration: none;
}

.button {/* &:active,
  &.button-active {
    box-shadow: none;
  } *//* Clean button comes first so it can be overriden with color classes */
}

.button.button-clean {
  background-color: transparent;
  border-color: transparent;
  line-height: 1;
  height: auto;
  width: 100%;
  text-align: left;/* box-shadow: none; */
  padding: 0;
  margin: 0;
  border-width: 0;
}

.button.button-clean:hover:not(.nohover) {
  color: #727b84;
  background-color: transparent;
  border-color: transparent;
}

.button.button-clean:focus {
  color: #727b84;
  background-color: transparent;
  border-color: transparent;
}

.button.button-clean[disabled]:hover, .button.button-clean:disabled:hover, .button.button-clean.button-disabled:hover {
  color: #0275d8;
}

.button.button-clean[disabled]:focus, .button.button-clean:disabled:focus, .button.button-clean.button-disabled:focus {
  color: #0275d8;
}

.button.button-clean svg {
  cursor: pointer;
}

.button.button-link {
  display: table;/* display: inline-block; */
  font-weight: normal;
  width: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;/* Fallback to auto */
  color: #0275d8;
  text-decoration: underline;
}

.button.button-link:hover {
  text-decoration: none;
  cursor: pointer;
  color: #0275d8 !important;
}

.button.button-primary {
  background-color: #0275d8;
  border-color: #0275d8;
  color: #fff;
}

.button.button-primary:hover:not(.nohover) {
  background-color: rgb(2, 103, 192);
  color: #fff;/* Needed when clean style is applied */
}

.button.button-primary:active {
  background-color: rgb(2, 103, 192);
  color: #fff;/* Needed when clean style is applied */
}

.button.button-inverted {
  background-color: #fff;
  border-color: #727b84;
  color: #727b84;/* this button is used only on products table */
  min-width: 12rem;
  margin-right: 2rem;
}

.button.button-inverted:hover:not(.nohover) {
  background-color: #727b84;
  border-color: #727b84;
  color: #fff;
}

.button.button-inverted:active {
  background-color: #727b84;
  border-color: #727b84;
  color: #fff;
}

.button.button-secondary {
  background-color: #727b84;
  border-color: #727b84;
  color: #fff;
}

.button.button-secondary:hover:not(.nohover) {
  background-color: rgb(102, 110, 117);
  color: #fff;
}

.button.button-secondary:active {
  background-color: rgb(102, 110, 117);
  color: #fff;
}

.button.button-danger {
  background-color: #db5656;
  border-color: #db5656;
  color: #fff;
}

.button.button-danger:hover:not(.nohover) {
  background-color: rgb(215, 66, 66);
  color: #fff;
}

.button.button-danger:active {
  background-color: rgb(215, 66, 66);
  color: #fff;
}

.button.button-success {
  background-color: #5cb85c;
  border-color: #5cb85c;
  color: #fff;
}

.button.button-success:hover:not(.nohover) {
  background-color: rgb(76, 174, 76);
  color: #fff;
}

.button.button-success:active {
  background-color: rgb(76, 174, 76);
  color: #fff;
}

.button.button-outline {
  background-color: #fff;
  border-color: #249ed9;
  color: #249ed9;
}

.button.button-block {
  display: block;
  width: 100%;
}

.button {/* &.button-hover-parent {
    opacity: 0;
    visibility: hidden;
    transform: scale3d(0, 0, 0);
    transition: all .35s;
  } */
}

.button.button-ripple {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.button.button-ripple::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}

.button.button-ripple:active::after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}

/* Special case for table with hidden button */

/* tr:hover .button.button-hover-parent {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  visibility: visible;
} */

.button-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.button-group.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.button-group.button-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.button-group .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* Firefox fix - remove dotted outline on focus */

:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

/* Forms
─────────────────────────────────────────────────────────────────────────────
Form elements styling - Input, Select, textarea etc.
───────────────────────────────────────────────────────────────────────────── */

.form {
  margin: 0
}

.form label {
  color: #7f8fa4;
  border: 1px solid transparent;
  cursor: pointer;
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
}

.form [type=text] {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form [type=text].focus, .form [type=text]:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form [type=password] {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form [type=password].focus, .form [type=password]:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form [type=email] {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form [type=email].focus, .form [type=email]:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form [type=search] {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form [type=search].focus, .form [type=search]:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form [type=url] {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form [type=url].focus, .form [type=url]:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form [type=tel] {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form [type=tel].focus, .form [type=tel]:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form [type=number] {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form [type=number].focus, .form [type=number]:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form textarea {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form textarea.focus, .form textarea:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form select {
  display: block;
  margin: 0 0 24px;
  width: 100%;/* look & feel */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #dfe2e5;
  border-radius: 4px;
  color: #7f8fa4;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

.form select.focus, .form select:focus {
  border-color: var(--color-primary);
  outline: 0;
}

.form select {
  display: block;
  height: 36px !important;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAYAAAEfNg+MAAAABGdBTUEAALGPC/xhBQAAAaxJREFUOBHlVEtuwjAQtRMp3XVdaEUP0QUiJSoX6JIrwJngClyCKmkQi14iUkkP0E0jQTpviN2JTUSFuqsX8XzejJ2ZN1aK1nA8nunpdBoV7+UXDD9rGI9rq+mWxmZEWT+5Fz6kcWvsnV6Zozao9nlabyyqU9DDx2Sn6roHRBTqPiORkBw5FL4HW+lj0ECmaVpaQBw/jfZqzxEGTHu1zbMroV8o4scWFDvrireXNKWwwEDNt1m2tDoEXJaATusEBA0WKov2iCRJetW+3imty+1reqwYQQITwU4oVNbm4uwyHcW5EVuaT6jCOM9fNmhGTlEj6TTy4Lb3B5U02S7f2yTz8ywDSyPXiYLl2TwsiuLz7n5Qqlo9Sww5r6FzJblrgsOd/49OoqMyk22WNEJueLqGTGWfoOyQ3eUl4HHffay99tAVB/2byWq1qmSSVgLm00EtJMCTHaZyAubaQb2ZCfWCXAOVOArUA2bz7NC4sY7enhnH+V/U4zN/qu/nKtDwwvJAMK81/CfyVJKZNoEBNk+K90A1/iVGzGCxewlg9IgliAP/rxeofeq5lAm+AcOcptNEXOexAAAAAElFTkSuQmCC) no-repeat right 10px center;
  background-size: 8px 14px;
  line-height: 14px !important;
}

.form select::-ms-expand {
  display: none;
}

.form {

  textarea {
    height: 100%;
    line-height: undefined;
    resize: none;
  }
}

@media (max-width: 767px) {

  .form [type=time] {
    margin: 15px 0 0;
  }

  .form [type=week] {
    margin: 15px 0 0;
  }

  .form [type=month] {
    margin: 15px 0 0;
  }

  .form [type=date] {
    margin: 15px 0 0;
  }

  .form [type=datetime-local] {
    margin: 15px 0 0;
  }
}

@media (max-width: 767px) {

  .form [type=time] {
    display: block;
    line-height: 2.375;
    margin: 15px 0 0;
    width: 100%;/* look & feel */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border: 1px solid #dfe2e5;
    border-radius: 4px;
    color: #7f8fa4;
    font-size: 16px;
    padding: 16px;
  }

  .form [type=time]:focus {
    border-color: var(--color-primary);
    outline: 0;
  }

  .form [type=week] {
    display: block;
    line-height: 2.375;
    margin: 15px 0 0;
    width: 100%;/* look & feel */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border: 1px solid #dfe2e5;
    border-radius: 4px;
    color: #7f8fa4;
    font-size: 16px;
    padding: 16px;
  }

  .form [type=week]:focus {
    border-color: var(--color-primary);
    outline: 0;
  }

  .form [type=month] {
    display: block;
    line-height: 2.375;
    margin: 15px 0 0;
    width: 100%;/* look & feel */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border: 1px solid #dfe2e5;
    border-radius: 4px;
    color: #7f8fa4;
    font-size: 16px;
    padding: 16px;
  }

  .form [type=month]:focus {
    border-color: var(--color-primary);
    outline: 0;
  }

  .form [type=date] {
    display: block;
    line-height: 2.375;
    margin: 15px 0 0;
    width: 100%;/* look & feel */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border: 1px solid #dfe2e5;
    border-radius: 4px;
    color: #7f8fa4;
    font-size: 16px;
    padding: 16px;
  }

  .form [type=date]:focus {
    border-color: var(--color-primary);
    outline: 0;
  }

  .form [type=datetime-local] {
    display: block;
    line-height: 2.375;
    margin: 15px 0 0;
    width: 100%;/* look & feel */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border: 1px solid #dfe2e5;
    border-radius: 4px;
    color: #7f8fa4;
    font-size: 16px;
    padding: 16px;
  }

  .form [type=datetime-local]:focus {
    border-color: var(--color-primary);
    outline: 0;
  }
}

.form [type=checkbox] {
  cursor: pointer;
  margin: 0 16px 0 0;
}

.form [type=radio] {
  cursor: pointer;
  margin: 0 16px 0 0;
}

.form select {
  cursor: pointer;
}

.form [type=file] {
  display: block;
  line-height: 2.375;
  margin: 15px 0 0;
  width: 100%;/* look & feel */
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  padding-bottom: 16px;
  padding-top: 16px;
}

.form [type=range] {
  display: block;
  line-height: 2.375;
  margin: 15px 0 0;
  width: 100%;/* look & feel */
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  padding-bottom: 16px;
  padding-top: 16px;
}

.form [type=color] {
  cursor: pointer;
  display: block;
  margin: 15px 0 0;
}

.form [type=image] {
  cursor: pointer;
  display: block;
  margin: 15px 0 0;
}

.form [disabled] {
  cursor: default;
  opacity: .5;
  pointer-events: none;
}

.form [readonly] {
  background-color: rgb(242, 242, 242);
}

.form .has-danger input {
  border-color: #d0021b;
}

.form .form-group {
  position: relative;
}

.form .form-control-feedback {
  position: absolute;
  margin-top: -25px;
  left: 0;
  font-size: 14px;
  color: #d0021b;
}

.form input[type=text]::-webkit-input-placeholder {
  color: #dfe2e5;
}

.form input[type=text]::-moz-placeholder {
  color: #dfe2e5;
}

.form input[type=text]::-ms-input-placeholder {
  color: #dfe2e5;
}

.form input[type=text]::placeholder {
  color: #dfe2e5;
}

.form input[type=password]::-webkit-input-placeholder {
  color: #dfe2e5;
}

.form input[type=password]::-moz-placeholder {
  color: #dfe2e5;
}

.form input[type=password]::-ms-input-placeholder {
  color: #dfe2e5;
}

.form input[type=password]::placeholder {
  color: #dfe2e5;
}

.form input:-webkit-autofill {
  background-color: #fff;
  border: 1px solid #dfe2e5;
  color: #7f8fa4;
  -webkit-text-fill-color: #7f8fa4;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.form textarea:-webkit-autofill {
  background-color: #fff;
  border: 1px solid #dfe2e5;
  color: #7f8fa4;
  -webkit-text-fill-color: #7f8fa4;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.form select:-webkit-autofill {
  background-color: #fff;
  border: 1px solid #dfe2e5;
  color: #7f8fa4;
  -webkit-text-fill-color: #7f8fa4;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.form {/* Custom components */
}

.form .checkbox-inner {
  position: relative;
  display: block;
  width: 2em;
  height: 2em;
}

.form .checkbox-inner label {
  pointer-events: none;
}

.form .checkbox-input {
  opacity: 0;
  position: absolute;
  width: 2em;
  height: 2em;
  margin: 0 !important;
}

.previews {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden
}

.previews button {
  position: absolute;
  top: 0;
  right: 0;
  width: auto !important;
  color: #db5656;
  font-size: 2.5em;
  z-index: 100;
}

.previews div > div img {
  min-width: 100%;
  max-width: 100%;/* none; */
}

.scroll-view {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.no-scroll {
  overflow: hidden;
}

/* Text helpers
─────────────────────────────────────────────────────────────────────────────
Helpers for aligning, colorizing etc. text elements
───────────────────────────────────────────────────────────────────────────── */

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

.text-left {
  text-align: left !important;
}

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

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

.text-muted {
  color: #ced0da !important;
}

.text-primary {
  color: #0275d8 !important;
}

.text-danger {
  color: #db5656 !important;
}

a.text-muted, a.text-primary, a.text-danger {
  text-decoration: underline !important;
}

.text-small {
  font-size: 14px !important;
}

.text-mono {
  font-family: "Menlo",
    "Monaco",
    "Consolas",
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 16px !important;
  color: #354052 !important;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
  z-index: 98
}

.tooltip-wrapper .tooltip {
  position: absolute;
  z-index: 99;
  font-size: 1.2rem;
  font-weight: bold;
  max-width: 420px;
  background: #354052;
  bottom: 100%;
  left: 50%;
  margin-bottom: 0;
  padding: .8rem 1.2rem .7rem 1.2rem;
  -webkit-box-shadow: 0 6px 12px 0 rgba(53, 64, 82, 0.4);
          box-shadow: 0 6px 12px 0 rgba(53, 64, 82, 0.4);
  border-radius: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: tooltip-slide .15s forwards;
          animation: tooltip-slide .15s forwards;
}

.tooltip-wrapper .tooltip-content {
  color: #fff;
  display: inline;
  white-space: nowrap;
}

.tooltip-wrapper .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
  border-left: solid transparent 5px;
  border-right: solid transparent 5px;
  border-top: solid #354052 5px;
}

.tooltip-wrapper .tooltip-gap {
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: -10px;
}

@-webkit-keyframes tooltip-slide {
  0% { opacity: .3; }
  100% { opacity: 1; }
}

@keyframes tooltip-slide {
  0% { opacity: .3; }
  100% { opacity: 1; }
}

/* @keyframes tooltip-slide {
  0% { transform: translateX(-50%) translateY(80%) scale(.5); }
  100% { transform: translateX(-50%) translateY(0) scale(1); }
} */

.notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  background-color: rgba(0, 0, 0, .9);
  padding: 13px 16px
}

.notification.notification-visible {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.notification.notification-large {
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  border-radius: 2px;
  padding: 20px 24px;
  min-width: 400px;
  max-width: 600px;
}

.notification.notification-large.notification-visible {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.notification .notification-label {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  font: normal 14px arial, sans-serif;
  color: #fff;
}

.notification .notification-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  font: bold 14px arial, sans-serif;
  color: #bada55;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999
}

.modal .modal-scroll {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  z-index: 1;
}

.modal .modal-scroll .modal-content {
  z-index: 1;
  background-color: #fff;
  position: relative;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px rgba(53, 64, 82, .5);
          box-shadow: 0 0 20px rgba(53, 64, 82, .5);
  margin: 200px auto 0;/* overflow: hidden; TODO: check how it's working with large modals (commented because of tooltip) */
}

.modal .modal-scroll .modal-content.modal-small {
  width: 300px;
}

.modal .modal-scroll .modal-content.modal-medium {
  width: 600px;
}

.modal .modal-scroll .modal-content.modal-large {
  width: 800px;
}

.modal .modal-scroll .modal-content .modal-header {
  width: 100%;
  height: 74px;
  position: relative;
  color: #373a3c;
  -webkit-box-shadow: inset 0 -1px 0 0 #c5d0de;
          box-shadow: inset 0 -1px 0 0 #c5d0de;
}

.modal .modal-scroll .modal-content .modal-header h2 {
  margin: 0;
  padding: 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 24px;
  font-weight: normal;
  line-height: 74px;
}

.modal .modal-scroll .modal-content .modal-header h2 span {
  font-weight: bold;
}

.modal .modal-scroll .modal-content button.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  color: #666;
}

.modal .modal-scroll .modal-content button.modal-close:hover {
  color: #4186bf;
  cursor: pointer;
}

.modal .modal-scroll .modal-content button.modal-close:focus {
  outline: none;
}

.modal .modal-scroll .modal-content .modal-body {
  width: 100%;
  padding: 20px;
  color: #373a3c;
}

.modal .modal-scroll .modal-content .modal-body span {
  font-weight: bold;
}

.modal .modal-scroll .modal-content .modal-footer {
  padding: 20px;
  text-align: right;
}

.modal .modal-scroll .modal-content .modal-footer button {
  margin-left: 8px;
  margin-right: 0;
  min-width: 12rem;
}

.modal .modal-shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(53, 64, 82, .4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.modal {/* * ========= Animations ========= */
}

.modal.modal-enter {
  opacity: .01;
}

.modal.modal-enter .modal-scroll .modal-content {
  opacity: 0;
  -webkit-transform: scale(.5);
          transform: scale(.5);
}

.modal.modal-enter.modal-enter-active {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}

.modal.modal-enter.modal-enter-active .scroll .content {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.modal.modal-leave {
  opacity: 1;
}

.modal.modal-leave .modal-scroll .modal-content {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.modal.modal-leave.modal-leave-active {
  opacity: .01;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}

.modal.modal-leave.modal-leave-active .modal-scroll .modal-content {
  opacity: 0;
  -webkit-transform: scale(.5);
          transform: scale(.5);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.avatar {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  height: 40px;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 40px;
  border-radius: 50%
}

.avatar.avatar-square {
  border-radius: 5px;
}

.avatar > svg {
  fill: currentColor;
  height: 1em;
  width: 1em;
}

.avatar > img {
  height: auto;
  max-width: 100%;
}

.avatar-image {
  background-color: transparent;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

.avatar-letter {
  line-height: 40px;
  font-weight: bold;
  background-color: #7f8fa4;
}

/* %flex {
  @import "./flexbox.css";
} */

.__row-gutter-large-margin-bottom-double {

  /* composes: gutter-large from "./flexbox.css";
  composes: bottom-margin-double from "./spacing.css"; */
}

.bordered-box {
  position: relative;
  padding: 4px 30px;
  min-height: 130px
}

.bordered-box h2 {
  font-size: 40px;
  font-weight: 300;
  margin: 0;
  color: #354052;
}

.infothek-preview > div {
  margin-top: 7.5px !important;
}

.renderpreview p {
  margin: 15px 0;
}

.divider {
  margin: 0;
  margin-top: -1;
  margin-left: 0;
  height: 1;
  border: none;
  background-color: #dfe2e5
}

.divider.inset {
  margin-left: 72px;
}

.autocomplete {
  position: relative
}

.autocomplete::after {
  content: "";
  position: absolute;
  border-left: 5px solid transparent;
  border-left: 0.5rem solid transparent;
  border-right: 5px solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 5px solid #7f8fa4;
  border-top: 0.5rem solid #7f8fa4;
  // Todo: - add withlabel class maybe ?;
  margin-top: 14px;
  height: 0;
  width: 0;
  right: 10px;
  right: 1rem;
  top: 50%;
  pointer-events: none;
  -webkit-transition: -webkit-transform .35s cubic-bezier(.4, 0, .2, 1);
  transition: -webkit-transform .35s cubic-bezier(.4, 0, .2, 1);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), -webkit-transform .35s cubic-bezier(.4, 0, .2, 1);
}

.autocomplete.focus input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.autocomplete.focus .suggestions {
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .12),
    0 1px 4px rgba(0, 0, 0, .24);
          box-shadow: 0 1px 6px rgba(0, 0, 0, .12),
    0 1px 4px rgba(0, 0, 0, .24);
  max-height: 45vh;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -ms-overflow-style: none;
  visibility: visible;
}

.values {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  list-style: none;
  margin: 0;
  padding: 0 0 5px 0;
}

.value {
  margin: 2.5px 5px 2.5px 0;
}

.suggestions-container {
  position: absolute;
  overflow: hidden;
  width: 100%;
  display: none
}

.suggestions-container:not(.up) {
  margin-top: -24px;
}

.focus .suggestions-container {
  display: block;
}

.suggestions {
  background-color: #fff;
  list-style: none;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform, -webkit-box-shadow;
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
          transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  width: 100%;
  z-index: 100;
  border: 1px solid #7f8fa4;
  border-top-color: transparent;
}

.suggestion {
  cursor: pointer;
  font-size: undefined;
  padding: 0 16px
}

.suggestion.active {
  background-color: #7f8fa4;
  color: #fff;
}

.input-calendar {
  position: relative;
  color: #7f8fa4
}

.input-calendar .input-calendar-wrapper {
  position: absolute;
  padding: 4px;
  border: 1px solid #7f8fa4;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .12),
    0 1px 4px rgba(0, 0, 0, .24);
          box-shadow: 0 1px 6px rgba(0, 0, 0, .12),
    0 1px 4px rgba(0, 0, 0, .24);
  background-color: #fff;
  text-align: center;
  left: 0;
  margin-top: -17px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
}

.input-calendar .input-calendar-wrapper::before {
  left: 6px;
  top: -7px;
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #7f8fa4;
  border-top: 0;
  border-bottom-color: #7f8fa4;
  position: absolute;
}

.input-calendar .input-calendar-wrapper::after {
  top: -6px;
  left: 7px;
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}

.input-calendar .days, .input-calendar .months, .input-calendar .years {
  padding-bottom: 2px;
}

.input-calendar .cell {
  display: block;
  text-align: center;
  cursor: pointer;
  border: 1px solid #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.input-calendar .datepicker-table .cell:hover {
  background: rgb(225, 229, 234);
  border: 1px solid rgb(225, 229, 234);
  border-radius: 4px;
}

.input-calendar .cell.current {
  background: #7f8fa4;
  color: #fff;
  border-radius: 4px;
}

.input-calendar .day {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  float: left;
  margin: 1px;
}

.input-calendar .day:nth-child(7n+1) {
  clear: left;
}

.input-calendar .day.prev {
  color: #ced0da;
}

.input-calendar .day.next {
  color: #ced0da;
}

.input-calendar .month {
  width: 58px;
  height: 38px;
  line-height: 38px;
  float: left;
}

.input-calendar .month:nth-child(4n+1) {
  clear: left;
}

.input-calendar .year {
  width: 58px;
  height: 38px;
  line-height: 38px;
  float: left;
}

.input-calendar .year:nth-child(4n+1) {
  clear: left;
}

.input-calendar .days-title .cell {
  height: 25px;
  line-height: 28px;
  font-weight: bold;
  cursor: default;
}

.input-calendar .years-view .navigation-title {
  cursor: default;
}

.input-calendar .years-view .navigation-title:hover {
  color: #000;
}

.input-calendar .today-btn:hover {
  background: rgb(225, 229, 234);
}

.input-calendar .today-btn {
  cursor: pointer;
  display: block;
  clear: both;
  padding: 3px 10px;
  font-weight: bold;
  border-radius: 4px;
}

.input-calendar .navigation-wrapper {
  font-weight: bold;
}

.input-calendar .navigation-wrapper .navigation-title {
  width: 100px;
  display: inline-block;
  padding: 0 7px;
  border-radius: 4px;
}

.input-calendar .navigation-wrapper .navigation-title:hover {
  background: rgb(225, 229, 234);
  cursor: pointer;
}

.input-calendar .navigation-wrapper .prev {
  float: left;
  padding: 0 7px;
  border-radius: 4px;
}

.input-calendar .navigation-wrapper .prev:hover {
  background: rgb(225, 229, 234);
  cursor: pointer;
}

.input-calendar .navigation-wrapper .next {
  float: right;
  padding: 0 7px;
  border-radius: 4px;
}

.input-calendar .navigation-wrapper .next:hover {
  background: rgb(225, 229, 234);
  cursor: pointer;
}

.dropdown-menu {
  display: block;
  position: relative
}

.dropdown-menu .dropdown-toggle {
  text-align: left;
  position: relative;/* Needed for dropdown animation - this and below line */
  z-index: 200;
}

.dropdown-menu .dropdown-menu-items {
  position: absolute;
  z-index: 100;
  margin: .1em 0 0 0;
  width: 100%;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  color: #7f8fa4;
  background-color: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .15),
    0 2px 4px rgba(0, 0, 0, .29);
          box-shadow: 0 0 4px rgba(0, 0, 0, .15),
    0 2px 4px rgba(0, 0, 0, .29);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dropdown-menu .dropdown-menu-items.dropdown-items-upwards {
  bottom: 100%;
  margin: 0 0 .1em;
}

.dropdown-menu .dropdown-menu-items header {
  font-weight: bold;
  text-align: center;
  cursor: default;
  border-bottom: 1px solid #dfe2e5;
}

.dropdown-menu .dropdown-menu-items .dropdown-menu-item {
  padding: 1em 1.5em;
  cursor: default;
}

.dropdown-menu .dropdown-menu-items .dropdown-menu-item:hover:not(.dropdown-menu-separator) {
  color: #fff;
  background-color: #7f8fa4;
  outline: none;
}

.dropdown-menu .dropdown-menu-items > *:not(.dropdown-menu-separator) {
  display: block;
  width: auto;
  min-width: 100%;
}

.dropdown-menu .dropdown-menu-items > :last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dropdown-menu .dropdown-menu-item-active {
  font-weight: bold;
}

.dropdown-menu .dropdown-opened {
  background-color: rgb(102, 110, 117);
}

.dropdown-menu .dropdown-opened svg {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.dropdown-menu .dropdown-menu-separator {
  content: "";
  display: block;
  height: 1px;
  background-color: #dfe2e5;
  margin: .5em 0 .5em 0;
}

.dropdown-menu.dropdown-menu-inverse .dropdown-menu-items .dropdown-items-container {
  color: #fff;
  background-color: #7f8fa4;
}

.dropdown-menu.dropdown-menu-inverse .dropdown-menu-items .dropdown-items-container .dropdown-menu-item:hover:not(.dropdown-menu-separator) {
  color: #7f8fa4;
  background-color: #fff;
}

.dropdown-menu.dropdown-menu-inverse {

  .dropdown-menu-separator {
      background-color: rgb(0, 0, 0);
  }
}

/* Animations */

/* .dropdown-enter1 {
  transform: scale(0);
  transform-origin: 50% 0;
  transition: transform .15s cubic-bezier(.5, 1.8, .9, .8);
}

.dropdown-enter1.dropdown-enter-active {
  transform: scale(1);
}

.dropdown-leave1 {
  transform: scale(1);
  transform-origin: 50% 0;
  transition: transform .15s ease-out;
}

.dropdown-leave1.dropdown-leave-active {
  transform: scale(0);
} */

.dropdown-enter {
  overflow: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.5, 1.8, .9, .8);
  transition: -webkit-transform .35s cubic-bezier(.5, 1.8, .9, .8);
  transition: transform .35s cubic-bezier(.5, 1.8, .9, .8);
  transition: transform .35s cubic-bezier(.5, 1.8, .9, .8), -webkit-transform .35s cubic-bezier(.5, 1.8, .9, .8);
}

.dropdown-enter.dropdown-enter-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dropdown-leave {
  overflow: hidden;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.5, 1.8, .9, .8);
  transition: -webkit-transform .35s cubic-bezier(.5, 1.8, .9, .8);
  transition: transform .35s cubic-bezier(.5, 1.8, .9, .8);
  transition: transform .35s cubic-bezier(.5, 1.8, .9, .8), -webkit-transform .35s cubic-bezier(.5, 1.8, .9, .8);
}

.dropdown-leave.dropdown-leave-active {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

/*# sourceMappingURL=app.10285a02.css.map*/