@import url(https://fonts.googleapis.com/css?family=Nunito+Sans);
/* this gets exported as style.css and can be used for the default theming */
/* these are the necessary styles for React/Svelte Flow, they get used by base.css and style.css */
.react-flow {
  direction: ltr;

  --xy-edge-stroke-default: #b1b1b7;
  --xy-edge-stroke-width-default: 1;
  --xy-edge-stroke-selected-default: #555;

  --xy-connectionline-stroke-default: #b1b1b7;
  --xy-connectionline-stroke-width-default: 1;

  --xy-attribution-background-color-default: rgba(255, 255, 255, 0.5);

  --xy-minimap-background-color-default: #fff;
  --xy-minimap-mask-background-color-default: rgb(240, 240, 240, 0.6);
  --xy-minimap-mask-stroke-color-default: transparent;
  --xy-minimap-mask-stroke-width-default: 1;
  --xy-minimap-node-background-color-default: #e2e2e2;
  --xy-minimap-node-stroke-color-default: transparent;
  --xy-minimap-node-stroke-width-default: 2;

  --xy-background-color-default: transparent;
  --xy-background-pattern-dots-color-default: #91919a;
  --xy-background-pattern-lines-color-default: #eee;
  --xy-background-pattern-cross-color-default: #e2e2e2;
  background-color: var(--xy-background-color, var(--xy-background-color-default));
  --xy-node-color-default: inherit;
  --xy-node-border-default: 1px solid #1a192b;
  --xy-node-background-color-default: #fff;
  --xy-node-group-background-color-default: rgba(240, 240, 240, 0.25);
  --xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
  --xy-node-boxshadow-selected-default: 0 0 0 0.5px #1a192b;
  --xy-node-border-radius-default: 3px;

  --xy-handle-background-color-default: #1a192b;
  --xy-handle-border-color-default: #fff;

  --xy-selection-background-color-default: rgba(0, 89, 220, 0.08);
  --xy-selection-border-default: 1px dotted rgba(0, 89, 220, 0.8);

  --xy-controls-button-background-color-default: #fefefe;
  --xy-controls-button-background-color-hover-default: #f4f4f4;
  --xy-controls-button-color-default: inherit;
  --xy-controls-button-color-hover-default: inherit;
  --xy-controls-button-border-color-default: #eee;
  --xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, 0.08);

  --xy-edge-label-background-color-default: #ffffff;
  --xy-edge-label-color-default: inherit;
  --xy-resize-background-color-default: #3367d9;
}
.react-flow.dark {
  --xy-edge-stroke-default: #3e3e3e;
  --xy-edge-stroke-width-default: 1;
  --xy-edge-stroke-selected-default: #727272;

  --xy-connectionline-stroke-default: #b1b1b7;
  --xy-connectionline-stroke-width-default: 1;

  --xy-attribution-background-color-default: rgba(150, 150, 150, 0.25);

  --xy-minimap-background-color-default: #141414;
  --xy-minimap-mask-background-color-default: rgb(60, 60, 60, 0.6);
  --xy-minimap-mask-stroke-color-default: transparent;
  --xy-minimap-mask-stroke-width-default: 1;
  --xy-minimap-node-background-color-default: #2b2b2b;
  --xy-minimap-node-stroke-color-default: transparent;
  --xy-minimap-node-stroke-width-default: 2;

  --xy-background-color-default: #141414;
  --xy-background-pattern-dots-color-default: #777;
  --xy-background-pattern-lines-color-default: #777;
  --xy-background-pattern-cross-color-default: #777;
  --xy-node-color-default: #f8f8f8;
  --xy-node-border-default: 1px solid #3c3c3c;
  --xy-node-background-color-default: #1e1e1e;
  --xy-node-group-background-color-default: rgba(240, 240, 240, 0.25);
  --xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(255, 255, 255, 0.08);
  --xy-node-boxshadow-selected-default: 0 0 0 0.5px #999;

  --xy-handle-background-color-default: #bebebe;
  --xy-handle-border-color-default: #1e1e1e;

  --xy-selection-background-color-default: rgba(200, 200, 220, 0.08);
  --xy-selection-border-default: 1px dotted rgba(200, 200, 220, 0.8);

  --xy-controls-button-background-color-default: #2b2b2b;
  --xy-controls-button-background-color-hover-default: #3e3e3e;
  --xy-controls-button-color-default: #f8f8f8;
  --xy-controls-button-color-hover-default: #fff;
  --xy-controls-button-border-color-default: #5b5b5b;
  --xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, 0.08);

  --xy-edge-label-background-color-default: #141414;
  --xy-edge-label-color-default: #f8f8f8;
}
.react-flow__background {
  background-color: var(--xy-background-color, var(--xy-background-color-props, var(--xy-background-color-default)));
  pointer-events: none;
  z-index: -1;
}
.react-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.react-flow__pane {
  z-index: 1;
}
.react-flow__pane.draggable {
    cursor: grab;
  }
.react-flow__pane.dragging {
    cursor: grabbing;
  }
.react-flow__pane.selection {
    cursor: pointer;
  }
.react-flow__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.react-flow__renderer {
  z-index: 4;
}
.react-flow__selection {
  z-index: 6;
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible {
  outline: none;
}
.react-flow__edge-path {
  stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
  stroke-width: var(--xy-edge-stroke-width, var(--xy-edge-stroke-width-default));
  fill: none;
}
.react-flow__connection-path {
  stroke: var(--xy-connectionline-stroke, var(--xy-connectionline-stroke-default));
  stroke-width: var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));
  fill: none;
}
.react-flow .react-flow__edges {
  position: absolute;
}
.react-flow .react-flow__edges svg {
    overflow: visible;
    position: absolute;
    pointer-events: none;
  }
.react-flow__edge {
  pointer-events: visibleStroke;
}
.react-flow__edge.selectable {
    cursor: pointer;
  }
