@charset "UTF-8";
/**
 * Theme colors
 */
/* default presets */
/* bg for dark-theme */
@media screen and (min-width: 960px) {
  html,
  body {
    height: 100%;
  }
}
strong {
  font-family: "Barlow-Medium", "Barlow", "Helvetica Neue", sans-serif;
}

[data-has-scrollbar-width=true] ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
[data-has-scrollbar-width=true] ::-webkit-scrollbar-thumb {
  border-right: 2px solid rgba(0, 0, 0, 0);
  border-left: 2px solid rgba(0, 0, 0, 0);
  border-top: 2px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 999px;
  background-color: rgba(143, 158, 164, 0.4);
  cursor: pointer;
}

/* new additive ui*/
/**
 * blocks with spacing
 */
html,
body,
p,
ol,
ul,
li,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

/**
  * headings
  */
h1,
h2,
h3 {
  font-size: 100%;
  font-weight: normal;
}

/**
  * list
  */
ul,
ol {
  padding-left: 20px;
}

/**
  * form
  */
button,
input,
select,
textarea {
  margin: 0;
}

button {
  padding: 0;
  background: none;
}

button:focus {
  outline: none;
}

/**
  * box-sizing
  */
* {
  box-sizing: border-box;
}

/**
  * media
  */
img,
video {
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
  * Add the correct display in IE.
  */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Breakingpoints
 */
/**
  * Theme colors
  */
/* default presets */
/* bg for dark-theme */
/*
es dark theme unterscheidet sich eig recht simple vom light theme
für di flächen ischs so:
cloud burst ersetzt weiß
black pearl ersetzt #f2f2f2
für di schriften ischs so:
weiß ersetzt black pearl
grau bleibt gleich
*/
/*
  FLEXBOX

  There are no utility classes for the reversed flex-properties nor are for the order,
  due the lack of common usage.
  If we need them to a later point we'll ad them then.

  The display flex classes are located in displays.scss.

  Media Query Extensions:
   -sm = not-small
   -md  = medium
   -lg  = large
*/
/* 1. Fix for Chrome 44 bug.
 * https://code.google.com/p/chromium/issues/detail?id=506893 */
.flex-auto {
  flex: 1 1 auto;
  min-width: 0; /* 1 */
  min-height: 0; /* 1 */
}

.flex-none {
  flex: none;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row {
  flex-direction: row;
}

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

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-center {
  align-content: center;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

@media screen and (min-width: 600px) {
  .flex-auto-sm {
    flex: 1 1 auto;
    min-width: 0; /* 1 */
    min-height: 0; /* 1 */
  }
  .flex-none-sm {
    flex: none;
  }
  .flex-column-sm {
    flex-direction: column;
  }
  .flex-row-sm {
    flex-direction: row;
  }
  .flex-wrap-sm {
    flex-wrap: wrap;
  }
  .flex-nowrap-sm {
    flex-wrap: nowrap;
  }
  .items-start-sm {
    align-items: flex-start;
  }
  .items-end-sm {
    align-items: flex-end;
  }
  .items-center-sm {
    align-items: center;
  }
  .self-start-sm {
    align-self: flex-start;
  }
  .self-end-sm {
    align-self: flex-end;
  }
  .self-center-sm {
    align-self: center;
  }
  .justify-start-sm {
    justify-content: flex-start;
  }
  .justify-end-sm {
    justify-content: flex-end;
  }
  .justify-center-sm {
    justify-content: center;
  }
  .justify-between-sm {
    justify-content: space-between;
  }
  .justify-around-sm {
    justify-content: space-around;
  }
  .content-start-sm {
    align-content: flex-start;
  }
  .content-end-sm {
    align-content: flex-end;
  }
  .content-center-sm {
    align-content: center;
  }
  .content-between-sm {
    align-content: space-between;
  }
  .content-around-sm {
    align-content: space-around;
  }
  .flex-grow-0-sm {
    flex-grow: 0;
  }
  .flex-grow-1-sm {
    flex-grow: 1;
  }
  .flex-shrink-0-sm {
    flex-shrink: 0;
  }
  .flex-shrink-1-sm {
    flex-shrink: 1;
  }
}
@media screen and (min-width: 960px) {
  .flex-auto-md {
    flex: 1 1 auto;
    min-width: 0; /* 1 */
    min-height: 0; /* 1 */
  }
  .flex-none-md {
    flex: none;
  }
  .flex-column-md {
    flex-direction: column;
  }
  .flex-row-md {
    flex-direction: row;
  }
  .flex-wrap-md {
    flex-wrap: wrap;
  }
  .flex-nowrap-md {
    flex-wrap: nowrap;
  }
  .items-start-md {
    align-items: flex-start;
  }
  .items-end-md {
    align-items: flex-end;
  }
  .items-center-md {
    align-items: center;
  }
  .self-start-md {
    align-self: flex-start;
  }
  .self-end-md {
    align-self: flex-end;
  }
  .self-center-md {
    align-self: center;
  }
  .justify-start-md {
    justify-content: flex-start;
  }
  .justify-end-md {
    justify-content: flex-end;
  }
  .justify-center-md {
    justify-content: center;
  }
  .justify-between-md {
    justify-content: space-between;
  }
  .justify-around-md {
    justify-content: space-around;
  }
  .content-start-md {
    align-content: flex-start;
  }
  .content-end-md {
    align-content: flex-end;
  }
  .content-center-md {
    align-content: center;
  }
  .content-between-md {
    align-content: space-between;
  }
  .content-around-md {
    align-content: space-around;
  }
  .flex-grow-0-md {
    flex-grow: 0;
  }
  .flex-grow-1-md {
    flex-grow: 1;
  }
  .flex-shrink-0-md {
    flex-shrink: 0;
  }
  .flex-shrink-1-md {
    flex-shrink: 1;
  }
}
@media screen and (min-width: 1280px) {
  .flex-auto-lg {
    flex: 1 1 auto;
    min-width: 0; /* 1 */
    min-height: 0; /* 1 */
  }
  .flex-none-lg {
    flex: none;
  }
  .flex-column-lg {
    flex-direction: column;
  }
  .flex-row-lg {
    flex-direction: row;
  }
  .flex-wrap-lg {
    flex-wrap: wrap;
  }
  .flex-nowrap-lg {
    flex-wrap: nowrap;
  }
  .items-start-lg {
    align-items: flex-start;
  }
  .items-end-lg {
    align-items: flex-end;
  }
  .items-center-lg {
    align-items: center;
  }
  .self-start-lg {
    align-self: flex-start;
  }
  .self-end-lg {
    align-self: flex-end;
  }
  .self-center-lg {
    align-self: center;
  }
  .justify-start-lg {
    justify-content: flex-start;
  }
  .justify-end-lg {
    justify-content: flex-end;
  }
  .justify-center-lg {
    justify-content: center;
  }
  .justify-between-lg {
    justify-content: space-between;
  }
  .justify-around-lg {
    justify-content: space-around;
  }
  .content-start-lg {
    align-content: flex-start;
  }
  .content-end-lg {
    align-content: flex-end;
  }
  .content-center-lg {
    align-content: center;
  }
  .content-between-lg {
    align-content: space-between;
  }
  .content-around-lg {
    align-content: space-around;
  }
  .flex-grow-0-lg {
    flex-grow: 0;
  }
  .flex-grow-1-lg {
    flex-grow: 1;
  }
  .flex-shrink-0-lg {
    flex-shrink: 0;
  }
  .flex-shrink-1-lg {
    flex-shrink: 1;
  }
}
/*
   WIDTHS

   Base:
     w = width

     Modifiers
       -10  = literal value 10%
       -20  = literal value 20%
       -25  = literal value 25%
       -30  = literal value 30%
       -33  = literal value 33%
       -34  = literal value 34%
       -40  = literal value 40%
       -50  = literal value 50%
       -60  = literal value 60%
       -70  = literal value 70%
       -75  = literal value 75%
       -80  = literal value 80%
       -90  = literal value 90%
       -100 = literal value 100%

       -third      = 100% / 3 (Not supported in opera mini or IE8)
       -two-thirds = 100% / 1.5 (Not supported in opera mini or IE8)
       -auto       = string value auto


     Media Query Extensions:
       -sm = not-small
       -md  = medium
       -lg  = large

  */
.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-33 {
  width: 33%;
}

.w-34 {
  width: 34%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.w-third {
  width: 33.3333333333%;
}

.w-two-thirds {
  width: 66.6666666667%;
}

.w-auto {
  width: auto;
}

@media screen and (min-width: 600px) {
  .w-10-sm {
    width: 10%;
  }
  .w-20-sm {
    width: 20%;
  }
  .w-25-sm {
    width: 25%;
  }
  .w-30-sm {
    width: 30%;
  }
  .w-33-sm {
    width: 33%;
  }
  .w-34-sm {
    width: 34%;
  }
  .w-40-sm {
    width: 40%;
  }
  .w-50-sm {
    width: 50%;
  }
  .w-60-sm {
    width: 60%;
  }
  .w-70-sm {
    width: 70%;
  }
  .w-75-sm {
    width: 75%;
  }
  .w-80-sm {
    width: 80%;
  }
  .w-90-sm {
    width: 90%;
  }
  .w-100-sm {
    width: 100%;
  }
  .w-third-sm {
    width: 33.3333333333%;
  }
  .w-two-thirds-sm {
    width: 66.6666666667%;
  }
  .w-auto-sm {
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .w-10-md {
    width: 10%;
  }
  .w-20-md {
    width: 20%;
  }
  .w-25-md {
    width: 25%;
  }
  .w-30-md {
    width: 30%;
  }
  .w-33-md {
    width: 33%;
  }
  .w-34-md {
    width: 34%;
  }
  .w-40-md {
    width: 40%;
  }
  .w-50-md {
    width: 50%;
  }
  .w-60-md {
    width: 60%;
  }
  .w-70-md {
    width: 70%;
  }
  .w-75-md {
    width: 75%;
  }
  .w-80-md {
    width: 80%;
  }
  .w-90-md {
    width: 90%;
  }
  .w-100-md {
    width: 100%;
  }
  .w-third-md {
    width: 33.3333333333%;
  }
  .w-two-thirds-md {
    width: 66.6666666667%;
  }
  .w-auto-md {
    width: auto;
  }
}
@media screen and (min-width: 1280px) {
  .w-10-lg {
    width: 10%;
  }
  .w-20-lg {
    width: 20%;
  }
  .w-25-lg {
    width: 25%;
  }
  .w-30-lg {
    width: 30%;
  }
  .w-33-lg {
    width: 33%;
  }
  .w-34-lg {
    width: 34%;
  }
  .w-40-lg {
    width: 40%;
  }
  .w-50-lg {
    width: 50%;
  }
  .w-60-lg {
    width: 60%;
  }
  .w-70-lg {
    width: 70%;
  }
  .w-75-lg {
    width: 75%;
  }
  .w-80-lg {
    width: 80%;
  }
  .w-90-lg {
    width: 90%;
  }
  .w-100-lg {
    width: 100%;
  }
  .w-third-lg {
    width: 33.3333333333%;
  }
  .w-two-thirds-lg {
    width: 66.6666666667%;
  }
  .w-auto-lg {
    width: auto;
  }
}
/*

   HEIGHTS
   Docs: http://tachyons.io/docs/layout/heights/

   Base:
     h = height
     min-h = min-height
     min-vh = min-height vertical screen height
     vh = vertical screen height

   Modifiers
     1 = 1st step in height scale
     2 = 2nd step in height scale
     3 = 3rd step in height scale
     4 = 4th step in height scale
     5 = 5th step in height scale

     -25   = literal value 25%
     -50   = literal value 50%
     -75   = literal value 75%
     -100  = literal value 100%

     -auto = string value of auto
     -inherit = string value of inherit

   Media Query Extensions:
     -sm = not-small
     -md  = medium
     -lg  = large

*/
/* Height Scale */
.h0 {
  height: 0;
}

.h1 {
  height: 32px;
}

.h2 {
  height: 48px;
}

.h3 {
  height: 56px;
}

.h4 {
  height: 64px;
}

.min-h4 {
  min-height: 64px;
}

.h5 {
  height: 72px;
}

/* Height Percentages - Based off of height of parent */
.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-100 {
  height: 100%;
}

.min-h-100 {
  min-height: 100%;
}

/* Screen Height Percentage */
.vh-25 {
  height: 25vh;
}

.vh-50 {
  height: 50vh;
}

.vh-75 {
  height: 75vh;
}

.vh-100 {
  height: 100vh;
}

.min-vh-25 {
  min-height: 25vh;
}

.min-vh-100 {
  min-height: 100vh;
}

/* String Properties */
.h-auto {
  height: auto;
}

.h-inherit {
  height: inherit;
}

@media screen and (min-width: 600px) {
  .h0-sm {
    height: 0;
  }
  .h1-sm {
    height: 32px;
  }
  .h2-sm {
    height: 48px;
  }
  .h3-sm {
    height: 56px;
  }
  .h4-sm {
    height: 64px;
  }
  .h5-sm {
    height: 72px;
  }
  .h-25-sm {
    height: 25%;
  }
  .h-50-sm {
    height: 50%;
  }
  .h-75-sm {
    height: 75%;
  }
  .h-100-sm {
    height: 100%;
  }
  .min-h-100-sm {
    min-height: 100%;
  }
  .vh-25-sm {
    height: 25vh;
  }
  .vh-50-sm {
    height: 50vh;
  }
  .vh-75-sm {
    height: 75vh;
  }
  .vh-100-sm {
    height: 100vh;
  }
  .min-vh-100-sm {
    min-height: 100vh;
  }
  .h-auto-sm {
    height: auto;
  }
  .h-inherit-sm {
    height: inherit;
  }
}
@media screen and (min-width: 960px) {
  .h0-md {
    height: 0;
  }
  .h1-md {
    height: 32px;
  }
  .h2-md {
    height: 48px;
  }
  .h3-md {
    height: 56px;
  }
  .h4-md {
    height: 64px;
  }
  .h5-md {
    height: 72px;
  }
  .h-25-md {
    height: 25%;
  }
  .h-50-md {
    height: 50%;
  }
  .h-75-md {
    height: 75%;
  }
  .h-100-md {
    height: 100%;
  }
  .min-h-100-md {
    min-height: 100%;
  }
  .vh-25-md {
    height: 25vh;
  }
  .vh-50-md {
    height: 50vh;
  }
  .vh-75-md {
    height: 75vh;
  }
  .vh-100-md {
    height: 100vh;
  }
  .min-vh-100-md {
    min-height: 100vh;
  }
  .h-auto-md {
    height: auto;
  }
  .h-inherit-md {
    height: inherit;
  }
}
@media screen and (min-width: 1280px) {
  .h0-lg {
    height: 0;
  }
  .h1-lg {
    height: 32px;
  }
  .h2-lg {
    height: 48px;
  }
  .h3-lg {
    height: 56px;
  }
  .h4-lg {
    height: 64px;
  }
  .h5-lg {
    height: 72px;
  }
  .h-25-lg {
    height: 25%;
  }
  .h-50-lg {
    height: 50%;
  }
  .h-75-lg {
    height: 75%;
  }
  .h-100-lg {
    height: 100%;
  }
  .min-h-100-lg {
    min-height: 100%;
  }
  .vh-25-lg {
    height: 25vh;
  }
  .vh-50-lg {
    height: 50vh;
  }
  .vh-75-lg {
    height: 75vh;
  }
  .vh-100-lg {
    height: 100vh;
  }
  .min-vh-100-lg {
    min-height: 100vh;
  }
  .h-auto-lg {
    height: auto;
  }
  .h-inherit-lg {
    height: inherit;
  }
}
/*
  MAX WIDTHS

  Base:
    mw = max-width

  Modifiers
    1 = 1st step in width scale
    2 = 2nd step in width scale
    3 = 3rd step in width scale
    4 = 4th step in width scale
    5 = 5th step in width scale
    6 = 6st step in width scale
    7 = 7nd step in width scale
    8 = 8rd step in width scale
    9 = 9th step in width scale

    -100 = literal value 100%

    -none  = string value none

  Media Query Extensions:
    -sm = not-small
    -md  = medium
    -lg  = large
*/
/* Max Width Percentages */
.mw-33 {
  max-width: 33%;
}

.mw-50 {
  max-width: 50%;
}

.mw-100 {
  max-width: 100%;
}

/* Max Width Scale */
.mw1 {
  max-width: 16px;
}

.mw2 {
  max-width: 32px;
}

.mw3 {
  max-width: 64px;
}

.mw4 {
  max-width: 128px;
}

.mw5 {
  max-width: 256px;
}

.mw6 {
  max-width: 640px;
}

.mw7 {
  max-width: 768px;
}

.mw8 {
  max-width: 1024px;
}

.mw9 {
  max-width: 1536px;
}

/* Max Width String Properties */
.mw-none {
  max-width: none;
}

@media screen and (min-width: 600px) {
  .mw-33-sm {
    max-width: 33%;
  }
  .mw-50-sm {
    max-width: 50%;
  }
  .mw-100-sm {
    max-width: 100%;
  }
  .mw1-sm {
    max-width: 16px;
  }
  .mw2-sm {
    max-width: 32px;
  }
  .mw3-sm {
    max-width: 64px;
  }
  .mw4-sm {
    max-width: 128px;
  }
  .mw5-sm {
    max-width: 256px;
  }
  .mw6-sm {
    max-width: 640px;
  }
  .mw7-sm {
    max-width: 768px;
  }
  .mw8-sm {
    max-width: 1024px;
  }
  .mw9-sm {
    max-width: 1536px;
  }
  .mw-none-sm {
    max-width: none;
  }
}
@media screen and (min-width: 960px) {
  .mw-33-md {
    max-width: 33%;
  }
  .mw-50-md {
    max-width: 50%;
  }
  .mw-100-md {
    max-width: 100%;
  }
  .mw1-md {
    max-width: 16px;
  }
  .mw2-md {
    max-width: 32px;
  }
  .mw3-md {
    max-width: 64px;
  }
  .mw4-md {
    max-width: 128px;
  }
  .mw5-md {
    max-width: 256px;
  }
  .mw6-md {
    max-width: 640px;
  }
  .mw7-md {
    max-width: 768px;
  }
  .mw8-md {
    max-width: 1024px;
  }
  .mw9-md {
    max-width: 1536px;
  }
  .mw-none-md {
    max-width: none;
  }
}
@media screen and (min-width: 1280px) {
  .mw-33-lg {
    max-width: 33%;
  }
  .mw-50-lg {
    max-width: 50%;
  }
  .mw-100-lg {
    max-width: 100%;
  }
  .mw1-lg {
    max-width: 16px;
  }
  .mw2-lg {
    max-width: 32px;
  }
  .mw3-lg {
    max-width: 64px;
  }
  .mw4-lg {
    max-width: 128px;
  }
  .mw5-lg {
    max-width: 256px;
  }
  .mw6-lg {
    max-width: 640px;
  }
  .mw7-lg {
    max-width: 768px;
  }
  .mw8-lg {
    max-width: 1024px;
  }
  .mw9-lg {
    max-width: 1536px;
  }
  .mw-none-lg {
    max-width: none;
  }
}
/*
   SPACING

   Base:
     p = padding
     m = margin

   Modifiers:
     a = all
     h = horizontal
     v = vertical
     t = top
     r = right
     b = bottom
     l = left

     0 = none
     1 = 1st step in spacing scale
     2 = 2nd step in spacing scale
     3 = 3rd step in spacing scale
     4 = 4th step in spacing scale

   Media Query Extensions:
     -sm = not-small
     -md = medium
     -lg  = large
*/
/* $spacing-extra-large: rem(4) !default;
$spacing-extra-extra-large: rem(8) !default;
$spacing-extra-extra-extra-large: rem(16) !default; */
.pa0 {
  padding: 0;
}

.pa05 {
  padding: 4px;
}

.pa1 {
  padding: 8px;
}

.pa2 {
  padding: 16px;
}

.pa3 {
  padding: 24px;
}

.pa4 {
  padding: 32px;
}

.pl0 {
  padding-left: 0;
}

.pl05 {
  padding-left: 4px;
}

.pl1 {
  padding-left: 8px;
}

.pl2 {
  padding-left: 16px;
}

.pl3 {
  padding-left: 24px;
}

.pl4 {
  padding-left: 32px;
}

.pr0 {
  padding-right: 0;
}

.pr05 {
  padding-right: 4px;
}

.pr1 {
  padding-right: 8px;
}

.pr2 {
  padding-right: 16px;
}

.pr3 {
  padding-right: 24px;
}

.pr4 {
  padding-right: 32px;
}

.pb0 {
  padding-bottom: 0;
}

.pb05 {
  padding-bottom: 4px;
}

.pb1 {
  padding-bottom: 8px;
}

.pb2 {
  padding-bottom: 16px;
}

.pb3 {
  padding-bottom: 24px;
}

.pb4 {
  padding-bottom: 32px;
}

.pt0 {
  padding-top: 0;
}

.pt05 {
  padding-top: 4px;
}

.pt1 {
  padding-top: 8px;
}

.pt2 {
  padding-top: 16px;
}

.pt3 {
  padding-top: 24px;
}

.pt4 {
  padding-top: 32px;
}

.pv0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pv05 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.pv1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pv2 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.pv3 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pv4 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.ph0 {
  padding-left: 0;
  padding-right: 0;
}

.ph05 {
  padding-left: 4px;
  padding-right: 4px;
}

.ph1 {
  padding-left: 8px;
  padding-right: 8px;
}

.ph2 {
  padding-left: 16px;
  padding-right: 16px;
}

.ph3 {
  padding-left: 24px;
  padding-right: 24px;
}

.ph4 {
  padding-left: 32px;
  padding-right: 32px;
}

.gap1 {
  gap: 8px;
}

.gap2 {
  gap: 16px;
}

/**
 * @deprecated use mh-auto instead
 */
.ma-auto {
  margin: 0 auto;
}

.m-auto {
  margin: auto;
}

.mh-auto {
  margin: 0 auto;
}

.ma0 {
  margin: 0;
}

.ma05 {
  margin: 4px;
}

.ma1 {
  margin: 8px;
}

.ma2 {
  margin: 16px;
}

.ma3 {
  margin: 24px;
}

.ma4 {
  margin: 32px;
}

.ml0 {
  margin-left: 0;
}

.ml05 {
  margin-left: 4px;
}

.ml1 {
  margin-left: 8px;
}

.ml2 {
  margin-left: 16px;
}

.ml3 {
  margin-left: 24px;
}

.ml4 {
  margin-left: 32px;
}

.mr0 {
  margin-right: 0;
}

.mr05 {
  margin-right: 4px;
}

.mr1 {
  margin-right: 8px;
}

.mr2 {
  margin-right: 16px;
}

.mr3 {
  margin-right: 24px;
}

.mr4 {
  margin-right: 32px;
}

.mb0 {
  margin-bottom: 0;
}

.mb05 {
  margin-bottom: 4px;
}

.mb1 {
  margin-bottom: 8px;
}

.mb2 {
  margin-bottom: 16px;
}

.mb3 {
  margin-bottom: 24px;
}

.mb4 {
  margin-bottom: 32px;
}

.mt0 {
  margin-top: 0;
}

.mt05 {
  margin-top: 4px;
}

.mt1 {
  margin-top: 8px;
}

.mt2 {
  margin-top: 16px;
}

.mt3 {
  margin-top: 24px;
}

.mt4 {
  margin-top: 32px;
}

.mv0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mv05 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mv1 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mv2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mv3 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.mv4 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mh0 {
  margin-left: 0;
  margin-right: 0;
}

.mh05 {
  margin-left: 4px;
  margin-right: 4px;
}

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

.mh2 {
  margin-left: 16px;
  margin-right: 16px;
}

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

.mh4 {
  margin-left: 32px;
  margin-right: 32px;
}

@media screen and (min-width: 600px) {
  .pa0-sm {
    padding: 0;
  }
  .pa1-sm {
    padding: 8px;
  }
  .pa2-sm {
    padding: 16px;
  }
  .pa3-sm {
    padding: 24px;
  }
  .pa4-sm {
    padding: 32px;
  }
  .pl0-sm {
    padding-left: 0;
  }
  .pl1-sm {
    padding-left: 8px;
  }
  .pl2-sm {
    padding-left: 16px;
  }
  .pl3-sm {
    padding-left: 24px;
  }
  .pl4-sm {
    padding-left: 32px;
  }
  .pr0-sm {
    padding-right: 0;
  }
  .pr1-sm {
    padding-right: 8px;
  }
  .pr2-sm {
    padding-right: 16px;
  }
  .pr3-sm {
    padding-right: 24px;
  }
  .pr4-sm {
    padding-right: 32px;
  }
  .pb0-sm {
    padding-bottom: 0;
  }
  .pb1-sm {
    padding-bottom: 8px;
  }
  .pb2-sm {
    padding-bottom: 16px;
  }
  .pb3-sm {
    padding-bottom: 24px;
  }
  .pb4-sm {
    padding-bottom: 32px;
  }
  .pt0-sm {
    padding-top: 0;
  }
  .pt1-sm {
    padding-top: 8px;
  }
  .pt2-sm {
    padding-top: 16px;
  }
  .pt3-sm {
    padding-top: 24px;
  }
  .pt4-sm {
    padding-top: 32px;
  }
  .pv0-sm {
    padding-top: 0;
    padding-bottom: 0;
  }
  .pv1-sm {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .pv2-sm {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .pv3-sm {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .pv4-sm {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .ph0-sm {
    padding-left: 0;
    padding-right: 0;
  }
  .ph1-sm {
    padding-left: 8px;
    padding-right: 8px;
  }
  .ph2-sm {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ph3-sm {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ph4-sm {
    padding-left: 32px;
    padding-right: 32px;
  }
  .m-auto-sm {
    margin: auto;
  }
  .mh-auto-sm {
    margin: 0 auto;
  }
  .ma0-sm {
    margin: 0;
  }
  .ma1-sm {
    margin: 8px;
  }
  .ma2-sm {
    margin: 16px;
  }
  .ma3-sm {
    margin: 24px;
  }
  .ma4-sm {
    margin: 32px;
  }
  .ml0-sm {
    margin-left: 0;
  }
  .ml1-sm {
    margin-left: 8px;
  }
  .ml2-sm {
    margin-left: 16px;
  }
  .ml3-sm {
    margin-left: 24px;
  }
  .ml4-sm {
    margin-left: 32px;
  }
  .mr0-sm {
    margin-right: 0;
  }
  .mr1-sm {
    margin-right: 8px;
  }
  .mr2-sm {
    margin-right: 16px;
  }
  .mr3-sm {
    margin-right: 24px;
  }
  .mr4-sm {
    margin-right: 32px;
  }
  .mb0-sm {
    margin-bottom: 0;
  }
  .mb1-sm {
    margin-bottom: 8px;
  }
  .mb2-sm {
    margin-bottom: 16px;
  }
  .mb3-sm {
    margin-bottom: 24px;
  }
  .mb4-sm {
    margin-bottom: 32px;
  }
  .mt0-sm {
    margin-top: 0;
  }
  .mt1-sm {
    margin-top: 8px;
  }
  .mt2-sm {
    margin-top: 16px;
  }
  .mt3-sm {
    margin-top: 24px;
  }
  .mt4-sm {
    margin-top: 32px;
  }
  .mv0-sm {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mv1-sm {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mv2-sm {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mv3-sm {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .mv4-sm {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mh0-sm {
    margin-left: 0;
    margin-right: 0;
  }
  .mh1-sm {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mh2-sm {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mh3-sm {
    margin-left: 24px;
    margin-right: 24px;
  }
  .mh4-sm {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media screen and (min-width: 960px) {
  .pa0-md {
    padding: 0;
  }
  .pa1-md {
    padding: 8px;
  }
  .pa2-md {
    padding: 16px;
  }
  .pa3-md {
    padding: 24px;
  }
  .pa4-md {
    padding: 32px;
  }
  .pl0-md {
    padding-left: 0;
  }
  .pl1-md {
    padding-left: 8px;
  }
  .pl2-md {
    padding-left: 16px;
  }
  .pl3-md {
    padding-left: 24px;
  }
  .pl4-md {
    padding-left: 32px;
  }
  .pr0-md {
    padding-right: 0;
  }
  .pr1-md {
    padding-right: 8px;
  }
  .pr2-md {
    padding-right: 16px;
  }
  .pr3-md {
    padding-right: 24px;
  }
  .pr4-md {
    padding-right: 32px;
  }
  .pb0-md {
    padding-bottom: 0;
  }
  .pb1-md {
    padding-bottom: 8px;
  }
  .pb2-md {
    padding-bottom: 16px;
  }
  .pb3-md {
    padding-bottom: 24px;
  }
  .pb4-md {
    padding-bottom: 32px;
  }
  .pt0-md {
    padding-top: 0;
  }
  .pt1-md {
    padding-top: 8px;
  }
  .pt2-md {
    padding-top: 16px;
  }
  .pt3-md {
    padding-top: 24px;
  }
  .pt4-md {
    padding-top: 32px;
  }
  .pv0-md {
    padding-top: 0;
    padding-bottom: 0;
  }
  .pv1-md {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .pv2-md {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .pv3-md {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .pv4-md {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .ph0-md {
    padding-left: 0;
    padding-right: 0;
  }
  .ph1-md {
    padding-left: 8px;
    padding-right: 8px;
  }
  .ph2-md {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ph3-md {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ph4-md {
    padding-left: 32px;
    padding-right: 32px;
  }
  .m-auto-md {
    margin: auto;
  }
  .mh-auto-md {
    margin: 0 auto;
  }
  .ma0-md {
    margin: 0;
  }
  .ma1-md {
    margin: 8px;
  }
  .ma2-md {
    margin: 16px;
  }
  .ma3-md {
    margin: 24px;
  }
  .ma4-md {
    margin: 32px;
  }
  .ml0-md {
    margin-left: 0;
  }
  .ml1-md {
    margin-left: 8px;
  }
  .ml2-md {
    margin-left: 16px;
  }
  .ml3-md {
    margin-left: 24px;
  }
  .ml4-md {
    margin-left: 32px;
  }
  .mr0-md {
    margin-right: 0;
  }
  .mr1-md {
    margin-right: 8px;
  }
  .mr2-md {
    margin-right: 16px;
  }
  .mr3-md {
    margin-right: 24px;
  }
  .mr4-md {
    margin-right: 32px;
  }
  .mb0-md {
    margin-bottom: 0;
  }
  .mb1-md {
    margin-bottom: 8px;
  }
  .mb2-md {
    margin-bottom: 16px;
  }
  .mb3-md {
    margin-bottom: 24px;
  }
  .mb4-md {
    margin-bottom: 32px;
  }
  .mt0-md {
    margin-top: 0;
  }
  .mt1-md {
    margin-top: 8px;
  }
  .mt2-md {
    margin-top: 16px;
  }
  .mt3-md {
    margin-top: 24px;
  }
  .mt4-md {
    margin-top: 32px;
  }
  .mv0-md {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mv1-md {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mv2-md {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mv3-md {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .mv4-md {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mh0-md {
    margin-left: 0;
    margin-right: 0;
  }
  .mh1-md {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mh2-md {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mh3-md {
    margin-left: 24px;
    margin-right: 24px;
  }
  .mh4-md {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .pa0-lg {
    padding: 0;
  }
  .pa1-lg {
    padding: 8px;
  }
  .pa2-lg {
    padding: 16px;
  }
  .pa3-lg {
    padding: 24px;
  }
  .pa4-lg {
    padding: 32px;
  }
  .pl0-lg {
    padding-left: 0;
  }
  .pl1-lg {
    padding-left: 8px;
  }
  .pl2-lg {
    padding-left: 16px;
  }
  .pl3-lg {
    padding-left: 24px;
  }
  .pl4-lg {
    padding-left: 32px;
  }
  .pr0-lg {
    padding-right: 0;
  }
  .pr1-lg {
    padding-right: 8px;
  }
  .pr2-lg {
    padding-right: 16px;
  }
  .pr3-lg {
    padding-right: 24px;
  }
  .pr4-lg {
    padding-right: 32px;
  }
  .pb0-lg {
    padding-bottom: 0;
  }
  .pb1-lg {
    padding-bottom: 8px;
  }
  .pb2-lg {
    padding-bottom: 16px;
  }
  .pb3-lg {
    padding-bottom: 24px;
  }
  .pb4-lg {
    padding-bottom: 32px;
  }
  .pt0-lg {
    padding-top: 0;
  }
  .pt1-lg {
    padding-top: 8px;
  }
  .pt2-lg {
    padding-top: 16px;
  }
  .pt3-lg {
    padding-top: 24px;
  }
  .pt4-lg {
    padding-top: 32px;
  }
  .pv0-lg {
    padding-top: 0;
    padding-bottom: 0;
  }
  .pv1-lg {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .pv2-lg {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .pv3-lg {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .pv4-lg {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .ph0-lg {
    padding-left: 0;
    padding-right: 0;
  }
  .ph1-lg {
    padding-left: 8px;
    padding-right: 8px;
  }
  .ph2-lg {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ph3-lg {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ph4-lg {
    padding-left: 32px;
    padding-right: 32px;
  }
  .m-auto-lg {
    margin: auto;
  }
  .mh-auto-lg {
    margin: 0 auto;
  }
  .ma0-lg {
    margin: 0;
  }
  .ma1-lg {
    margin: 8px;
  }
  .ma2-lg {
    margin: 16px;
  }
  .ma3-lg {
    margin: 24px;
  }
  .ma4-lg {
    margin: 32px;
  }
  .ml0-lg {
    margin-left: 0;
  }
  .ml1-lg {
    margin-left: 8px;
  }
  .ml2-lg {
    margin-left: 16px;
  }
  .ml3-lg {
    margin-left: 24px;
  }
  .ml4-lg {
    margin-left: 32px;
  }
  .mr0-lg {
    margin-right: 0;
  }
  .mr1-lg {
    margin-right: 8px;
  }
  .mr2-lg {
    margin-right: 16px;
  }
  .mr3-lg {
    margin-right: 24px;
  }
  .mr4-lg {
    margin-right: 32px;
  }
  .mb0-lg {
    margin-bottom: 0;
  }
  .mb1-lg {
    margin-bottom: 8px;
  }
  .mb2-lg {
    margin-bottom: 16px;
  }
  .mb3-lg {
    margin-bottom: 24px;
  }
  .mb4-lg {
    margin-bottom: 32px;
  }
  .mt0-lg {
    margin-top: 0;
  }
  .mt1-lg {
    margin-top: 8px;
  }
  .mt2-lg {
    margin-top: 16px;
  }
  .mt3-lg {
    margin-top: 24px;
  }
  .mt4-lg {
    margin-top: 32px;
  }
  .mv0-lg {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mv1-lg {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mv2-lg {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mv3-lg {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .mv4-lg {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mh0-lg {
    margin-left: 0;
    margin-right: 0;
  }
  .mh1-lg {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mh2-lg {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mh3-lg {
    margin-left: 24px;
    margin-right: 24px;
  }
  .mh4-lg {
    margin-left: 32px;
    margin-right: 32px;
  }
}
/*
   BORDER RADIUS
   Base:
     br#   = border-radius with modifier

   Modifiers:
     0    = 0/none
     1    = 1st step in scale
     2    = 2nd step in scale

   Literal values:
     -100 = 100%

   Media Query Extensions:
     -sm = not-small
     -md  = medium
     -lg  = large

*/
.bt {
  border-top-style: solid;
  border-top-width: 1px;
}

.bb {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.br {
  border-right-style: solid;
  border-right-width: 1px;
}

.bl {
  border-left-style: solid;
  border-left-width: 1px;
}

.ba {
  border-style: solid;
  border-width: 1px;
}

.b--white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.b--black-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.b--secondary-10 {
  border-color: rgba(143, 158, 164, 0.1);
}

.b--secondary-40 {
  border-color: rgba(143, 158, 164, 0.4);
}

.b--blue {
  border-color: #4d76f1;
}

.b--red {
  border-color: #f6374e;
}

.br0 {
  border-radius: 0;
}

.br1 {
  border-radius: 3px;
}

.br2 {
  border-radius: 4px;
}

.br3 {
  border-radius: 8px;
}

.br-100 {
  border-radius: 100%;
}

@media screen and (min-width: 600px) {
  .br0-sm {
    border-radius: 0;
  }
  .br1-sm {
    border-radius: 3px;
  }
  .br2-sm {
    border-radius: 4px;
  }
  .br3-sm {
    border-radius: 8px;
  }
  .br-100-sm {
    border-radius: 100%;
  }
}
@media screen and (min-width: 960px) {
  .br0-md {
    border-radius: 0;
  }
  .br1-md {
    border-radius: 3px;
  }
  .br2-md {
    border-radius: 4px;
  }
  .br3-md {
    border-radius: 8px;
  }
  .br-100-md {
    border-radius: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .br0-lg {
    border-radius: 0;
  }
  .br1-lg {
    border-radius: 3px;
  }
  .br2-lg {
    border-radius: 4px;
  }
  .br3-lg {
    border-radius: 8px;
  }
  .br-100-lg {
    border-radius: 100%;
  }
}
/*
   DISPLAY

   Base:
    d = display

   Modifiers:
    n     = none
    b     = block
    i     = inline
    ib    = inline-block

   Media Query Extensions:
     -sm = not-small
     -md  = medium
     -lg  = large
*/
.dn {
  display: none;
}

.di {
  display: inline;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.flex {
  display: flex;
}

.dif {
  display: inline-flex;
}

.grid {
  display: grid;
}

@media screen and (min-width: 600px) {
  .dn-sm {
    display: none;
  }
  .di-sm {
    display: inline;
  }
  .db-sm {
    display: block;
  }
  .dib-sm {
    display: inline-block;
  }
  .flex-sm {
    display: flex;
  }
  .dif-sm {
    display: inline-flex;
  }
  .grid-sm {
    display: grid;
  }
}
@media screen and (min-width: 960px) {
  .dn-md {
    display: none;
  }
  .di-md {
    display: inline;
  }
  .db-md {
    display: block;
  }
  .dib-md {
    display: inline-block;
  }
  .flex-md {
    display: flex;
  }
  .dif-md {
    display: inline-flex;
  }
  .grid-md {
    display: grid;
  }
}
@media screen and (min-width: 1280px) {
  .dn-lg {
    display: none;
  }
  .di-lg {
    display: inline;
  }
  .db-lg {
    display: block;
  }
  .dib-lg {
    display: inline-block;
  }
  .flex-lg {
    display: flex;
  }
  .dif-lg {
    display: inline-flex;
  }
  .grid-lg {
    display: grid;
  }
}
.opacity-0 {
  opacity: 0;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-100 {
  opacity: 1;
}

.opacity-60--hover:hover {
  opacity: 0.6;
}

@media screen and (min-width: 600px) {
  .opacity-0-sm {
    opacity: 0;
  }
  .opacity-100-sm {
    opacity: 1;
  }
}
@media screen and (min-width: 960px) {
  .opacity-0-md {
    opacity: 0;
  }
  .opacity-100-md {
    opacity: 1;
  }
}
@media screen and (min-width: 1280px) {
  .opacity-0-lg {
    opacity: 0;
  }
  .opacity-100-lg {
    opacity: 1;
  }
}
/*
  POSITIONS

    relative and absolute positions

  COORDINATES

    should be used in conjunction with postion

  Base:

    top
    right
    bottom
    left

  Modifiers:

    0 = 0px
    1 = 0.5rem = 8px
    2 = 1rem = 16px

    --fill

  Media Query Extensions:
    -sm = not-small
    -md  = medium
    -lg  = large
*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-1 {
  top: 8px;
}

.right-1 {
  right: 8px;
}

.bottom-1 {
  bottom: 8px;
}

.left-1 {
  left: 8px;
}

.top-2 {
  top: 16px;
}

.right-2 {
  right: 16px;
}

.bottom-2 {
  bottom: 16px;
}

.left-2 {
  left: 16px;
}

.top-3 {
  top: 24px;
}

.right-3 {
  right: 24px;
}

.bottom-3 {
  bottom: 24px;
}

.left-3 {
  left: 24px;
}

.absolute--fill {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 600px) {
  .relative-sm {
    position: relative;
  }
  .absolute-sm {
    position: absolute;
  }
  .fixed-sm {
    position: fixed;
  }
  .sticky-sm {
    position: sticky;
  }
  .top-0-sm {
    top: 0;
  }
  .right-0-sm {
    right: 0;
  }
  .bottom-0-sm {
    bottom: 0;
  }
  .left-0-sm {
    left: 0;
  }
  .top-1-sm {
    top: 8px;
  }
  .right-1-sm {
    right: 8px;
  }
  .bottom-1-sm {
    bottom: 8px;
  }
  .left-1-sm {
    left: 8px;
  }
  .top-2-sm {
    top: 16px;
  }
  .right-2-sm {
    right: 16px;
  }
  .bottom-2-sm {
    bottom: 16px;
  }
  .left-2-sm {
    left: 16px;
  }
  .top-3-sm {
    top: 24px;
  }
  .right-3-sm {
    right: 24px;
  }
  .bottom-3-sm {
    bottom: 24px;
  }
  .left-3-sm {
    left: 24px;
  }
  .absolute--fill-sm {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .relative-md {
    position: relative;
  }
  .absolute-md {
    position: absolute;
  }
  .fixed-md {
    position: fixed;
  }
  .sticky-md {
    position: sticky;
  }
  .top-0-md {
    top: 0;
  }
  .right-0-md {
    right: 0;
  }
  .bottom-0-md {
    bottom: 0;
  }
  .left-0-md {
    left: 0;
  }
  .top-1-md {
    top: 8px;
  }
  .right-1-md {
    right: 8px;
  }
  .bottom-1-md {
    bottom: 8px;
  }
  .left-1-md {
    left: 8px;
  }
  .top-2-md {
    top: 16px;
  }
  .right-2-md {
    right: 16px;
  }
  .bottom-2-md {
    bottom: 16px;
  }
  .left-2-md {
    left: 16px;
  }
  .top-3-md {
    top: 24px;
  }
  .right-3-md {
    right: 24px;
  }
  .bottom-3-md {
    bottom: 24px;
  }
  .left-3-md {
    left: 24px;
  }
  .absolute--fill-md {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .relative-lg {
    position: relative;
  }
  .absolute-lg {
    position: absolute;
  }
  .fixed-lg {
    position: fixed;
  }
  .sticky-lg {
    position: sticky;
  }
  .top-0-lg {
    top: 0;
  }
  .right-0-lg {
    right: 0;
  }
  .bottom-0-lg {
    bottom: 0;
  }
  .left-0-lg {
    left: 0;
  }
  .top-1-lg {
    top: 8px;
  }
  .right-1-lg {
    right: 8px;
  }
  .bottom-1-lg {
    bottom: 8px;
  }
  .left-1-lg {
    left: 8px;
  }
  .top-2-lg {
    top: 16px;
  }
  .right-2-lg {
    right: 16px;
  }
  .bottom-2-lg {
    bottom: 16px;
  }
  .left-2-lg {
    left: 16px;
  }
  .top-3-lg {
    top: 24px;
  }
  .right-3-lg {
    right: 24px;
  }
  .bottom-3-lg {
    bottom: 24px;
  }
  .left-3-lg {
    left: 24px;
  }
  .absolute--fill-lg {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
/*

BOX-SHADOW

Media Query Extensions:
-sm = not-small
-md  = medium
-lh  = large

*/
.shadow-1 {
  box-shadow: 0px 2px 4px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
}

.shadow-2 {
  box-shadow: 0px 4px 8px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
}

.shadow-3 {
  box-shadow: 0px 12px 24px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
}

.no-shadow {
  box-shadow: none;
}

@media screen and (min-width: 600px) {
  .shadow-1-sm {
    box-shadow: 0px 2px 4px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .shadow-2-sm {
    box-shadow: 0px 4px 8px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .shadow-3-sm {
    box-shadow: 0px 12px 24px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .no-shadow-sm {
    box-shadow: none;
  }
}
@media screen and (min-width: 960px) {
  .shadow-1-md {
    box-shadow: 0px 2px 4px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .shadow-2-md {
    box-shadow: 0px 4px 8px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .shadow-3-md {
    box-shadow: 0px 12px 24px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .no-shadow-md {
    box-shadow: none;
  }
}
@media screen and (min-width: 1280px) {
  .shadow-1-lg {
    box-shadow: 0px 2px 4px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .shadow-2-lg {
    box-shadow: 0px 4px 8px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .shadow-3-lg {
    box-shadow: 0px 12px 24px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  }
  .no-shadow-lg {
    box-shadow: none;
  }
}
/*
   Typography

   Base:
     font

   Modifiers:
      xs = 11px | 16px
      sm = 14px | 22px
      md = 16px | 24px
      lg = 20px | 28px
*/
/* font-sizes */
.font-xs {
  font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
}

.font-sm {
  font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.font-md {
  font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.font-lg {
  font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.font-xl {
  font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

/* font-families */
.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

@media screen and (min-width: 600px) {
  .font-lg {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }
  .font-xl {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
  }
  .font-xs-sm {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 11px;
    line-height: 16px;
    font-weight: 500;
  }
  .font-sm-sm {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }
  .font-md-sm {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .font-lg-sm {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }
  .font-xl-sm {
    font-size: 28px;
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    line-height: 32px;
    font-weight: 600;
  }
  /* font-families */
  .font-regular-sm {
    font-weight: 400;
  }
  .font-medium-sm {
    font-weight: 500;
  }
  .font-semibold-sm {
    font-weight: 600;
  }
}
@media screen and (min-width: 960px) {
  .font-md-md {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .font-lg-md {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }
  .font-xl-md {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
  }
  /* font-families */
  .font-regular-md {
    font-weight: 400;
  }
  .font-medium-md {
    font-weight: 500;
  }
  .font-semibold-md {
    font-weight: 600;
  }
}
@media screen and (min-width: 1280px) {
  .font-md-lg {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .font-lg-lg {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }
  .font-xl-lg {
    font-family: "Barlow", "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
  }
  /* font-families */
  .font-regular-lg {
    font-weight: 400;
  }
  .font-medium-lg {
    font-weight: 500;
  }
  .font-semibold-lg {
    font-weight: 600;
  }
}
/*
   UTILITY CLASSES

   Base:
     c   = cursor

   Modifiers:
    default    = default pointer
    pointer    = cursor pointer

*/
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cpointer {
  cursor: pointer;
}

.cdefault {
  cursor: default;
}

.cgrab {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.cgrabbing {
  cursor: grabbing;
}

.ohidden {
  overflow: hidden;
}

.oauto {
  overflow: auto;
}

.ws-nowrap {
  white-space: nowrap;
}

.break-all {
  word-break: break-all;
}

.break-word {
  word-break: break-word;
}

/*
   Classes for setting foreground and background colors on elements.
   If you haven't declared a border color, but set border on an element, it will
   be set to the current text color.
*/
.primary {
  color: #00172f;
}

.primary--hover:hover {
  color: #00172f;
}

.bg-primary {
  background-color: #00172f;
}

.bg-primary--hover:hover {
  background-color: #00172f;
}

.secondary {
  color: #8f9ea4;
}

.secondary--hover:hover {
  color: #8f9ea4;
}

.bg-secondary {
  background-color: #8f9ea4;
}

.bg-secondary--hover:hover {
  background-color: #8f9ea4;
}

.black {
  color: #000;
}

.black--hover:hover {
  color: #000;
}

.bg-black {
  background-color: #000;
}

.bg-black--hover:hover {
  background-color: #000;
}

.black--50 {
  color: rgba(0, 0, 0, 0.5);
}

.black--50--hover:hover {
  color: rgba(0, 0, 0, 0.5);
}

.bg-black--50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-black--50--hover:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.grey {
  color: #dde1e3;
}

.grey--hover:hover {
  color: #dde1e3;
}

.bg-grey {
  background-color: #dde1e3;
}

.bg-grey--hover:hover {
  background-color: #dde1e3;
}

.white {
  color: #ffffff;
}

.white--hover:hover {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.bg-white--hover:hover {
  background-color: #ffffff;
}

.near-white {
  color: #f2f2f2;
}

.near-white--hover:hover {
  color: #f2f2f2;
}

.bg-near-white {
  background-color: #f2f2f2;
}

.bg-near-white--hover:hover {
  background-color: #f2f2f2;
}

.red {
  color: #f6374e;
}

.red--hover:hover {
  color: #f6374e;
}

.bg-red {
  background-color: #f6374e;
}

.bg-red--hover:hover {
  background-color: #f6374e;
}

.yellow {
  color: #f3a100;
}

.yellow--hover:hover {
  color: #f3a100;
}

.bg-yellow {
  background-color: #f3a100;
}

.bg-yellow--hover:hover {
  background-color: #f3a100;
}

.green {
  color: #22b867;
}

.green--hover:hover {
  color: #22b867;
}

.bg-green {
  background-color: #22b867;
}

.bg-green--hover:hover {
  background-color: #22b867;
}

.blue {
  color: #4d76f1;
}

.blue--hover:hover {
  color: #4d76f1;
}

.bg-blue {
  background-color: #4d76f1;
}

.bg-blue--hover:hover {
  background-color: #4d76f1;
}

.dark {
  color: #212f42;
}

.dark--hover:hover {
  color: #212f42;
}

.bg-dark {
  background-color: #212f42;
}

.bg-dark--hover:hover {
  background-color: #212f42;
}

.primary--20 {
  color: rgba(0, 23, 47, 0.2);
}

.primary--20--hover:hover {
  color: rgba(0, 23, 47, 0.2);
}

.bg-primary--20 {
  background-color: rgba(0, 23, 47, 0.2);
}

.bg-primary--20--hover:hover {
  background-color: rgba(0, 23, 47, 0.2);
}

.primary--40 {
  color: rgba(0, 23, 47, 0.4);
}

.primary--40--hover:hover {
  color: rgba(0, 23, 47, 0.4);
}

.bg-primary--40 {
  background-color: rgba(0, 23, 47, 0.4);
}

.bg-primary--40--hover:hover {
  background-color: rgba(0, 23, 47, 0.4);
}

.secondary--10 {
  color: rgba(143, 158, 164, 0.1);
}

.secondary--10--hover:hover {
  color: rgba(143, 158, 164, 0.1);
}

.bg-secondary--10 {
  background-color: rgba(143, 158, 164, 0.1);
}

.bg-secondary--10--hover:hover {
  background-color: rgba(143, 158, 164, 0.1);
}

.secondary--20 {
  color: rgba(143, 158, 164, 0.2);
}

.secondary--20--hover:hover {
  color: rgba(143, 158, 164, 0.2);
}

.bg-secondary--20 {
  background-color: rgba(143, 158, 164, 0.2);
}

.bg-secondary--20--hover:hover {
  background-color: rgba(143, 158, 164, 0.2);
}

.secondary--40 {
  color: rgba(143, 158, 164, 0.4);
}

.secondary--40--hover:hover {
  color: rgba(143, 158, 164, 0.4);
}

.bg-secondary--40 {
  background-color: rgba(143, 158, 164, 0.4);
}

.bg-secondary--40--hover:hover {
  background-color: rgba(143, 158, 164, 0.4);
}

.secondary--60 {
  color: rgba(143, 158, 164, 0.6);
}

.secondary--60--hover:hover {
  color: rgba(143, 158, 164, 0.6);
}

.bg-secondary--60 {
  background-color: rgba(143, 158, 164, 0.6);
}

.bg-secondary--60--hover:hover {
  background-color: rgba(143, 158, 164, 0.6);
}

.green--10 {
  color: rgba(34, 184, 103, 0.1);
}

.green--10--hover:hover {
  color: rgba(34, 184, 103, 0.1);
}

.bg-green--10 {
  background-color: rgba(34, 184, 103, 0.1);
}

.bg-green--10--hover:hover {
  background-color: rgba(34, 184, 103, 0.1);
}

.green--20 {
  color: rgba(34, 184, 103, 0.2);
}

.green--20--hover:hover {
  color: rgba(34, 184, 103, 0.2);
}

.bg-green--20 {
  background-color: rgba(34, 184, 103, 0.2);
}

.bg-green--20--hover:hover {
  background-color: rgba(34, 184, 103, 0.2);
}

.green--40 {
  color: rgba(34, 184, 103, 0.4);
}

.green--40--hover:hover {
  color: rgba(34, 184, 103, 0.4);
}

.bg-green--40 {
  background-color: rgba(34, 184, 103, 0.4);
}

.bg-green--40--hover:hover {
  background-color: rgba(34, 184, 103, 0.4);
}

.yellow--10 {
  color: rgba(243, 161, 0, 0.1);
}

.yellow--10--hover:hover {
  color: rgba(243, 161, 0, 0.1);
}

.bg-yellow--10 {
  background-color: rgba(243, 161, 0, 0.1);
}

.bg-yellow--10--hover:hover {
  background-color: rgba(243, 161, 0, 0.1);
}

.yellow--20 {
  color: rgba(243, 161, 0, 0.2);
}

.yellow--20--hover:hover {
  color: rgba(243, 161, 0, 0.2);
}

.bg-yellow--20 {
  background-color: rgba(243, 161, 0, 0.2);
}

.bg-yellow--20--hover:hover {
  background-color: rgba(243, 161, 0, 0.2);
}

.yellow--40 {
  color: rgba(243, 161, 0, 0.4);
}

.yellow--40--hover:hover {
  color: rgba(243, 161, 0, 0.4);
}

.bg-yellow--40 {
  background-color: rgba(243, 161, 0, 0.4);
}

.bg-yellow--40--hover:hover {
  background-color: rgba(243, 161, 0, 0.4);
}

.red--10 {
  color: rgba(246, 55, 78, 0.1);
}

.red--10--hover:hover {
  color: rgba(246, 55, 78, 0.1);
}

.bg-red--10 {
  background-color: rgba(246, 55, 78, 0.1);
}

.bg-red--10--hover:hover {
  background-color: rgba(246, 55, 78, 0.1);
}

.red--20 {
  color: rgba(246, 55, 78, 0.2);
}

.red--20--hover:hover {
  color: rgba(246, 55, 78, 0.2);
}

.bg-red--20 {
  background-color: rgba(246, 55, 78, 0.2);
}

.bg-red--20--hover:hover {
  background-color: rgba(246, 55, 78, 0.2);
}

.red--40 {
  color: rgba(246, 55, 78, 0.4);
}

.red--40--hover:hover {
  color: rgba(246, 55, 78, 0.4);
}

.bg-red--40 {
  background-color: rgba(246, 55, 78, 0.4);
}

.bg-red--40--hover:hover {
  background-color: rgba(246, 55, 78, 0.4);
}

.blue--10 {
  color: rgba(77, 118, 241, 0.1);
}

.blue--10--hover:hover {
  color: rgba(77, 118, 241, 0.1);
}

.bg-blue--10 {
  background-color: rgba(77, 118, 241, 0.1);
}

.bg-blue--10--hover:hover {
  background-color: rgba(77, 118, 241, 0.1);
}

.blue--20 {
  color: rgba(77, 118, 241, 0.2);
}

.blue--20--hover:hover {
  color: rgba(77, 118, 241, 0.2);
}

.bg-blue--20 {
  background-color: rgba(77, 118, 241, 0.2);
}

.bg-blue--20--hover:hover {
  background-color: rgba(77, 118, 241, 0.2);
}

.blue--40 {
  color: rgba(77, 118, 241, 0.4);
}

.blue--40--hover:hover {
  color: rgba(77, 118, 241, 0.4);
}

.bg-blue--40 {
  background-color: rgba(77, 118, 241, 0.4);
}

.bg-blue--40--hover:hover {
  background-color: rgba(77, 118, 241, 0.4);
}

.white--60 {
  color: rgba(255, 255, 255, 0.6);
}

.white--60--hover:hover {
  color: rgba(255, 255, 255, 0.6);
}

.bg-white--60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.bg-white--60--hover:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.color-inherit {
  color: inherit;
}

.color-transparent {
  color: transparent;
}

.bg-transparent {
  background-color: transparent;
}

.bg-inherit {
  background-color: inherit;
}

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

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

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

/* components */
.ui-card {
  background: rgba(143, 158, 164, 0.1);
  border-radius: 3px;
  overflow: hidden;
  transition: background-color 0.15s ease-in-out;
}
.ui-card > .header {
  height: 120px;
}
.ui-card > .header > .accessories {
  top: 16px;
}
.ui-card > .header > .accessories.left {
  left: 16px;
}
.ui-card > .header > .accessories.left > .accessory.drag-handle {
  opacity: 0;
  transition: 0.3s;
}
.ui-card > .header > .accessories.right {
  right: 16px;
}
.ui-card > .header > .accessories.right > .accessory.drag-handle {
  display: none;
}
.ui-card > .header > .content.image {
  background: rgba(143, 158, 164, 0.2) center/cover no-repeat;
}
.ui-card > .header > .content.image > .placeholder {
  opacity: 0.4;
}
.ui-card > .header > .content.iframe.blank {
  background: rgba(143, 158, 164, 0.2) center/cover no-repeat;
}
.ui-card > .header > .content.iframe.blank > .placeholder {
  opacity: 0.4;
}
.ui-card > .header > .content.iframe > .scaled {
  transform: scale(var(--scale));
  transform-origin: 0 0;
  pointer-events: none;
}
.ui-card > .header > .content.iframe > .scaled > iframe {
  width: calc(100% / var(--scale));
  height: calc(100% / var(--scale));
}
.ui-card > .footer {
  gap: 8px;
}
.ui-card > .footer.active::before {
  content: "";
  width: 4px;
  height: calc(100% - 24px);
  background: #4d76f1;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ui-card > .footer > .column.content.default {
  gap: 4px;
}
.ui-card:hover {
  background-color: rgba(143, 158, 164, 0.2);
}
.ui-card:hover > .header > .accessories > .accessory.drag-handle {
  opacity: 1;
}

.ui-category-card--is-selected {
  box-shadow: inset 0 0 0 2px #4d76f1;
}

.ui-switch[role=button] {
  cursor: default;
}

.ui-switch {
  display: flex;
  align-items: center;
}
.ui-switch__simple {
  width: 28px;
}
.ui-switch__container {
  position: relative;
  height: 16px;
}
.ui-switch__container .ui-switch__thumb {
  cursor: pointer;
  background-color: #ffffff;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  transform: translate3d(0, 0, 0);
}
.ui-switch__container .ui-switch__thumb-container {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.ui-switch__container .ui-switch__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 16px;
  cursor: pointer;
  background-color: #8f9ea4;
  border-radius: 56px;
}
.ui-switch--checked .ui-switch__thumb {
  transform: translate3d(12px, 0, 0);
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}
.ui-switch--checked .ui-switch__bar {
  background-color: #4d76f1;
}
.ui-switch--readonly .ui-switch__bar {
  background-color: rgba(143, 158, 164, 0.4);
}
.ui-switch--readonly.ui-switch--checked .ui-switch__bar {
  background-color: rgba(77, 118, 241, 0.4);
}
.ui-switch--readonly .ui-switch__container {
  cursor: default;
}
.ui-switch--readonly .ui-switch__thumb {
  cursor: default;
}
.ui-switch--readonly .ui-switch__bar {
  cursor: default;
}

.ui-slider--track-default {
  height: 4px;
}
.ui-slider--track {
  height: 4px;
  border-radius: 5px;
}
.ui-slider--thumb {
  top: -6px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 5px solid #4d76f1;
  background-color: #ffffff;
  pointer-events: auto;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.ui-slider .ui-input-container {
  width: 96px;
}

button.ui-button::-moz-focus-inner {
  border: 0;
}

.ui-button {
  /* Reset default button appearance */
  user-select: none;
  outline: none;
  border: 0;
  padding: 6px;
  overflow: hidden;
  white-space: nowrap;
  font-style: inherit;
  font-variant: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  /* fab button */
}
.ui-button .ui-button__label {
  padding-right: 6px;
  padding-left: 6px;
}
.ui-button--large {
  padding: 10px;
}
.ui-button:focus {
  outline: none;
}
.ui-button--primary:not([disabled]):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
}
.ui-button--primary:not([disabled]):hover:before {
  background-color: rgba(0, 0, 0, 0.2);
}
.ui-button .ui-loading {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ui-button.ui-fab-button {
  z-index: 20;
  min-width: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background-clip: padding-box;
  overflow: hidden;
}
.ui-button.ui-fab-button:hover {
  width: 52px;
  height: 52px;
  margin: 2px;
}

.ui-action-button {
  /* Reset default button appearance */
  user-select: none;
  outline: none;
  border: 0;
  padding: 6px;
  white-space: nowrap;
}
.ui-action-button .ui-action-button__label {
  padding-right: 6px;
  padding-left: 6px;
}
.ui-action-button--large {
  padding: 10px;
}
.ui-action-button--blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.ui-action-button:focus {
  outline: none;
}
.ui-action-button .ui-loading {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ui-icon-button {
  /* Reset default button appearance */
  user-select: none;
  outline: none;
  border: 0;
  white-space: nowrap;
}
.ui-icon-button svg + .ui-icon-button__label {
  margin-left: 6px;
}
.ui-icon-button .ui-icon-button__label + svg {
  margin-left: 6px;
}
.ui-icon-button:focus {
  outline: none;
}
.ui-icon-button .ui-loading {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ui-toolbar {
  background-color: #00172f;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  font-size: 32px;
  min-height: 64px;
  width: 100%;
  padding: 0 16px;
  /* we need a transparent variant to */
}
.ui-toolbar *,
.ui-toolbar *:before,
.ui-toolbar *:after {
  box-sizing: border-box;
}
.ui-toolbar--secondary {
  background-color: #ffffff;
  color: #00172f;
}
.ui-toolbar--transparent {
  background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 0) and (max-width: 599px) and (orientation: portrait) {
  .ui-toolbar {
    min-height: 56px;
  }
}
@media (min-width: 0) and (max-width: 599px) and (orientation: landscape) {
  .ui-toolbar {
    min-height: 48px;
  }
}
.ui-content {
  display: block;
  position: relative;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  color: #00172f;
}
.ui-content--primary {
  background-color: #ffffff;
}
.ui-content--centered {
  max-width: 900px;
  margin: 0 auto;
}
.ui-content--toplevel-view {
  padding-top: 120px;
}

.ui-select {
  position: relative;
  /* Re-add border, as input with readonly attribute does not have one */
}
.ui-select:focus,
.ui-select div:focus,
.ui-select .ui-selectable-trigger:focus {
  outline: none;
}
.ui-select .ui-input input {
  cursor: pointer;
  padding-right: 28px;
}
.ui-select .ui-input input[readonly] {
  cursor: default;
}
.ui-select .ui-input-container .ui-form-item, .ui-select .ui-input-container[theme=dark] .ui-form-item {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-select .ui-input-container .ui-form-control.success .ui-form-item {
  border-color: #22b867;
}
.ui-select .ui-input-container .ui-form-control.error .ui-form-item {
  border-color: #f6374e;
}
.ui-select .ui-input-container .ui-form-control.warning .ui-form-item {
  border-color: #f3a100;
}
.ui-select:hover .ui-input-container:not([theme=dark]) .ui-form-item {
  background-color: #dde1e3;
}
.ui-select--readonly .ui-input-container:not([theme=dark]) .ui-form-item, .ui-select--readonly:hover .ui-input-container:not([theme=dark]) .ui-form-item {
  background-color: transparent;
}
.ui-select .ui-form-item {
  border: 1px solid rgba(143, 158, 164, 0.2);
}
.ui-select .caret-container {
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 32px;
}
.ui-select .caret-container .caret {
  transform: rotate(0);
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ui-select--is-open .ui-input input,
.ui-select--is-open .ui-input input[readonly] {
  border: 1px solid rgba(0, 23, 47, 0.1);
  background-color: #fff;
}
.ui-select--is-open .caret-container > .caret {
  transform: rotate(180deg);
}
.ui-select--has-checkbox .ui-checkbox {
  top: calc(50% - 12px);
  left: 8px;
  z-index: 20;
}
.ui-select--has-checkbox .ui-input input {
  padding-left: 32px;
}
.ui-select--has-checkbox .caret-container {
  filter: brightness(85%);
}

.options-container {
  overflow: hidden;
  width: 320px;
  opacity: 0;
  transform: translateY(-20px);
}
.options-container--entering {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.options-container .options-container__scroller {
  width: 100%;
  max-height: 216px;
  overflow-y: auto;
  padding: 8px 0;
}
.options-container .ui-selectable-search-wrapper {
  z-index: 1;
}
.options-container .ui-selectable-search-wrapper .ui-selectable-search-bar > svg {
  fill: #8f9ea4;
}
.options-container .ui-selectable-search-wrapper .ui-selectable-search-bar input {
  font-size: 16px;
  line-height: 20px;
  border: 0;
  outline: 0;
}
.options-container .ui-selectable-search-wrapper .ui-selectable-search-bar .ui-selectable-search-close {
  width: auto;
  height: auto;
  padding: 0;
}
.options-container .ui-selectable-search-spacer {
  height: 42px;
}
.options-container .ui-select-option {
  min-height: 40px;
  line-height: 20px;
}
.options-container .ui-select-option--checked {
  background-color: rgba(77, 118, 241, 0.1);
  color: #4d76f1;
}
.options-container .ui-select-option .dropdown {
  margin-left: -16px;
}
.options-container .ui-select-option .dropdown svg {
  transform: rotate(-90deg);
  pointer-events: none;
}
.options-container .ui-select-option .dropdown--is-open {
  margin-left: -16px;
}
.options-container .ui-select-option .dropdown--is-open svg {
  transform: rotate(0deg);
  pointer-events: none;
}
.options-container .ui-select-option:hover {
  background-color: rgba(143, 158, 164, 0.1);
}
.options-container .ui-select-option--active, .options-container .ui-select-option--active:hover {
  color: #4d76f1;
}
.options-container .ui-select-option--active:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 22px;
  background: #4d76f1;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.options-container .ui-select-option--disabled {
  color: #dde1e3;
}
.options-container .ui-select-option--disabled:hover {
  color: #dde1e3;
  background-color: #ffffff;
}
.options-container .ui-select-option--empty {
  color: #8f9ea4;
}
.options-container .ui-select-option--empty:hover {
  color: #8f9ea4;
}
.options-container .ui-select-option--checked:hover {
  background-color: rgba(101, 136, 243, 0.2);
}
@media screen and (min-width: 600px) {
  .options-container .options-container__scroller {
    max-height: 296px;
  }
}

.ui-open-menu-container {
  z-index: 202;
  max-height: calc(100vh - 10px);
}
.ui-open-menu-container:not(.ui-clickable) {
  pointer-events: none;
}

.ui-menu-content {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  max-height: 304px;
  overflow-y: auto;
}
.ui-menu-content.ui-dense {
  max-height: 208px;
}
.ui-menu-content.ui-dense .ui-menu-item {
  height: 32px;
  min-height: 0px;
}

.ui-menu-item {
  min-width: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  border: none;
}

.ui-toolbar .ui-menu {
  height: auto;
  margin: auto;
  padding: 0;
}

/* ember-basic-dropdown helper */
.ember-basic-dropdown-content-wormhole-origin {
  display: none;
}

@media (max-width: 599px) {
  .ui-menu-content {
    min-width: 112px;
  }
  .ui-menu-content[width="3"] {
    min-width: 168px;
  }
  .ui-menu-content[width="4"] {
    min-width: 224px;
  }
  .ui-menu-content[width="5"] {
    min-width: 280px;
  }
  .ui-menu-content[width="6"] {
    min-width: 336px;
  }
  .ui-menu-content[width="7"] {
    min-width: 392px;
  }
}
@media (min-width: 600px) {
  .ui-menu-content {
    min-width: 96px;
  }
  .ui-menu-content[width="3"] {
    min-width: 192px;
  }
  .ui-menu-content[width="4"] {
    min-width: 256px;
  }
  .ui-menu-content[width="5"] {
    min-width: 320px;
  }
  .ui-menu-content[width="6"] {
    min-width: 384px;
  }
  .ui-menu-content[width="7"] {
    min-width: 448px;
  }
}
@keyframes drop-fade-below {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes drop-fade-above {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.ui-open-menu-container {
  will-change: transform, opacity;
}
.ui-open-menu-container.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioning-in {
  animation: drop-fade-below 0.15s;
}
.ui-open-menu-container.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioning-out {
  animation: drop-fade-below 0.15s reverse;
}
.ui-open-menu-container.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioning-in {
  animation: drop-fade-above 0.15s;
}
.ui-open-menu-container.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioning-out {
  animation: drop-fade-above 0.15s reverse;
}

.ui-badge {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-badge.success, .ui-badge.partial_success {
  color: #22b867;
}
.ui-badge.error {
  color: #f6374e;
}
.ui-badge.warning, .ui-badge.partial_warning {
  color: #f3a100;
}
.ui-badge.info {
  color: #4d76f1;
  background-color: rgba(77, 118, 241, 0.1);
}
.ui-badge.passive {
  color: rgba(255, 255, 255, 0.6);
}
.ui-badge[size=sm] {
  font-size: 14px;
  line-height: 20px;
}
.ui-badge[size=md] {
  padding: 8px;
  font-size: 16px;
  line-height: 22px;
}

.ui-breadcrumbs a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.ui-breadcrumbs__dropdown:focus {
  outline: none;
}

.ui-checkbox[theme=white] .ui-checkbox__box svg {
  fill: #ffffff;
}
.ui-checkbox[theme=blue] .ui-checkbox__box svg {
  fill: #8f9ea4;
}
.ui-checkbox[theme=blue] .ui-label {
  color: #8f9ea4;
}
.ui-checkbox--checked[theme=blue] .ui-checkbox__box svg {
  fill: #4d76f1;
}
.ui-checkbox--checked[theme=blue] .ui-label {
  color: #4d76f1;
}

.ui-application-navigation-drawer .account-switch .image-wrapper {
  min-width: 40px;
}
.ui-application-navigation-drawer .account-switch .image-wrapper > .placeholder {
  background: rgba(143, 158, 164, 0.2);
}
.ui-application-navigation-drawer .account-switch__sub-drawer {
  padding-top: 80px;
}
.ui-application-navigation-drawer .account-switch.account-switch--open:before {
  content: "";
  width: 4px;
  height: 40px;
  background: #4d76f1;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ui-application-navigation-drawer .account-switch + .ui-navigation-drawer--sub-drawer .ui-input-container:not([readonly]) .ui-form-item {
  border: none;
  background: none;
}
.ui-application-navigation-drawer .account-switch + .ui-navigation-drawer--sub-drawer .ui-input-container:not([readonly]) .ui-form-item .ui-loading,
.ui-application-navigation-drawer .account-switch + .ui-navigation-drawer--sub-drawer .ui-input-container:not([readonly]) .ui-form-item .ui-loading svg {
  width: 16px;
  height: 16px;
}
.ui-application-navigation-drawer .account-switch .account-switch__organization-change-icon {
  min-width: 20px;
}
.ui-application-navigation-drawer .account-switch:hover .account-switch__organization-change-icon {
  color: #00172f;
}
.ui-application-navigation-drawer .apps-list__sub-drawer {
  padding-top: 80px;
}
.ui-application-navigation-drawer .menu-item.active {
  color: #4d76f1;
}
.ui-application-navigation-drawer .menu-item.active:before {
  content: "";
  width: 4px;
  height: 20px;
  background: #4d76f1;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ui-application-navigation-drawer .changelog-button {
  user-select: none;
  background: var(--Gradient-Light-on-White, radial-gradient(80.91% 80.91% at -9.89% 36.36%, rgba(34, 184, 103, 0.1) 0%, rgba(34, 184, 103, 0) 100%), linear-gradient(146deg, rgba(77, 118, 241, 0.1) -15.84%, rgba(77, 118, 241, 0) 43.44%), linear-gradient(180deg, rgba(139, 68, 255, 0.15) -10.96%, rgba(139, 68, 255, 0) 59.09%), radial-gradient(138.13% 138.13% at 121.39% -55.08%, rgba(246, 55, 78, 0.25) 0%, rgba(246, 55, 78, 0.05) 72%, rgba(246, 55, 78, 0) 100%), radial-gradient(82.75% 82.75% at 111.23% 11.76%, rgba(255, 199, 0, 0.1) 0%, rgba(255, 199, 0, 0) 100%), #fff);
}
.ui-application-navigation-drawer .changelog-button:hover {
  background: radial-gradient(80.91% 80.91% at -9.89% 36.36%, rgba(34, 184, 103, 0.2) 0%, rgba(34, 184, 103, 0) 100%), linear-gradient(146deg, rgba(77, 118, 241, 0.2) -15.84%, rgba(77, 118, 241, 0) 43.44%), linear-gradient(180deg, rgba(139, 68, 255, 0.25) -10.96%, rgba(139, 68, 255, 0) 59.09%), radial-gradient(138.13% 138.13% at 121.39% -55.08%, rgba(246, 55, 78, 0.35) 0%, rgba(246, 55, 78, 0.07) 72%, rgba(246, 55, 78, 0) 100%), radial-gradient(82.75% 82.75% at 111.23% 11.76%, rgba(255, 199, 0, 0.2) 0%, rgba(255, 199, 0, 0) 100%), #fff;
}

.ui-navigation-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 272px;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.2s ease-in-out;
  z-index: 90;
}
.ui-navigation-drawer__right, .ui-navigation-drawer__right.ui-navigation-drawer--permanent {
  left: auto;
  right: 0;
  max-width: 400px;
  transform: translateX(100%);
}
.ui-navigation-drawer .ui-navigation-bar ~ .ui-navigation-drawer__content {
  padding-top: 80px;
}
.ui-navigation-drawer--open, .ui-navigation-drawer__right.ui-navigation-drawer--open {
  transform: translateX(0);
}
.ui-navigation-drawer--permanent {
  transform: translateX(0);
  position: fixed;
}
.ui-navigation-drawer--hidden {
  transform: translateX(-100%);
}
.ui-navigation-drawer--sub-drawer {
  width: 320px;
  max-width: 320px;
}
@media (min-width: 600px) {
  .ui-navigation-drawer--sub-drawer {
    z-index: -1;
  }
  .ui-navigation-drawer--sub-drawer.ui-navigation-drawer--open {
    border-left: 1px solid rgba(143, 158, 164, 0.2);
    transform: translateX(272px);
  }
}

.ui-navigation-bar__fixed-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  height: 80px;
  width: 100%;
  color: #00172f;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0, 0.59, 0, 1);
  pointer-events: none;
}
@media (min-width: 960px) {
  .ui-navigation-bar__fixed-container {
    position: absolute;
  }
}
.ui-navigation-bar__fixed-container .ui-navigation-bar__title {
  opacity: 0;
  z-index: 1;
  transform: translateY(-12px);
}
.ui-navigation-bar__fixed-container * {
  z-index: 30;
  pointer-events: all;
}
.ui-navigation-bar--full-screen .ui-navigation-bar__fixed-container {
  left: 0;
  width: 100%;
}
.ui-navigation-bar__background {
  z-index: 0;
  opacity: 0;
  height: 56px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-56px);
  transition: opacity 0.2s linear, transform 0.3s cubic-bezier(0, 0.59, 0, 1);
  box-shadow: inset 0 -1px 0 rgba(143, 158, 164, 0.2);
}
.ui-navigation-bar--scrolled .ui-navigation-bar__fixed-container {
  transform: translateY(-12px);
}
.ui-navigation-bar--scrolled .ui-navigation-bar__title {
  opacity: 1;
  color: #00172f;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0, 0.59, 0, 1), opacity 0.4s linear;
  transition-delay: 0.2s;
}
.ui-navigation-bar--scrolled .ui-navigation-bar__background {
  opacity: 1;
  transform: translateY(12px);
}
.ui-navigation-bar .ui-navigation-bar__action-button {
  display: none;
}
.ui-navigation-bar__visible-actions-1 .ui-navigation-bar__action-button:first-child, .ui-navigation-bar__visible-actions-2 .ui-navigation-bar__action-button:first-child, .ui-navigation-bar__visible-actions-3 .ui-navigation-bar__action-button:first-child, .ui-navigation-bar__visible-actions-4 .ui-navigation-bar__action-button:first-child {
  display: block;
}
.ui-navigation-bar__visible-actions-2 .ui-navigation-bar__action-button:nth-child(2), .ui-navigation-bar__visible-actions-3 .ui-navigation-bar__action-button:nth-child(2), .ui-navigation-bar__visible-actions-4 .ui-navigation-bar__action-button:nth-child(2) {
  display: block;
}
.ui-navigation-bar__visible-actions-3 .ui-navigation-bar__action-button:nth-child(3), .ui-navigation-bar__visible-actions-4 .ui-navigation-bar__action-button:nth-child(3) {
  display: block;
}
.ui-navigation-bar__visible-actions-4 .ui-navigation-bar__action-button:nth-child(4) {
  display: block;
}

.ui-navigation-bar__menu-item {
  display: none;
}

.ui-navigation-bar__menu-item:nth-child(n+5) {
  display: block;
}

.ui-navigation-bar__menu-item__visible-action-0:nth-child(4),
.ui-navigation-bar__menu-item__visible-action-1:nth-child(4),
.ui-navigation-bar__menu-item__visible-action-2:nth-child(4),
.ui-navigation-bar__menu-item__visible-action-3:nth-child(4) {
  display: block;
}

.ui-navigation-bar__menu-item__visible-action-0:nth-child(3),
.ui-navigation-bar__menu-item__visible-action-1:nth-child(3),
.ui-navigation-bar__menu-item__visible-action-2:nth-child(3) {
  display: block;
}

.ui-navigation-bar__menu-item__visible-action-0:nth-child(2),
.ui-navigation-bar__menu-item__visible-action-1:nth-child(2) {
  display: block;
}

.ui-navigation-bar__menu-item__visible-action-0:nth-child(1) {
  display: block;
}

#ui-navigation-bar-sentinel {
  height: 1px;
}

.ui-navigation-bar-filterable {
  /* When filter mode is active, the navbar has a permanent box-shadow */
}
.ui-navigation-bar-filterable__header {
  z-index: 35;
  left: 0;
  padding: 24px;
  gap: 24px;
}
.ui-navigation-bar-filterable__header.loading > .ui-skeleton {
  padding: 0 !important;
}
.ui-navigation-bar-filterable__header input {
  border: 0;
  outline: none;
}
.ui-navigation-bar-filterable__filter-mode .ui-navigation-bar-filterable__header {
  box-shadow: 0px -1px 0px 0px rgba(143, 158, 164, 0.2) inset;
}
@media (max-width: 960px) {
  .ui-navigation-bar-filterable__filter-mode .ui-navigation-bar-filterable__header {
    position: fixed;
  }
}

.ui-navigation-bar-filterable__filter-mode {
  padding-bottom: 24px;
}

.ui-navigation-bar__filter-options {
  overflow-x: auto;
}
.ui-navigation-bar__filter-options:after {
  content: "";
  min-width: 16px;
}
.ui-navigation-bar__filter-options .ui-selectable-chip,
.ui-navigation-bar__filter-options .ui-datepicker {
  margin-right: 8px;
}
.ui-navigation-bar__filter-options .ui-selectable-chip .ui-chip__text,
.ui-navigation-bar__filter-options .ui-datepicker .ui-chip__text {
  white-space: nowrap;
}

.ui-navigation-bar__filter {
  z-index: 40 !important;
}

.ui-backdrop {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.ui-backdrop--show .ui-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  z-index: 150;
}
.ui-backdrop--show.ui-backdrop--transparent .ui-backdrop {
  background-color: rgba(0, 0, 0, 0);
  z-index: 201;
}

.ui-loading {
  /* loading spinner */
  /* finished loading --> reveal state */
}
.ui-loading .ui-spinner {
  animation: spinn 1.4s linear infinite;
}
.ui-loading .ui-spinner .path {
  stroke: #8f9ea4;
  stroke-dasharray: 70;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite;
}
.ui-loading--done {
  /* reveal inner-state */
  /* success state */
  /* error state */
  /* warning state */
}
.ui-loading--done .ui-spinner {
  animation: none;
}
.ui-loading--done .ui-spinner .path {
  stroke-dasharray: 200;
  transition: stroke-dasharray 1s ease-in;
  animation: none;
}
.ui-loading--done .inner-state {
  opacity: 1;
  transform: scale(1);
  transition: 1s cubic-bezier(0.7, 0, 0.05, 1.1);
}
.ui-loading--done.success .path {
  stroke: #22b867;
}
.ui-loading--done.success .inner-state path {
  fill: #22b867;
}
.ui-loading--done.error .path {
  stroke: #f6374e;
}
.ui-loading--done.error .inner-state path {
  fill: #f6374e;
}
.ui-loading--done.warning .path {
  stroke: #f3a100;
}
.ui-loading--done.warning .inner-state path {
  fill: #f3a100;
}

/* animation */
@keyframes spinn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 70;
  }
  50% {
    stroke-dashoffset: 17.5;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 70;
    transform: rotate(450deg);
  }
}
.ui-loading-page {
  z-index: 100;
}
.ui-loading-page svg {
  fill: #fff;
  animation: spin 2s ease-in-out infinite;
  transform-origin: center center;
}
.ui-loading-page .horizontal {
  animation: pulse-horizontal 2s ease-in-out infinite;
}
.ui-loading-page .vertical {
  animation: pulse-vertical 2s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes pulse-horizontal {
  30% {
    width: 28px;
    height: 2px;
    x: 26px;
    y: 39px;
    fill: #8f9ea4;
  }
}
@keyframes pulse-vertical {
  30% {
    width: 2px;
    height: 28px;
    x: 39px;
    y: 26px;
    fill: #8f9ea4;
  }
}

.ui-table {
  overflow-x: auto;
  margin-left: -8px;
  margin-right: -8px;
}
.ui-table table {
  min-width: 100%;
}
.ui-table__head-cell {
  position: sticky;
  top: 0;
}
.ui-table__head-cell svg.ascending {
  transform: rotate(180deg);
}
.ui-table__head-row {
  box-shadow: 0 1px 0 0 rgba(143, 158, 164, 0.4);
}
.ui-table__row, .ui-table__head-row {
  text-align: left;
  height: 40px;
}
.ui-table__row:hover {
  background-color: rgba(143, 158, 164, 0.2);
}
.ui-table__row:first-of-type.ui-table__row--selected {
  box-shadow: inset 0 1px 3px 0 rgba(0, 23, 47, 0.2);
}
.ui-table__row:not(:first-of-type) td {
  border-top: 1px solid;
  border-color: rgba(143, 158, 164, 0.2);
}
.ui-table__row:not(:first-of-type) td.no-shadow {
  border: 0;
}
.ui-table__row--selected, .ui-table__row--selected:hover {
  background-color: #4d76f1;
}
.ui-table__row--selected td, .ui-table__row--selected:hover td {
  color: #ffffff;
}
.ui-table__row--selected .ui-button svg, .ui-table__row--selected:hover .ui-button svg {
  fill: #ffffff;
}
.ui-table__row-actions {
  height: 40px;
}
.ui-table__row-actions .ui-checkbox,
.ui-table__row-actions .ui-button {
  display: table-cell;
  margin: 0;
  padding: 0;
  height: 24px;
  width: 24px;
}
.ui-table__row-actions .ui-checkbox {
  margin-right: 4px;
}
.ui-table--has-summary .ui-table__row:last-of-type {
  box-shadow: 0 -1px 0 0 rgba(143, 158, 164, 0.4);
}

.ui-content-view .ui-toast {
  position: unset;
}
@media screen and (min-width: 600px) {
  .ui-content-view .ui-toast {
    position: absolute;
    left: 8px;
  }
}

.ui-toast {
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 12px 24px 0px rgba(6, 28, 45, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
  display: flex;
  align-items: flex-end;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 205;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (max-width: 600px) {
  .ui-toast {
    height: auto;
  }
}
.ui-toast--entering {
  transform: translateY(0);
  opacity: 1;
}
.ui-toast--entering.ui-toast--is-stacked {
  transform: translateY(-81px);
  z-index: 200;
  margin-bottom: 8px;
}
.ui-toast--entering.ui-toast--is-stacked.ui-toast--is-stacked--with-progressbar {
  margin-bottom: 16px;
}
.ui-toast__abort svg {
  width: 20px;
  height: 20px;
}
.ui-toast__content {
  gap: 8px;
}
.ui-toast--has-progress-bar {
  padding: 16px;
}
.ui-toast--has-progress-bar .ui-toast__abort {
  margin-left: 8px;
}
@media screen and (min-width: 600px) {
  .ui-toast {
    width: auto;
    left: 16px;
    bottom: 16px;
    min-width: 360px;
  }
}
@media screen and (min-width: 1280px) {
  .ui-toast {
    left: 288px;
  }
}
.ui-toast--has-custom-parent {
  position: absolute;
}
@media screen and (min-width: 600px) {
  .ui-toast--has-custom-parent {
    left: 16px;
  }
}

.ui-item-group--selectable .ui-item {
  transition: background 0.2s ease-out;
  -webkit-appearance: none;
}
.ui-item-group--selectable .ui-item.ui-item--selected {
  background-color: #dde1e3;
}
.ui-item-group--selectable .ui-item.ui-item--selected:hover {
  background-color: #4d76f1;
}
.ui-item-group--selectable .ui-item.ui-item--selected:hover .title,
.ui-item-group--selectable .ui-item.ui-item--selected:hover .description {
  color: #ffffff;
}
.ui-item-group--selectable .ui-item.ui-item--selected:hover > svg {
  fill: #ffffff;
}

.ui-item:not([disabled]) {
  transition: background-color 0.15s linear;
}
.ui-item.ui-item--active:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 44px;
  background: #4d76f1;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ui-item.ui-item--disabled {
  box-shadow: inset 0 0 3px 0 #dde1e3;
}

.ui-item .ui-loading {
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  margin-left: 4px;
}
.ui-item .ui-loading svg {
  position: absolute;
  width: 16px;
  height: 16px;
}

.ui-intro {
  /* for page titles */
}
.ui-intro .title,
.ui-intro .description {
  line-height: 20px;
}
.ui-intro[size=md] .title {
  font-size: 16px;
  line-height: 22px;
}
.ui-intro[size=lg] .title {
  font-size: 20px;
  line-height: 24px;
}
.ui-intro[size=lg] .description {
  padding-top: 8px;
}
.ui-intro[size=xl] .title {
  font-size: 28px;
  line-height: 32px;
}
.ui-intro[size=xl] .description {
  color: #00172f;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  padding-top: 8px;
}

.ui-routable-tabs__header-scroll-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.ui-routable-tabs__header-scroll-container:after {
  content: "";
  min-width: 8px;
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item {
  height: 40px;
  padding: 10px 16px;
  border: none;
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item:hover {
  background-color: rgba(143, 158, 164, 0.2);
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item:hover .ui-tab-item__link .ui-tab-item__icon path {
  fill: #4d76f1;
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item:hover .ui-tab-item__link .ui-tab-item__count {
  background-color: rgba(77, 118, 241, 0.1);
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item:hover .ui-tab-item__link .ui-tab-item__button {
  min-height: 20px;
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item .ui-tab-item__link {
  text-decoration: none;
  white-space: nowrap;
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item .ui-tab-item__link .ui-tab-item__icon path {
  fill: #8f9ea4;
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item .ui-tab-item__link .ui-tab-item__count {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item--active {
  background-color: rgba(77, 118, 241, 0.1);
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item--active:hover {
  background-color: rgba(77, 118, 241, 0.2);
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item--active .ui-tab-item__link {
  color: #4d76f1;
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item--active .ui-tab-item__link .ui-tab-item__icon path {
  fill: #4d76f1;
}
.ui-routable-tabs__header-scroll-container .ui-routable-tabs__tab-item--active .ui-tab-item__link .ui-tab-item__count {
  background-color: rgba(77, 118, 241, 0.1);
}

.ui-routable-tabs__content {
  overflow: hidden;
  scroll-behavior: smooth;
}
.ui-routable-tabs__content .liquid-container {
  overflow: initial;
}

.ui-lang-select {
  max-width: 160px;
}

.ui-lang-select .ui-lang-select-trigger-content,
.ui-lang-select-option-content {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.options-container .ui-status,
.ui-language-tag .ui-status {
  width: 8px;
  height: 8px;
  margin-left: 4px;
}
.options-container .ui-status .ui-status__inner,
.ui-language-tag .ui-status .ui-status__inner {
  width: 8px;
  height: 8px;
}
.options-container .ui-lang-option .ui-status,
.ui-language-tag .ui-lang-option .ui-status {
  margin: 8px;
}

.ui-language-tag {
  border: 1px solid #dde1e3;
  height: 32px;
}
.ui-language-tag .ui-status {
  margin-right: 8px;
}

.options-container {
  width: auto;
}

.ui-page-not-found {
  text-align: center;
}
.ui-page-not-found h1 {
  margin-top: 50px;
}
.ui-page-not-found svg {
  max-width: 40%;
  min-width: 300px;
}

.ui-editor-container {
  /* states: changes the fields border-color */
}
.ui-editor-container .ui-editor {
  background-color: rgba(143, 158, 164, 0.1);
  border: 1px solid rgba(143, 158, 164, 0.1);
}
.ui-editor-container .ui-editor:hover {
  background-color: #dde1e3;
}
.ui-editor-container .ui-editor:focus-within {
  background: #ffffff;
  /* set height of sentinel to avoid jumps when the actionbar becomes sticky */
}
.ui-editor-container .ui-editor:focus-within .ui-editor__actionbar--sticky {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 2px 4px -2px rgba(0, 23, 47, 0.2);
  width: 100%;
  transition: background 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ui-editor-container .ui-editor:focus-within .ui-editor__actionbar--sentinel.active {
  height: 56px;
}
.ui-editor-container .ui-editor a {
  text-decoration: none;
}
.ui-editor-container .ui-editor__heading-select {
  padding: 0;
  width: 48px;
}
.ui-editor-container .ui-editor__action {
  height: 24px;
  border: none;
  background-color: transparent;
  outline: none;
  color: #00172f;
  font-weight: 500;
}
.ui-editor-container .ui-editor__message, .ui-editor-container .ui-editor__head {
  height: 20px;
}
@media (hover: hover) {
  .ui-editor-container .ui-editor__action:hover {
    color: #4d76f1;
  }
  .ui-editor-container .ui-editor__action:hover svg {
    fill: #4d76f1;
  }
}
.ui-editor-container .ui-editor .ui-editor__action--active {
  color: #4d76f1;
}
.ui-editor-container .ui-editor .ui-editor__action--active svg {
  fill: #4d76f1;
}
@media (min-width: 600px) {
  .ui-editor-container .ui-editor .ui-editor__heading-select {
    width: 108px;
  }
}
.ui-editor-container .ui-editor__content {
  min-height: 22px;
  outline: none;
}
.ui-editor-container .ui-editor__content blockquote {
  margin-left: 8px;
  padding-left: 4px;
  border-left: 4px solid #00172f;
}
.ui-editor-container .ui-editor__content ul li {
  list-style-type: disc;
}
.ui-editor-container .ui-editor__content ol li {
  list-style-type: decimal;
}
.ui-editor-container .ui-editor__content p {
  margin-top: 8px;
}
.ui-editor-container .ui-editor__content pre {
  border-radius: 3px;
  background-color: rgba(143, 158, 164, 0.1);
  padding: 4px;
  margin-top: 4px;
  white-space: pre-wrap;
}
.ui-editor-container .ui-editor__content b {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 600;
}
.ui-editor-container .ui-editor__content a {
  color: #4d76f1;
}
.ui-editor-container .ui-editor__content span,
.ui-editor-container .ui-editor__content i,
.ui-editor-container .ui-editor__content u {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}
.ui-editor-container .ui-editor__content hr {
  border: none;
  border-top: rgba(143, 158, 164, 0.4) 1px solid;
  margin: 12px 0;
}
.ui-editor-container .ui-editor__content h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  font-weight: bold;
}
.ui-editor-container .ui-editor__content h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  font-weight: bold;
}
.ui-editor-container .ui-editor__content h3 {
  font-size: 1.17em;
  line-height: 1.3em;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: bold;
}
.ui-editor-container .ui-editor__content h4 {
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  font-weight: bold;
}
.ui-editor-container[theme=dark] .ui-editor__content {
  color: #ffffff;
}
.ui-editor-container[theme=dark] .ui-editor:hover {
  background-color: rgba(143, 158, 164, 0.4);
}
.ui-editor-container[theme=dark] .ui-editor:focus-within {
  background-color: transparent;
}
.ui-editor-container[theme=dark] .ui-editor__content blockquote {
  border-color: #8f9ea4;
}
.ui-editor-container[theme=dark].ui-editor-container--disabled .ui-editor:hover {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-editor-container--disabled .ui-editor {
  pointer-events: none;
}
.ui-editor-container--disabled .ui-editor:focus-within {
  background: rgba(143, 158, 164, 0.1);
}
.ui-editor-container--disabled .ui-editor .ui-editor__action:hover {
  color: #8f9ea4;
}
.ui-editor-container--disabled .ui-editor .ui-editor__action:hover svg {
  fill: #8f9ea4;
}
.ui-editor-container--disabled .ui-editor:hover {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-editor-container--error .ui-editor {
  border: 1px solid #f6374e;
}
.ui-editor-container--error .ui-editor__message {
  color: #f6374e;
}
.ui-editor-container:not([readonly]) .ui-form-control.success .ui-editor {
  border-color: #22b867;
}
.ui-editor-container:not([readonly]) .ui-form-control.error .ui-editor {
  border-color: #f6374e;
}
.ui-editor-container:not([readonly]) .ui-form-control.warning .ui-editor {
  border-color: #f3a100;
}

.ui-editor__dropdown-item svg {
  fill: #8f9ea4;
}

.options-container .ui-editor__action {
  border: none;
  background-color: transparent;
  outline: none;
  color: #ffffff;
  font-weight: 500;
}

.ui-selection-actions {
  z-index: 179;
}
.ui-selection-actions .ui-icon-button svg path {
  fill: #ffffff;
}
.ui-selection-actions .ui-loading .ui-spinner .path {
  stroke: #ffffff;
}

@media (min-width: 600px) {
  .ui-selection-actions {
    min-width: 280px;
  }
}
@media (min-width: 1280px) {
  .ui-selection-actions.fixed {
    left: 296px;
  }
}
.ui-pagination__pages {
  overflow: hidden;
}
.ui-pagination.ui-pagination--static-pages {
  justify-content: center;
}
.ui-pagination.ui-pagination--static-pages .ui-pagination__pages {
  max-width: none;
}
.ui-pagination__ellipsis {
  height: 32px;
  width: 48px;
  user-select: none;
}
.ui-pagination--hidden-for-calculation {
  visibility: hidden;
}
.ui-pagination__fixed-navigation {
  min-width: 96px;
}

.ui-pagination__arrow--next svg {
  transform: rotate(180deg);
}
.ui-pagination__arrow svg path {
  fill: currentcolor;
}
.ui-pagination__arrow__svg-container {
  padding: 6px;
  transition: background-color 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ui-pagination__arrow__svg-container:hover {
  background-color: rgba(143, 158, 164, 0.1);
  color: #000;
}
.ui-pagination__arrow--disabled .ui-pagination__arrow__svg-container:hover {
  background-color: transparent;
}

.ui-pagination__page-item {
  height: 32px;
  min-width: 48px;
  user-select: none;
}
.ui-pagination__page-item--input {
  border: 1px solid rgba(143, 158, 164, 0.1);
  text-align: center;
  height: 32px;
  width: 48px;
}
.ui-pagination__page-item--input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.ui-pagination__page-item--input:focus {
  outline: none;
}
.ui-pagination__page-item--input::-webkit-inner-spin-button, .ui-pagination__page-item--input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ui-pagination__page-item--use-hover:hover {
  transition: background-color 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: rgba(143, 158, 164, 0.1);
  color: #000;
}
.ui-pagination__page-item--use-hover:hover {
  transition: background-color 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: rgba(143, 158, 164, 0.1);
  color: #000;
}

.ui-list-item {
  transition: background-color 0.15s linear;
  margin-bottom: 4px;
  max-height: 76px;
  gap: 8px;
}
.ui-list-item .ui-checkbox {
  transform: translateX(20%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ui-list-item:not(.ui-list-item--selected):hover .ui-checkbox, .ui-list-item--selected .ui-checkbox, .ui-list-item--checkbox-fixed .ui-checkbox {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
.ui-list-item:not(.ui-list-item--selected):hover .ui-checkbox svg, .ui-list-item--selected .ui-checkbox svg, .ui-list-item--checkbox-fixed .ui-checkbox svg {
  fill: #8f9ea4;
}
.ui-list-item .thumbnail {
  width: 44px;
  height: 44px;
}
.ui-list-item .thumbnail img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}
.ui-list-item .ui-button.ui-icon-button {
  padding: 0;
  width: 24px;
  height: 24px;
}
.ui-list-item.ui-list-item--active:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 44px;
  background: #4d76f1;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ui-list-item.ui-list-item--selected {
  box-shadow: inset 0 0 0 2px #4d76f1;
}
.ui-list-item--right {
  gap: 12px;
  align-self: flex-start;
}
@media (min-width: 600px) {
  .ui-list-item .ui-list-item__content {
    display: flex;
  }
}

.ui-list-view-content__footer .ui-pagination {
  margin: 32px 8px;
}
@media screen and (max-width: 899px) {
  .ui-list-view-content__footer .ui-pagination {
    margin: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}

.ui-content-view.ui-content-view--detail .ui-list-view-content__footer .ui-pagination {
  margin: 32px 0 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
}

.ui-notification {
  z-index: 99;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
.ui-notification__inner {
  background-color: #22b867;
}
.ui-notification--warning .ui-notification__inner {
  background-color: #f3a100;
}
.ui-notification--info .ui-notification__inner {
  background-color: #4d76f1;
}
.ui-notification--danger .ui-notification__inner {
  background-color: #f6374e;
}
.ui-notification--entering {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ui-notification--dismissed {
  transform: translateY(100%);
  opacity: 0;
}
.ui-notification--animating {
  overflow: hidden;
}
.ui-notification .ui-button.ui-icon-button svg {
  fill: #ffffff;
}

.is-showing-notification {
  overflow-y: scroll;
  height: 100vh;
}

.ui-inline-notification {
  color: #4d76f1;
  background-color: rgba(77, 118, 241, 0.05);
}
.ui-inline-notification .icon {
  min-width: 24px;
}
.ui-inline-notification--warning {
  color: #f3a100;
  background-color: rgba(225, 196, 108, 0.05);
}
.ui-inline-notification--warning .ui-button {
  color: #f3a100;
}
.ui-inline-notification--error {
  color: #f6374e;
  background-color: rgba(235, 90, 97, 0.05);
}
.ui-inline-notification--error .ui-button {
  color: #f6374e;
}
.ui-inline-notification--success {
  color: #22b867;
  background-color: rgba(70, 174, 116, 0.05);
}
.ui-inline-notification--success .ui-button {
  color: #22b867;
}

.ui-popover {
  opacity: 1;
  min-width: 128px;
  max-width: 256px;
  border-radius: 3px;
  z-index: 205;
  opacity: 0;
  transition: transform 0.2s linear, opacitiy 0.2s linear;
  text-align: left;
  transform: translateY(-20px);
}
.ui-popover[size=lg] {
  max-width: 440px;
}
.ui-popover.no-max-width {
  max-width: 100vw;
  word-break: break-word;
}
.ui-popover--animation-top {
  transform: translateY(20px);
}
.ui-popover--entering {
  opacity: 1;
  transform: translateY(0);
}
.ui-popover.bg-primary-blur {
  background: #fff;
  border: 1px solid rgba(143, 158, 164, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ui-popover__outer {
  width: fit-content;
  height: fit-content;
}
.ui-popover .ui-table__head-row {
  box-shadow: none;
}

.ui-status {
  height: 20px;
  width: 20px;
}
.ui-status .ui-status__inner {
  width: 8px;
  height: 8px;
  background-color: #8f9ea4;
}
.ui-status--success .ui-status__inner {
  background-color: #22b867;
}
.ui-status--partial_success .ui-status__inner {
  background-color: transparent;
  border: 2px solid #22b867;
}
.ui-status--warning .ui-status__inner {
  background-color: #f3a100;
}
.ui-status--partial_warning .ui-status__inner {
  background-color: transparent;
  border: 2px solid #f3a100;
}
.ui-status--error .ui-status__inner {
  background-color: #f6374e;
}
.ui-status:hover.ui-status {
  background-color: rgba(143, 158, 164, 0.3);
}
.ui-status:hover.ui-status--success, .ui-status:hover.ui-status--partial_success {
  background-color: rgba(34, 184, 103, 0.3);
}
.ui-status:hover.ui-status--warning, .ui-status:hover.ui-status--partial_warning {
  background-color: rgba(243, 161, 0, 0.3);
}
.ui-status:hover.ui-status--error {
  background-color: rgba(246, 55, 78, 0.3);
}

.ui-chart__wrapper {
  min-width: 512px;
  min-height: 256px;
}
.ui-chart__area-wrapper {
  overflow-x: auto;
}

@media (max-width: 600px) {
  .ui-chart--hide-mobile-tooltip .ui-chart__wrapper {
    pointer-events: none;
  }
}
.ui-chart-legend .ui-legend__point {
  height: 8px;
  width: 8px;
  border-radius: 4px;
}

#chartjs-tooltip {
  position: absolute;
  pointer-events: none;
}
#chartjs-tooltip .table__head-row,
#chartjs-tooltip .table td {
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}
#chartjs-tooltip .table td,
#chartjs-tooltip .table th {
  padding-top: 0;
  padding-bottom: 0;
  height: 28px;
}
#chartjs-tooltip .table__head-row:first-child {
  max-width: initial;
}
#chartjs-tooltip .table__row, #chartjs-tooltip .table__head-row {
  height: 28px;
}
#chartjs-tooltip .table__head-cell {
  text-align: left;
  position: relative;
  min-width: 40px;
}
#chartjs-tooltip .table .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 4px 0px 4px;
  border-color: #f6374e transparent transparent transparent;
}
#chartjs-tooltip .table .arrow--positive {
  border-top-color: #22b867;
}
#chartjs-tooltip .table .arrow--increase {
  border-width: 0px 4px 8px 4px;
  border-top-color: transparent;
  border-bottom-color: #f6374e;
}
#chartjs-tooltip .table .arrow--increase.arrow--positive {
  border-bottom-color: #22b867;
}
#chartjs-tooltip .table .comparison-value {
  color: #8f9ea4;
  white-space: nowrap;
}
#chartjs-tooltip .table .comparison-value--positive {
  color: #22b867;
}
#chartjs-tooltip .table .comparison-value--negative {
  color: #f6374e;
}
#chartjs-tooltip .table .reference-value-label {
  padding-bottom: 1px;
}

.ui-skeleton {
  width: 100%;
  display: grid;
  flex-wrap: wrap;
}

.ui-skeleton-card {
  background-color: rgba(143, 158, 164, 0.1);
  height: 160px;
  animation: fade 1s linear infinite alternate;
}
@media (min-width: 600px) {
  .ui-skeleton-card {
    height: 280px;
  }
}

@keyframes fade {
  from {
    background-color: rgba(143, 158, 164, 0.1);
  }
  to {
    background-color: rgba(143, 158, 164, 0.4);
  }
}
.ui-chip {
  padding: 0 12px;
  transition: background-color 0.2s ease-in-out;
}
.ui-chip__description.font-xs {
  line-height: 18px;
}
.ui-chip__action {
  margin-right: -4px;
}
.ui-chip--small {
  padding: 4px;
  height: 28px;
}
.ui-chip[theme=transparent] {
  background-color: transparent;
  color: #8f9ea4;
  box-shadow: inset 0 0 0 1px rgba(143, 158, 164, 0.1);
}
.ui-chip[theme=transparent] .ui-chip__description {
  color: rgba(143, 158, 164, 0.6);
}
.ui-chip[theme=transparent]:hover {
  background-color: rgba(143, 158, 164, 0.2);
}
.ui-chip[theme=transparent].ui-chip--is-selected {
  color: #4d76f1;
  background-color: rgba(77, 118, 241, 0.1);
  box-shadow: none;
}
.ui-chip[theme=transparent].ui-chip--is-selected .ui-chip__description {
  color: rgba(77, 118, 241, 0.6);
}
.ui-chip[theme=grey] {
  background-color: rgba(143, 158, 164, 0.1);
  color: #00172f;
}
.ui-chip[theme=grey] .ui-chip__description {
  color: #8f9ea4;
}
.ui-chip[theme=grey]:hover {
  background-color: rgba(143, 158, 164, 0.2);
}
.ui-chip[theme=green] {
  background-color: rgba(34, 184, 103, 0.1);
  color: #22b867;
}
.ui-chip[theme=green]:hover {
  background-color: rgba(34, 184, 103, 0.2);
}
.ui-chip[theme=green].ui-chip--is-selected {
  color: #ffffff;
  background-color: #22b867;
}
.ui-chip[theme=red] {
  background-color: rgba(246, 55, 78, 0.1);
  color: #f6374e;
}
.ui-chip[theme=red]:hover {
  background-color: rgba(246, 55, 78, 0.2);
}
.ui-chip[theme=red].ui-chip--is-selected {
  color: #ffffff;
  background-color: #f6374e;
}

.ui-color-composition__color {
  opacity: 0.6;
}
.ui-color-composition__dialog .ui-colored-tile {
  height: 160px;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}

.ui-modal-container {
  z-index: 180;
  -webkit-overflow-scrolling: touch;
  /* custom min-width to make dialog fullscreen when it reaches full-width*/
}
.ui-modal-container::-webkit-scrollbar {
  width: 0;
}
.ui-modal-container .ui-modal-scroll-container {
  margin: auto;
}
.ui-modal-container .ui-modal-scroll-container:not(.ui-modal-scroll-container--scroll-inline):before, .ui-modal-container .ui-modal-scroll-container:not(.ui-modal-scroll-container--scroll-inline):after {
  content: "";
  position: relative;
  display: block;
  height: 80px;
  min-height: 80px;
}
.ui-modal-container .ui-modal {
  width: calc(100% - 32px);
  max-width: 320px;
  height: auto;
  background-color: #ffffff;
  /* sizes */
  /* themes */
}
.ui-modal-container .ui-modal__fixed-bottom {
  width: calc(100% - 32px);
  max-width: 320px;
  z-index: 100;
}
.ui-modal-container .ui-modal__content:last-child {
  padding-bottom: 24px;
}
.ui-modal-container .ui-modal[size=sm] {
  min-height: 200px;
}
.ui-modal-container .ui-modal[size=md], .ui-modal-container .ui-modal[size=lg] {
  width: 100%;
  max-width: 100%;
}
.ui-modal-container .ui-modal[size=md] .ui-modal__fixed-bottom, .ui-modal-container .ui-modal[size=lg] .ui-modal__fixed-bottom {
  width: 100%;
  max-width: 100%;
}
.ui-modal-container .ui-modal[theme=white] {
  background-color: #ffffff;
}
.ui-modal-container .ui-modal[theme=grey] {
  background-color: #f2f2f2;
}
.ui-modal-container .ui-modal[theme=error] .ui-modal__intro .font-lg {
  color: #f6374e;
}
.ui-modal-container .ui-modal .modal-navigation-bar-spacer {
  height: 80px;
  min-height: 80px;
}
.ui-modal-container .ui-modal .ui-navigation-bar__fixed-container {
  position: absolute;
  width: 100%;
}
.ui-modal-container .ui-modal .ui-navigation-bar__fixed-container .ui-button {
  padding: 0;
  margin: 0;
}
.ui-modal-container .ui-modal .ui-navigation-bar__fixed-container .ui-button__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ui-modal-container .ui-modal .ui-modal__fixed-bottom,
.ui-modal-container .ui-modal .ui-navigation-bar--scrolled .ui-navigation-bar__fixed-container {
  position: fixed;
  width: calc(100% - 32px);
  max-width: 320px;
  margin: 0 auto;
}
.ui-modal-container .ui-modal[size=md] .ui-modal__fixed-bottom,
.ui-modal-container .ui-modal[size=md] .ui-navigation-bar--scrolled .ui-navigation-bar__fixed-container, .ui-modal-container .ui-modal[size=lg] .ui-modal__fixed-bottom,
.ui-modal-container .ui-modal[size=lg] .ui-navigation-bar--scrolled .ui-navigation-bar__fixed-container {
  width: 100%;
  max-width: 100%;
}
.ui-modal-container .ui-modal-scroll-container--scroll-inline .ui-modal {
  height: 100vh;
}
@media screen and (min-width: 640px) {
  .ui-modal-container .ui-modal[size=md] {
    width: 100%;
    max-width: 512px;
    border-radius: 4px;
  }
  .ui-modal-container .ui-modal[size=md] .ui-modal__fixed-bottom,
  .ui-modal-container .ui-modal[size=md] .ui-navigation-bar--scrolled .ui-navigation-bar__fixed-container {
    width: 100%;
    max-width: 512px;
  }
}
@media screen and (min-width: 960px) {
  .ui-modal-container .ui-modal[size=lg] {
    width: 100%;
    max-width: 960px;
    border-radius: 4px;
  }
  .ui-modal-container .ui-modal[size=lg] .ui-modal__fixed-bottom,
  .ui-modal-container .ui-modal[size=lg] .ui-navigation-bar--scrolled .ui-navigation-bar__fixed-container {
    width: 100%;
    max-width: 960px;
  }
  .ui-modal-container .ui-modal[size=lg]:not(.h-auto) {
    min-height: 640px;
  }
  .ui-modal-container .ui-modal-scroll-container--scroll-inline .ui-modal {
    height: 640px;
  }
}

.ui-datepicker {
  /* :not[readonly] must be appended in order to overwrite styles */
}
.ui-datepicker__calendar .ember-power-calendar-nav {
  display: flex;
  width: 100%;
}
.ui-datepicker__calendar .ember-power-calendar-nav-title {
  flex-grow: 1;
}
.ui-datepicker__calendar .ember-power-calendar-row {
  display: grid;
  grid-template-columns: repeat(7, 41px);
  grid-template-rows: 41px;
}
.ui-datepicker__calendar .ember-power-calendar-weekday {
  font-size: 11px;
  line-height: 16px;
  color: #8f9ea4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ui-datepicker__calendar .ember-power-calendar-day {
  outline: none;
  border: none;
}
.ui-datepicker__calendar .ember-power-calendar-day--other-month {
  visibility: hidden;
}
.ui-datepicker__calendar .ember-power-calendar-day--range-start {
  border-radius: 3px 0 0 3px;
}
.ui-datepicker__calendar .ember-power-calendar-day--range-end {
  border-radius: 0 3px 3px 0;
}
.ui-datepicker__calendar .ember-power-calendar-day--range-start, .ui-datepicker__calendar .ember-power-calendar-day--range-end {
  background-color: #4d76f1;
  color: #ffffff;
}
.ui-datepicker__calendar .ember-power-calendar-day:hover {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-datepicker__calendar .ember-power-calendar-day--selected:hover {
  background-color: rgba(77, 118, 241, 0.6);
  color: white;
}
.ui-datepicker__calendar .ember-power-calendar-day--selected {
  border: none;
  border-color: rgba(77, 118, 241, 0.1);
  z-index: 1;
}
.ui-datepicker__calendar .ember-power-calendar-day, .ui-datepicker__calendar .ember-power-calendar-weekday {
  width: 42px;
  height: 42px;
}
@media screen and (min-width: 600px) {
  .ui-datepicker__calendar .ember-power-calendar-row {
    grid-template-columns: repeat(7, 32px);
    grid-template-rows: 32px;
  }
  .ui-datepicker__calendar .ember-power-calendar-day, .ui-datepicker__calendar .ember-power-calendar-weekday {
    width: 32px;
    height: 32px;
  }
}
.ui-datepicker__calendar .ember-power-calendar-day--range-start.ember-power-calendar-day--range-end {
  border-radius: 3px;
}
.ui-datepicker .ui-input-container:not([readonly]) .ui-datepicker__start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ui-datepicker .ui-input-container:not([readonly]) .ui-datepicker__end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.ui-datepicker .ui-input-container:not([readonly]) .ui-form-message div {
  overflow: visible;
}
.ui-datepicker .ui-input-container:not([readonly])[theme=dark]:hover .ui-form-item {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-datepicker .ui-input-container:not([readonly])[theme=dark]:not(:focus):hover .ui-form-item {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-datepicker .ui-input-container:not([readonly])[theme=dark]:not(:focus):hover .ui-form-item--active {
  background-color: #4d76f1;
}
.ui-datepicker .ui-input-container:not([readonly])[theme=dark]:not(:focus) .ui-form-item:hover {
  background-color: rgba(143, 158, 164, 0.4);
}
.ui-datepicker .ui-input-container:not([readonly])[theme=dark]:not(:focus) .ui-form-item--active:hover {
  background-color: #4d76f1;
}
.ui-datepicker .ui-input-container:not([readonly])[theme=dark] .ui-form-item:not(.ui-form-item--active) svg.secondary {
  color: #8f9ea4;
}
.ui-datepicker .ui-input-container:not([readonly]):hover .ui-form-item {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-datepicker .ui-input-container:not([readonly]) .ui-form-item:hover {
  background-color: #dde1e3;
}
.ui-datepicker .ui-input-container:not([readonly]):hover .ui-form-item--active,
.ui-datepicker .ui-input-container:not([readonly]) .ui-form-item--active:hover {
  background-color: #4d76f1;
}
.ui-datepicker--readonly .ui-input-container:not([readonly]) .ui-form-item, .ui-datepicker--readonly:hover .ui-input-container:not([readonly]) .ui-form-item {
  background-color: transparent;
}
.ui-datepicker__dropdown .options-container__scroller {
  max-height: initial;
}
.ui-datepicker__year-select {
  opacity: 0;
}
.ui-datepicker__next, .ui-datepicker__prev {
  background-color: transparent;
  border: none;
  outline: none;
}
.ui-datepicker__days-select {
  min-height: 240px;
}

.ui-datepicker__dropdown .ui-datepicker__calendar {
  padding-top: 8px;
}
.ui-datepicker__dropdown .ui-datepicker-filter {
  padding: 8px 0;
  min-width: 200px;
}
.ui-datepicker__dropdown .options-container__scroller {
  padding: 0px;
}
.ui-datepicker__dropdown .ui-select-option {
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
  padding: 12px 24px;
}
.ui-datepicker__dropdown .ui-select-option--active {
  color: #4d76f1;
  background-color: rgba(77, 118, 241, 0.1);
}

.ui-radio-button__box {
  width: 20px;
  height: 20px;
}
.ui-radio-button svg .circle {
  transition: 0.3s;
}
.ui-radio-button .ui-label {
  color: #8f9ea4;
}
.ui-radio-button--disabled .ui-radio-button__box {
  opacity: 0.4;
}
.ui-radio-button--is-selected svg .circle {
  fill: #ffffff;
  stroke: #4d76f1;
  stroke-width: 9;
}
.ui-radio-button--is-selected .ui-label {
  color: #4d76f1;
}
.ui-radio-button--disabled.ui-radio-button--is-selected svg .circle {
  stroke: #8f9ea4;
}
.ui-radio-button--disabled.ui-radio-button--is-selected .ui-label {
  color: #8f9ea4;
}

.ui-progress-bar__progress-wrapper {
  height: 4px;
  background-color: rgba(143, 158, 164, 0.1);
  border-radius: 3px;
}
.ui-progress-bar__progress {
  border-radius: 3px;
  height: 4px;
  margin: -1px;
  transition: width 0.2s;
  background: linear-gradient(90deg, #4d76f1, #84aef9);
  background-size: 400% 100%;
  animation: ProgressGradient 2s ease infinite;
}
@keyframes ProgressGradient {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.ui-rating svg {
  height: 20px;
  width: 20px;
  transition: fill 0.4s ease;
}
.ui-rating[disabled] svg {
  height: 16px;
  width: 16px;
}

.ui-dropzone-container label {
  line-height: 20px;
}
.ui-dropzone-container .ui-dropzone {
  background-color: rgba(77, 118, 241, 0.1019607843);
}

.ui-label {
  height: 20px;
}
.ui-label > * {
  line-height: 20px;
}

.ui-input-container {
  /* states: changes the fields border-color */
}
.ui-input-container:focus {
  outline: none;
}
.ui-input-container--textarea {
  height: auto;
}
.ui-input-container .ui-form-item {
  padding: 0 8px;
  line-height: 22px;
  transition: background 0.2s ease-out;
  border-radius: 3px;
  color: #00172f;
  background-color: transparent;
  min-height: 40px;
  border: 1px solid rgba(143, 158, 164, 0.1);
}
.ui-input-container .ui-form-item .ui-input-prepend,
.ui-input-container .ui-form-item .ui-input-append {
  line-height: inherit;
}
.ui-input-container .ui-form-item__textarea {
  padding: 0px;
}
.ui-input-container .ui-form-item:focus {
  outline: -webkit-focus-ring-color auto 1px;
}
.ui-input-container .ui-form-item textarea {
  padding: 8px;
  min-height: 80px;
}
.ui-input-container .ui-form-item svg {
  fill: currentColor;
}
.ui-input-container .ui-form-item input,
.ui-input-container .ui-form-item svg {
  transition: color 0.2s ease-out;
}
.ui-input-container[readonly] input {
  cursor: default;
}
.ui-input-container input,
.ui-input-container textarea {
  outline: none;
  border: 0;
  background-color: transparent;
  /* inherit fro container */
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.ui-input-container input::placeholder,
.ui-input-container textarea::placeholder {
  color: #8f9ea4;
  opacity: 1;
}
.ui-input-container input {
  box-sizing: border-box;
  padding-bottom: 2px;
}
.ui-input-container input:-webkit-autofill,
.ui-input-container input:-webkit-autofill:hover,
.ui-input-container input:-webkit-autofill:focus,
.ui-input-container textarea:-webkit-autofill,
.ui-input-container textarea:-webkit-autofill:hover,
.ui-input-container textarea:-webkit-autofill:focus,
.ui-input-container select:-webkit-autofill,
.ui-input-container select:-webkit-autofill:hover,
.ui-input-container select:-webkit-autofill:focus {
  -webkit-text-fill-color: #4d76f1;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  /*
   * hack to change background color on autofill
   * https://css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/
   */
  transition: background-color 5000s ease-in-out 0s;
}
.ui-input-container:not([readonly]) {
  /* focused */
  /* hover state */
}
.ui-input-container:not([readonly]) .ui-form-item {
  /* default state */
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-input-container:not([readonly]).focused .ui-form-item {
  /* default state */
  border: 1px solid rgba(0, 23, 47, 0.1);
  background-color: transparent;
}
.ui-input-container:not([readonly]):hover .ui-form-item {
  background-color: #dde1e3;
}
.ui-input-container:not([readonly]) .ui-form-item--active, .ui-input-container:not([readonly]):hover .ui-form-item--active, .ui-input-container:not([readonly]).focused .ui-form-item--active {
  background-color: #4d76f1;
}
.ui-input-container:not([readonly]) .ui-form-item--active input,
.ui-input-container:not([readonly]) .ui-form-item--active svg, .ui-input-container:not([readonly]):hover .ui-form-item--active input,
.ui-input-container:not([readonly]):hover .ui-form-item--active svg, .ui-input-container:not([readonly]).focused .ui-form-item--active input,
.ui-input-container:not([readonly]).focused .ui-form-item--active svg {
  color: #ffffff;
}
.ui-input-container:not([readonly]) .ui-form-item--active input::placeholder, .ui-input-container:not([readonly]):hover .ui-form-item--active input::placeholder, .ui-input-container:not([readonly]).focused .ui-form-item--active input::placeholder {
  color: #ffffff;
}
.ui-input-container .ui-loading {
  display: flex;
  pointer-events: none;
}
.ui-input-container .ui-loading svg {
  width: 16px;
  height: 16px;
}
.ui-input-container[theme=dark] .ui-form-item {
  /* default */
  background-color: transparent;
  border: 1px solid rgba(143, 158, 164, 0.1);
  color: #ffffff;
}
.ui-input-container[theme=dark] .ui-form-item input,
.ui-input-container[theme=dark] .ui-form-item textarea,
.ui-input-container[theme=dark] .ui-form-item svg {
  color: #ffffff;
}
.ui-input-container[theme=dark] .ui-form-item input:active,
.ui-input-container[theme=dark] .ui-form-item input:focus {
  border-color: rgba(143, 158, 164, 0.4);
}
.ui-input-container[theme=dark]:not([readonly]) .ui-form-item {
  /* default state */
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-input-container[theme=dark]:not([readonly]):hover:not(:active):not(:focus) .ui-form-item {
  background-color: rgba(143, 158, 164, 0.4);
}
.ui-input-container[theme=dark]:not([readonly]).focused:hover:not(:active):not(:focus) .ui-form-item {
  background-color: transparent;
}
.ui-input-container[theme=dark]:not([readonly]).focused .ui-form-item {
  border-color: rgba(143, 158, 164, 0.4);
}
.ui-input-container[theme=dark]:not([readonly]):hover input:active, .ui-input-container[theme=dark]:not([readonly]):hover input:focus {
  background-color: transparent;
}
.ui-input-container[theme=dark]:not([readonly]):active .ui-form-item, .ui-input-container[theme=dark]:not([readonly]):focus .ui-form-item {
  background-color: transparent;
}
.ui-input-container[theme=dark]:not([readonly]) .ui-form-item--active, .ui-input-container[theme=dark]:not([readonly]):hover:not(:active):not(:focus) .ui-form-item--active, .ui-input-container[theme=dark]:not([readonly]).focused .ui-form-item--active {
  background-color: #4d76f1;
}
.ui-input-container:not([readonly]) .ui-form-control.success .ui-form-item {
  border-color: #22b867;
}
.ui-input-container:not([readonly]) .ui-form-control.error .ui-form-item {
  border-color: #f6374e;
}
.ui-input-container:not([readonly]) .ui-form-control.warning .ui-form-item {
  border-color: #f3a100;
}

/*
// TODOS
.label,
.char-count {
  white-space: nowrap;
}

.ui-input__info {
    cursor: pointer;
    opacity: 0;
    transform: translateY(4px);
    transition: $swift-ease-in;
    transition-duration: 300ms;
  }

&:hover,
&--helper {
  .ui-input__info {
    opacity: 1;
    transform: translateY(0);
    transition: $swift-ease-out;
    transition-duration: 300ms;
  }
}

*/
.ui-form-message {
  height: 20px;
}
.ui-form-message > * {
  line-height: 20px;
}

.ui-form-message.success {
  color: #22b867;
}
.ui-form-message.error {
  color: #f6374e;
}
.ui-form-message.warning {
  color: #f3a100;
}

.ui-control-panel {
  transition: background-color 0.15s linear;
  padding-top: 12px;
  padding-bottom: 12px;
}
.ui-control-panel:hover:not([readonly]) {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-control-panel > * {
  margin: 0;
}
.ui-control-panel svg {
  fill: currentColor;
}
.ui-control-panel .ui-loading,
.ui-control-panel .ui-loading svg {
  width: 20px;
  height: 20px;
}
.ui-control-panel[disabled] {
  background-color: rgba(143, 158, 164, 0.1);
}
.ui-control-panel[disabled][theme=dark] .ui-control__label,
.ui-control-panel[disabled] .ui-control__label {
  color: #8f9ea4;
}
.ui-control-panel[disabled] > svg,
.ui-control-panel[disabled] > .ui-popover__outer svg {
  color: #8f9ea4;
}
.ui-control-panel[theme=dark] {
  background-color: #212f42;
}
.ui-control-panel[theme=dark] .ui-control__label {
  color: #ffffff;
}

.ui-onboarding {
  z-index: 100;
  opacity: 1;
  background-color: #ffffff;
}
.ui-onboarding--finished {
  opacity: 0;
}
.ui-onboarding .actions-container .ui-button {
  margin: 0;
}
.ui-onboarding .actions-container .ui-button .ui-button--secondary {
  color: #8f9ea4;
  background-color: transparent;
}
.ui-onboarding[theme=dark] {
  background-color: #00172f;
}
.ui-onboarding[theme=dark] .header-container svg {
  fill: #ffffff;
}
.ui-onboarding[theme=dark] .title,
.ui-onboarding[theme=dark] .description {
  color: #ffffff;
}
.ui-onboarding[theme=dark] .actions-container .ui-button.ui-button--secondary {
  color: #ffffff;
  background-color: transparent;
}
.ui-onboarding[theme=blue] {
  background-color: #4d76f1;
}
.ui-onboarding[theme=blue] .header-container svg {
  fill: #ffffff;
}
.ui-onboarding[theme=blue] .title,
.ui-onboarding[theme=blue] .description {
  color: #ffffff;
}
.ui-onboarding[theme=blue] .actions-container .ui-button {
  background-color: #fff;
  color: #4d76f1;
}
.ui-onboarding[theme=blue] .actions-container .ui-button.ui-button--secondary {
  color: #fff;
  background-color: transparent;
}
@media screen and (min-width: 600px) {
  .ui-onboarding .header-container {
    padding: 72px 72px 0;
  }
  .ui-onboarding .actions-container {
    padding: 0 56px 56px;
  }
}

.floating-apps-container .floating-apps {
  max-width: 600px;
  top: 0px;
}
.floating-apps-container .title {
  padding-top: 48px;
}
@media screen and (min-width: 600px) {
  .floating-apps-container .floating-apps {
    max-width: none;
    top: 32px;
  }
}
@media screen and (min-width: 960px) {
  .floating-apps-container .floating-apps {
    top: 80px;
  }
}

.ui-fullscreen-illustration.first-step-container svg {
  margin-bottom: 48px;
  max-width: 120px;
  min-width: 120px;
  max-height: 120px;
  border-radius: 12.5%;
  /* shadow equivalent to $box-shadow-long var */
  box-shadow: 0 0 0 1px rgba(0, 23, 47, 0.05), 0 12px 24px 0 rgba(0, 23, 47, 0.2);
}

.ui-fullscreen-illustration.last-step-container {
  margin-top: 32px;
}
@media screen and (min-width: 960px) {
  .ui-fullscreen-illustration.last-step-container {
    margin-top: 0;
  }
}

.onboarding,
.onboarding-bg {
  top: 32px;
  max-width: none !important;
}

.onboarding-bg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.ui-fullscreen-illustration {
  text-align: center;
}
.ui-fullscreen-illustration h1 {
  color: #00172f;
}
.ui-fullscreen-illustration svg {
  fill: none;
  max-width: 368px;
  min-width: 300px;
}
@media screen and (min-width: 600px) {
  .ui-fullscreen-illustration .ui-fullscreen-illustration__content {
    max-width: 480px;
  }
}

.ui-toggle-group {
  display: inline-flex;
  /* somehow the default zindex gets set to -1 when inside a navbar */
  z-index: 0;
}
.ui-toggle-group__item {
  padding-left: 12px;
  padding-right: 12px;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
}
.ui-toggle-group__item:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-right-width: 1px;
}
.ui-toggle-group__item:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.ui-category-grid {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 16px;
}

.ui-metric-item[size=lg] .font-xl {
  font-size: 40px;
  line-height: 48px;
}

.ui-status-badge {
  background: rgba(143, 158, 164, 0.1);
}
.ui-status-badge.success, .ui-status-badge.partial_success {
  color: #22b867;
  background-color: rgba(34, 184, 103, 0.1);
}
.ui-status-badge.error {
  color: #f6374e;
  background-color: rgba(246, 55, 78, 0.1);
}
.ui-status-badge.warning, .ui-status-badge.partial_warning {
  color: #f3a100;
  background-color: rgba(243, 161, 0, 0.1);
}
.ui-status-badge.info {
  color: #4d76f1;
  background-color: rgba(77, 118, 241, 0.1);
}
.ui-status-badge[size=sm] {
  font-size: 14px;
  line-height: 20px;
}
.ui-status-badge[size=md] {
  padding: 8px;
  font-size: 16px;
  line-height: 22px;
}

.ui-modal-container .ui-modal.ui-faq-dialog .ui-modal__content .ui-modal__intro {
  padding-bottom: 24px;
}

.ui-collapsible-table__fixed-head-wrapper, .ui-collapsible-table__first-column__fixed {
  z-index: 1;
}
.ui-collapsible-table__head-row.cgrabbing th {
  background: rgba(143, 158, 164, 0.1);
}
.ui-collapsible-table .ui-collapsible-table__head-row__buttons {
  pointer-events: none;
}
.ui-collapsible-table .ui-collapsible-table__head-row__button {
  top: 50%;
  transform: translateY(-50%);
  padding-right: 8px;
  padding-left: 8px;
  pointer-events: all;
}
.ui-collapsible-table__first-column .triangle {
  transform: rotate(0);
}
.ui-collapsible-table__first-column--highlighted .triangle {
  transform: rotate(90deg);
}
.ui-collapsible-table__space-row td {
  height: 4px;
  font-size: 0;
  line-height: 0;
}
.ui-collapsible-table tbody tr {
  transform: scale(1);
}
.ui-collapsible-table tbody tr .ui-tooltip .table-value-content:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: rgba(143, 158, 164, 0.4);
}
.ui-collapsible-table tbody .hover {
  background-color: #f2f2f2;
}

.ui-tooltip .table-value:hover > div {
  border-color: #00172f;
}

.ui-multi-form-control--input .ui-label,
.ui-multi-form-control--input .ui-form-message:not(.error) {
  display: none;
}
.ui-multi-form-control--input .ui-input-container {
  margin: 0;
}
.ui-multi-form-control--input .ui-input-container .ui-form-item {
  border-radius: 0;
}

.ui-dom-hide--hidden {
  display: none;
}

.ui-filter-inputs__query-single select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.ui-filter-inputs__query-single svg {
  pointer-events: none;
}

.ui-filter-inputs__group-label select {
  height: 24px;
}

.ui-filter-inputs__query svg {
  width: 20px;
  height: 20px;
}

.ui-range-slider {
  min-width: 200px;
}
.ui-range-slider__bar-container {
  height: 3px;
  position: relative;
  background-color: rgba(143, 158, 164, 0.1);
  border-radius: 3px;
}
.ui-range-slider__progress-bar {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background-color: #4d76f1;
}
.ui-range-slider__range-input {
  position: relative;
}
.ui-range-slider__range-input input {
  position: absolute;
  width: 100%;
  height: 6px;
  top: -5px;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.ui-range-slider__range-input input::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border: 5px solid #4d76f1;
  background-color: #ffffff;
  pointer-events: auto;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.ui-range-slider__range-input input::-moz-range-thumb {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  border: 6px solid #4d76f1;
  background-color: #ffffff;
  pointer-events: auto;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.ui-range-slider__range-input input::-webkit-slider-thumb:hover {
  border: 3px solid #4d76f1;
  transition: 0.1s;
}
.ui-range-slider__range-input input::-moz-range-thumb:hover, .ui-range-slider__range-input input::-moz-range-thumb:active {
  height: 12px;
  width: 12px;
  border: 3px solid #4d76f1;
  transition: 0.1s;
}

.ui-content-hero {
  height: 50vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ui-content-hero .hero-gradient {
  height: 50%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0, rgba(0, 0, 0, 0.24) 22%, rgba(0, 0, 0, 0.14) 43%, rgba(0, 0, 0, 0.06) 64%, rgba(0, 0, 0, 0.02) 82%, rgba(0, 0, 0, 0) 100%);
}

.ui-content-info {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ui-content-info__content {
  max-height: 60px;
}
.ui-content-info--open .ui-content-info__content {
  max-height: initial;
}

/* layout related components */
.ui-content-views {
  /* set the max height to the viewport height */
  height: 100%;
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .ui-content-views {
    max-height: 100vh;
    height: 100%;
    overflow: hidden;
  }
}
.ui-content-views .ui-tabs-content:last-of-type {
  padding-bottom: 80px;
}
.ui-content-views .view-content__wrapper {
  transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Add spacing at bottom of each view */
}
.ui-content-views .view-content__wrapper.content-stretch {
  /* Normalize, it has scroll-issues with the min-height of '.flex-auto' class  */
  min-height: auto;
}
.ui-content-views .view-content__wrapper:last-of-type {
  padding-bottom: 80px;
}
.ui-content-views .view-content__wrapper:last-of-type .ui-tabs-content {
  padding-bottom: 0;
}
.ui-content-views .view-content__wrapper[theme=grey] {
  background-color: #f2f2f2;
}
.ui-content-views .ui-routable-tabs__header {
  padding-bottom: 32px;
}
.ui-content-views .view__center {
  max-width: 960px;
}
.ui-content-views.plain-content .view__center {
  max-width: 100%;
}
.ui-content-views .view__inner-content.horizontal-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-left: 24px;
}
.ui-content-views .view__inner-content.horizontal-scroll > * {
  flex: 0 0 auto;
}
.ui-content-views .view__inner-content.horizontal-scroll:after {
  content: "";
  min-width: 24px;
}
@media screen and (min-width: 960px) {
  .ui-content-views .view__inner-content.horizontal-scroll {
    padding-left: 16px;
  }
  .ui-content-views .view__inner-content.horizontal-scroll:after {
    min-width: 16px;
  }
}
.ui-content-views.ui-content-views--detail {
  display: none;
  min-width: 424px;
  width: 40%;
  max-width: 560px;
  /* show list-view only on medium screens */
}
@media screen and (min-width: 960px) {
  .ui-content-views.ui-content-views--detail {
    display: flex;
  }
}
.ui-content-views.ui-content-views--detail ~ .ui-content-views {
  box-shadow: -1px 0px 0px 0px rgba(143, 158, 164, 0.2);
}
.ui-content-views.ui-content-views--has-header .ui-navigation-bar:not(.ui-navigation-bar--scrolled) svg {
  fill: #ffffff;
}
.ui-content-views .liquid-container,
.ui-content-views .liquid-child {
  overflow: initial;
}

@media screen and (min-width: 1280px) {
  .ui-navigation-drawer--permanent + .ui-content-views {
    margin-left: 272px;
  }
}
.ui-form-view .navigation-bar-spacer {
  height: 80px;
  min-height: 80px;
  box-shadow: 0px -1px 0px 0px rgba(143, 158, 164, 0.2) inset;
}
.ui-form-view__content .ui-form-view__detail {
  box-shadow: -1px 0px 0px 0px rgba(143, 158, 164, 0.2);
  width: 400px;
  min-width: 400px;
}
@media (min-width: 960px) {
  .ui-form-view__content {
    max-height: calc(100vh - 80px);
  }
}
.ui-form-view .ui-content {
  max-width: 1008px;
  padding-right: 24px;
  padding-left: 24px;
}

.reports-card {
  transform: translateY(0);
  transition: box-shadow 0.15s linear, transform 0.15s ease-in-out;
}
.reports-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px 0px rgba(0, 23, 47, 0.1), 0px 0px 0px 1px rgba(143, 158, 164, 0.2);
}