:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999 px);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: 320px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  flex: 1 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: #e74c3c;
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: #e74c3c;
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor .CodeMirror-line::-moz-selection, .cm-fat-cursor .CodeMirror-line > span::-moz-selection, .cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection, 
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
.cm-fat-cursor { caret-color: transparent; }
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
  z-index: 0;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */ border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-feature-settings: "calt";
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

/*
Name:   DuoTone-Light
Author: by Bram de Haan, adapted from DuoTone themes by Simurai (http://simurai.com/projects/2016/01/01/duotone-themes)

CodeMirror template by Jan T. Sott (https://github.com/idleberg), adapted by Bram de Haan (https://github.com/atelierbram/)
*/

.cm-s-duotone-light.CodeMirror { background: #faf8f5; color: #b29762; }
.cm-s-duotone-light div.CodeMirror-selected { background: #e3dcce !important; }
.cm-s-duotone-light .CodeMirror-gutters { background: #faf8f5; border-right: 0px; }
.cm-s-duotone-light .CodeMirror-linenumber { color: #cdc4b1; }

/* begin cursor */
.cm-s-duotone-light .CodeMirror-cursor { border-left: 1px solid #93abdc; /* border-left: 1px solid #93abdc80; */ border-right: .5em solid #93abdc; /* border-right: .5em solid #93abdc80; */ opacity: .5; }
.cm-s-duotone-light .CodeMirror-activeline-background { background: #e3dcce;  /* background: #e3dcce80; */ opacity: .5; }
.cm-s-duotone-light .cm-fat-cursor .CodeMirror-cursor { background: #93abdc; /* #93abdc80; */ opacity: .5; }
/* end cursor */

.cm-s-duotone-light span.cm-atom, .cm-s-duotone-light span.cm-number, .cm-s-duotone-light span.cm-keyword, .cm-s-duotone-light span.cm-variable, .cm-s-duotone-light span.cm-attribute, .cm-s-duotone-light span.cm-quote, .cm-s-duotone-light-light span.cm-hr, .cm-s-duotone-light-light span.cm-link { color: #063289; }

.cm-s-duotone-light span.cm-property { color: #b29762; }
.cm-s-duotone-light span.cm-punctuation, .cm-s-duotone-light span.cm-unit, .cm-s-duotone-light span.cm-negative { color: #063289; }
.cm-s-duotone-light span.cm-string, .cm-s-duotone-light span.cm-operator { color: #1659df; }
.cm-s-duotone-light span.cm-positive { color: #896724; }

.cm-s-duotone-light span.cm-variable-2, .cm-s-duotone-light span.cm-variable-3, .cm-s-duotone-light span.cm-type, .cm-s-duotone-light span.cm-string-2, .cm-s-duotone-light span.cm-url { color: #896724; }
.cm-s-duotone-light span.cm-def, .cm-s-duotone-light span.cm-tag, .cm-s-duotone-light span.cm-builtin, .cm-s-duotone-light span.cm-qualifier, .cm-s-duotone-light span.cm-header, .cm-s-duotone-light span.cm-em { color: #2d2006; }
.cm-s-duotone-light span.cm-bracket, .cm-s-duotone-light span.cm-comment { color: #6f6e6a; }

/* using #f00 red for errors, don't think any of the colorscheme variables will stand out enough, ... maybe by giving it a background-color ... */
/* .cm-s-duotone-light span.cm-error { background: #896724; color: #728fcb; } */
.cm-s-duotone-light span.cm-error, .cm-s-duotone-light span.cm-invalidchar { color: #f00; }

.cm-s-duotone-light span.cm-header { font-weight: normal; }
.cm-s-duotone-light .CodeMirror-matchingbracket { text-decoration: underline; color: #faf8f5 !important; }


.CodeMirror-Tern-completion {
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.CodeMirror-Tern-completion:before {
  position: absolute;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  height: 15px;
  width: 15px;
  line-height: 16px;
  text-align: center;
  color: white;
  box-sizing: border-box;
}
.CodeMirror-Tern-completion-unknown:before {
  content: "?";
  background: #4bb;
}
.CodeMirror-Tern-completion-object:before {
  content: "O";
  background: #77c;
}
.CodeMirror-Tern-completion-fn:before {
  content: "F";
  background: #7c7;
}
.CodeMirror-Tern-completion-array:before {
  content: "A";
  background: #c66;
}
.CodeMirror-Tern-completion-number:before {
  content: "1";
  background: #999;
}
.CodeMirror-Tern-completion-string:before {
  content: "S";
  background: #999;
}
.CodeMirror-Tern-completion-bool:before {
  content: "B";
  background: #999;
}

.CodeMirror-Tern-completion-guess {
  color: #999;
}

.CodeMirror-Tern-tooltip {
  border: 1px solid silver;
  border-radius: 3px;
  color: #444;
  padding: 2px 5px;
  font-size: 90%;
  font-family: monospace;
  background-color: white;
  white-space: pre-wrap;

  max-width: 40em;
  position: absolute;
  z-index: 10;
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);

  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  -ms-transition: opacity 1s;
}

.CodeMirror-Tern-hint-doc {
  max-width: 25em;
  margin-top: -3px;
}

.CodeMirror-Tern-fname { color: black; }
.CodeMirror-Tern-farg { color: #70a; }
.CodeMirror-Tern-farg-current { text-decoration: underline; }
.CodeMirror-Tern-type { color: #07c; }
.CodeMirror-Tern-fhint-guess { opacity: .7; }

/* The lint marker gutter */
.CodeMirror-lint-markers {
  width: 16px;
}

.CodeMirror-lint-tooltip {
  background-color: #ffd;
  border: 1px solid black;
  border-radius: 4px 4px 4px 4px;
  color: black;
  font-family: monospace;
  font-size: 10pt;
  overflow: hidden;
  padding: 2px 5px;
  position: fixed;
  white-space: pre;
  white-space: pre-wrap;
  z-index: 100;
  max-width: 600px;
  opacity: 0;
  transition: opacity .4s;
  -moz-transition: opacity .4s;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  -ms-transition: opacity .4s;
}

.CodeMirror-lint-mark {
  background-position: left bottom;
  background-repeat: repeat-x;
}

.CodeMirror-lint-mark-warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=);
}

.CodeMirror-lint-mark-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==);
}

.CodeMirror-lint-marker {
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  width: 16px;
  vertical-align: middle;
  position: relative;
}

.CodeMirror-lint-message {
  padding-left: 18px;
  background-position: top left;
  background-repeat: no-repeat;
}

.CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=);
}

.CodeMirror-lint-marker-error, .CodeMirror-lint-message-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=);
}

.CodeMirror-lint-marker-multiple {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 100%; height: 100%;
}

.CodeMirror-lint-line-error {
  background-color: rgba(183, 76, 81, 0.08);
}

.CodeMirror-lint-line-warning {
  background-color: rgba(255, 211, 0, 0.1);
}

.CodeMirror-dialog {
  position: absolute;
  left: 0; right: 0;
  background: inherit;
  z-index: 15;
  padding: .1em .8em;
  overflow: hidden;
  color: inherit;
}

.CodeMirror-dialog-top {
  border-bottom: 1px solid #eee;
  top: 0;
}

.CodeMirror-dialog-bottom {
  border-top: 1px solid #eee;
  bottom: 0;
}

.CodeMirror-dialog input {
  border: none;
  outline: none;
  background: transparent;
  width: 20em;
  color: inherit;
  font-family: monospace;
}

.CodeMirror-dialog button {
  font-size: 70%;
}

.cm-s-duotone-light.cm-s-duotone-light {
  --monospace: "Roboto Mono";
  font-size: 12px;
  font-family: var(--monospace);
  letter-spacing: .3px;
  background: #fdfdfd;
  color: #181818
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-gutters {
  z-index: 3;
  border: none;
  background: #f6f9fc
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-linenumber {
  color: #8898aa;
  text-align: center;
  padding: 0;
}

.cm-s-duotone-light.cm-s-duotone-light div.CodeMirror-cursor {
  border-left: 1px solid #181818
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-activeline-background {
  background: hsla(0, 0%, 100%, .050980392156862744)
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-selected {
  background: #b7dce8
}

.cm-s-duotone-light.cm-s-duotone-light .cm-comment {
  color: #91a2b0
}

.cm-s-duotone-light.cm-s-duotone-light .cm-keyword {
  color: #5c65c1
}

.cm-s-duotone-light.cm-s-duotone-light .cm-string {
  color: #159570
}

.cm-s-duotone-light.cm-s-duotone-light .cm-variable-2 {
  color: #f92672
}

.cm-s-duotone-light.cm-s-duotone-light .cm-number,
.cm-s-duotone-light.cm-s-duotone-light .cm-operator {
  color: #fb6620
}

.cm-s-duotone-light.cm-s-duotone-light .cm-tag:not(.cm-bracket) {
  color: #da1225
}

.cm-s-duotone-light.cm-s-duotone-light .cm-attribute {
  font-style: italic;
  color: #e36209
}

.cm-side-panel {
  background-color: #fff;
  padding: 8px;
  border-radius: 4px;
  font-size: 11px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  border: 1px solid var(--washed-gray);
  max-height: 240px;
  overflow-y: auto;
  margin-left: 4px;
  width: 240px;
  z-index: 10
}

.cm-side-panel p {
  line-height: 14px
}

.cm-side-panel code {
  font-family: var(--monospace);
  color: var(--dark-gray)
}

.cm-side-panel__title {
  font-weight: 700;
  font-size: 12px;
  font-family: var(--monospace);
  color: #7265e6;
  word-break: break-all
}

.cm-side-panel__subtitle {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #7265e6
}

.cm-side-panel__detailed-docs {
  margin-bottom: 4px;
  margin-top: 4px;
  color: var(--gray)
}

.cm-side-panel__detailed-docs-container {
  line-height: 14px
}

.cm-side-panel__evaluation {
  display: inline-block;
  font-size: 11px;
  line-height: 14px;
  background: var(--near-white);
  border-radius: 4px;
  padding: 4px
}

.cm-side-panel__evaluation i {
  font-weight: 700
}

.cm-s-duotone-light.cm-s-duotone-light {
  font-size: 1em;
  font-family: var(--monospace);
  letter-spacing: .3px;
  background: #fdfdfd;
  color: #181818
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-gutters {
  z-index: 3;
  border: none;

  background: #f6f9fc;
  padding: 0 5px;

  /* >.CodeMirror-gutter {
    padding: 0 5px;
  } */
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-linenumber {
  color: #8898aa;
}


.cm-s-duotone-light.cm-s-duotone-light div.CodeMirror-cursor {
  border-left: 1px solid #181818
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-activeline-background {
  background: hsla(0, 0%, 100%, .050980392156862744)
}

.cm-s-duotone-light.cm-s-duotone-light .CodeMirror-selected {
  background: #b7dce8
}

.cm-s-duotone-light.cm-s-duotone-light .cm-comment {
  color: #91a2b0
}

.cm-s-duotone-light.cm-s-duotone-light .cm-keyword {
  color: #5c65c1
}

.cm-s-duotone-light.cm-s-duotone-light .cm-string {
  color: #159570
}

.cm-s-duotone-light.cm-s-duotone-light .cm-variable-2 {
  color: #f92672
}

.cm-s-duotone-light.cm-s-duotone-light .cm-number,
.cm-s-duotone-light.cm-s-duotone-light .cm-operator {
  color: #fb6620
}

.cm-s-duotone-light.cm-s-duotone-light .cm-tag:not(.cm-bracket) {
  color: #da1225
}

.cm-s-duotone-light.cm-s-duotone-light .cm-attribute {
  font-style: italic;
  color: #e36209
}

.codeblock__language {
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-family: var(--sans-serif);
  font-weight: 600;
  font-size: 13px;
  padding-top: 3px;
  padding-bottom: 3px
}

.docs__markdown-doc .codeblock__code {
  padding: 10px 25px;
  background: rgba(96, 105, 113, .1);
  border-radius: 10px
}

._2QAhq {
  position: relative;
  width: 100%
}

._2QAhq .focused-code-input {
  z-index: 3
}

._2QAhq ._20Fr2 {
  border: 1px solid var(--lightest-green);
  margin-top: -1px;
  position: absolute;
  width: 100%;
  border-radius: 0 0 4px 4px;
  line-height: 14px;
  font-size: var(--font-size-11);
  font-family: var(--monospace);
  word-wrap: break-word;
  box-sizing: border-box;
  z-index: 100
}

._2QAhq ._15cOg {
  border-radius: 0 0 4px 4px;
  padding: 0 4px 4px
}

._2QAhq ._32KVp {
  max-height: 150px;
  overflow: auto
}

._2QAhq ._3rhk5 {
  background-color: var(--faint-green);
  border-color: var(--lightest-green);
  color: var(--dark-green)
}

._2QAhq ._19nc2,
._2QAhq ._W9tcn {
  background-color: var(--faint-red);
  border-color: var(--washed-red);
  color: var(--dark-red)
}

._2QAhq ._2jv5g {
  padding: 4px 6px;
  border-top: 1px solid var(--lightest-green);
  font-family: var(--sans-serif);
  border-radius: 0 0 4px 4px
}

._2QAhq ._2jv5g._19nc2,
._2QAhq ._2jv5g._W9tcn {
  border-color: var(--washed-red)
}

._1b46o .CodeMirror,
._1b46o .ReactCodeMirror {
  border-radius: 4px 4px 0 0
}

.CodeMirror-foldmarker {
  color: blue;
  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
  font-family: arial;
  line-height: .3;
  cursor: pointer;
}
.CodeMirror-foldgutter {
  width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
  cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
  content: "\25BE";
}
.CodeMirror-foldgutter-folded:after {
  content: "\25B8";
}

body div#driver-popover-item{
    background: var(--primary-linear-gradient-2);
}

div#driver-popover-item .driver-close-btn{
    border-radius: 4px !important;
    background: #FFFFFF !important;
    min-width: 60px !important;
    height: 32px !important;
    color: var(--color-custome-orange-1) !important;
    font-weight: bold;
}
.nosql-editor {
  height: 100vh;
  width: 100%;
}

  .nosql-editor .react-flow__handle {
    pointer-events: none !important;
  }

.filter-content .condition >div {
      margin-right: 15px;
    }

.filter-content .filed-h {
    height: min(49vh, 570px);
    overflow: auto;
  }

.filter-content .group {
    height: min(60vh, 660px);
    overflow: scroll;
    margin-right: 5px;
  }

.filter-content .group::-webkit-scrollbar {
      width: 3px;
    }

.filter-content .config-group .item {
      display: flex;
      margin-right: 15px;
      align-items: center;
      cursor: pointer;
    }
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: HarmonyOS Sans SC, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

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

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

:root,body {
  --red: #FF4646;
  --orange: #FF5800;
  --green: #14A22F;
  --blue: #2239BC;
  --link: #FC5800;
  --brown-100: #FFC2A2;
  --brown-200: #FFA474;
  --brown: #FFDDCB;
  --cyan: #B7F2C2;
  --sky-blue: #00A7FF;
  --light-blue: #0076FF;
  --white: #ffffff;
  --warning: var(--red);
  --highlight: var(--orange);
  --good: var(--green);
  --disable: #cccccc;
  --border-color: #EEEEEE;
  --bg-primary: #F7F7F7;
  --bg-primary-btn: var(--brown);
  --light: var(--white);
  --dark: var(--black);
  --content: #999999;
  --title-primary: #333333;
  --title-sub: #666666;
  --black-300: #333;
  --black-400: #3D3D3D;
  --black: #000000;
  --yellow-300: var(--orange);
}
  img {
    max-width: none;
    max-width: initial;
  }
    a:is(a) {
      color: inherit;
    }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

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

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

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

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

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

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

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

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

img {
  border-style: none;
}

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

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

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

[hidden] {
  display: none;
}

@font-face{
  font-family:"Icons16";
  font-style:normal;
  font-weight:normal;
  src:url(/static/media/icons-16.2368f88a078780d80145.eot?#iefix) format("embedded-opentype"), url(/static/media/icons-16.1645f50fb7f7c109f64e.woff) format("woff"), url(/static/media/icons-16.13933033991f62d6bb64.ttf) format("truetype"); }

@font-face{
  font-family:"Icons20";
  font-style:normal;
  font-weight:normal;
  src:url(/static/media/icons-20.cde033c5d3f24283f757.eot?#iefix) format("embedded-opentype"), url(/static/media/icons-20.1ef633d3a28d0986f63e.woff) format("woff"), url(/static/media/icons-20.57b3e708b232fdcb64f9.ttf) format("truetype"); }
.bp4-context-menu2-virtual-target{
  position:fixed;
}
.bp4-popover2{
  box-shadow:0 0 0 1px rgba(17, 20, 24, 0.1), 0 2px 4px rgba(17, 20, 24, 0.2), 0 8px 24px rgba(17, 20, 24, 0.2);
  transform:scale(1);
  border-radius:2px;
  display:inline-block;
  z-index:20;
}
.bp4-popover2 .bp4-popover2-arrow{
  height:30px;
  position:absolute;
  width:30px;
}
.bp4-popover2 .bp4-popover2-arrow::before{
  height:20px;
  margin:5px;
  width:20px;
}
.bp4-popover2 .bp4-popover2-content{
  background:#ffffff;
}
.bp4-popover2 .bp4-popover2-content,
.bp4-popover2 .bp4-heading{
  color:inherit;
}
.bp4-popover2 .bp4-popover2-arrow::before{
  box-shadow:1px 1px 6px rgba(17, 20, 24, 0.2);
}
.bp4-popover2 .bp4-popover2-arrow-border{
  fill:#111418;
  fill-opacity:0.1;
}
.bp4-popover2 .bp4-popover2-arrow-fill{
  fill:#ffffff;
}
@media (forced-colors: active) and (prefers-color-scheme: dark){
  .bp4-popover2 .bp4-popover2-arrow-fill{
    fill:buttonborder;
  }
  .bp4-popover2{
    border:1px solid buttonborder;
  }
}
.bp4-popover2-enter > .bp4-popover2, .bp4-popover2-appear > .bp4-popover2{
  transform:scale(0.3);
}
.bp4-popover2-enter-active > .bp4-popover2, .bp4-popover2-appear-active > .bp4-popover2{
  transform:scale(1);
  transition-delay:0;
  transition-duration:300ms;
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp4-popover2-exit > .bp4-popover2{
  transform:scale(1);
}
.bp4-popover2-exit-active > .bp4-popover2{
  transform:scale(0.3);
  transition-delay:0;
  transition-duration:300ms;
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp4-popover2 .bp4-popover2-content{
  border-radius:2px;
  position:relative;
}
.bp4-popover2.bp4-popover2-content-sizing .bp4-popover2-content{
  max-width:350px;
  padding:20px;
}
.bp4-popover2-target + .bp4-overlay .bp4-popover2.bp4-popover2-content-sizing{
  width:350px;
}
.bp4-popover2.bp4-minimal{
  margin:0 !important;
}
.bp4-popover2.bp4-minimal .bp4-popover2-arrow{
  display:none;
}
.bp4-popover2.bp4-minimal.bp4-popover2{
  transform:scale(1);
}
.bp4-popover2-enter > .bp4-popover2.bp4-minimal.bp4-popover2, .bp4-popover2-appear > .bp4-popover2.bp4-minimal.bp4-popover2{
  transform:scale(1);
}
.bp4-popover2-enter-active > .bp4-popover2.bp4-minimal.bp4-popover2, .bp4-popover2-appear-active > .bp4-popover2.bp4-minimal.bp4-popover2{
  transform:scale(1);
  transition-delay:0;
  transition-duration:100ms;
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp4-popover2-exit > .bp4-popover2.bp4-minimal.bp4-popover2{
  transform:scale(1);
}
.bp4-popover2-exit-active > .bp4-popover2.bp4-minimal.bp4-popover2{
  transform:scale(1);
  transition-delay:0;
  transition-duration:100ms;
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp4-popover2.bp4-popover2-match-target-width{
  width:100%;
}
.bp4-popover2.bp4-dark, .bp4-dark .bp4-popover2{
  box-shadow:0 0 0 1px hsl(215, 3%, 38%), inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 2px 4px rgba(17, 20, 24, 0.4), 0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp4-popover2.bp4-dark .bp4-popover2-content, .bp4-dark .bp4-popover2 .bp4-popover2-content{
  background:#2f343c;
}
.bp4-popover2.bp4-dark .bp4-popover2-content,
.bp4-popover2.bp4-dark .bp4-heading, .bp4-dark .bp4-popover2 .bp4-popover2-content,
.bp4-dark .bp4-popover2 .bp4-heading{
  color:inherit;
}
.bp4-popover2.bp4-dark .bp4-popover2-arrow::before, .bp4-dark .bp4-popover2 .bp4-popover2-arrow::before{
  box-shadow:0 0 0 1px #777a7e, 1px 1px 6px rgba(17, 20, 24, 0.4);
}
.bp4-popover2.bp4-dark .bp4-popover2-arrow-border, .bp4-dark .bp4-popover2 .bp4-popover2-arrow-border{
  fill:#111418;
  fill-opacity:0.2;
}
.bp4-popover2.bp4-dark .bp4-popover2-arrow-fill, .bp4-dark .bp4-popover2 .bp4-popover2-arrow-fill{
  fill:#2f343c;
}
@media (forced-colors: active) and (prefers-color-scheme: dark){
  .bp4-popover2.bp4-dark .bp4-popover2-arrow-fill, .bp4-dark .bp4-popover2 .bp4-popover2-arrow-fill{
    fill:buttonborder;
  }
  .bp4-popover2.bp4-dark, .bp4-dark .bp4-popover2{
    border:1px solid buttonborder;
  }
}

.bp4-popover2-arrow::before{
  border-radius:1px;
  content:"";
  display:block;
  position:absolute;
  transform:rotate(45deg);
}

.bp4-overlay-backdrop.bp4-popover2-backdrop{
  background:rgba(255, 255, 255, 0);
}

.bp4-popover2-transition-container{
  opacity:1;
  display:flex;
  z-index:20;
}
.bp4-popover2-transition-container.bp4-popover2-enter, .bp4-popover2-transition-container.bp4-popover2-appear{
  opacity:0;
}
.bp4-popover2-transition-container.bp4-popover2-enter-active, .bp4-popover2-transition-container.bp4-popover2-appear-active{
  opacity:1;
  transition-delay:0;
  transition-duration:100ms;
  transition-property:opacity;
  transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp4-popover2-transition-container.bp4-popover2-exit{
  opacity:1;
}
.bp4-popover2-transition-container.bp4-popover2-exit-active{
  opacity:0;
  transition-delay:0;
  transition-duration:100ms;
  transition-property:opacity;
  transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp4-popover2-transition-container:focus{
  outline:none;
}
.bp4-popover2-transition-container.bp4-popover2-leave .bp4-popover2-content{
  pointer-events:none;
}

span.bp4-popover2-target{
  display:inline-block;
}

.bp4-popover2-target.bp4-fill{
  width:100%;
}
.bp4-button-group:not(.bp4-minimal) > .bp4-popover2-target:not(:first-child) .bp4-button{
  border-bottom-left-radius:0;
  border-top-left-radius:0;
}
.bp4-button-group:not(.bp4-minimal) > .bp4-popover2-target:not(:last-child) .bp4-button{
  border-bottom-right-radius:0;
  border-top-right-radius:0;
  margin-right:-1px;
}
.bp4-button-group .bp4-popover2-target{
  display:flex;
  flex:1 1 auto;
}
.bp4-button-group.bp4-vertical:not(.bp4-minimal) > .bp4-popover2-target:first-child .bp4-button{
  border-radius:2px 2px 0 0;
}
.bp4-button-group.bp4-vertical:not(.bp4-minimal) > .bp4-popover2-target:last-child .bp4-button{
  border-radius:0 0 2px 2px;
}
.bp4-button-group.bp4-vertical:not(.bp4-minimal) > .bp4-popover2-target:not(:last-child) .bp4-button{
  margin-bottom:-1px;
}
.bp4-control-group .bp4-popover2-target{
  border-radius:inherit;
}
label.bp4-label .bp4-popover2-target{
  display:block;
  margin-top:5px;
  text-transform:none;
}
.bp4-submenu .bp4-popover2-target{
  display:block;
}
.bp4-submenu.bp4-popover2{
  box-shadow:none;
  padding:0 5px;
}
.bp4-submenu.bp4-popover2 > .bp4-popover2-content{
  box-shadow:0 0 0 1px rgba(17, 20, 24, 0.1), 0 2px 4px rgba(17, 20, 24, 0.2), 0 8px 24px rgba(17, 20, 24, 0.2);
}
.bp4-dark .bp4-submenu.bp4-popover2, .bp4-submenu.bp4-popover2.bp4-dark{
  box-shadow:none;
}
.bp4-dark .bp4-submenu.bp4-popover2 > .bp4-popover2-content, .bp4-submenu.bp4-popover2.bp4-dark > .bp4-popover2-content{
  box-shadow:0 0 0 1px hsl(215, 3%, 38%), inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 2px 4px rgba(17, 20, 24, 0.4), 0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp4-tree-node-secondary-label .bp4-popover2-target{
  align-items:center;
  display:flex;
}
.bp4-tooltip2{
  box-shadow:0 0 0 1px rgba(17, 20, 24, 0.1), 0 2px 4px rgba(17, 20, 24, 0.2), 0 8px 24px rgba(17, 20, 24, 0.2);
  transform:scale(1);
  color:#f6f7f9;
}
.bp4-tooltip2 .bp4-popover2-arrow{
  height:22px;
  position:absolute;
  width:22px;
}
.bp4-tooltip2 .bp4-popover2-arrow::before{
  height:14px;
  margin:4px;
  width:14px;
}
.bp4-tooltip2 .bp4-popover2-content{
  background:#404854;
}
.bp4-tooltip2 .bp4-popover2-content,
.bp4-tooltip2 .bp4-heading{
  color:#f6f7f9;
}
.bp4-tooltip2 .bp4-popover2-arrow::before{
  box-shadow:1px 1px 6px rgba(17, 20, 24, 0.2);
}
.bp4-tooltip2 .bp4-popover2-arrow-border{
  fill:#111418;
  fill-opacity:0.1;
}
.bp4-tooltip2 .bp4-popover2-arrow-fill{
  fill:#404854;
}
@media (forced-colors: active) and (prefers-color-scheme: dark){
  .bp4-tooltip2 .bp4-popover2-arrow-fill{
    fill:buttonborder;
  }
  .bp4-tooltip2{
    border:1px solid buttonborder;
  }
}
.bp4-popover2-enter > .bp4-tooltip2, .bp4-popover2-appear > .bp4-tooltip2{
  transform:scale(0.8);
}
.bp4-popover2-enter-active > .bp4-tooltip2, .bp4-popover2-appear-active > .bp4-tooltip2{
  transform:scale(1);
  transition-delay:0;
  transition-duration:100ms;
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp4-popover2-exit > .bp4-tooltip2{
  transform:scale(1);
}
.bp4-popover2-exit-active > .bp4-tooltip2{
  transform:scale(0.8);
  transition-delay:0;
  transition-duration:100ms;
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp4-tooltip2 .bp4-text-muted{
  color:#abb3bf;
}
.bp4-tooltip2 .bp4-text-disabled{
  color:rgba(171, 179, 191, 0.6);
}
.bp4-tooltip2 .bp4-running-text hr{
  border-color:rgba(255, 255, 255, 0.2);
}
.bp4-tooltip2 a{
  color:#8abbff;
}
.bp4-tooltip2 a:hover{
  color:#8abbff;
}
.bp4-tooltip2 a .bp4-icon, .bp4-tooltip2 a .bp4-icon-standard, .bp4-tooltip2 a .bp4-icon-large{
  color:inherit;
}
.bp4-tooltip2 a code{
  color:inherit;
}
.bp4-tooltip2 .bp4-code,
.bp4-tooltip2 .bp4-running-text code{
  background:rgba(17, 20, 24, 0.3);
  box-shadow:inset 0 0 0 1px rgba(17, 20, 24, 0.4);
  color:#abb3bf;
}
a > .bp4-tooltip2 .bp4-code,
a > .bp4-tooltip2 .bp4-running-text code{
  color:inherit;
}
.bp4-tooltip2 .bp4-code-block,
.bp4-tooltip2 .bp4-running-text pre{
  background:rgba(17, 20, 24, 0.3);
  box-shadow:inset 0 0 0 1px rgba(17, 20, 24, 0.4);
  color:#f6f7f9;
}
.bp4-tooltip2 .bp4-code-block > code,
.bp4-tooltip2 .bp4-running-text pre > code{
  background:none;
  box-shadow:none;
  color:inherit;
}
.bp4-tooltip2 .bp4-key,
.bp4-tooltip2 .bp4-running-text kbd{
  background:#383e47;
  box-shadow:inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
  color:#abb3bf;
}
.bp4-tooltip2 .bp4-icon.bp4-intent-primary, .bp4-tooltip2 .bp4-icon-standard.bp4-intent-primary, .bp4-tooltip2 .bp4-icon-large.bp4-intent-primary{
  color:#8abbff;
}
.bp4-tooltip2 .bp4-icon.bp4-intent-success, .bp4-tooltip2 .bp4-icon-standard.bp4-intent-success, .bp4-tooltip2 .bp4-icon-large.bp4-intent-success{
  color:#72ca9b;
}
.bp4-tooltip2 .bp4-icon.bp4-intent-warning, .bp4-tooltip2 .bp4-icon-standard.bp4-intent-warning, .bp4-tooltip2 .bp4-icon-large.bp4-intent-warning{
  color:#fbb360;
}
.bp4-tooltip2 .bp4-icon.bp4-intent-danger, .bp4-tooltip2 .bp4-icon-standard.bp4-intent-danger, .bp4-tooltip2 .bp4-icon-large.bp4-intent-danger{
  color:#fa999c;
}
.bp4-tooltip2 .bp4-popover2-content{
  padding:10px 12px;
}
.bp4-tooltip2.bp4-compact .bp4-popover2-content{
  line-height:1rem;
  padding:5px 7px;
}
.bp4-tooltip2.bp4-compact .bp4-code{
  vertical-align:text-bottom;
}
.bp4-tooltip2.bp4-popover2-placement-top .bp4-popover2-arrow{
  transform:translateY(-3px);
}
.bp4-tooltip2.bp4-popover2-placement-left .bp4-popover2-arrow{
  transform:translateX(-3px);
}
.bp4-tooltip2.bp4-popover2-placement-bottom .bp4-popover2-arrow{
  transform:translateY(3px);
}
.bp4-tooltip2.bp4-popover2-placement-right .bp4-popover2-arrow{
  transform:translateX(3px);
}
.bp4-tooltip2.bp4-dark, .bp4-dark .bp4-tooltip2{
  box-shadow:0 2px 4px rgba(17, 20, 24, 0.4), 0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp4-tooltip2.bp4-dark .bp4-popover2-content, .bp4-dark .bp4-tooltip2 .bp4-popover2-content{
  background:#e5e8eb;
}
.bp4-tooltip2.bp4-dark .bp4-popover2-content,
.bp4-tooltip2.bp4-dark .bp4-heading, .bp4-dark .bp4-tooltip2 .bp4-popover2-content,
.bp4-dark .bp4-tooltip2 .bp4-heading{
  color:#404854;
}
.bp4-tooltip2.bp4-dark .bp4-popover2-arrow::before, .bp4-dark .bp4-tooltip2 .bp4-popover2-arrow::before{
  box-shadow:1px 1px 6px rgba(17, 20, 24, 0.4);
}
.bp4-tooltip2.bp4-dark .bp4-popover2-arrow-border, .bp4-dark .bp4-tooltip2 .bp4-popover2-arrow-border{
  fill:#111418;
  fill-opacity:0.2;
}
.bp4-tooltip2.bp4-dark .bp4-popover2-arrow-fill, .bp4-dark .bp4-tooltip2 .bp4-popover2-arrow-fill{
  fill:#e5e8eb;
}
@media (forced-colors: active) and (prefers-color-scheme: dark){
  .bp4-tooltip2.bp4-dark .bp4-popover2-arrow-fill, .bp4-dark .bp4-tooltip2 .bp4-popover2-arrow-fill{
    fill:buttonborder;
  }
  .bp4-tooltip2.bp4-dark, .bp4-dark .bp4-tooltip2{
    border:1px solid buttonborder;
  }
}
.bp4-tooltip2.bp4-dark .bp4-text-muted, .bp4-dark .bp4-tooltip2 .bp4-text-muted{
  color:#5f6b7c;
}
.bp4-tooltip2.bp4-dark .bp4-text-disabled, .bp4-dark .bp4-tooltip2 .bp4-text-disabled{
  color:rgba(95, 107, 124, 0.6);
}
.bp4-tooltip2.bp4-dark .bp4-running-text hr, .bp4-dark .bp4-tooltip2 .bp4-running-text hr{
  border-color:rgba(17, 20, 24, 0.15);
}
.bp4-tooltip2.bp4-dark a, .bp4-dark .bp4-tooltip2 a{
  color:#215db0;
}
.bp4-tooltip2.bp4-dark a:hover, .bp4-dark .bp4-tooltip2 a:hover{
  color:#215db0;
}
.bp4-tooltip2.bp4-dark a .bp4-icon, .bp4-tooltip2.bp4-dark a .bp4-icon-standard, .bp4-tooltip2.bp4-dark a .bp4-icon-large, .bp4-dark .bp4-tooltip2 a .bp4-icon, .bp4-dark .bp4-tooltip2 a .bp4-icon-standard, .bp4-dark .bp4-tooltip2 a .bp4-icon-large{
  color:inherit;
}
.bp4-tooltip2.bp4-dark a code, .bp4-dark .bp4-tooltip2 a code{
  color:inherit;
}
.bp4-tooltip2.bp4-dark .bp4-code,
.bp4-tooltip2.bp4-dark .bp4-running-text code, .bp4-dark .bp4-tooltip2 .bp4-code,
.bp4-dark .bp4-tooltip2 .bp4-running-text code{
  background:rgba(255, 255, 255, 0.7);
  box-shadow:inset 0 0 0 1px rgba(17, 20, 24, 0.2);
  color:#5f6b7c;
}
a > .bp4-tooltip2.bp4-dark .bp4-code,
a > .bp4-tooltip2.bp4-dark .bp4-running-text code, a > .bp4-dark .bp4-tooltip2 .bp4-code,
a > .bp4-dark .bp4-tooltip2 .bp4-running-text code{
  color:#2d72d2;
}
.bp4-tooltip2.bp4-dark .bp4-code-block,
.bp4-tooltip2.bp4-dark .bp4-running-text pre, .bp4-dark .bp4-tooltip2 .bp4-code-block,
.bp4-dark .bp4-tooltip2 .bp4-running-text pre{
  background:rgba(255, 255, 255, 0.7);
  box-shadow:inset 0 0 0 1px rgba(17, 20, 24, 0.15);
  color:#1c2127;
}
.bp4-tooltip2.bp4-dark .bp4-code-block > code,
.bp4-tooltip2.bp4-dark .bp4-running-text pre > code, .bp4-dark .bp4-tooltip2 .bp4-code-block > code,
.bp4-dark .bp4-tooltip2 .bp4-running-text pre > code{
  background:none;
  box-shadow:none;
  color:inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark){
  .bp4-tooltip2.bp4-dark .bp4-code-block,
  .bp4-tooltip2.bp4-dark .bp4-running-text pre, .bp4-dark .bp4-tooltip2 .bp4-code-block,
  .bp4-dark .bp4-tooltip2 .bp4-running-text pre{
    border:1px solid buttonborder;
    box-shadow:none;
  }
}
.bp4-tooltip2.bp4-dark .bp4-key,
.bp4-tooltip2.bp4-dark .bp4-running-text kbd, .bp4-dark .bp4-tooltip2 .bp4-key,
.bp4-dark .bp4-tooltip2 .bp4-running-text kbd{
  background:#ffffff;
  box-shadow:0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 1px rgba(17, 20, 24, 0.2);
  color:#5f6b7c;
}
.bp4-tooltip2.bp4-dark .bp4-icon.bp4-intent-primary, .bp4-tooltip2.bp4-dark .bp4-icon-standard.bp4-intent-primary, .bp4-tooltip2.bp4-dark .bp4-icon-large.bp4-intent-primary, .bp4-dark .bp4-tooltip2 .bp4-icon.bp4-intent-primary, .bp4-dark .bp4-tooltip2 .bp4-icon-standard.bp4-intent-primary, .bp4-dark .bp4-tooltip2 .bp4-icon-large.bp4-intent-primary{
  color:#215db0;
}
.bp4-tooltip2.bp4-dark .bp4-icon.bp4-intent-success, .bp4-tooltip2.bp4-dark .bp4-icon-standard.bp4-intent-success, .bp4-tooltip2.bp4-dark .bp4-icon-large.bp4-intent-success, .bp4-dark .bp4-tooltip2 .bp4-icon.bp4-intent-success, .bp4-dark .bp4-tooltip2 .bp4-icon-standard.bp4-intent-success, .bp4-dark .bp4-tooltip2 .bp4-icon-large.bp4-intent-success{
  color:#1c6e42;
}
.bp4-tooltip2.bp4-dark .bp4-icon.bp4-intent-warning, .bp4-tooltip2.bp4-dark .bp4-icon-standard.bp4-intent-warning, .bp4-tooltip2.bp4-dark .bp4-icon-large.bp4-intent-warning, .bp4-dark .bp4-tooltip2 .bp4-icon.bp4-intent-warning, .bp4-dark .bp4-tooltip2 .bp4-icon-standard.bp4-intent-warning, .bp4-dark .bp4-tooltip2 .bp4-icon-large.bp4-intent-warning{
  color:#935610;
}
.bp4-tooltip2.bp4-dark .bp4-icon.bp4-intent-danger, .bp4-tooltip2.bp4-dark .bp4-icon-standard.bp4-intent-danger, .bp4-tooltip2.bp4-dark .bp4-icon-large.bp4-intent-danger, .bp4-dark .bp4-tooltip2 .bp4-icon.bp4-intent-danger, .bp4-dark .bp4-tooltip2 .bp4-icon-standard.bp4-intent-danger, .bp4-dark .bp4-tooltip2 .bp4-icon-large.bp4-intent-danger{
  color:#ac2f33;
}
.bp4-tooltip2.bp4-intent-primary .bp4-popover2-content{
  background:#2d72d2;
  color:#ffffff;
}
.bp4-tooltip2.bp4-intent-primary .bp4-popover2-arrow-fill{
  fill:#2d72d2;
}
.bp4-tooltip2.bp4-intent-success .bp4-popover2-content{
  background:#238551;
  color:#ffffff;
}
.bp4-tooltip2.bp4-intent-success .bp4-popover2-arrow-fill{
  fill:#238551;
}
.bp4-tooltip2.bp4-intent-warning .bp4-popover2-content{
  background:#c87619;
  color:#ffffff;
}
.bp4-tooltip2.bp4-intent-warning .bp4-popover2-arrow-fill{
  fill:#c87619;
}
.bp4-tooltip2.bp4-intent-danger .bp4-popover2-content{
  background:#cd4246;
  color:#ffffff;
}
.bp4-tooltip2.bp4-intent-danger .bp4-popover2-arrow-fill{
  fill:#cd4246;
}

.bp4-tooltip2-indicator{
  border-bottom:dotted 1px;
  cursor:help;
}
:root,
body {
  /* orange */
  --ft-color-orange-900: #B7491A;
  --ft-color-orange-800: #D15420;
  --ft-color-orange-700: #DF5B23;
  --ft-color-orange-600: #ED6227;
  --ft-color-orange-500: #F86A2B;

  /* Primary */
  --ft-color-orange-400: #F97D4A;
  --ft-color-orange-300: #F9936B;
  --ft-color-orange-200: #FBB195;
  --ft-color-orange-100: #FCCFBF;
  --ft-color-orange-50: #FAEAE8;

  /* black */
  --ft-color-black-900: #F86A2B;
  /* #191919; */
  --ft-color-black-800: #393939;
  --ft-color-black-700: #575757;
  --ft-color-black-600: #6B6B6B;
  --ft-color-black-500: #939393;
  --ft-color-black-400: #B3B3B3;
  --ft-color-black-300: #D7D7D7;
  --ft-color-black-250: #E0DEDE;
  --ft-color-black-200: #E7E7E7;
  --ft-color-black-100: #F1F1F1;
  --ft-color-black-50: #F8F8F8;
  --ft-color-black-0: #FFFFFF;

  /* green */
  --ft-color-green-500: #03B364;
  --ft-color-green-50: #E5F6EC;

  /* yellow */
  --ft-color-yellow-500: #FEC518;
  --ft-color-yellow-50: #FFF8E2;

  /* red */
  --ft-color-red-500: #F13125;
  --ft-color-red-50: #FFEAEC;

  --primary-linear-gradient: linear-gradient(134deg, #ff71ad 0%, #ffa852 100%);
  --primary-linear-gradient-2: linear-gradient(134deg, #ff71ad 0%, #ffa852 100%);
  --primary-gradient-hover: linear-gradient(134deg, #f2719c 0%, #f29b54 100%);
  --primary-gradient-active: linear-gradient(134deg, #e56a95 0%, #e6944e 100%);
  --primary-linear-gradient2: linear-gradient(103deg, #FF71AD 9%, #FF71AD 9%, #FFA852 95%, #FFA852 95%);
  --primary-linear-gradient3: linear-gradient(164deg, #FF71AD 48%, #FF71AD 48%, #FFA852 90%, #FFA852 90%);
  --primary-linear-gradient4: linear-gradient(116deg, #FF71AD 20%, #FF71AD 20%, #FFA852 94%, #FFA852 94%);

  --color-primary-light-1: #FCCFBF;
  --color-custome-orange-1: #FF5800;

  --primary-6: 255, 88, 00;
  --primary-5: 251, 177, 149;
  --primary-7: 249, 125, 74;
  --primary-4: 252, 207, 191;
  --primary-3: 250, 234, 232;
  --primary-2: 250, 234, 232;
  --border-radius-small: 4px;

  --border-color1: #FF5800;

  /* icon */
  --icon-primary-color: #FF71AD;
  --icon-secondary-color: #FFA852;

  /* canvas */
  --canvas-bg-color: rgb(237, 237, 237);

  /* menu */
  --menu-bg-selected: rgba(252, 88, 0, 0.04);
}

.ft-light-theme {
  /* Syntax of style naming */
  /* --ft-<entity name>-<style-name> */
  /* --------------------- */

  /* input */
  --ft-input-focus-border-color: var(--ft-color-black-900);

  /* search input */
  --ft-search-input-focus-mobile-border-color: var(--ft-color-black-900);
  --ft-search-input-mobile-border-color: var(--ft-color-black-400);

}



div#driver-popover-item {
  display      : none;
  position     : absolute;
  background   : #fff;
  color        : #2d2d2d;
  margin       : 0;
  padding      : 15px;
  border-radius: 5px;
  min-width    : 250px;
  max-width    : 300px;
  box-shadow   : 0 1px 10px rgba(0, 0, 0, .4);
  z-index      : 1000000000
}

div#driver-popover-item .driver-popover-tip {
  border  : 5px solid #fff;
  content : "";
  position: absolute
}

div#driver-popover-item .driver-popover-tip.bottom {
  bottom      : -10px;
  border-color: #fff transparent transparent
}

div#driver-popover-item .driver-popover-tip.bottom.position-center {
  left: 49%
}

div#driver-popover-item .driver-popover-tip.bottom.position-right {
  right: 20px
}

div#driver-popover-item .driver-popover-tip.left {
  left        : -10px;
  top         : 10px;
  border-color: transparent #fff transparent transparent
}

div#driver-popover-item .driver-popover-tip.left.position-center {
  top: 46%
}

div#driver-popover-item .driver-popover-tip.left.position-bottom {
  top   : auto;
  bottom: 20px
}

div#driver-popover-item .driver-popover-tip.right {
  right       : -10px;
  top         : 10px;
  border-color: transparent transparent transparent #fff
}

div#driver-popover-item .driver-popover-tip.right.position-center {
  top: 46%
}

div#driver-popover-item .driver-popover-tip.right.position-bottom {
  top   : auto;
  bottom: 20px
}

div#driver-popover-item .driver-popover-tip.top {
  top         : -10px;
  border-color: transparent transparent #fff
}

div#driver-popover-item .driver-popover-tip.top.position-center {
  left: 49%
}

div#driver-popover-item .driver-popover-tip.top.position-right {
  right: 20px
}

div#driver-popover-item .driver-popover-tip.mid-center {
  display: none
}

div#driver-popover-item .driver-popover-footer {
  display   : block;
  margin-top: 10px
}

div#driver-popover-item .driver-popover-footer button {
  display         : inline-block;
  padding         : 3px 10px;
  border          : 1px solid #d4d4d4;
  text-decoration : none;
  text-shadow     : 1px 1px 0 #fff;
  color           : #2d2d2d;
  font            : 11px/normal sans-serif;
  cursor          : pointer;
  outline         : 0;
  background-color: #f1f1f1;
  border-radius   : 2px;
  zoom            : 1;
  line-height     : 1.3
}

div#driver-popover-item .driver-popover-footer button.driver-disabled {
  color         : grey;
  cursor        : default;
  pointer-events: none
}

div#driver-popover-item .driver-popover-footer .driver-close-btn {
  float: left
}

div#driver-popover-item .driver-popover-footer .driver-btn-group,
div#driver-popover-item .driver-popover-footer .driver-close-only-btn {
  float: right
}

div#driver-popover-item .driver-popover-title {
  font       : 19px/normal sans-serif;
  margin     : 0 0 5px;
  font-weight: 700;
  display    : block;
  position   : relative;
  line-height: 1.5;
  zoom       : 1
}

div#driver-popover-item .driver-popover-description {
  margin-bottom: 0;
  font         : 14px/normal sans-serif;
  line-height  : 1.5;
  color        : #2d2d2d;
  font-weight  : 400;
  zoom         : 1
}

.driver-clearfix:after,
.driver-clearfix:before {
  content: "";
  display: table
}

.driver-clearfix:after {
  clear: both
}

.driver-stage-no-animation {
  transition        : none !important;
  background        : transparent !important;
  outline           : 5000px solid rgba(0, 0, 0, .75)
}

div#driver-page-overlay {
  background: #000;
  position  : fixed;
  bottom    : 0;
  right     : 0;
  display   : block;
  width     : 100%;
  height    : 100%;
  zoom      : 1;
  filter    : alpha(opacity=75);
  opacity   : .75;
  z-index   : 100002 !important
}

div#driver-highlighted-element-stage,
div#driver-page-overlay {
  top               : 0;
  left              : 0;
  transition        : all .3s
}

div#driver-highlighted-element-stage {
  position     : absolute;
  height       : 50px;
  width        : 300px;
  background   : #fff;
  z-index      : 100003 !important;
  display      : none;
  border-radius: 2px
}

.driver-highlighted-element {
  z-index: 100004 !important
}

.driver-position-relative {
  position: relative !important
}

.driver-fix-stacking {
  z-index                : auto !important;
  opacity                : 1 !important;
  transform              : none !important;
  -moz-filter            : none !important;
  -ms-filter             : none !important;
  -o-filter              : none !important;
  filter                 : none !important;
  -ms-perspective        : none !important;
  -o-perspective         : none !important;
  perspective            : none !important;
  transform-style        : flat !important;
  -webkit-transform-box  : border-box !important;
  -moz-transform-box     : border-box !important;
  -ms-transform-box      : border-box !important;
  -o-transform-box       : border-box !important;
  transform-box          : border-box !important;
  will-change            : initial !important
}
/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.3.2
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Hover.css Copyright Ian Lunn 2017. Generated with Sass.
 */
/* 2D TRANSITIONS */
/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  transform: scale(0.9);
}

/* Pulse */
@keyframes hvr-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  animation-name: hvr-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Pulse Grow */
@keyframes hvr-pulse-grow {
  to {
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  animation-name: hvr-pulse-grow;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* Pulse Shrink */
@keyframes hvr-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  animation-name: hvr-pulse-shrink;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* Push */
@keyframes hvr-push {
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  animation-name: hvr-push;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Pop */
@keyframes hvr-pop {
  50% {
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  animation-name: hvr-pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  transform: scale(0.8);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  transform: rotate(4deg);
}

/* Grow Rotate */
.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
  transform: scale(1.1) rotate(4deg);
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  transform: translateY(-8px);
}

/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  transform: translateY(8px);
}

/* Bob */
@keyframes hvr-bob {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  animation-name: hvr-bob-float, hvr-bob;
  animation-duration: .3s, 1.5s;
  animation-delay: 0s, .3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

/* Hang */
@keyframes hvr-hang {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    transform: translateY(8px);
  }
}
.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  animation-name: hvr-hang-sink, hvr-hang;
  animation-duration: .3s, 1.5s;
  animation-delay: 0s, .3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  transform: skew(-10deg);
}

/* Skew Forward */
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  transform: skew(-10deg);
}

/* Skew Backward */
.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
  transform: skew(10deg);
}

/* Wobble Vertical */
@keyframes hvr-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  animation-name: hvr-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */
@keyframes hvr-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
  animation-name: hvr-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }
  33.3% {
    transform: translate(-6px, -6px);
  }
  49.95% {
    transform: translate(4px, 4px);
  }
  66.6% {
    transform: translate(-2px, -2px);
  }
  83.25% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
  animation-name: hvr-wobble-to-bottom-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */
@keyframes hvr-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px);
  }
  33.3% {
    transform: translate(-6px, 6px);
  }
  49.95% {
    transform: translate(4px, -4px);
  }
  66.6% {
    transform: translate(-2px, 2px);
  }
  83.25% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
  animation-name: hvr-wobble-to-top-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Wobble Top */
@keyframes hvr-wobble-top {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
  animation-name: hvr-wobble-top;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Wobble Bottom */
@keyframes hvr-wobble-bottom {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transform-origin: 100% 0;
}
.hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
  animation-name: hvr-wobble-bottom;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Wobble Skew */
@keyframes hvr-wobble-skew {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
  animation-name: hvr-wobble-skew;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Buzz */
@keyframes hvr-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  animation-name: hvr-buzz;
  animation-duration: 0.15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@keyframes hvr-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  animation-name: hvr-buzz-out;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Forward */
.hvr-forward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
  transform: translateX(8px);
}

/* Backward */
.hvr-backward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-backward:hover, .hvr-backward:focus, .hvr-backward:active {
  transform: translateX(-8px);
}

/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  transition-duration: 0.3s;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  background-color: #2098D1;
  color: white;
}

/* Back Pulse */
@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  transition-duration: 0.5s;
  transition-property: color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
  animation-name: hvr-back-pulse;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  background-color: #2098D1;
  background-color: #2098d1;
  color: white;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  transform: scaleX(1);
}

/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
  color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
  transform: scaleX(1);
}

/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: white;
}
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  transform: scaleY(1);
}

/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  transform: scaleY(1);
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  color: white;
}
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  border-radius: 100%;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  transform: scale(2);
}

/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  transform: scale(2);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  transform: scale(0);
}

/* Rectangle In */
.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  color: white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  transform: scale(0);
}

/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  transform: scale(1);
}

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  transform: scaleX(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  color: white;
}
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
  transform: scaleX(0);
}

/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  color: white;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
  transform: scaleX(1);
}

/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  transform: scaleY(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
  color: white;
}
.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
  transform: scaleY(0);
}

/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  color: white;
}
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  transform: scaleY(1);
}

/* BORDER TRANSITIONS */
/* Border Fade */
.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098D1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
  background: none;
}

/* Trim */
.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-trim:before {
  content: '';
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
  opacity: 1;
}

/* Ripple Out */
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation-duration: 1s;
}
.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  animation-name: hvr-ripple-out;
}

/* Ripple In */
@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-ripple-in:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  animation-duration: 1s;
}
.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  animation-name: hvr-ripple-in;
}

/* Outline Out */
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-outline-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.3s;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-outline-in:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: top, right, bottom, left;
}
.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

/* Round Corners */
.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: border-radius;
}
.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
  border-radius: 1em;
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  left: 0;
}

/* Overline From Left */
.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098D1;
  height: 4px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
  right: 0;
}

/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  top: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  left: 0;
}

/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2098D1;
  border-style: solid;
  border-width: 0;
  transition-property: border-width;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
  transform: translateY(0);
  border-width: 4px;
}

/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transform: translateY(4px);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  transform: translateY(0);
}

/* Overline Reveal */
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098D1;
  height: 4px;
  transform: translateY(-4px);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
}
.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

/* Box Shadow Outset */
.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-shadow-radial:before, .hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:after {
  top: 100%;
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
  opacity: 1;
}

/* SPEECH BUBBLES */
/* Bubble Top */
.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 10px);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}
.hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
  transform: translateY(-10px);
}

/* Bubble Right */
.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  top: calc(50% - 10px);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}
.hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
  transform: translateX(10px);
}

/* Bubble Bottom */
.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
  transform: translateY(10px);
}

/* Bubble Left */
.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  top: calc(50% - 10px);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}
.hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
  transform: translateX(-10px);
}

/* Bubble Float Top */
.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-top:hover, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:active {
  transform: translateY(10px);
}
.hvr-bubble-float-top:hover:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:active:before {
  transform: translateY(-10px);
}

/* Bubble Float Right */
.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(50% - 10px);
  right: 0;
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-right:hover, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:active {
  transform: translateX(-10px);
}
.hvr-bubble-float-right:hover:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:active:before {
  transform: translateX(10px);
}

/* Bubble Float Bottom */
.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
  transform: translateY(-10px);
}
.hvr-bubble-float-bottom:hover:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:active:before {
  transform: translateY(10px);
}

/* Bubble Float Left */
.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
  transform: translateX(10px);
}
.hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
  transform: translateX(-10px);
}

/* ICONS */
/* Icon Back */
.hvr-icon-back {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.1s;
}
.hvr-icon-back .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-back:hover .hvr-icon, .hvr-icon-back:focus .hvr-icon, .hvr-icon-back:active .hvr-icon {
  transform: translateX(-4px);
}

/* Icon Forward */
.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.1s;
}
.hvr-icon-forward .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-forward:hover .hvr-icon, .hvr-icon-forward:focus .hvr-icon, .hvr-icon-forward:active .hvr-icon {
  transform: translateX(4px);
}

/* Icon Down */
@keyframes hvr-icon-down {
  0%,
	50%,
	100% {
    transform: translateY(0);
  }
  25%,
	75% {
    transform: translateY(6px);
  }
}
/* Icon Down */
.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-down .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-down:hover .hvr-icon, .hvr-icon-down:focus .hvr-icon, .hvr-icon-down:active .hvr-icon {
  animation-name: hvr-icon-down;
  animation-duration: 0.75s;
  animation-timing-function: ease-out;
}

/* Icon Up */
@keyframes hvr-icon-up {
  0%,
	50%,
	100% {
    transform: translateY(0);
  }
  25%,
	75% {
    transform: translateY(-6px);
  }
}
/* Icon Up */
.hvr-icon-up {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-up .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-up:hover .hvr-icon, .hvr-icon-up:focus .hvr-icon, .hvr-icon-up:active .hvr-icon {
  animation-name: hvr-icon-up;
  animation-duration: 0.75s;
  animation-timing-function: ease-out;
}

/* Icon Spin */
.hvr-icon-spin {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-spin .hvr-icon {
  transition-duration: 1s;
  transition-property: transform;
  transition-timing-function: ease-in-out;
}
.hvr-icon-spin:hover .hvr-icon, .hvr-icon-spin:focus .hvr-icon, .hvr-icon-spin:active .hvr-icon {
  transform: rotate(360deg);
}

/* Icon Drop */
@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51%,
	100% {
    opacity: 1;
  }
}
/* Icon Drop */
.hvr-icon-drop {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-drop .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-drop:hover .hvr-icon, .hvr-icon-drop:focus .hvr-icon, .hvr-icon-drop:active .hvr-icon {
  opacity: 0;
  transition-duration: 0.3s;
  animation-name: hvr-icon-drop;
  animation-duration: 0.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */
.hvr-icon-fade {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-fade .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.5s;
  transition-property: color;
}
.hvr-icon-fade:hover .hvr-icon, .hvr-icon-fade:focus .hvr-icon, .hvr-icon-fade:active .hvr-icon {
  color: #0F9E5E;
}

/* Icon Float Away */
@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-1em);
  }
}
/* Icon Float Away */
.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-float-away .hvr-icon {
  transform: translateZ(0);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.hvr-icon-float-away:hover .hvr-icon, .hvr-icon-float-away:focus .hvr-icon, .hvr-icon-float-away:active .hvr-icon {
  animation-name: hvr-icon-float-away;
  animation-timing-function: ease-out;
}

/* Icon Sink Away */
@keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(1em);
  }
}
/* Icon Sink Away */
.hvr-icon-sink-away {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-sink-away .hvr-icon {
  transform: translateZ(0);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.hvr-icon-sink-away:hover .hvr-icon, .hvr-icon-sink-away:focus .hvr-icon, .hvr-icon-sink-away:active .hvr-icon {
  animation-name: hvr-icon-sink-away;
  animation-timing-function: ease-out;
}

/* Icon Grow */
.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-grow .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-grow:hover .hvr-icon, .hvr-icon-grow:focus .hvr-icon, .hvr-icon-grow:active .hvr-icon {
  transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */
.hvr-icon-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-shrink .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-shrink:hover .hvr-icon, .hvr-icon-shrink:focus .hvr-icon, .hvr-icon-shrink:active .hvr-icon {
  transform: scale(0.8);
}

/* Icon Pulse */
@keyframes hvr-icon-pulse {
  25% {
    transform: scale(1.3);
  }
  75% {
    transform: scale(0.8);
  }
}
.hvr-icon-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-pulse .hvr-icon {
  transform: translateZ(0);
  transition-timing-function: ease-out;
}
.hvr-icon-pulse:hover .hvr-icon, .hvr-icon-pulse:focus .hvr-icon, .hvr-icon-pulse:active .hvr-icon {
  animation-name: hvr-icon-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Icon Pulse Grow */
@keyframes hvr-icon-pulse-grow {
  to {
    transform: scale(1.3);
  }
}
.hvr-icon-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-pulse-grow .hvr-icon {
  transform: translateZ(0);
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-grow:hover .hvr-icon, .hvr-icon-pulse-grow:focus .hvr-icon, .hvr-icon-pulse-grow:active .hvr-icon {
  animation-name: hvr-icon-pulse-grow;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* Icon Pulse Shrink */
@keyframes hvr-icon-pulse-shrink {
  to {
    transform: scale(0.8);
  }
}
.hvr-icon-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-pulse-shrink .hvr-icon {
  transform: translateZ(0);
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-shrink:hover .hvr-icon, .hvr-icon-pulse-shrink:focus .hvr-icon, .hvr-icon-pulse-shrink:active .hvr-icon {
  animation-name: hvr-icon-pulse-shrink;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* Icon Push */
@keyframes hvr-icon-push {
  50% {
    transform: scale(0.5);
  }
}
.hvr-icon-push {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-push .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-push:hover .hvr-icon, .hvr-icon-push:focus .hvr-icon, .hvr-icon-push:active .hvr-icon {
  animation-name: hvr-icon-push;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Icon Pop */
@keyframes hvr-icon-pop {
  50% {
    transform: scale(1.5);
  }
}
.hvr-icon-pop {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-pop .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-pop:hover .hvr-icon, .hvr-icon-pop:focus .hvr-icon, .hvr-icon-pop:active .hvr-icon {
  animation-name: hvr-icon-pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Icon Bounce */
.hvr-icon-bounce {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-bounce .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-bounce:hover .hvr-icon, .hvr-icon-bounce:focus .hvr-icon, .hvr-icon-bounce:active .hvr-icon {
  transform: scale(1.5);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */
.hvr-icon-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-rotate .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-rotate:hover .hvr-icon, .hvr-icon-rotate:focus .hvr-icon, .hvr-icon-rotate:active .hvr-icon {
  transform: rotate(20deg);
}

/* Icon Grow Rotate */
.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-grow-rotate .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-grow-rotate:hover .hvr-icon, .hvr-icon-grow-rotate:focus .hvr-icon, .hvr-icon-grow-rotate:active .hvr-icon {
  transform: scale(1.5) rotate(12deg);
}

/* Icon Float */
.hvr-icon-float {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-float .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-float:hover .hvr-icon, .hvr-icon-float:focus .hvr-icon, .hvr-icon-float:active .hvr-icon {
  transform: translateY(-4px);
}

/* Icon Sink */
.hvr-icon-sink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-sink .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-icon-sink:hover .hvr-icon, .hvr-icon-sink:focus .hvr-icon, .hvr-icon-sink:active .hvr-icon {
  transform: translateY(4px);
}

/* Icon Bob */
@keyframes hvr-icon-bob {
  0% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-bob-float {
  100% {
    transform: translateY(-6px);
  }
}
.hvr-icon-bob {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-bob .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-bob:hover .hvr-icon, .hvr-icon-bob:focus .hvr-icon, .hvr-icon-bob:active .hvr-icon {
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-duration: .3s, 1.5s;
  animation-delay: 0s, .3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

/* Icon Hang */
@keyframes hvr-icon-hang {
  0% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-hang-sink {
  100% {
    transform: translateY(6px);
  }
}
.hvr-icon-hang {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-hang .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-hang:hover .hvr-icon, .hvr-icon-hang:focus .hvr-icon, .hvr-icon-hang:active .hvr-icon {
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-duration: .3s, 1.5s;
  animation-delay: 0s, .3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    transform: translateX(6px);
  }
  33.3% {
    transform: translateX(-5px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-wobble-horizontal .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-wobble-horizontal:hover .hvr-icon, .hvr-icon-wobble-horizontal:focus .hvr-icon, .hvr-icon-wobble-horizontal:active .hvr-icon {
  animation-name: hvr-icon-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Icon Wobble Vertical */
@keyframes hvr-icon-wobble-vertical {
  16.65% {
    transform: translateY(6px);
  }
  33.3% {
    transform: translateY(-5px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.hvr-icon-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-wobble-vertical .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-wobble-vertical:hover .hvr-icon, .hvr-icon-wobble-vertical:focus .hvr-icon, .hvr-icon-wobble-vertical:active .hvr-icon {
  animation-name: hvr-icon-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Icon Buzz */
@keyframes hvr-icon-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-icon-buzz {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-buzz .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-buzz:hover .hvr-icon, .hvr-icon-buzz:focus .hvr-icon, .hvr-icon-buzz:active .hvr-icon {
  animation-name: hvr-icon-buzz;
  animation-duration: 0.15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Icon Buzz Out */
@keyframes hvr-icon-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-icon-buzz-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.hvr-icon-buzz-out .hvr-icon {
  transform: translateZ(0);
}
.hvr-icon-buzz-out:hover .hvr-icon, .hvr-icon-buzz-out:focus .hvr-icon, .hvr-icon-buzz-out:active .hvr-icon {
  animation-name: hvr-icon-buzz-out;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* CURLS */
/* Curl Top Left */
.hvr-curl-top-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#000000');
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}
.hvr-curl-top-left:hover:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Top Right */
.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}
.hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Right */
.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}
.hvr-curl-bottom-right:hover:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Left */
.hvr-curl-bottom-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-bottom-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(45deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}
.hvr-curl-bottom-left:hover:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}

@font-face {
  font-family: HarmonyOS_Sans;
  src: url(/static/media/hm.edd68e725bfe5368258b.woff2);
}

@font-face {
  font-family: HarmonyOS_Sans;
  src: url(/static/media/hm-bold.f48b2ebebb811714e30a.woff2);
  font-weight: bold;
}

@font-face {
  font-family: "Roboto Mono";
  src: url(/static/media/roboto-mono-v7-latin-regular.fe990f0633a16121db07.woff2);
  font-weight: bold;
}

@font-face {
  font-family: "Roboto Mono";
  src: url(/static/media/roboto-mono-v7-latin-700.abe745323392dea13b21.woff2);
}

.cm-s-duotone-light.cm-s-duotone-light {
  font-family: "Roboto Mono";
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  height: 100vh;
  color: var(--color-text-1);
}

svg {
  vertical-align: middle !important;
}

.arco-btn-size-default svg {
  vertical-align: -2px !important;
}

.arco-btn-size-small {
  vertical-align: -2px !important;
}

.arco-icon {
  vertical-align: -2px !important;
}

body.dragging * {
  cursor: grabbing !important;
}

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

* {
  outline: none !important;
}

div.bp3-select-popover .bp3-popover-content {
  padding: 0;
}

span.bp3-popover-target {
  display: flex;
  width: 100%;
}

span.bp3-popover-target>* {
  flex-grow: 1;
}

div.bp3-popover-arrow {
  display: none;
}

.bp3-button.bp3-loading {
  cursor: default !important;
}

.display-none {
  display: none;
}

.bp4-popover-content {
  font-size: 12px;
  font-weight: bold;
}

/* .Toastify__toast {
  padding: 0 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.Toastify__toast-body {
  margin: 0 !important;
}

.Toastify__progress-bar--default {
  background: rgb(3, 179, 101) !important;
} */

.t--editor-appname-menu-portal {
  z-index: 9 !important;
}

.bp3-popover-enter-done {
  z-index: 10;
}

.bp3-popover .bp3-input {
  outline: 0;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0 !important;
}

.bp3-popover .bp3-input:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
}

.bp3-popover.bp3-minimal {
  margin-top: 8px !important;
}

.layout-control.bp3-popover.bp3-minimal {
  margin-top: 8px !important;
}

.bp3-popover.none-shadow-popover {
  box-shadow: none;
  border: 0px;
}

.bp3-datepicker {
  border-radius: 0 !important;
}

/* rich text editor styles */
.tox-tinymce {
  border-color: #e7e7e7 !important;
}

.tox:not([dir="rtl"]) .tox-toolbar__group:not(:last-of-type),
.tox .tox-statusbar {
  border-color: #e7e7e7 !important;
}

.tox .tox-toolbar__primary {
  background: white !important;
  border-bottom: 1px solid #e7e7e7 !important;
}

/* making both the Modal layer and the Dropdown layer */
.bp3-modal-widget,
.appsmith_widget_0>.bp3-portal {
  z-index: 2 !important;
}

/* Portals on the Modal widget */
.bp3-modal-widget .bp3-portal {
  z-index: 21 !important;
}

.bp3-overlay-backdrop {
  background-color: rgba(16, 22, 26, 0.7) !important;
}

.arco-btn {
  transition: 0.3s;
}

/* .arco-pagination-item {
  color: var(--ft-color-orange-200);
}

.arco-pagination-item-active {
  color: var(--ft-color-orange-600);
} */

/* .arco-pagination-item:not(.arco-pagination-item-disabled):not(.arco-pagination-item-active):hover {
  color: var(--ft-color-orange-200);
  background-color: var(--ft-color-orange-50);
} */

/* .arco-form-item{
  margin-bottom: 12px;
} */

.arco-input:focus,
.arco-input.arco-input-focus{
  border-color: var(--highlight);
}

.arco-input:hover:not(:disabled){
  border-color: var(--highlight);
}

span.bp3-popover2-target {
  vertical-align: top;
}

.bold-text .bp4-editable-text-content{
  font-weight: 700;
  color: var(--black-300) !important;
}

._side-nav .t--code-editor-wrapper.active .CodeMirror-wrap:not(script), ._side-property .t--code-editor-wrapper.active .CodeMirror-wrap:not(script) {
      border-width: 1px !important;
      background-color: var(--light) !important;
    }

._side-nav .CodeMirror.CodeMirror.CodeMirror-wrap:not(script), ._side-property .CodeMirror.CodeMirror.CodeMirror-wrap:not(script){
  border-radius: 4px !important;
}

._side-nav .CodeMirror.CodeMirror.CodeMirror-wrap:not(script).CodeMirror-wrap.CodeMirror-wrap .CodeMirror-lines, ._side-property .CodeMirror.CodeMirror.CodeMirror-wrap:not(script).CodeMirror-wrap.CodeMirror-wrap .CodeMirror-lines{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
          line-height: inherit;
}

._side-nav .CodeMirror.CodeMirror.CodeMirror-wrap:not(script).CodeMirror-wrap.CodeMirror-wrap .CodeMirror-placeholder, ._side-property .CodeMirror.CodeMirror.CodeMirror-wrap:not(script).CodeMirror-wrap.CodeMirror-wrap .CodeMirror-placeholder{
  color: var(--content);
          line-height: 20px !important;
}

._side-nav .fs-editor-wrapper, ._side-property .fs-editor-wrapper {
    min-height: 32px;
    background-color: transparent !important;
  }

._side-nav .bp4-popover-open .faGQss.faGQss.faGQss .bp4-button:not(script), ._side-property .bp4-popover-open .faGQss.faGQss.faGQss .bp4-button:not(script){
  border-color: var(--highlight);
  background-color: var(--light);
}

._side-nav .faGQss.faGQss.faGQss .bp4-button:not(script), ._side-property .faGQss.faGQss.faGQss .bp4-button:not(script){
  border-radius: 4px;
  border-color: transparent;
    min-height: 32px;
}

._side-nav .faGQss.faGQss.faGQss .bp4-button:not(script) code[class*='language-'], ._side-property .faGQss.faGQss.faGQss .bp4-button:not(script) code[class*='language-']{
  background-color: transparent;
}

._side-nav .faGQss.faGQss.faGQss .bp4-button:not(script) .bp4-button-text,._side-property .faGQss.faGQss.faGQss .bp4-button:not(script) .bp4-button-text{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

._side-nav .fs-tree-structure .tree li:last-child:before, ._side-property .fs-tree-structure .tree li:last-child:before{
  background-color: var(--light);
}

._side-nav .fs-tree-structure label, ._side-property .fs-tree-structure label{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

._side-nav .fs-styled-input-group.bp4-active .bp4-input.bp4-input, ._side-property .fs-styled-input-group.bp4-active .bp4-input.bp4-input{
  background-color: var(--light);
}

._side-nav .fs-styled-input-group .bp4-input.bp4-input, ._side-property .fs-styled-input-group .bp4-input.bp4-input {
      height: 32px;
      border-radius: 4px;
      border-color: transparent;
    }

._side-nav .fs-styled-input-group .bp4-input.bp4-input::placeholder, ._side-property .fs-styled-input-group .bp4-input.bp4-input::placeholder{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

._side-nav .dropdown-select, ._side-property .dropdown-select {
  min-height: 32px;
  height: 32px;
  border-radius: 4px;
  border-color: transparent;
  background: var(--color-fill-2);
}

._side-nav .cs-text, ._side-property .cs-text {
  font-size: 12px
}

._side-nav .bp4-popover-open .dropdown-select, ._side-property .bp4-popover-open .dropdown-select{
  border-width: 1px;
  border-style: solid;
  border-color: var(--highlight);
  background-color: var(--light);
}

._side-nav .t--entity .t--entity-item, ._side-property .t--entity .t--entity-item{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

._side-nav .t--entity .t--entity-item .t--entity-name, ._side-property .t--entity .t--entity-item .t--entity-name{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
  color: var(--content);
}

._side-nav .t--entity .t--entity-item .remixicon-icon, ._side-property .t--entity .t--entity-item .remixicon-icon {
      width: 18px;
      height: 18px;
    }

._side-nav .fs-explorer-search, ._side-property .fs-explorer-search{
  border-width: 1px;
  border-style: solid;
}

._side-nav .fs-explorer-search.active, ._side-property .fs-explorer-search.active{
  border-color: var(--highlight);
  background-color: var(--light);
}

._side-nav .fs-explorer-search .box-content, ._side-property .fs-explorer-search .box-content {
    width: 12px;
    height: 12px;
    margin-top: 3px}

._side-nav .fs-explorer-search input::placeholder, ._side-property .fs-explorer-search input::placeholder{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
  color: var(--content);
}

._side-nav .fs-explorer-search input, ._side-property .fs-explorer-search input{
  margin-left: 4px !important;
}

.bp4-transition-container {
  z-index: 2001;
}

.bp4-portal .ads-dropdown-options-wrapper {
    vertical-align: top;
  }

.bp4-portal .bp4-popover {
    box-shadow: none;
  }

.bp4-portal .t--dropdown-option[aria-selected="true"]{
  background-color: transparent;
}

.bp4-portal .t--dropdown-option[aria-selected="true"] .cs-text{
  color: var(--highlight);
}

.bp4-portal .t--dropdown-option:hover {
      background: var(--bg-primary);
    }

.bp4-portal .bp4-transition-container,
  .bp4-portal .bp4-popover
  {
  border-radius: 4px;
  top: 5px !important;
}

.bp4-portal .bp4-menu{
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-color);
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.bp4-portal .ads-dropdown-options-wrapper {
  border-radius: 4px;
}

.ur--has-border:not(type="*"),
.ur--has-border:is(type="text") {
  border: none !important;
}

.ur--has-border:not(type="*").ur--has-border:not(type="*") input, .ur--has-border:is(type="text").ur--has-border:is(type="text") input {
    border-radius: 4px;
    background: var(--bg-primary) !important;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    height: 32px;
  }

.ur--has-border:not(type="*").ur--has-border:not(type="*") input:focus, .ur--has-border:is(type="text").ur--has-border:is(type="text") input:focus{
  border-color: var(--highlight);
      box-shadow: 0px 0px 4px 0px rgba(255, 88, 0, 0.2);
}

.ur--has-border:not(type="*"),
.ur--has-border:is(type="text"){
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.bp4-popover-target .fs-dropdown {
    min-height: 32px;
    border-radius: 4px;
    background: var(--bg-primary);
    border-color: transparent;
  }

.bp4-popover-target .fs-dropdown .cs-text{
  font-size: 12px;
  line-height: 14px;
  font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.bp4-popover-target .fs-dropdown [name="expand-more"] {
      margin-left: 20px;
    }

.bp4-popover-target.bp4-popover-open .fs-dropdown{
  border-color: var(--highlight);
      box-shadow: 0px 0px 4px 0px rgba(255, 88, 0, 0.2);
}

.fake-btn {
  background: var(--primary-linear-gradient2);
  transition: 0.3s;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
}

.fake-btn:hover {
  background: var(--primary-linear-gradient3);
  transition: 0.3s;
}

.bg-primary-linear-gradient4 {
  background: var(--primary-linear-gradient4);
}

.resizebox-demo-custom-trigger {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-2);
}

.resizebox-demo-custom-trigger::before,
.resizebox-demo-custom-trigger::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 1px solid rgb(var(--arcoblue-6));
}

.resizebox-demo-custom-trigger-line {
  background-color: rgb(var(--arcoblue-6));
  flex: 1 1;
}

.resizebox-demo-custom-trigger-vertical {
  flex-direction: column;
}

.resizebox-demo-custom-trigger-vertical .resizebox-demo-custom-trigger-line {
  width: 1px;
  height: 100%;
}

.resizebox-demo-custom-trigger-horizontal .resizebox-demo-custom-trigger-line {
  width: 100%;
  height: 1px;
}

.rootWidget {
  background: var(--page-bg);
}

.tip-container {
  /* color: var(--color1); */
  font-size: 24px;
  letter-spacing: 4px;
  overflow: hidden;
  background-image: var(--primary-linear-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: hue 2s infinite alternate linear;
}

@keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }

  to {
    -webkit-filter: hue-rotate(-60deg);
  }
}

.right-property-control .CodeMirror {
  padding: 5px 0;
}

.no-padding-wrap >div {
    padding: 0;
  }

.fs-guide {
  background-color: #3662ec !important;
  width: 230px !important;
  z-index: 999 !important;
}

/* height: 135px !important; */

.fs-guide .guide-modal-title,
  .fs-guide .guide-modal-content,
  .fs-guide .guide-modal-footer,
  .fs-guide .guide-modal-footer-text {
    font-size: 14px;
    color: #fff;
  }

.fs-guide .guide-modal-footer {
    /* margin-top: 30px; */
  }

.fs-guide .guide-modal-footer-text {
    font-size: 14px;
  }

.fs-guide .guide-modal-arrow {
    box-shadow: none !important;
    background-color: #3662ec !important;
  }

.fs-guide .guide-modal-footer-btn {
    background-color: var(--color-secondary);
    color: var(--color-text-2);
    border: 1px solid transparent;
    padding: 0 11px;
  }

.fs-guide .guide-modal-footer-btn:hover {
      border-color: transparent;
      color: var(--color-text-2);
      background-color: var(--color-secondary-hover);
    }


.sql-content .arco-trigger {
  z-index: 999999 !important;
}

.noHeader .arco-modal-header {
    display: none;
  }

.noHeader .arco-modal-content {
    margin-top: 24px;
  }

div.CodeMirror span.CodeMirror-matchingbracket {
  color: rgba(0, 187, 0, 0.576) !important;
  text-underline-offset: 4px !important;
}

.rootWidget {
  transform: scale(1);
}

.arco-table-header {
  overflow-x: hidden;
}

/* src/pages/Templates/Filters.tsx:52 */

.container {
    width: 100%;
}

@media (min-width: 320px) {

    .container {
        max-width: 320px;
    }
}

@media (min-width: 640px) {

    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {

    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {

    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {

    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {

    .container {
        max-width: 1536px;
    }
}

.font-hm-12 {
    font-size: 12px;
    line-height: 14px;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-12-bold {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-14 {
    font-size: 14px;
    line-height: 16px;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-14-bold {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-16 {
    font-size: 16px;
    line-height: 19px;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-16-bold {
    font-size: 16px;
    line-height: 19px;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-32-bold {
    font-size: 32px;
    line-height: 52px;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-44 {
    font-size: 44px;
    line-height: undefinedpx;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-44-bold {
    font-size: 44px;
    line-height: undefinedpx;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-54 {
    font-size: 54px;
    line-height: undefinedpx;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-hm-54-bold {
    font-size: 54px;
    line-height: undefinedpx;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}

.font-rh-12 {
    font-size: 12px;
    line-height: 14px;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-12-bold {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-14 {
    font-size: 14px;
    line-height: 16px;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-14-bold {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-16 {
    font-size: 16px;
    line-height: 19px;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-16-bold {
    font-size: 16px;
    line-height: 19px;
    font-weight: bold;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-44 {
    font-size: 44px;
    line-height: undefinedpx;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-44-bold {
    font-size: 44px;
    line-height: undefinedpx;
    font-weight: bold;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-54 {
    font-size: 54px;
    line-height: undefinedpx;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.font-rh-54-bold {
    font-size: 54px;
    line-height: undefinedpx;
    font-weight: bold;
    font-family: 'Red Hat Display ui-serif Georgia Cambria "Times New Roman" Times serif';
}

.fs-radio-group {
    padding: 2px;
    display: inline-flex;
    max-width: 100%;
    border-radius: 4px;
  }

.fs-radio-group label {
      padding: 0px 7px;
      width: 94px;
      text-align: center;
      font-size: 12px;
      color: var(--content);
      font: optional;
    }

.fs-radio-group label.arco-radio-checked {
        box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.050980392156862744);
        border-radius: 2px 2px 2px 2px;
        background-color: var(--white);
        font-weight: 700;
        color: var(--title-primary);
      }

.fs-radio-group label .arco-radio-button-inner {
    font-weight: 700;
    line-height: 25px;
}

.active-svg svg {
      fill: var(--orange) !important;
      color: var(--orange) !important;
      stroke: var(--orange) !important;
    }

.active-svg svg * {
        fill: var(--orange) !important;
        color: var(--orange) !important;
        stroke: var(--orange) !important;
      }

/* NOTE: to fix the asterisk can not align center when one filed is required.  */

.arco-form-item-symbol svg {
      display: inline-block;
    }

/* src/pages/Templates/index.tsx:190 */

.fs-search-input {
    flex: 1 1 auto;
    overflow: hidden;
    background-color: transparent !important;
}

.fs-search-input >div {
      border-style: none;
      max-width: 100%;
      /* transition: background-color 1.5s ease; */
      overflow: hidden;
      border-radius: 6px;
      border-width: 1px !important;
      border-style: solid !important;
      border-color: transparent !important;
      background-color: var(--bg-primary);
    }

.fs-search-input >div >.left-icon.left-icon {
    margin-left: 11px;
}

.fs-search-input >div:active,
      .fs-search-input >div:hover,
      .fs-search-input >div:focus {
    border-color: var(--yellow-300) !important;
}

.fs-user-list.fs-user-list >span .more-icon {
    border-color: var(--bg-primary-btn) !important;
    background-color: var(--bg-primary-btn);
}

.fs-user-list.fs-user-list >span .more-icon span {
    font-weight: 700;
    color: var(--highlight);
}

.fs-btn-primary,
  .fs-btn-create {
    overflow: hidden;
    background-color: transparent !important;
}

.fs-btn-primary.arco-btn-disabled, .fs-btn-create.arco-btn-disabled {
      background-image: none !important;
      background-color: var(--bg-primary) !important;
      color: var(--disable) !important;
    }

.fs-btn-primary.arco-btn-disabled::before, .fs-btn-create.arco-btn-disabled::before {
    display: none !important;
}

.fs-btn-primary.arco-btn-disabled::after, .fs-btn-create.arco-btn-disabled::after {
    display: none !important;
}

.fs-btn-primary.fs-btn-primary, .fs-btn-create.fs-btn-create {
      border: none;
      color: var(--light) !important;
    }

.fs-btn-primary:hover::after, .fs-btn-create:hover::after {
    display: block;
    opacity: 0.1;
}

.fs-btn-primary:active::after, .fs-btn-primary:link::after, .fs-btn-primary.active::after, .fs-btn-create:active::after, .fs-btn-create:link::after, .fs-btn-create.active::after {
        opacity: 0.15;
      }

 .fs-btn-primary.\!active::after, .fs-btn-create.\!active::after {
        opacity: 0.15 !important;
      }

.fs-btn-primary:active::after, .fs-btn-primary:link::after, .fs-btn-primary.active::after, .fs-btn-create:active::after, .fs-btn-create:link::after, .fs-btn-create.active::after {
    display: block;
}

 .fs-btn-primary.\!active::after, .fs-btn-create.\!active::after {
    display: block;
}

.fs-btn-primary::after, .fs-btn-create::after {
      content: "";
      transition: all 0.8s;
      position: absolute;
      top: 0px;
      bottom: 0px;
      left: 0px;
      right: 0px;
      background-color: var(--black);
      opacity: 0;
    }

.fs-btn-primary::before, .fs-btn-create::before {
      content: "";
      position: absolute;
      top: 0px;
      bottom: 0px;
      left: 0px;
      right: 0px;
      display: inline-block;
      background-image: linear-gradient(103deg, #FF71AD 9%, #FF71AD 9%, #FFA852 95%, #FFA852 95%);
    }

.fs-btn-primary >*, .fs-btn-create >* {
    position: relative;
    z-index: 1;
}

.fs-btn-second.fs-btn-second {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
    background-color: var(--brown);
    color: var(--highlight) !important;
      border: none;
}

.fs-btn-second.fs-btn-second.arco-btn-disabled {
        background-image: none !important;
        background-color: var(--bg-primary) !important;
        color: var(--disable) !important;
      }

.fs-btn-second.fs-btn-second.arco-btn-disabled::after {
    display: none !important;
}

.fs-btn-second.fs-btn-second.fs-btn-second.fs-btn-second:hover {
    background-color: var(--brown-100);
}

.fs-btn-second.fs-btn-second.fs-btn-second.fs-btn-second:active,
        .fs-btn-second.fs-btn-second.fs-btn-second.fs-btn-second:link {
    background-color: var(--brown-200);
}

.fs-btn-third {
    overflow: hidden;
    background-color: transparent !important;
}

.fs-btn-third.arco-btn-disabled {
      background-image: none;
      background-color: var(--bg-primary) !important;
      color: var(--disable) !important;
    }

.fs-btn-third.arco-btn-disabled::before {
    display: none !important;
}

.fs-btn-third.arco-btn-disabled::after {
    display: none !important;
}

.fs-btn-third.fs-btn-primary {
      border: none;
      color: var(--light) !important;
    }

.fs-btn-third:hover::after {
    display: block;
    opacity: 0.1;
}

.fs-btn-third:active::after,.fs-btn-third:link::after,.fs-btn-third.active::after {
        opacity: 0.15;
        display: block;
      }

.fs-btn-third::after {
      content: "";
      transition: all 0.8s;
      position: absolute;
      top: 0px;
      bottom: 0px;
      left: 0px;
      right: 0px;
      background-color: var(--black);
      opacity: 0;
    }

.fs-btn-third::before {
      content: "";
      position: absolute;
      top: 0px;
      bottom: 0px;
      left: 0px;
      right: 0px;
      display: inline-block;
      background-image: linear-gradient(103deg, #FF71AD 9%, #FF71AD 9%, #FFA852 95%, #FFA852 95%);
    }

.fs-btn-third >* {
    position: relative;
    z-index: 1;
}

.fs-btn-third.fs-btn-third.fs-btn-third.fs-btn-third {
      border: none;
      color: var(--highlight);
    }

.fs-btn-third.fs-btn-third.fs-btn-third.fs-btn-third::before {
        background-image: none;
        background-color: var(--bg-primary);
      }

.fs-link.fs-link.fs-link.fs-link {
    background-color: transparent;
    font-weight: 700;
    color: var(--link);
}

.fs-link.fs-link.fs-link.fs-link:hover,
      .fs-link.fs-link.fs-link.fs-link:active,
      .fs-link.fs-link.fs-link.fs-link:link,
      .fs-link.fs-link.fs-link.fs-link.active {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}


      .fs-link.fs-link.fs-link.fs-link.\!active {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.fs-collapse .arco-collapse-item-header {
      padding: 0;
      border: none;
      margin-bottom: 18px;
      font-size: 12px;
      line-height: 14px;
      font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
      color: var(--content);
    }

.fs-collapse .arco-collapse-item-content {
      background: transparent;
    }

.fs-collapse .arco-collapse-item-content .arco-collapse-item-content-box {
        padding: 0;
      }
.pointer-events-none {
    pointer-events: none;
}
.\!visible {
    visibility: visible !important;
}
.visible {
    visibility: visible;
}
.invisible {
    visibility: hidden;
}
.collapse {
    visibility: collapse;
}
.static {
    position: static;
}
.fixed {
    position: fixed;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.sticky {
    position: sticky;
}
.inset-0 {
    inset: 0px;
}
.inset-x-0 {
    left: 0px;
    right: 0px;
}
.\!bottom-\[0\] {
    bottom: 0 !important;
}
.\!right-6 {
    right: 1.5rem !important;
}
.-bottom-\[10px\] {
    bottom: -10px;
}
.-left-6 {
    left: -1.5rem;
}
.bottom-0 {
    bottom: 0px;
}
.bottom-\[-100px\] {
    bottom: -100px;
}
.bottom-\[-10px\] {
    bottom: -10px;
}
.bottom-\[-12px\] {
    bottom: -12px;
}
.bottom-\[-18px\] {
    bottom: -18px;
}
.bottom-\[-420px\] {
    bottom: -420px;
}
.bottom-\[-8px\] {
    bottom: -8px;
}
.bottom-\[-90\%\] {
    bottom: -90%;
}
.bottom-\[0\] {
    bottom: 0;
}
.bottom-\[0px\] {
    bottom: 0px;
}
.bottom-\[10px\] {
    bottom: 10px;
}
.bottom-\[2px\] {
    bottom: 2px;
}
.bottom-\[3px\] {
    bottom: 3px;
}
.bottom-\[40px\] {
    bottom: 40px;
}
.bottom-\[8px\] {
    bottom: 8px;
}
.bottom-\[93px\] {
    bottom: 93px;
}
.left-0 {
    left: 0px;
}
.left-1\/2 {
    left: 50%;
}
.left-3 {
    left: 0.75rem;
}
.left-8 {
    left: 2rem;
}
.left-\[-10\%\] {
    left: -10%;
}
.left-\[-10px\] {
    left: -10px;
}
.left-\[-18px\] {
    left: -18px;
}
.left-\[-20\%\] {
    left: -20%;
}
.left-\[-300px\] {
    left: -300px;
}
.left-\[-30px\] {
    left: -30px;
}
.left-\[-50\%\] {
    left: -50%;
}
.left-\[-70\%\] {
    left: -70%;
}
.left-\[0px\] {
    left: 0px;
}
.left-\[10\%\] {
    left: 10%;
}
.left-\[10px\] {
    left: 10px;
}
.left-\[110\%\] {
    left: 110%;
}
.left-\[17\%\] {
    left: 17%;
}
.left-\[180px\] {
    left: 180px;
}
.left-\[20px\] {
    left: 20px;
}
.left-\[39\%\] {
    left: 39%;
}
.left-\[3px\] {
    left: 3px;
}
.left-\[40px\] {
    left: 40px;
}
.left-\[50\%\] {
    left: 50%;
}
.left-\[510px\] {
    left: 510px;
}
.left-\[58px\] {
    left: 58px;
}
.left-\[5px\] {
    left: 5px;
}
.left-\[65px\] {
    left: 65px;
}
.left-\[9\%\] {
    left: 9%;
}
.right-0 {
    right: 0px;
}
.right-2 {
    right: 0.5rem;
}
.right-5 {
    right: 1.25rem;
}
.right-6 {
    right: 1.5rem;
}
.right-\[-18px\] {
    right: -18px;
}
.right-\[-20\%\] {
    right: -20%;
}
.right-\[-20px\] {
    right: -20px;
}
.right-\[-245px\] {
    right: -245px;
}
.right-\[-30px\] {
    right: -30px;
}
.right-\[-400px\] {
    right: -400px;
}
.right-\[-4px\] {
    right: -4px;
}
.right-\[-50\%\] {
    right: -50%;
}
.right-\[-57px\] {
    right: -57px;
}
.right-\[-70\%\] {
    right: -70%;
}
.right-\[-9px\] {
    right: -9px;
}
.right-\[0\] {
    right: 0;
}
.right-\[0px\] {
    right: 0px;
}
.right-\[10px\] {
    right: 10px;
}
.right-\[150px\] {
    right: 150px;
}
.right-\[17\%\] {
    right: 17%;
}
.right-\[20px\] {
    right: 20px;
}
.right-\[24px\] {
    right: 24px;
}
.right-\[2px\] {
    right: 2px;
}
.right-\[30px\] {
    right: 30px;
}
.right-\[39\%\] {
    right: 39%;
}
.right-\[80px\] {
    right: 80px;
}
.right-\[calc\(50\%-300px\)\] {
    right: calc(50% - 300px);
}
.top-0 {
    top: 0px;
}
.top-12 {
    top: 3rem;
}
.top-2 {
    top: 0.5rem;
}
.top-4 {
    top: 1rem;
}
.top-6 {
    top: 1.5rem;
}
.top-8 {
    top: 2rem;
}
.top-\[-115px\] {
    top: -115px;
}
.top-\[-12px\] {
    top: -12px;
}
.top-\[-166px\] {
    top: -166px;
}
.top-\[-180px\] {
    top: -180px;
}
.top-\[-32px\] {
    top: -32px;
}
.top-\[-400px\] {
    top: -400px;
}
.top-\[-44px\] {
    top: -44px;
}
.top-\[-53px\] {
    top: -53px;
}
.top-\[-62px\] {
    top: -62px;
}
.top-\[-9px\] {
    top: -9px;
}
.top-\[0px\] {
    top: 0px;
}
.top-\[10\%\] {
    top: 10%;
}
.top-\[11px\] {
    top: 11px;
}
.top-\[12px\] {
    top: 12px;
}
.top-\[20px\] {
    top: 20px;
}
.top-\[210px\] {
    top: 210px;
}
.top-\[24px\] {
    top: 24px;
}
.top-\[2px\] {
    top: 2px;
}
.top-\[40\%\] {
    top: 40%;
}
.top-\[40px\] {
    top: 40px;
}
.top-\[50\%\] {
    top: 50%;
}
.top-\[90\%\] {
    top: 90%;
}
.top-\[calc\(50\%-320px\)\] {
    top: calc(50% - 320px);
}
.-z-50 {
    z-index: -50;
}
.-z-\[50\] {
    z-index: -50;
}
.-z-\[51\] {
    z-index: -51;
}
.z-0 {
    z-index: 0;
}
.z-1 {
    z-index: 1;
}
.z-10 {
    z-index: 10;
}
.z-2 {
    z-index: 2;
}
.z-3 {
    z-index: 3;
}
.z-4 {
    z-index: 4;
}
.z-5 {
    z-index: 5;
}
.z-7 {
    z-index: 7;
}
.z-9 {
    z-index: 9;
}
.z-\[1001\] {
    z-index: 1001;
}
.z-\[1\] {
    z-index: 1;
}
.z-\[99999\] {
    z-index: 99999;
}
.z-\[9999\] {
    z-index: 9999;
}
.z-\[999\] {
    z-index: 999;
}
.z-\[99\] {
    z-index: 99;
}
.z-\[9\] {
    z-index: 9;
}
.order-1 {
    order: 1;
}
.col-auto {
    grid-column: auto;
}
.col-span-2 {
    grid-column: span 2 / span 2;
}
.col-end-3 {
    grid-column-end: 3;
}
.float-right {
    float: right;
}
.m-0 {
    margin: 0px;
}
.m-\[10px\] {
    margin: 10px;
}
.m-\[20px\] {
    margin: 20px;
}
.m-\[30px\] {
    margin: 30px;
}
.m-\[5px\] {
    margin: 5px;
}
.m-auto {
    margin: auto;
}
.\!my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.-mx-\[5px\] {
    margin-left: -5px;
    margin-right: -5px;
}
.mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}
.mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
}
.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}
.mx-1\.5 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
}
.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}
.mx-\[10px\] {
    margin-left: 10px;
    margin-right: 10px;
}
.mx-\[12\.5px\] {
    margin-left: 12.5px;
    margin-right: 12.5px;
}
.mx-\[14px\] {
    margin-left: 14px;
    margin-right: 14px;
}
.mx-\[15px\] {
    margin-left: 15px;
    margin-right: 15px;
}
.mx-\[16px\] {
    margin-left: 16px;
    margin-right: 16px;
}
.mx-\[20px\] {
    margin-left: 20px;
    margin-right: 20px;
}
.mx-\[2px\] {
    margin-left: 2px;
    margin-right: 2px;
}
.mx-\[30px\] {
    margin-left: 30px;
    margin-right: 30px;
}
.mx-\[4px\] {
    margin-left: 4px;
    margin-right: 4px;
}
.mx-\[5px\] {
    margin-left: 5px;
    margin-right: 5px;
}
.mx-\[8px\] {
    margin-left: 8px;
    margin-right: 8px;
}
.mx-\[auto\] {
    margin-left: auto;
    margin-right: auto;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
.my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.my-\[10px\] {
    margin-top: 10px;
    margin-bottom: 10px;
}
.my-\[12px\] {
    margin-top: 12px;
    margin-bottom: 12px;
}
.my-\[16px\] {
    margin-top: 16px;
    margin-bottom: 16px;
}
.my-\[17px\] {
    margin-top: 17px;
    margin-bottom: 17px;
}
.my-\[5px\] {
    margin-top: 5px;
    margin-bottom: 5px;
}
.my-\[8px\] {
    margin-top: 8px;
    margin-bottom: 8px;
}
.\!mb-0 {
    margin-bottom: 0px !important;
}
.\!mb-\[48px\] {
    margin-bottom: 48px !important;
}
.\!ml-\[2px\] {
    margin-left: 2px !important;
}
.\!ml-auto {
    margin-left: auto !important;
}
.\!mt-0 {
    margin-top: 0px !important;
}
.\!mt-\[12px\] {
    margin-top: 12px !important;
}
.\!mt-\[16px\] {
    margin-top: 16px !important;
}
.\!mt-\[44px\] {
    margin-top: 44px !important;
}
.-ml-2 {
    margin-left: -0.5rem;
}
.-ml-4 {
    margin-left: -1rem;
}
.-mr-1 {
    margin-right: -0.25rem;
}
.-mt-1 {
    margin-top: -0.25rem;
}
.-mt-5 {
    margin-top: -1.25rem;
}
.-mt-\[1px\] {
    margin-top: -1px;
}
.mb-0 {
    margin-bottom: 0px;
}
.mb-1 {
    margin-bottom: 0.25rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-11 {
    margin-bottom: 2.75rem;
}
.mb-14 {
    margin-bottom: 3.5rem;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mb-2\.5 {
    margin-bottom: 0.625rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-5 {
    margin-bottom: 1.25rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-9 {
    margin-bottom: 2.25rem;
}
.mb-\[\.48rem\] {
    margin-bottom: .48rem;
}
.mb-\[0\] {
    margin-bottom: 0;
}
.mb-\[10px\] {
    margin-bottom: 10px;
}
.mb-\[110px\] {
    margin-bottom: 110px;
}
.mb-\[12px\] {
    margin-bottom: 12px;
}
.mb-\[146px\] {
    margin-bottom: 146px;
}
.mb-\[15px\] {
    margin-bottom: 15px;
}
.mb-\[16px\] {
    margin-bottom: 16px;
}
.mb-\[18px\] {
    margin-bottom: 18px;
}
.mb-\[1px\] {
    margin-bottom: 1px;
}
.mb-\[200px\] {
    margin-bottom: 200px;
}
.mb-\[20px\] {
    margin-bottom: 20px;
}
.mb-\[21px\] {
    margin-bottom: 21px;
}
.mb-\[22px\] {
    margin-bottom: 22px;
}
.mb-\[24px\] {
    margin-bottom: 24px;
}
.mb-\[25px\] {
    margin-bottom: 25px;
}
.mb-\[26px\] {
    margin-bottom: 26px;
}
.mb-\[2px\] {
    margin-bottom: 2px;
}
.mb-\[30px\] {
    margin-bottom: 30px;
}
.mb-\[32px\] {
    margin-bottom: 32px;
}
.mb-\[33px\] {
    margin-bottom: 33px;
}
.mb-\[36px\] {
    margin-bottom: 36px;
}
.mb-\[37px\] {
    margin-bottom: 37px;
}
.mb-\[38px\] {
    margin-bottom: 38px;
}
.mb-\[40px\] {
    margin-bottom: 40px;
}
.mb-\[46px\] {
    margin-bottom: 46px;
}
.mb-\[48px\] {
    margin-bottom: 48px;
}
.mb-\[4px\] {
    margin-bottom: 4px;
}
.mb-\[50px\] {
    margin-bottom: 50px;
}
.mb-\[5px\] {
    margin-bottom: 5px;
}
.mb-\[60px\] {
    margin-bottom: 60px;
}
.mb-\[64px\] {
    margin-bottom: 64px;
}
.mb-\[66px\] {
    margin-bottom: 66px;
}
.mb-\[8px\] {
    margin-bottom: 8px;
}
.ml-0\.5 {
    margin-left: 0.125rem;
}
.ml-1 {
    margin-left: 0.25rem;
}
.ml-1\.5 {
    margin-left: 0.375rem;
}
.ml-2 {
    margin-left: 2rem;
}
.ml-2\.5 {
    margin-left: 0.625rem;
}
.ml-3 {
    margin-left: 0.75rem;
}
.ml-4 {
    margin-left: 1rem;
}
.ml-5 {
    margin-left: 1.25rem;
}
.ml-6 {
    margin-left: 1.5rem;
}
.ml-8 {
    margin-left: 2rem;
}
.ml-\[-13px\] {
    margin-left: -13px;
}
.ml-\[-3px\] {
    margin-left: -3px;
}
.ml-\[10px\] {
    margin-left: 10px;
}
.ml-\[12px\] {
    margin-left: 12px;
}
.ml-\[13px\] {
    margin-left: 13px;
}
.ml-\[15px\] {
    margin-left: 15px;
}
.ml-\[16px\] {
    margin-left: 16px;
}
.ml-\[18px\] {
    margin-left: 18px;
}
.ml-\[20px\] {
    margin-left: 20px;
}
.ml-\[22px\] {
    margin-left: 22px;
}
.ml-\[24px\] {
    margin-left: 24px;
}
.ml-\[25px\] {
    margin-left: 25px;
}
.ml-\[2em\] {
    margin-left: 2em;
}
.ml-\[2px\] {
    margin-left: 2px;
}
.ml-\[30px\] {
    margin-left: 30px;
}
.ml-\[32px\] {
    margin-left: 32px;
}
.ml-\[3px\] {
    margin-left: 3px;
}
.ml-\[4px\] {
    margin-left: 4px;
}
.ml-\[52px\] {
    margin-left: 52px;
}
.ml-\[5px\] {
    margin-left: 5px;
}
.ml-\[6px\] {
    margin-left: 6px;
}
.ml-\[85px\] {
    margin-left: 85px;
}
.ml-\[8px\] {
    margin-left: 8px;
}
.ml-\[9px\] {
    margin-left: 9px;
}
.ml-auto {
    margin-left: auto;
}
.mr-0\.5 {
    margin-right: 0.125rem;
}
.mr-1 {
    margin-right: 0.25rem;
}
.mr-1\.5 {
    margin-right: 0.375rem;
}
.mr-10 {
    margin-right: 2.5rem;
}
.mr-2 {
    margin-right: 2rem;
}
.mr-3 {
    margin-right: 0.75rem;
}
.mr-4 {
    margin-right: 1rem;
}
.mr-6 {
    margin-right: 1.5rem;
}
.mr-\[-32px\] {
    margin-right: -32px;
}
.mr-\[-6px\] {
    margin-right: -6px;
}
.mr-\[\.1rem\] {
    margin-right: .1rem;
}
.mr-\[109px\] {
    margin-right: 109px;
}
.mr-\[10px\] {
    margin-right: 10px;
}
.mr-\[12px\] {
    margin-right: 12px;
}
.mr-\[15px\] {
    margin-right: 15px;
}
.mr-\[16px\] {
    margin-right: 16px;
}
.mr-\[18px\] {
    margin-right: 18px;
}
.mr-\[24px\] {
    margin-right: 24px;
}
.mr-\[26px\] {
    margin-right: 26px;
}
.mr-\[29px\] {
    margin-right: 29px;
}
.mr-\[2px\] {
    margin-right: 2px;
}
.mr-\[30px\] {
    margin-right: 30px;
}
.mr-\[32px\] {
    margin-right: 32px;
}
.mr-\[3px\] {
    margin-right: 3px;
}
.mr-\[46px\] {
    margin-right: 46px;
}
.mr-\[4px\] {
    margin-right: 4px;
}
.mr-\[5px\] {
    margin-right: 5px;
}
.mr-\[6px\] {
    margin-right: 6px;
}
.mr-\[7px\] {
    margin-right: 7px;
}
.mr-\[8px\] {
    margin-right: 8px;
}
.mr-\[90px\] {
    margin-right: 90px;
}
.mr-\[9px\] {
    margin-right: 9px;
}
.mr-auto {
    margin-right: auto;
}
.mt-0 {
    margin-top: 0px;
}
.mt-1 {
    margin-top: 0.25rem;
}
.mt-1\.5 {
    margin-top: 0.375rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mt-20 {
    margin-top: 5rem;
}
.mt-24 {
    margin-top: 6rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-5 {
    margin-top: 1.25rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-\[-12px\] {
    margin-top: -12px;
}
.mt-\[-15px\] {
    margin-top: -15px;
}
.mt-\[-3px\] {
    margin-top: -3px;
}
.mt-\[-80px\] {
    margin-top: -80px;
}
.mt-\[0\] {
    margin-top: 0;
}
.mt-\[100px\] {
    margin-top: 100px;
}
.mt-\[10px\] {
    margin-top: 10px;
}
.mt-\[12px\] {
    margin-top: 12px;
}
.mt-\[148px\] {
    margin-top: 148px;
}
.mt-\[14px\] {
    margin-top: 14px;
}
.mt-\[15px\] {
    margin-top: 15px;
}
.mt-\[160px\] {
    margin-top: 160px;
}
.mt-\[16px\] {
    margin-top: 16px;
}
.mt-\[18px\] {
    margin-top: 18px;
}
.mt-\[200px\] {
    margin-top: 200px;
}
.mt-\[20px\] {
    margin-top: 20px;
}
.mt-\[22px\] {
    margin-top: 22px;
}
.mt-\[24px\] {
    margin-top: 24px;
}
.mt-\[26px\] {
    margin-top: 26px;
}
.mt-\[28px\] {
    margin-top: 28px;
}
.mt-\[2px\] {
    margin-top: 2px;
}
.mt-\[30px\] {
    margin-top: 30px;
}
.mt-\[32px\] {
    margin-top: 32px;
}
.mt-\[33px\] {
    margin-top: 33px;
}
.mt-\[356px\] {
    margin-top: 356px;
}
.mt-\[3px\] {
    margin-top: 3px;
}
.mt-\[404px\] {
    margin-top: 404px;
}
.mt-\[40px\] {
    margin-top: 40px;
}
.mt-\[42px\] {
    margin-top: 42px;
}
.mt-\[44px\] {
    margin-top: 44px;
}
.mt-\[48px\] {
    margin-top: 48px;
}
.mt-\[4px\] {
    margin-top: 4px;
}
.mt-\[50px\] {
    margin-top: 50px;
}
.mt-\[5px\] {
    margin-top: 5px;
}
.mt-\[60px\] {
    margin-top: 60px;
}
.mt-\[6px\] {
    margin-top: 6px;
}
.mt-\[70px\] {
    margin-top: 70px;
}
.mt-\[80px\] {
    margin-top: 80px;
}
.mt-\[88px\] {
    margin-top: 88px;
}
.mt-\[8px\] {
    margin-top: 8px;
}
.mt-\[92px\] {
    margin-top: 92px;
}
.mt-auto {
    margin-top: auto;
}
.box-border {
    box-sizing: border-box;
}
.box-content {
    box-sizing: content-box;
}
.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.\!inline {
    display: inline !important;
}
.inline {
    display: inline;
}
.\!flex {
    display: flex !important;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.table {
    display: table;
}
.table-row {
    display: table-row;
}
.\!grid {
    display: grid !important;
}
.grid {
    display: grid;
}
.contents {
    display: contents;
}
.list-item {
    display: list-item;
}
.\!hidden {
    display: none !important;
}
.hidden {
    display: none;
}
.\!h-0 {
    height: 0px !important;
}
.\!h-10 {
    height: 2.5rem !important;
}
.\!h-2 {
    height: 0.5rem !important;
}
.\!h-3 {
    height: 0.75rem !important;
}
.\!h-8 {
    height: 2rem !important;
}
.\!h-\[0\.7rem\] {
    height: 0.7rem !important;
}
.\!h-\[100px\] {
    height: 100px !important;
}
.\!h-\[120px\] {
    height: 120px !important;
}
.\!h-\[12px\] {
    height: 12px !important;
}
.\!h-\[13px\] {
    height: 13px !important;
}
.\!h-\[14px\] {
    height: 14px !important;
}
.\!h-\[15px\] {
    height: 15px !important;
}
.\!h-\[18px\] {
    height: 18px !important;
}
.\!h-\[200px\] {
    height: 200px !important;
}
.\!h-\[20px\] {
    height: 20px !important;
}
.\!h-\[240px\] {
    height: 240px !important;
}
.\!h-\[24px\] {
    height: 24px !important;
}
.\!h-\[254px\] {
    height: 254px !important;
}
.\!h-\[32px\] {
    height: 32px !important;
}
.\!h-\[400px\] {
    height: 400px !important;
}
.\!h-\[40px\] {
    height: 40px !important;
}
.\!h-\[424px\] {
    height: 424px !important;
}
.\!h-\[48px\] {
    height: 48px !important;
}
.\!h-\[50px\] {
    height: 50px !important;
}
.\!h-\[64px\] {
    height: 64px !important;
}
.\!h-\[654px\] {
    height: 654px !important;
}
.\!h-\[6px\] {
    height: 6px !important;
}
.\!h-\[70px\] {
    height: 70px !important;
}
.\!h-\[72px\] {
    height: 72px !important;
}
.\!h-\[80px\] {
    height: 80px !important;
}
.\!h-auto {
    height: auto !important;
}
.\!h-full {
    height: 100% !important;
}
.h-0 {
    height: 0px;
}
.h-1\/2 {
    height: 50%;
}
.h-10 {
    height: 2.5rem;
}
.h-108 {
    height: 26rem;
}
.h-12 {
    height: 3rem;
}
.h-16 {
    height: 4rem;
}
.h-2 {
    height: 0.5rem;
}
.h-2\/5 {
    height: 40%;
}
.h-3 {
    height: 0.75rem;
}
.h-3\/5 {
    height: 60%;
}
.h-4 {
    height: 1rem;
}
.h-5 {
    height: 1.25rem;
}
.h-52 {
    height: 13rem;
}
.h-6 {
    height: 1.5rem;
}
.h-7 {
    height: 1.75rem;
}
.h-8 {
    height: 2rem;
}
.h-9 {
    height: 2.25rem;
}
.h-\[1\.1rem\] {
    height: 1.1rem;
}
.h-\[100\%\] {
    height: 100%;
}
.h-\[100px\] {
    height: 100px;
}
.h-\[100vh\] {
    height: 100vh;
}
.h-\[10px\] {
    height: 10px;
}
.h-\[110px\] {
    height: 110px;
}
.h-\[115px\] {
    height: 115px;
}
.h-\[120px\] {
    height: 120px;
}
.h-\[126px\] {
    height: 126px;
}
.h-\[12px\] {
    height: 12px;
}
.h-\[130px\] {
    height: 130px;
}
.h-\[136px\] {
    height: 136px;
}
.h-\[14px\] {
    height: 14px;
}
.h-\[152px\] {
    height: 152px;
}
.h-\[1541px\] {
    height: 1541px;
}
.h-\[15px\] {
    height: 15px;
}
.h-\[164px\] {
    height: 164px;
}
.h-\[166px\] {
    height: 166px;
}
.h-\[16px\] {
    height: 16px;
}
.h-\[175px\] {
    height: 175px;
}
.h-\[178px\] {
    height: 178px;
}
.h-\[180px\] {
    height: 180px;
}
.h-\[18px\] {
    height: 18px;
}
.h-\[192px\] {
    height: 192px;
}
.h-\[198px\] {
    height: 198px;
}
.h-\[1px\] {
    height: 1px;
}
.h-\[200px\] {
    height: 200px;
}
.h-\[20px\] {
    height: 20px;
}
.h-\[214px\] {
    height: 214px;
}
.h-\[220px\] {
    height: 220px;
}
.h-\[222px\] {
    height: 222px;
}
.h-\[224px\] {
    height: 224px;
}
.h-\[22px\] {
    height: 22px;
}
.h-\[230px\] {
    height: 230px;
}
.h-\[232px\] {
    height: 232px;
}
.h-\[24px\] {
    height: 24px;
}
.h-\[256px\] {
    height: 256px;
}
.h-\[260px\] {
    height: 260px;
}
.h-\[26px\] {
    height: 26px;
}
.h-\[270px\] {
    height: 270px;
}
.h-\[276px\] {
    height: 276px;
}
.h-\[277px\] {
    height: 277px;
}
.h-\[286px\] {
    height: 286px;
}
.h-\[28px\] {
    height: 28px;
}
.h-\[2px\] {
    height: 2px;
}
.h-\[300px\] {
    height: 300px;
}
.h-\[301px\] {
    height: 301px;
}
.h-\[304px\] {
    height: 304px;
}
.h-\[30px\] {
    height: 30px;
}
.h-\[312px\] {
    height: 312px;
}
.h-\[314px\] {
    height: 314px;
}
.h-\[324px\] {
    height: 324px;
}
.h-\[32px\] {
    height: 32px;
}
.h-\[33px\] {
    height: 33px;
}
.h-\[35px\] {
    height: 35px;
}
.h-\[361px\] {
    height: 361px;
}
.h-\[36px\] {
    height: 36px;
}
.h-\[37px\] {
    height: 37px;
}
.h-\[388px\] {
    height: 388px;
}
.h-\[407px\] {
    height: 407px;
}
.h-\[40px\] {
    height: 40px;
}
.h-\[428px\] {
    height: 428px;
}
.h-\[42px\] {
    height: 42px;
}
.h-\[43px\] {
    height: 43px;
}
.h-\[445px\] {
    height: 445px;
}
.h-\[446px\] {
    height: 446px;
}
.h-\[44px\] {
    height: 44px;
}
.h-\[45px\] {
    height: 45px;
}
.h-\[480px\] {
    height: 480px;
}
.h-\[48px\] {
    height: 48px;
}
.h-\[4px\] {
    height: 4px;
}
.h-\[50px\] {
    height: 50px;
}
.h-\[512px\] {
    height: 512px;
}
.h-\[51px\] {
    height: 51px;
}
.h-\[520px\] {
    height: 520px;
}
.h-\[52px\] {
    height: 52px;
}
.h-\[538px\] {
    height: 538px;
}
.h-\[556px\] {
    height: 556px;
}
.h-\[55px\] {
    height: 55px;
}
.h-\[56px\] {
    height: 56px;
}
.h-\[57px\] {
    height: 57px;
}
.h-\[585px\] {
    height: 585px;
}
.h-\[600px\] {
    height: 600px;
}
.h-\[60px\] {
    height: 60px;
}
.h-\[62px\] {
    height: 62px;
}
.h-\[64px\] {
    height: 64px;
}
.h-\[658px\] {
    height: 658px;
}
.h-\[65px\] {
    height: 65px;
}
.h-\[66px\] {
    height: 66px;
}
.h-\[696px\] {
    height: 696px;
}
.h-\[6px\] {
    height: 6px;
}
.h-\[70px\] {
    height: 70px;
}
.h-\[72px\] {
    height: 72px;
}
.h-\[75\%\] {
    height: 75%;
}
.h-\[76\.5px\] {
    height: 76.5px;
}
.h-\[800px\] {
    height: 800px;
}
.h-\[80px\] {
    height: 80px;
}
.h-\[82px\] {
    height: 82px;
}
.h-\[861px\] {
    height: 861px;
}
.h-\[86px\] {
    height: 86px;
}
.h-\[87\%\] {
    height: 87%;
}
.h-\[875px\] {
    height: 875px;
}
.h-\[8px\] {
    height: 8px;
}
.h-\[90px\] {
    height: 90px;
}
.h-\[96px\] {
    height: 96px;
}
.h-\[calc\(100vh-200px\)\] {
    height: calc(100vh - 200px);
}
.h-auto {
    height: auto;
}
.h-full {
    height: 100%;
}
.h-screen {
    height: 100vh;
}
.\!max-h-full {
    max-height: 100% !important;
}
.max-h-40 {
    max-height: 10rem;
}
.max-h-72 {
    max-height: 18rem;
}
.max-h-\[0px\] {
    max-height: 0px;
}
.max-h-\[160px\] {
    max-height: 160px;
}
.max-h-\[170px\] {
    max-height: 170px;
}
.max-h-\[300px\] {
    max-height: 300px;
}
.max-h-\[38px\] {
    max-height: 38px;
}
.max-h-\[400px\] {
    max-height: 400px;
}
.max-h-\[480px\] {
    max-height: 480px;
}
.max-h-\[48px\] {
    max-height: 48px;
}
.max-h-\[500px\] {
    max-height: 500px;
}
.max-h-full {
    max-height: 100%;
}
.\!min-h-\[240px\] {
    min-height: 240px !important;
}
.min-h-12 {
    min-height: 3rem;
}
.min-h-36 {
    min-height: 9rem;
}
.min-h-8 {
    min-height: 2rem;
}
.min-h-\[100vh\] {
    min-height: 100vh;
}
.min-h-\[20\%\] {
    min-height: 20%;
}
.min-h-\[200px\] {
    min-height: 200px;
}
.min-h-\[226px\] {
    min-height: 226px;
}
.min-h-\[28px\] {
    min-height: 28px;
}
.min-h-\[350px\] {
    min-height: 350px;
}
.min-h-\[500px\] {
    min-height: 500px;
}
.min-h-\[600px\] {
    min-height: 600px;
}
.min-h-\[696px\] {
    min-height: 696px;
}
.min-h-\[768px\] {
    min-height: 768px;
}
.min-h-full {
    min-height: 100%;
}
.min-h-screen {
    min-height: 100vh;
}
.\!w-10 {
    width: 2.5rem !important;
}
.\!w-2 {
    width: 0.5rem !important;
}
.\!w-3 {
    width: 0.75rem !important;
}
.\!w-8 {
    width: 2rem !important;
}
.\!w-\[0\.7rem\] {
    width: 0.7rem !important;
}
.\!w-\[100\%\] {
    width: 100% !important;
}
.\!w-\[1181px\] {
    width: 1181px !important;
}
.\!w-\[120px\] {
    width: 120px !important;
}
.\!w-\[12px\] {
    width: 12px !important;
}
.\!w-\[14px\] {
    width: 14px !important;
}
.\!w-\[160px\] {
    width: 160px !important;
}
.\!w-\[180px\] {
    width: 180px !important;
}
.\!w-\[18px\] {
    width: 18px !important;
}
.\!w-\[208px\] {
    width: 208px !important;
}
.\!w-\[20px\] {
    width: 20px !important;
}
.\!w-\[240px\] {
    width: 240px !important;
}
.\!w-\[248px\] {
    width: 248px !important;
}
.\!w-\[24px\] {
    width: 24px !important;
}
.\!w-\[30px\] {
    width: 30px !important;
}
.\!w-\[350px\] {
    width: 350px !important;
}
.\!w-\[40px\] {
    width: 40px !important;
}
.\!w-\[420px\] {
    width: 420px !important;
}
.\!w-\[496px\] {
    width: 496px !important;
}
.\!w-\[64px\] {
    width: 64px !important;
}
.\!w-\[6px\] {
    width: 6px !important;
}
.\!w-\[80px\] {
    width: 80px !important;
}
.\!w-\[96px\] {
    width: 96px !important;
}
.\!w-\[auto\] {
    width: auto !important;
}
.\!w-auto {
    width: auto !important;
}
.\!w-full {
    width: 100% !important;
}
.w-0 {
    width: 0px;
}
.w-1 {
    width: 0.25rem;
}
.w-1\/2 {
    width: 50%;
}
.w-10 {
    width: 2.5rem;
}
.w-100 {
    width: 28rem;
}
.w-11\/12 {
    width: 91.666667%;
}
.w-12 {
    width: 3rem;
}
.w-14 {
    width: 3.5rem;
}
.w-16 {
    width: 4rem;
}
.w-2 {
    width: 0.5rem;
}
.w-2\/5 {
    width: 40%;
}
.w-20 {
    width: 5rem;
}
.w-24 {
    width: 6rem;
}
.w-3 {
    width: 0.75rem;
}
.w-3\/5 {
    width: 60%;
}
.w-36 {
    width: 9rem;
}
.w-4 {
    width: 1rem;
}
.w-4\/5 {
    width: 80%;
}
.w-40 {
    width: 10rem;
}
.w-48 {
    width: 12rem;
}
.w-5 {
    width: 1.25rem;
}
.w-5\/12 {
    width: 41.666667%;
}
.w-5\/6 {
    width: 83.333333%;
}
.w-52 {
    width: 13rem;
}
.w-56 {
    width: 14rem;
}
.w-6 {
    width: 1.5rem;
}
.w-7 {
    width: 1.75rem;
}
.w-8 {
    width: 2rem;
}
.w-8\/12 {
    width: 66.666667%;
}
.w-80 {
    width: 20rem;
}
.w-\[0px\] {
    width: 0px;
}
.w-\[100\%\] {
    width: 100%;
}
.w-\[1000\] {
    width: 1000;
}
.w-\[100px\] {
    width: 100px;
}
.w-\[106px\] {
    width: 106px;
}
.w-\[10px\] {
    width: 10px;
}
.w-\[110px\] {
    width: 110px;
}
.w-\[1158px\] {
    width: 1158px;
}
.w-\[116px\] {
    width: 116px;
}
.w-\[1185px\] {
    width: 1185px;
}
.w-\[11px\] {
    width: 11px;
}
.w-\[1200px\] {
    width: 1200px;
}
.w-\[120px\] {
    width: 120px;
}
.w-\[1240px\] {
    width: 1240px;
}
.w-\[128px\] {
    width: 128px;
}
.w-\[12px\] {
    width: 12px;
}
.w-\[130px\] {
    width: 130px;
}
.w-\[136px\] {
    width: 136px;
}
.w-\[144px\] {
    width: 144px;
}
.w-\[14px\] {
    width: 14px;
}
.w-\[150px\] {
    width: 150px;
}
.w-\[152px\] {
    width: 152px;
}
.w-\[154px\] {
    width: 154px;
}
.w-\[15px\] {
    width: 15px;
}
.w-\[160\%\] {
    width: 160%;
}
.w-\[160px\] {
    width: 160px;
}
.w-\[163px\] {
    width: 163px;
}
.w-\[165px\] {
    width: 165px;
}
.w-\[168px\] {
    width: 168px;
}
.w-\[16px\] {
    width: 16px;
}
.w-\[175px\] {
    width: 175px;
}
.w-\[176px\] {
    width: 176px;
}
.w-\[178px\] {
    width: 178px;
}
.w-\[180px\] {
    width: 180px;
}
.w-\[184px\] {
    width: 184px;
}
.w-\[185px\] {
    width: 185px;
}
.w-\[186px\] {
    width: 186px;
}
.w-\[190px\] {
    width: 190px;
}
.w-\[196px\] {
    width: 196px;
}
.w-\[1px\] {
    width: 1px;
}
.w-\[20\%\] {
    width: 20%;
}
.w-\[200px\] {
    width: 200px;
}
.w-\[207px\] {
    width: 207px;
}
.w-\[20px\] {
    width: 20px;
}
.w-\[20vw\] {
    width: 20vw;
}
.w-\[210px\] {
    width: 210px;
}
.w-\[214px\] {
    width: 214px;
}
.w-\[220px\] {
    width: 220px;
}
.w-\[225px\] {
    width: 225px;
}
.w-\[226px\] {
    width: 226px;
}
.w-\[240px\] {
    width: 240px;
}
.w-\[242px\] {
    width: 242px;
}
.w-\[248px\] {
    width: 248px;
}
.w-\[24px\] {
    width: 24px;
}
.w-\[264px\] {
    width: 264px;
}
.w-\[26px\] {
    width: 26px;
}
.w-\[270px\] {
    width: 270px;
}
.w-\[278px\] {
    width: 278px;
}
.w-\[28px\] {
    width: 28px;
}
.w-\[2px\] {
    width: 2px;
}
.w-\[30\%\] {
    width: 30%;
}
.w-\[300px\] {
    width: 300px;
}
.w-\[30px\] {
    width: 30px;
}
.w-\[30vw\] {
    width: 30vw;
}
.w-\[312px\] {
    width: 312px;
}
.w-\[32px\] {
    width: 32px;
}
.w-\[345px\] {
    width: 345px;
}
.w-\[350px\] {
    width: 350px;
}
.w-\[35px\] {
    width: 35px;
}
.w-\[364px\] {
    width: 364px;
}
.w-\[36px\] {
    width: 36px;
}
.w-\[370px\] {
    width: 370px;
}
.w-\[380px\] {
    width: 380px;
}
.w-\[390px\] {
    width: 390px;
}
.w-\[396px\] {
    width: 396px;
}
.w-\[3px\] {
    width: 3px;
}
.w-\[40\%\] {
    width: 40%;
}
.w-\[400px\] {
    width: 400px;
}
.w-\[40px\] {
    width: 40px;
}
.w-\[40vw\] {
    width: 40vw;
}
.w-\[410px\] {
    width: 410px;
}
.w-\[42px\] {
    width: 42px;
}
.w-\[444px\] {
    width: 444px;
}
.w-\[44px\] {
    width: 44px;
}
.w-\[450px\] {
    width: 450px;
}
.w-\[452px\] {
    width: 452px;
}
.w-\[45px\] {
    width: 45px;
}
.w-\[46px\] {
    width: 46px;
}
.w-\[480px\] {
    width: 480px;
}
.w-\[482px\] {
    width: 482px;
}
.w-\[48px\] {
    width: 48px;
}
.w-\[50\%\] {
    width: 50%;
}
.w-\[500px\] {
    width: 500px;
}
.w-\[50px\] {
    width: 50px;
}
.w-\[520px\] {
    width: 520px;
}
.w-\[52px\] {
    width: 52px;
}
.w-\[53px\] {
    width: 53px;
}
.w-\[55\%\] {
    width: 55%;
}
.w-\[56px\] {
    width: 56px;
}
.w-\[5px\] {
    width: 5px;
}
.w-\[60\%\] {
    width: 60%;
}
.w-\[600px\] {
    width: 600px;
}
.w-\[604px\] {
    width: 604px;
}
.w-\[60px\] {
    width: 60px;
}
.w-\[63px\] {
    width: 63px;
}
.w-\[640px\] {
    width: 640px;
}
.w-\[64px\] {
    width: 64px;
}
.w-\[698px\] {
    width: 698px;
}
.w-\[6px\] {
    width: 6px;
}
.w-\[70\%\] {
    width: 70%;
}
.w-\[70px\] {
    width: 70px;
}
.w-\[72px\] {
    width: 72px;
}
.w-\[74px\] {
    width: 74px;
}
.w-\[75px\] {
    width: 75px;
}
.w-\[78px\] {
    width: 78px;
}
.w-\[80\%\] {
    width: 80%;
}
.w-\[80px\] {
    width: 80px;
}
.w-\[82\%\] {
    width: 82%;
}
.w-\[83\%\] {
    width: 83%;
}
.w-\[84px\] {
    width: 84px;
}
.w-\[856px\] {
    width: 856px;
}
.w-\[860px\] {
    width: 860px;
}
.w-\[861px\] {
    width: 861px;
}
.w-\[86px\] {
    width: 86px;
}
.w-\[88px\] {
    width: 88px;
}
.w-\[8px\] {
    width: 8px;
}
.w-\[90\%\] {
    width: 90%;
}
.w-\[90px\] {
    width: 90px;
}
.w-\[94px\] {
    width: 94px;
}
.w-\[96px\] {
    width: 96px;
}
.w-\[98\%\] {
    width: 98%;
}
.w-\[993px\] {
    width: 993px;
}
.w-auto {
    width: auto;
}
.w-full {
    width: 100%;
}
.w-max {
    width: max-content;
}
.w-screen {
    width: 100vw;
}
.min-w-48 {
    min-width: 12rem;
}
.min-w-8 {
    min-width: 2rem;
}
.min-w-\[150px\] {
    min-width: 150px;
}
.min-w-\[230px\] {
    min-width: 230px;
}
.min-w-\[40px\] {
    min-width: 40px;
}
.min-w-\[42px\] {
    min-width: 42px;
}
.min-w-\[56px\] {
    min-width: 56px;
}
.min-w-\[64px\] {
    min-width: 64px;
}
.min-w-\[68px\] {
    min-width: 68px;
}
.min-w-\[752px\] {
    min-width: 752px;
}
.min-w-\[80px\] {
    min-width: 80px;
}
.min-w-\[90px\] {
    min-width: 90px;
}
.min-w-\[96px\] {
    min-width: 96px;
}
.max-w-56 {
    max-width: 14rem;
}
.max-w-96 {
    max-width: 24rem;
}
.max-w-\[100px\] {
    max-width: 100px;
}
.max-w-\[1200px\] {
    max-width: 1200px;
}
.max-w-\[120px\] {
    max-width: 120px;
}
.max-w-\[125px\] {
    max-width: 125px;
}
.max-w-\[199px\] {
    max-width: 199px;
}
.max-w-\[200px\] {
    max-width: 200px;
}
.max-w-\[220px\] {
    max-width: 220px;
}
.max-w-\[224px\] {
    max-width: 224px;
}
.max-w-\[240px\] {
    max-width: 240px;
}
.max-w-\[300px\] {
    max-width: 300px;
}
.max-w-\[350px\] {
    max-width: 350px;
}
.max-w-\[360px\] {
    max-width: 360px;
}
.max-w-\[38px\] {
    max-width: 38px;
}
.max-w-\[400px\] {
    max-width: 400px;
}
.max-w-\[455px\] {
    max-width: 455px;
}
.max-w-\[48px\] {
    max-width: 48px;
}
.max-w-\[50px\] {
    max-width: 50px;
}
.max-w-\[600px\] {
    max-width: 600px;
}
.max-w-\[605px\] {
    max-width: 605px;
}
.max-w-\[632px\] {
    max-width: 632px;
}
.max-w-\[728px\] {
    max-width: 728px;
}
.max-w-\[845px\] {
    max-width: 845px;
}
.max-w-\[860px\] {
    max-width: 860px;
}
.max-w-full {
    max-width: 100%;
}
.flex-1 {
    flex: 1 1;
}
.flex-auto {
    flex: 1 1 auto;
}
.flex-none {
    flex: none;
}
.flex-shrink {
    flex-shrink: 1;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.shrink {
    flex-shrink: 1;
}
.flex-grow {
    flex-grow: 1;
}
.flex-grow-0 {
    flex-grow: 0;
}
.grow {
    flex-grow: 1;
}
.border-collapse {
    border-collapse: collapse;
}
.\!translate-x-\[-21px\] {
    --tw-translate-x: -21px !important;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-full {
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-\[1px\] {
    --tw-translate-y: -1px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-full {
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-12px\] {
    --tw-translate-x: -12px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-20px\] {
    --tw-translate-x: -20px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-32px\] {
    --tw-translate-x: -32px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\] {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[280px\] {
    --tw-translate-x: 280px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[96px\] {
    --tw-translate-x: 96px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-full {
    --tw-translate-x: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-100px\] {
    --tw-translate-y: -100px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-219px\] {
    --tw-translate-y: -219px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\] {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-80\%\] {
    --tw-translate-y: -80%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[50\%\] {
    --tw-translate-y: 50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[7\.5\%\] {
    --tw-translate-y: 7.5%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-180 {
    --tw-rotate: -180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[-90deg\] {
    --tw-rotate: -90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[180deg\] {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[45deg\] {
    --tw-rotate: 45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-90 {
    --tw-scale-x: .9;
    --tw-scale-y: .9;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[0\.7\] {
    --tw-scale-x: 0.7;
    --tw-scale-y: 0.7;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[0\.83333\] {
    --tw-scale-x: 0.83333;
    --tw-scale-y: 0.83333;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\.5\] {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\!transform-none {
    transform: none !important;
}
@keyframes bounce {

    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}
.animate-bounce {
    animation: bounce 1s infinite;
}
@keyframes ping {

    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse {

    50% {
        opacity: .5;
    }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

    to {
        transform: rotate(360deg);
    }
}
.animate-spin {
    animation: spin 1s linear infinite;
}
.\!cursor-not-allowed {
    cursor: not-allowed !important;
}
.cursor-auto {
    cursor: auto;
}
.cursor-default {
    cursor: default;
}
.cursor-ew-resize {
    cursor: ew-resize;
}
.cursor-move {
    cursor: move;
}
.cursor-not-allowed {
    cursor: not-allowed;
}
.cursor-pointer {
    cursor: pointer;
}
.touch-none {
    touch-action: none;
}
.select-none {
    -webkit-user-select: none;
            user-select: none;
}
.select-all {
    -webkit-user-select: all;
            user-select: all;
}
.resize {
    resize: both;
}
.scroll-p-0 {
    scroll-padding: 0px;
}
.list-none {
    list-style-type: none;
}
.grid-flow-row {
    grid-auto-flow: row;
}
.auto-rows-max {
    grid-auto-rows: max-content;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-rows-\[max-content\] {
    grid-template-rows: max-content;
}
.\!flex-row {
    flex-direction: row !important;
}
.flex-row {
    flex-direction: row;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.flex-col {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.content-center {
    align-content: center;
}
.\!items-start {
    align-items: flex-start !important;
}
.items-start {
    align-items: flex-start;
}
.\!items-end {
    align-items: flex-end !important;
}
.items-end {
    align-items: flex-end;
}
.\!items-center {
    align-items: center !important;
}
.items-center {
    align-items: center;
}
.items-stretch {
    align-items: stretch;
}
.\!justify-start {
    justify-content: flex-start !important;
}
.justify-start {
    justify-content: flex-start;
}
.\!justify-end {
    justify-content: flex-end !important;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.\!justify-between {
    justify-content: space-between !important;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}
.justify-items-end {
    justify-items: end;
}
.justify-items-stretch {
    justify-items: stretch;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-\[14px\] {
    gap: 14px;
}
.gap-\[15px\] {
    gap: 15px;
}
.gap-\[20px\] {
    gap: 20px;
}
.gap-\[24px\] {
    gap: 24px;
}
.gap-\[34px\] {
    gap: 34px;
}
.gap-\[41px\] {
    gap: 41px;
}
.gap-\[5\%\] {
    gap: 5%;
}
.gap-\[5px\] {
    gap: 5px;
}
.gap-\[8px\] {
    gap: 8px;
}
.gap-x-0\.5 {
    column-gap: 0.125rem;
}
.gap-x-1 {
    column-gap: 0.25rem;
}
.gap-x-2 {
    column-gap: 0.5rem;
}
.gap-x-4 {
    column-gap: 1rem;
}
.gap-x-5 {
    column-gap: 1.25rem;
}
.gap-x-8 {
    column-gap: 2rem;
}
.gap-x-\[6px\] {
    column-gap: 6px;
}
.gap-y-2 {
    row-gap: 0.5rem;
}
.gap-y-3 {
    row-gap: 0.75rem;
}
.gap-y-\[12px\] {
    row-gap: 12px;
}
.gap-y-\[5px\] {
    row-gap: 5px;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-divide-opacity));
}
.self-start {
    align-self: flex-start;
}
.self-end {
    align-self: flex-end;
}
.self-center {
    align-self: center;
}
.\!overflow-auto {
    overflow: auto !important;
}
.overflow-auto {
    overflow: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-scroll {
    overflow: scroll;
}
.overflow-y-auto {
    overflow-y: auto;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.overflow-y-hidden {
    overflow-y: hidden;
}
.overflow-y-scroll {
    overflow-y: scroll;
}
.overscroll-none {
    overscroll-behavior: none;
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.overflow-ellipsis {
    text-overflow: ellipsis;
}
.text-ellipsis {
    text-overflow: ellipsis;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.whitespace-pre-line {
    white-space: pre-line;
}
.whitespace-pre-wrap {
    white-space: pre-wrap;
}
.break-words {
    overflow-wrap: break-word;
}
.break-all {
    word-break: break-all;
}
.\!rounded-12 {
    border-radius: 12px !important;
}
.rounded {
    border-radius: 8px;
}
.rounded-12 {
    border-radius: 12px;
}
.rounded-3xl {
    border-radius: 1.5rem;
}
.rounded-\[10px\] {
    border-radius: 10px;
}
.rounded-\[11px\] {
    border-radius: 11px;
}
.rounded-\[12px\] {
    border-radius: 12px;
}
.rounded-\[14px\] {
    border-radius: 14px;
}
.rounded-\[16px\] {
    border-radius: 16px;
}
.rounded-\[18px\] {
    border-radius: 18px;
}
.rounded-\[20px\] {
    border-radius: 20px;
}
.rounded-\[22px\] {
    border-radius: 22px;
}
.rounded-\[2px\] {
    border-radius: 2px;
}
.rounded-\[40px\] {
    border-radius: 40px;
}
.rounded-\[4px\] {
    border-radius: 4px;
}
.rounded-\[50\%\] {
    border-radius: 50%;
}
.rounded-\[6px\] {
    border-radius: 6px;
}
.rounded-\[8px\] {
    border-radius: 8px;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-lg {
    border-radius: 20px;
}
.rounded-md {
    border-radius: 16px;
}
.rounded-sm {
    border-radius: 4px;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.rounded-b {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
.rounded-b-\[8px\] {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
.rounded-l-\[16px\] {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}
.rounded-l-\[18px\] {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}
.rounded-r-\[16px\] {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}
.rounded-r-sm {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.rounded-t {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.rounded-t-\[10px\] {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.rounded-t-\[8px\] {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.rounded-tl-\[4px\] {
    border-top-left-radius: 4px;
}
.rounded-tr-\[4px\] {
    border-top-right-radius: 4px;
}
.border {
    border-width: 1px;
}
.border-1 {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}
.border-\[1px\] {
    border-width: 1px;
}
.border-\[2px\] {
    border-width: 2px;
}
.border-y-4 {
    border-top-width: 4px;
    border-bottom-width: 4px;
}
.border-b {
    border-bottom-width: 1px;
}
.border-b-0 {
    border-bottom-width: 0px;
}
.border-b-1 {
    border-bottom-width: 1px;
}
.border-b-\[1px\] {
    border-bottom-width: 1px;
}
.border-l {
    border-left-width: 1px;
}
.border-l-1 {
    border-left-width: 1px;
}
.border-l-\[2px\] {
    border-left-width: 2px;
}
.border-r {
    border-right-width: 1px;
}
.border-r-1 {
    border-right-width: 1px;
}
.border-r-\[1px\] {
    border-right-width: 1px;
}
.border-t {
    border-top-width: 1px;
}
.border-t-0 {
    border-top-width: 0px;
}
.border-t-1 {
    border-top-width: 1px;
}
.border-t-\[1px\] {
    border-top-width: 1px;
}
.border-solid {
    border-style: solid;
}
.\!border-\[\#3569FD\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(53 105 253 / var(--tw-border-opacity)) !important;
}
.\!border-\[\#C8C9CC\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(200 201 204 / var(--tw-border-opacity)) !important;
}
.\!border-\[\#d0d3d6\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(208 211 214 / var(--tw-border-opacity)) !important;
}
.\!border-transparent {
    border-color: transparent !important;
}
.border-\[\#165DFF\] {
    --tw-border-opacity: 1;
    border-color: rgb(22 93 255 / var(--tw-border-opacity));
}
.border-\[\#333\] {
    --tw-border-opacity: 1;
    border-color: rgb(51 51 51 / var(--tw-border-opacity));
}
.border-\[\#CCCCCC\] {
    --tw-border-opacity: 1;
    border-color: rgb(204 204 204 / var(--tw-border-opacity));
}
.border-\[\#E4E4E4\] {
    --tw-border-opacity: 1;
    border-color: rgb(228 228 228 / var(--tw-border-opacity));
}
.border-\[\#EEEEEE\] {
    --tw-border-opacity: 1;
    border-color: rgb(238 238 238 / var(--tw-border-opacity));
}
.border-\[\#EEEEF0\] {
    --tw-border-opacity: 1;
    border-color: rgb(238 238 240 / var(--tw-border-opacity));
}
.border-\[\#F5F5F5\] {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity));
}
.border-\[\#FF5800\] {
    --tw-border-opacity: 1;
    border-color: rgb(255 88 0 / var(--tw-border-opacity));
}
.border-\[\#dee0e3\] {
    --tw-border-opacity: 1;
    border-color: rgb(222 224 227 / var(--tw-border-opacity));
}
.border-\[\#e4e4e4\] {
    --tw-border-opacity: 1;
    border-color: rgb(228 228 228 / var(--tw-border-opacity));
}
.border-\[\#e5e7eb\] {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-\[\#ebebeb\] {
    --tw-border-opacity: 1;
    border-color: rgb(235 235 235 / var(--tw-border-opacity));
}
.border-\[\#eee\] {
    --tw-border-opacity: 1;
    border-color: rgb(238 238 238 / var(--tw-border-opacity));
}
.border-\[\#f0f0f0\] {
    --tw-border-opacity: 1;
    border-color: rgb(240 240 240 / var(--tw-border-opacity));
}
.border-\[\#ffc058\] {
    --tw-border-opacity: 1;
    border-color: rgb(255 192 88 / var(--tw-border-opacity));
}
.border-\[\#fff\] {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-\[rgba\(0\2c 0\2c 0\2c 0\)\] {
    border-color: rgba(0,0,0,0);
}
.border-black {
    border-color: var(--black);
}
.border-border-color {
    border-color: var(--border-color);
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-highlight {
    border-color: var(--highlight);
}
.border-link {
    border-color: var(--link);
}
.border-primary {
    border-color: var(--ft-primary-color);
}
.border-transparent {
    border-color: transparent;
}
.border-white {
    border-color: var(--white);
}
.border-b-\[\#eee\] {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(238 238 238 / var(--tw-border-opacity));
}
.border-r-border-color {
    border-right-color: var(--border-color);
}
.\!bg-\[\#1375ff\] {
    background-color: #1375ff !important;
}
.\!bg-\[\#3370ff\] {
    background-color: #3370ff !important;
}
.\!bg-\[\#3569FD\] {
    background-color: #3569FD !important;
}
.\!bg-\[\#E70000\] {
    background-color: #E70000 !important;
}
.\!bg-\[\#fff\] {
    background-color: #fff !important;
}
.\!bg-bg-primary {
    background-color: var(--bg-primary) !important;
}
.\!bg-transparent {
    background-color: transparent !important;
}
.\!bg-white {
    background-color: var(--white) !important;
}
.bg-\[\#000000\] {
    background-color: #000000;
}
.bg-\[\#1B7EF2\] {
    background-color: #1B7EF2;
}
.bg-\[\#1DB609\] {
    background-color: #1DB609;
}
.bg-\[\#333\] {
    background-color: #333;
}
.bg-\[\#3a89fe\] {
    background-color: #3a89fe;
}
.bg-\[\#5373FF\] {
    background-color: #5373FF;
}
.bg-\[\#6871ef99\] {
    background-color: #6871ef99;
}
.bg-\[\#C0DBF9\] {
    background-color: #C0DBF9;
}
.bg-\[\#D9E4FA\] {
    background-color: #D9E4FA;
}
.bg-\[\#E0EAFF\] {
    background-color: #E0EAFF;
}
.bg-\[\#E3E8EF\] {
    background-color: #E3E8EF;
}
.bg-\[\#E9F7F7\] {
    background-color: #E9F7F7;
}
.bg-\[\#EBE2FE\] {
    background-color: #EBE2FE;
}
.bg-\[\#EFF6F3\] {
    background-color: #EFF6F3;
}
.bg-\[\#F0F0F0\] {
    background-color: #F0F0F0;
}
.bg-\[\#F1F1F8\] {
    background-color: #F1F1F8;
}
.bg-\[\#F1F7FF\] {
    background-color: #F1F7FF;
}
.bg-\[\#F2F4F7\] {
    background-color: #F2F4F7;
}
.bg-\[\#F3F1FF\] {
    background-color: #F3F1FF;
}
.bg-\[\#F3F6FF\] {
    background-color: #F3F6FF;
}
.bg-\[\#F3F8FC\] {
    background-color: #F3F8FC;
}
.bg-\[\#F4F6F9\] {
    background-color: #F4F6F9;
}
.bg-\[\#F5F5F5\] {
    background-color: #F5F5F5;
}
.bg-\[\#F5F6FF\] {
    background-color: #F5F6FF;
}
.bg-\[\#F7F7F7\] {
    background-color: #F7F7F7;
}
.bg-\[\#F7F7FC\] {
    background-color: #F7F7FC;
}
.bg-\[\#F8F4F1\] {
    background-color: #F8F4F1;
}
.bg-\[\#FC5800\] {
    background-color: #FC5800;
}
.bg-\[\#FCF6E7\] {
    background-color: #FCF6E7;
}
.bg-\[\#FEDB9F\] {
    background-color: #FEDB9F;
}
.bg-\[\#FEF4E2\] {
    background-color: #FEF4E2;
}
.bg-\[\#FFE9E4\]\/\[0\.4\] {
    background-color: rgb(255 233 228 / 0.4);
}
.bg-\[\#FFEBD5\] {
    background-color: #FFEBD5;
}
.bg-\[\#FFEDDA\] {
    background-color: #FFEDDA;
}
.bg-\[\#b700ff5c\] {
    background-color: #b700ff5c;
}
.bg-\[\#ccc\] {
    background-color: #ccc;
}
.bg-\[\#d7d7d7\] {
    background-color: #d7d7d7;
}
.bg-\[\#dad9f9\] {
    background-color: #dad9f9;
}
.bg-\[\#e7e7e7\] {
    background-color: #e7e7e7;
}
.bg-\[\#e8ffea\] {
    background-color: #e8ffea;
}
.bg-\[\#eee\] {
    background-color: #eee;
}
.bg-\[\#efefef\] {
    background-color: #efefef;
}
.bg-\[\#f0f0f0\] {
    background-color: #f0f0f0;
}
.bg-\[\#f0f4ff\] {
    background-color: #f0f4ff;
}
.bg-\[\#f2f3f5\] {
    background-color: #f2f3f5;
}
.bg-\[\#f5f6f7\] {
    background-color: #f5f6f7;
}
.bg-\[\#f5f9ff\] {
    background-color: #f5f9ff;
}
.bg-\[\#f6f9f9\] {
    background-color: #f6f9f9;
}
.bg-\[\#f7f7f7\] {
    background-color: #f7f7f7;
}
.bg-\[\#f7f7f9\] {
    background-color: #f7f7f9;
}
.bg-\[\#f8faff\] {
    background-color: #f8faff;
}
.bg-\[\#ffe85a\] {
    background-color: #ffe85a;
}
.bg-\[\#fff\] {
    background-color: #fff;
}
.bg-\[pink\] {
    background-color: pink;
}
.bg-\[rgba\(27\2c 126\2c 242\2c 0\.15\)\] {
    background-color: rgba(27,126,242,0.15);
}
.bg-bg-primary {
    background-color: var(--bg-primary);
}
.bg-black-300 {
    background-color: var(--black-300);
}
.bg-border-color {
    background-color: var(--border-color);
}
.bg-dark {
    background-color: var(--dark);
}
.bg-disable {
    background-color: var(--disable);
}
.bg-gray-100 {
    background-color: #f3f4f6;
}
.bg-gray-200 {
    background-color: #e5e7eb;
}
.bg-gray-300 {
    background-color: #d1d5db;
}
.bg-gray-50 {
    background-color: #f9fafb;
}
.bg-gray-500 {
    background-color: #6b7280;
}
.bg-indigo-500 {
    background-color: #6366f1;
}
.bg-light {
    background-color: var(--light);
}
.bg-link {
    background-color: var(--link);
}
.bg-orange {
    background-color: var(--orange);
}
.bg-pink-500 {
    background-color: #ec4899;
}
.bg-purple-500 {
    background-color: #8b5cf6;
}
.bg-transparent {
    background-color: transparent;
}
.bg-trueGray-50 {
    background-color: #fafafa;
}
.bg-white {
    background-color: var(--white);
}
.bg-yellow-300 {
    background-color: var(--yellow-300);
}
.bg-\[linear-gradient\(0deg\2c _\#e9e9e9bd\2c _\#e9e9e980\)\] {
    background-image: linear-gradient(0deg, #e9e9e9bd, #e9e9e980);
}
.bg-\[url\(\'assets\/images\/methodOne\.png\'\)\] {
    background-image: url(data:image/png;base64,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);
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-\[\#128987\] {
    --tw-gradient-from: #128987 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(18 137 135 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#3a63d3\] {
    --tw-gradient-from: #3a63d3 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(58 99 211 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#FF71AD\] {
    --tw-gradient-from: #FF71AD var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 113 173 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#1d4da5\] {
    --tw-gradient-to: #1d4da5 var(--tw-gradient-to-position);
}
.to-\[\#2842be\] {
    --tw-gradient-to: #2842be var(--tw-gradient-to-position);
}
.to-\[\#FFA852\] {
    --tw-gradient-to: #FFA852 var(--tw-gradient-to-position);
}
.bg-cover {
    background-size: cover;
}
.\!bg-repeat {
    background-repeat: repeat !important;
}
.\!bg-no-repeat {
    background-repeat: no-repeat !important;
}
.\!bg-repeat-x {
    background-repeat: repeat-x !important;
}
.\!bg-repeat-y {
    background-repeat: repeat-y !important;
}
.\!bg-repeat-round {
    background-repeat: round !important;
}
.\!bg-repeat-space {
    background-repeat: space !important;
}
.object-contain {
    object-fit: contain;
}
.object-cover {
    object-fit: cover;
}
.\!p-0 {
    padding: 0px !important;
}
.p-0 {
    padding: 0px;
}
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-4 {
    padding: 1rem;
}
.p-5 {
    padding: 1.25rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-\[10px\] {
    padding: 10px;
}
.p-\[11px\] {
    padding: 11px;
}
.p-\[12px\] {
    padding: 12px;
}
.p-\[16px\] {
    padding: 16px;
}
.p-\[18px\] {
    padding: 18px;
}
.p-\[20px\] {
    padding: 20px;
}
.p-\[24px\] {
    padding: 24px;
}
.p-\[25px\] {
    padding: 25px;
}
.p-\[2px\] {
    padding: 2px;
}
.p-\[30px\] {
    padding: 30px;
}
.p-\[32px\] {
    padding: 32px;
}
.p-\[40px\] {
    padding: 40px;
}
.p-\[48px\] {
    padding: 48px;
}
.p-\[4px\] {
    padding: 4px;
}
.p-\[5px\] {
    padding: 5px;
}
.p-\[6px\] {
    padding: 6px;
}
.p-\[8px\] {
    padding: 8px;
}
.p-\[9px\] {
    padding: 9px;
}
.\!px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.\!px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
}
.\!px-\[2px\] {
    padding-left: 2px !important;
    padding-right: 2px !important;
}
.\!px-\[7px\] {
    padding-left: 7px !important;
    padding-right: 7px !important;
}
.\!py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
}
.px-0 {
    padding-left: 0px;
    padding-right: 0px;
}
.px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
}
.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.px-\[0\] {
    padding-left: 0;
    padding-right: 0;
}
.px-\[10px\] {
    padding-left: 10px;
    padding-right: 10px;
}
.px-\[11px\] {
    padding-left: 11px;
    padding-right: 11px;
}
.px-\[12px\] {
    padding-left: 12px;
    padding-right: 12px;
}
.px-\[15px\] {
    padding-left: 15px;
    padding-right: 15px;
}
.px-\[16px\] {
    padding-left: 16px;
    padding-right: 16px;
}
.px-\[20px\] {
    padding-left: 20px;
    padding-right: 20px;
}
.px-\[24px\] {
    padding-left: 24px;
    padding-right: 24px;
}
.px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
}
.px-\[40px\] {
    padding-left: 40px;
    padding-right: 40px;
}
.px-\[48px\] {
    padding-left: 48px;
    padding-right: 48px;
}
.px-\[4px\] {
    padding-left: 4px;
    padding-right: 4px;
}
.px-\[7px\] {
    padding-left: 7px;
    padding-right: 7px;
}
.px-\[80px\] {
    padding-left: 80px;
    padding-right: 80px;
}
.px-\[8px\] {
    padding-left: 8px;
    padding-right: 8px;
}
.px-\[9px\] {
    padding-left: 9px;
    padding-right: 9px;
}
.px-\[px\] {
    padding-left: px;
    padding-right: px;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-\[10px\] {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py-\[12px\] {
    padding-top: 12px;
    padding-bottom: 12px;
}
.py-\[132px\] {
    padding-top: 132px;
    padding-bottom: 132px;
}
.py-\[13px\] {
    padding-top: 13px;
    padding-bottom: 13px;
}
.py-\[15px\] {
    padding-top: 15px;
    padding-bottom: 15px;
}
.py-\[16px\] {
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-\[20px\] {
    padding-top: 20px;
    padding-bottom: 20px;
}
.py-\[24px\] {
    padding-top: 24px;
    padding-bottom: 24px;
}
.py-\[2px\] {
    padding-top: 2px;
    padding-bottom: 2px;
}
.py-\[32px\] {
    padding-top: 32px;
    padding-bottom: 32px;
}
.py-\[3px\] {
    padding-top: 3px;
    padding-bottom: 3px;
}
.py-\[40px\] {
    padding-top: 40px;
    padding-bottom: 40px;
}
.py-\[48px\] {
    padding-top: 48px;
    padding-bottom: 48px;
}
.py-\[4px\] {
    padding-top: 4px;
    padding-bottom: 4px;
}
.py-\[50px\] {
    padding-top: 50px;
    padding-bottom: 50px;
}
.py-\[5px\] {
    padding-top: 5px;
    padding-bottom: 5px;
}
.py-\[6px\] {
    padding-top: 6px;
    padding-bottom: 6px;
}
.py-\[70px\] {
    padding-top: 70px;
    padding-bottom: 70px;
}
.py-\[8px\] {
    padding-top: 8px;
    padding-bottom: 8px;
}
.\!pl-0 {
    padding-left: 0px !important;
}
.\!pr-\[8px\] {
    padding-right: 8px !important;
}
.pb-0 {
    padding-bottom: 0px;
}
.pb-1 {
    padding-bottom: 0.25rem;
}
.pb-10 {
    padding-bottom: 2.5rem;
}
.pb-12 {
    padding-bottom: 12px;
}
.pb-2 {
    padding-bottom: 0.5rem;
}
.pb-24 {
    padding-bottom: 6rem;
}
.pb-3 {
    padding-bottom: 0.75rem;
}
.pb-4 {
    padding-bottom: 1rem;
}
.pb-6 {
    padding-bottom: 1.5rem;
}
.pb-8 {
    padding-bottom: 2rem;
}
.pb-\[0\] {
    padding-bottom: 0;
}
.pb-\[10px\] {
    padding-bottom: 10px;
}
.pb-\[12px\] {
    padding-bottom: 12px;
}
.pb-\[16px\] {
    padding-bottom: 16px;
}
.pb-\[20px\] {
    padding-bottom: 20px;
}
.pb-\[24px\] {
    padding-bottom: 24px;
}
.pb-\[28px\] {
    padding-bottom: 28px;
}
.pb-\[3px\] {
    padding-bottom: 3px;
}
.pb-\[4px\] {
    padding-bottom: 4px;
}
.pb-\[50px\] {
    padding-bottom: 50px;
}
.pb-\[64px\] {
    padding-bottom: 64px;
}
.pb-\[8px\] {
    padding-bottom: 8px;
}
.pb-\[9px\] {
    padding-bottom: 9px;
}
.pl-0\.5 {
    padding-left: 0.125rem;
}
.pl-1 {
    padding-left: 0.25rem;
}
.pl-1\.5 {
    padding-left: 0.375rem;
}
.pl-2 {
    padding-left: 0.5rem;
}
.pl-24px {
    padding-left: 24px;
}
.pl-3 {
    padding-left: 0.75rem;
}
.pl-4 {
    padding-left: 1rem;
}
.pl-8 {
    padding-left: 2rem;
}
.pl-\[10px\] {
    padding-left: 10px;
}
.pl-\[12px\] {
    padding-left: 12px;
}
.pl-\[14px\] {
    padding-left: 14px;
}
.pl-\[15px\] {
    padding-left: 15px;
}
.pl-\[16px\] {
    padding-left: 16px;
}
.pl-\[190px\] {
    padding-left: 190px;
}
.pl-\[20px\] {
    padding-left: 20px;
}
.pl-\[22px\] {
    padding-left: 22px;
}
.pl-\[24px\] {
    padding-left: 24px;
}
.pl-\[40px\] {
    padding-left: 40px;
}
.pl-\[44px\] {
    padding-left: 44px;
}
.pl-\[5px\] {
    padding-left: 5px;
}
.pl-\[7px\] {
    padding-left: 7px;
}
.pl-\[80px\] {
    padding-left: 80px;
}
.pl-\[8px\] {
    padding-left: 8px;
}
.pr-0 {
    padding-right: 0px;
}
.pr-1 {
    padding-right: 0.25rem;
}
.pr-10 {
    padding-right: 2.5rem;
}
.pr-2 {
    padding-right: 0.5rem;
}
.pr-3 {
    padding-right: 0.75rem;
}
.pr-36 {
    padding-right: 9rem;
}
.pr-6 {
    padding-right: 1.5rem;
}
.pr-8 {
    padding-right: 2rem;
}
.pr-\[102px\] {
    padding-right: 102px;
}
.pr-\[12px\] {
    padding-right: 12px;
}
.pr-\[20px\] {
    padding-right: 20px;
}
.pr-\[2px\] {
    padding-right: 2px;
}
.pr-\[48px\] {
    padding-right: 48px;
}
.pr-\[4px\] {
    padding-right: 4px;
}
.pr-\[60px\] {
    padding-right: 60px;
}
.pt-0\.5 {
    padding-top: 0.125rem;
}
.pt-1 {
    padding-top: 0.25rem;
}
.pt-10 {
    padding-top: 2.5rem;
}
.pt-14 {
    padding-top: 3.5rem;
}
.pt-2 {
    padding-top: 0.5rem;
}
.pt-20 {
    padding-top: 5rem;
}
.pt-3 {
    padding-top: 0.75rem;
}
.pt-4 {
    padding-top: 1rem;
}
.pt-5 {
    padding-top: 1.25rem;
}
.pt-6 {
    padding-top: 1.5rem;
}
.pt-8 {
    padding-top: 2rem;
}
.pt-9 {
    padding-top: 2.25rem;
}
.pt-\[0\] {
    padding-top: 0;
}
.pt-\[102px\] {
    padding-top: 102px;
}
.pt-\[10px\] {
    padding-top: 10px;
}
.pt-\[14px\] {
    padding-top: 14px;
}
.pt-\[15px\] {
    padding-top: 15px;
}
.pt-\[16px\] {
    padding-top: 16px;
}
.pt-\[20px\] {
    padding-top: 20px;
}
.pt-\[22px\] {
    padding-top: 22px;
}
.pt-\[24px\] {
    padding-top: 24px;
}
.pt-\[32px\] {
    padding-top: 32px;
}
.pt-\[42px\] {
    padding-top: 42px;
}
.pt-\[48px\] {
    padding-top: 48px;
}
.pt-\[5px\] {
    padding-top: 5px;
}
.pt-\[65px\] {
    padding-top: 65px;
}
.pt-\[8px\] {
    padding-top: 8px;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.indent-\[2em\] {
    text-indent: 2em;
}
.align-middle {
    vertical-align: middle;
}
.font-hm {
    font-family: HarmonyOS_Sans;
}
.font-sans {
    font-family: HarmonyOS Sans SC, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.\!text-12 {
    font-size: 12px !important;
}
.\!text-14 {
    font-size: 14px !important;
}
.\!text-16 {
    font-size: 16px !important;
}
.\!text-18 {
    font-size: 18px !important;
}
.\!text-24 {
    font-size: 24px !important;
}
.\!text-\[12px\] {
    font-size: 12px !important;
}
.\!text-\[14px\] {
    font-size: 14px !important;
}
.\!text-\[20px\] {
    font-size: 20px !important;
}
.\!text-\[24px\] {
    font-size: 24px !important;
}
.\!text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
}
.text-12 {
    font-size: 12px;
}
.text-13 {
    font-size: 13px;
}
.text-14 {
    font-size: 14px;
}
.text-14px {
    font-size: 14px;
}
.text-16 {
    font-size: 16px;
}
.text-18 {
    font-size: 18px;
}
.text-18px {
    font-size: 18px;
}
.text-19 {
    font-size: 19px;
}
.text-20 {
    font-size: 20px;
}
.text-24 {
    font-size: 24px;
}
.text-26 {
    font-size: 26px;
}
.text-26px {
    font-size: 26px;
}
.text-28 {
    font-size: 28px;
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-30 {
    font-size: 30px;
}
.text-32 {
    font-size: 32px;
}
.text-36 {
    font-size: 36px;
}
.text-40 {
    font-size: 40px;
}
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-50 {
    font-size: 50px;
}
.text-\[\#16px\] {
    font-size: #16px;
}
.text-\[\.48rem\] {
    font-size: .48rem;
}
.text-\[100px\] {
    font-size: 100px;
}
.text-\[10px\] {
    font-size: 10px;
}
.text-\[12px\] {
    font-size: 12px;
}
.text-\[13px\] {
    font-size: 13px;
}
.text-\[14px\] {
    font-size: 14px;
}
.text-\[16px\] {
    font-size: 16px;
}
.text-\[18px\] {
    font-size: 18px;
}
.text-\[20px\] {
    font-size: 20px;
}
.text-\[22px\] {
    font-size: 22px;
}
.text-\[24px\] {
    font-size: 24px;
}
.text-\[25px\] {
    font-size: 25px;
}
.text-\[26px\] {
    font-size: 26px;
}
.text-\[32px\] {
    font-size: 32px;
}
.text-\[40px\] {
    font-size: 40px;
}
.text-\[42px\] {
    font-size: 42px;
}
.text-\[48px\] {
    font-size: 48px;
}
.text-\[50px\] {
    font-size: 50px;
}
.text-\[5px\] {
    font-size: 5px;
}
.text-\[60px\] {
    font-size: 60px;
}
.text-\[80px\] {
    font-size: 80px;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.\!font-bold {
    font-weight: 700 !important;
}
.font-\[24px\] {
    font-weight: 24px;
}
.font-\[400\] {
    font-weight: 400;
}
.font-\[500\] {
    font-weight: 500;
}
.font-\[500px\] {
    font-weight: 500px;
}
.font-\[600\] {
    font-weight: 600;
}
.font-\[700\] {
    font-weight: 700;
}
.font-bold {
    font-weight: 700;
}
.font-medium {
    font-weight: 500;
}
.font-normal {
    font-weight: 400;
}
.font-semibold {
    font-weight: 600;
}
.font-thin {
    font-weight: 100;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.capitalize {
    text-transform: capitalize;
}
.italic {
    font-style: italic;
}
.\!leading-6 {
    line-height: 1.5rem !important;
}
.\!leading-8 {
    line-height: 2rem !important;
}
.leading-10 {
    line-height: 2.5rem;
}
.leading-3 {
    line-height: .75rem;
}
.leading-5 {
    line-height: 1.25rem;
}
.leading-6 {
    line-height: 1.5rem;
}
.leading-8 {
    line-height: 2rem;
}
.leading-9 {
    line-height: 2.25rem;
}
.leading-\[0\] {
    line-height: 0;
}
.leading-\[100\%\] {
    line-height: 100%;
}
.leading-\[12px\] {
    line-height: 12px;
}
.leading-\[14px\] {
    line-height: 14px;
}
.leading-\[16px\] {
    line-height: 16px;
}
.leading-\[18px\] {
    line-height: 18px;
}
.leading-\[200px\] {
    line-height: 200px;
}
.leading-\[20px\] {
    line-height: 20px;
}
.leading-\[21px\] {
    line-height: 21px;
}
.leading-\[22px\] {
    line-height: 22px;
}
.leading-\[24px\] {
    line-height: 24px;
}
.leading-\[26px\] {
    line-height: 26px;
}
.leading-\[28px\] {
    line-height: 28px;
}
.leading-\[30px\] {
    line-height: 30px;
}
.leading-\[32px\] {
    line-height: 32px;
}
.leading-\[34px\] {
    line-height: 34px;
}
.leading-\[36px\] {
    line-height: 36px;
}
.leading-\[38px\] {
    line-height: 38px;
}
.leading-\[40px\] {
    line-height: 40px;
}
.leading-\[42px\] {
    line-height: 42px;
}
.leading-\[44px\] {
    line-height: 44px;
}
.leading-\[46px\] {
    line-height: 46px;
}
.leading-\[48px\] {
    line-height: 48px;
}
.leading-\[52px\] {
    line-height: 52px;
}
.leading-\[55px\] {
    line-height: 55px;
}
.leading-\[58px\] {
    line-height: 58px;
}
.leading-\[62px\] {
    line-height: 62px;
}
.leading-\[64px\] {
    line-height: 64px;
}
.leading-\[80px\] {
    line-height: 80px;
}
.leading-relaxed {
    line-height: 1.625;
}
.leading-tight {
    line-height: 1.25;
}
.\!text-\[\#000\] {
    color: #000 !important;
}
.\!text-\[\#2F3749\] {
    color: #2F3749 !important;
}
.\!text-\[\#3370ff\] {
    color: #3370ff !important;
}
.\!text-\[\#3569FD\] {
    color: #3569FD !important;
}
.\!text-\[\#9092FF\] {
    color: #9092FF !important;
}
.\!text-\[\#999\] {
    color: #999 !important;
}
.\!text-\[\#FF5800\] {
    color: #FF5800 !important;
}
.\!text-\[\#fff\] {
    color: #fff !important;
}
.\!text-highlight {
    color: var(--highlight) !important;
}
.\!text-title-sub {
    color: var(--title-sub) !important;
}
.\!text-white {
    color: var(--white) !important;
}
.\!text-yellow-300 {
    color: var(--yellow-300) !important;
}
.text-\[\#000\] {
    color: #000;
}
.text-\[\#00BD77\] {
    color: #00BD77;
}
.text-\[\#0CBB66\] {
    color: #0CBB66;
}
.text-\[\#0d0d0d\] {
    color: #0d0d0d;
}
.text-\[\#1375FF\] {
    color: #1375FF;
}
.text-\[\#162644\] {
    color: #162644;
}
.text-\[\#165DFF\] {
    color: #165DFF;
}
.text-\[\#1DB609\] {
    color: #1DB609;
}
.text-\[\#1d2129\] {
    color: #1d2129;
}
.text-\[\#1f2329\] {
    color: #1f2329;
}
.text-\[\#2933c7\] {
    color: #2933c7;
}
.text-\[\#2C6AF6\] {
    color: #2C6AF6;
}
.text-\[\#2F3749\] {
    color: #2F3749;
}
.text-\[\#3059af\] {
    color: #3059af;
}
.text-\[\#333\] {
    color: #333;
}
.text-\[\#3370ff\] {
    color: #3370ff;
}
.text-\[\#3569FD\] {
    color: #3569FD;
}
.text-\[\#364252\] {
    color: #364252;
}
.text-\[\#3D3D3D\] {
    color: #3D3D3D;
}
.text-\[\#3a89fe\] {
    color: #3a89fe;
}
.text-\[\#3d3d3d\] {
    color: #3d3d3d;
}
.text-\[\#444\] {
    color: #444;
}
.text-\[\#4E5969\] {
    color: #4E5969;
}
.text-\[\#4E84FF\] {
    color: #4E84FF;
}
.text-\[\#4c5664\] {
    color: #4c5664;
}
.text-\[\#4e5969\] {
    color: #4e5969;
}
.text-\[\#51A6FF\] {
    color: #51A6FF;
}
.text-\[\#5B5C60\] {
    color: #5B5C60;
}
.text-\[\#5D6F8C\] {
    color: #5D6F8C;
}
.text-\[\#64362A\] {
    color: #64362A;
}
.text-\[\#646a73\] {
    color: #646a73;
}
.text-\[\#666666\] {
    color: #666666;
}
.text-\[\#666\] {
    color: #666;
}
.text-\[\#66ABFF\] {
    color: #66ABFF;
}
.text-\[\#69bb65\] {
    color: #69bb65;
}
.text-\[\#777777\] {
    color: #777777;
}
.text-\[\#86909c\] {
    color: #86909c;
}
.text-\[\#9092FF\] {
    color: #9092FF;
}
.text-\[\#9162F0\] {
    color: #9162F0;
}
.text-\[\#999999\] {
    color: #999999;
}
.text-\[\#999\] {
    color: #999;
}
.text-\[\#A17F5A\] {
    color: #A17F5A;
}
.text-\[\#A4A4A5\] {
    color: #A4A4A5;
}
.text-\[\#B15306\] {
    color: #B15306;
}
.text-\[\#B56100\] {
    color: #B56100;
}
.text-\[\#C1C1C1\] {
    color: #C1C1C1;
}
.text-\[\#D07830\] {
    color: #D07830;
}
.text-\[\#DDDDDD\] {
    color: #DDDDDD;
}
.text-\[\#EA0000\] {
    color: #EA0000;
}
.text-\[\#EEEEEE\] {
    color: #EEEEEE;
}
.text-\[\#F44646\] {
    color: #F44646;
}
.text-\[\#F8B840\] {
    color: #F8B840;
}
.text-\[\#FAAF2B\] {
    color: #FAAF2B;
}
.text-\[\#FAE0A5\] {
    color: #FAE0A5;
}
.text-\[\#FC5800\] {
    color: #FC5800;
}
.text-\[\#FF0000\] {
    color: #FF0000;
}
.text-\[\#FF5800\] {
    color: #FF5800;
}
.text-\[\#FF8400\] {
    color: #FF8400;
}
.text-\[\#FF8E10\] {
    color: #FF8E10;
}
.text-\[\#FFEBD5\] {
    color: #FFEBD5;
}
.text-\[\#FFF\] {
    color: #FFF;
}
.text-\[\#a4a4a5\] {
    color: #a4a4a5;
}
.text-\[\#a9aeb8\] {
    color: #a9aeb8;
}
.text-\[\#adadad\] {
    color: #adadad;
}
.text-\[\#bbfdff\] {
    color: #bbfdff;
}
.text-\[\#ccc\] {
    color: #ccc;
}
.text-\[\#cfcfcf\] {
    color: #cfcfcf;
}
.text-\[\#e15615\] {
    color: #e15615;
}
.text-\[\#fe572a\] {
    color: #fe572a;
}
.text-\[\#fff\] {
    color: #fff;
}
.text-\[12\] {
    color: 12;
}
.text-\[red\] {
    color: red;
}
.text-\[rgba\(255\2c 255\2c 255\2c \.45\)\] {
    color: rgba(255,255,255,.45);
}
.text-black {
    color: var(--black);
}
.text-black-300 {
    color: var(--black-300);
}
.text-black-400 {
    color: var(--black-400);
}
.text-border-color {
    color: var(--border-color);
}
.text-content {
    color: var(--content);
}
.text-dark {
    color: var(--dark);
}
.text-disable {
    color: var(--disable);
}
.text-gray-300 {
    color: #d1d5db;
}
.text-gray-400 {
    color: #9ca3af;
}
.text-gray-500 {
    color: #6b7280;
}
.text-gray-600 {
    color: #4b5563;
}
.text-gray-700 {
    color: #374151;
}
.text-gray-900 {
    color: #111827;
}
.text-highlight {
    color: var(--highlight);
}
.text-light {
    color: var(--light);
}
.text-link {
    color: var(--link);
}
.text-orange {
    color: var(--orange);
}
.text-red {
    color: var(--red);
}
.text-title-primary {
    color: var(--title-primary);
}
.text-title-sub {
    color: var(--title-sub);
}
.text-trueGray-100 {
    color: #f5f5f5;
}
.text-trueGray-400 {
    color: #a3a3a3;
}
.text-trueGray-500 {
    color: #737373;
}
.text-white {
    color: var(--white);
}
.text-yellow-300 {
    color: var(--yellow-300);
}
.text-yellow-500 {
    color: #f59e0b;
}
.underline {
    text-decoration-line: underline;
}
.underline-offset-2 {
    text-underline-offset: 2px;
}
.\!opacity-100 {
    opacity: 1 !important;
}
.opacity-0 {
    opacity: 0;
}
.opacity-100 {
    opacity: 1;
}
.opacity-50 {
    opacity: 0.5;
}
.opacity-60 {
    opacity: 0.6;
}
.opacity-\[0\.28\] {
    opacity: 0.28;
}
.mix-blend-color-burn {
    mix-blend-mode: color-burn;
}
.shadow {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-3xl {
    --tw-shadow: -20px 20px 99px 0px rgba(0, 0, 0, 0.16);
    --tw-shadow-colored: -20px 20px 99px 0px var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_10px_0_rgba\(0\2c 0\2c 0\2c 0\.05\)\] {
    --tw-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
    --tw-shadow-colored: 0 0 10px 0 var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_10px_-5px_rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
    --tw-shadow: 0 10px 10px -5px rgba(0,0,0,0.3);
    --tw-shadow-colored: 0 10px 10px -5px var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_6px_0_rgba\(0\2c 0\2c 0\2c 0\.02\)\] {
    --tw-shadow: 0 4px 6px 0 rgba(0,0,0,0.02);
    --tw-shadow-colored: 0 4px 6px 0 var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_12x_0_rgba\(53\2c 105\2c 253\2c 0\.26\)\] {
    --tw-shadow: 0 6px 12x 0 rgba(53,105,253,0.26);
    --tw-shadow-colored: 0 6px 12x 0 var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -2px var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 10px 10px -5px var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[\#d0d0d0\] {
    --tw-shadow-color: #d0d0d0;
    --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-700 {
    --tw-shadow-color: #374151;
    --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/40 {
    --tw-shadow-color: rgb(99 102 241 / 0.4);
    --tw-shadow: var(--tw-shadow-colored);
}
.outline {
    outline-style: solid;
}
.blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.sepia {
    --tw-sepia: sepia(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.delay-150 {
    transition-delay: 150ms;
}
.duration-100 {
    transition-duration: 100ms;
}
.duration-200 {
    transition-duration: 200ms;
}
.duration-300 {
    transition-duration: 300ms;
}
.duration-400 {
    transition-duration: 400ms;
}
.duration-\[0\.3s\] {
    transition-duration: 0.3s;
}
.ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.colourBorder {
    position: relative;
  }
.colourBorder::before {
      content: "";
      width: 2px;
      border-radius: 2px;
      position: absolute;
      top: 3px;
      bottom: 3px;
      left: 1px;
      background-image: linear-gradient(134deg, red 0%, #FFA852 100%);
    }
.\[key\:\5C5E\6027\8DEF\5F84\] {
    key: 属性路径;
}
.\[value\:\4F9D\8D56\6539key\7684 entity\8DEF\5F84\FF0C\5E76\4E14\6309\7167top\6392\5E8F\] {
    value: 依赖改key的entity路径，并且按照top排序;
}
.\&\:font-hm-12[class*=\&\:font-hm-12] {
    font-size: 12px;
    line-height: 14px;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}
.\&\:font-hm-12-bold[class*=\&\:font-hm-12-bold] {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    font-family: 'HarmonyOS_Sans ui-sans-serif system-ui sans-serif "Apple Color Emoji" "Segoe UI Emoji" "Segoe UI Symbol" "Noto Color Emoji"';
}
.\&\:active[class*=\&\:fs-btn-primary\:active\:\:after\2c \ \.fs-btn-primary\:link\:\:after\2c \ \.fs-btn-primary\.active\:\:after\2c \ \.fs-btn-create\:active\:\:after\2c \ \.fs-btn-create\:link\:\:after\2c \ \.fs-btn-create\.active\:\:after] .fs-btn-primary::after,.\&\:active[class*=\&\:fs-btn-primary\:active\:\:after\2c \ \.fs-btn-primary\:link\:\:after\2c \ \.fs-btn-primary\.active\:\:after\2c \ \.fs-btn-create\:active\:\:after\2c \ \.fs-btn-create\:link\:\:after\2c \ \.fs-btn-create\.active\:\:after] .fs-btn-create::after {
        opacity: 0.15;
        display: block;
      }
.\&\:active[class*=\&\:fs-link\.fs-link\.fs-link\.fs-link\:hover\2c \A\ \ \ \ \ \ \.fs-link\.fs-link\.fs-link\.fs-link\:active\2c \A\ \ \ \ \ \ \.fs-link\.fs-link\.fs-link\.fs-link\:link\2c \A\ \ \ \ \ \ \.fs-link\.fs-link\.fs-link\.fs-link\.active]
      .fs-link.fs-link.fs-link.fs-link {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.after\:absolute::after {
    content: var(--tw-content);
    position: absolute;
}
.after\:inset-0::after {
    content: var(--tw-content);
    inset: 0px;
}
.after\:z-\[99\]::after {
    content: var(--tw-content);
    z-index: 99;
}
@keyframes ping {

    75%, 100% {
        content: var(--tw-content);
        transform: scale(2);
        opacity: 0;
    }
}
.after\:animate-ping::after {
    content: var(--tw-content);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.after\:\!bg-transparent::after {
    content: var(--tw-content);
    background-color: transparent !important;
}
.first\:ml-0:first-child {
    margin-left: 0px;
}
.last\:border-b-0:last-child {
    border-bottom-width: 0px;
}
.last\:border-r-0:last-child {
    border-right-width: 0px;
}
.focus-within\:border-gray-300:focus-within {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.focus-within\:ring-1:focus-within {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-gray-300:focus-within {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
}
.hover\:scale-110:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:rounded-sm:hover {
    border-radius: 4px;
}
.hover\:border-gray-500:hover {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity));
}
.hover\:\!bg-\[\#4080ff\]:hover {
    background-color: #4080ff !important;
}
.hover\:\!bg-brown:hover {
    background-color: var(--brown) !important;
}
.hover\:\!bg-transparent:hover {
    background-color: transparent !important;
}
.hover\:bg-\[\#E5E6EB\]:hover {
    background-color: #E5E6EB;
}
.hover\:bg-\[\#EBEBEB\]:hover {
    background-color: #EBEBEB;
}
.hover\:bg-\[\#EEF3FF\]:hover {
    background-color: #EEF3FF;
}
.hover\:bg-\[\#FFECE2\]:hover {
    background-color: #FFECE2;
}
.hover\:bg-\[\#e4eefa\]:hover {
    background-color: #e4eefa;
}
.hover\:bg-\[\#eceded\]:hover {
    background-color: #eceded;
}
.hover\:bg-\[\#f1f5f9\]:hover {
    background-color: #f1f5f9;
}
.hover\:bg-\[\#f2f3f5\]:hover {
    background-color: #f2f3f5;
}
.hover\:bg-\[\#f7f7f7\]:hover {
    background-color: #f7f7f7;
}
.hover\:bg-\[\#fff\]:hover {
    background-color: #fff;
}
.hover\:bg-bg-primary:hover {
    background-color: var(--bg-primary);
}
.hover\:bg-brown:hover {
    background-color: var(--brown);
}
.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}
.hover\:bg-gray-200:hover {
    background-color: #e5e7eb;
}
.hover\:bg-gray-300:hover {
    background-color: #d1d5db;
}
.hover\:bg-trueGray-200:hover {
    background-color: #e5e5e5;
}
.hover\:bg-warmGray-100:hover {
    background-color: #f5f5f4;
}
.hover\:bg-white:hover {
    background-color: var(--white);
}
.hover\:stroke-\[5px\]:hover {
    stroke-width: 5px;
}
.hover\:font-bold:hover {
    font-weight: 700;
}
.hover\:text-\[\#165DFF\]:hover {
    color: #165DFF;
}
.hover\:text-\[\#165dff\]:hover {
    color: #165dff;
}
.hover\:text-\[\#333\]:hover {
    color: #333;
}
.hover\:text-\[\#40a9ff\]:hover {
    color: #40a9ff;
}
.hover\:text-\[\#666\]:hover {
    color: #666;
}
.hover\:text-\[\#69bb65\]:hover {
    color: #69bb65;
}
.hover\:text-\[\#FF5800\]:hover {
    color: #FF5800;
}
.hover\:text-\[\#ff5800\]:hover {
    color: #ff5800;
}
.hover\:text-blue:hover {
    color: var(--blue);
}
.hover\:text-link:hover {
    color: var(--link);
}
.hover\:text-orange:hover {
    color: var(--orange);
}
.hover\:text-white:hover {
    color: var(--white);
}
.hover\:text-yellow-300:hover {
    color: var(--yellow-300);
}
.hover\:underline:hover {
    text-decoration-line: underline;
}
.hover\:no-underline:hover {
    text-decoration-line: none;
}
.hover\:shadow:hover {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:duration-300:hover {
    transition-duration: 300ms;
}
.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:bg-\[\#E0E0E0\]:active {
    background-color: #E0E0E0;
}
.group:hover .group-hover\:bg-gray-300 {
    background-color: #d1d5db;
}
.\&\:\&\:mb-0[class*=\&\:mb-0][class*=\&\:mb-0] {
    margin-bottom: 0px;
}
.\&\:rounded[class*=\&\:rounded] {
    border-radius: 8px;
}
.\&\:border-0[class*=\&\:border-0] {
    border-width: 0px;
}
.\&\:\&\:bg-transparent[class*=\&\:bg-transparent][class*=\&\:bg-transparent] {
    background-color: transparent;
}
.\&\:bg-bg-primary[class*=\&\:bg-bg-primary] {
    background-color: var(--bg-primary);
}
.\&\:bg-light[class*=\&\:bg-light] {
    background-color: var(--light);
}
.\&\:bg-white[class*=\&\:bg-white] {
    background-color: var(--white);
}
.\&\:pr-0[class*=\&\:pr-0] {
    padding-right: 0px;
}
.\&\:text-content[class*=\&\:text-content] {
    color: var(--content);
}
.p\&\:static:not(script) {
    position: static;
}
.p\&\:mt-\[4px\]:not(script) {
    margin-top: 4px;
}
.p\&\:h-\[24px\]:not(script) {
    height: 24px;
}
.p\&\:w-\[24px\]:not(script) {
    width: 24px;
}
.p\&\:rounded-sm:not(script) {
    border-radius: 4px;
}
@media (min-width: 1536px) {

    .\32xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/**
* ---------------------------------------------------------------------------------------------------
* general
* ---------------------------------------------------------------------------------------------------
*/
body,
html{
  overflow-x: hidden;
  font-size: 16px;
}


/**
* ---------------------------------------------------------------------------------------------------
* blueprint specific css overrides
* ---------------------------------------------------------------------------------------------------
*/
.bp3-panel-stack-view {
  background: none;
}


/**
* ---------------------------------------------------------------------------------------------------
* custom css
* ---------------------------------------------------------------------------------------------------
*/

* {
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

::-webkit-scrollbar-track{
  background-color: transparent;
}

::-webkit-scrollbar-thumb{
  border-radius: 4px;
  background-color: transparent;
}

:hover::-webkit-scrollbar-thumb{
  background-color: var(--content);
}

.react-flow__attribution{
  position: fixed;
  z-index: -10;
  display: none;
  opacity: 0;
}

.arco-tooltip-content-inner .app-global__menu-item-active {
    background-color: transparent !important;
    text-decoration: none;
  }

.arco-dropdown-menu-inner .app-global__dropdown-menu-item {
    color: #333 !important;
  }

.arco-dropdown-menu-inner .arco-dropdown-menu-item >div,
    .arco-dropdown-menu-inner .arco-dropdown-menu-item >div>a,
    .arco-dropdown-menu-inner .app-global__dropdown-menu-item+.arco-dropdown-menu-item >div,
    .arco-dropdown-menu-inner .app-global__dropdown-menu-item+.arco-dropdown-menu-item >div>a {
      color: #1d2129 !important;
      background-color: #fff !important;
    }

.arco-dropdown-menu-inner .arco-dropdown-menu-item >div>a:hover, .arco-dropdown-menu-inner .app-global__dropdown-menu-item+.arco-dropdown-menu-item >div>a:hover {
      background-color: #f5f5f5 !important;
    }
* {
  box-sizing: border-box;
}
.rc-tree-select {
  display: inline-block;
  font-size: 12px;
  width: 100px;
  position: relative;
}
.rc-tree-select-disabled,
.rc-tree-select-disabled input {
  cursor: not-allowed;
}
.rc-tree-select-disabled .rc-tree-select-selector {
  opacity: 0.3;
}
.rc-tree-select-show-arrow.rc-tree-select-loading .rc-tree-select-arrow-icon::after {
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 2px solid #999;
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: none;
  margin-top: 4px;
  animation: rcSelectLoadingIcon 0.5s infinite;
}
.rc-tree-select .rc-tree-select-selection-placeholder {
  opacity: 0.4;
  pointer-events: none;
}
.rc-tree-select .rc-tree-select-selection-search-input {
  -webkit-appearance: none;
          appearance: none;
}
.rc-tree-select .rc-tree-select-selection-search-input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
          appearance: none;
}
.rc-tree-select-single .rc-tree-select-selector {
  display: flex;
  position: relative;
}
.rc-tree-select-single .rc-tree-select-selector .rc-tree-select-selection-search {
  width: 100%;
}
.rc-tree-select-single .rc-tree-select-selector .rc-tree-select-selection-search-input {
  width: 100%;
}
.rc-tree-select-single .rc-tree-select-selector .rc-tree-select-selection-item,
.rc-tree-select-single .rc-tree-select-selector .rc-tree-select-selection-placeholder {
  position: absolute;
  top: 1px;
  left: 3px;
  pointer-events: none;
}
.rc-tree-select-single:not(.rc-tree-select-customize-input) .rc-tree-select-selector {
  padding: 1px;
  border: 1px solid #000;
}
.rc-tree-select-single:not(.rc-tree-select-customize-input) .rc-tree-select-selector .rc-tree-select-selection-search-input {
  border: none;
  outline: none;
  background: rgba(255, 0, 0, 0.2);
  width: 100%;
}
.rc-tree-select-multiple .rc-tree-select-selector {
  display: flex;
  flex-wrap: wrap;
  padding: 1px;
  border: 1px solid #000;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-item {
  flex: none;
  background: #bbb;
  border-radius: 4px;
  margin-right: 2px;
  padding: 0 8px;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-item-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-overflow {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-overflow-item {
  flex: none;
  max-width: 100%;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-search {
  position: relative;
  max-width: 100%;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-search-input,
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-search-mirror {
  padding: 1px;
  font-family: system-ui;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-search-mirror {
  position: absolute;
  z-index: 999;
  white-space: nowrap;
  position: none;
  left: 0;
  top: 0;
  visibility: hidden;
}
.rc-tree-select-multiple .rc-tree-select-selector .rc-tree-select-selection-search-input {
  border: none;
  outline: none;
  background: rgba(255, 0, 0, 0.2);
  width: 100%;
}
.rc-tree-select-allow-clear.rc-tree-select-multiple .rc-tree-select-selector {
  padding-right: 20px;
}
.rc-tree-select-allow-clear .rc-tree-select-clear {
  position: absolute;
  right: 20px;
  top: 0;
}
.rc-tree-select-show-arrow.rc-tree-select-multiple .rc-tree-select-selector {
  padding-right: 20px;
}
.rc-tree-select-show-arrow .rc-tree-select-arrow {
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 0;
}
.rc-tree-select-show-arrow .rc-tree-select-arrow-icon::after {
  content: '';
  border: 5px solid transparent;
  width: 0;
  height: 0;
  display: inline-block;
  border-top-color: #999;
  transform: translateY(5px);
}
.rc-tree-select-focused .rc-tree-select-selector {
  border-color: blue !important;
}
.rc-tree-select-dropdown {
  border: 1px solid green;
  min-height: 100px;
  position: absolute;
  background: #fff;
}
.rc-tree-select-dropdown-hidden {
  display: none;
}
.rc-tree-select-item {
  font-size: 16px;
  line-height: 1.5;
  padding: 4px 16px;
}
.rc-tree-select-item-group {
  color: #999;
  font-weight: bold;
  font-size: 80%;
}
.rc-tree-select-item-option {
  position: relative;
}
.rc-tree-select-item-option-grouped {
  padding-left: 24px;
}
.rc-tree-select-item-option .rc-tree-select-item-option-state {
  position: absolute;
  right: 0;
  top: 4px;
  pointer-events: none;
}
.rc-tree-select-item-option-active {
  background: green;
}
.rc-tree-select-item-option-disabled {
  color: #999;
}
.rc-tree-select-item-empty {
  text-align: center;
  color: #999;
}
.rc-tree-select-selection__choice-zoom {
  transition: all 0.3s;
}
.rc-tree-select-selection__choice-zoom-appear {
  opacity: 0;
  transform: scale(0.5);
}
.rc-tree-select-selection__choice-zoom-appear.rc-tree-select-selection__choice-zoom-appear-active {
  opacity: 1;
  transform: scale(1);
}
.rc-tree-select-selection__choice-zoom-leave {
  opacity: 1;
  transform: scale(1);
}
.rc-tree-select-selection__choice-zoom-leave.rc-tree-select-selection__choice-zoom-leave-active {
  opacity: 0;
  transform: scale(0.5);
}
.rc-tree-select-dropdown-slide-up-enter,
.rc-tree-select-dropdown-slide-up-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.rc-tree-select-dropdown-slide-up-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 1;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.rc-tree-select-dropdown-slide-up-enter.rc-tree-select-dropdown-slide-up-enter-active.rc-tree-select-dropdown-placement-bottomLeft,
.rc-tree-select-dropdown-slide-up-appear.rc-tree-select-dropdown-slide-up-appear-active.rc-tree-select-dropdown-placement-bottomLeft {
  animation-name: rcSelectDropdownSlideUpIn;
  animation-play-state: running;
}
.rc-tree-select-dropdown-slide-up-leave.rc-tree-select-dropdown-slide-up-leave-active.rc-tree-select-dropdown-placement-bottomLeft {
  animation-name: rcSelectDropdownSlideUpOut;
  animation-play-state: running;
}
.rc-tree-select-dropdown-slide-up-enter.rc-tree-select-dropdown-slide-up-enter-active.rc-tree-select-dropdown-placement-topLeft,
.rc-tree-select-dropdown-slide-up-appear.rc-tree-select-dropdown-slide-up-appear-active.rc-tree-select-dropdown-placement-topLeft {
  animation-name: rcSelectDropdownSlideDownIn;
  animation-play-state: running;
}
.rc-tree-select-dropdown-slide-up-leave.rc-tree-select-dropdown-slide-up-leave-active.rc-tree-select-dropdown-placement-topLeft {
  animation-name: rcSelectDropdownSlideDownOut;
  animation-play-state: running;
}
@keyframes rcSelectDropdownSlideUpIn {
  0% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
}
@keyframes rcSelectDropdownSlideUpOut {
  0% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
}
@keyframes rcSelectLoadingIcon {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rc-tree-select-tree {
  margin: 0;
  border: 1px solid transparent;
}
.rc-tree-select-tree-focused:not(.rc-tree-select-tree-active-focused) {
  border-color: cyan;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode {
  margin: 0;
  padding: 0;
  line-height: 24px;
  white-space: nowrap;
  list-style: none;
  outline: 0;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode .draggable {
  color: #333;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
}
.rc-tree-select-tree .rc-tree-select-tree-treenode.dragging {
  background: rgba(100, 100, 255, 0.1);
}
.rc-tree-select-tree .rc-tree-select-tree-treenode.drop-container > .draggable::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 2px red;
  content: '';
}
.rc-tree-select-tree .rc-tree-select-tree-treenode.drop-container ~ .rc-tree-select-tree-treenode {
  border-left: 2px solid chocolate;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode.drop-target {
  background-color: yellowgreen;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode.drop-target ~ .rc-tree-select-tree-treenode {
  border-left: none;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode.filter-node > .rc-tree-select-tree-node-content-wrapper {
  color: #a60000 !important;
  font-weight: bold !important;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode .rc-tree-select-tree-node-content-wrapper {
  position: relative;
  display: inline-block;
  height: 24px;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: top;
  cursor: pointer;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-switcher,
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox,
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-iconEle {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 2px;
  line-height: 16px;
  vertical-align: -0.125em;
  background-color: transparent;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAABhCAYAAABRe6o8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAK0dJREFUeNrsfQl8VNX1/5l9ksm+ELJB2ANECGtYVEAQaZBSFdAW0dpaKbi0WhX9Va1/S/+K2k+1iCztT4sFW6lKkUV2RLZAQHaSQBJCMllJJtvsM2/e75775k3evHkzTCZEAubweczMu/d7ZzLznXPvOff7zsjS7nudhXZaxZd/kKXf//9Cwgkf1xha2QOnS2DzofNw5FwZjM/KgFkTh8Idw/tBz7hImb9xQsV1W9czJf73zTsPek7I5XL3oQCFQkkOBSiV3C2eG/rz9z19Q8Wh7T5+kX3i7c9g6ojekDs6A1796Vg4XVoPe/ILYMnKzbDmxQfZaaMH+pApVFy3Sdupp8cKH6rJ8QQ55pBjvPvcEXJ8To415LDzHbOXH/OAZLK2t/vBbbcFHOOz3LOeMViW5QgYLImwTcrai0MSrdm4H/708ztgwtA0D+6OYb1hysh+kDtuEPxjWx59jUIyhYq7lc2k38HaGk5KtmniR4Au7Z5g34cnZHLF6vTRkyCuzyCAuATurKF+kuFy0aSK4/uXsy5moZuIkkbI94RCplidlZYDvZP7QUx8LD3f1NA46Up1yaRz+qPLSZ+FhIRrvDxgsCTC22DIp1Kp6OORX42GM/ef8sLh9IkeTEwi4fNNyu5Lb7Hf4VW/ZXFaDRV3qxPQcjUfEoaNkWxrLi0CW1MvVhMzOOD74GJci8Nj4lZkzn6UfKAMgLkZdv7+JU/79P95B+IG3gaFm9auNjcZlHKF/EPxGPO2ZC2O0EStmD6aOL4oBixghGpo5EgWr4F+8QOgX69M2Hn889Wkr3LDvefoGPL2kE/syXgcYpRKlQ/5uD7eOFy74fTpj0R8/8kj+sOsCUNofykcThYHLQfhVwW/gi1VW8HG2iVxt7q5GCewLukjLCERmos/g7rjr7PCo/XKVuH6Xa1QqTjyWQwAVytg53tLYfrGWs+x8/+/QNuwD/Z1T9Ve065SoVxx94g5YNY1Q6O9Giz2Vjhy7AA98D6ewzbsg33dUzXnAYMlnzQBFXDn3rsgb8YhihOST0hS3jBwwLVbMM83c/xgWLfrJMydku2DO2g8CJ/b/gNmpQmWXXgL7HY7zB/8sA+us2zTgXNs3oVyv+3jhvSC2XdkyTp7HMZpB5axSy/ww7SQkDXc53ztqUMQ2XsmvW93Mov6jL2TEKwFoPEqrl4o6ahtfBXgvj9yjze+RumSkj0RLh/bt4g88CzqnXbXotv65IBN2wqt5gYyAsfvv489QG//2vo091zkn1wrhyEpo+Hk5SN0DCXvpYIhny8BORx9o7ZPhO9+fNyLfBfmnffBYdSKgUMwz4fR7ZN/2SiJW1exDkyEfGazGaw2B7x77B1YMPQRH1xnGZLmzYW5wBAPxDid4CREcNht4HTYyJfBBn/dWoTE6fRxGKcNXE5ru147YgQBxEOxaX0AWuoAHBbvjg7BuNhG+mDfsvxvHhISUE7G6BmXDk3WBrC5rFBUUsA1uOObMwWn6O2gfoOBdTYA9pWX5T3kIWCw5BMTkMfx5o98QhySA6NWDByu9XzHCrgUixTugfg58PaFZWAlH1JLcxP8aeybkrjONCFpdBHRUF9bQUnjsFlDHkdIvmDGwb7tJSBiPF5SIR+lJMsmV10Tmc+d4FmX4fSOz//PpwUkdIIyNoVihOPJlLJRKo0SjOYWcAHj8Xy88Y+XVj4KDnBCTFgSxXieK1jyyWRiAnI49HxCE5NPiMN83Z6TZUE935bDBbS/FG5G2gz4bf9nQW5Uwp9y3oR5Q+dJ4jqVgALS0CnGTRr+cSjjCMkXzDg8AdtzCAlIUwYOO9isZrBZuIM3vL/7yw30wPsO0sdlsZIp3+UQvw4H+RtsNguZjSx+Xyu22YgntVvtmINxeAgYLPmE+R5vnJxGu/7IJ8RhsnjH8WI4fF4f8Pn2nSyBTQfP0v5SOJ1KR9d8Zx87A49lPwaR2khJ3LXsxIkTbDC3kh++2/PFxPWgj1PS+0Pv/lmUQP7Gv9Y4CUnp7RoHp1PWaWnXIZyCzXbnebPJRDwXruUs9Ghb21k8gQhtw6ibLHksjOuiF/ksDDcGGcRKyP180Wx68MY/ttIvCxmDkpkbQ8l7svaSTwp3LfKhYWoEk8WYr0M8Rq1S5Fu34wQmlT07G6HirmWjRo2SBXMrZeih+GkXSVN84QS9L/Qw7R2H93zBjtPRKbimyby5qUafHR0RAbbmBuKZXBDJr9f37IHpT7m9IQnytDER0FyjpxivXGSdeXN9Y022JloHLfYmEoK4vJ7Pbuden4z4uxhNItQ311CMIA3TfvJ1BIdJ4p/njoOn3v8KXl6zHb49fZm4Zgb2nyqF332wGX617DOYP30UiJPJoeKC8YChmHitxpOmvVOweNptzzh8ENKeQ+gBF28oWllfkA9MeAKARgcOhwOq3+QiZD4arn5rFm3DPtgXMcLXsPP3ZSsvNpyCSCYW1BBGXreDEnbhiSn0wPt4DtuwD/ZFjMcDirfJgrVQcTyZMFmM+TpMmWDUyu/pLnl4ql8PFiruWh4wFBOS5sKpwx7S4JRK5oeQxhGSL5hxAqVhAmF4I7Fvw5kKwxvKo7teSx07BViVHhxNdaBfeg/nZNThoIojgUd8GuiP7gLsixivARuhofZC0xunlAdfy0qZAA2qKmiy14PdxX0x1XItxKgTIF6RAqcqDwL2RQz1irgf90M29IChkLCr5AHL85ezVy9tbtdrTxwwC3qNeVrG7wWP+CA/YtXMjFfG9UtaEjcgGzTRsWR9L6M5QScjA1uTAQyXTkFeSe2yX28tW3ryqTFGib3giIlLU19JHxW/pG/MUNBpogFUMpoTlDtkYLQ1QWnTeag40bDs0CuVS0l/I3JPdqPUMOvX/VM+NfcnDHqyLahqOV8G44dmwL1uVcuebf/VzH94geRXu1sNc33FCISA+J7pyNH3rbtSnxmSHD0pPVbXH9v1jabS89XN+17aW/lX8rAUl3yEgKwEAT1jjHqxxzOJAyInRaeG0zFaqsyldRdb9514u84zBqdFcIsRKj4mEQtDoh+nkYTkLWRVTBaSZDEJDIbcVu7Wie1W6LMsvY1QIeLQkjJzmAm/fg9mj4qCR0Yp4cP7tJB36TJsPnAJlqxUYCBhc/9RPkIG3OtF3KMEt9IXx7Z3DdiRabirjtMeQ0KhRyJELCREexGgkrgvsmBzbzfjtjK2k36B5no6BjkKCdHIGHWSY4BAUdMmRgiSRCwjyvGEiEMSrd+8Hf72eDrcNZDx4Cb3t8HkPlaYOYiBf372Een5Cx81TCi4zloDduVxgjWhJ2OXU3IY3EfQJlrGtWsMjoBuEpU7h4NcoQBFhO/OSNi5J8mHLfoC+MEJBQlF/cd74XhVC08i3AVwhg8CB/HWytbzoGw+CVMyagih5ZJqmPbiuj1gYBu7+pTwYdB6wGMLs6/LGEouE855MEoif3o+JJHLLsqgczgF7auk/cRqGDEO1244ffIkssTdBaxMxeXDokeBMzILNKUrYHLvavjxAC3tj6ICMa46YjocMebBuuLf0W25GelPQmzJmz64W90DXk89oEIuWz0pMx0GpcVBAiflg/pGmFSkN0zaX1ixnHGxAfWAoYzB7ZG5p8+AOkCXRLjvxqEaRkqKxW0oeuMwcLh3mJLinJpUD/k8pJZrwBk1nOJy+1+l/aVwSD6hGuar0q8kcZ2ZB+wK46AeMC5rhOThtKAesOCa47lY1+KYcO3qp340HIYMjAMj+Ug++FpPj3/n6ek5bMM+2DfYMYqauQPv+xuDEpBfSwXaE6YkEm0B8jiaLtg+0Yd8uDMixmHUOq4Xt0Z0cEGSb54qbhzF5SQ30P5SOFTDNBgMYBKoYaRwt7oHvB56QJVCseLROzPBwJDAshVgywE97PhpmudYv1dP27AP9gWRHtDfGLjli0czCQH8jcF5QHfgEFAHiCQS70HzAYfbpNQwYhymTPIuWbjna5X2Uor6AxRzVB/hpYYR4nDaramsgbraq9DS3AjPjXxeEnere0A+ES118HpA8WGsPtSGd9gXTRyQAmQxBVctHGGQdGivFXJ98DG2YR/sixiv1yAaw+bkMHZCODwOHNf7HYPzgO6oNaAOkBLJ6e0B3bhAahgxDvN1m884KQ4DB5nL5kNqxdVvKW5rcaKXGkaIk1LDSOFudQ/Y0a041AP26RELda0oEkDFimB6t3jfxz7YFzHC1yAeg8fh7dGTeg+hpcZQejyZ0xJwb9eFbp11+npAiuPUMMO+zPYRJIhxmCzGfB2mTDBqxYAD1244faIHQxLJLJXwTVkMbC5Ng5cFahghDgOO+QT30Nz/criTT0nibtWdEJvhNGurPwnhkYnQUnIlqNesigwDTVyUlxhBrlCOUqmV0NTgAifrHRpYbS54Ok+Q9CDeMSVeSTHCcf2NgXiefPx44jG4KNidr/OkWvjAgXgTFz3cJHIx3h5QhCvqfRuwh+8PiONVLTRf55DTqFVlugJK/eee6RpJtP5CmqQapr24zvJcN1oRba49CpFpCaAMTw76NTdePAtys9FHD2gnrDET19dGHi5/jOf01dy2b1pyPApRyRStAhewPnpAqTHM1J2Gtb1m8lg8hjsP6E4Wi8jHT58eErGMKA8YGo5LEv+C5vUwZYJRa06yhazdouj0iR4MSSSlhgkF11l5txupiNbE4VruIET16hv086giI8FqqPaagp1W83kSyGWjgspi95ZRWchijvdgP9vRCpFqOSGRE1xWy0VvGkiPgXjEfXpPpOexeAxKQPE2WbAWKo4nk0fVcug8PLnDvad7z1A6fYo92Pp1//QsOXjcFwT3wrdlkNMvA+524/Zs+69sfeFR2nH+wws6de12IxXR2oRsuFq4jkS6MSDzc722DwHDldBQ0uClhjEbajbr65uyI8KiocFI1pPUg3GEaTA0e+7ja4oI14K+vplivLyxaAzOIj2C2jmbbfD5rATJMbrVMG4PeK1bMe7l1dvYVx++nXo+saE065O8RpxaO3Wc2nMfs3IohoiE+KD/XkO5Hpqq9TB09gZOQRCelJzz3s6q2dkZUFjvAIPFQZXNW+e2Te2zvqiGuDAVZCaoYNOpMjj62+kprLm22uMR/IzhtU4k3xGpMZShqlpCxQk8GUzN/Qn1ZLuJJ8srcXuyNjUMCuFcUp7seqphbmZFdFTanVB+dA9oI4LXHmJfhhEs4Sx1DYaSM2/sUitfmzIwFfRyFupMDrjnX3raHE6mzBSdCtKilLDrgh6wL2K852rpMczu6RjH6OFnDDoFv56bLIypgf6TiQ65jEqqX95Y6ukaCKeOwTwj4sgU0+LywqElZeawuc9+AFNHpMKUoT3gsbv7gr7GCPlnC2DZ2m3w1lNzmNrCozLxFIy4F5d/QXG5BLfYF8fyuGCm4I6sAW+0Ijospp+MYXTspbz89kgHIDJxmOfRmFUn7fm/HvGO4+lVGrN93JLstDjIjNeQz1AJODnKwAkGsxW2nqsiHjdvWdnyX7+DGOGIHRnDqzbMtcgn8/cxSZAvPae3uw2g6pjeh3z/+no/vPDj4dAzVkXCczvU110FnUoBM4cnw9j+PeCLvXnwwF3jWCEJQ8V11hqwKyiih+Suvh75RxMhxdIygE/1j731THTGkEm6pHS6TWWq05c2Xz6/r/Ljl4Ravus2hrJd5JNgoCZBS75UMircczQ5vMj36O5HYe3da0mzzGvanfncB/D8rOEQHyGDxsYm8qY7qKQHnw8vNI8k0drdWanw6qovYOPbT+FULxPjHLEuiEiKapsFagjOyvrgOssDYn4OUyTSpqDt3+c4HTHijaiWj3ixQkKSFysBJLV8Ys93PcZQtod8MtHnieTrPTrD4+kqjldA+pheHvJ5uC1YLdIaL9mpkBSrhEZDE9iIFxMGQi6yesUjITERZowaQPoXwdwpo71wzhgWwpLCodqip3vCuC3Xt2d/MLMmiG2ReeE6ywNicjiYPN/3NU6oJpRVwUI2JD1gR8ZQctwJjnw+V7mx3ONH9/4c1k5dK0k+fnze9pDAYfKQHmCxWD2ez2tI8hivzDKZTDAsIx6253FEEuKiMmMp+YRqmGf7PweZyUOgubrJC9eZa8CuMM6Kb1rZ1ro6v+0NBRfg97+5A2JjY2X8+yvaRvPcb29tP946rAcMmnyit8VzJQCSbg+Zbqet9SIfTr+0XYDLLy2DBVMzoIG8aYFSQE5CwrSkCDhbWuWDQ5OqDfP32R/74G71vWAXw8BL8/p5Zg7+YBgXVDZY4W8F5L3aVUGWOo0sT0IpC6W2n4S1Ww/oS8AA5JP5MNCbXVLkqz5WBS5TW1JoTL8MqK4zgVbOXTfsj4TYVtXQCtkDUnxwaFK1YaRwt7oHZJ3cLCKswcPSrTG8pJJ7/C2TCsyWYkpCqXWxuLbfpu3rvNrDlTEwe8KjPrX9vL4IrGtxnC58xaNTMoFRkQWfg3jfZvdSza0HvK1PHKzdV7jaYDIr5TJ5W33AoMknmoJl7j8HPZ/QfMgnDEImZMLpigbQasNAofC9eJ1/LVqtFs5fMcAUsp4T48zVRugb399LDTMkfSgYq4w+uFveAzq8lzE8+Rhyh+G2NaB30SHQl1RDQUGBlOfzqe23fsZJr+Nv0/ZJ1vYTTrsd0gMGSz7xO+NscYKeBB6UhHev9Us+IW5CVj/49lwVNFoZCA/XuasoeC8BwsLCwOiUwb4z5TBh2EAfnKOKrBEJ2XDN99Hsj2BIGkc+W4XFBxeMx7leOyo3YhzGYfd4PtThIflMxPsYyREbEwY/e2AW3Dt5FrBkWm5ubvZd6thdi7BeH1/bz2Zryz1iXT/+oG2kD/ZFjOg1SOoBUQfIawID6gFDIR+PY5oZT57vWuRD+2bHZuWrj98Dh4uugkWmhuiYGEo4lPNrNBqIjo4mLjwMjpc2wgsL7sb+Gikce5WF+rw6qDlYBXWHa4CtZSRxt7wHtNuJp+M+dCQeHrwipcUKEElWIj2HAiWglAlr+1mxhouzLe949NBBepw8eoq2YR9a2y9IPSCSDvWAQn2gWA/IETAE8glxTiOSsJISLxD5+C9MbeFJ5cw7RsCqbefhVIURXJoI6NkzBeThUXCuygJ/21EAU8ZkwdXiUzpB1BQq7tb2gMRjoYdxuPmF5LM6uIO2IzldeCtNQGFtP5uVrKfNjZ42fgr+eNoB2oZ9VGEqT20/D4l5PSD53FHzhwdvSEL+Md5iH7VapAcUb5MFa6HiKJkunVKsX/oErYzwlagywj8emEErI0iQKFTcLesBGeKZcL2HJOTJR3dX3Ao4/OydDHftiN+9aHdtPzKHgEKw8/KH0p+K3CVXZpev7ee1m+NHU4jG6wIl9YDiH48J1kLF8Tb/4QX4tZDhpZNSl0/iPq5QuCDY170m7vuIXrtMjWi7DcxubonJh+f5c5iukSQfV9svG99UK+O992xymL0ehynCweJsq+3nWUcG0BSiHtCzWyWlB/y+1TACcgVVG0ZIQt46Qw3TXusqNaJd7qAhEPnwnMspTcBAtf2qL7d9MRJSe/rU9vN4OD96wDmb6wW9IiX1gJ1WG6YRVPju4CIFoi01XjgkFdaGmbiIqw2zYKQSls8Og2MlZbDtYDG8vEoBq16YZyP9JNUwC9/hasM8QnAf+OK+NzVMV6gR7SJRsMPpSz7P1Mhw60B/UzDW6Yv7NOrVcRHToRkMYMTPT7AG5O2Fs/fT2n55DTu52n6COLjo3cUrY9J2vjo7OwLqyQyOesCZ/6n2eh5eU5igYWBTQT3FwBsPdE5tGCTfhejxnu2SwZX/8YIhiT7dvB1W/yId7uzHgNPWQr6hdsjp7YTx6VaYMdAJ6zd8DPPnPeajhgkF11lrt65QI5rBKJj1Jh8SzsG0BSH2AASUqu23+PjdPrX9eir7+NT2a5tbO6gH5En08fZGdy4u1ic5/WC/7ZK1YertRtiebyZ91ISDsZJqGJngumBUtdxOPN8qQqLbCYlMNgYssj5gDUsBhaUMtLaLMDa1hoZ1i9/dAPtXPONRwwhxlxSJYIhty/XFGKsI7oAPLlgP2F5FNP3z3Z6PtxROfUSlWf7GD2Yc3oIZx2FqhQ/eWndNomKR8fDwcKkm+77flb8zcSmjsY7aTWv7pWnI36EV1PYzN8Hxpt18bb93xEFeh/WAvAcLuCcsURsGyVcA8dB7THxANYy4NsyPyfR5ByGRmZCvUT0STGYH2IzkGyfrCVpCxNjmrwmZ9DBrQAMcPIM1XkZ44YqRfJpYbzVMfH/yLR8PYx07vXDBesCbtUb0b56aAiUlJVS8Ech0ul7Qr5/fS1VNXNHIyk9HvVgTTG0/yTFC1wO6p08pz+fRAUrVhmGMAIr4a6phQCABx4AD13wMmT7R8yH5mpqN5A20YIKTvFFhoFT2B5WtEu7ua4B/H75AiSTEoefzp4ax62VeuM60rlAjOjU1VUaOjv4pIdX2E3nB0PWA/Not0J6wVG0YcBg9ktaAahhhbRgS7WLAgWs3nHbR85lNVjAaLfT58LnDY3uDkyxsRiY1wbO7rvjg0PyqYUS4zrSuoIjuMPM6UNuPtw7rAfmAI+CesFRtGDq1BlbDDLn0IURaUBqVSc9jqgWjVgwccM2H067MrXPgvwBy02V6XfF31ToYN7S3Dw7NnxpGjOss6yqK6GXLlmE8mivVRqbce+fMmRNwHdw16gO6o92AOkCJ2jAyTFy61TD+pFg52iovHOb5MGWCUSsGHGHEC+K0yz03mYJJqB5mLCQvzAK7SlMgd+oQHxwGHLwa5u1j73JqmLShENZQ5oPrLOtCiujcJUuW3CvV8Pnnn+PBXouEbruB9QHdqZaAe8IStWFi7FdhcP3OwGoYidowm88r4FCxEzTOGoghAUecvIK82HBIVNdAgnEnRDDlcKJSA9suJ8PtgtowPC697gBENZd7qWHCGy5DSvkWH9wP3Qj5KAkD5hJDrO13Pcbwqg3jSbUEKrMhXD8QXIyzkeb5ClLnek271POpfXFYuWDl8/NYzNexDhfkkGgXAw5HK0vTNUqwwokqDXxe2AP++uwc2Pv1JjkmlH1wJNrFgMPBBMZ1WxsJ/XhCLy0fKmj4ZSHKqe4YnUbPRak4Ld8HO0+vIF7s76KAJOQx5O7NvA7Vhom2VMOQK/+AIaV/a1vzBcBhknj+vJ/D01tS4I974+A7PQtKVxOcqSZrmkMp8Ny+LHjoocVQV3RM4Y7QOoT7IZt7Gubv+7wnUvUBSUxHD17Th+faWx9QWBcQ7+M5qTE6qTZM5jWxtYXHZJgsxnwdpkwwas0hgcNMsnZ7nkyfxIN5KiOIcd9++Bu6F7zx0HlYwteGmTYUXhBVVOj2fHPEAcsWcR8vLR8h3ZlCwTXcQ7gKqVglYVhmGtQ5OS3fN7Iyr98LFo+BhuMI6wLyJh7je1fDDByQDGNypnleO+bqpPJ1/PSZf3Q3SOzrXjc1zK1ieCESf3kDf421MNVyZdNKmGTYf2/ekv3oBVeOW7aNrsPEtf2E9fx4w3NP57naVR9QXBfQM2mK6wOSD7jdUxUhkCxUnJBUST0zWLO5FaxWE819KVUa0Gp1EB4eCbU1ZV4E5zHtwQmI/oMgoERejz4u/2oV1Odvh3ELngWXTAHHPnkXpz9PIOCt5QuTHF9Ky+eVQLymHtAddEjVB4xLaGNrW3VT6Z9sKCpoK8cbKi6t1+AjrS0N45qb60Gni4aIyDhXz56p8pqaSpfdZpbj+eiYHmxkVHyevrxgfEdxPyQC8rf8FYdIPsOJnTDup08CU1cGNWabaBnvreUT6vf4un78ufbUBxTXBeRNsj5gsCSS+6lDJ4XjZgDWc8mg0JBEKEGKjU12pqX3VvLpoLS03vRWX1HubG2tV2K/64H7oRAQ32uGYTzk029ZA00nd3PkM1RBpcEAVfn7odFsX+/xTpL1AT10gfu/4jR9cvJ5tq8+oHddQN4k9YDBko/+XkgQ5JOTV4uPS4vPwMDMkV44nD7RUwlI5GNp6b2Uej04Gw1VSuyPX+hQcZ31gXcVRTQ/zSLxuAvSuduaHR9By6m9PuSrbDJ/OWfN/oXscg4rpeXjLx/hNX18bT+xlo+3joyhbA/5xJ6M/n4I66KOCL91YvJxfbxxuHbD6dMfiTxkSuultNtMtL8UDn+awWhsBZOphawDLZCQmAKJPVJ9cJ1lXUURzXs/JB6WNMHLKivOvwEG6wbodddMYFobPOQrtmlrFqz5+hEQKlo6oOW7HmMICHht8kkTUAZ1NWVkfTbIh3xCcnsiIhI44NrNswsTwNSacFdLS4NcCmc0tpB2Hfmg7GCzGqG6uowSUIzrTOsKimg0/Kzw0la1Wk01f6f1G+BHD34KX3/2M7BEtYIzn4SefUZDSa3iJMBGLzlVl6gPGCz5fAnYNrXqy4ugb/9hXuQbkpXjg8M3FwOHYN5YGmBUFUvizKZW8o13ksNKK34K1xlCXKcSsAsooo1G4zfLli3zOjesB9C94WG3vwJnDi6FBtvkGiSf0+nc42eYG1sfMFjyiQmIOOGGgxT5VCq1Fw5TJhi18oFDIMN+pL9cCofEsxDPh+TDD0qjDZPEdaZ1BUX00qVLscwFBhVa/tyHr2udxPv9BO9fLrdtfvL9jS8Rz4fyqCbJ9NiNrg8YLPlkMrmP68do15/n48knxGG+DlMmwXzA2A/7S+ESEpPptMuTLzk5QxLXmXajFNEFTw6HwStO8wEIztM1oiHvEz5Y/Afp5z2/Vw7rhqqAcdkBLxmxbwU7+TyRqK3k7RtLlz4muIQvEadStXYEoM9RyNUE64Chd3FrvA7rAYMln7iQEI/DKAyj3YuF30mST4jDZDFGs5gywajV3wur1Jc7TaZmZXR0giQO13v8mi8QrlM94A1URCMJ3Qk/uvMvV2t/YW+8mnbbP0rfEPa7+MLtH9gbagsUYeErhOd5AnMsBvJ5AUdCGyaLFSN1UWn/pgQ06uc4GeaoWsP1kSqw0GE9YCjkE+OQhNciH93LrSmTYbIY83WYMsGoVYpELS31So0mnPbv1bt/yLjOtBuliHZzjouA7fZ0xmb+feyI4Y9oe6SEnX2sX8/bPi6huxyXXph4OPXBpwdXf7k6xlJdEaEM1y0L+EJYemjkSuXc2KQH6be7se79ueBkTpHzwXyrQqsPGAr5OoLDnQpMFmO+DlMmGLUKdzTQgyGJsF9zU12HcZ1hN1IRjcliBXlvXYSFrItZGNM/a2Hi8DGgTeoFFV+tXXRyflqkKkx3T8qMuYm6qHDIePAJKP/io7dMZRcjlZExr0jnEnFGkxHis1qNWjU9PDqHfnh432Gz/ZG02QIVFA21PiAloHCbrD0WKo7fJuP3dDFlglErBg64dsPpEz2YmESh4jrDbqQimpbZUCh0MmCfiUzNeDx13F2gwKXglTOQPu0nwNrMD0cNGgYxWSPJlEPen6gEyJj3K6jY8eXvLZeLFCzretntSbWEwoPJbSznT1gzmbz6RsUPSpYrjPS58L7NdmIWacPoNZzyHthGcovFBvk8kaQekNcCYid/esAf/C8l3Yz2wOA42Su3J8+K0Cg39X7gCVBXFQJgVSvCHohPRdZw921mEj6Ygf5YS+YYEpemwvkX5trlSnU6WQPWnd8jGx4eHb9RE5auZom3ZZytjFyh08T0mJyg1XG/fmM1GZmmum/qXYzJplBGKmTAgM1SYTc3N9w3dCpLF5KjPjj2mylZfd7r1ycRqgXSqzcygUq5cka0aQaSSVxccvkq7Dt3+bcnnhr7vrL747z57MvCRjA5mJo19/YFFaafYhKANRroJRXQWEtIZ+MWdCzNygPoIsBRrYeGvV8DYzbukkfFUXLlnwDn+Amy2KSMB2M0ukHEtVUC66zFbAkwjhLOtWl7KHr0mpkkUyaBXJYKNlMRVBT+uQmxQ6fya1JfPSBvQj0hmlgPKO/+OG9KY3eUtJx5YsvlJaUbPoRWQyPIIuOAddi5MNWMhQYc3E44kjAsBhrPnYKGA9s+VIZHPk/O0A3al96G4l07DM8e27M8z1C9lZWzRmCZCkK+88Qb1nEHuY/nsA37YF/EINYTC0jUB5SqEei3PmC33XxGok3rjpLmtxd/flb2bmvrW7fNnAtMSyOZSO14Fbe7Lje5lWPiTg21B7aBXKVaK1NpCoHlyFHbAPZn33T9KzG2quS3j3yy5LHHh98TlTxM6cLC5wy3ly5TRIJcowBD+RfOj/9+esd7nziWXW2EY07G+yJ1Xz0ggJQmUKwH7PaAN6E9MTIRsnvqIE6riOyXGJGYkZWNmjwy81ro3jhrxws7rJz8GNeBhJg9J9xDSMVsIeQTRjwsIZKtzgAHNu93vH7hfGmpSmEFp9PEJafJgffxHLZhH+yLGBBsgbn1gNT7ovaPP3hDbaDnnNNJyGiR1gN2281hU3pHwsS0yORkjfPtuyeOfJiJiQVTTSklm8tBQk2tjn6wMpZEBFgvtr4cEsdMhLDBoxIr/vXXveTMIEzx4Vg5I8iDPgC/ewI00Yk6tdFE/KcslkyTHL/sWJyInMvoq1Ov+JNB8+c1AEWXAY62VW7zqwf0rRHoqwfs9oA3oT2+pQylvrGT+8U9DGNng8liAauhhu6L4+/yyXQxQEILLlmNsjRTE0BFAYQlpQKZXhPJWbp39uv5AB+9A/Dko6B2srrJkfFjeqq1yYQkPaCp+rITD7yP57AN+2BfxCDWk457d/HK/LJ6qvXTkfDGZneAxcrVCMRbPPActmEf7Ev1gN0EvDnN5HDBL7eU1fzv2eZv2ILDINfFgiw8FhjycWrTB4PVwQJTdRlkvQbT9R/EJ4NLGwtV/1lpIfTED/4cjvPWyyRAJsu0pARI6ZEYkasN76O1m2ohf//emvf/XLIWD7yP57AN+2BfxLz1suAF8XrAC3roH6MkHZSglrNktmXogffxHLZJ1wfstg7ZjVBHMy62edHWy4vMrV+uXJw7drI2dSCZL00gNzZB6cmjrrPl9ed+Fh45TJZ1OzhbGqDuzHFoLS9ZJVMqn+PHK6twLwQB1Ep1i9pS/N+WndsNez78pPGTcAUcxLYt31ZtWfzIlkemz4ibarO0qMmyUo0voIkE2sOHcvjr93vB3RaS3SB1NF7tf+l33zb80gbfLX8uF3Ihawprzd9y4Zktxa8eqbaesjI7P1sgU4ypb7VC/ZkjW+UqzUrcv+ft/oWeu2VapeWxIRklg04WwemSSii+8zau4fhZ+O9f/rfx3DcHG4dfKIMiqxPKeFCJdwGyDv5ecLd1yG6QOhpJeOV/vq193Ow4/qdfGh2x4S31G/brLRvpWnFH9cNNlk1v3De6f6E6Ivpt4pLMwp2v0jZni97oXEEpFJJWGr7mFbY9CRKytBLK+DYp69jvBXdbxwl4g9TRhFCMO7H8C885T80CwFTHQ/6ea/HixfQXqpzkOd3XlTjdAhKVUqmkekDSdgyoHpB1cuonOZXh4fUnvHW8PmC3ddiCUUeHMg5vwnE6Y/+e13XixU3k/sjExESqB6ypqZlDzh3Fdr7P9bRuAl4nC0Yd3d5x/KmjPUHJx4X+hkGpE1Y/wIjXq5xa3mPXrNujIUSbO3r0aKoH/Prrr+cSAqLi1NYZ71t3GuZ6ecAuUC9aYIs+4Yi2yE3Ga5qggIBWrVZPz8jIkOGB9/EcLzruJmAXtcDq6NDG8VVHS3o6VuKAQjPAH+cHJiFZ72kJqbAy1F3kmEYeTyDeb1ZqamoyrvHwwPt4DtuwD/ZFDGK7p+AuYjdQHb3ovQWZoBddKGkm8UGJOwR4dV4m/HFDIV/Pb7HI6w0KDw//Ii4uTo3Bh9VqZTTEBg4cGNvQwF17jvdJgPKujZhWq1WgFzQYDPaWlha88Ol0NwG7gN1IdXQx4cmFAPGmiawIXpydCW9v8iVhZWWlMyIiIpas92KSkpLoD1objUbiee3AE1Cn0ymys7OTSD/6W861tbWwffv2JsR2e8BuAzMhWKvZfzsVVRGP+JcHM+HZzwq9yrLt3r27mEyzz5rN5oUTJkzIwd8cQRIS7+ZZ7yEho6Ki6I+Jnz59mj18+PDR0tLS1fv37y/uJmC3gYXEJiYz47ddp1ZAShgg+cBhbvmHl3c0mezEm/2LTMMlly5dWjJjxox7evXqpcRUjM39K5xIPAxAvvvuOyfpu+PQoUPLCGGPkWnZ3k3AboM0HSFhtPelm612BqpbuURxZqIC1uwrhNbK0i8vvDrzKXjSK5JlCZFshIgHCgoKLH379h2QlpY2kKwFaXKaj44xSX3x4sVS0ud10vf49YyGuwl4E5u16er6d3bCfKm2H93WDyI0cvjnEQ/5Hsn5qMCnrgv+zFdCQgKMHz9ek5iYqMbIlwQbwO8Z81W3sC03N1dz5MgRqK+vx/VjNwF/6Hb6uTtRTvAazrTC84RoZ7J7quDNXYHJR4IPGDt2LAYdaqVSOblPnz49MdDA7bmioiLqAgcNGqTEilvYRqLfyWPGjMlXq9X2Y8eOdRPwh25uUpVKecY3d8H8QORDmzZtGqZesKxbSmRkZC7xcloMQI4ePVqTn5+/FfsQbzczJyenJ7bFxsbmtra2YiGkMsR2E7DbAnlG1P2Z/JEPrampiV/nqck6T028Wsu5c+f2HDhw4BPiBakekKz9tpSXlz+SlZU1lUTIahKc8DnD6/Jauy9M/wFbXFwcfxen4IHEyw2qrq4+3djYWNy7N/djj1euXAHi+fonJycPv3r1ahEJTlBhQyNgMiV3E7DbOvDh+9buwRmRrv2EQYi4zRNCXwfudBOw226o/Z8AAwBphnYirXZBiwAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-attachment: scroll;
  border: 0 none;
  outline: none;
  cursor: pointer;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-switcher.rc-tree-select-tree-icon__customize,
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox.rc-tree-select-tree-icon__customize,
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-iconEle.rc-tree-select-tree-icon__customize {
  background-image: none;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-icon_loading {
  margin-right: 2px;
  vertical-align: top;
  background: url(data:image/gif;base64,R0lGODlhEAAQAKIGAMLY8YSx5HOm4Mjc88/g9Ofw+v///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFCgAGACwAAAAAEAAQAAADMGi6RbUwGjKIXCAA016PgRBElAVlG/RdLOO0X9nK61W39qvqiwz5Ls/rRqrggsdkAgAh+QQFCgAGACwCAAAABwAFAAADD2hqELAmiFBIYY4MAutdCQAh+QQFCgAGACwGAAAABwAFAAADD1hU1kaDOKMYCGAGEeYFCQAh+QQFCgAGACwKAAIABQAHAAADEFhUZjSkKdZqBQG0IELDQAIAIfkEBQoABgAsCgAGAAUABwAAAxBoVlRKgyjmlAIBqCDCzUoCACH5BAUKAAYALAYACgAHAAUAAAMPaGpFtYYMAgJgLogA610JACH5BAUKAAYALAIACgAHAAUAAAMPCAHWFiI4o1ghZZJB5i0JACH5BAUKAAYALAAABgAFAAcAAAMQCAFmIaEp1motpDQySMNFAgA7) no-repeat scroll 0 0 transparent;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-switcher.rc-tree-select-tree-switcher-noop {
  cursor: auto;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-switcher.rc-tree-select-tree-switcher_open {
  background-position: -93px -56px;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-switcher.rc-tree-select-tree-switcher_close {
  background-position: -75px -56px;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox {
  width: 13px;
  height: 13px;
  margin: 0 3px;
  background-position: 0 0;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox-checked {
  background-position: -14px 0;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox-indeterminate {
  background-position: -14px -28px;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox-disabled {
  background-position: 0 -56px;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox.rc-tree-select-tree-checkbox-checked.rc-tree-select-tree-checkbox-disabled {
  background-position: -14px -56px;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox.rc-tree-select-tree-checkbox-indeterminate.rc-tree-select-tree-checkbox-disabled {
  position: relative;
  background: #ccc;
  border-radius: 3px;
}
.rc-tree-select-tree .rc-tree-select-tree-treenode span.rc-tree-select-tree-checkbox.rc-tree-select-tree-checkbox-indeterminate.rc-tree-select-tree-checkbox-disabled::after {
  position: absolute;
  top: 5px;
  left: 3px;
  width: 5px;
  height: 0;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: scale(1);
  content: ' ';
}
.rc-tree-select-tree:not(.rc-tree-select-tree-show-line) .rc-tree-select-tree-treenode .rc-tree-select-tree-switcher-noop {
  background: none;
}
.rc-tree-select-tree.rc-tree-select-tree-show-line .rc-tree-select-tree-treenode:not(:last-child) > ul {
  background: url(data:image/gif;base64,R0lGODlhCQACAIAAAMzMzP///yH5BAEAAAEALAAAAAAJAAIAAAIEjI9pUAA7) 0 0 repeat-y;
}
.rc-tree-select-tree.rc-tree-select-tree-show-line .rc-tree-select-tree-treenode:not(:last-child) > .rc-tree-select-tree-switcher-noop {
  background-position: -56px -18px;
}
.rc-tree-select-tree.rc-tree-select-tree-show-line .rc-tree-select-tree-treenode:last-child > .rc-tree-select-tree-switcher-noop {
  background-position: -56px -36px;
}
.rc-tree-select-tree-child-tree {
  display: none;
}
.rc-tree-select-tree-child-tree-open {
  display: block;
}
.rc-tree-select-tree-treenode-disabled > span:not(.rc-tree-select-tree-switcher),
.rc-tree-select-tree-treenode-disabled > a,
.rc-tree-select-tree-treenode-disabled > a span {
  color: #767676;
  cursor: not-allowed;
}
.rc-tree-select-tree-treenode-active {
  background: rgba(0, 0, 0, 0.1);
}
.rc-tree-select-tree-node-selected {
  background-color: #ffe6b0;
  box-shadow: 0 0 0 1px #ffb951;
  opacity: 0.8;
}
.rc-tree-select-tree-icon__open {
  margin-right: 2px;
  vertical-align: top;
  background-position: -110px -16px;
}
.rc-tree-select-tree-icon__close {
  margin-right: 2px;
  vertical-align: top;
  background-position: -110px 0;
}
.rc-tree-select-tree-icon__docu {
  margin-right: 2px;
  vertical-align: top;
  background-position: -110px -32px;
}
.rc-tree-select-tree-icon__customize {
  margin-right: 2px;
  vertical-align: top;
}
.rc-tree-select-tree-title {
  display: inline-block;
}
.rc-tree-select-tree-indent {
  display: inline-block;
  height: 0;
  vertical-align: bottom;
}
.rc-tree-select-tree-indent-unit {
  display: inline-block;
  width: 16px;
}
.rc-tree-select-tree-draggable-icon {
  display: inline-flex;
  justify-content: center;
  width: 16px;
}

:root{--toastify-color-light:#fff;--toastify-color-dark:#121212;--toastify-color-info:#3498db;--toastify-color-success:#07bc0c;--toastify-color-warning:#f1c40f;--toastify-color-error:#e74c3c;--toastify-color-transparent:hsla(0,0%,100%,.7);--toastify-icon-color-info:var(--toastify-color-info);--toastify-icon-color-success:var(--toastify-color-success);--toastify-icon-color-warning:var(--toastify-color-warning);--toastify-icon-color-error:var(--toastify-color-error);--toastify-toast-width:320px;--toastify-toast-background:#fff;--toastify-toast-min-height:64px;--toastify-toast-max-height:800px;--toastify-font-family:sans-serif;--toastify-z-index:9999;--toastify-text-color-light:#757575;--toastify-text-color-dark:#fff;--toastify-text-color-info:#fff;--toastify-text-color-success:#fff;--toastify-text-color-warning:#fff;--toastify-text-color-error:#fff;--toastify-spinner-color:#616161;--toastify-spinner-color-empty-area:#e0e0e0;--toastify-color-progress-light:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);--toastify-color-progress-dark:#bb86fc;--toastify-color-progress-info:var(--toastify-color-info);--toastify-color-progress-success:var(--toastify-color-success);--toastify-color-progress-warning:var(--toastify-color-warning);--toastify-color-progress-error:var(--toastify-color-error)}.Toastify__toast-container{z-index:9999;z-index:var(--toastify-z-index);-webkit-transform:translateZ(9999);-webkit-transform:translateZ(var(--toastify-z-index));position:fixed;padding:4px;width:320px;width:var(--toastify-toast-width);box-sizing:border-box;color:#fff}.Toastify__toast-container--top-left{top:1em;left:1em}.Toastify__toast-container--top-center{top:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--top-right{top:1em;right:1em}.Toastify__toast-container--bottom-left{bottom:1em;left:1em}.Toastify__toast-container--bottom-center{bottom:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--bottom-right{bottom:1em;right:1em}@media only screen and (max-width:480px){.Toastify__toast-container{width:100vw;padding:0;left:0;margin:0}.Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right{top:0;transform:translateX(0)}.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right{bottom:0;transform:translateX(0)}.Toastify__toast-container--rtl{right:0;left:auto}}.Toastify__toast{position:relative;min-height:64px;min-height:var(--toastify-toast-min-height);box-sizing:border-box;margin-bottom:1rem;padding:8px;border-radius:4px;box-shadow:0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);display:flex;justify-content:space-between;max-height:800px;max-height:var(--toastify-toast-max-height);overflow:hidden;font-family:sans-serif;font-family:var(--toastify-font-family);cursor:pointer;direction:ltr}.Toastify__toast--rtl{direction:rtl}.Toastify__toast-body{margin:auto 0;flex:1 1 auto;padding:6px;display:flex;align-items:center}.Toastify__toast-body>div:last-child{flex:1 1}.Toastify__toast-icon{margin-inline-end:10px;width:20px;flex-shrink:0;display:flex}.Toastify--animate{animation-fill-mode:both;animation-duration:.7s}.Toastify--animate-icon{animation-fill-mode:both;animation-duration:.3s}@media only screen and (max-width:480px){.Toastify__toast{margin-bottom:0;border-radius:0}}.f{--y:calc(var(--len) - var(--nth));position:absolute;bottom:0;right:0;width:100%;transform:translate3d(0,calc(var(--y) * -40%),0) scale(calc(1 - .05 * var(--y)));transition:all .3s;min-height:80px}.Toastify__toast-theme--dark{background:#121212;background:var(--toastify-color-dark);color:#fff;color:var(--toastify-text-color-dark)}.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light{background:#fff;background:var(--toastify-color-light);color:#757575;color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{color:#fff;color:var(--toastify-text-color-info);background:#3498db;background:var(--toastify-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{color:#fff;color:var(--toastify-text-color-success);background:#07bc0c;background:var(--toastify-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{color:#fff;color:var(--toastify-text-color-warning);background:#f1c40f;background:var(--toastify-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{color:#fff;color:var(--toastify-text-color-error);background:#e74c3c;background:var(--toastify-color-error)}.Toastify__progress-bar-theme--light{background:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:#bb86fc;background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:#3498db;background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:#07bc0c;background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:#f1c40f;background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:#e74c3c;background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning{background:hsla(0,0%,100%,.7);background:var(--toastify-color-transparent)}.Toastify__close-button{color:#fff;background:transparent;outline:none;border:none;padding:0;cursor:pointer;opacity:.7;transition:.3s ease;align-self:flex-start}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:focus,.Toastify__close-button:hover{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{position:absolute;bottom:0;left:0;width:100%;height:5px;z-index:9999;z-index:var(--toastify-z-index);opacity:.7;transform-origin:left}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{right:0;left:auto;transform-origin:right}.Toastify__spinner{width:20px;height:20px;box-sizing:border-box;border:2px solid;border-radius:100%;border-color:#e0e0e0;border-color:var(--toastify-spinner-color-empty-area);border-right-color:#616161;border-right-color:var(--toastify-spinner-color);animation:Toastify__spin .65s linear infinite}@keyframes Toastify__bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes Toastify__bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes Toastify__bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes Toastify__bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{0%{transform:translate3d(110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInLeft{0%{transform:translate3d(-110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInUp{0%{transform:translate3d(0,110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInDown{0%{transform:translate3d(0,-110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(110%,0,0)}}@keyframes Toastify__slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-110%,0,0)}}@keyframes Toastify__slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,500px,0)}}@keyframes Toastify__slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-500px,0)}}.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left{animation-name:Toastify__slideOutLeft}.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right{animation-name:Toastify__slideOutRight}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown}@keyframes Toastify__spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #abb2bf;
  background: #282c34;
}

.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}

.hljs-doctag,
.hljs-keyword,
.hljs-formula {
  color: #c678dd;
}

.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
  color: #e06c75;
}

.hljs-literal {
  color: #56b6c2;
}

.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
  color: #98c379;
}

.hljs-built_in,
.hljs-class .hljs-title {
  color: #e6c07b;
}

.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
  color: #d19a66;
}

.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
  color: #61aeee;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}

.message pre {
  background-color: #272c34;
  border-radius: 8px;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  margin-bottom: 10px;
  max-width: 390px;
  overflow: auto;
}

.message .hljs {
  /* background-color: transparent; */
}

.message table {
  font-size: 0.8em;
}

.message table thead tr {
  background-color: #64748b40;
  text-align: left;
}

.message table th,
.message table td {
  padding: 0.6rem 1rem;
}

.message table tbody tr:last-of-type {
  border-bottom: 2px solid #64748b40;
}

.message>* {
  /* max-width: 390px;
  min-width: 390px; */
}
.message td{
  padding: 10px !important;
}

.message{font-size:16px;position:relative;z-index:0}.message h1,.message h2,.message h3,.message h4,.message h5,.message h6,.message p{margin:1em 0}.message h1:first-child,.message h2:first-child,.message h3:first-child,.message h4:first-child,.message h5:first-child,.message h6:first-child,.message p:first-child{margin-top:0}.message h1:last-child,.message h2:last-child,.message h3:last-child,.message h4:last-child,.message h5:last-child,.message h6:last-child,.message p:last-child{margin-bottom:0}.message p{line-height:1.5}@media only screen and (max-width: 375px){.message p code{word-break:break-all}}.message ol,.message ul{list-style-type:disc;margin-bottom:1.7em;padding-left:2.5em}@media only screen and (max-width: 768px){.message ol,.message ul{list-style-position:inside;padding-left:0}}.message ol{list-style-type:decimal}.message a{border-bottom:1px solid #0069ff;color:#0069ff;text-decoration:none;transition:color .25s,border-bottom-color .25s}.message a:focus,.message a:hover{border-bottom-color:#1253fa;color:#1253fa}.message a code{position:relative;z-index:-1}.message blockquote{border-left:4px solid #d6dcea;color:#8a96b5;display:block;font-size:18px;margin:0 0 1.25em 1.25em;padding:0 0 0 1.5em}.message blockquote a{border-bottom:1px dotted #8a96b5;color:#8a96b5}.message blockquote a:focus,.message blockquote a:hover{border-bottom-style:solid}.message figure,.message img{border:2px solid #e3e8f4;border-radius:16px;display:block;margin:1rem auto;max-width:100%}.message img[align=left]{float:none;float:initial;margin-left:0}.message img[align=right]{float:none;float:initial;margin-right:0}.message figure{overflow:hidden;padding:1rem}.message figure:has(img[align=left]){margin-left:0;width:fit-content}.message figure:has(img[align=right]){margin-right:0;width:fit-content}.message figure img{border:none;border-radius:0;margin:0 auto}.message figure figcaption{border-top:1px solid #e3e8f4;background:#eff2fb;font-size:.9em;text-align:center;padding:1rem;margin:1rem -1rem -1rem}.message code,.message pre{background-color:#e3e8f4;border-radius:8px;color:#24335a;font-size:14px;line-height:1.4em;padding:3px}.message pre{background:#081b4b;color:#fff;border-radius:16px;display:block;margin:1em 0;overflow:auto;overflow-wrap:normal;padding:1em;white-space:normal;word-wrap:normal}.message pre code,.message pre.prefixed code ol li:before{color:#fff}.message pre.prefixed.line_numbers code ol li:before{border-right-color:hsla(0,0%,100%,.5)}.message pre code{background:0;border-radius:0;color:inherit;padding:0;white-space:pre}.message table{border-collapse:collapse;width:100%}.message table thead tr{border-bottom:1px dashed #d6dcea}.message table thead tr th{color:#081b4b;font-weight:600;padding:16px 8px}.message table tbody tr{border-bottom:1px solid #d6dcea}.message table tbody tr td{color:#24335a;padding:24px 8px}.message table td:first-child,.message table th:first-child{padding-left:0}.message table td:last-child,.message table th:last-child{padding-right:0}.message .vimeo,.message .wistia,.message .youtube{display:block;height:auto;margin:1em auto;max-width:100%}.message .rsvp{background:rgba(0,0,0,0);border:1px solid #0069ff;border-radius:3px;box-sizing:border-box;color:#0069ff;cursor:pointer;font-size:16px;font-weight:700;line-height:1;padding:8px 24px;transition:background .25s ease}.message .rsvp:disabled{border-color:#aab3ca;color:#aab3ca;cursor:not-allowed}.message .rsvp:not(:disabled):focus,.message .rsvp:not(:disabled):hover{background:#c8dfff}.message .terminal{background:rgba(0,0,0,0);border:1px solid #0069ff;border-radius:3px;box-sizing:border-box;color:#0069ff;cursor:pointer;font-size:16px;font-weight:700;line-height:1;padding:8px 24px;transition:background .25s ease}.message .terminal:disabled{border-color:#aab3ca;color:#aab3ca;cursor:not-allowed}.message .terminal:not(:disabled):focus,.message .terminal:not(:disabled):hover{background:#c8dfff}.message .columns{display:flex;flex-flow:row nowrap;margin:-1em}@media only screen and (max-width: 768px){.message .columns{flex-flow:row wrap}}@media only screen and (max-width: 375px){.message .columns{flex-flow:column}}.message .columns .column{flex-basis:100%;flex-grow:1;padding:1em}@media only screen and (max-width: 768px){.message .columns .column{flex-basis:auto}}.message details{background:#f9fafe;border-radius:16px;padding:1em;margin:1em 0}.message details[open] summary{border-bottom:1px solid #e3e8f4;padding:0 1em 1em 0;margin:0 0 1em}.message details[open] summary:after{top:calc(50% - 3px);transform:translateY(-50%) rotate(225deg)}.message details summary{cursor:pointer;list-style:none;padding:0 1em 0 0;position:relative}.message details summary::-webkit-details-marker,.message details summary::marker{display:none}.message details summary:after{content:"";display:block;position:absolute;top:50%;right:4px;width:7px;height:7px;border:solid #8a96b5;border-width:0 2px 2px 0;transform:translateY(-50%) rotate(45deg)}.message .twitter .twitter-tweet-rendered{margin:1rem auto}.message .twitter[align=left]{float:none;float:initial}.message .twitter[align=left] .twitter-tweet-rendered{margin-left:0}.message .twitter[align=right]{float:none;float:initial}.message .twitter[align=right] .twitter-tweet-rendered{margin-right:0}.message .instagram .instagram-media{margin:1rem auto !important}.message .instagram[align=left] .instagram-media{margin-left:0 !important}.message .instagram[align=right] .instagram-media{margin-right:0 !important}.message .slideshow{margin:0 auto;position:relative;overflow:hidden}.message .slideshow .action{background-color:hsla(0,10%,70%,.2);border:1px solid #666;border-radius:50%;color:#666;cursor:pointer;font-size:32px;height:30px;line-height:22px;position:absolute;text-align:center;top:50%;width:30px;z-index:10}.message .slideshow .action.left{left:10px}.message .slideshow .action.right{right:10px}.message .slideshow .action:hover{background-color:hsla(0,10%,70%,.1);border:1px solid #ccc;color:#ccc}.message .slideshow .slides{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch}.message .slideshow .slides>img{align-items:center;display:flex;flex-shrink:0;font-size:100px;height:100%;justify-content:center;margin-right:50px;scroll-snap-align:start;position:relative;transform-origin:center center;transform:scale(1);transition:transform .5s;width:100%}.message .hash-anchor{border-bottom:none;color:#8a96b5;margin-right:.5em;text-decoration:none}.message .hash-anchor:focus,.message .hash-anchor:hover{color:#24335a}.message .hash-anchor:before{content:"#"}.message mark{background:rgba(242,201,76,.35);border-radius:8px;color:inherit;display:inline;line-height:calc(1.4em + 1px);padding:0 2px}.message mark mark{background:none;border-radius:0;border-radius:initial;line-height:1.4em;padding:0;padding:initial}.message pre code mark{background:rgba(65,255,244,.35)}.message pre code mark mark{background:none}.message .callout{background-color:#c8dfff;border-radius:16px;color:#002c9b;display:block;font-size:15px;line-height:1.5em;margin:0 0 1.5em;padding:1em 1.25em;position:relative;z-index:0}.message .callout>:first-child{margin-top:0}.message .callout>:last-child{margin-bottom:0}.message .callout .callout-label{background:rgba(0,0,0,.1);border-radius:16px 16px 0 0;font-size:15px;margin:-1em -1.25em 0;padding:.75em 1.25em;text-align:center}.message .code-label{background-color:#d6dcea;border-radius:16px 16px 0 0;color:#24335a;display:block;font-size:14px;margin:1em 0 0;padding:.5em 1em;position:relative;text-align:center;z-index:2}.message .code-label+pre{border-radius:0 0 16px 16px;margin:0 0 1em}.message .code-label+.code-toolbar{margin:0 0 1em}.message .code-label+.code-toolbar pre{border-radius:0 0 16px 16px}.message pre.prefixed code{white-space:normal}.message pre.prefixed code ol{list-style:none;margin:0;padding:0}.message pre.prefixed code ol li{margin:0;padding:0;white-space:pre}.message pre.prefixed code ol li:before{content:attr(data-prefix);display:inline-block;margin:0 10px 0 5px;text-align:right;-webkit-user-select:none;user-select:none}.message pre.prefixed.line_numbers code ol li{margin:0 0 0 -5px}.message pre.prefixed.line_numbers code ol li:before{border-right:1px solid hsla(0,0%,100%,.5);padding-right:5px}.message pre[class*=language-]>code{background:rgba(0,0,0,0)}.message pre[class*=language-]>code .token.entity,.message pre[class*=language-]>code .token.operator,.message pre[class*=language-]>code .token.punctuation,.message pre[class*=language-]>code .token.url,.message pre[class*=language-]>code.language-css .token.string,.message pre[class*=language-]>code.style .token.string{color:#eff2fb}.message pre[class*=language-]>code .token.cdata,.message pre[class*=language-]>code .token.comment,.message pre[class*=language-]>code .token.doctype,.message pre[class*=language-]>code .token.prolog{color:#e3e8f4}.message pre[class*=language-]>code .token.atrule,.message pre[class*=language-]>code .token.builtin,.message pre[class*=language-]>code .token.char,.message pre[class*=language-]>code .token.constant,.message pre[class*=language-]>code .token.deleted,.message pre[class*=language-]>code .token.delimiter,.message pre[class*=language-]>code .token.inserted,.message pre[class*=language-]>code .token.keyword,.message pre[class*=language-]>code .token.property,.message pre[class*=language-]>code .token.selector,.message pre[class*=language-]>code .token.symbol,.message pre[class*=language-]>code .token.tag{color:#4994ff}.message pre[class*=language-]>code .token.attr-name,.message pre[class*=language-]>code .token.boolean,.message pre[class*=language-]>code .token.color,.message pre[class*=language-]>code .token.string,.message pre[class*=language-]>code .token.variable{color:#29e3ab}.message pre[class*=language-]>code .token.attr-value,.message pre[class*=language-]>code .token.class-name,.message pre[class*=language-]>code .token.function{color:#ff4084}.message pre[class*=language-]>code .token.important,.message pre[class*=language-]>code .token.number,.message pre[class*=language-]>code .token.regex{color:#00c6ff}.message pre[class*=language-]>code,.message pre[class*=language-]>code .token{text-shadow:none}.message pre[class*=language-]>code.language-css .token.string,.message pre[class*=language-]>code.style .token.string{background:none}.message pre[class*=language-]>code .token{background:none;border-radius:0;display:inline;font-weight:400;margin:0;padding:0}.message pre[class*=language-]>code .token.namespace{opacity:.7}.message pre[class*=language-]>code .token.entity,.message pre[class*=language-]>code .token.operator,.message pre[class*=language-]>code .token.url{background:none}.message pre[class*=language-]>code .token.bold,.message pre[class*=language-]>code .token.important{font-weight:700}.message pre[class*=language-]>code .token.italic{font-style:italic}.message .code-toolbar{margin:1em 0;position:relative}.message .code-toolbar>pre{margin:0}.message .code-toolbar>.toolbar{position:absolute;right:.2em;top:.3em}.message .code-toolbar>.toolbar>.toolbar-item{display:inline-block}.message .code-toolbar>.toolbar>.toolbar-item>a{text-decoration:none}.message .code-toolbar>.toolbar>.toolbar-item>button{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-user-select:none;user-select:none}.message .code-toolbar>.toolbar>.toolbar-item>a,.message .code-toolbar>.toolbar>.toolbar-item>button{background:#fff;border-radius:8px;cursor:pointer;height:24px;padding:0 8px;transition:color .25s,background .25s;width:auto}.message .code-toolbar>.toolbar>.toolbar-item>a:focus,.message .code-toolbar>.toolbar>.toolbar-item>a:hover,.message .code-toolbar>.toolbar>.toolbar-item>button:focus,.message .code-toolbar>.toolbar>.toolbar-item>button:hover{background:#4994ff;color:#000c2b}.message .code-toolbar>.toolbar>.toolbar-item>a:focus span,.message .code-toolbar>.toolbar>.toolbar-item>a:hover span,.message .code-toolbar>.toolbar>.toolbar-item>button:focus span,.message .code-toolbar>.toolbar>.toolbar-item>button:hover span{color:#fff}.message .code-toolbar>.toolbar>.toolbar-item>a,.message .code-toolbar>.toolbar>.toolbar-item>button,.message .code-toolbar>.toolbar>.toolbar-item>span{color:#24335a;font-size:.9em;margin:.5em;padding:.1em 8px}.message pre code .secondary-code-label{color:#00c6ff;margin:0 0 4px}.message .table-wrapper{overflow-x:auto;width:100%}.message .image-compare{position:relative}.message .image-compare .image-left,.message .image-compare .image-right{height:100%;object-fit:contain;position:absolute;width:100%}.message .image-compare .image-left{clip-path:polygon(0 0, var(--value) 0, var(--value) 100%, 0 100%);margin:0}.message .image-compare .image-right{clip-path:polygon(100% 0, var(--value) 0, var(--value) 100%, 100% 100%);margin:0}.message .image-compare .control-arrow{width:30px;height:30px;position:absolute;top:50%;left:calc(var(--value) - 13px);color:#fff;z-index:90}.message .image-compare .control{background-color:rgba(0,0,0,0);box-sizing:border-box;font-family:inherit;height:100%;outline:none;position:absolute;top:0;width:100%;z-index:100}.message .image-compare .control::-moz-range-thumb{background-color:#fff;border:none;cursor:ew-resize;height:100%;width:2px}.message .image-compare .control::-webkit-slider-thumb{background-color:#fff;border:none;cursor:ew-resize;height:100%;width:2px}.message .image-compare .control::-moz-range-track{background:rgba(0,0,0,0);background-size:100%;box-sizing:border-box}.message .image-compare .control::-webkit-slider-runnable-track{background:rgba(0,0,0,0);background-size:100%;box-sizing:border-box;height:100%}.message .image-compare .control,.message .image-compare .control::-webkit-slider-runnable-track,.message .image-compare .control::-webkit-slider-thumb{-webkit-appearance:none;appearance:none}.message .callout.note{background-color:#d4efee;color:#005955}.message .callout.warning{background-color:#ffe2e0;color:#820800}.message .callout.info{background-color:#c8dfff;color:#002c9b}.message .callout.draft{background-color:#ffc0ff;color:#606}.message pre[class*=environment-]>code .token.entity,.message pre[class*=environment-]>code .token.operator,.message pre[class*=environment-]>code .token.punctuation,.message pre[class*=environment-]>code .token.url,.message pre[class*=environment-]>code.language-css .token.string,.message pre[class*=environment-]>code.style .token.string{color:#aab3ca}.message pre[class*=environment-]>code .token.cdata,.message pre[class*=environment-]>code .token.comment,.message pre[class*=environment-]>code .token.doctype,.message pre[class*=environment-]>code .token.prolog{color:#8a96b5}.message pre[class*=environment-]>code .token.atrule,.message pre[class*=environment-]>code .token.builtin,.message pre[class*=environment-]>code .token.char,.message pre[class*=environment-]>code .token.constant,.message pre[class*=environment-]>code .token.deleted,.message pre[class*=environment-]>code .token.delimiter,.message pre[class*=environment-]>code .token.inserted,.message pre[class*=environment-]>code .token.keyword,.message pre[class*=environment-]>code .token.property,.message pre[class*=environment-]>code .token.selector,.message pre[class*=environment-]>code .token.symbol,.message pre[class*=environment-]>code .token.tag{color:#0069ff}.message pre[class*=environment-]>code .token.attr-name,.message pre[class*=environment-]>code .token.boolean,.message pre[class*=environment-]>code .token.color,.message pre[class*=environment-]>code .token.string,.message pre[class*=environment-]>code .token.variable{color:#08966b}.message pre[class*=environment-]>code .token.attr-value,.message pre[class*=environment-]>code .token.class-name,.message pre[class*=environment-]>code .token.function{color:#e0276a}.message pre[class*=environment-]>code .token.important,.message pre[class*=environment-]>code .token.number,.message pre[class*=environment-]>code .token.regex{color:#225196}.message pre[class*=environment-] .secondary-code-label{color:#081b4b}.message pre[class*=environment-] mark{background:rgba(242,201,76,.35)}.message pre[class*=environment-] mark mark{background:none}.message pre.environment-local{background:#e3e8f4;color:#4d5b7c}.message pre.environment-local code,.message pre.environment-local.prefixed code ol li:before{color:#4d5b7c}.message pre.environment-local.prefixed.line_numbers code ol li:before{border-right-color:rgba(77,91,124,.5)}.message pre.environment-second{background:rgba(200,223,255,.5);color:#002c9b}.message pre.environment-second code,.message pre.environment-second.prefixed code ol li:before{color:#002c9b}.message pre.environment-second.prefixed.line_numbers code ol li:before{border-right-color:rgba(0,44,155,.5)}.message pre.environment-third{background:hsla(4,100%,94%,.5);color:#820800}.message pre.environment-third code,.message pre.environment-third.prefixed code ol li:before{color:#820800}.message pre.environment-third.prefixed.line_numbers code ol li:before{border-right-color:rgba(130,8,0,.5)}.message pre.environment-fourth{background:rgba(212,239,238,.5);color:#005955}.message pre.environment-fourth code,.message pre.environment-fourth.prefixed code ol li:before{color:#005955}.message pre.environment-fourth.prefixed.line_numbers code ol li:before{border-right-color:rgba(0,89,85,.5)}.message pre.environment-fifth{background:rgba(255,222,255,.5);color:#606}.message pre.environment-fifth code,.message pre.environment-fifth.prefixed code ol li:before{color:#606}.message pre.environment-fifth.prefixed.line_numbers code ol li:before{border-right-color:rgba(102,0,102,.5)}
/**
* General Uppy styles that apply to everything inside the .uppy-Root container
*/
.uppy-Root {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  position: relative;
  color: #333;
}

[dir=rtl] .uppy-Root, .uppy-Root[dir=rtl] {
  text-align: right;
}

.uppy-Root *, .uppy-Root *:before, .uppy-Root *:after {
  box-sizing: inherit;
}

.uppy-Root [hidden] {
  display: none;
}

.uppy-u-reset {
  -webkit-appearance: none;
  line-height: 1;
  padding: 0;
  border: 0;
  color: inherit;
  backface-visibility: visible;
  background: none;
  border: medium none currentColor;
  border-collapse: separate;
  -o-border-image: none;
     border-image: none;
  border-radius: 0;
  border-spacing: 0;
  box-shadow: none;
  clear: none;
  cursor: auto;
  display: inline;
  empty-cells: show;
  float: none;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-feature-settings: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  -webkit-hyphens: none;
          hyphens: none;
  left: auto;
  letter-spacing: normal;
  list-style: none;
  margin: 0;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  opacity: 1;
  outline: medium none invert;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  top: auto;
  transform: none;
  transform-origin: 50% 50% 0;
  transform-style: flat;
  transition: none 0s ease 0s;
  unicode-bidi: normal;
  vertical-align: baseline;
  visibility: visible;
  white-space: normal;
  z-index: auto;
}

[dir=rtl] .uppy-u-reset {
  text-align: right;
}

.uppy-c-textInput {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 8px;
  background-color: #fff;
}
.uppy-size--md .uppy-c-textInput {
  padding: 8px 10px;
}
.uppy-c-textInput:focus {
  border-color: rgba(34, 117, 215, 0.6);
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.15);
}
[data-uppy-theme=dark] .uppy-c-textInput {
  background-color: #333;
  border-color: #333;
  color: #eaeaea;
}
[data-uppy-theme=dark] .uppy-c-textInput:focus {
  border-color: #525252;
  box-shadow: none;
}

.uppy-c-icon {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  display: inline-block;
  overflow: hidden;
}

.uppy-c-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  transition-property: background-color, color;
  transition-duration: 0.3s;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}
[dir=rtl] .uppy-c-btn {
  text-align: center;
}

.uppy-c-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.uppy-c-btn::-moz-focus-inner {
  border: 0;
}

.uppy-c-btn-primary {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 4px;
  background-color: #2275d7;
  color: #fff;
}
.uppy-c-btn-primary:hover {
  background-color: #1b5dab;
}
.uppy-c-btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
}
.uppy-size--md .uppy-c-btn-primary {
  padding: 13px 22px;
}
[data-uppy-theme=dark] .uppy-c-btn-primary {
  color: #eaeaea;
}
[data-uppy-theme=dark] .uppy-c-btn-primary:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-c-btn-primary::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-c-btn-primary:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

.uppy-c-btn-link {
  font-size: 14px;
  line-height: 1;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: transparent;
  color: #525252;
}
.uppy-c-btn-link:hover {
  color: #333;
}
.uppy-c-btn-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
}
.uppy-size--md .uppy-c-btn-link {
  padding: 13px 18px;
}
[data-uppy-theme=dark] .uppy-c-btn-link {
  color: #eaeaea;
}
[data-uppy-theme=dark] .uppy-c-btn-link:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-c-btn-link::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-c-btn-link:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}
[data-uppy-theme=dark] .uppy-c-btn-link:hover {
  color: #939393;
}

.uppy-c-btn--small {
  font-size: 0.9em;
  padding: 7px 16px;
  border-radius: 2px;
}
.uppy-size--md .uppy-c-btn--small {
  padding: 8px 10px;
  border-radius: 2px;
}
@charset "UTF-8";
.uppy-Informer {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 1;
  transform: none;
  transition: all 250ms ease-in;
  z-index: 1005;
}

.uppy-Informer[aria-hidden=true] {
  opacity: 0;
  transform: translateY(350%);
  transition: all 300ms ease-in;
  z-index: -1000;
}

.uppy-Informer p {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  padding: 6px 15px;
  background-color: #757575;
  color: #fff;
  border-radius: 18px;
  max-width: 90%;
}
.uppy-size--md .uppy-Informer p {
  font-size: 14px;
  line-height: 1.3;
  max-width: 500px;
  padding: 10px 20px;
}
[data-uppy-theme=dark] .uppy-Informer p {
  background-color: #333;
}

[dir="ltr"] .uppy-Informer span{
  left: 3px;
}

[dir="rtl"] .uppy-Informer span{
  right: 3px;
}

[dir="ltr"] .uppy-Informer span{
          margin-left: -1px;
}

[dir="rtl"] .uppy-Informer span{
          margin-right: -1px;
}

.uppy-Informer span {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #525252;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  font-size: 10px;
  -webkit-margin-start: -1px;
}

.uppy-Informer span:hover {
  cursor: help;
}

.uppy-Informer span:after {
  line-height: 1.3;
  word-wrap: break-word;
}

/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/
/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/
.uppy-Root [aria-label][role~=tooltip] {
  /* no important */
  position: relative;
}

.uppy-Root [aria-label][role~=tooltip]::before,
.uppy-Root [aria-label][role~=tooltip]::after {
  /* no important */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s ease-in-out 0s;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}

.uppy-Root [aria-label][role~=tooltip]::before {
  /* no important */
  background-size: 100% auto !important;
  content: "";
}

.uppy-Root [aria-label][role~=tooltip]::after {
  /* no important */
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #ffffff;
  content: attr(aria-label);
  font-size: 13px;
  font-size: var(--microtip-font-size, 13px);
  font-weight: normal;
  font-weight: var(--microtip-font-weight, normal);
  text-transform: none;
  text-transform: var(--microtip-text-transform, none);
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

.uppy-Root [aria-label][role~=tooltip]:hover::before,
.uppy-Root [aria-label][role~=tooltip]:hover::after,
.uppy-Root [aria-label][role~=tooltip]:focus::before,
.uppy-Root [aria-label][role~=tooltip]:focus::after {
  /* no important */
  opacity: 1;
  pointer-events: auto;
}

/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position|=top]::before {
  /* no important */
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]::after {
  /* no important */
  margin-bottom: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]::before {
  /* no important */
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]:hover::before {
  /* no important */
  transform: translate3d(-50%, -5px, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]::after {
  /* no important */
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

.uppy-Root [role~=tooltip][data-microtip-position=top]:hover::after {
  /* no important */
  transform: translate3d(-50%, -5px, 0);
}

/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position=top-left]::after {
  /* no important */
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=top-left]:hover::after {
  /* no important */
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}

/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position=top-right]::after {
  /* no important */
  transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=top-right]:hover::after {
  /* no important */
  transform: translate3d(calc(0% + -16px), -5px, 0);
}

/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position|=bottom]::before {
  /* no important */
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]::after {
  /* no important */
  margin-top: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]::before {
  /* no important */
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:hover::before {
  /* no important */
  transform: translate3d(-50%, 0, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]::after {
  /* no important */
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom]:hover::after {
  /* no important */
  transform: translate3d(-50%, 0, 0);
}

/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]::after {
  /* no important */
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:hover::after {
  /* no important */
  transform: translate3d(calc(-100% + 16px), 0, 0);
}

/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]::after {
  /* no important */
  transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:hover::after {
  /* no important */
  transform: translate3d(calc(0% + -16px), 0, 0);
}

/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position=left]::before,
.uppy-Root [role~=tooltip][data-microtip-position=left]::after {
  /* no important */
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=left]::before {
  /* no important */
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

.uppy-Root [role~=tooltip][data-microtip-position=left]::after {
  /* no important */
  margin-right: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position=left]:hover::before,
.uppy-Root [role~=tooltip][data-microtip-position=left]:hover::after {
  /* no important */
  transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-position=right]::before,
.uppy-Root [role~=tooltip][data-microtip-position=right]::after {
  /* no important */
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=right]::before {
  /* no important */
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

.uppy-Root [role~=tooltip][data-microtip-position=right]::after {
  /* no important */
  margin-left: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position=right]:hover::before,
.uppy-Root [role~=tooltip][data-microtip-position=right]:hover::after {
  /* no important */
  transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
.uppy-Root [role~=tooltip][data-microtip-size=small]::after {
  /* no important */
  white-space: normal;
  white-space: initial;
  width: 80px;
}

.uppy-Root [role~=tooltip][data-microtip-size=medium]::after {
  /* no important */
  white-space: normal;
  white-space: initial;
  width: 150px;
}

.uppy-Root [role~=tooltip][data-microtip-size=large]::after {
  /* no important */
  white-space: normal;
  white-space: initial;
  width: 260px;
}

.uppy-StatusBar {
  display: flex;
  position: relative;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #fff;
  z-index: 1001;
  transition: height 0.2s;
}
.uppy-size--md .uppy-StatusBar {
  height: 46px;
}
[data-uppy-theme=dark] .uppy-StatusBar {
  background-color: #1f1f1f;
}

.uppy-StatusBar:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
}
[data-uppy-theme=dark] .uppy-StatusBar:before {
  background-color: #757575;
}

.uppy-StatusBar[aria-hidden=true] {
  overflow-y: hidden;
  height: 0;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-progress {
  background-color: #1bb240;
}

.uppy-StatusBar.is-error .uppy-StatusBar-progress {
  background-color: #e32437;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-statusIndicator {
  color: #1bb240;
}

.uppy-StatusBar.is-error .uppy-StatusBar-statusIndicator {
  color: #e32437;
}

.uppy-StatusBar:not([aria-hidden=true]).is-waiting {
  background-color: #fff;
  height: 65px;
  border-top: 1px solid #eaeaea;
}
[data-uppy-theme=dark] .uppy-StatusBar:not([aria-hidden=true]).is-waiting {
  background-color: #1f1f1f;
  border-top: 1px solid #333;
}

.uppy-StatusBar-progress {
  background-color: #2275d7;
  height: 2px;
  position: absolute;
  z-index: 1001;
  transition: background-color, width 0.3s ease-out;
}
.uppy-StatusBar-progress.is-indeterminate {
  background-size: 64px 64px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 75%, transparent 75%, transparent);
  animation: uppy-StatusBar-ProgressStripes 1s linear infinite;
}

@keyframes uppy-StatusBar-ProgressStripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 64px 0;
  }
}
.uppy-StatusBar.is-preprocessing .uppy-StatusBar-progress,
.uppy-StatusBar.is-postprocessing .uppy-StatusBar-progress {
  background-color: #f6a623;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-progress {
  display: none;
}

[dir="ltr"] .uppy-StatusBar-content{
          padding-left: 10px;
}

[dir="rtl"] .uppy-StatusBar-content{
          padding-right: 10px;
}

.uppy-StatusBar-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1002;
  -webkit-padding-start: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
  height: 100%;
}
[dir="ltr"] .uppy-size--md .uppy-StatusBar-content{
          padding-left: 15px;
}
[dir="rtl"] .uppy-size--md .uppy-StatusBar-content{
          padding-right: 15px;
}
.uppy-size--md .uppy-StatusBar-content {
  -webkit-padding-start: 15px;
}
[data-uppy-theme=dark] .uppy-StatusBar-content {
  color: #eaeaea;
}

[dir="ltr"] .uppy-StatusBar-status{
          padding-right: 0.3em;
}

[dir="rtl"] .uppy-StatusBar-status{
          padding-left: 0.3em;
}

.uppy-StatusBar-status {
  line-height: 1.4;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-padding-end: 0.3em;
}

.uppy-StatusBar-statusPrimary {
  font-weight: 500;
  line-height: 1;
}
[data-uppy-theme=dark] .uppy-StatusBar-statusPrimary {
  color: #eaeaea;
}

.uppy-StatusBar-statusSecondary {
  margin-top: 1px;
  font-size: 11px;
  line-height: 1.2;
  display: inline-block;
  color: #757575;
  white-space: nowrap;
}
[data-uppy-theme=dark] .uppy-StatusBar-statusSecondary {
  color: #bbb;
}

[dir="ltr"] .uppy-StatusBar-statusSecondaryHint{
          margin-right: 5px;
}

[dir="rtl"] .uppy-StatusBar-statusSecondaryHint{
          margin-left: 5px;
}

.uppy-StatusBar-statusSecondaryHint {
  display: inline-block;
  vertical-align: middle;
  -webkit-margin-end: 5px;
  line-height: 1;
}
[dir="ltr"] .uppy-size--md .uppy-StatusBar-statusSecondaryHint{
          margin-right: 8px;
}
[dir="rtl"] .uppy-size--md .uppy-StatusBar-statusSecondaryHint{
          margin-left: 8px;
}
.uppy-size--md .uppy-StatusBar-statusSecondaryHint {
  -webkit-margin-end: 8px;
}

[dir="ltr"] .uppy-StatusBar-statusIndicator{
          margin-right: 7px;
}

[dir="rtl"] .uppy-StatusBar-statusIndicator{
          margin-left: 7px;
}

.uppy-StatusBar-statusIndicator {
  position: relative;
  top: 1px;
  color: #525252;
  -webkit-margin-end: 7px;
}
.uppy-StatusBar-statusIndicator svg {
  vertical-align: text-bottom;
}

[dir="ltr"] .uppy-StatusBar-actions{
  right: 10px;
}

[dir="rtl"] .uppy-StatusBar-actions{
  left: 10px;
}

.uppy-StatusBar-actions {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1004;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  width: 100%;
  height: 100%;
  position: static;
  padding: 0 15px;
  background-color: #fafafa;
}
[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  background-color: #1f1f1f;
}

.uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts {
  height: 90px;
  flex-direction: column;
}
.uppy-size--md .uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts {
  height: 65px;
  flex-direction: row;
}
.uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts .uppy-StatusBar-actions {
  flex-direction: column;
  justify-content: center;
}
.uppy-size--md .uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts .uppy-StatusBar-actions {
  flex-direction: row;
  justify-content: initial;
}

.uppy-StatusBar-actionCircleBtn {
  line-height: 1;
  cursor: pointer;
  margin: 3px;
  opacity: 0.9;
}
.uppy-StatusBar-actionCircleBtn:focus {
  outline: none;
}
.uppy-StatusBar-actionCircleBtn::-moz-focus-inner {
  border: 0;
}
.uppy-StatusBar-actionCircleBtn:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}
[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}
.uppy-StatusBar-actionCircleBtn:hover {
  opacity: 1;
}
.uppy-StatusBar-actionCircleBtn:focus {
  border-radius: 50%;
}

.uppy-StatusBar-actionCircleBtn svg {
  vertical-align: bottom;
}

.uppy-StatusBar-actionBtn {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  line-height: inherit;
  color: #2275d7;
}
.uppy-size--md .uppy-StatusBar-actionBtn {
  font-size: 11px;
}

.uppy-StatusBar-actionBtn--disabled {
  opacity: 0.4;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--disabled {
  opacity: 0.7;
}

[dir="ltr"] .uppy-StatusBar-actionBtn--retry{
          margin-right: 6px;
}

[dir="rtl"] .uppy-StatusBar-actionBtn--retry{
          margin-left: 6px;
}

.uppy-StatusBar-actionBtn--retry {
  height: 16px;
  border-radius: 8px;
  -webkit-margin-end: 6px;
  background-color: #ff4b23;
  line-height: 1;
  color: #fff;
  padding: 1px 6px 3px 18px;
  position: relative;
}
.uppy-StatusBar-actionBtn--retry:focus {
  outline: none;
}
.uppy-StatusBar-actionBtn--retry::-moz-focus-inner {
  border: 0;
}
.uppy-StatusBar-actionBtn--retry:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}
.uppy-StatusBar-actionBtn--retry:hover {
  background-color: #f92d00;
}
[dir="ltr"] .uppy-StatusBar-actionBtn--retry svg{
  left: 6px;
}
[dir="rtl"] .uppy-StatusBar-actionBtn--retry svg{
  right: 6px;
}
.uppy-StatusBar-actionBtn--retry svg {
  position: absolute;
  top: 3px;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  font-size: 14px;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  background-color: #1bb240;
  line-height: 1;
}
.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #189c38;
}
[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  background-color: #1c8b37;
}
[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #18762f;
}

.uppy-size--md .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  padding: 13px 22px;
  width: auto;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload.uppy-StatusBar-actionBtn--disabled:hover {
  cursor: not-allowed;
  background-color: #1bb240;
}

[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload.uppy-StatusBar-actionBtn--disabled:hover {
  background-color: #1c8b37;
}

.uppy-StatusBar:not(.is-waiting) .uppy-StatusBar-actionBtn--upload {
  background-color: transparent;
  color: #2275d7;
}

[dir="ltr"] .uppy-StatusBar-actionBtn--uploadNewlyAdded{
          padding-right: 3px;
}

[dir="rtl"] .uppy-StatusBar-actionBtn--uploadNewlyAdded{
          padding-left: 3px;
}

[dir="ltr"] .uppy-StatusBar-actionBtn--uploadNewlyAdded{
          padding-left: 3px;
}

[dir="rtl"] .uppy-StatusBar-actionBtn--uploadNewlyAdded{
          padding-right: 3px;
}

.uppy-StatusBar-actionBtn--uploadNewlyAdded {
  -webkit-padding-end: 3px;
  -webkit-padding-start: 3px;
  padding-bottom: 1px;
  border-radius: 3px;
}
.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  outline: none;
}
.uppy-StatusBar-actionBtn--uploadNewlyAdded::-moz-focus-inner {
  border: 0;
}
.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

.uppy-StatusBar-actionBtn--done {
  line-height: 1;
  border-radius: 3px;
  padding: 7px 8px;
}
.uppy-StatusBar-actionBtn--done:focus {
  outline: none;
}
.uppy-StatusBar-actionBtn--done::-moz-focus-inner {
  border: 0;
}
.uppy-StatusBar-actionBtn--done:hover {
  color: #1b5dab;
}
.uppy-StatusBar-actionBtn--done:focus {
  background-color: #eceef2;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--done:focus {
  background-color: #333;
}
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--done {
  color: #02baf2;
}

.uppy-size--md .uppy-StatusBar-actionBtn--done {
  font-size: 14px;
}

.uppy-StatusBar-serviceMsg {
  font-size: 11px;
  line-height: 1.1;
  color: #000;
  padding-left: 10px;
}
.uppy-size--md .uppy-StatusBar-serviceMsg {
  font-size: 14px;
  padding-left: 15px;
}
[data-uppy-theme=dark] .uppy-StatusBar-serviceMsg {
  color: #eaeaea;
}

.uppy-StatusBar-serviceMsg-ghostsIcon {
  opacity: 0.5;
  vertical-align: text-bottom;
  position: relative;
  top: 2px;
  left: 6px;
  width: 10px;
}
.uppy-size--md .uppy-StatusBar-serviceMsg-ghostsIcon {
  width: 15px;
  left: 10px;
  top: 1px;
}

[dir="ltr"] .uppy-StatusBar-details{
  left: 2px;
}

[dir="rtl"] .uppy-StatusBar-details{
  right: 2px;
}

.uppy-StatusBar-details {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background-color: #939393;
  border-radius: 50%;
  position: relative;
  top: 0;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  cursor: help;
}

.uppy-StatusBar-details:after {
  line-height: 1.3;
  word-wrap: break-word;
}

[dir="ltr"] .uppy-StatusBar-spinner{
          margin-right: 10px;
}

[dir="rtl"] .uppy-StatusBar-spinner{
          margin-left: 10px;
}

.uppy-StatusBar-spinner {
  animation-name: uppy-StatusBar-spinnerAnimation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-margin-end: 10px;
  fill: #2275d7;
}

.uppy-StatusBar.is-preprocessing .uppy-StatusBar-spinner,
.uppy-StatusBar.is-postprocessing .uppy-StatusBar-spinner {
  fill: #f6a623;
}

@keyframes uppy-StatusBar-spinnerAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px;
}
.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list::after {
  content: "";
  flex: auto;
}
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem {
  width: 50%;
  position: relative;
  margin: 0;
}
.uppy-size--md .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem {
  width: 33.3333%;
}
.uppy-size--lg .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem {
  width: 25%;
}
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected img, .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected svg {
  opacity: 0.85;
}
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--disabled {
  opacity: 0.5;
}
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner {
  background-color: rgba(147, 147, 147, 0.2);
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner {
  background-color: rgba(234, 234, 234, 0.2);
}
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview svg {
  fill: rgba(0, 0, 0, 0.7);
  width: 30%;
  height: 30%;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview svg {
  fill: rgba(255, 255, 255, 0.8);
}
.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner {
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  text-align: center;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
}
.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.9);
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner {
  box-shadow: 0 0 0 3px rgba(170, 225, 255, 0.7);
}
.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  background-color: #2275d7;
  border-radius: 50%;
  z-index: 1002;
  opacity: 0;
}
[dir="ltr"] .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox:after{
  left: 7px;
}
[dir="rtl"] .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox:after{
  right: 7px;
}
.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox:after {
  width: 12px;
  height: 7px;
  top: 8px;
}
.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
  opacity: 1;
}

.uppy-ProviderBrowser-viewType--list {
  background-color: #fff;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list {
  background-color: #1f1f1f;
}
.uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem {
  display: flex;
  align-items: center;
  padding: 7px 15px;
  margin: 0;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem {
  color: #eaeaea;
}
.uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem--disabled {
  opacity: 0.6;
}
[dir="ltr"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox{
          margin-right: 15px;
}
[dir="rtl"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox{
          margin-left: 15px;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox {
  -webkit-margin-end: 15px;
  height: 17px;
  width: 17px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #cfcfcf;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox:focus {
  border: 1px solid #2275d7;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
  outline: none;
}
[dir="ltr"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox::after{
  left: 3px;
}
[dir="rtl"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox::after{
  right: 3px;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox::after {
  opacity: 0;
  height: 5px;
  width: 9px;
  top: 4px;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox:focus {
  border-color: rgba(2, 186, 242, 0.7);
  box-shadow: 0 0 0 3px rgba(2, 186, 242, 0.2);
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
  background-color: #2275d7;
  border-color: #2275d7;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox--is-checked::after {
  opacity: 1;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2px;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner:focus {
  outline: none;
  text-decoration: underline;
}
[dir="ltr"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img,[dir="ltr"]  .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg{
          margin-right: 8px;
}
[dir="rtl"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img,[dir="rtl"]  .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg{
          margin-left: 8px;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img, .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg {
  -webkit-margin-end: 8px;
  max-width: 20px;
  max-height: 20px;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.2;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem--disabled .uppy-ProviderBrowserItem-inner {
  cursor: default;
}
[dir="ltr"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-iconWrap{
          margin-right: 7px;
}
[dir="rtl"] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-iconWrap{
          margin-left: 7px;
}
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-iconWrap {
  width: 20px;
  -webkit-margin-end: 7px;
}

.uppy-ProviderBrowserItem-fakeCheckbox {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.uppy-ProviderBrowserItem-fakeCheckbox:disabled {
  cursor: default;
}
.uppy-ProviderBrowserItem-fakeCheckbox::after {
  content: "";
  position: absolute;
  cursor: pointer;
  border-left: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  transform: rotate(-45deg);
}
.uppy-ProviderBrowserItem-fakeCheckbox:disabled::after {
  cursor: default;
}
[data-uppy-theme=dark] .uppy-ProviderBrowserItem-fakeCheckbox {
  background-color: #1f1f1f;
  border-color: #939393;
}

[data-uppy-theme=dark] .uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
  background-color: #333;
}

.uppy-SearchProvider {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1;
}
[data-uppy-theme=dark] .uppy-SearchProvider {
  background-color: #1f1f1f;
}

.uppy-SearchProvider-input {
  width: 90%;
  max-width: 650px;
  margin-bottom: 15px;
}
.uppy-size--md .uppy-SearchProvider-input {
  margin-bottom: 20px;
}

.uppy-SearchProvider-searchButton {
  padding: 13px 25px;
}
.uppy-size--md .uppy-SearchProvider-searchButton {
  padding: 13px 30px;
}

.uppy-DashboardContent-panelBody {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1;
}
[data-uppy-theme=dark] .uppy-DashboardContent-panelBody {
  background-color: #1f1f1f;
}

.uppy-Provider-auth,
.uppy-Provider-error,
.uppy-Provider-loading,
.uppy-Provider-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
  flex: 1 1;
  color: #939393;
}

.uppy-Provider-empty {
  color: #939393;
}

.uppy-Provider-authIcon svg {
  width: 100px;
  height: 75px;
  margin-bottom: 15px;
}

.uppy-Provider-authTitle {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 30px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
  color: #757575;
}
.uppy-size--md .uppy-Provider-authTitle {
  font-size: 20px;
}
[data-uppy-theme=dark] .uppy-Provider-authTitle {
  color: #cfcfcf;
}

[dir="ltr"] .uppy-Provider-breadcrumbs{
  text-align: left;
}

[dir="rtl"] .uppy-Provider-breadcrumbs{
  text-align: right;
}

.uppy-Provider-breadcrumbs {
  flex: 1 1;
  color: #525252;
  font-size: 12px;
  margin-bottom: 10px;
}
.uppy-size--md .uppy-Provider-breadcrumbs {
  margin-bottom: 0;
}
[data-uppy-theme=dark] .uppy-Provider-breadcrumbs {
  color: #eaeaea;
}

[dir="ltr"] .uppy-Provider-breadcrumbsIcon{
          margin-right: 4px;
}

[dir="rtl"] .uppy-Provider-breadcrumbsIcon{
          margin-left: 4px;
}

.uppy-Provider-breadcrumbsIcon {
  display: inline-block;
  color: #525252;
  vertical-align: middle;
  -webkit-margin-end: 4px;
  line-height: 1;
}

.uppy-Provider-breadcrumbsIcon svg {
  width: 13px;
  height: 13px;
  fill: #525252;
}

.uppy-Provider-breadcrumbs button {
  display: inline-block;
  line-height: inherit;
  padding: 4px;
  border-radius: 3px;
}
.uppy-Provider-breadcrumbs button:focus {
  outline: none;
}
.uppy-Provider-breadcrumbs button::-moz-focus-inner {
  border: 0;
}
.uppy-Provider-breadcrumbs button:hover {
  color: #1b5dab;
}
.uppy-Provider-breadcrumbs button:focus {
  background-color: #eceef2;
}
[data-uppy-theme=dark] .uppy-Provider-breadcrumbs button:focus {
  background-color: #333;
}
.uppy-Provider-breadcrumbs button:hover {
  text-decoration: underline;
  cursor: pointer;
}
[data-uppy-theme=dark] .uppy-Provider-breadcrumbs button {
  color: #eaeaea;
}

.uppy-ProviderBrowser {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
}

.uppy-ProviderBrowser-user {
  margin: 0 8px 0 0;
  font-weight: 500;
  color: #333;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-user {
  color: #eaeaea;
}

[dir="ltr"] .uppy-ProviderBrowser-user:after{
  left: 4px;
}

[dir="rtl"] .uppy-ProviderBrowser-user:after{
  right: 4px;
}

.uppy-ProviderBrowser-user:after {
  content: "·";
  position: relative;
  color: #939393;
  font-weight: normal;
}

.uppy-ProviderBrowser-header {
  z-index: 1001;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-header {
  border-bottom: 1px solid #333;
}

.uppy-ProviderBrowser-headerBar {
  padding: 7px 15px;
  background-color: #fafafa;
  z-index: 1001;
  color: #757575;
  line-height: 1.4;
  font-size: 12px;
}
.uppy-size--md .uppy-ProviderBrowser-headerBar {
  display: flex;
  align-items: center;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-headerBar {
  background-color: #1f1f1f;
}

.uppy-ProviderBrowser-headerBar--simple {
  text-align: center;
  display: block;
  justify-content: center;
}

.uppy-ProviderBrowser-headerBar--simple .uppy-Provider-breadcrumbsWrap {
  flex: none;
  display: inline-block;
  vertical-align: middle;
}

.uppy-ProviderBrowser-search {
  width: 100%;
  background-color: #fff;
  position: relative;
  height: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-search {
  background-color: #1f1f1f;
}

[dir="ltr"] .uppy-ProviderBrowser-searchIcon{
  left: 16px;
}

[dir="rtl"] .uppy-ProviderBrowser-searchIcon{
  right: 16px;
}

.uppy-ProviderBrowser-searchIcon {
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 1002;
  color: #bbb;
}

[dir="ltr"] .uppy-ProviderBrowser-searchInput{
          padding-left: 27px;
}

[dir="rtl"] .uppy-ProviderBrowser-searchInput{
          padding-right: 27px;
}

.uppy-ProviderBrowser-searchInput {
  width: 100%;
  height: 30px;
  background-color: transparent;
  outline: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 12px;
  line-height: 1.4;
  border: 0;
  margin: 0 8px;
  -webkit-padding-start: 27px;
  z-index: 1001;
  border-radius: 4px;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-searchInput {
  background-color: #1f1f1f;
  color: #eaeaea;
}

.uppy-ProviderBrowser-searchInput:focus {
  outline: 0;
  background-color: #f4f4f4;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-searchInput:focus {
  background-color: #333;
}

[dir="ltr"] .uppy-ProviderBrowser-searchClose{
  right: 12px;
}

[dir="rtl"] .uppy-ProviderBrowser-searchClose{
  left: 12px;
}

.uppy-ProviderBrowser-searchClose {
  position: absolute;
  width: 22px;
  height: 22px;
  padding: 6px;
  top: 4px;
  z-index: 1002;
  color: #939393;
  cursor: pointer;
}
.uppy-ProviderBrowser-searchClose:hover {
  color: #757575;
}

.uppy-ProviderBrowser-searchClose svg {
  vertical-align: text-top;
}

.uppy-ProviderBrowser-searchInput::-moz-placeholder {
  color: #939393;
  opacity: 1;
}

.uppy-ProviderBrowser-searchInput::placeholder {
  color: #939393;
  opacity: 1;
}

.uppy-ProviderBrowser-userLogout {
  cursor: pointer;
  line-height: inherit;
  color: #2275d7;
  padding: 4px;
  border-radius: 3px;
}
.uppy-ProviderBrowser-userLogout:focus {
  outline: none;
}
.uppy-ProviderBrowser-userLogout::-moz-focus-inner {
  border: 0;
}
.uppy-ProviderBrowser-userLogout:hover {
  color: #1b5dab;
}
.uppy-ProviderBrowser-userLogout:focus {
  background-color: #eceef2;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-userLogout:focus {
  background-color: #333;
}
.uppy-ProviderBrowser-userLogout:hover {
  text-decoration: underline;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-userLogout {
  color: #eaeaea;
}

.uppy-ProviderBrowser-body {
  flex: 1 1;
  position: relative;
}

.uppy-ProviderBrowser-list {
  flex: 1 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-spacing: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-list {
  background-color: #1f1f1f;
}
.uppy-ProviderBrowser-list:focus {
  outline: none;
}

.uppy-ProviderBrowserItem-inner {
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

.uppy-ProviderBrowser-footer {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 65px;
  border-top: 1px solid #eaeaea;
  padding: 0 15px;
}
[dir="ltr"] .uppy-ProviderBrowser-footer button{
          margin-right: 8px;
}
[dir="rtl"] .uppy-ProviderBrowser-footer button{
          margin-left: 8px;
}
.uppy-ProviderBrowser-footer button {
  -webkit-margin-end: 8px;
}
[data-uppy-theme=dark] .uppy-ProviderBrowser-footer {
  background-color: #1f1f1f;
  border-top: 1px solid #333;
}

.uppy-Dashboard-Item-previewInnerWrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}
.uppy-size--md .uppy-Dashboard-Item-previewInnerWrap {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.uppy-Dashboard-Item-previewInnerWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 1001;
}

.uppy-Dashboard-Item-previewLink {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1002;
}
.uppy-Dashboard-Item-previewLink:focus {
  box-shadow: inset 0 0 0 3px #76abe9;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-previewLink:focus {
  box-shadow: inset 0 0 0 3px #016c8d;
}

.uppy-Dashboard-Item-preview img.uppy-Dashboard-Item-previewImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0);
  border-radius: 3px;
}

.uppy-Dashboard-Item-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  color: #fff;
  text-align: center;
  width: 120px;
  transition: all 0.35 ease;
}

.uppy-Dashboard-Item-progressIndicator {
  display: inline-block;
  width: 38px;
  height: 38px;
  opacity: 0.9;
}
.uppy-size--md .uppy-Dashboard-Item-progressIndicator {
  width: 55px;
  height: 55px;
}

button.uppy-Dashboard-Item-progressIndicator {
  cursor: pointer;
}
button.uppy-Dashboard-Item-progressIndicator:focus {
  outline: none;
}
button.uppy-Dashboard-Item-progressIndicator::-moz-focus-inner {
  border: 0;
}
button.uppy-Dashboard-Item-progressIndicator:focus .uppy-Dashboard-Item-progressIcon--bg,
button.uppy-Dashboard-Item-progressIndicator:focus .uppy-Dashboard-Item-progressIcon--retry {
  fill: #76abe9;
}

.uppy-Dashboard-Item-progressIcon--circle {
  width: 100%;
  height: 100%;
}

.uppy-Dashboard-Item-progressIcon--bg {
  stroke: rgba(255, 255, 255, 0.4);
}

.uppy-Dashboard-Item-progressIcon--progress {
  stroke: #fff;
  transition: stroke-dashoffset 0.5s ease-out;
}

.uppy-Dashboard-Item-progressIcon--play {
  stroke: #fff;
  fill: #fff;
  transition: all 0.2s;
}

.uppy-Dashboard-Item-progressIcon--cancel {
  fill: #fff;
  transition: all 0.2s;
}

.uppy-Dashboard-Item-progressIcon--pause {
  stroke: #fff;
  fill: #fff;
  transition: all 0.2s;
}

.uppy-Dashboard-Item-progressIcon--check {
  fill: #fff;
  transition: all 0.2s;
}

.uppy-Dashboard-Item-progressIcon--retry {
  fill: #fff;
}

[dir="ltr"] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{
  right: -8px;
}

[dir="rtl"] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{
  left: -8px;
}

[dir="ltr"] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{
  left: auto;
  left: initial;
}

[dir="rtl"] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{
  right: auto;
  right: initial;
}

.uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress {
  transform: none;
  transform: initial;
  top: -9px;
  width: auto;
}

.uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-progressIndicator {
  width: 18px;
  height: 18px;
}
.uppy-size--md .uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-progressIndicator {
  width: 28px;
  height: 28px;
}

.uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progressIndicator {
  width: 18px;
  height: 18px;
  opacity: 1;
}
.uppy-size--md .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progressIndicator {
  width: 22px;
  height: 22px;
}

.uppy-Dashboard-Item.is-processing .uppy-Dashboard-Item-progress {
  opacity: 0;
}

[dir="ltr"] .uppy-Dashboard-Item-fileInfo{
          padding-right: 5px;
}

[dir="rtl"] .uppy-Dashboard-Item-fileInfo{
          padding-left: 5px;
}

.uppy-Dashboard-Item-fileInfo {
  -webkit-padding-end: 5px;
}

.uppy-Dashboard-Item-name {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 5px;
  word-break: break-all;
  word-wrap: anywhere;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-name {
  color: #eaeaea;
}

.uppy-Dashboard-Item-status {
  font-size: 11px;
  line-height: 1;
  font-weight: normal;
  color: #757575;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-status {
  color: #bbb;
}

.uppy-Dashboard-Item-statusSize {
  display: inline-block;
  vertical-align: bottom;
  text-transform: uppercase;
}

.uppy-Dashboard-Item-reSelect {
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: #2275d7;
}

.uppy-Dashboard-Item-action {
  cursor: pointer;
  color: #939393;
}
.uppy-Dashboard-Item-action:focus {
  outline: none;
}
.uppy-Dashboard-Item-action::-moz-focus-inner {
  border: 0;
}
.uppy-Dashboard-Item-action:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}
.uppy-Dashboard-Item-action:hover {
  opacity: 1;
  color: #1f1f1f;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-action {
  color: #cfcfcf;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-action:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-action::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-action:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-action:hover {
  color: #eaeaea;
}

.uppy-Dashboard-Item-action--remove {
  color: #1f1f1f;
  opacity: 0.95;
}
.uppy-Dashboard-Item-action--remove:hover {
  opacity: 1;
  color: #000;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-action--remove {
  color: #525252;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item-action--remove:hover {
  color: #333;
}

.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-actionWrapper {
  display: flex;
  align-items: center;
}
.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-action {
  width: 22px;
  height: 22px;
  padding: 3px;
  margin-left: 3px;
}
.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-action:focus {
  border-radius: 3px;
}

.uppy-size--md .uppy-Dashboard-Item-action--copyLink,
.uppy-size--md .uppy-Dashboard-Item-action--edit {
  width: 16px;
  height: 16px;
  padding: 0;
}
.uppy-size--md .uppy-Dashboard-Item-action--copyLink:focus,
.uppy-size--md .uppy-Dashboard-Item-action--edit:focus {
  border-radius: 3px;
}
[dir="ltr"] .uppy-size--md .uppy-Dashboard-Item-action--remove{
  right: -8px;
}
[dir="rtl"] .uppy-size--md .uppy-Dashboard-Item-action--remove{
  left: -8px;
}
.uppy-size--md .uppy-Dashboard-Item-action--remove {
  z-index: 1002;
  position: absolute;
  top: -8px;
  width: 18px;
  height: 18px;
  padding: 0;
}
.uppy-size--md .uppy-Dashboard-Item-action--remove:focus {
  border-radius: 50%;
}

[dir="ltr"] .uppy-Dashboard-Item{
          padding-right: 0;
}

[dir="rtl"] .uppy-Dashboard-Item{
          padding-left: 0;
}

.uppy-Dashboard-Item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  padding: 10px;
  -webkit-padding-end: 0;
}
[data-uppy-theme=dark] .uppy-Dashboard-Item {
  border-bottom: 1px solid #333;
}
[dir="ltr"] .uppy-size--md .uppy-Dashboard-Item{
  float: left;
}
[dir="rtl"] .uppy-size--md .uppy-Dashboard-Item{
  float: right;
}
.uppy-size--md .uppy-Dashboard-Item {
  position: relative;
  display: block;
  margin: 5px 15px;
  padding: 0;
  /* When changing width: also update `itemsPerRow` values in `src/components/Dashboard.js`. */
  width: calc(33.333% - 15px - 15px);
  height: 215px;
  border-bottom: 0;
}
.uppy-size--lg .uppy-Dashboard-Item {
  margin: 5px 15px;
  /* When changing width: also update `itemsPerRow` values in `src/components/Dashboard.js`. */
  width: calc(25% - 15px - 15px);
  height: 190px;
}
.uppy-size--xl .uppy-Dashboard-Item {
  /* When changing width: also update `itemsPerRow` values in `src/components/Dashboard.js`. */
  width: calc(20% - 15px - 15px);
  height: 210px;
}

.uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-previewInnerWrap {
  opacity: 0.2;
}

.uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-name {
  opacity: 0.7;
}

.uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-preview:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2735%27 height=%2739%27 viewBox=%270 0 35 39%27%3E%3Cpath d=%27M1.708 38.66c1.709 0 3.417-3.417 6.834-3.417 3.416 0 5.125 3.417 8.61 3.417 3.348 0 5.056-3.417 8.473-3.417 4.305 0 5.125 3.417 6.833 3.417.889 0 1.709-.889 1.709-1.709v-19.68C34.167-5.757 0-5.757 0 17.271v19.68c0 .82.888 1.709 1.708 1.709zm8.542-17.084a3.383 3.383 0 01-3.417-3.416 3.383 3.383 0 013.417-3.417 3.383 3.383 0 013.417 3.417 3.383 3.383 0 01-3.417 3.416zm13.667 0A3.383 3.383 0 0120.5 18.16a3.383 3.383 0 013.417-3.417 3.383 3.383 0 013.416 3.417 3.383 3.383 0 01-3.416 3.416z%27 fill=%27%2523000%27 fill-rule=%27nonzero%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 10px;
  background-size: 25px;
  z-index: 1005;
  opacity: 0.5;
}
.uppy-size--md .uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-preview:before {
  background-size: 40px;
  background-position: 50% 50%;
}

.uppy-Dashboard-Item-preview {
  position: relative;
}
.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-preview {
  flex-shrink: 0;
  flex-grow: 0;
  width: 50px;
  height: 50px;
}
.uppy-size--md .uppy-Dashboard-Item-preview {
  width: 100%;
  height: 140px;
}
.uppy-size--lg .uppy-Dashboard-Item-preview {
  height: 120px;
}
.uppy-size--xl .uppy-Dashboard-Item-preview {
  height: 140px;
}

[dir="ltr"] .uppy-Dashboard-Item-fileInfoAndButtons{
          padding-right: 8px;
}

[dir="rtl"] .uppy-Dashboard-Item-fileInfoAndButtons{
          padding-left: 8px;
}

[dir="ltr"] .uppy-Dashboard-Item-fileInfoAndButtons{
          padding-left: 12px;
}

[dir="rtl"] .uppy-Dashboard-Item-fileInfoAndButtons{
          padding-right: 12px;
}

.uppy-Dashboard-Item-fileInfoAndButtons {
  flex-grow: 1;
  -webkit-padding-end: 8px;
  -webkit-padding-start: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uppy-size--md .uppy-Dashboard-Item-fileInfoAndButtons {
  align-items: flex-start;
  width: 100%;
  padding: 0;
  padding-top: 9px;
}

.uppy-Dashboard-Item-fileInfo {
  flex-grow: 1;
  flex-shrink: 1;
}

.uppy-Dashboard-Item-actionWrapper {
  flex-grow: 0;
  flex-shrink: 0;
}

.uppy-Dashboard-Item.is-inprogress .uppy-Dashboard-Item-previewInnerWrap:after,
.uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-previewInnerWrap:after {
  display: block;
}

.uppy-Dashboard-Item.is-inprogress:not(.is-resumable) .uppy-Dashboard-Item-action--remove {
  display: none;
}

[dir="ltr"] .uppy-Dashboard-Item-errorDetails{
  left: 6px;
}

[dir="rtl"] .uppy-Dashboard-Item-errorDetails{
  right: 6px;
}

.uppy-Dashboard-Item-errorDetails {
  line-height: 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background-color: #939393;
  border-radius: 50%;
  position: relative;
  top: -1px;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
  cursor: help;
}

.uppy-Dashboard-Item-errorDetails:after {
  line-height: 1.3;
  word-wrap: break-word;
}

.uppy-Dashboard-FileCard {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1005;
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.uppy-Dashboard-FileCard .uppy-DashboardContent-bar {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.uppy-Dashboard-FileCard .uppy-Dashboard-FileCard-actions {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.uppy-Dashboard-FileCard-inner {
  height: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.uppy-Dashboard-FileCard-preview {
  height: 60%;
  flex-grow: 0;
  flex-shrink: 1;
  min-height: 0;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-preview {
  background-color: #333;
  border-bottom: 0;
}

.uppy-Dashboard-FileCard-preview img.uppy-Dashboard-Item-previewImg {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  flex: 0 0 auto;
  border-radius: 3px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
}

[dir="ltr"] .uppy-Dashboard-FileCard-edit{
  right: 10px;
}

[dir="rtl"] .uppy-Dashboard-FileCard-edit{
  left: 10px;
}

.uppy-Dashboard-FileCard-edit {
  position: absolute;
  top: 10px;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 7px 15px;
  border-radius: 50px;
}
.uppy-Dashboard-FileCard-edit:focus {
  outline: none;
}
.uppy-Dashboard-FileCard-edit::-moz-focus-inner {
  border: 0;
}
.uppy-Dashboard-FileCard-edit:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}
.uppy-Dashboard-FileCard-edit:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.uppy-Dashboard-FileCard-info {
  height: 40%;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 30px 20px 20px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-info {
  background-color: #1f1f1f;
}

.uppy-Dashboard-FileCard-fieldset {
  font-size: 0;
  border: 0;
  padding: 0;
  max-width: 640px;
  margin: auto;
  margin-bottom: 12px;
}

.uppy-Dashboard-FileCard-label {
  display: inline-block;
  vertical-align: middle;
  width: 22%;
  font-size: 12px;
  color: #525252;
}
.uppy-size--md .uppy-Dashboard-FileCard-label {
  font-size: 14px;
}
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-label {
  color: #eaeaea;
}

.uppy-Dashboard-FileCard-input {
  display: inline-block;
  vertical-align: middle;
  width: 78%;
}

.uppy-Dashboard-FileCard-actions {
  height: 55px;
  flex-shrink: 0;
  flex-grow: 0;
  border-top: 1px solid #eaeaea;
  padding: 0 15px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
}
.uppy-size--md .uppy-Dashboard-FileCard-actions {
  height: 65px;
}
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-actions {
  border-top: 1px solid #333;
  background-color: #1f1f1f;
}

[dir="ltr"] .uppy-Dashboard-FileCard-actionsBtn{
          margin-right: 10px;
}

[dir="rtl"] .uppy-Dashboard-FileCard-actionsBtn{
          margin-left: 10px;
}

.uppy-Dashboard-FileCard-actionsBtn {
  -webkit-margin-end: 10px;
}

.uppy-transition-slideDownUp-enter {
  opacity: 0.01;
  transform: translate3d(0, -105%, 0);
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.uppy-transition-slideDownUp-enter.uppy-transition-slideDownUp-enter-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.uppy-transition-slideDownUp-leave {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.uppy-transition-slideDownUp-leave.uppy-transition-slideDownUp-leave-active {
  opacity: 0.01;
  transform: translate3d(0, -105%, 0);
}

@keyframes uppy-Dashboard-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes uppy-Dashboard-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes uppy-Dashboard-slideDownAndFadeIn {
  from {
    transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
}
@keyframes uppy-Dashboard-slideDownAndFadeIn--small {
  from {
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes uppy-Dashboard-slideUpFadeOut {
  from {
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
}
@keyframes uppy-Dashboard-slideUpFadeOut--small {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
}
.uppy-Dashboard--modal {
  z-index: 1001;
}

.uppy-Dashboard--modal[aria-hidden=true] {
  display: none;
}

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-inner {
  animation: uppy-Dashboard-slideDownAndFadeIn--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media only screen and (min-width: 820px) {
  .uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-inner {
    animation: uppy-Dashboard-slideDownAndFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-overlay {
  animation: uppy-Dashboard-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-inner {
  animation: uppy-Dashboard-slideUpFadeOut--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media only screen and (min-width: 820px) {
  .uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-inner {
    animation: uppy-Dashboard-slideUpFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-overlay {
  animation: uppy-Dashboard-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.uppy-Dashboard-isFixed {
  overflow: hidden;
  height: 100vh;
}

.uppy-Dashboard--modal .uppy-Dashboard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.uppy-Dashboard-inner {
  position: relative;
  background-color: #fafafa;
  max-width: 100%;
  max-height: 100%;
  outline: none;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}
.uppy-size--md .uppy-Dashboard-inner {
  min-height: auto;
}
@media only screen and (min-width: 820px) {
  .uppy-Dashboard-inner {
    width: 750px;
    height: 550px;
  }
}
.uppy-Dashboard--modal .uppy-Dashboard-inner {
  z-index: 1002;
}
[data-uppy-theme=dark] .uppy-Dashboard-inner {
  background-color: #1f1f1f;
}
.uppy-Dashboard--isDisabled .uppy-Dashboard-inner {
  cursor: not-allowed;
}

.uppy-Dashboard-innerWrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  opacity: 0;
}
.uppy-Dashboard--isInnerWrapVisible .uppy-Dashboard-innerWrap {
  opacity: 1;
}
.uppy-Dashboard--isDisabled .uppy-Dashboard-innerWrap {
  pointer-events: none;
  opacity: 0.6;
  filter: grayscale(100%);
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}

.uppy-Dashboard--isDisabled .uppy-ProviderIconBg {
  fill: #9f9f9f;
}

.uppy-Dashboard--modal .uppy-Dashboard-inner {
  position: fixed;
  top: 35px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: none;
}
@media only screen and (min-width: 820px) {
  .uppy-Dashboard--modal .uppy-Dashboard-inner {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.15);
  }
}

[dir="ltr"] .uppy-Dashboard-close{
  right: -2px;
}

[dir="rtl"] .uppy-Dashboard-close{
  left: -2px;
}

.uppy-Dashboard-close {
  display: block;
  position: absolute;
  top: -33px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 27px;
  z-index: 1005;
}
.uppy-Dashboard-close:focus {
  outline: none;
}
.uppy-Dashboard-close::-moz-focus-inner {
  border: 0;
}
.uppy-Dashboard-close:focus {
  color: #8cb8ed;
}
@media only screen and (min-width: 820px) {
  [dir="ltr"] .uppy-Dashboard-close{
    right: -35px;
  }
  [dir="rtl"] .uppy-Dashboard-close{
    left: -35px;
  }
  .uppy-Dashboard-close {
    font-size: 35px;
    top: -10px;
  }
}

.uppy-Dashboard-serviceMsg {
  background-color: #FFFBF7;
  border-top: 1px solid #edd4b9;
  border-bottom: 1px solid #edd4b9;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  padding: 12px 0;
  position: relative;
  top: -1px;
  z-index: 1004;
}
.uppy-size--md .uppy-Dashboard-serviceMsg {
  font-size: 14px;
  line-height: 1.4;
}
[data-uppy-theme=dark] .uppy-Dashboard-serviceMsg {
  background-color: #1f1f1f;
  color: #eaeaea;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.uppy-Dashboard-serviceMsg-title {
  display: block;
  margin-bottom: 4px;
  padding-left: 42px;
  line-height: 1;
}

.uppy-Dashboard-serviceMsg-text {
  padding: 0 15px;
}

.uppy-Dashboard-serviceMsg-actionBtn {
  font-size: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  vertical-align: initial;
  color: #2275d7;
}
[data-uppy-theme=dark] .uppy-Dashboard-serviceMsg-actionBtn {
  color: rgba(2, 186, 242, 0.9);
}

.uppy-Dashboard-serviceMsg-icon {
  position: absolute;
  top: 10px;
  left: 15px;
}

.uppy-Dashboard-AddFiles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  text-align: center;
}
[data-uppy-drag-drop-supported=true] .uppy-Dashboard-AddFiles {
  margin: 7px;
  height: calc(100% - 14px);
  border-radius: 3px;
  border: 1px dashed #dfdfdf;
}
.uppy-Dashboard-AddFilesPanel .uppy-Dashboard-AddFiles {
  border: none;
  height: calc(100% - 14px - 40px);
}
.uppy-Dashboard--modal .uppy-Dashboard-AddFiles {
  border-color: #cfcfcf;
}
[data-uppy-theme=dark] .uppy-Dashboard-AddFiles {
  border-color: #757575;
}

.uppy-Dashboard-AddFiles-info {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: auto;
  display: none;
}
.uppy-size--height-md .uppy-Dashboard-AddFiles-info {
  display: block;
}
.uppy-size--md .uppy-Dashboard-AddFiles-info {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  padding-top: 30px;
  padding-bottom: 0;
}
[data-uppy-num-acquirers="0"] .uppy-Dashboard-AddFiles-info {
  margin-top: 0;
}

.uppy-Dashboard-browse {
  cursor: pointer;
  color: rgba(34, 117, 215, 0.9);
}
.uppy-Dashboard-browse:focus {
  outline: none;
}
.uppy-Dashboard-browse::-moz-focus-inner {
  border: 0;
}
.uppy-Dashboard-browse:hover, .uppy-Dashboard-browse:focus {
  border-bottom: 1px solid #2275d7;
}
[data-uppy-theme=dark] .uppy-Dashboard-browse {
  color: rgba(2, 186, 242, 0.9);
}
[data-uppy-theme=dark] .uppy-Dashboard-browse:hover, [data-uppy-theme=dark] .uppy-Dashboard-browse:focus {
  border-bottom: 1px solid #02baf2;
}

.uppy-Dashboard-browseBtn {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 5px;
  width: 100%;
}
.uppy-size--md .uppy-Dashboard-browseBtn {
  font-size: 15px;
  width: auto;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 13px 44px;
}

.uppy-Dashboard-AddFiles-list {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2px;
  padding: 2px 0;
  width: 100%;
}
.uppy-size--md .uppy-Dashboard-AddFiles-list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
  overflow-y: visible;
  margin-top: 15px;
  padding-top: 0;
  flex: none;
}

.uppy-DashboardTab {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}
[data-uppy-theme=dark] .uppy-DashboardTab {
  border-bottom: 1px solid #333;
}
.uppy-size--md .uppy-DashboardTab {
  display: inline-block;
  width: auto;
  width: initial;
  margin-bottom: 10px;
  border-bottom: none;
}

.uppy-DashboardTab-btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: #525252;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 15px;
}
.uppy-DashboardTab-btn:focus {
  outline: none;
}
.uppy-DashboardTab-btn::-moz-focus-inner {
  border: 0;
}
[dir="ltr"] .uppy-size--md .uppy-DashboardTab-btn{
          margin-right: 1px;
}
[dir="rtl"] .uppy-size--md .uppy-DashboardTab-btn{
          margin-left: 1px;
}
.uppy-size--md .uppy-DashboardTab-btn {
  width: 86px;
  -webkit-margin-end: 1px;
  flex-direction: column;
  padding: 10px 3px;
  border-radius: 5px;
}
[data-uppy-theme=dark] .uppy-DashboardTab-btn {
  color: #eaeaea;
}

.uppy-DashboardTab-btn::-moz-focus-inner {
  border: 0;
}

.uppy-DashboardTab-btn:hover {
  background-color: #f1f3f6;
}
[data-uppy-theme=dark] .uppy-DashboardTab-btn:hover {
  background-color: #333;
}

.uppy-DashboardTab-btn:active,
.uppy-DashboardTab-btn:focus {
  background-color: #eceef2;
}
[data-uppy-theme=dark] .uppy-DashboardTab-btn:active,
[data-uppy-theme=dark] .uppy-DashboardTab-btn:focus {
  background-color: #525252;
}

[dir="ltr"] .uppy-DashboardTab-btn svg{
          margin-right: 10px;
}

[dir="rtl"] .uppy-DashboardTab-btn svg{
          margin-left: 10px;
}

.uppy-DashboardTab-btn svg {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
  transition: transform ease-in-out 0.15s;
  -webkit-margin-end: 10px;
}
[dir="ltr"] .uppy-size--md .uppy-DashboardTab-btn svg{
          margin-right: 0;
}
[dir="rtl"] .uppy-size--md .uppy-DashboardTab-btn svg{
          margin-left: 0;
}
.uppy-size--md .uppy-DashboardTab-btn svg {
  -webkit-margin-end: 0;
}

.uppy-DashboardTab-name {
  font-size: 14px;
  font-weight: 500;
}
.uppy-size--md .uppy-DashboardTab-name {
  font-size: 11px;
  line-height: 15px;
  margin-top: 8px;
  margin-bottom: 0;
}

.uppy-DashboardTab svg {
  width: 23px;
  height: 23px;
  vertical-align: middle;
}
.uppy-size--md .uppy-DashboardTab svg {
  width: 30px;
  height: 30px;
}

.uppy-Dashboard-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.uppy-DashboardContent-bar {
  flex-shrink: 0;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  z-index: 1004;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #eaeaea;
  background-color: #fafafa;
}
.uppy-size--md .uppy-DashboardContent-bar {
  height: 50px;
  padding: 0 15px;
}
[data-uppy-theme=dark] .uppy-DashboardContent-bar {
  background-color: #1f1f1f;
  border-bottom: 1px solid #333;
}

.uppy-DashboardContent-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  line-height: 40px;
  font-weight: 500;
  width: 100%;
  max-width: 170px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
  margin: auto;
}
.uppy-size--md .uppy-DashboardContent-title {
  font-size: 14px;
  line-height: 50px;
  max-width: 300px;
}
[data-uppy-theme=dark] .uppy-DashboardContent-title {
  color: #eaeaea;
}

[dir="ltr"] .uppy-DashboardContent-back,[dir="ltr"] 
.uppy-DashboardContent-save{
          margin-left: -6px;
}

[dir="rtl"] .uppy-DashboardContent-back,[dir="rtl"] 
.uppy-DashboardContent-save{
          margin-right: -6px;
}

.uppy-DashboardContent-back,
.uppy-DashboardContent-save {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  color: #2275d7;
  padding: 7px 6px;
  -webkit-margin-start: -6px;
}
.uppy-DashboardContent-back:focus,
.uppy-DashboardContent-save:focus {
  outline: none;
}
.uppy-DashboardContent-back::-moz-focus-inner,
.uppy-DashboardContent-save::-moz-focus-inner {
  border: 0;
}
.uppy-DashboardContent-back:hover,
.uppy-DashboardContent-save:hover {
  color: #1b5dab;
}
.uppy-DashboardContent-back:focus,
.uppy-DashboardContent-save:focus {
  background-color: #eceef2;
}
[data-uppy-theme=dark] .uppy-DashboardContent-back:focus,
[data-uppy-theme=dark] .uppy-DashboardContent-save:focus {
  background-color: #333;
}
.uppy-size--md .uppy-DashboardContent-back,
.uppy-size--md .uppy-DashboardContent-save {
  font-size: 14px;
}
[data-uppy-theme=dark] .uppy-DashboardContent-back,
[data-uppy-theme=dark] .uppy-DashboardContent-save {
  color: #02baf2;
}

[dir="ltr"] .uppy-DashboardContent-addMore{
          margin-right: -5px;
}

[dir="rtl"] .uppy-DashboardContent-addMore{
          margin-left: -5px;
}

.uppy-DashboardContent-addMore {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
  color: #2275d7;
  width: 29px;
  height: 29px;
  padding: 7px 8px;
  -webkit-margin-end: -5px;
}
.uppy-DashboardContent-addMore:focus {
  outline: none;
}
.uppy-DashboardContent-addMore::-moz-focus-inner {
  border: 0;
}
.uppy-DashboardContent-addMore:hover {
  color: #1b5dab;
}
.uppy-DashboardContent-addMore:focus {
  background-color: #eceef2;
}
[data-uppy-theme=dark] .uppy-DashboardContent-addMore:focus {
  background-color: #333;
}
[dir="ltr"] .uppy-size--md .uppy-DashboardContent-addMore{
          margin-right: -8px;
}
[dir="rtl"] .uppy-size--md .uppy-DashboardContent-addMore{
          margin-left: -8px;
}
.uppy-size--md .uppy-DashboardContent-addMore {
  font-size: 14px;
  width: auto;
  height: auto;
  -webkit-margin-end: -8px;
}
[data-uppy-theme=dark] .uppy-DashboardContent-addMore {
  color: #02baf2;
}

[dir="ltr"] .uppy-DashboardContent-addMore svg{
          margin-right: 4px;
}

[dir="rtl"] .uppy-DashboardContent-addMore svg{
          margin-left: 4px;
}

.uppy-DashboardContent-addMore svg {
  vertical-align: baseline;
  -webkit-margin-end: 4px;
}
.uppy-size--md .uppy-DashboardContent-addMore svg {
  width: 11px;
  height: 11px;
}

.uppy-DashboardContent-addMoreCaption {
  display: none;
}
.uppy-size--md .uppy-DashboardContent-addMoreCaption {
  display: inline;
}

.uppy-DashboardContent-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: whitesmoke;
  overflow: hidden;
  z-index: 1005;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.uppy-Dashboard-AddFilesPanel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fafafa;
  background: linear-gradient(0deg, #fafafa 35%, rgba(250, 250, 250, 0.85) 100%);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 1005;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
[data-uppy-theme=dark] .uppy-Dashboard-AddFilesPanel {
  background-color: #333;
  background: linear-gradient(0deg, #1f1f1f 35%, rgba(31, 31, 31, 0.85) 100%);
}

.uppy-Dashboard--isAddFilesPanelVisible .uppy-Dashboard-files {
  filter: blur(2px);
}

.uppy-Dashboard-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12%;
}

.uppy-Dashboard-progressBarContainer.is-active {
  z-index: 1004;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.uppy-Dashboard:not(.uppy-size--md) .uppy-StatusBar-additionalInfo {
  display: none;
}

.uppy-Dashboard-filesContainer {
  position: relative;
  overflow-y: hidden;
  margin: 0;
  flex: 1 1;
}
.uppy-Dashboard-filesContainer:after {
  content: "";
  display: table;
  clear: both;
}

.uppy-Dashboard-files {
  margin: 0;
  padding: 0 0 10px 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1;
}
.uppy-size--md .uppy-Dashboard-files {
  padding-top: 10px;
}

.uppy-Dashboard-dropFilesHereHint {
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding-top: 90px;
  border: 1px dashed #2275d7;
  border-radius: 3px;
  z-index: 2000;
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg width=%2748%27 height=%2748%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z%27 fill=%27%232275D7%27 fill-rule=%27nonzero%27/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #757575;
  font-size: 16px;
}
[data-uppy-theme=dark] .uppy-Dashboard-dropFilesHereHint {
  color: #bbb;
  border-color: #02baf2;
  background-image: url("data:image/svg+xml,%3Csvg width=%2748%27 height=%2748%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z%27 fill=%27%2302BAF2%27 fill-rule=%27nonzero%27/%3E%3C/svg%3E");
}

.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-dropFilesHereHint {
  visibility: visible;
}
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-DashboardContent-bar,
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-files,
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-progressindicators,
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-serviceMsg {
  opacity: 0.15;
}
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-AddFiles {
  opacity: 0.03;
}

.uppy-Dashboard-AddFiles-title {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
  color: #000;
  margin-top: 15px;
  margin-bottom: 5px;
  text-align: inline-start;
  padding: 0 15px;
  width: 100%;
}
.uppy-size--md .uppy-Dashboard-AddFiles-title {
  font-size: 25px;
  margin-top: 5px;
  font-weight: 400;
  text-align: center;
  max-width: 480px;
}
[data-uppy-num-acquirers="0"] .uppy-Dashboard-AddFiles-title {
  text-align: center;
}
[data-uppy-theme=dark] .uppy-Dashboard-AddFiles-title {
  color: #eaeaea;
}
.uppy-Dashboard-AddFiles-title button {
  font-weight: 500;
}
.uppy-size--md .uppy-Dashboard-AddFiles-title button {
  font-weight: 400;
}

.uppy-Dashboard-note {
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  color: #757575;
  max-width: 350px;
  margin: auto;
  padding: 0 15px;
}
.uppy-size--md .uppy-Dashboard-note {
  font-size: 15px;
  line-height: 1.35;
  max-width: 600px;
}
[data-uppy-theme=dark] .uppy-Dashboard-note {
  color: #cfcfcf;
}

a.uppy-Dashboard-poweredBy {
  display: inline-block;
  text-align: center;
  font-size: 11px;
  color: #939393;
  text-decoration: none;
  margin-top: 8px;
}

.uppy-Dashboard-poweredByIcon {
  stroke: #939393;
  fill: none;
  margin-left: 1px;
  margin-right: 1px;
  position: relative;
  top: 1px;
  opacity: 0.9;
  vertical-align: text-top;
}

.uppy-Dashboard-Item-previewIcon {
  width: 25px;
  height: 25px;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.uppy-size--md .uppy-Dashboard-Item-previewIcon {
  width: 38px;
  height: 38px;
}
.uppy-Dashboard-Item-previewIcon svg {
  width: 100%;
  height: 100%;
}

.uppy-Dashboard-Item-previewIconWrap {
  height: 76px;
  max-height: 75%;
  position: relative;
}

.uppy-Dashboard-Item-previewIconBg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1px);
}

.uppy-Dashboard-upload {
  position: relative;
  width: 50px;
  height: 50px;
}
.uppy-size--md .uppy-Dashboard-upload {
  width: 60px;
  height: 60px;
}

.uppy-Dashboard-upload .uppy-c-icon {
  position: relative;
  top: 1px;
  width: 50%;
}

[dir="ltr"] .uppy-Dashboard-uploadCount{
  right: -12px;
}

[dir="rtl"] .uppy-Dashboard-uploadCount{
  left: -12px;
}

.uppy-Dashboard-uploadCount {
  position: absolute;
  top: -12px;
  background-color: #1bb240;
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 8px;
}
.uppy-size--md .uppy-Dashboard-uploadCount {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 9px;
}
/*!
 * Cropper.js v1.5.6
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-10-04T04:33:44.164Z
 */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}

.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC);
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.uppy-ImageCropper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.uppy-ImageCropper-container {
  flex-grow: 1;
}

.uppy-ImageCropper-image {
  display: block;
  max-height: 400px;
}

.uppy-ImageCropper-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uppy-ImageCropper-controls button {
  width: 35px;
  height: 35px;
}
.uppy-ImageCropper-controls button svg {
  padding: 3px;
}
.uppy-size--md .uppy-ImageCropper-controls button {
  width: 40px;
  height: 40px;
}
.uppy-size--md .uppy-ImageCropper-controls button svg {
  padding: 1px;
}
.uppy-ImageCropper-controls button:hover {
  background-color: rgba(34, 117, 215, 0.8);
}
.uppy-ImageCropper-controls button:focus {
  outline: none;
  background-color: rgba(34, 117, 215, 0.8);
}

.uppy-ImageCropper .cropper-point {
  width: 8px;
  height: 8px;
}

.uppy-ImageCropper .cropper-view-box {
  outline: 2px solid #39f;
}
/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */

@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}
.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:8px;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:#000;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:.2;opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:1;opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-theme-color);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px;margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-theme-color);background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}
:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(44px/ 44 * 27);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:44px;height:var(--swiper-navigation-size);margin-top:calc(0px - (44px/ 2));margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-theme-color);color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:44px;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-feature-settings:;font-variant:normal;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}
.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}
/* red-hat-display-latin-ext-400-normal*/
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/static/media/red-hat-display-latin-ext-400-normal.db2af21055d3ed60e868.woff2) format('woff2'), url(/static/media/red-hat-display-all-400-normal.16d6e900014e5376e7b6.woff) format('woff');
  unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
/* red-hat-display-latin-400-normal*/
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/static/media/red-hat-display-latin-400-normal.dd3bb1d18125f13110b1.woff2) format('woff2'), url(/static/media/red-hat-display-all-400-normal.16d6e900014e5376e7b6.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