.react-flow__edge.animated path {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }
.react-flow__edge.animated path.react-flow__edge-interaction {
    stroke-dasharray: none;
    animation: none;
  }
.react-flow__edge.inactive {
    pointer-events: none;
  }
.react-flow__edge.selected,
  .react-flow__edge:focus,
  .react-flow__edge:focus-visible {
    outline: none;
  }
.react-flow__edge.selected .react-flow__edge-path,
  .react-flow__edge.selectable:focus .react-flow__edge-path,
  .react-flow__edge.selectable:focus-visible .react-flow__edge-path {
    stroke: var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default));
  }
.react-flow__edge-textwrapper {
    pointer-events: all;
  }
.react-flow__edge .react-flow__edge-text {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
.react-flow__connection {
  pointer-events: none;
}
.react-flow__connection .animated {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }
svg.react-flow__connectionline {
  z-index: 1001;
  overflow: visible;
  position: absolute;
}
.react-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}
.react-flow__node {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: all;
  transform-origin: 0 0;
  box-sizing: border-box;
  cursor: default;
}
.react-flow__node.selectable {
    cursor: pointer;
  }
.react-flow__node.draggable {
    cursor: grab;
    pointer-events: all;
  }
.react-flow__node.draggable.dragging {
      cursor: grabbing;
    }
.react-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.react-flow__nodesselection-rect {
    position: absolute;
    pointer-events: all;
    cursor: grab;
  }
.react-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
  width: 6px;
  height: 6px;
  background-color: var(--xy-handle-background-color, var(--xy-handle-background-color-default));
  border: 1px solid var(--xy-handle-border-color, var(--xy-handle-border-color-default));
  border-radius: 100%;
}
.react-flow__handle.connectingfrom {
    pointer-events: all;
  }
.react-flow__handle.connectionindicator {
    pointer-events: all;
    cursor: crosshair;
  }
.react-flow__handle-bottom {
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
.react-flow__handle-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
.react-flow__handle-left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }
.react-flow__handle-right {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
  }
.react-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.react-flow__panel.top {
    top: 0;
  }
.react-flow__panel.bottom {
    bottom: 0;
  }
.react-flow__panel.left {
    left: 0;
  }
.react-flow__panel.right {
    right: 0;
  }
.react-flow__panel.center {
    left: 50%;
    transform: translateX(-50%);
  }
.react-flow__attribution {
  font-size: 10px;
  background: var(--xy-attribution-background-color, var(--xy-attribution-background-color-default));
  padding: 2px 3px;
  margin: 0;
}
.react-flow__attribution a {
    text-decoration: none;
    color: #999;
  }
@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
.react-flow__edgelabel-renderer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  left: 0;
  top: 0;
}
.react-flow__viewport-portal {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.react-flow__minimap {
  background: var(
    --xy-minimap-background-color-props,
    var(--xy-minimap-background-color, var(--xy-minimap-background-color-default))
  );
}
.react-flow__minimap-svg {
    display: block;
  }
.react-flow__minimap-mask {
    fill: var(
      --xy-minimap-mask-background-color-props,
      var(--xy-minimap-mask-background-color, var(--xy-minimap-mask-background-color-default))
    );
    stroke: var(
      --xy-minimap-mask-stroke-color-props,
      var(--xy-minimap-mask-stroke-color, var(--xy-minimap-mask-stroke-color-default))
    );
    stroke-width: var(
      --xy-minimap-mask-stroke-width-props,
      var(--xy-minimap-mask-stroke-width, var(--xy-minimap-mask-stroke-width-default))
    );
  }
.react-flow__minimap-node {
    fill: var(
      --xy-minimap-node-background-color-props,
      var(--xy-minimap-node-background-color, var(--xy-minimap-node-background-color-default))
    );
    stroke: var(
      --xy-minimap-node-stroke-color-props,
      var(--xy-minimap-node-stroke-color, var(--xy-minimap-node-stroke-color-default))
    );
    stroke-width: var(
      --xy-minimap-node-stroke-width-props,
      var(--xy-minimap-node-stroke-width, var(--xy-minimap-node-stroke-width-default))
    );
  }
.react-flow__background-pattern.dots {
    fill: var(
      --xy-background-pattern-color-props,
      var(--xy-background-pattern-color, var(--xy-background-pattern-dots-color-default))
    );
  }
.react-flow__background-pattern.lines {
    stroke: var(
      --xy-background-pattern-color-props,
      var(--xy-background-pattern-color, var(--xy-background-pattern-lines-color-default))
    );
  }
.react-flow__background-pattern.cross {
    stroke: var(
      --xy-background-pattern-color-props,
      var(--xy-background-pattern-color, var(--xy-background-pattern-cross-color-default))
    );
  }
.react-flow__controls {
  display: flex;
  flex-direction: column;
  box-shadow: var(--xy-controls-box-shadow, var(--xy-controls-box-shadow-default));
}
.react-flow__controls.horizontal {
    flex-direction: row;
  }
.react-flow__controls-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    width: 26px;
    padding: 4px;
    border: none;
    background: var(--xy-controls-button-background-color, var(--xy-controls-button-background-color-default));
    border-bottom: 1px solid
      var(
        --xy-controls-button-border-color-props,
        var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default))
      );
    color: var(
      --xy-controls-button-color-props,
      var(--xy-controls-button-color, var(--xy-controls-button-color-default))
    );
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
.react-flow__controls-button svg {
      width: 100%;
      max-width: 12px;
      max-height: 12px;
      fill: currentColor;
    }
.react-flow__edge.updating .react-flow__edge-path {
      stroke: #777;
    }
.react-flow__edge-text {
    font-size: 10px;
  }
.react-flow__node.selectable:focus,
  .react-flow__node.selectable:focus-visible {
    outline: none;
  }
.react-flow__node-input,
.react-flow__node-default,
.react-flow__node-output,
.react-flow__node-group {
  padding: 10px;
  border-radius: var(--xy-node-border-radius, var(--xy-node-border-radius-default));
  width: 150px;
  font-size: 12px;
  color: var(--xy-node-color, var(--xy-node-color-default));
  text-align: center;
  border: var(--xy-node-border, var(--xy-node-border-default));
  background-color: var(--xy-node-background-color, var(--xy-node-background-color-default));
}
.react-flow__node-input.selectable:hover, .react-flow__node-default.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
      box-shadow: var(--xy-node-boxshadow-hover, var(--xy-node-boxshadow-hover-default));
    }
.react-flow__node-input.selectable.selected,
    .react-flow__node-input.selectable:focus,
    .react-flow__node-input.selectable:focus-visible,
    .react-flow__node-default.selectable.selected,
    .react-flow__node-default.selectable:focus,
    .react-flow__node-default.selectable:focus-visible,
    .react-flow__node-output.selectable.selected,
    .react-flow__node-output.selectable:focus,
    .react-flow__node-output.selectable:focus-visible,
    .react-flow__node-group.selectable.selected,
    .react-flow__node-group.selectable:focus,
    .react-flow__node-group.selectable:focus-visible {
      box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
    }
.react-flow__node-group {
  background-color: var(--xy-node-group-background-color, var(--xy-node-group-background-color-default));
}
.react-flow__nodesselection-rect,
.react-flow__selection {
  background: var(--xy-selection-background-color, var(--xy-selection-background-color-default));
  border: var(--xy-selection-border, var(--xy-selection-border-default));
}
.react-flow__nodesselection-rect:focus,
  .react-flow__nodesselection-rect:focus-visible,
  .react-flow__selection:focus,
  .react-flow__selection:focus-visible {
    outline: none;
  }
.react-flow__controls-button:hover {
      background: var(
        --xy-controls-button-background-color-hover-props,
        var(--xy-controls-button-background-color-hover, var(--xy-controls-button-background-color-hover-default))
      );
      color: var(
        --xy-controls-button-color-hover-props,
        var(--xy-controls-button-color-hover, var(--xy-controls-button-color-hover-default))
      );
    }
.react-flow__controls-button:disabled {
      pointer-events: none;
    }
.react-flow__controls-button:disabled svg {
        fill-opacity: 0.4;
      }
.react-flow__controls-button:last-child {
    border-bottom: none;
  }
.react-flow__resize-control {
  position: absolute;
}
.react-flow__resize-control.left,
.react-flow__resize-control.right {
  cursor: ew-resize;
}
.react-flow__resize-control.top,
.react-flow__resize-control.bottom {
  cursor: ns-resize;
}
.react-flow__resize-control.top.left,
.react-flow__resize-control.bottom.right {
  cursor: nwse-resize;
}
.react-flow__resize-control.bottom.left,
.react-flow__resize-control.top.right {
  cursor: nesw-resize;
}
/* handle styles */
.react-flow__resize-control.handle {
  width: 4px;
  height: 4px;
  border: 1px solid #fff;
  border-radius: 1px;
  background-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
  transform: translate(-50%, -50%);
}
.react-flow__resize-control.handle.left {
  left: 0;
  top: 50%;
}
.react-flow__resize-control.handle.right {
  left: 100%;
  top: 50%;
}
.react-flow__resize-control.handle.top {
  left: 50%;
  top: 0;
}
.react-flow__resize-control.handle.bottom {
  left: 50%;
  top: 100%;
}
.react-flow__resize-control.handle.top.left {
  left: 0;
}
.react-flow__resize-control.handle.bottom.left {
  left: 0;
}
.react-flow__resize-control.handle.top.right {
  left: 100%;
}
.react-flow__resize-control.handle.bottom.right {
  left: 100%;
}
/* line styles */
.react-flow__resize-control.line {
  border-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
  border-width: 0;
  border-style: solid;
}
.react-flow__resize-control.line.left,
.react-flow__resize-control.line.right {
  width: 1px;
  transform: translate(-50%, 0);
  top: 0;
  height: 100%;
}
.react-flow__resize-control.line.left {
  left: 0;
  border-left-width: 1px;
}
.react-flow__resize-control.line.right {
  left: 100%;
  border-right-width: 1px;
}
.react-flow__resize-control.line.top,
.react-flow__resize-control.line.bottom {
  height: 1px;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.react-flow__resize-control.line.top {
  top: 0;
  border-top-width: 1px;
}
.react-flow__resize-control.line.bottom {
  border-bottom-width: 1px;
  top: 100%;
}
.react-flow__edge-textbg {
  fill: var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default));
}
.react-flow__edge-text {
  fill: var(--xy-edge-label-color, var(--xy-edge-label-color-default));
}

body {
  background-color: #fafafa;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
}

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

@font-face {
  font-family: "giosg-icons";
  src: url(https://globalcdn.interactiondesigner.giosg.com/fonts/cc34d987b7ab3ec76203d7d4f5a77acd.woff2) format("woff2"),
    url(https://globalcdn.interactiondesigner.giosg.com/fonts/a23e604efc7c15321e04a6eb420e5859.ttf) format("truetype"), url(https://globalcdn.interactiondesigner.giosg.com/fonts/5c4f3bb580147dd5849de6293594648a.woff) format("woff");
  /*
  svg font is removed due to conflict with @svgr/webpack loader
  url("fonts/giosg-icons.svg") format("svg"); */
  font-weight: normal;
  font-style: normal;
}

.giosg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "giosg-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.giosg-icon-add-user:before {
  content: "\EC00";
}
.giosg-icon-alert-sign:before {
  content: "\EC01";
}
.giosg-icon-arrow-down:before {
  content: "\EC40";
}
.giosg-icon-arrow-left:before {
  content: "\EC41";
}
.giosg-icon-arrow-right:before {
  content: "\EC43";
}
.giosg-icon-arrow-up:before {
  content: "\EC38";
}
.giosg-icon-bar-chart:before {
  content: "\EC02";
}
.giosg-icon-bell:before {
  content: "\EC03";
}
.giosg-icon-burger:before {
  content: "\EC04";
}
.giosg-icon-chat-bubble:before {
  content: "\EC05";
}
.giosg-icon-chat-history:before {
  content: "\EC06";
}
.giosg-icon-checkbox-checked:before {
  content: "\EC33";
}
.giosg-icon-checkbox-empty:before {
  content: "\EC34";
}
.giosg-icon-checkbox-partial:before {
  content: "\EC35";
}
.giosg-icon-checkbox-tick:before {
  content: "\EC42";
}
.giosg-icon-chevron-down:before {
  content: "\EC07";
}
.giosg-icon-chevron-left:before {
  content: "\EC08";
}
.giosg-icon-chevron-left-small:before {
  content: "\EC36";
}
.giosg-icon-chevron-right:before {
  content: "\EC09";
}
.giosg-icon-chevron-right-small:before {
  content: "\EC37";
}
.giosg-icon-chevron-up:before {
  content: "\EC10";
}
.giosg-icon-clock:before {
  content: "\EC11";
}
.giosg-icon-cogwheel:before {
  content: "\EC12";
}
.giosg-icon-collection:before {
  content: "\EC13";
}
.giosg-icon-context-menu:before {
  content: "\EC44";
}
.giosg-icon-cross-big:before {
  content: "\EC14";
}
.giosg-icon-cross-small:before {
  content: "\EC15";
}
.giosg-icon-dropdown-closed:before {
  content: "\EC16";
}
.giosg-icon-dropdown-open:before {
  content: "\EC17";
}
.giosg-icon-exit:before {
  content: "\EC18";
}
.giosg-icon-giosg-bubble:before {
  content: "\EC19";
}
.giosg-icon-link:before {
  content: "\EC39";
}
.giosg-icon-lock:before {
  content: "\EC45";
}
.giosg-icon-magnifying-glass:before {
  content: "\EC21";
}
.giosg-icon-pencil:before {
  content: "\EC22";
}
.giosg-icon-phone:before {
  content: "\EC23";
}
.giosg-icon-plus-big:before {
  content: "\EC24";
}
.giosg-icon-plus-small:before {
  content: "\EC25";
}
.giosg-icon-pointer-left:before {
  content: "\EC26";
}
.giosg-icon-pointer-right:before {
  content: "\EC27";
}
.giosg-icon-question-mark-bubble:before {
  content: "\EC28";
}
.giosg-icon-trashcan:before {
  content: "\EC29";
}
.giosg-icon-user:before {
  content: "\EC30";
}
.giosg-icon-user-history:before {
  content: "\EC31";
}
.giosg-icon-webhook:before {
  content: "\EC32";
}

.fade-enter {
  opacity: 0;
}

.fade-enter-active {
  opacity: 1;
  transition: 150ms opacity;
}

.fade-exit {
  opacity: 1;
}

.fade-exit-active {
  opacity: 0;
  transition: 150ms opacity;
}

.fade-exit-done {
  opacity: 0;
}

.expand-bottom-left-enter {
  position: absolute !important;
  top: 0;
  right: 0;
  opacity: 0;
  transform-origin: top right;
  transform: scale(0);
}

.expand-bottom-left-enter-active {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
  transition: 150ms all;
}

.expand-bottom-left-enter-done {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
}

.expand-bottom-left-exit {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform-origin: top right;
  transform: scale(1);
}

.expand-bottom-left-exit-active {
  top: 0;
  right: 0;
  opacity: 0;
  position: absolute !important;
  transform: scale(0);
  transition: 150ms all;
}

.expand-bottom-left-exit-done {
  opacity: 0;
  transform: scale(0);
}

.expand-bottom-right-enter {
  position: absolute !important;
  top: 0;
  left: 0;
  opacity: 0;
  transform-origin: top left;
  transform: scale(0);
}

.expand-bottom-right-enter-active {
  top: 0;
  left: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
  transition: 150ms all;
}

.expand-bottom-right-enter-done {
  top: 0;
  left: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
}

.expand-bottom-right-exit {
  top: 0;
  left: 0;
  opacity: 1;
  position: absolute !important;
  transform-origin: top left;
  transform: scale(1);
}

.expand-bottom-right-exit-active {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute !important;
  transform: scale(0);
  transition: 150ms all;
}

.expand-bottom-right-exit-done {
  opacity: 0;
  transform: scale(0);
}

.expand-center-enter {
  position: absolute !important;
  bottom: 0;
  right: 0;
  transform-origin: center;
  transform: scale(0);
}

.expand-center-enter-active {
  bottom: 0;
  right: 0;
  position: absolute !important;
  transform: scale(1);
  transition: 150ms all;
}

.expand-center-exit {
  bottom: 0;
  right: 0;
  position: absolute !important;
  transform-origin: center;
  transform: scale(1);
}

.expand-center-exit-active {
  bottom: 0;
  right: 0;
  position: absolute !important;
  transform: scale(0);
  transition: 150ms all;
}

.expand-center-exit-done {
  transform: scale(0);
  position: absolute !important;
  bottom: 0;
  right: 0;
}

.expand-top-left-enter {
  position: absolute !important;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0);
}

.expand-top-left-enter-active {
  bottom: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
  transition: 150ms all;
}

.expand-top-left-enter-done {
  bottom: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
}

.expand-top-left-exit {
  bottom: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform-origin: bottom right;
  transform: scale(1);
}

.expand-top-left-exit-active {
  bottom: 0;
  right: 0;
  opacity: 0;
  position: absolute !important;
  transform: scale(0);
  transition: 150ms all;
}

.expand-top-left-exit-done {
  opacity: 0;
  transform: scale(0);
}

.expand-top-right-enter {
  position: absolute !important;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform-origin: bottom left;
  transform: scale(0);
}

.expand-top-right-enter-active {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
  transition: 150ms all;
}

.expand-top-right-enter-done {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
}

.expand-top-right-exit {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute !important;
  transform-origin: bottom left;
  transform: scale(1);
}

.expand-top-right-exit-active {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute !important;
  transform: scale(0);
  transition: 150ms all;
}

.expand-top-right-exit-done {
  opacity: 0;
  transform: scale(0);
}

.expand-bottom-enter {
  position: absolute !important;
  top: 0;
  right: 0;
  opacity: 0;
  transform-origin: top center;
  transform: scaleY(0);
}

.expand-bottom-enter-active {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scaleY(1);
  transition: 150ms opacity, 150ms transform;
}

.expand-bottom-enter-done {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scaleY(1);
}

.expand-bottom-exit {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform-origin: top center;
  transform: scaleY(1);
}

.expand-bottom-exit-active {
  top: 0;
  right: 0;
  opacity: 0;
  position: absolute !important;
  transform: scaleY(0);
  transition: 100ms opacity, 120ms transform;
}

.expand-bottom-exit-done {
  opacity: 0;
  transform: scaleY(0);
}

.expand-bottom-center-enter {
  position: absolute !important;
  top: 0;
  right: 0;
  opacity: 0;
  transform-origin: top center;
  transform: scale(0);
}

.expand-bottom-center-enter-active {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
  transition: 150ms all;
}

.expand-bottom-center-enter-done {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform: scale(1);
}

.expand-bottom-center-exit {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute !important;
  transform-origin: top center;
  transform: scale(1);
}

.expand-bottom-center-exit-active {
  top: 0;
  right: 0;
  opacity: 0;
  position: absolute !important;
  transform: scale(0);
  transition: 150ms all;
}

.expand-bottom-center-exit-done {
  opacity: 0;
  transform: scale(0);
}

.PresetDateRangePicker_panel {
  padding: 0 22px 11px
}
.PresetDateRangePicker_button {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer
}
.PresetDateRangePicker_button:active {
  outline: 0
}
.PresetDateRangePicker_button__selected {
  color: #fff;
  background: #00a699
}
.SingleDatePickerInput {
  display: inline-block;
  background-color: #fff
}
.SingleDatePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.SingleDatePickerInput__rtl {
  direction: rtl
}
.SingleDatePickerInput__disabled {
  background-color: #f2f2f2
}
.SingleDatePickerInput__block {
  display: block
}
.SingleDatePickerInput__showClearDate {
  padding-right: 30px
}
.SingleDatePickerInput_clearDate {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.SingleDatePickerInput_clearDate__default:focus,
.SingleDatePickerInput_clearDate__default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.SingleDatePickerInput_clearDate__small {
  padding: 6px
}
.SingleDatePickerInput_clearDate__hide {
  visibility: hidden
}
.SingleDatePickerInput_clearDate_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.SingleDatePickerInput_clearDate_svg__small {
  height: 9px
}
.SingleDatePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.SingleDatePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.SingleDatePicker {
  position: relative;
  display: inline-block
}
.SingleDatePicker__block {
  display: block
}
.SingleDatePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.SingleDatePicker_picker__rtl {
  direction: rtl
}
.SingleDatePicker_picker__directionLeft {
  left: 0
}
.SingleDatePicker_picker__directionRight {
  right: 0
}
.SingleDatePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.SingleDatePicker_picker__fullScreenPortal {
  background-color: #fff
}
.SingleDatePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.SingleDatePicker_closeButton:focus,
.SingleDatePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.SingleDatePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_buttonReset {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_buttonReset:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_show {
  width: 33px;
  height: 26px;
  position: absolute;
  z-index: 2
}
.DayPickerKeyboardShortcuts_show::before {
  content: "";
  display: block;
  position: absolute
}
.DayPickerKeyboardShortcuts_show__bottomRight {
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight::before {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topRight {
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight::before {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topLeft {
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft::before {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft:hover::before {
  border-left: 33px solid #008489
}
.DayPickerKeyboardShortcuts_showSpan {
  color: #fff;
  position: absolute
}
.DayPickerKeyboardShortcuts_showSpan__bottomRight {
  bottom: 0;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topRight {
  top: 1px;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topLeft {
  top: 1px;
  left: 5px
}
.DayPickerKeyboardShortcuts_panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px;
  text-align: left
}
.DayPickerKeyboardShortcuts_title {
  font-size: 16px;
  font-weight: 700;
  margin: 0
}
.DayPickerKeyboardShortcuts_list {
  list-style: none;
  padding: 0;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2
}
.DayPickerKeyboardShortcuts_close:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_closeSvg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_closeSvg:focus,
.DayPickerKeyboardShortcuts_closeSvg:hover {
  fill: #82888a
}
.CalendarDay {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center
}
.CalendarDay:active {
  outline: 0
}
.CalendarDay__defaultCursor {
  cursor: default
}
.CalendarDay__default {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff
}
.CalendarDay__default:hover {
  background: #e4e7e7;
  border: 1px solid #e4e7e7;
  color: inherit
}
.CalendarDay__hovered_offset {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit
}
.CalendarDay__outside {
  border: 0;
  background: #fff;
  color: #484848
}
.CalendarDay__outside:hover {
  border: 0
}
.CalendarDay__blocked_minimum_nights {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd
}
.CalendarDay__blocked_minimum_nights:active,
.CalendarDay__blocked_minimum_nights:hover {
  background: #fff;
  color: #cacccd
}
.CalendarDay__highlighted_calendar {
  background: #ffe8bc;
  color: #484848
}
.CalendarDay__highlighted_calendar:active,
.CalendarDay__highlighted_calendar:hover {
  background: #ffce71;
  color: #484848
}
.CalendarDay__selected_span {
  background: #66e2da;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
  background: #33dacd;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover {
  background: #00a699;
  border: 1px double #00a699;
  color: #fff
}
.CalendarDay__hovered_span,
.CalendarDay__hovered_span:hover {
  background: #b2f1ec;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__hovered_span:active {
  background: #80e8e0;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__blocked_calendar,
.CalendarDay__blocked_calendar:active,
.CalendarDay__blocked_calendar:hover {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a
}
.CalendarDay__blocked_out_of_range,
.CalendarDay__blocked_out_of_range:active,
.CalendarDay__blocked_out_of_range:hover {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd
}
.CalendarDay__hovered_start_first_possible_end {
  background: #eceeee;
  border: 1px double #eceeee
}
.CalendarDay__hovered_start_blocked_min_nights {
  background: #eceeee;
  border: 1px double #e4e7e7
}
.CalendarMonth {
  background: #fff;
  text-align: center;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.CalendarMonth_table {
  border-collapse: collapse;
  border-spacing: 0
}
.CalendarMonth_verticalSpacing {
  border-collapse: separate
}
.CalendarMonth_caption {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: initial
}
.CalendarMonth_caption__verticalScrollable {
  padding-top: 12px;
  padding-bottom: 7px
}
.CalendarMonthGrid {
  background: #fff;
  text-align: left;
  z-index: 0
}
.CalendarMonthGrid__animating {
  z-index: 1
}
.CalendarMonthGrid__horizontal {
  position: absolute;
  left: 9px
}
.CalendarMonthGrid__vertical,
.CalendarMonthGrid__vertical_scrollable {
  margin: 0 auto
}
.CalendarMonthGrid_month__horizontal {
  display: inline-block;
  vertical-align: top;
  min-height: 100%
}
.CalendarMonthGrid_month__hideForAnimation {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none
}
.CalendarMonthGrid_month__hidden {
  visibility: hidden
}
.DayPickerNavigation {
  position: relative;
  z-index: 2
}
.DayPickerNavigation__horizontal {
  height: 0
}
.DayPickerNavigation__verticalScrollable_prevNav {
  z-index: 1
}
.DayPickerNavigation__verticalDefault {
  position: absolute;
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0
}
.DayPickerNavigation__verticalScrollableDefault {
  position: relative
}
.DayPickerNavigation__bottom {
  height: auto
}
.DayPickerNavigation__bottomDefault {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.DayPickerNavigation_button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0;
  margin: 0
}
.DayPickerNavigation_button__default {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575
}
.DayPickerNavigation_button__default:focus,
.DayPickerNavigation_button__default:hover {
  border: 1px solid #c4c4c4
}
.DayPickerNavigation_button__default:active {
  background: #f2f2f2
}
.DayPickerNavigation_button__disabled {
  cursor: default;
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:focus,
.DayPickerNavigation_button__disabled:hover {
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:active {
  background: 0 0
}
.DayPickerNavigation_button__horizontalDefault {
  position: absolute;
  top: 18px;
  line-height: .78;
  border-radius: 3px;
  padding: 6px 9px
}
.DayPickerNavigation_bottomButton__horizontalDefault {
  position: static;
  margin: -10px 22px 30px
}
.DayPickerNavigation_leftButton__horizontalDefault {
  left: 22px
}
.DayPickerNavigation_rightButton__horizontalDefault {
  right: 22px
}
.DayPickerNavigation_button__verticalDefault {
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0,0,0,.1);
  position: relative;
  display: inline-block;
  text-align: center;
  height: 100%;
  width: 50%
}
.DayPickerNavigation_nextButton__verticalDefault {
  border-left: 0
}
.DayPickerNavigation_nextButton__verticalScrollableDefault,
.DayPickerNavigation_prevButton__verticalScrollableDefault {
  width: 100%
}
.DayPickerNavigation_svg__horizontal {
  height: 19px;
  width: 19px;
  fill: #82888a;
  display: block
}
.DayPickerNavigation_svg__vertical {
  height: 42px;
  width: 42px;
  fill: #484848
}
.DayPickerNavigation_svg__disabled {
  fill: #f2f2f2
}
.DayPicker {
  background: #fff;
  position: relative;
  text-align: left
}
.DayPicker__horizontal {
  background: #fff
}
.DayPicker__verticalScrollable {
  height: 100%
}
.DayPicker__hidden {
  visibility: hidden
}
.DayPicker__withBorder {
  box-shadow: 0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);
  border-radius: 3px
}
.DayPicker_portal__horizontal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%
}
.DayPicker_portal__vertical {
  position: initial
}
.DayPicker_focusRegion {
  outline: 0
}
.DayPicker_calendarInfo__horizontal,
.DayPicker_wrapper__horizontal {
  display: inline-block;
  vertical-align: top
}
.DayPicker_weekHeaders {
  position: relative
}
.DayPicker_weekHeaders__horizontal {
  margin-left: 9px
}
.DayPicker_weekHeader {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  text-align: left
}
.DayPicker_weekHeader__vertical {
  left: 50%
}
.DayPicker_weekHeader__verticalScrollable {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center
}
.DayPicker_weekHeader_ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px
}
.DayPicker_weekHeader_li {
  display: inline-block;
  text-align: center
}
.DayPicker_transitionContainer {
  position: relative;
  overflow: hidden;
  border-radius: 3px
}
.DayPicker_transitionContainer__horizontal {
  -webkit-transition: height .2s ease-in-out;
  -moz-transition: height .2s ease-in-out;
  transition: height .2s ease-in-out
}
.DayPicker_transitionContainer__vertical {
  width: 100%
}
.DayPicker_transitionContainer__verticalScrollable {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll
}
.DateInput {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle
}
.DateInput__small {
  width: 97px
}
.DateInput__block {
  width: 100%
}
.DateInput__disabled {
  background: #f2f2f2;
  color: #dbdbdb
}
.DateInput_input {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0
}
.DateInput_input__small {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .2px;
  padding: 7px 7px 5px
}
.DateInput_input__regular {
  font-weight: auto
}
.DateInput_input__readOnly {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.DateInput_input__focused {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0
}
.DateInput_input__disabled {
  background: #f2f2f2;
  font-style: italic
}
.DateInput_screenReaderMessage {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
.DateInput_fang {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2
}
.DateInput_fangShape {
  fill: #fff
}
.DateInput_fangStroke {
  stroke: #dbdbdb;
  fill: transparent
}
.DateRangePickerInput {
  background-color: #fff;
  display: inline-block
}
.DateRangePickerInput__disabled {
  background: #f2f2f2
}
.DateRangePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.DateRangePickerInput__rtl {
  direction: rtl
}
.DateRangePickerInput__block {
  display: block
}
.DateRangePickerInput__showClearDates {
  padding-right: 30px
}
.DateRangePickerInput_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #484848
}
.DateRangePickerInput_arrow_svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px
}
.DateRangePickerInput_clearDates {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.DateRangePickerInput_clearDates__small {
  padding: 6px
}
.DateRangePickerInput_clearDates_default:focus,
.DateRangePickerInput_clearDates_default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.DateRangePickerInput_clearDates__hide {
  visibility: hidden
}
.DateRangePickerInput_clearDates_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.DateRangePickerInput_clearDates_svg__small {
  height: 9px
}
.DateRangePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.DateRangePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.DateRangePicker {
  position: relative;
  display: inline-block
}
.DateRangePicker__block {
  display: block
}
.DateRangePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.DateRangePicker_picker__rtl {
  direction: rtl
}
.DateRangePicker_picker__directionLeft {
  left: 0
}
.DateRangePicker_picker__directionRight {
  right: 0
}
.DateRangePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.DateRangePicker_picker__fullScreenPortal {
  background-color: #fff
}
.DateRangePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.DateRangePicker_closeButton:focus,
.DateRangePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.DateRangePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
@font-face {
  font-family: "giosg-icons";
  src: url(https://globalcdn.interactiondesigner.giosg.com/fonts/1c644e81e4540c33c2ea0eaf07d55617.woff2) format("woff2"),
    url(https://globalcdn.interactiondesigner.giosg.com/fonts/7d3065b7b0795525711c5d8560f72fbf.ttf) format("truetype"),
    url(https://globalcdn.interactiondesigner.giosg.com/fonts/fcef04cf55b4acaeb01082202c79a6a5.woff) format("woff");
  /* url('fonts/giosg-icons.svg?pmkyb6#giosg-icons') format('svg'); */
  font-weight: normal;
  font-style: normal;
}

.giosg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "giosg-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.giosg-icon-add-user:before {
  content: "\EC00";
}
.giosg-icon-alert-sign:before {
  content: "\EC01";
}
.giosg-icon-bar-chart:before {
  content: "\EC02";
}
.giosg-icon-bell:before {
  content: "\EC03";
}
.giosg-icon-burger:before {
  content: "\EC04";
}
.giosg-icon-chat-bubble:before {
  content: "\EC05";
}
.giosg-icon-chat-history:before {
  content: "\EC06";
}
.giosg-icon-checkbox-tick:before {
  content: "\EC42";
}
.giosg-icon-checkbox-checked:before {
  content: "\EC33";
}
.giosg-icon-checkbox-empty:before {
  content: "\EC34";
}
.giosg-icon-checkbox-partial:before {
  content: "\EC35";
}
.giosg-icon-chevron-down:before {
  content: "\EC07";
}
.giosg-icon-chevron-left:before {
  content: "\EC08";
}
.giosg-icon-chevron-left-small:before {
  content: "\EC36";
}
.giosg-icon-chevron-right:before {
  content: "\EC09";
}
.giosg-icon-chevron-right-small:before {
  content: "\EC37";
}
.giosg-icon-chevron-up:before {
  content: "\EC10";
}
.giosg-icon-clock:before {
  content: "\EC11";
}
.giosg-icon-cogwheel:before {
  content: "\EC12";
}
.giosg-icon-collection:before {
  content: "\EC13";
}
.giosg-icon-cross-big:before {
  content: "\EC14";
}
.giosg-icon-cross-small:before {
  content: "\EC15";
}
.giosg-icon-dropdown-closed:before {
  content: "\EC16";
}
.giosg-icon-dropdown-open:before {
  content: "\EC17";
}
.giosg-icon-exit:before {
  content: "\EC18";
}
.giosg-icon-giosg-bubble:before {
  content: "\EC19";
}
.giosg-icon-link:before {
  content: "\EC39";
}
.giosg-icon-magnifying-glass:before {
  content: "\EC21";
}
.giosg-icon-pencil:before {
  content: "\EC22";
}
.giosg-icon-phone:before {
  content: "\EC23";
}
.giosg-icon-plus-big:before {
  content: "\EC24";
}
.giosg-icon-plus-small:before {
  content: "\EC25";
}
.giosg-icon-pointer-left:before {
  content: "\EC26";
}
.giosg-icon-pointer-right:before {
  content: "\EC27";
}
.giosg-icon-question-mark-bubble:before {
  content: "\EC28";
}
.giosg-icon-trashcan:before {
  content: "\EC29";
}
.giosg-icon-user:before {
  content: "\EC30";
}
.giosg-icon-user-history:before {
  content: "\EC31";
}
.giosg-icon-webhook:before {
  content: "\EC32";
}

/* import "../../ui-toolkit/Animations/expand-bottom.scss"; */
.expand-bottom-enter.expand-bottom-enter {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform-origin: top center;
  transform: scaleY(0);
}

.expand-bottom-enter-active.expand-bottom-enter-active {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scaleY(1);
  transition: 150ms opacity, 150ms transform;
}

.expand-bottom-enter-done.expand-bottom-enter-done {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scaleY(1);
}

.expand-bottom-exit.expand-bottom-exit {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform-origin: top center;
  transform: scaleY(1);
}

.expand-bottom-exit-active.expand-bottom-exit-active {
  top: 0;
  right: 0;
  opacity: 0;
  position: absolute;
  transform: scaleY(0);
  transition: 100ms opacity, 120ms transform;
}

.expand-bottom-exit-done.expand-bottom-exit-done {
  opacity: 0;
  transform: scaleY(0);
}

/*  "../../ui-toolkit/Animations/expand-bottom-left.scss"; */
.expand-bottom-left-enter {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform-origin: top right;
  transform: scale(0);
}

.expand-bottom-left-enter-active {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
  transition: 150ms all;
}

.expand-bottom-left-enter-done {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
}

.expand-bottom-left-exit {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform-origin: top right;
  transform: scale(1);
}

.expand-bottom-left-exit-active {
  top: 0;
  right: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0);
  transition: 150ms all;
}

.expand-bottom-left-exit-done {
  opacity: 0;
  transform: scale(0);
}

/* import "../../ui-toolkit/Animations/expand-bottom-right.scss"; */
/* CSS selector doubled to beat emotion */
.expand-bottom-right-enter.expand-bottom-right-enter {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform-origin: top left;
  transform: scale(0);
}

.expand-bottom-right-enter-active.expand-bottom-right-enter-active {
  top: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
  transition: 150ms all;
}

.expand-bottom-right-enter-done.expand-bottom-right-enter-done {
  top: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
}

.expand-bottom-right-exit.expand-bottom-right-exit {
  top: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  transform-origin: top left;
  transform: scale(1);
}

.expand-bottom-right-exit-active.expand-bottom-right-exit-active {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0);
  transition: 150ms all;
}

.expand-bottom-right-exit-done.expand-bottom-right-exit-done {
  opacity: 0;
  transform: scale(0);
}

/* "../../ui-toolkit/Animations/expand-bottom-center.scss"; */
.expand-bottom-center-enter {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform-origin: top center;
  transform: scale(0);
}

.expand-bottom-center-enter-active {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
  transition: 150ms all;
}

.expand-bottom-center-enter-done {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
}

.expand-bottom-center-exit {
  top: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform-origin: top center;
  transform: scale(1);
}

.expand-bottom-center-exit-active {
  top: 0;
  right: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0);
  transition: 150ms all;
}

.expand-bottom-center-exit-done {
  opacity: 0;
  transform: scale(0);
}

/* import "../../ui-toolkit/Animations/expand-center.scss"; */
.expand-center-enter {
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: center;
  transform: scale(0);
}

.expand-center-enter-active {
  bottom: 0;
  right: 0;
  position: absolute;
  transform: scale(1);
  transition: 150ms all;
}

.expand-center-exit {
  bottom: 0;
  right: 0;
  position: absolute;
  transform-origin: center;
  transform: scale(1);
}

.expand-center-exit-active {
  bottom: 0;
  right: 0;
  position: absolute;
  transform: scale(0);
  transition: 150ms all;
}

.expand-center-exit-done {
  transform: scale(0);
  position: absolute;
  bottom: 0;
  right: 0;
}
/* "expand-top"; */

.expand-top-enter {
  position: absolute;
  bottom: 38;
  right: 0;
  opacity: 0;
  transform-origin: bottom center;
  transform: scaleY(0);
}

.expand-top-enter-active {
  bottom: 38;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scaleY(1);
  transition: 150ms opacity, 150ms transform;
}

.expand-top-enter-done {
  bottom: 38;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scaleY(1);
}

.expand-top-exit {
  bottom: 38;
  right: 0;
  opacity: 1;
  position: absolute;
  transform-origin: bottom center;
  transform: scaleY(1);
}

.expand-top-exit-active {
  bottom: 38;
  right: 0;
  opacity: 0;
  position: absolute;
  transform: scaleY(0);
  transition: 100ms opacity, 120ms transform;
}

.expand-top-exit-done {
  opacity: 0;
  transform: scaleY(0);
}

/* "../../ui-toolkit/Animations/expand-top-left.scss"; */
.expand-top-left-enter {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0);
}

.expand-top-left-enter-active {
  bottom: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
  transition: 150ms all;
}

.expand-top-left-enter-done {
  bottom: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
}

.expand-top-left-exit {
  bottom: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform-origin: bottom right;
  transform: scale(1);
}

.expand-top-left-exit-active {
  bottom: 0;
  right: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0);
  transition: 150ms all;
}

.expand-top-left-exit-done {
  opacity: 0;
  transform: scale(0);
}

/* "../../ui-toolkit/Animations/expand-top-right.scss"; */
.expand-top-right-enter {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform-origin: bottom left;
  transform: scale(0);
}

.expand-top-right-enter-active {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
  transition: 150ms all;
}

.expand-top-right-enter-done {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1);
}

.expand-top-right-exit {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  transform-origin: bottom left;
  transform: scale(1);
}

.expand-top-right-exit-active {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0);
  transition: 150ms all;
}

.expand-top-right-exit-done {
  opacity: 0;
  transform: scale(0);
}

/* import "../Animations/fade.scss"; */
.fade-enter {
  opacity: 0;
}

.fade-enter-active {
  opacity: 1;
  transition: 150ms opacity;
}

.fade-exit {
  opacity: 1;
}

.fade-exit-active {
  opacity: 0;
  transition: 150ms opacity;
}

.fade-exit-done {
  opacity: 0;
}


/*# sourceMappingURL=index.f101968b286af5bfdf8c.css.map*/