._tooltip_cmshg_1 {
  /* Empty rules, class name used in code. */
}

._tooltip-portal_cmshg_5 {
  position: absolute;
  z-index: 21100;
}

._bubble_cmshg_10 {
  border-style: var(--tooltip-border-style, solid);
  border-radius: var(--tooltip-border-radius, 3px);
  border-width: var(--tooltip-boder-width, 1px);
  box-shadow: var(--tooltip-box-shadow, 6px 6px 8px 0 rgba(0, 0, 0, 0.25));
}

._content_cmshg_17 {
  border-radius: var(--tooltip-border-radius, 3px);
  font-size: var(--font-xs);
  padding: var(--tooltip-padding, 3px 8px);
  position: relative;
  z-index: 10;
  word-break: break-word;
}

._tooltip-overlap_cmshg_26 {
  position: absolute;
  top: var(--tooltip-overlap, -10px);
  right: var(--tooltip-overlap, -10px);
  bottom: var(--tooltip-overlap, -10px);
  left: var(--tooltip-overlap, -10px);
}

/*---- red ----*/

._red_cmshg_36 ._bubble_cmshg_10 {
  border-color: var(--tooltip-color, #693636);
}

._red_cmshg_36 ._content_cmshg_17 {
  background: var(--tooltip-background, #ce2a2a);
  color: var(--tooltip-color, #fff);
}

/*---- light ----*/

._light_cmshg_47 ._bubble_cmshg_10 {
  border: 1px solid #bfbfbf;
}

._light_cmshg_47 ._content_cmshg_17 {
  background: var(--tooltip-background, #fff);
  color: var(--tooltip-color, var(--color-text-black));
}

/*---- dark ----*/

._dark_cmshg_58 ._content_cmshg_17 {
  border-radius: 4px;
  padding: 4px 8px;
  background: var(--tooltip-background, #010221);
  color: var(--tooltip-color, white);
}

._dark_cmshg_58 ._bubble_cmshg_10 {
  border: none;
  box-shadow: none;
}

._white_cmshg_70 ._bubble_cmshg_10 {
  border: none;
  color: var(--tooltip-color, var(--color-text-black));
  background: var(--tooltip-background, white);
  padding: 4px 8px;
}

._white_cmshg_70 ._content_cmshg_17 {
  min-width: 200px;
  max-width: 500px;
}

._dark_cmshg_58 ._content_cmshg_17 {
  max-width: 500px;
}

._tipTitle_cmshg_86 {
  padding: 4px 8px 0 8px;
}
/*---- Common properties -----------*/
._buttonX_1f2nl_2 {
  border: none;
  border-radius: 0;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-weight: var(--weight-medium);
  outline: none;
  position: relative;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  padding: 0;
}

._enabled_1f2nl_18:active {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2) inset;
}

._disabled_1f2nl_22 {
  cursor: default;
}

._primary_1f2nl_26,
._secondary_1f2nl_27,
._primary2_1f2nl_28,
._secondary2_1f2nl_29,
._transparent_1f2nl_30 {
  line-height: 20px;
  border-radius: var(--button-border-radius, 4px);
}

._withSizing_1f2nl_35 {
  height: var(--button-height, 36px);
  padding: 3px var(--button-padding-horizontal, 16px) 3px
    var(--button-padding-horizontal, 16px);
}

/* Options */
._flatLeft_1f2nl_42 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

._flatRight_1f2nl_47 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Primary */
._primary_1f2nl_26 {
  background: var(--button-primary-bg-normal);
  color: var(--button-primary-color-normal);
  border: var(--button-primary-border-normal, none);
}

._primary_1f2nl_26._disabled_1f2nl_22 {
  background: var(--button-primary-bg-disabled);
  color: var(--button-primary-color-disabled);
  border: var(--button-primary-border-disabled, none);
}

._primary_1f2nl_26._enabled_1f2nl_18:hover,
._primary_1f2nl_26._enabled_1f2nl_18:focus {
  background: var(--button-primary-bg-hover);
  color: var(--button-primary-color-hover);
  border: var(--button-primary-border-hover, none);
}

._primary_1f2nl_26._enabled_1f2nl_18:active {
  background: var(--button-primary-bg-click);
  color: var(--button-primary-color-click);
  border: var(
    --button-primary-border-click,
    1px solid var(--button-primary-color-click)
  );
}

/* Secondary */
._secondary_1f2nl_27 {
  background: var(--button-secondary-bg-normal);
  color: var(--button-secondary-color-normal);
  border: var(--button-secondary-border-normal);
  line-height: 20px;
}

._secondary_1f2nl_27._disabled_1f2nl_22 {
  border: var(--button-secondary-border-disabled, none);
  background: var(--button-secondary-bg-disabled);
  color: var(--button-secondary-color-disabled);
}

._secondary_1f2nl_27._enabled_1f2nl_18:hover,
._secondary_1f2nl_27._enabled_1f2nl_18:focus {
  background-color: var(--button-secondary-bg-hover);
  color: var(--button-secondary-color-hover);
  border: var(--button-secondary-border-hover);
}

._secondary_1f2nl_27._enabled_1f2nl_18:active {
  background-color: var(--button-secondary-bg-click);
  color: var(--button-secondary-color-click);
  border-color: var(--button-secondary-bg-click);
}

/* Primary 2 */
._primary2_1f2nl_28 {
  background: white;
  color: var(--color-text-black);
  border: 1px solid var(--color-dark-border);
}

._primary2_1f2nl_28._enabled_1f2nl_18:hover,
._primary2_1f2nl_28._enabled_1f2nl_18:focus {
  background: var(--button-primary-bg-hover);
  color: white;
}

._primary2_1f2nl_28._enabled_1f2nl_18:active {
  background: var(--button-primary-bg-click);
  color: var(--button-primary-color-click);
}

._primary2_1f2nl_28._toggled_1f2nl_126 {
  background: #ededed;
}

/* Secondary 2 */
._secondary2_1f2nl_29 {
  background: white;
  color: var(--color-text-black);
  border: 1px solid var(--color-mid-border);
}

._secondary2_1f2nl_29._enabled_1f2nl_18:hover,
._secondary2_1f2nl_29._enabled_1f2nl_18:focus {
  background: var(--button-primary-bg-hover);
  color: white;
  border-color: var(--color-dark-border);
}

._secondary2_1f2nl_29._enabled_1f2nl_18:active {
  background: var(--button-primary-bg-click);
  color: var(--button-primary-color-click);
  border-color: var(--color-dark-border);
}

._secondary2_1f2nl_29._toggled_1f2nl_126 {
  background: #ededed;
}

/*---- White button ----------------*/
._white_1f2nl_155 {
  background: var(--buttonX-bg-white-normal);
  border: 1px solid #d6d6d6;
  color: #7d7d7d;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

._white_1f2nl_155._disabled_1f2nl_22 {
  border-color: #ddd;
  color: #ccc;
}

._white_1f2nl_155._enabled_1f2nl_18:hover {
  background: var(--buttonX-bg-white-hover);
  color: #fff;
  border-color: #333;
}

._white_1f2nl_155._toggled_1f2nl_126 {
  background: var(--buttonX-bg-white-toggled);
  color: #151515;
}

/*---- Borderless button -----------*/
._borderless_1f2nl_182 {
  background: transparent;
  color: var(--color-text-dark);
  padding: 0;
}

._borderless_1f2nl_182._disabled_1f2nl_22 {
  color: #bbb;
}

._borderless_1f2nl_182._enabled_1f2nl_18:hover,
._borderless_1f2nl_182._enabled_1f2nl_18:focus {
  background: rgba(0, 0, 0, 0.3);
  color: #000;
  font-weight: var(--weight-medium);
}

/*---- Colorless button -----------*/
._none_1f2nl_200 {
  background: transparent;
  color: var(--color-text-dark);
}

._none_1f2nl_200._disabled_1f2nl_22 {
  color: #bbb;
}

._none_1f2nl_200._enabled_1f2nl_18:hover,
._none_1f2nl_200._enabled_1f2nl_18:focus {
  color: var(--color-text-black);
}

._none_1f2nl_200:active {
  color: var(--color-text-black);
  box-shadow: none;
}

/*---- Transparent --------------*/

._transparent_1f2nl_30 {
  background: transparent;
  color: #020348;
  border: 1px solid #ccc;
}

._transparent_1f2nl_30._disabled_1f2nl_22 {
  color: #bbb;
}

._transparent_1f2nl_30._enabled_1f2nl_18:hover,
._transparent_1f2nl_30._enabled_1f2nl_18:focus {
  color: #000;
}

._transparent_1f2nl_30._enabled_1f2nl_18:active {
  color: var(--color-text-dark);
}
._badProject_87hqd_1 {
  margin-top: 6px;
}
._badProject_87hqd_1 li {
  list-style-type: square;
  margin: 4px 0;
}
._IconButton_gn5sy_1 {
  display: inline-block;
  width: var(--icon-size, 24px);
  height: var(--icon-size, 24px);
  border-radius: var(--icon-button-radius, 12px);
  background: var(--icon-button-bg-normal) no-repeat center;
  cursor: pointer;
}

._IconButton_gn5sy_1._disabled_gn5sy_10 {
  opacity: 50%;
}

._IconButton_gn5sy_1._disabled_gn5sy_10:hover {
  cursor: default;
}

._IconButton_gn5sy_1:hover:not(._disabled_gn5sy_10) {
  background-color: var(--icon-button-bg-hover);
}

._IconButton_gn5sy_1:active:not(._disabled_gn5sy_10) {
  background-color: var(--icon-button-bg-click);
}

._IconButton_gn5sy_1._back_gn5sy_26 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7H3.83l5.59-5.59L8 0 0 8l8 8 1.41-1.41L3.83 9H16z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._back_gn5sy_26:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._back_gn5sy_26:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7H3.83l5.59-5.59L8 0 0 8l8 8 1.41-1.41L3.83 9H16z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._cache_gn5sy_34 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.65 2.35A7.958 7.958 0 008 0C3.58 0 .01 3.58.01 8S3.58 16 8 16c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 018 14c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L9 7h7V0l-2.35 2.35z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._cache_gn5sy_34:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._cache_gn5sy_34:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.65 2.35A7.958 7.958 0 008 0C3.58 0 .01 3.58.01 8S3.58 16 8 16c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 018 14c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L9 7h7V0l-2.35 2.35z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._clock_gn5sy_42 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7h3v2H7V3h2v4zm-1 8A7 7 0 108 1a7 7 0 000 14zm0 1A8 8 0 118 0a8 8 0 010 16z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._clock_gn5sy_42:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._clock_gn5sy_42:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7h3v2H7V3h2v4zm-1 8A7 7 0 108 1a7 7 0 000 14zm0 1A8 8 0 118 0a8 8 0 010 16z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._comment_gn5sy_50 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 7H9s-3 0-3 3v10c0 3 3 3 3 3h2.007L11 28l6-5h7s3 0 3-3V10c0-3-3-3-3-3' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._comment_gn5sy_50:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._comment_gn5sy_50:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 7H9s-3 0-3 3v10c0 3 3 3 3 3h2.007L11 28l6-5h7s3 0 3-3V10c0-3-3-3-3-3' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._comment_gn5sy_50._active_gn5sy_57:not(._disabled_gn5sy_10) {
  background-color: var(--icon-button-bg-hover);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 7H9s-3 0-3 3v10c0 3 3 3 3 3h2.007L11 28l6-5h7s3 0 3-3V10c0-3-3-3-3-3' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._dashboard_gn5sy_62 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7a1 1 0 011 1v3a1 1 0 01-1 1H1a1 1 0 01-1-1V8a1 1 0 011-1h4zm8 0a1 1 0 011 1v3a1 1 0 01-1 1H9a1 1 0 01-1-1V8a1 1 0 011-1h4zm0-7a1 1 0 011 1v3a1 1 0 01-1 1H9a1 1 0 01-1-1V1a1 1 0 011-1h4zM5 0a1 1 0 011 1v3a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1h4z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._dashboard_gn5sy_62:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._dashboard_gn5sy_62:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7a1 1 0 011 1v3a1 1 0 01-1 1H1a1 1 0 01-1-1V8a1 1 0 011-1h4zm8 0a1 1 0 011 1v3a1 1 0 01-1 1H9a1 1 0 01-1-1V8a1 1 0 011-1h4zm0-7a1 1 0 011 1v3a1 1 0 01-1 1H9a1 1 0 01-1-1V1a1 1 0 011-1h4zM5 0a1 1 0 011 1v3a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1h4z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._dependencies_gn5sy_70 {
  background-position-x: calc(50% - 1px);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 9h-3a1.5 1.5 0 110-3h3a1.5 1.5 0 011.415 1H6.5c.331 0 .629-.342 1.016-1.207l.15-.35.159-.401.367-.974.19-.479c.522-1.267.997-2.023 1.644-2.366A1.5 1.5 0 0111.5 0h3a1.5 1.5 0 110 3h-3a1.5 1.5 0 01-1.249-.669c-.23.221-.453.57-.689 1.065l-.17.375-.177.426-.55 1.443-.171.42a7.66 7.66 0 01-.466.942L10.085 7A1.5 1.5 0 0111.5 6h3a1.5 1.5 0 110 3h-3a1.5 1.5 0 01-1.414-.999l-2.058-.002c.121.199.24.434.361.703l.105.237.171.42.55 1.444.177.426.17.375c.236.496.459.843.689 1.069A1.494 1.494 0 0111.5 12h3a1.5 1.5 0 010 3h-3a1.5 1.5 0 01-1.475-1.223c-.606-.322-1.061-1.006-1.546-2.134l-.097-.233-.19-.478-.367-.975-.159-.4-.15-.35c-.359-.804-.642-1.155-.946-1.202L6.5 8l-.585.001A1.502 1.502 0 014.5 9' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._dependencies_gn5sy_70:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._dependencies_gn5sy_70:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 9h-3a1.5 1.5 0 110-3h3a1.5 1.5 0 011.415 1H6.5c.331 0 .629-.342 1.016-1.207l.15-.35.159-.401.367-.974.19-.479c.522-1.267.997-2.023 1.644-2.366A1.5 1.5 0 0111.5 0h3a1.5 1.5 0 110 3h-3a1.5 1.5 0 01-1.249-.669c-.23.221-.453.57-.689 1.065l-.17.375-.177.426-.55 1.443-.171.42a7.66 7.66 0 01-.466.942L10.085 7A1.5 1.5 0 0111.5 6h3a1.5 1.5 0 110 3h-3a1.5 1.5 0 01-1.414-.999l-2.058-.002c.121.199.24.434.361.703l.105.237.171.42.55 1.444.177.426.17.375c.236.496.459.843.689 1.069A1.494 1.494 0 0111.5 12h3a1.5 1.5 0 010 3h-3a1.5 1.5 0 01-1.475-1.223c-.606-.322-1.061-1.006-1.546-2.134l-.097-.233-.19-.478-.367-.975-.159-.4-.15-.35c-.359-.804-.642-1.155-.946-1.202L6.5 8l-.585.001A1.502 1.502 0 014.5 9' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._dots-horizontal_gn5sy_79 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='4' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 2c0 .825.675 1.5 1.5 1.5S12 2.825 12 2 11.325.5 10.5.5 9 1.175 9 2zM7.5 2C7.5 1.175 6.825.5 6 .5S4.5 1.175 4.5 2 5.175 3.5 6 3.5 7.5 2.825 7.5 2zM3 2C3 1.175 2.325.5 1.5.5S0 1.175 0 2s.675 1.5 1.5 1.5S3 2.825 3 2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._dots-horizontal_gn5sy_79:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._dots-horizontal_gn5sy_79:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='4' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 2c0 .825.675 1.5 1.5 1.5S12 2.825 12 2 11.325.5 10.5.5 9 1.175 9 2zM7.5 2C7.5 1.175 6.825.5 6 .5S4.5 1.175 4.5 2 5.175 3.5 6 3.5 7.5 2.825 7.5 2zM3 2C3 1.175 2.325.5 1.5.5S0 1.175 0 2s.675 1.5 1.5 1.5S3 2.825 3 2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._dots-vertical_gn5sy_87 {
  background-image: var(
    --dots-vertical-normal,
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='12' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3c.825 0 1.5-.675 1.5-1.5S2.825 0 2 0 .5.675.5 1.5 1.175 3 2 3zm0 1.5C1.175 4.5.5 5.175.5 6S1.175 7.5 2 7.5 3.5 6.825 3.5 6 2.825 4.5 2 4.5zM2 9c-.825 0-1.5.675-1.5 1.5S1.175 12 2 12s1.5-.675 1.5-1.5S2.825 9 2 9z' fill-rule='evenodd'/%3E%3C/svg%3E")
  );
}
._IconButton_gn5sy_1._dots-vertical_gn5sy_87:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._dots-vertical_gn5sy_87:active:not(._disabled_gn5sy_10) {
  background-image: var(
    --dots-vertical-hover,
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='12' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3c.825 0 1.5-.675 1.5-1.5S2.825 0 2 0 .5.675.5 1.5 1.175 3 2 3zm0 1.5C1.175 4.5.5 5.175.5 6S1.175 7.5 2 7.5 3.5 6.825 3.5 6 2.825 4.5 2 4.5zM2 9c-.825 0-1.5.675-1.5 1.5S1.175 12 2 12s1.5-.675 1.5-1.5S2.825 9 2 9z' fill-rule='evenodd'/%3E%3C/svg%3E")
  );
}

._IconButton_gn5sy_1._download_gn5sy_101 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='14' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6V0h2v6h2l-3 5-3-5zm-6 8v-2h14v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._download_gn5sy_101:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._download_gn5sy_101:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='14' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6V0h2v6h2l-3 5-3-5zm-6 8v-2h14v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._duplicate_gn5sy_109 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='16' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.52.96H10v1.023H1V13.75H.02V2.46c0-.825.674-1.5 1.5-1.5zM3.47 3h7.996C12.291 3 13 3.675 13 4.5v9.987c0 .825-.709 1.5-1.534 1.5H3.47a1.482 1.482 0 01-1.474-1.5V4.5c0-.825.649-1.5 1.474-1.5zm8.54 12V4.023H3V15h9.01zM8 9h2v1H8v2H7v-2H5V9h2V7h1v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._duplicate_gn5sy_109:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._duplicate_gn5sy_109:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.52.96H10v1.023H1V13.75H.02V2.46c0-.825.674-1.5 1.5-1.5zM3.47 3h7.996C12.291 3 13 3.675 13 4.5v9.987c0 .825-.709 1.5-1.534 1.5H3.47a1.482 1.482 0 01-1.474-1.5V4.5c0-.825.649-1.5 1.474-1.5zm8.54 12V4.023H3V15h9.01zM8 9h2v1H8v2H7v-2H5V9h2V7h1v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._edit_gn5sy_117 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3l-8 8v2h2l8-8zM10.293.707L9 2l2 2 1.293-1.293a1 1 0 000-1.414l-.586-.586a1 1 0 00-1.414 0z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: calc(50% + 1px) calc(50% - 1px);
}
._IconButton_gn5sy_1._edit_gn5sy_117:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._edit_gn5sy_117:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3l-8 8v2h2l8-8zM10.293.707L9 2l2 2 1.293-1.293a1 1 0 000-1.414l-.586-.586a1 1 0 00-1.414 0z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._editLight_gn5sy_126 {
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' fill='%23cecbcb' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3l-8 8v2h2l8-8zM10.293.707L9 2l2 2 1.293-1.293a1 1 0 000-1.414l-.586-.586a1 1 0 00-1.414 0z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._editLight_gn5sy_126:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._editLight_gn5sy_126:active:not(._disabled_gn5sy_10) {
  background-color: var(--icon-button-hover-bg);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3l-8 8v2h2l8-8zM10.293.707L9 2l2 2 1.293-1.293a1 1 0 000-1.414l-.586-.586a1 1 0 00-1.414 0z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._export_gn5sy_136 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='16' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0v2h14V0H0zm0 10h4v6h6v-6h4L7 3l-7 7z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._export_gn5sy_136:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._export_gn5sy_136:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0v2h14V0H0zm0 10h4v6h6v-6h4L7 3l-7 7z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._gear_gn5sy_144 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.47 3.74l-2.402.939-.44-.329a5.84 5.84 0 00-1.342-.758l-.498-.199-.075-.506L10.42.9H7.584l-.368 2.493-.498.2c-.454.18-.9.434-1.352.764l-.437.319-.51-.2-1.885-.736-1.445 2.432 2.049 1.559-.064.495A6.15 6.15 0 003.016 9c0 .228.02.474.058.774l.064.495-.412.314-1.637 1.245 1.445 2.432 2.402-.939.44.329c.424.318.869.57 1.342.758l.498.199.075.506.293 1.987h2.836l.368-2.493.498-.2c.454-.18.9-.434 1.352-.764l.437-.319.51.2 1.885.736 1.445-2.432-2.049-1.559.064-.495c.04-.306.058-.54.058-.774a5.98 5.98 0 00-.058-.774l-.064-.495.412-.314 1.637-1.245L15.47 3.74zm.407 6.142l1.952 1.485a.446.446 0 01.11.576l-1.85 3.114a.456.456 0 01-.564.198l-2.304-.9a7.16 7.16 0 01-1.563.882l-.352 2.385a.447.447 0 01-.453.378H7.152a.447.447 0 01-.454-.378l-.351-2.385a6.808 6.808 0 01-1.564-.882l-2.304.9a.471.471 0 01-.564-.198l-1.85-3.114a.446.446 0 01.11-.576l1.952-1.485A6.946 6.946 0 012.063 9c0-.297.027-.594.064-.882L.175 6.633a.436.436 0 01-.11-.576l1.85-3.114a.457.457 0 01.564-.198l2.304.9a7.16 7.16 0 011.564-.882L6.698.378A.447.447 0 017.152 0h3.7c.232 0 .426.162.454.378l.352 2.385a6.808 6.808 0 011.563.882l2.304-.9a.471.471 0 01.564.198l1.85 3.114a.446.446 0 01-.11.576l-1.952 1.485c.037.288.064.576.064.882 0 .306-.027.594-.064.882zM9.002 11.25c1.253 0 2.285-1.004 2.285-2.25s-1.032-2.25-2.285-2.25C7.749 6.75 6.717 7.754 6.717 9s1.032 2.25 2.285 2.25zm0 .9c-1.786 0-3.238-1.413-3.238-3.15 0-1.737 1.452-3.15 3.238-3.15S12.24 7.263 12.24 9c0 1.737-1.452 3.15-3.238 3.15z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._gear_gn5sy_144:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._gear_gn5sy_144:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.47 3.74l-2.402.939-.44-.329a5.84 5.84 0 00-1.342-.758l-.498-.199-.075-.506L10.42.9H7.584l-.368 2.493-.498.2c-.454.18-.9.434-1.352.764l-.437.319-.51-.2-1.885-.736-1.445 2.432 2.049 1.559-.064.495A6.15 6.15 0 003.016 9c0 .228.02.474.058.774l.064.495-.412.314-1.637 1.245 1.445 2.432 2.402-.939.44.329c.424.318.869.57 1.342.758l.498.199.075.506.293 1.987h2.836l.368-2.493.498-.2c.454-.18.9-.434 1.352-.764l.437-.319.51.2 1.885.736 1.445-2.432-2.049-1.559.064-.495c.04-.306.058-.54.058-.774a5.98 5.98 0 00-.058-.774l-.064-.495.412-.314 1.637-1.245L15.47 3.74zm.407 6.142l1.952 1.485a.446.446 0 01.11.576l-1.85 3.114a.456.456 0 01-.564.198l-2.304-.9a7.16 7.16 0 01-1.563.882l-.352 2.385a.447.447 0 01-.453.378H7.152a.447.447 0 01-.454-.378l-.351-2.385a6.808 6.808 0 01-1.564-.882l-2.304.9a.471.471 0 01-.564-.198l-1.85-3.114a.446.446 0 01.11-.576l1.952-1.485A6.946 6.946 0 012.063 9c0-.297.027-.594.064-.882L.175 6.633a.436.436 0 01-.11-.576l1.85-3.114a.457.457 0 01.564-.198l2.304.9a7.16 7.16 0 011.564-.882L6.698.378A.447.447 0 017.152 0h3.7c.232 0 .426.162.454.378l.352 2.385a6.808 6.808 0 011.563.882l2.304-.9a.471.471 0 01.564.198l1.85 3.114a.446.446 0 01-.11.576l-1.952 1.485c.037.288.064.576.064.882 0 .306-.027.594-.064.882zM9.002 11.25c1.253 0 2.285-1.004 2.285-2.25s-1.032-2.25-2.285-2.25C7.749 6.75 6.717 7.754 6.717 9s1.032 2.25 2.285 2.25zm0 .9c-1.786 0-3.238-1.413-3.238-3.15 0-1.737 1.452-3.15 3.238-3.15S12.24 7.263 12.24 9c0 1.737-1.452 3.15-3.238 3.15z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._leave_gn5sy_152 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='17' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11H6v3h6v3H0v-6.872C0 8.401 1.356 7 3.03 7h5.94C10.645 7 12 8.4 12 10.128V11zm6 1.5L14.023 16v-2.105H12v-2.85h2.023V9L18 12.5zM6 6a3 3 0 110-6 3 3 0 010 6z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: calc(50% - -2px) calc(50% - 2px);
}
._IconButton_gn5sy_1._leave_gn5sy_152:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._leave_gn5sy_152:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='17' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11H6v3h6v3H0v-6.872C0 8.401 1.356 7 3.03 7h5.94C10.645 7 12 8.4 12 10.128V11zm6 1.5L14.023 16v-2.105H12v-2.85h2.023V9L18 12.5zM6 6a3 3 0 110-6 3 3 0 010 6z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._pause_gn5sy_161 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='10' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0h2v10H6V0zM0 0h2v10H0V0z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._pause_gn5sy_161:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._pause_gn5sy_161:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0h2v10H6V0zM0 0h2v10H0V0z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._pin_gn5sy_169 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23606060' viewBox='0 0 500 500'%3E%3Cpath class='st0' d='M832.7 83.7c-9.8 33.9-14.3 65.7-5.6 108 3.8 18.3 9.6 37 18 57.2.3.8 1 2.4 1.7 4.4 9.2 23.5 14.6 35.4 18.1 41.4h-87.8v104.5l-9.7 35.6-11.2-35.6V294.7h-87.8c3.5-6 8.9-17.9 18.1-41.4.8-2 1.4-3.6 1.7-4.4 8.3-20.2 14.2-38.9 18-57.2 6.3-30.9 7.8-61.2-5.6-108h132.1m4-3h-140c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.6 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.4c-4.6 0-21.1-43.7-23.6-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.5-41-4.9-72 6.5-110.4zm34.9 217zm-209.7 0z'/%3E%3Cpath class='st1' d='M-212.8 83.7c-9.8 33.9-14.3 65.7-5.6 108 3.8 18.3 9.6 37 18 57.2.3.8 1 2.4 1.7 4.4 9.2 23.5 14.6 35.4 18.1 41.4h-87.8v104.5l-9.7 35.6-11.2-35.6V294.7h-87.8c3.5-6 8.9-17.9 18.1-41.4.8-2 1.4-3.6 1.7-4.4 8.3-20.2 14.2-38.9 18-57.2 6.3-30.9 7.8-61.2-5.6-108h132.1m4-3h-140c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.6 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.4c-4.6 0-21.1-43.7-23.6-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.5-41-4.9-72 6.5-110.4zm34.9 217zm-209.7 0z'/%3E%3Cpath class='st0' d='M354.8 297.7c-4.6 0-21.1-43.7-23.7-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.4-41-4.8-71.9 6.6-110.3H180c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.7 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.4z'/%3E%3Cpath class='st1' d='M-695.4 297.7c-4.6 0-21.1-43.7-23.7-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.4-41-4.8-71.9 6.6-110.3h-140c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.7 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.5z'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._pin_gn5sy_169:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._pin_gn5sy_169:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 500 500'%3E%3Cpath class='st0' d='M832.7 83.7c-9.8 33.9-14.3 65.7-5.6 108 3.8 18.3 9.6 37 18 57.2.3.8 1 2.4 1.7 4.4 9.2 23.5 14.6 35.4 18.1 41.4h-87.8v104.5l-9.7 35.6-11.2-35.6V294.7h-87.8c3.5-6 8.9-17.9 18.1-41.4.8-2 1.4-3.6 1.7-4.4 8.3-20.2 14.2-38.9 18-57.2 6.3-30.9 7.8-61.2-5.6-108h132.1m4-3h-140c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.6 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.4c-4.6 0-21.1-43.7-23.6-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.5-41-4.9-72 6.5-110.4zm34.9 217zm-209.7 0z'/%3E%3Cpath class='st1' d='M-212.8 83.7c-9.8 33.9-14.3 65.7-5.6 108 3.8 18.3 9.6 37 18 57.2.3.8 1 2.4 1.7 4.4 9.2 23.5 14.6 35.4 18.1 41.4h-87.8v104.5l-9.7 35.6-11.2-35.6V294.7h-87.8c3.5-6 8.9-17.9 18.1-41.4.8-2 1.4-3.6 1.7-4.4 8.3-20.2 14.2-38.9 18-57.2 6.3-30.9 7.8-61.2-5.6-108h132.1m4-3h-140c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.6 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.4c-4.6 0-21.1-43.7-23.6-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.5-41-4.9-72 6.5-110.4zm34.9 217zm-209.7 0z'/%3E%3Cpath class='st0' d='M354.8 297.7c-4.6 0-21.1-43.7-23.7-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.4-41-4.8-71.9 6.6-110.3H180c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.7 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.4z'/%3E%3Cpath class='st1' d='M-695.4 297.7c-4.6 0-21.1-43.7-23.7-49.9-7.6-18.3-13.8-37.2-17.8-56.7-8.4-41-4.8-71.9 6.6-110.3h-140c11.4 38.4 15.1 69.4 6.6 110.3-4 19.5-10.2 38.3-17.8 56.7-2.5 6.2-19 49.9-23.7 49.9h91.4v101.9l13.1 41.7h2.4l11.4-41.7V297.7h91.5z'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._pipeline_gn5sy_177 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12v2.5a1.5 1.5 0 103 0v-5a3.5 3.5 0 117 0V12h-2V9.5a1.5 1.5 0 10-3 0v5a3.5 3.5 0 11-7 0V12h2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._pipeline_gn5sy_177:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._pipeline_gn5sy_177:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12v2.5a1.5 1.5 0 103 0v-5a3.5 3.5 0 117 0V12h-2V9.5a1.5 1.5 0 10-3 0v5a3.5 3.5 0 11-7 0V12h2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._query_gn5sy_185 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/query-705feae9.svg');
}

._IconButton_gn5sy_1._query_gn5sy_185:hover:not(._disabled_gn5sy_10) {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/query-hover-0f332ba6.svg');
}

._IconButton_gn5sy_1._query_gn5sy_185:active:not(._disabled_gn5sy_10) {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/query-active-a306402e.svg');
}

._IconButton_gn5sy_1._reload_gn5sy_197 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='16' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 4l-4 4h3c0 3.31-2.69 6-6 6a5.87 5.87 0 01-2.8-.7l-1.46 1.46A7.93 7.93 0 0011 16c4.42 0 8-3.58 8-8h3l-4-4zM5 8c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0011 0C6.58 0 3 3.58 3 8H0l4 4 4-4H5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._reload_gn5sy_197:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._reload_gn5sy_197:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 4l-4 4h3c0 3.31-2.69 6-6 6a5.87 5.87 0 01-2.8-.7l-1.46 1.46A7.93 7.93 0 0011 16c4.42 0 8-3.58 8-8h3l-4-4zM5 8c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0011 0C6.58 0 3 3.58 3 8H0l4 4 4-4H5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._reorder_gn5sy_205 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23ECECEC' cx='12' cy='12' r='12'/%3E%3Cpath d='M17 15l-5 6-5-6h10zm5-4v2H2v-2h20zM12 3l5 6H7l5-6z' fill='gray'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 20px 20px;
}
._IconButton_gn5sy_1._reorder_gn5sy_205:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._reorder_gn5sy_205:active:not(._disabled_gn5sy_10) {
  cursor: move;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23ECECEC' cx='12' cy='12' r='12'/%3E%3Cpath d='M17 15l-5 6-5-6h10zm5-4v2H2v-2h20zM12 3l5 6H7l5-6z' fill='gray'/%3E%3C/g%3E%3C/svg%3E");
  background-color: transparent;
  background-size: 20px 20px;
}

._IconButton_gn5sy_1._resume_gn5sy_217 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l10 5-10 5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._resume_gn5sy_217:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._resume_gn5sy_217:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l10 5-10 5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._revert_gn5sy_225 {
  background-position-y: 5px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='13' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L0 4l5-4v3h4a5 5 0 010 10H5v-2h4a3 3 0 00.176-5.995L5 5v3z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._revert_gn5sy_225:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._revert_gn5sy_225:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L0 4l5-4v3h4a5 5 0 010 10H5v-2h4a3 3 0 00.176-5.995L5 5v3z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._reply_gn5sy_234 {
  background-position-y: 5px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.707 10.293a1 1 0 01.083 1.32l-.083.094a1 1 0 01-1.32.083l-.094-.083-5-5a1.007 1.007 0 01-.107-.127l-.061-.096-.054-.113-.035-.105-.025-.118-.007-.058L0 6l.003-.075.017-.126.03-.111.044-.111.053-.099.063-.09.083-.095 5-5a1 1 0 011.497 1.32l-.083.094L3.415 5 9.039 5c3.464 0 5.19 2.19 4.935 6.065a1 1 0 11-1.995-.13c.177-2.708-.663-3.864-2.741-3.932L9.039 7l-5.624-.001 3.292 3.294z'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._reply_gn5sy_234:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._reply_gn5sy_234:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.707 10.293a1 1 0 01.083 1.32l-.083.094a1 1 0 01-1.32.083l-.094-.083-5-5a1.007 1.007 0 01-.107-.127l-.061-.096-.054-.113-.035-.105-.025-.118-.007-.058L0 6l.003-.075.017-.126.03-.111.044-.111.053-.099.063-.09.083-.095 5-5a1 1 0 011.497 1.32l-.083.094L3.415 5 9.039 5c3.464 0 5.19 2.19 4.935 6.065a1 1 0 11-1.995-.13c.177-2.708-.663-3.864-2.741-3.932L9.039 7l-5.624-.001 3.292 3.294z'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._resolve_gn5sy_243,
._IconButton_gn5sy_1._resolve-readonly_gn5sy_244 {
  background-position-y: 7px;
  background-position-x: 6px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23ccc' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.556 0L13 1.314 4.59 11 0 6.302l1.366-1.399 3.14 3.214z'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._resolve_gn5sy_243:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._resolve_gn5sy_243:active:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._resolve-readonly_gn5sy_244._active_gn5sy_57:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._resolve_gn5sy_243._active_gn5sy_57:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.556 0L13 1.314 4.59 11 0 6.302l1.366-1.399 3.14 3.214z'/%3E%3C/svg%3E");
  background-color: #25b81d;
}
._IconButton_gn5sy_1._resolve_gn5sy_243._active_gn5sy_57:not(._disabled_gn5sy_10) {
  background-color: var(--icon-button-hover-bg);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.556 0L13 1.314 4.59 11 0 6.302l1.366-1.399 3.14 3.214z'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._save_gn5sy_261 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='14' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.556 13h10.888c.485 0 .556-.07.556-.556V3.525L10.475 1h-8.92C1.072 1 1 1.07 1 1.556v10.823c.071.51.194.621.556.621zM0 12.444V1.556C0 .519.519 0 1.556 0h9.333L14 3.111v9.333C14 13.481 13.481 14 12.444 14H1.556C.648 14 .13 13.481 0 12.444zM3 3v1h6V3H3zM2 2h8v3H2V2zm5.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm0 1a2.5 2.5 0 110-5 2.5 2.5 0 010 5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._save_gn5sy_261:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._save_gn5sy_261:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='14' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.556 13h10.888c.485 0 .556-.07.556-.556V3.525L10.475 1h-8.92C1.072 1 1 1.07 1 1.556v10.823c.071.51.194.621.556.621zM0 12.444V1.556C0 .519.519 0 1.556 0h9.333L14 3.111v9.333C14 13.481 13.481 14 12.444 14H1.556C.648 14 .13 13.481 0 12.444zM3 3v1h6V3H3zM2 2h8v3H2V2zm5.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm0 1a2.5 2.5 0 110-5 2.5 2.5 0 010 5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._share_gn5sy_269 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='16' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.75 11.06c-.57 0-1.08.225-1.47.577L4.932 8.525C4.97 8.352 5 8.18 5 8c0-.18-.03-.352-.068-.525l5.288-3.082A2.24 2.24 0 0011.75 5 2.247 2.247 0 0014 2.75 2.247 2.247 0 0011.75.5 2.247 2.247 0 009.5 2.75c0 .18.03.353.068.525L4.28 6.358a2.24 2.24 0 00-1.53-.608A2.247 2.247 0 00.5 8a2.247 2.247 0 002.25 2.25 2.24 2.24 0 001.53-.607l5.34 3.12c-.037.157-.06.322-.06.487 0 1.207.982 2.19 2.19 2.19 1.207 0 2.19-.982 2.19-2.19 0-1.207-.982-2.19-2.19-2.19z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: calc(50% - 1px) 50%;
}
._IconButton_gn5sy_1._share_gn5sy_269:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._share_gn5sy_269:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.75 11.06c-.57 0-1.08.225-1.47.577L4.932 8.525C4.97 8.352 5 8.18 5 8c0-.18-.03-.352-.068-.525l5.288-3.082A2.24 2.24 0 0011.75 5 2.247 2.247 0 0014 2.75 2.247 2.247 0 0011.75.5 2.247 2.247 0 009.5 2.75c0 .18.03.353.068.525L4.28 6.358a2.24 2.24 0 00-1.53-.608A2.247 2.247 0 00.5 8a2.247 2.247 0 002.25 2.25 2.24 2.24 0 001.53-.607l5.34 3.12c-.037.157-.06.322-.06.487 0 1.207.982 2.19 2.19 2.19 1.207 0 2.19-.982 2.19-2.19 0-1.207-.982-2.19-2.19-2.19z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._stop_gn5sy_278 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23606060' viewBox='0 0 6.09 6.09'%3E%3Cpath d='M0 0h6.09v6.09H0z'/%3E%3C/svg%3E");
  background-size: 50%;
}
._IconButton_gn5sy_1._stop_gn5sy_278:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._stop_gn5sy_278:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 6.09 6.09'%3E%3Cpath d='M0 0h6.09v6.09H0z'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._table_gn5sy_287 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 6V4H6v2h4zm0 1H6v2h4V7zM5 7H1V6h4V4H1V3h4V1H1v8h4V7zm6 0v2h4V1h-4v2h4v1h-4v2h4v1h-4zm-1-4V1H6v2h4zM0 0h16v10H0V0z'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._table_gn5sy_287:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._table_gn5sy_287:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 6V4H6v2h4zm0 1H6v2h4V7zM5 7H1V6h4V4H1V3h4V1H1v8h4V7zm6 0v2h4V1h-4v2h4v1h-4v2h4v1h-4zm-1-4V1H6v2h4zM0 0h16v10H0V0z'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._tag_gn5sy_295 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='19' height='19' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M10.314 0L.707 9.607 0 14.556l4.243 4.243 4.95-.707 9.606-9.607L10.314 0zM1.06 14.203l.59-4.125 8.664-8.663 7.07 7.07-8.663 8.664-4.125.59-3.536-3.536z'/%3E%3Cpath d='M5.339 14.96a1 1 0 11-2 0 1 1 0 012 0'/%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(50% + 1px) calc(50% - 1px);
}
._IconButton_gn5sy_1._tag_gn5sy_295:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._tag_gn5sy_295:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='19' height='19' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M10.314 0L.707 9.607 0 14.556l4.243 4.243 4.95-.707 9.606-9.607L10.314 0zM1.06 14.203l.59-4.125 8.664-8.663 7.07 7.07-8.663 8.664-4.125.59-3.536-3.536z'/%3E%3Cpath d='M5.339 14.96a1 1 0 11-2 0 1 1 0 012 0'/%3E%3C/g%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._trash_gn5sy_304 {
  background-position-x: 6px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='18' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 16c0 .548.452 1 1 1h6c.548 0 1-.452 1.003-1.083L10.913 5H1.086L2 16zm1 2c-1.1 0-2-.9-2-2L0 4h12l-1 12c0 1.1-.9 2-2 2H3zM9.5 1.993h2.51v.92H.02v-.92H2.5l1-1h5l1 1z'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._trash_gn5sy_304:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._trash_gn5sy_304:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='18' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 16c0 .548.452 1 1 1h6c.548 0 1-.452 1.003-1.083L10.913 5H1.086L2 16zm1 2c-1.1 0-2-.9-2-2L0 4h12l-1 12c0 1.1-.9 2-2 2H3zM9.5 1.993h2.51v.92H.02v-.92H2.5l1-1h5l1 1z'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._upload_gn5sy_313 {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='14' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6V0h2v6h2l-3 5-3-5zm-6 8v-2h14v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._upload_gn5sy_313:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._upload_gn5sy_313:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='14' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6V0h2v6h2l-3 5-3-5zm-6 8v-2h14v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._user_gn5sy_322 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.831 14.438a9 9 0 10-15.663 0C2.684 12.92 4.549 12 10 12c5.453 0 7.317.92 7.831 2.438zM9.994 20C4.474 19.997 0 15.52 0 10 0 4.477 4.477 0 10 0s10 4.477 10 10c0 5.52-4.474 9.997-9.994 10a10.401 10.401 0 01-.012 0zM10 10a3 3 0 100-6 3 3 0 000 6zm0 1a4 4 0 110-8 4 4 0 010 8zm0 2c-5.426 0-6.91.715-6.996 2.449a4 4 0 00.313.427 8.43 8.43 0 001.409 1.321C6.225 18.323 8.016 19 10 19c1.983 0 3.775-.677 5.274-1.803a8.43 8.43 0 001.409-1.32c.136-.166.244-.314.313-.428C16.909 13.715 15.426 13 10 13zm-7 2.598v-.033a9.197 9.197 0 010 .033z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._IconButton_gn5sy_1._user_gn5sy_322:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._user_gn5sy_322:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.831 14.438a9 9 0 10-15.663 0C2.684 12.92 4.549 12 10 12c5.453 0 7.317.92 7.831 2.438zM9.994 20C4.474 19.997 0 15.52 0 10 0 4.477 4.477 0 10 0s10 4.477 10 10c0 5.52-4.474 9.997-9.994 10a10.401 10.401 0 01-.012 0zM10 10a3 3 0 100-6 3 3 0 000 6zm0 1a4 4 0 110-8 4 4 0 010 8zm0 2c-5.426 0-6.91.715-6.996 2.449a4 4 0 00.313.427 8.43 8.43 0 001.409 1.321C6.225 18.323 8.016 19 10 19c1.983 0 3.775-.677 5.274-1.803a8.43 8.43 0 001.409-1.32c.136-.166.244-.314.313-.428C16.909 13.715 15.426 13 10 13zm-7 2.598v-.033a9.197 9.197 0 010 .033z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._add_gn5sy_330 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' stroke='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5.5v12m-6-6h12' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._add_gn5sy_330:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._add_gn5sy_330:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' stroke='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5.5v12m-6-6h12' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._diff_gn5sy_339 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' stroke='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3v3h5a2 2 0 011.995 1.85L20 8v8a2 2 0 01-1.85 1.995L18 18h-5v3h-2v-3H6a1 1 0 01-1-1V7a1 1 0 011-1h5V3h2zm5 5h-5v8h5V8z' stroke='transparent'/%3E%3C/svg%3E");
}

._IconButton_gn5sy_1._diff_gn5sy_339:hover:not(._disabled_gn5sy_10),
._IconButton_gn5sy_1._diff_gn5sy_339:active:not(._disabled_gn5sy_10) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3v3h5a2 2 0 011.995 1.85L20 8v8a2 2 0 01-1.85 1.995L18 18h-5v3h-2v-3H6a1 1 0 01-1-1V7a1 1 0 011-1h5V3h2zm5 5h-5v8h5V8z' stroke='transparent'/%3E%3C/svg%3E");
}
._inputY_1qay1_1 ._arrow_1qay1_1 {
  display: var(--dropdown-arrow-display, inline-block);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='8' xmlns='http://www.w3.org/2000/svg' fill='%23ccc'%3E%3Cpath d='M11.473 0L6.5 4.945 1.527 0 0 1.522 6.5 8 13 1.522z' fill-rule='evenodd'/%3E%3C/svg%3E")
    no-repeat center;
}

._inputY_1qay1_1:hover ._arrow_1qay1_1 {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='8' xmlns='http://www.w3.org/2000/svg' fill='gray'%3E%3Cpath d='M11.473 0L6.5 4.945 1.527 0 0 1.522 6.5 8 13 1.522z' fill-rule='evenodd'/%3E%3C/svg%3E")
    no-repeat center;
}

/*---- General properties --------*/
._inputY_1qay1_1 {
  --default-button-padding: 4px 0 3px 8px;
  display: flex;
  align-items: baseline;
  font-size: var(--inputy-font-size, var(--font-l));
  position: relative;
  white-space: var(--input-white-space);
}

._inputY_1qay1_1._inline_1qay1_24 {
  display: inline-flex;
}

._inputY_1qay1_1._column_1qay1_28 {
  flex-direction: column;
  align-items: flex-start; /* Needed by IE */
}

._inputY_1qay1_1 label {
  color: var(--color-text-black);
  font-size: var(--font-m);
}

._focused_1qay1_38 label {
  color: #000;
}

label ._error_1qay1_42 {
  color: red;
  margin-left: 8px;
}

label._above_1qay1_47 {
  display: block;
  font-size: var(--font-s);
  align-self: flex-start; /* IE 11 needs this to position the label correctly */
}

label._left_1qay1_53 {
  display: inline-block;
  margin-right: 8px;
}

label._right_1qay1_58 {
  display: inline-block;
  margin-left: 8px;
}

/*---- Properties common for all types ----*/
input,
._textarea_1qay1_65,
._select_1qay1_66 ._button_1qay1_66 {
  border: var(--light-border);
  outline: none;
  padding: var(--input-select-button-padding);
}

._inputY_1qay1_1._disabled_1qay1_72 input,
._inputY_1qay1_1._disabled_1qay1_72 ._textarea_1qay1_65,
._inputY_1qay1_1._disabled_1qay1_72 ._select_1qay1_66 ._button_1qay1_66,
._inputY_1qay1_1._disabled_1qay1_72:hover input,
._inputY_1qay1_1._disabled_1qay1_72:hover ._textarea_1qay1_65,
._inputY_1qay1_1._disabled_1qay1_72:hover ._select_1qay1_66 ._button_1qay1_66 {
  background-color: var(--input-bg-disabled, #e4e6e6);
  border-color: transparent;
  cursor: default;
}

/*---- Checkbox & Switch ------------------*/
._toggle_1qay1_84 {
  display: flex;
  align-items: center;
  font-size: var(--font-m);
  cursor: pointer;
}

._toggle_1qay1_84 label {
  display: inline-block;
  font-size: var(--font-m);
}

._toggle_1qay1_84 label._left_1qay1_53 {
  margin-right: 12px;
}

._toggle_1qay1_84 label._right_1qay1_58 {
  margin-left: 12px;
}

._checkboxControl_1qay1_104 {
  display: inline-block;
  position: relative;
  top: -1px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: white no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/unchecked-52ca50f8.svg');
}

._toggle_1qay1_84._disabled_1qay1_72 ._checkboxControl_1qay1_104 {
  cursor: not-allowed;
  background: #e4e6e6 no-repeat center;
}

._toggle_1qay1_84._selected_1qay1_121 ._checkboxControl_1qay1_104 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/checked-9fa1312d.svg');
}

._toggle_1qay1_84._selected_1qay1_121._disabled_1qay1_72 ._checkboxControl_1qay1_104 {
  cursor: not-allowed;
  background: #e4e6e6 no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/checked-9fa1312d.svg');
}

._switchControl_1qay1_131 {
  top: -1px;
  cursor: pointer;
  display: inline-flex;
  width: 33px;
  height: 22px;
  border-radius: 14px;
  background-color: #a0a0a0;
  align-items: center;
  padding: 0 5px;
  transition: background-color 0.3s;
}

._switchControl_1qay1_131:before {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: white;
  transform-origin: left;
  transition: transform 0.25s ease-in;
  box-shadow: 0px 1px 1px 0.5px rgba(0, 0, 0, 0.365);
}

._toggle_1qay1_84._disabled_1qay1_72 ._switchControl_1qay1_131 {
  background: var(--input-toggle-disabled-bg, #dddddd);
  cursor: not-allowed;
}

._toggle_1qay1_84._selected_1qay1_121 ._switchControl_1qay1_131 {
  background: var(--input-toggle-selected-bg, #25b81d);
}

._toggle_1qay1_84._selected_1qay1_121._disabled_1qay1_72 ._switchControl_1qay1_131 {
  background: var(--input-toggle-selectedDisabled-bg, #dddddd);
  cursor: not-allowed;
}

._toggle_1qay1_84._selected_1qay1_121 ._switchControl_1qay1_131:before {
  transform: translateX(10px);
}

/*---- Input ---------------------*/
._inputY_1qay1_1 input {
  display: inline-block;
  flex: 1 2;
  padding: var(--input-text-padding, 2px 12px);
}

._inputY_1qay1_1._column_1qay1_28 input {
  width: 100%;
}

._inputY_1qay1_1._borderless_1qay1_185 input {
  border: none;
}

._inputY_1qay1_1:hover input {
  border-color: var(--inputy-input-focus-border-color, #ccc);
}

._inputY_1qay1_1._focused_1qay1_38 input,
._inputY_1qay1_1._focused_1qay1_38:hover input {
  border: 1px solid var(--inputy-input-focus-border-color, #888);
  box-shadow: 0 0 3px 0
    var(--inputy-input-focus-border-color, rgba(0, 0, 0, 0.4)) inset;
}

._inputY_1qay1_1 input::placeholder {
  font-weight: 300;
  font-size: 16px;
}

._inputY_1qay1_1 input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 16px;
}

._inputY_1qay1_1 input:-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
}

._inputY_1qay1_1 input::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
}

._inputY_1qay1_1 input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
}

._inputY_1qay1_1 input:required::placeholder {
  font-style: italic;
}

._inputY_1qay1_1 input:required::-webkit-input-placeholder {
  font-style: italic;
}

._inputY_1qay1_1 input:required:-moz-placeholder {
  font-style: italic;
}

._inputY_1qay1_1 input:required::-moz-placeholder {
  font-style: italic;
}

._inputY_1qay1_1 input:required:-ms-input-placeholder {
  font-style: italic;
}

/*---- Text --------------------*/
._inputY_1qay1_1 input[type='text'] {
  flex: 1 1 auto;
  text-align: var(--input-text-align, inherit);
  height: var(--input-height, 32px);
  font-size: var(--font-m);
  border-radius: var(--input-text-border-radius, 0);
}

._inputY_1qay1_1._clickToEdit_1qay1_254 input[type='text'] {
  background: transparent;
  border: none;
  padding: 2px 0;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 input[type='text']:focus {
  background: #fff;
  border: var(--light-border);
  padding: 2px 12px;
}

._inputY_1qay1_1 input[type='text']._invalid_1qay1_266 {
  border: 2px solid rgba(204, 34, 34, 0.7) !important;
}

._revealPasswordIcon_1qay1_270 {
  position: absolute;
  right: 6px;
  bottom: 0;
  transform: translateY(-35%);
}

._showPassword_1qay1_277 {
  width: 22px;
  height: 18px;
  background: no-repeat center
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='16' xmlns='http://www.w3.org/2000/svg' fill='gray'%3E%3Cpath d='M11 .5c5 0 9.27 3.11 11 7.5-1.73 4.39-6 7.5-11 7.5S1.73 12.39 0 8C1.73 3.61 6 .5 11 .5zM11 13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0-8c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._hidePassword_1qay1_284 {
  width: 22px;
  height: 19px;
  background: no-repeat center
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='19' xmlns='http://www.w3.org/2000/svg' fill='gray'%3E%3Cpath d='M11 4c-.65 0-1.26.13-1.83.36L7.01 2.2c1.24-.45 2.58-.7 3.98-.7 5 0 9.27 3.11 11 7.5-.73 1.86-1.92 3.49-3.43 4.75l-2.92-2.92c.23-.57.36-1.18.36-1.83 0-2.76-2.24-5-5-5zM1 1.27L2.27 0 20 17.73 18.73 19l-2.93-2.92-.42-.42c-1.35.54-2.83.84-4.38.84-5 0-9.27-3.11-11-7.5.78-1.98 2.08-3.7 3.74-4.99L1 1.27zM6.53 6.8C6.2 7.47 6 8.21 6 9c0 2.76 2.24 5 5 5 .79 0 1.53-.2 2.2-.53l-1.55-1.55c-.21.05-.43.08-.65.08-1.66 0-3-1.34-3-3 0-.22.03-.44.08-.65L6.53 6.8zm4.31-.78l.17-.01c1.66 0 3 1.34 3 3l-.02.16-3.15-3.15z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/*---- Number --------------------*/
._inputY_1qay1_1 input[type='number'] {
  flex: 1 1 auto;
  padding-right: 0;
  height: var(--input-number-height, 32px);
  font-size: var(--font-m);
  border: var(--input-select-button-border, 1px solid #d6d6d6);
  border-radius: var(--input-number-border-radius, 0);
}

._inputY_1qay1_1._clickToEdit_1qay1_254 input[type='number'] {
  background: transparent;
  border: none;
  padding: 2px 0;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 input[type='number']:focus {
  background: #fff;
  border: var(--light-border);
  padding: 2px 12px;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 input[type='number']:not(:focus)::-webkit-inner-spin-button,
._inputY_1qay1_1._clickToEdit_1qay1_254
  input[type='number']:not(:focus)::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*---- Textarea ------------------*/
._textarea_1qay1_65 {
  display: block;
  position: relative;
  width: 100%;
  height: var(--textarea-height, 100%) !important;
  background: white;
  max-height: var(--textarea-max-height, none);
}

._inputY_1qay1_1:hover ._textarea_1qay1_65 {
  border-color: var(--textarea-border-hover, rgba(0, 0, 0, 0.365));
}

._inputY_1qay1_1._focused_1qay1_38 ._textarea_1qay1_65,
._inputY_1qay1_1._focused_1qay1_38:hover ._textarea_1qay1_65 {
  border-color: var(--textarea-border-focus, var(--color-dark-border));
}

._textarea_1qay1_65 textarea {
  background: transparent;
  border-style: var(--textarea-border-style, none);
  box-sizing: border-box;
  outline: none;
  overflow: hidden;
  padding: 3px 9px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  resize: none;
  width: 100%;
  height: 100%;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-text-black);
  border-color: var(--textarea-border-normal, transparent);
}

._textarea_1qay1_65 ._mirror_1qay1_360 {
  margin: 0;
  padding: var(--textarea-mirror-padding, 3px 9px 30px 9px);
  visibility: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
}

._inputY_1qay1_1._disabled_1qay1_72 ._textarea_1qay1_65 ._mirror_1qay1_360 {
  padding-bottom: 3px;
}

._textarea_1qay1_65 ._placeholder_1qay1_372 {
  color: var(--color-text-gray);
  font-weight: 300;
  position: absolute;
  top: 3px;
  left: 6px;
  font-size: 16px;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 ._textarea_1qay1_65 {
  background: transparent;
  border: none;
  padding: 2px 0;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 ._clickToEditText_1qay1_387 {
  position: absolute;
  top: 3px;
  cursor: pointer;
  white-space: pre-wrap;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 ._pencil_1qay1_394 {
  display: none;
  margin-left: 0.5em;
  font-size: 90%;
  color: #ccc;
}

._inputY_1qay1_1._clickToEdit_1qay1_254:hover ._pencil_1qay1_394 {
  display: initial;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 textarea {
  padding: 3px 0;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 textarea:focus {
  background: #fff;
  border: var(--light-border);
  padding: 3px 9px !important;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 ._textarea_1qay1_65 ._placeholder_1qay1_372 {
  color: #818181;
  font-weight: 300;
  position: absolute;
  top: 3px;
  left: 0;
  cursor: pointer;
  font-size: 16px;
}

._inputY_1qay1_1._clickToEdit_1qay1_254 ._textarea_1qay1_65 ._mirror_1qay1_360 {
  padding: 3px 9px 3px 9px;
}

._inputY_1qay1_1._clickToEdit_1qay1_254._focused_1qay1_38 ._textarea_1qay1_65 ._mirror_1qay1_360 {
  padding: 3px 9px 30px 9px;
}

/*---- CodeMirror ------------------*/
.CodeMirror {
  width: 100%;
  min-height: 32px;
  height: auto;
  background: #fff;
  border: var(--light-border);
  font-family: Consolas, monospace;
  font-size: var(--font-s);
}

.CodeMirror-sizer {
  top: 2px;
}

._inputY_1qay1_1._disabled_1qay1_72 .CodeMirror {
  background: var(--color-bg-level2);
}

._inputY_1qay1_1:hover:not(._disabled_1qay1_72) .CodeMirror {
  border-color: rgba(0, 0, 0, 0.365);
}

._inputY_1qay1_1._focused_1qay1_38:not(._disabled_1qay1_72) .CodeMirror,
._inputY_1qay1_1._focused_1qay1_38:hover:not(._disabled_1qay1_72) .CodeMirror {
  border-color: var(--color-dark-border);
}

.CodeMirror-placeholder {
  color: #ccc !important;
}

.CodeMirror-hints {
  z-index: 21000 !important;
}

._inputY_1qay1_1._disabled_1qay1_72 .CodeMirror,
._inputY_1qay1_1._disabled_1qay1_72 .CodeMirror-lines {
  cursor: default;
}

.CodeMirror-merge {
  position: relative;
  border: 1px solid #ddd;
  background: #f7f7f7;
  white-space: pre;
}

.CodeMirror-merge-2pane .CodeMirror-merge-pane {
  width: 47%;
  min-width: 47%;
}

.CodeMirror-merge-pane {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
}

.CodeMirror-merge-2pane .CodeMirror-merge-gap {
  width: 6%;
}

.CodeMirror-merge-gap {
  z-index: 2;
  display: inline-block;
  height: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  position: relative;
  background: #f8f8f8;
}

.CodeMirror-merge-l-deleted {
  background-color: #f1a6a6;
}

.CodeMirror-merge-l-inserted {
  background-color: #a6f1a6;
}

.CodeMirror-AutocompleteError {
  pointer-events: none;
}

/*---- Select --------------------*/
._select_1qay1_66 {
  display: inline-block;
  position: relative;
  font-size: var(--font-m);
}

._inputY_1qay1_1._column_1qay1_28 ._select_1qay1_66 {
  display: block;
}

._select_1qay1_66 ._button_1qay1_66 {
  display: flex;
  height: var(--input-select-button-height, 32px);
  padding: var(--input-select-button-padding, var(--default-button-padding));
  border: var(--input-select-button-border, var(--light-border));
  border-radius: var(--input-select-button-border-radius, 0);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: border-color 0.3s;
  min-width: var(--input-select-button-minwidth, initial);
}

._disabled_1qay1_72 ._select_1qay1_66 ._button_1qay1_66 {
  padding: var(--input-select-disabled-button-padding, 8px);
}

._select_1qay1_66 ._button_1qay1_66:hover {
  border-color: rgba(0, 0, 0, 0.365);
}

._inputY_1qay1_1._borderless_1qay1_185 ._select_1qay1_66 ._button_1qay1_66 {
  background: transparent;
  border: none;
  padding: 3px 0;
}

._inputY_1qay1_1._focused_1qay1_38 ._select_1qay1_66 ._button_1qay1_66,
._inputY_1qay1_1._focused_1qay1_38 ._select_1qay1_66 ._button_1qay1_66:hover {
  border-color: var(--color-dark-border);
  border-bottom: var(
    --input-select-button-focus-border-bottom,
    var(--input-select-button-border, 1px solid var(--color-dark-border))
  );
  border-bottom-left-radius: var(
    --input-select-button-focus-border-radius,
    var(--input-select-button-border-radius, 0)
  );
  border-bottom-right-radius: var(
    --input-select-button-focus-border-radius,
    var(--input-select-button-border-radius, 0)
  );
  box-shadow: var(--input-dropdown-box-shadow);
}

._select_1qay1_66._invalid_1qay1_266 ._button_1qay1_66 {
  background: rgba(204, 34, 34, 0.04);
  border: 2px solid rgba(204, 34, 34, 0.7);
}

._inputY_1qay1_1._borderless_1qay1_185 ._select_1qay1_66._invalid_1qay1_266 ._button_1qay1_66 {
  color: #fff;
  background: rgba(204, 34, 34, 0.7);
}

._dropdown_1qay1_589 {
  display: block;
  width: var(--input-dropdown-width);
  box-shadow: var(
    --input-dropdown-box-shadow,
    2px 3px 4px 0 rgba(0, 0, 0, 0.25)
  );
  padding: var(--dropdown-padding, 4px 0);
  background: var(--color-bg-dropdown);
  font-size: var(--font-m);
  overflow-y: var(--input-dropdown-overflow-y, auto);
  border-top: var(--input-dropdown-border-top, 1px solid #666);
  border-right: var(--input-dropdown-border-right, 1px solid #666);
  border-bottom: var(--input-dropdown-border-bottom, 1px solid #666);
  border-left: var(--input-dropdown-border-left, 1px solid #666);
  border-top-left-radius: var(
    --input-dropdown-border-top-radius,
    var(--input-dropdown-border-radius, 3px)
  );
  border-top-right-radius: var(
    --input-dropdown-border-top-radius,
    var(--input-dropdown-border-radius, 3px)
  );
  border-bottom-left-radius: var(--input-dropdown-border-radius, 3px);
  border-bottom-right-radius: var(--input-dropdown-border-radius, 3px);
  border-color: var(--input-dropdown-border-color);
  top: var(--input-dropdown-top);
  right: var(--input-dropdown-right);
  position: var(--input-dropdown-position, unset);
}

._dropdown_1qay1_589 ._dd-item_1qay1_620 {
  padding: var(--dropdown-item-padding, 0 8px);
  position: relative;
  color: var(--color-text-black);
  line-height: var(--dropdown-item-line-height, 24px);
  height: var(--input-dropdown-item-height);
}

._dropdown_1qay1_589 ._dd-item_1qay1_620._selected_1qay1_121 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

._dropdown_1qay1_589 ._dd-item_1qay1_620:hover,
._dropdown_1qay1_589 ._dd-item_1qay1_620:active {
  color: var(--color-bg-dropdown);
  cursor: default;
}

._dropdown_1qay1_589 ._dd-item_1qay1_620:hover {
  background: var(--color-state-hover);
}

._dropdown_1qay1_589 ._dd-item_1qay1_620:active {
  background: var(--color-state-click);
}

._dropdown_1qay1_589 ._dd-separator_1qay1_648 {
  height: 1px;
  background: #ddd;
  margin: 4px 0;
}

._dropdown_1qay1_589 ._dd-category_1qay1_654 {
  font-weight: 400;
  padding: 8px 6px 3px 6px;
}

._inputY_1qay1_1 ._select_1qay1_66 ._placeholder_1qay1_372 {
  font-style: var(--inputY-select-placeholder-font-style, italic);
  color: #bbb;
}

._dropdown-checkbox_1qay1_664 {
  width: 25px;
  color: var(--color-state-click);
}

._dropdown_1qay1_589 ._dd-item_1qay1_620:hover ._dropdown-checkbox_1qay1_664 {
  color: var(--color-bg-dropdown);
}

._dropdown-checkbox-spacer_1qay1_673 {
  display: inline-block;
  width: 25px;
  padding-left: 8px;
}

._dropdownText_1qay1_679 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

._editButton_1qay1_685 {
  margin-left: 12px;
  vertical-align: top;
}

._commitSpinner_1qay1_690 {
  margin-left: 12px;
  vertical-align: middle;
  padding: 2px;
}

._charCount_1qay1_696 {
  position: absolute;
  right: 5px;
  bottom: 0px;
  font-size: 12px;
}

._radioContainer_1qay1_703 {
  padding-left: 24px;
  font-size: var(--font-s);
  font-weight: var(--weight-medium);
  line-height: 24px;
}

._radioItem_1qay1_710 {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: var(--radio-margin-bottom, 6px);
  cursor: pointer;
}

._radioItem_1qay1_710 > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

._radioButton_1qay1_726 {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid black;
  margin-right: 12px;
  position: relative;
  display: flex;
}

._radioItem_1qay1_710 > input:checked ~ ._radioButton_1qay1_726:before {
  content: '';
  display: block;
  position: absolute;
  height: 8px;
  width: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100%;
  background-color: black;
}
._definitionPre_t0zy2_1 {
  white-space: pre-wrap;
}
._container_1q77a_1 {
  position: relative;
  display: flex;
  height: var(--switch-value-container-height, 40px);
  color: var(--switch-value-deselected-color, var(--label-color));
  background-color: var(--switch-value-container-background-color, white);
  border: var(--switch-value-container-border, 1px solid var(--border-color));
  border-radius: 40px;
  text-transform: var(--switch-value-container-text-transform, uppercase);
  cursor: pointer;
}

._switch_1q77a_13 {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  color: var(--switch-value-selected-color, white);
  background-color: var(
    --switch-value-selected-background-color,
    var(--switch-primary)
  );
  border-radius: var(--switch-value-border-radius, 40px);
  transition-property: left, width;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}

._switch_1q77a_13:hover {
  background-color: var(
    --switch-value-background-color-hover,
    var(--switch-secondary)
  );
}

._switchValue_1q77a_40 {
  overflow: hidden;
  white-space: nowrap;
}

._label_1q77a_45 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--switch-value-padding, 0 20px);
  border-radius: var(--switch-value-border-radius, 40px);
  text-overflow: ellipsis;
}

._container_1q77a_1._selectedRight_1q77a_55 ._switch_1q77a_13 {
  left: 100%;
}
._unstyled_ow0oo_1,
._unstyled_ow0oo_1:hover,
._unstyled_ow0oo_1:focus {
  color: inherit;
  text-decoration: inherit;
}
._pageLoginDialog_4mpu9_1 {
  width: 720px;
  min-height: 425px;
  box-shadow: 14px 14px 25px 0 rgba(0, 0, 0, 0.44);
  border: none;
  background: #190e38 url('/decisionanalytics/ascend-intelligence/assets/login-background-d4fa77cf.jpg');
}

._loginDialogContent_4mpu9_9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
  margin: auto;
  padding-top: 55px;
}

._pageLoginDialog_4mpu9_1 h2 {
  width: 100%;
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  color: var(--color-text-white);
}

._preamble_4mpu9_25 {
  font-size: var(--font-s);
  color: var(--color-text-white);
  margin-bottom: 18px;
  width: 100%;
}

._preamble_4mpu9_25 b {
  font-weight: var(--weight-medium);
}

._passwordRequirements_4mpu9_36,
._loginError_4mpu9_37 {
  margin: 6px 0;
  width: 100%;
  font-size: var(--font-xs);
  color: var(--color-text-red);
}

._loginOptionContainer_4mpu9_44 {
  margin-bottom: 20px;
}

._loginOption_4mpu9_44 {
  margin-bottom: 8px;
}

._radioLabel_4mpu9_52 {
  margin-left: 15px;
  font-size: 1.1rem;
}

._loginButtons_4mpu9_57 {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: flex-end;
}

._forgotPassword_4mpu9_64 {
  flex-grow: 1;
}

._forgotPassword_4mpu9_64 a {
  font-size: var(--font-xs);
  color: var(--color-text-red);
  font-weight: var(--weight-medium);
}

._forgotPassword_4mpu9_64 a:hover {
  color: white;
}

._buttonX_4mpu9_78 {
  margin-top: 18px;
  min-width: 100px;
}

._signedOutDiv_4mpu9_83 {
  width: 100%;
  color: var(--color-text-white);
}
._splashPagelet_container_5y34c_1 {
  padding-top: var(--contentarea-inner-padding-top);
}

._splashPagelet_5y34c_1 {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: var(--breadCrumb-height);
  left: var(--navBar-width);
  bottom: var(--breadCrumb-height);
  right: var(--navBar-width);

  /* Workaround for IE Bug.
   The splash box is not centered vertically.
   See: https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
   The workaround mentioned there doesn't seem to work in this case, so
   give the splash itself some minimum height to make things look less broken;
*/
  min-height: 500px;
}

._splashBlock_5y34c_25,
._splashBlock_5y34c_25._loading_5y34c_26 {
  display: flex;
  min-width: 350px;
  padding: 30px 40px 20px 26px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  background-color: var(--color-navBar);
  font-size: var(--font-l);
  color: var(--color-text-white);
}

._splashIcon_5y34c_36 {
  flex: 0 0 30px;
  min-height: 36px;
  margin-right: 12px;
  font-size: var(--font-xl);
}

._splashIcon_5y34c_36 ._spinner_5y34c_43,
._splashIcon_5y34c_36 i._fa_5y34c_44 {
  position: relative;
  top: -3px;
}

._splashBlock_5y34c_25._error_5y34c_49 ._splashIcon_5y34c_36 {
  color: #d00;
}

._splashContent_5y34c_53 {
  margin-top: 4px;
}
:root {
  /* Font sizes */
  --font-mini: 9px;
  --font-xxs: 10px;
  --font-xs: 12px;
  --font-xs-A: 13px;
  --font-s: 14px;
  --font-s-A: 15px;
  --font-m: 14px;
  --font-l: 16px;
  --font-xl: 18px;
  --font-xl-A: 22px;
  --font-xl-B: 16px;
  --font-xl-C: 26px;
  --font-xl-D: 28px;
  --font-xl-E: 30px;
  --font-xxl: 34px;
  --font-xxl-A: 36px;
  --font-jumbo: 140px;

  --weight-thin: 200;
  --weight-regular: 300;
  --weight-medium: 400;
  --weight-thick: 500;

  /* Text */
  --color-text-dark: #888; /* goes away */
  --color-text-black: #050505; /* replaces #333 */
  --color-text-blue: #020348;
  --color-text-light-blue: #7e7fa2;
  --color-text-gray: #808080;
  --color-text-light-gray: #7a7a7a;
  --color-text-red: var(--color-red);
  --color-text-white: #fcf7f7;
  --color-text-green: #25b81d;
  --color-tab-selected: #020348;
  --color-tab-selected-shadow: #df0131;
  --color-tab-bg: var(--color-bg-level2);
  --color-tab-selected-bg: var(--color-bg-level2-darker);
  --color-tab-normal: #7a779a;
  --color-text-td: #1a1a1a;
  --color-text-title: #474747;
  --color-text-chart-status: #1eba21;
  --color-text-link: #030459;
  --color-text-label: #707070;

  /* Colors */
  --color-blue: #6da5e9;
  --color-red: #df0131;
  --color-orange: #bd761a;
  --color-navBar: #060031; /* replaced #1F2F42 */
  --color-navBar-icon: #808080;
  --color-navBar-icon-hover: #ffffff;
  --color-navBar-icon-secondary: #f2eded;
  --color-navBar-icon-active: #513a69;
  --color-heading: #000000;

  --color-light-border: #d6d6d6;
  --color-dark-border: #777;
  --color-mid-border: #979797;
  --color-gray-border: #808080;
  --color-dark-border: #050505;
  --color-model-summary-border: #614581;
  --color-search-box-normal: #888;
  --color-search-box-hover: #737373;
  --color-search-box-focus: #000000;
  --color-search-box-placeholder: #73737380;

  --color-section-border: #d9d4d4;

  --color-bg-level1: white;
  --color-bg-level2: #f2eded;
  --color-bg-level3: white;
  --color-bg-level2-darker: #e2dfe3;
  --color-bg-dark: #e3dede;
  --color-bg-modal: white;
  --color-bg-dropdown: white;
  --color-bg-tab: #efefef; /* not used now */
  --color-bg-model-summary: #ebe7ef;
  --color-bg-table-section-header: #f5f0f0;
  --color-bg-codemirror: #ebe6e6;
  --color-bg-contentarea: var(--color-bg-level1);

  --color-bg-mapped-data-row: #faeded;

  --color-state-hover: #99063e;
  --color-state-click: var(--color-red);
  --color-bg-hover: #fcfcfc;
  --color-hover-border: var(--color-red);

  --color-error-text: #bd761a;

  /* Other */
  --light-border: 1px solid var(--color-light-border);
  --dark-border: 1px solid var(--color-dark-border);
  --mid-border: 1px solid var(--color-mid-border);

  /* Content Area */
  --contentarea-inner-padding-top: 4px;
  --contentarea-inner-padding-sides: 40px;
  --contentarea-inner-padding-bottom: 40px;

  /* ButtonX */
  --buttonX-bg-blue-normal: var(--color-blue);
  --buttonX-bg-blue-hover: #5683ba;
  --buttonX-bg-blue-disabled: #bcd8ff;

  --buttonX-bg-red-normal: white;
  --buttonX-bg-red-hover: #d9534f;

  --buttonX-bg-white-normal: white;
  --buttonX-bg-white-hover: #7d7d7d;
  --buttonX-bg-white-toggled: #d8d8d8;

  /* Buttons */
  --button-large-font-size: var(--font-l);
  --button-small-font-size: var(--font-m);

  /* Primary button */
  --button-primary-bg-normal: var(--color-state-click);
  --button-primary-bg-hover: var(--color-state-hover);
  --button-primary-bg-click: white;
  --button-primary-bg-disabled: #ccc;
  --button-primary-color-normal: white;
  --button-primary-color-hover: white;
  --button-primary-color-click: var(--color-red);
  --button-primary-color-disabled: white;

  /* Secondary button */
  --button-secondary-bg-normal: white;
  --button-secondary-bg-hover: var(--color-state-hover);
  --button-secondary-bg-click: var(--color-red);
  --button-secondary-bg-disabled: #ccc;
  --button-secondary-color-normal: var(--color-red);
  --button-secondary-color-hover: white;
  --button-secondary-color-click: white;
  --button-secondary-color-disabled: white;
  --button-secondary-border-normal: var(--button-secondary-bg-click);
  --button-secondary-border-hover: var(--button-secondary-bg-hover);

  /* Inline button */
  --button-inline-bg-normal: var(--color-bg-level1);
  --button-inline-bg-hover: var(--color-state-hover);
  --button-inline-bg-click: var(--color-state-click);
  --button-inline-bg-disabled: #ccc;
  --button-inline-color-normal: #606060;
  --button-inline-color-hover: white;
  --button-inline-color-click: white;
  --button-inline-color-disabled: #ccc;

  /* Icons */
  --icon-button-bg-normal: #ececec;
  --icon-button-bg-hover: #99063e;
  --icon-button-bg-click: var(--color-red);

  --icon-path-one: #e6e6e6;
  --icon-path-two: #4d4d4d;
  --icon-path-one-hover: #99063e;
  --icon-path-one-active: var(--color-red);

  /* NavBar */
  --navBar-width: 64px;
  --color-menu-bg: #3d3a5e;

  /* BreadCrumb */
  --breadcrumb-height: 24px;

  /* PageHeader */
  --pageheader-nodescbottompadding: 16px;
  /* Left Padding for components on the page.
  This is in addition to content area inner padding.

  */
  --page-left-padding: 0px;

  /* Table View */
  --table-border: #dddddd;
  --table-cell-even-bg: #ffffff;
  --table-cell-odd-bg: #f7f7f7;
  --table-header-bg: #ededed;

  /* TabbedContainer */
  --tab-border-bottom: none;

  --color-bg-ratioEditor: var(--color-bg-level2);
  --color-border-ratioEditor: var(--color-bg-level2-darker);

  --header-bottom-margin: 24px;
  --header-bottom-border: 2px solid var(--color-bg-level2);

  /* Charts */
  --legend-name-width-max: 250px;
  --legend-name-width-min: 70px;
  --legend-name-width-max-compact: 100px;
  --legend-name-width-min-compact: 50px;
}
@font-face {
  font-family: Roboto;
  font-weight: 200;
  src: url('/decisionanalytics/ascend-intelligence/assets/Roboto Thin Machinify-e705c215.ttf');
}

@font-face {
  font-family: Roboto;
  font-weight: 300;
  src: url('/decisionanalytics/ascend-intelligence/assets/Roboto Light Machinify-7a9319e4.ttf');
}

@font-face {
  font-family: Roboto;
  font-weight: 400;
  src: url('/decisionanalytics/ascend-intelligence/assets/Roboto Regular Machinify-d441d787.ttf');
}

@font-face {
  font-family: Roboto;
  font-weight: 500;
  src: url('/decisionanalytics/ascend-intelligence/assets/Roboto Medium Machinify-acaedba7.ttf');
}

@font-face {
  font-family: RobotoCondensed;
  src: url('/decisionanalytics/ascend-intelligence/assets/RobotoCondensed-Light-bcafee6b.ttf');
}

@font-face {
  font-family: BarlowCondensed;
  font-weight: 300;
  src: url('/decisionanalytics/ascend-intelligence/assets/BarlowCondensed-Regular-df5d8a2b.ttf');
}

@font-face {
  font-family: BarlowCondensed;
  font-weight: 400;
  src: url('/decisionanalytics/ascend-intelligence/assets/BarlowCondensed-SemiBold-dc39a293.ttf');
}

@font-face {
  font-family: BarlowCondensed-Light;
  font-weight: 300;
  src: url('/decisionanalytics/ascend-intelligence/assets/BarlowCondensed-Light-0be5c414.ttf');
}

@font-face {
  font-family: BarlowCondensed-ExtraLight;
  font-weight: 100;
  src: url('/decisionanalytics/ascend-intelligence/assets/BarlowCondensed-ExtraLight-13215235.ttf');
}

html,
body {
  font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  height: 100%;
  color: var(--color-text-black);
  background: var(--color-bg-level1);
  overscroll-behavior: none;
}

/* Remove annoying IE decorations */
select::-ms-expand,
input::-ms-clear,
input::-ms-reveal {
  display: none;
}

#MachinifyRoot {
  display: flex;
  min-height: 100%;
}

.top-section-header {
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  padding-left: var(--page-left-padding);
}

.section-header {
  background-color: var(--color-bg-table-section-header);
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  color: var(--color-text-td);
  padding: 10px 20px;
}

.flex-spacer {
  flex: 1 1 auto;
}

.tcgHeaderControls {
  display: flex;
  justify-content: space-between;
}

/* Animations */

.spin {
  animation: spin 4s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(359deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Links */

a {
  color: var(--color-text-black);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-text-black);
  cursor: pointer;
  outline: none;
  text-decoration: underline;
}

.spinnerWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1000;
  align-items: center;
  display: flex;
  justify-content: center;
}

.spinnerWrapper.fullScreen {
  position: fixed;
}

/* Table and Event pages */

.tableSectionTitle {
  margin-bottom: 12px;
  line-height: 24px;
  font-size: var(--font-xl-B);
  font-weight: var(--weight-medium);
}

  .wyfr-container-base___base {
    --wyfr-cb-divider-color: #d6d6d6;
    --stroke-color: transparent;
    --stroke-inner: 0;
    --stroke-outer: 0;
    --bg: transparent;
    --fg: #333333;
    background: var(--bg);
    color: var(--fg);
    box-shadow:
      inset 0 0 0 calc(1px * var(--stroke-inner, 0)) var(--stroke-color, transparent),
      0 0 0 calc(1px * var(--stroke-outer, 0)) var(--stroke-color);

    position: relative;
    display: inline-block;
    box-sizing: border-box;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    border: none;
    margin: 0;
    padding: 1px;
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    text-decoration: none;
    transition-property: background-color, color, box-shadow;
    transition-duration: 64ms;
    cursor: default;
  }

  .wyfr-container-base___base-with-corner-radius {
    display: inline-flex;
  }

  .wyfr-container-base___disabled {
    cursor: not-allowed;
  }

  .wyfr-container-base___as-hr {
    padding: 0;
  }

  .wyfr-container-base___interactive {
    --wyfr-cb-shade-100: #f2f8ff;
    --wyfr-cb-shade-150: #E6EFFB;
    --wyfr-cb-shade-200: #d6e3f4;
    --wyfr-cb-shade-300: #bbcfea;
    --wyfr-cb-shade-600: #426da9;
    --wyfr-cb-shade-700: #1d4f91;
    --wyfr-cb-shade-800: #123f7a;
  }

  .wyfr-container-base___selected {
    --wyfr-cb-shade-100: #fef2ff;
    --wyfr-cb-shade-150: #fef2ff;
    --wyfr-cb-shade-200: #eed3f1;
    --wyfr-cb-shade-300: #dfb6e4;
    --wyfr-cb-shade-600: #883b92;
    --wyfr-cb-shade-700: #6d2077;
    --wyfr-cb-shade-800: #53135b;
  }

  .wyfr-container-base___misc {
    --wyfr-cb-shade-100: #fff0fb;
    --wyfr-cb-shade-150: #fff0fb;
    --wyfr-cb-shade-200: #f6cbea;
    --wyfr-cb-shade-300: #eda7da;
    --wyfr-cb-shade-600: #af1685;
    --wyfr-cb-shade-700: #92086d;
    --wyfr-cb-shade-800: #760056;
  }

  .wyfr-container-base___danger {
    --wyfr-cb-shade-100: #fff0f3;
    --wyfr-cb-shade-150: #fff0f3;
    --wyfr-cb-shade-200: #FFD6DD;
    --wyfr-cb-shade-300: #fea8b8;
    --wyfr-cb-shade-600: #e4002b;
    --wyfr-cb-shade-700: #c60025;
    --wyfr-cb-shade-800: #a8001f;
  }

  .wyfr-container-base___level20-base {
    --wyfr-cb-divider-color: #8c8c8c;
  }

  .wyfr-container-base___level50-base, .wyfr-container-base___level150-base, .wyfr-container-base___level200-base, .wyfr-container-base___level500-base {
    --wyfr-cb-divider-color: var(--wyfr-cb-shade-600);
  }

  .wyfr-container-base___level300-base {
    --wyfr-cb-divider-color: var(--wyfr-cb-shade-300);
  }

  .wyfr-container-base___level10-base,
  .wyfr-container-base___level20-base,
  .wyfr-container-base___level50-base,
  .wyfr-container-base___level150-base,
  .wyfr-container-base___level200-base,
  .wyfr-container-base___inverse20-base {
    --stroke-inner: 1;
  }

  .wyfr-container-base___level0-base,
  .wyfr-container-base___level10-focus,
  .wyfr-container-base___level20-focus,
  .wyfr-container-base___level50-focus,
  .wyfr-container-base___level100-focus,
  .wyfr-container-base___level150-focus,
  .wyfr-container-base___level200-focus,
  .wyfr-container-base___level300-focus,
  .wyfr-container-base___inverse20-focus,
  .wyfr-container-base___inverse100-focus,
  .wyfr-container-base___inverse200-focus,
  .wyfr-container-base___inverse300-focus {
    --stroke-outer: 1;
  }

  .wyfr-container-base___inverse20-base,
  .wyfr-container-base___inverse100-focus {
    --stroke-color: #ffffff;
  }

  .wyfr-container-base___inverse200-focus,
  .wyfr-container-base___inverse300-focus {
    --stroke-color: var(--bg);
  }

  .wyfr-container-base___level10-base {
    --stroke-color: #d6d6d6;
  }

  .wyfr-container-base___level20-base {
    --stroke-color: #8c8c8c;
  }

  .wyfr-container-base___level0-focus,
  .wyfr-container-base___level10-focus,
  .wyfr-container-base___level20-focus,
  .wyfr-container-base___level50-base,
  .wyfr-container-base___level100-base,
  .wyfr-container-base___level150-base,
  .wyfr-container-base___level200-base,
  .wyfr-container-base___level300-base {
    --stroke-color: var(--wyfr-cb-shade-600);
  }

  .wyfr-container-base___level0-hover,
  .wyfr-container-base___level10-hover,
  .wyfr-container-base___level20-hover,
  .wyfr-container-base___level50-hover,
  .wyfr-container-base___level100-hover,
  .wyfr-container-base___level150-hover,
  .wyfr-container-base___level200-hover,
  .wyfr-container-base___level300-hover,
  .wyfr-container-base___level500-base {
    --stroke-color: var(--wyfr-cb-shade-700);
  }

  .wyfr-container-base___level0-active,
  .wyfr-container-base___level10-active,
  .wyfr-container-base___level20-active,
  .wyfr-container-base___level50-active,
  .wyfr-container-base___level100-active,
  .wyfr-container-base___level150-active,
  .wyfr-container-base___level200-active,
  .wyfr-container-base___level300-active {
    --stroke-color: var(--wyfr-cb-shade-800);
  }

  .wyfr-container-base___level50-disabled,
  .wyfr-container-base___level150-disabled,
  .wyfr-container-base___level200-disabled {
    --stroke-color: #8c8c8c;
  }

  .wyfr-container-base___inverse100-hover,
  .wyfr-container-base___inverse200-base {
    --bg: rgba(255, 255, 255, 0.2);
  }

  .wyfr-container-base___inverse100-active,
  .wyfr-container-base___inverse200-disabled {
    --bg: rgba(255, 255, 255, 0.1);
  }

  .wyfr-container-base___inverse200-hover {
    --bg: rgba(255, 255, 255, 0.3);
  }

  .wyfr-container-base___inverse200-active {
    --bg: rgba(255, 255, 255, 0.4);
  }

  .wyfr-container-base___inverse300-base {
    --bg: rgba(255, 255, 255, 0.8);
  }

  .wyfr-container-base___inverse300-hover {
    --bg: rgba(255, 255, 255, 0.9);
  }

  .wyfr-container-base___inverse300-active {
    --bg: #ffffff;
  }

  .wyfr-container-base___level0-base,
  .wyfr-container-base___level10-base,
  .wyfr-container-base___level20-base,
  .wyfr-container-base___level50-base {
    --bg: #ffffff;
  }

  .wyfr-container-base___level20-disabled,
  .wyfr-container-base___level50-disabled {
    --bg: #f6f6f6;
  }

  .wyfr-container-base___level200-base {
    --bg: var(--wyfr-cb-shade-100);
  }

  .wyfr-container-base___level100-active,
  .wyfr-container-base___level150-active {
    --bg: var(--wyfr-cb-shade-150);
  }

  .wyfr-container-base___level200-hover {
    --bg: var(--wyfr-cb-shade-200);
  }

  .wyfr-container-base___level200-active {
    --bg: var(--wyfr-cb-shade-300);
  }

  .wyfr-container-base___level300-base {
    --bg: var(--wyfr-cb-shade-600);
  }

  .wyfr-container-base___level300-hover, .wyfr-container-base___level500-base {
    --bg: var(--wyfr-cb-shade-700);
  }
  
  .wyfr-container-base___level300-active {
    --bg: var(--wyfr-cb-shade-800);
  }

  .wyfr-container-base___level200-disabled {
    --bg: #eaeaea;
  }

  .wyfr-container-base___level300-disabled {
    --bg: #8c8c8c;
  }

  .wyfr-container-base___level100-base,
  .wyfr-container-base___level150-base,
  .wyfr-container-base___level200-base {
    --fg: var(--wyfr-cb-shade-600);
  }

  .wyfr-container-base___inverse20-base,
  .wyfr-container-base___inverse100-base,
  .wyfr-container-base___inverse200-base,
  .wyfr-container-base___level300-base,
  .wyfr-container-base___level500-base {
    --fg: #ffffff;
  }

  .wyfr-container-base___inverse300-base,
  .wyfr-container-base___level100-hover,
  .wyfr-container-base___level150-hover,
  .wyfr-container-base___level200-hover {
    --fg: var(--wyfr-cb-shade-700);
  }

  .wyfr-container-base___inverse300-disabled {
    --bg: rgba(255, 255, 255, 0.2);
  }

  .wyfr-container-base___level100-active,
  .wyfr-container-base___level150-active,
  .wyfr-container-base___level200-active {
    --fg: var(--wyfr-cb-shade-800);
  }

  .wyfr-container-base___inverse200-disabled,
  .wyfr-container-base___inverse300-disabled {
    --fg: rgba(255, 255, 255, 0.6);
  }

  .wyfr-container-base___level100-disabled,
  .wyfr-container-base___level150-disabled,
  .wyfr-container-base___level200-disabled {
    --fg: #8c8c8c;
  }

  .wyfr-container-base___inverse100-disabled,
  .wyfr-container-base___level300-disabled {
    --fg: #d6d6d6;
  }

  .wyfr-container-base___level150-base {
    --fg-alt: #585858;
  }

  .wyfr-container-base___level200-base {
    --fg-alt: #333333;
  }

  .wyfr-container-base___level150-disabled,
  .wyfr-container-base___level200-disabled {
    --fg-alt: unset;
  }

  .wyfr-container-base___corner-radius-2, .wyfr-container-base___corner-radius-2::before {
      border-radius: 2px;
    }

  .wyfr-container-base___corner-radius-4, .wyfr-container-base___corner-radius-4::before {
      border-radius: 4px;
    }

  .wyfr-container-base___corner-radius-6, .wyfr-container-base___corner-radius-6::before {
      border-radius: 6px;
    }

  .wyfr-container-base___corner-radius-9999, .wyfr-container-base___corner-radius-9999::before {
      border-radius: 9999px;
    }

  .wyfr-container-base___shadow-base::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .wyfr-container-base___shadow-small::before {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  }

  .wyfr-container-base___shadow-medium::before {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  }

  .wyfr-container-base___shadow-large::before {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }

  .wyfr-container-base___children-trim {
    display: flex;
    width: 100%;
    overflow: hidden;
  }

  .wyfr-container-base___corner-radius-2 > .wyfr-container-base___children-trim {
      border-radius: 1px;
    }

  .wyfr-container-base___corner-radius-4 > .wyfr-container-base___children-trim {
      border-radius: 3px;
    }

  .wyfr-container-base___corner-radius-6 > .wyfr-container-base___children-trim {
      border-radius: 5px;
    }

  .wyfr-container-base___corner-radius-9999 > .wyfr-container-base___children-trim {
      border-radius: 9999px;
    }


  .wyfr-text___container {
    font: var(--wyfr-text-style);
    color: var(--wyfr-text-color);
    margin: 0;
  }
  .wyfr-text___link {
    cursor: pointer;
    text-decoration: none;
    color: #426da9;
  }
  .wyfr-text___link:hover {
      color: #1d4f91;
    }
  .wyfr-text___link:active {
      color: #123f7a;
    }


  .wyfr-button-base___container {
    font: 500 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    line-height: 1;
    display: inline-flex;
  }


  .wyfr-tabs___tab-base-root {
    background: transparent;
    padding: 0;
  }
  .wyfr-tabs___tab-base-marker-common {
    width: 100%;
    transition-property: background;
    transition-duration: 150ms;
  }
  .wyfr-tabs___tab-base-marker-rule {
    height: 1em;
    margin-top: -1em;
  }
  .wyfr-tabs___tab-base-marker-no-rule {
    height: calc(1em + 1px);
    margin-bottom: -1px;
  }
  .wyfr-tabs___tab-base-marker-visible {
    background: #d6d6d6;
  }
  .wyfr-tabs___tab-content {
    display: flex;
    margin-top: 6px;
    margin-bottom: 9px;
    align-items: center;
    margin-right: 8px;
    margin-left: 8px;
  }
  .wyfr-tabs___tab-content > * {
      margin-left: 1px;
    }
  .wyfr-tabs___tab-content:last-child {
      margin-right: 1px;
    }
  .wyfr-tabs___tab-element-common {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .wyfr-tabs___tab-element-label {
    font: 500 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    padding-right: 8px;
    padding-left: 8px;
  }
  .wyfr-tabs___tab-element-item {
    display: flex;
  }
  .wyfr-tabs___tab-element-item + .wyfr-tabs___tab-element-item {
      margin-left: 8px;
    }
  .wyfr-tabs___tabs-base-root {
    padding: 0;
    min-width: 100%;
  }
  .wyfr-tabs___tabs-base-content {
    display: flex;
    align-items: flex-end;
    padding: 0;
    margin: 0;
  }
  .wyfr-tabs___tabs-base-tab-wrap {
    display: inline-block;
  }
  .wyfr-tabs___tabs-base-divider-common {
    width: 100%;
    height: 1px;
  }
  .wyfr-tabs___tabs-base-divider-visible {
    background: #d6d6d6;
  }
  .wyfr-tabs___tabs-base-marker {
    height: 1em;
    margin-top: -1em;
    background: #e63888;
  }
  .wyfr-tabs___tabs-base-marker-hidden {
    background: transparent;
  }
  .wyfr-tabs___tabs-base-marker-transition {
    transition-property: margin-left,width;
    transition-duration: 250ms;
  }


  .wyfr-alert-content___info {
    --wyfr-alert-content-fg: #426da9;
    --wyfr-alert-content-bg: #d6e3f4;
  }

  .wyfr-alert-content___success {
    --wyfr-alert-content-fg: #007a3b;
    --wyfr-alert-content-bg: #D0F6DB;
  }

  .wyfr-alert-content___warning {
    --wyfr-alert-content-fg: #995006;
    --wyfr-alert-content-bg: #FFF1BD;
  }

  .wyfr-alert-content___error {
    --wyfr-alert-content-fg: #c60025;
    --wyfr-alert-content-bg: #FFD6DD;
  }

  .wyfr-alert-content___stripe {
    background: var(--wyfr-alert-content-bg);
    color: var(--wyfr-alert-content-fg);
    padding-top: 12px;
    padding-right: 3px;
    padding-left: 4px;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #d6d6d6;
  }

  .wyfr-alert-content___wrap {
    display: flex;
    width: 100%;
    flex-direction: row;
  }

  .wyfr-alert-content___subject {
    font: 500 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: var(--wyfr-alert-content-fg);
    margin: 0;
  }

  .wyfr-alert-content___subject-compact, .wyfr-alert-content___main-compact {
    display: inline;
  }

  .wyfr-alert-content___subject-normal {
    padding-top: 12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .wyfr-alert-content___main {
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }

  .wyfr-alert-content___main-normal {
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
  }

  .wyfr-alert-content___content {
    flex: 1;
    display: flex;
    background-color: #ffffff;
    color: #333333;
  }

  .wyfr-alert-content___content-compact {
    flex-direction: row;
    padding: 12px;
  }

  .wyfr-alert-content___content-compact > * + * {
      margin-left: 8px;
    }

  .wyfr-alert-content___content-normal {
    flex-direction: column;
  }

  .wyfr-alert-content___content-normal > * + * {
      margin-top: 8px;
    }

  .wyfr-alert-content___header-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .wyfr-alert-content___close-button-wrap-compact {
    margin-top: -6px;
    margin-right: -6px;
    margin-bottom: -6px;
  }

  .wyfr-alert-content___close-button-wrap-normal {
    margin-top: 6px;
    margin-right: 6px;
    margin-bottom: -100%;
  }


  .wyfr-app-layout___root {
    max-width: 100vw;
    max-height: 100vh;
    display: grid;
    grid-template: auto 1fr / auto 1fr;
  }

  .wyfr-app-layout___header, .wyfr-app-layout___sidebar {
    grid-column-start: 1;
  }

  .wyfr-app-layout___header, .wyfr-app-layout___main {
    grid-column-end: -1;
  }

  .wyfr-app-layout___main {
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    background: #ffffff;
    color: #333333;
  }

  .wyfr-app-layout___sidebar, .wyfr-app-layout___main {
    overflow: auto;
  }

  .wyfr-app-layout___sidebar {
    display: flex;
  }


  .wyfr-backdrop___common {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition-property: background-color, visibility, -webkit-backdrop-filter;
    transition-property: background-color, backdrop-filter, visibility;
    transition-property: background-color, backdrop-filter, visibility, -webkit-backdrop-filter;
    transition-duration: 125ms;
  }

  .wyfr-backdrop___visible-common {
    -webkit-backdrop-filter: blur(1px) grayscale(50%);
            backdrop-filter: blur(1px) grayscale(50%);
    visibility: initial;
  }

  .wyfr-backdrop___visible-light {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .wyfr-backdrop___visible-dark {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .wyfr-backdrop___hidden {
    background-color: transparent;
    visibility: hidden;
  }


  .wyfr-badge___container {
    display: inline-block;
    margin: 0;
    padding: 2px 6px;
    border-radius: 9999px;
    background: #c41d73;
    color: #ffffff;
    font: 400 12px/16px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    text-decoration: none;
  }


  .wyfr-breadcrumbs___container {
    width: 100%;
    box-sizing: border-box;
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: #333333;
    display: flex;
    padding: 14px 20px;
  }

  .wyfr-breadcrumbs___list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .wyfr-breadcrumbs___item {
    display: inline-flex;
    max-width: 100%;
  }

  .wyfr-breadcrumbs___item * {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .wyfr-breadcrumbs___item:not(:last-child)::after {
    content: "/";
    color: #8c8c8c;
    margin-left: 16px;
    margin-right: 16px;
  }


  .wyfr-button___container-block {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .wyfr-button___content-common {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .wyfr-button___content-common + .wyfr-button___content-common {
      margin-left: 8px;
    }

  .wyfr-button___content-default {
    padding-right: calc(16px - 1px);
    padding-left: calc(16px - 1px);
  }

  .wyfr-button___content-compact {
    padding-left: calc(8px - 1px);
    padding-right: calc(8px - 1px);
  }

  .wyfr-button___item + .wyfr-button___item {
      margin-left: 8px;
    }

  .wyfr-button___icon {
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-flex;
  }

  .wyfr-button___label {
    padding-top: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
  }


  .wyfr-data-grid___root {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .wyfr-data-grid___toolbar-content, .wyfr-data-grid___footer-content {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 8px;
  }

  .wyfr-data-grid___filter-wrap {
    flex: 1;
    padding: 8px 0;
  }

  .wyfr-data-grid___selected-row-count {
    white-space: nowrap;
    flex: 1;
  }

  .wyfr-data-grid___head-wrap {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: auto;
  }

  .wyfr-data-grid___head-wrap::-webkit-scrollbar {
      display: none;
    }
  
  .wyfr-data-grid___body-wrap {
    overflow: auto;
    display: flex;
  }

  .wyfr-data-grid___head-wrap, .wyfr-data-grid___body-wrap {
    flex-direction: column;
  }

  .wyfr-data-grid___filter {
    width: 100%;
    max-width: 500px;
  }

  .wyfr-data-grid___footer-item {
    padding: 8px 0;
  }

  .wyfr-data-grid___pagination-wrap {
    flex: 1;
  }

  .wyfr-data-grid___page-size-selection {
    display: flex;
    align-items: inherit;
    gap: inherit;
  }


  .wyfr-dialog___common {
    width: var(--wyfr-dialog-width);
    display: flex;
    max-width: calc(100% - 16px);
    max-height: calc(100% - 16px);
    box-sizing: border-box;
    transition-property: opacity, transform;
    transition-duration: 250ms;
  }

  .wyfr-dialog___content {
    flex: 1;
  }

  .wyfr-dialog___layer-boundary {
    width: 100%;
    display: flex;
  }

  .wyfr-dialog___small {
    --wyfr-dialog-width: 400px;
  }

  .wyfr-dialog___medium {
    --wyfr-dialog-width: 600px;
  }

  .wyfr-dialog___large {
    --wyfr-dialog-width: 904px;
  }
  
  .wyfr-dialog___max {
    --wyfr-dialog-width: 100%;
  }

  .wyfr-dialog___pre-enter {
    opacity: 0;
    transform: translateY(-50%);
  }

  .wyfr-dialog___entering {
    opacity: 1;
    transform: translateY(0);
  }

  .wyfr-dialog___entered {
    opacity: 1;
    transform: translateY(0);
  }

  .wyfr-dialog___exiting {
    opacity: 0;
    transform: translateY(50%);
  }


  .wyfr-dialog-content___trim {
    overflow: hidden;
    flex: 1;
    display: flex;
  }

  .wyfr-dialog-content___container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .wyfr-dialog-content___title {
    padding-top: 4px;
    padding-bottom: 4px;
    font: 700 18px/24px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    margin: 0;
    flex: 1;
  }

  .wyfr-dialog-content___title:not(:first-child) {
    margin-left: 8px;
  }

  .wyfr-dialog-content___title:not(:last-child) {
    margin-right: 8px;
  }

  .wyfr-dialog-content___header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wyfr-dialog-content___header-padding-left-no-button {
    padding-left: 20px;
  }

  .wyfr-dialog-content___header-padding-left-with-button {
    padding-left: 10px;
  }

  .wyfr-dialog-content___header-padding-right-no-button {
    padding-right: 20px;
  }

  .wyfr-dialog-content___header-padding-right-with-button {
    padding-right: 10px;
  }

  .wyfr-dialog-content___non-header-padding-x {
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .wyfr-dialog-content___main-common {
    overflow: auto;
    border-radius: 0 0 5px 5px;
    position: relative;
    padding-top: 1px;
    padding-bottom: 1px;
    flex: 1;
  }

  .wyfr-dialog-content___main-common:last-child {
    padding-bottom: 16px;
  }

  .wyfr-dialog-content___main-with-dividers {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .wyfr-dialog-content___main-padding-none.wyfr-dialog-content___main-padding-none {
    padding: 0;
  }

  .wyfr-dialog-content___footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wyfr-dialog-content___divider {
    flex-basis: 1px;
    flex-shrink: 0;
    margin-top: -1px;
  }


  @keyframes wyfr-donut___spin {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(1turn);
    }
  }
  .wyfr-donut___spin {
    animation: wyfr-donut___spin 1s infinite linear;
    transform-origin: center;
  }


  .wyfr-field___root-common {
    color: #333333;
    display: inline-flex;
    flex-direction: column;
  }

  .wyfr-field___root-fieldset {
    border: 0;
    padding: 0.01em 0 0 0;
    margin: 0;
    min-width: 0;
  }

  body:not(:-moz-handler-blocked) .wyfr-field___root-fieldset {
      display: table-cell;
    }

  .wyfr-field___label-required::after {
    content: " *";
    color: #c60025;
  }

  .wyfr-field___label-legend {
    display: table;
    float: left;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
  }

  .wyfr-field___label-legend + * {
      clear: both;
    }

  .wyfr-field___controls {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .wyfr-field___assistive-text-common {
    margin-top: 8px;
  }

  .wyfr-field___assistive-text-info {
    color: #717171;
  }

  .wyfr-field___assistive-text-error {
    color: #c60025;
  }

  .wyfr-field___assistive-text-error::before {
      content: "";
      display: inline-block;
      margin: 0 4px -4px 0;
      width: 16px;
      height: 16px;
      background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='width:16px;height:16px' fill='%23c60025'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E") no-repeat center/16px;
    }


  .wyfr-floating-action-button___root {
    position: fixed;
    right: 16px;
    bottom: 16px;
  }


  .wyfr-mega-button___layout {
    margin: 23px 11px;
    text-align: left;
  }

  .wyfr-mega-button___layout-normal-description {
    display: grid;
    gap: 2px 12px;
    grid-template: auto 1fr / auto 1fr;
  }

  .wyfr-mega-button___layout-normal-no-description, .wyfr-mega-button___layout-column {
    display: flex;
    align-items: center;
    text-align: center;
  }

  .wyfr-mega-button___layout-normal-no-description {
    gap: 12px;
  }

  .wyfr-mega-button___layout-column {
    flex-direction: column;
    gap: 4px;
  }

  .wyfr-mega-button___icon-wrap-normal {
    grid-row: span 2;
  }

  .wyfr-mega-button___icon-wrap-normal-description > * {
    transform: translateY(2px);
  }

  .wyfr-mega-button___label-column {
    text-align: center;
  }

  .wyfr-mega-button___description {
    color: var(--fg-alt, inherit);
  }


  .wyfr-modal___layer {
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wyfr-modal___hidden {
    visibility: hidden;
  }


  .wyfr-panel___main {
    width: 100%;
    box-shadow:
      inset 0 calc(var(--wyfr-panel-top, 0) * 1px) 0 0 #d6d6d6,
      inset calc(var(--wyfr-panel-right, 0) * -1px) 0 0 0 #d6d6d6,
      inset 0 calc(var(--wyfr-panel-bottom, 0) * -1px) 0 0 #d6d6d6,
      inset calc(var(--wyfr-panel-left, 0) * 1px) 0 0 0 #d6d6d6;
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: #333333;
  }

  .wyfr-panel___gray {
    background: #f6f6f6;
  }

  .wyfr-panel___white {
    background: #ffffff;
  }

  .wyfr-panel___top {
    --wyfr-panel-top: 1;
  }

  .wyfr-panel___right {
    --wyfr-panel-right: 1;
  }

  .wyfr-panel___bottom {
    --wyfr-panel-bottom: 1;
  }

  .wyfr-panel___left {
    --wyfr-panel-left: 1;
  }


  .wyfr-popover___container {
    border: 1px solid #d6d6d6;
    background-color: #ffffff;
    color: #333333;
    padding: 0;
    border-radius: 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    transition: opacity 250ms;
  }

  .wyfr-popover___container-visible {
    opacity: 1;
  }

  .wyfr-popover___container-hidden {
    opacity: 0;
  }

  .wyfr-popover___arrow {
    width: 6px;
    height: 6px;
  }

  .wyfr-popover___arrow::before, .wyfr-popover___arrow::after {
      content: "";
      width: 0;
      height: 0;
      position: absolute;
      top: 0;
      left: 0;
      border: 6px solid transparent;
    }

  [data-popper-placement*="top"] > .wyfr-popover___arrow {
      bottom: calc(6px * -1);
    }

  [data-popper-placement*="top"] > .wyfr-popover___arrow::before, [data-popper-placement*="top"] > .wyfr-popover___arrow::after {
        left: calc(6px / -2);
        border-bottom-width: 0;
      }

  [data-popper-placement*="top"] > .wyfr-popover___arrow::before {
        top: 1px;
        border-top-color: #d6d6d6;
      }

  [data-popper-placement*="top"] > .wyfr-popover___arrow::after {
        border-top-color: #ffffff;
      }

  [data-popper-placement*="right"] > .wyfr-popover___arrow {
      left: calc(6px * -1);
    }

  [data-popper-placement*="right"] > .wyfr-popover___arrow::before, [data-popper-placement*="right"] > .wyfr-popover___arrow::after {
        top: calc(6px / -2);
        border-left-width: 0;
      }

  [data-popper-placement*="right"] > .wyfr-popover___arrow::before {
        left: -1;
        border-right-color: #d6d6d6;
      }

  [data-popper-placement*="right"] > .wyfr-popover___arrow::after {
        border-right-color: #ffffff;
      }

  [data-popper-placement*="bottom"] > .wyfr-popover___arrow {
      top: calc(6px * -1);
    }

  [data-popper-placement*="bottom"] > .wyfr-popover___arrow::before, [data-popper-placement*="bottom"] > .wyfr-popover___arrow::after {
        left: calc(6px / -2);
        border-top-width: 0;
      }

  [data-popper-placement*="bottom"] > .wyfr-popover___arrow::before {
        top: -1px;
        border-bottom-color: #d6d6d6;
      }

  [data-popper-placement*="bottom"] > .wyfr-popover___arrow::after {
        border-bottom-color: #ffffff;
      }

  [data-popper-placement*="left"] > .wyfr-popover___arrow {
      right: calc(6px * -1);
    }

  [data-popper-placement*="left"] > .wyfr-popover___arrow::before, [data-popper-placement*="left"] > .wyfr-popover___arrow::after {
        top: calc(6px / -2);
        border-right-width: 0;
      }

  [data-popper-placement*="left"] > .wyfr-popover___arrow::before {
        left: 1px;
        border-left-color: #d6d6d6;
      }

  [data-popper-placement*="left"] > .wyfr-popover___arrow::after {
        border-left-color: #ffffff;
      }

  .wyfr-popover___content-wrap {
    overflow: hidden;
    border-radius: 3px;
  }


  .wyfr-spinner___common {
    font-size: 128px;
    width: 1em;
    height: 1em;
    transition-property: transform, opacity;
    transition-duration: 250ms;
    outline: none;
  }

  .wyfr-spinner___visible {
    transform: scale(1);
    opacity: 1;
  }

  .wyfr-spinner___hidden {
    transform: scale(1.5);
    opacity: 0;
  }

  .wyfr-spinner___tm {
    font: 400 12px/16px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: #426da9;
    transform: scale(0.5);
    position: absolute;
    top: 60%;
    left: 64%;
  }


  .wyfr-table___wrap {
    display: inline-flex;
  }

  .wyfr-table___table {
    min-width: 100%;
  }

  table.wyfr-table___table {
      display: table;
      border-collapse: collapse;
      border-spacing: 0;
    }

  .wyfr-table___cell {
    background-image: linear-gradient(270deg, #d6d6d6 1px, transparent 1px);
    padding: 10px calc(12px - 1px);
    overflow: hidden;
  }

  .wyfr-table___cell:not(.wyfr-table___data-grid-cell):last-child {
      background-image: none;
    }

  .wyfr-table___cell-compact {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .wyfr-table___cell-start {
    text-align: start;
  }

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

  .wyfr-table___cell-end {
    text-align: end;
  }

  .wyfr-table___tr:not(tr) {
      display: flex;
    }

  .wyfr-table___th {
    font: 500 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    background-color: #f6f6f6;
  }

  .wyfr-table___thead .wyfr-table___th {
      position: relative;
    }

  .wyfr-table___thead .wyfr-table___th::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 1px;
        background: #d6d6d6;
      }

  .wyfr-table___td {
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    background-color: #ffffff;
  }

  .wyfr-table___td-alt {
    background-color: #f6f6f6;
  }

  .wyfr-table___td-hover {
    background-color: #E6EFFB;
  }

  .wyfr-table___td-selected {
    background-color: #fef2ff;
  }


  .wyfr-tag___common {
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    line-height: 1;
    border-radius: 9999px;
    padding: 5px 8px;
    box-shadow: inset 0 0 0 1px currentColor;
    margin: 0;
    border: 0;
  }

  .wyfr-tag___gray {
    background: #eaeaea;
  }

  .wyfr-tag___gray, .wyfr-tag___white {
    color: #585858;
  }

  .wyfr-tag___yellow {
    background: #FFF9E8;
    color: #815B00;
  }

  .wyfr-tag___orange {
    background: #ffeed7;
    color: #995006;
  }

  .wyfr-tag___magenta {
    background: #fff1fa;
    color: #a20861;
  }

  .wyfr-tag___white {
    background: #ffffff;
  }

  .wyfr-tag___red {
    background: #fff0f3;
    color: #c60025;
  }

  .wyfr-tag___sapphire {
    background: #f2fcff;
    color: #006580;
  }

  .wyfr-tag___purple {
    background: #fef2ff;
    color: #883b92;
  }

  .wyfr-tag___green {
    background: #F2FFF5;
    color: #007a3b;
  }

  .wyfr-tag___raspberry {
    background: #fff0fb;
    color: #af1685;
  }

  .wyfr-tag___teal {
    background: #f2fffe;
    color: #00756f;
  }


  .wyfr-tree-menu___item {
    display: flex;
  }

  .wyfr-tree-menu___item:not(.wyfr-tree-menu___item-selected):hover {
    background: #E6EFFB;
  }

  .wyfr-tree-menu___item-selected {
    background: #ffd8f0;
  }

  .wyfr-tree-menu___item-selected .wyfr-tree-menu___button {
    background: transparent;
  }

  .wyfr-tree-menu___marker {
    padding: 0;
    min-width: 4px;
    max-width: 4px;
  }

  .wyfr-tree-menu___marker-selected {
    background: #e63888;
  }

  .wyfr-tree-menu___guideline {
    padding: 0;
    width: 32px;
    min-width: 32px;
    max-width: 32px;
  }

  .wyfr-tree-menu___guideline, .wyfr-tree-menu___button-wrap-open::before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='4' viewBox='0 0 1 4'%3E%3Cpath stroke='%238c8c8c' stroke-dasharray='2 2' d='M.5 0v4'/%3E%3C/svg%3E");
  }

  .wyfr-tree-menu___button-wrap-open {
    position: relative;
  }

  .wyfr-tree-menu___button-wrap-open::before {
    content: "";
    position: absolute;
    top: calc(50% + 7px);
    bottom: 0;
    left: 0;
    width: 32px;
  }

  .wyfr-tree-menu___button-wrap {
    display: flex;
    align-items: center;
    padding: 4px;
  }

  .wyfr-tree-menu___button {
    border-radius: 4px;
    padding-top: 2px;
    padding-right: 4px;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: calc(var(--wyfr-tree-menu-wrap-width, 999px) - 12px);
    box-sizing: border-box;
  }

  .wyfr-tree-menu___button-leaf {
    font-weight: normal;
    margin-left: 30px;
    padding-left: 4px;
    max-width: calc(var(--wyfr-tree-menu-wrap-width, 999px) - 42px);
  }

  .wyfr-tree-menu___button:not(.wyfr-tree-menu___button-selected):active {
    background: #d6e3f4;
  }

  .wyfr-tree-menu___button-toggle {
    font-size: 24px;
    margin-top: -2px;
    margin-right: 10px;
    margin-bottom: -2px;
    margin-left: -1px;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wyfr-tree-menu___button-elements {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .wyfr-tree-menu___button-elements-selected {
    color: #333333;
  }

  .wyfr-tree-menu___label {
    line-height: 20px;
    text-align: left;
  }

  .wyfr-tree-menu___root {
    min-width: 100%;
    display: table;
  }

  .wyfr-tree-menu___root-wrap {
    overflow-x: auto;
  }

  .wyfr-tree-menu___root, .wyfr-tree-menu___root-wrap {
    height: 100%;
  }

  .wyfr-tree-menu___section-heading {
    padding: 10px 20px;
  }


  .wyfr-accordion___transitions-disabled, .wyfr-accordion___transitions-disabled * {
      transition: none !important;
    }
  .wyfr-accordion___container {
    width: 100%;
    transition-property: background, height, color;
    transition-duration: 300ms, 300ms, 150ms;
    overflow: hidden;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    background: #ffffff;
    color: #426da9;
  }
  .wyfr-accordion___container + .wyfr-accordion___container {
      border-top-right-radius: 0;
      border-top-left-radius: 0;
      margin-top: -1px;
    }
  .wyfr-accordion___container:hover {
      color: #1d4f91;
    }
  .wyfr-accordion___container:active {
      color: #123f7a;
    }
  .wyfr-accordion___container-gray {
    background: #f6f6f6;
  }
  .wyfr-accordion___container-blur {
    box-shadow: inset 0 0 0 1px #d6d6d6;
  }
  .wyfr-accordion___container-focus {
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 0 1px currentColor, 0 0 0 1px currentColor;
  }
  .wyfr-accordion___container-last {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .wyfr-accordion___summary {
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: default;
    outline: none;
    list-style: none;
    font: 500 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    padding-right: 21px;
    padding-left: 21px;
  }
  .wyfr-accordion___summary-first {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
  }
  .wyfr-accordion___summary-last {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .wyfr-accordion___summary-closed:focus {
      box-shadow: inset 0 0 0 1px #426da9;
    }
  .wyfr-accordion___summary-closed:not(:focus) {
      border-top: 1px solid #d6d6d6;
      border-right: 1px solid #d6d6d6;
      border-left: 1px solid #d6d6d6;
      padding-right: calc(21px - 1px);
      padding-left: calc(21px - 1px);
    }
  .wyfr-accordion___summary-content {
    display: flex;
  }
  .wyfr-accordion___summary-text {
    min-height: 20px;
    box-sizing: content-box;
    color: #333333;
    word-break: break-word;
  }
  .wyfr-accordion___summary-text-focus {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .wyfr-accordion___summary-text-blur-closed {
    padding-top: calc(10px - 1px);
    padding-bottom: calc(10px - 1px);
  }
  .wyfr-accordion___summary-tag {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .wyfr-accordion___chevron {
    min-width: 10px;
    fill: currentColor;
    margin-right: 12px;
    transition-property: transform;
    transition-duration: 300ms;
  }
  .wyfr-accordion___chevron-focus {
    margin-top: calc(10px + 7px);
  }
  .wyfr-accordion___chevron-blur-closed {
    margin-top: calc(10px + 6px);
  }
  .wyfr-accordion___chevron-rotate {
    transform: rotate(-180deg);
  }
  .wyfr-accordion___details {
    color: #333333;
    transition-property: opacity, transform;
    transition-duration: 300ms;
    padding-top: 20px;
    margin-right: 16px;
    padding-bottom: 20px;
    margin-left: 16px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #d6d6d6;
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-accordion___details-hidden {
    opacity: 0;
    transform: translateY(calc(20pxpx * -1));
    pointer-events: none;
  }
  .wyfr-accordion___measure {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }


  .wyfr-button-group___container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }


  .wyfr-checkbox___checkbox-common {
    border-radius: 2px;
    width: 16px;
    height: 16px;
    background-size: 16px;
    position: relative;
  }


  .wyfr-checkbox___checkbox-common::after {
      position: absolute;
      content: "";
    }
  .wyfr-checkbox___determinate-common::after {
      border-style: solid;
      border-color: currentColor;
      transform: rotate(-45deg);
    }
  .wyfr-checkbox___determinate-inactive::after {
      top: 4px;
      left: 2px;
      width: 10px;
      height: 4px;
      border-top-width: 0;
      border-right-width: 0;
      border-bottom-width: 2px;
      border-left-width: 2px;
    }
  .wyfr-checkbox___determinate-active::after {
      top: 5px;
      left: 3px;
      width: 9px;
      height: 3px;
      border-top-width: 0;
      border-right-width: 0;
      border-bottom-width: 1px;
      border-left-width: 1px;
    }
  .wyfr-checkbox___indeterminate-common::before {
      content: "";
      position: absolute;
      top: 1px;
      left: 1px;
      width: 14px;
      height: 14px;
      border-radius: 1px;
      box-shadow: inset 0 0 0 3px currentColor;
    }
  .wyfr-checkbox___indeterminate-common::after {
      background-color: transparent;
      box-shadow: 0 0 0 3px currentColor;
      border-radius: 1px;
    }
  .wyfr-checkbox___indeterminate-inactive::after {
      top: 4px;
      left: 4px;
      width: 8px;
      height: 8px;
    }
  .wyfr-checkbox___indeterminate-active::after {
      top: 5px;
      left: 5px;
      width: 6px;
      height: 6px;
    }


  .wyfr-choice___container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .wyfr-choice___control {
    display: flex;
    flex-shrink: 0;
  }
  .wyfr-choice___label {
    margin-top: -2px;
    margin-bottom: -2px;
  }


  .wyfr-closed-sidebar-menu___root {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .wyfr-closed-sidebar-menu___marker-common {
    background: #e63888;
    position: absolute;
    left: 0;
    width: 4px;
    transition-property: top;
    transition-duration: 300ms;
  }
  .wyfr-closed-sidebar-menu___marker-visible {
    height: calc(48px - 2px);
  }
  .wyfr-closed-sidebar-menu___marker-hidden {
    height: 0;
  }
  .wyfr-closed-sidebar-menu___item {
    padding-top: 1px;
    padding-left: 1px;
    width: calc(56px - 2px);
    height: calc(48px - 2px);
    display: grid;
  }


  .wyfr-date-picker___range {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 16px;
    margin-right: calc(-1 * 8px);
  }
  .wyfr-date-picker___nested-input-wrap {
    position: relative;
  }
  .wyfr-date-picker___nested-input {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%23426da9'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    cursor: inherit;
    min-width: 128px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    outline: 0;
    font: inherit;
    background-color: inherit;
    color: inherit;
    background-position-y: center;
    background-position-x: calc(100% - 4px);
    background-repeat: no-repeat;
    padding-right: 32px;
  }
  .wyfr-date-picker___nested-input:hover {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%231d4f91'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    }
  .wyfr-date-picker___nested-input:active {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%23123f7a'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    }
  .wyfr-date-picker___nested-input:disabled {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%238c8c8c'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    }
  .wyfr-date-picker___nested-input[type=date]::-webkit-calendar-picker-indicator {
      position: absolute;
      right: 0;
      background: transparent;
      width: 30px;
    }
  .wyfr-date-picker___nested-input::-webkit-datetime-edit-fields-wrapper, .wyfr-date-picker___nested-input::-webkit-datetime-edit-year-field, .wyfr-date-picker___nested-input::-webkit-datetime-edit-month-field, .wyfr-date-picker___nested-input::-webkit-datetime-edit-day-field {
        color: inherit;
      }
  .wyfr-date-picker___nested-input-empty {
    color: #8c8c8c;
  }


  .wyfr-disc___items {
    display: inline-flex;
    position: relative;
    transition-property: top, left;
    transition-duration: 150ms;
    top: calc(var(--wyfr-disc-column) * var(--wyfr-disc-selected-index) * -1 * var(--wyfr-disc-size));
    left: calc(var(--wyfr-disc-row) * var(--wyfr-disc-selected-index) * -1 * var(--wyfr-disc-size));
  }
  .wyfr-disc___row {
    --wyfr-disc-column: 0;
    --wyfr-disc-row: 1;
    flex-direction: row;
  }
  .wyfr-disc___column {
    --wyfr-disc-row: 0;
    --wyfr-disc-column: 1;
    flex-direction: column;
  }
  .wyfr-disc___no-padding {
    padding: 0;
  }
  .wyfr-disc___no-palette {
    overflow: hidden;
  }
  .wyfr-disc___size {
    width: var(--wyfr-disc-size);
    height: var(--wyfr-disc-size);
    min-width: var(--wyfr-disc-size);
    min-height: var(--wyfr-disc-size);
  }
  .wyfr-disc___small {
    --wyfr-disc-size: 24px;
    --wyfr-disc-stroke-width: 1px;
  }
  .wyfr-disc___medium {
    --wyfr-disc-size: 32px;
    --wyfr-disc-stroke-width: 1px;
  }
  .wyfr-disc___large {
    --wyfr-disc-size: 48px;
    --wyfr-disc-stroke-width: 2px;
  }
  .wyfr-disc___photo {
    border-radius: 9999px;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    width: calc(var(--wyfr-disc-size) - 2 * var(--wyfr-disc-stroke-width));
    height: calc(var(--wyfr-disc-size) - 2 * var(--wyfr-disc-stroke-width));
  }
  .wyfr-disc___photo-disabled {
    filter: grayscale(100%) contrast(50%);
  }

  .wyfr-disc___item-small {
    font: 400 12px/16px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-disc___item-medium {
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-disc___item-large {
    font: 700 18px/24px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-disc___item {
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .wyfr-disc___round {
    border-radius: 9999px;
  }


  .wyfr-divider___common {
    background-color: var(--wyfr-cb-divider-color, #d6d6d6);
    margin: 0;
    border: 0;
    flex-shrink: 0;
  }
  .wyfr-divider___abs-x {
    height: 1px;
    width: 1em;
    min-width: 1em;
  }
  .wyfr-divider___abs-y {
    width: 1px;
    height: 1em;
    min-height: 1em;
  }
  .wyfr-divider___max-x {
    height: 1px;
    width: 100%;
  }
  .wyfr-divider___max-y {
    width: 1px;
    height: 100%;
  }


  .wyfr-drawer___container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.5s;
    max-width: var(--wyfr-drawer-width);
    box-sizing: border-box;
    transform: translateX(0);
  }

  .wyfr-drawer___container-hidden {
    transform: translateX(var(--wyfr-drawer-width));
  }

  .wyfr-drawer___container-small {
    --wyfr-drawer-width: 400px;
  }

  .wyfr-drawer___container-medium {
    --wyfr-drawer-width: 600px;
  }

  .wyfr-drawer___container-large {
    --wyfr-drawer-width: 904px;
  }

  .wyfr-drawer___container-max {
    --wyfr-drawer-width: 100%;
  }

  .wyfr-drawer___layer {
    display: grid;
    width: 100%;
    height: 100%;
  }


  .wyfr-dropdown___selection-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 4px;
    padding-right: 4px;
  }
  .wyfr-dropdown___selection-label-common {
    position: relative;
    padding-right: 32px;
    padding-left: 8px;
    background-position: calc(100% - 8px);
    background-repeat: no-repeat;
  }
  .wyfr-dropdown___selection-label-default {
    
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 1.808L10.193.75 6 4.942 1.808.75.75 1.808 4.942 6 .75 10.193l1.058 1.057L6 7.058l4.193 4.192 1.057-1.057L7.058 6l4.192-4.192z' fill='%23883b92'/%3E%3C/svg%3E");

  }
  .wyfr-dropdown___selection-label-hover {
    
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 1.808L10.193.75 6 4.942 1.808.75.75 1.808 4.942 6 .75 10.193l1.058 1.057L6 7.058l4.193 4.192 1.057-1.057L7.058 6l4.192-4.192z' fill='%236d2077'/%3E%3C/svg%3E");

  }
  .wyfr-dropdown___selection-label-error {
    
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 1.808L10.193.75 6 4.942 1.808.75.75 1.808 4.942 6 .75 10.193l1.058 1.057L6 7.058l4.193 4.192 1.057-1.057L7.058 6l4.192-4.192z' fill='%23e4002b'/%3E%3C/svg%3E");

  }
  .wyfr-dropdown___selection-label-error-hover {
    
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 1.808L10.193.75 6 4.942 1.808.75.75 1.808 4.942 6 .75 10.193l1.058 1.057L6 7.058l4.193 4.192 1.057-1.057L7.058 6l4.192-4.192z' fill='%23c60025'/%3E%3C/svg%3E");

  }
  .wyfr-dropdown___selection-label-disabled {
    
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 1.808L10.193.75 6 4.942 1.808.75.75 1.808 4.942 6 .75 10.193l1.058 1.057L6 7.058l4.193 4.192 1.057-1.057L7.058 6l4.192-4.192z' fill='%238c8c8c'/%3E%3C/svg%3E");
;
  }
  .wyfr-dropdown___selection-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    padding-top: 0;
    padding-right: 32px;
    padding-bottom: 0;
    padding-left: 8px;
    margin: 0;
    border: 0;
    font: inherit;
    background: transparent;
    color: inherit;
    cursor: inherit;
  }


  .wyfr-input___container-content {
    display: flex;
    width: 100%;
  }
  .wyfr-input___control {
    position: relative;
    box-sizing: border-box;
    min-width: 50px;
    min-height: 30px;
    flex: 1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    border: 0;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    background: transparent;
    color: inherit;
  }
  .wyfr-input___control:disabled {
      -webkit-text-fill-color: inherit;
      cursor: not-allowed;
    }
  .wyfr-input___control:disabled::-moz-placeholder {
        color: #8c8c8c;
      }
  .wyfr-input___control:disabled::placeholder {
        color: #8c8c8c;
      }
  .wyfr-input___control:not(:disabled)::-moz-placeholder {
      color: #717171;
    }
  .wyfr-input___control:not(:disabled)::placeholder {
      color: #717171;
    }
  .wyfr-input___control:first-child {
      padding-left: 8px;
    }
  .wyfr-input___control:last-child {
      padding-right: 8px;
    }
  /* chrome */
  .wyfr-input___control[type=date]::-webkit-calendar-picker-indicator {
        position: absolute;
        right: 0;
        background: transparent;
        width: 30px;
      }
  /* safari */
  .wyfr-input___control[type=date]::-webkit-datetime-edit-fields-wrapper, .wyfr-input___control[type=date]::-webkit-datetime-edit-year-field, .wyfr-input___control[type=date]::-webkit-datetime-edit-month-field, .wyfr-input___control[type=date]::-webkit-datetime-edit-day-field {
          color: inherit;
        }
  .wyfr-input___control[type=time]::-webkit-calendar-picker-indicator {
      display: none;
    }
  .wyfr-input___control[type=number] {
      text-align: center;
      -moz-appearance: textfield;
    }
  .wyfr-input___control[type=number]::-webkit-outer-spin-button, .wyfr-input___control[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
                appearance: none;
      }
  /* chrome */
  .wyfr-input___control[list]::-webkit-calendar-picker-indicator {
        opacity: 0;
      }
  .wyfr-input___control-multi-select.wyfr-input___control-multi-select {
      padding: 4px;
    }
  .wyfr-input___control-color {
    height: 30px;
  }
  .wyfr-input___control-file {
    padding-top: 6px;
  }
  .wyfr-input___control-file::-webkit-file-upload-button {
      -webkit-appearance: none;
              appearance: none;
      border: 0;
      margin-top: 0;
      margin-right: 8px;
      margin-bottom: 0;
      margin-left: 0;
      padding: 0;
      background: transparent;
      font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
      color: #426da9;
    }
  .wyfr-input___control-file::file-selector-button {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: 0;
      margin-top: 0;
      margin-right: 8px;
      margin-bottom: 0;
      margin-left: 0;
      padding: 0;
      background: transparent;
      font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
      color: #426da9;
    }
  .wyfr-input___control-file:hover::-webkit-file-upload-button {
      color: #1d4f91;
    }
  .wyfr-input___control-file:hover::file-selector-button {
      color: #1d4f91;
    }
  .wyfr-input___control-file:active::-webkit-file-upload-button {
      color: #123f7a;
    }
  .wyfr-input___control-file:active::file-selector-button {
      color: #123f7a;
    }
  .wyfr-input___control-file:disabled::-webkit-file-upload-button {
      color: #8c8c8c;
    }
  .wyfr-input___control-file:disabled::file-selector-button {
      color: #8c8c8c;
    }
  .wyfr-input___control-opener {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%23426da9'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    background-position-y: center;
    background-position-x: calc(100% - 4px);
    background-repeat: no-repeat;
  }
  .wyfr-input___control-opener.wyfr-input___control-opener {
      padding-right: 32px;
    }
  .wyfr-input___control-opener:hover {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%231d4f91'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    }
  .wyfr-input___control-opener:active {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%23123f7a'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    }
  .wyfr-input___control-opener:disabled {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='5' fill='%238c8c8c'%3E%3Cpath d='M0 0l5 5 4-5z'/%3E%3C/svg%3E");
    }
  .wyfr-input___addon-wrap {
    display: inline-flex;
  }
  .wyfr-input___addon {
    display: inline-flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-input___addon-control {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    margin: 0;
    border: none;
    background: transparent;
    color: #426da9;
    cursor: pointer;
  }
  .wyfr-input___addon-control:hover {
      color: #1d4f91;
    }
  .wyfr-input___addon-control.wyfr-input___addon-control:active {
      color: #123f7a;
    }
  .wyfr-input___addon-control + .wyfr-input___addon-control {
      padding-left: 4px;
      margin-left: calc(-1 * 4px);
    }
  .wyfr-input___addon-control-error {
    color: #e4002b;
  }
  .wyfr-input___addon-control-error:hover {
      color: #c60025;
    }
  .wyfr-input___addon-control-error.wyfr-input___addon-control-error:active {
      color: #a8001f;
    }
  .wyfr-input___addon-display {
    background-color: #eaeaea;
    color: #8c8c8c;
  }
  .wyfr-input___addon-display + .wyfr-input___addon-display {
      padding-left: 4px;
      margin-left: calc(-1 * 4px);
    }
  :first-child > .wyfr-input___addon-display:last-child {
      margin-right: 8px;
    }
  :last-child > .wyfr-input___addon-display:first-child {
      margin-left: 8px;
    }
  .wyfr-input___addon-display-error {
    background: #FFD6DD;
    color: #c60025;
  }


  .wyfr-menu___common-animation {
    transition-duration: 300ms;
  }
  .wyfr-menu___root {
    position: relative;
  }
  .wyfr-menu___root-indicator-common {
    background: #e63888;
    position: absolute;
    left: 0;
    width: 4px;
    transition-property: top,height;
  }
  .wyfr-menu___root-indicator-popover-first {
    border-top-left-radius: 3px;
    transform: translateY(-1px);
  }
  .wyfr-menu___root-indicator-popover-last {
    border-bottom-left-radius: 3px;
    transform: translateY(1px);
  }
  .wyfr-menu___submenu-items-common {
    list-style-type: none;
    padding: 0;
    margin: 0;
    transform-origin: bottom;
    transition-property: margin,transform,opacity,visibility;
  }
  .wyfr-menu___submenu-items-root {
    margin: 1px;
  }
  .wyfr-menu___submenu-items-hidden {
    transform: rotateX(90deg);
    opacity: 0;
    visibility: hidden;
  }
  .wyfr-menu___submenu-items-visible {
    transform: rotateX(0);
    opacity: 1;
    visibility: inherit;
  }
  .wyfr-menu___item-base {
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: calc(20px + var(--wyfr-menu-item-indent) * 32px);
    font: 500 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    display: flex;
    align-items: flex-start;
    position: relative;
  }
  .wyfr-menu___section-divider {
    position: relative;
    height: 32px;
  }
  .wyfr-menu___section-divider::after {
      content: '';
      position: absolute;
      top: calc(16px - 1px);
      right: 8px;
      left: 8px;
      height: 1px;
      background: #d6d6d6;
    }
  .wyfr-menu___section-label {
    position: relative;
  }
  .wyfr-menu___section-label::after {
      content: '';
      position: absolute;
      right: -1px;
      bottom: 0;
      left: -1px;
      height: 1px;
      background: #d6d6d6;
    }
  .wyfr-menu___section-scoot-over-label-divider::after {
      left: 3px;
    }
  .wyfr-menu___item-root-unselected {
    z-index: 1;
  }
  .wyfr-menu___item-root-selected {
    margin-right: -1px;
    margin-left: 3px;
    z-index: -1px;
  }
  .wyfr-menu___item-root-selected > * {
      transform: translateX(-3px);
    }
  .wyfr-menu___item-popover-first {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
  }
  .wyfr-menu___item-popover-last {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
  }
  .wyfr-menu___item-chevron-common {
    margin-left: 16px;
    transition-property: transform;
  }
  .wyfr-menu___item-chevron-open {
    transform: none;
  }
  .wyfr-menu___item-chevron-closed {
    transform: rotate(180deg);
  }


  .wyfr-pagination___page-button {
    line-height: 1;
    padding: 4px 8px;
    margin: 4px 1px;
  }

  .wyfr-pagination___root {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    overflow-x: auto;
  }

  .wyfr-pagination___icon {
    fill: currentColor;
    font-size: 12px;
    width: calc(2em / 3);
    min-width: calc(2em / 3);
    height: 7em / 6;
    min-height: 7em / 6;
  }


  .wyfr-primary-header___container {
    width: 100%;
    overflow: hidden;
    padding: 0;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .wyfr-primary-header___content {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .wyfr-primary-header___gradient-bar {
    flex-basis: 2px;
    flex-shrink: 0;
    background-image: linear-gradient(to right, #af1685, #1d4f91);
  }

  .wyfr-primary-header___vertical-rule {
    width: 1px;
    height: 32px;
    flex-shrink: 0;
  }

  .wyfr-primary-header___product-name {
    white-space: nowrap;
  }

  .wyfr-primary-header___nav {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    white-space: nowrap;
  }

  .wyfr-primary-header___utilities {
    display: flex;
    padding-left: 20px;
    gap: 20px;
  }

  .wyfr-primary-header___tabs {
    height: calc(64px - 2px);
    min-width: 0;
  }

  .wyfr-primary-header___tab-content {
    padding: calc(12px + 1px) 12px;
  }


  @keyframes wyfr-progress___indeterminate {
    to {
      background-position: right;
    }
  }

  .wyfr-progress___common {
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: currentColor;
    border-radius: 9999px;
    box-sizing: border-box;
    height: 8px;
    background-color: #ffffff;
  }

  .wyfr-progress___common::-webkit-progress-bar {
        background-color: transparent;
      }

  .wyfr-progress___common::-webkit-progress-value {
        background-color: currentColor;
      }

  .wyfr-progress___common::-moz-progress-bar {
      background-color: currentColor;
    }
  .wyfr-progress___magenta {
    color: #e63888;
  }
  .wyfr-progress___indeterminate {
    background-color: currentColor;
    background-image: linear-gradient(90deg,rgba(255, 255, 255, 0.3),rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.3),transparent,rgba(255, 255, 255, 0.3));
    background-size: 50%;
    animation-name: wyfr-progress___indeterminate;
    animation-timing-function: linear;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }


  .wyfr-radio___container {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 9999px;
  }


  .wyfr-radio___container:checked::after {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        width: 14px;
        height: 14px;
        border-radius: 9999px;
      }


  .wyfr-radio___container:checked:active::after {
        box-shadow: inset 0 0 0 4px currentColor;
      }


  .wyfr-radio___container:checked:not(:active)::after {
        box-shadow: inset 0 0 0 3px currentColor;
      }


  .wyfr-segmented-control___container {
    display: inline-flex;
    border-radius: 9999px;
    background: #f6f6f6;
    border-width: 1px;
    border-style: solid;
    border-color: #d6d6d6;
    padding: 3px;
    position: relative;
    isolation: isolate;
  }
  .wyfr-segmented-control___content {
    flex: 1px;
    position: relative;
    display: flex;
  }
  .wyfr-segmented-control___marker {
    position: absolute;
    z-index: -1px;
    top: 0;
    bottom: 0;
    border-radius: 9999px;
  }
  .wyfr-segmented-control___marker-transition {
    transition-property: left,width;
    transition-duration: 150ms;
  }
  .wyfr-segmented-control___segment-wrap + .wyfr-segmented-control___segment-wrap {
      margin-left: 8px;
    }
  .wyfr-segmented-control___segment {
    padding-top: 5px;
    padding-right: 8px;
    padding-bottom: 5px;
    padding-left: 8px;
    border-radius: 9999px;
  }
  .wyfr-segmented-control___segment-transitioning.wyfr-segmented-control___segment-transitioning {
      background: transparent;
    }


  .wyfr-sidebar___border {
    border-width: 0;
    border-style: solid;
    border-color: #d6d6d6;
  }
  .wyfr-sidebar___sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition-property: width;
    background: #f6f6f6;
    border-style: solid;
    border-right-width: 1px;
  }
  .wyfr-sidebar___content-wrap-common {
    height: 100%;
    flex: 1;
    overflow-x: hidden;
  }
  .wyfr-sidebar___content-wrap-open {
    overflow-y: auto;
  }
  .wyfr-sidebar___content-wrap-closed {
    overflow-y: hidden;
  }
  .wyfr-sidebar___content {
    display: flex;
    align-items: flex-start;
  }
  .wyfr-sidebar___box-common {
    transition-property: margin;
  }
  .wyfr-sidebar___box-hidden, .wyfr-sidebar___box-hidden > * {
      visibility: hidden;
    }
  .wyfr-sidebar___box-open {
    min-width: 160px;
  }
  .wyfr-sidebar___box-closed {
    min-width: 56px;
  }
  .wyfr-sidebar___animation-speed {
    transition-duration: 300ms;
  }
  .wyfr-sidebar___divider {
    width: 100%;
    height: 0;
    border-bottom-width: 1px;
    margin: 0;
  }
  .wyfr-sidebar___toggle-button {
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
  }
  .wyfr-sidebar___icon-wrap {
    display: flex;
    flex-shrink: 0;
  }
  .wyfr-sidebar___icon-common {
    transition-property: transform;
  }
  .wyfr-sidebar___icon-closed {
    transform: scaleX(-1);
  }
  .wyfr-sidebar___toggle-label-common {
    margin-left: 12px;
    transition-property: opacity;
    transition-duration: 300ms;
  }
  .wyfr-sidebar___toggle-label-open {
    opacity: 1;
  }
  .wyfr-sidebar___toggle-label-closed {
    opacity: 0;
  }


  .wyfr-slider___container {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-around;
    height: 20px;
  }
  .wyfr-slider___container-with-labels {
    height: 32px;
  }
  .wyfr-slider___input {
    margin: 0;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    background: transparent;
  }
  .wyfr-slider___input::-webkit-slider-runnable-track {
        
  width: 100%;
  height: 8px;
  background: #eaeaea;
  border-width: 1px;
  border-style: solid;
  border-color: #c1c1c1;
  border-radius: 9999px;
  -webkit-transition-property: background;
  transition-property: background;
  transition-duration: 150ms;

      }
  .wyfr-slider___input::-webkit-slider-thumb {
        -webkit-appearance: none;
        
  background: #426da9;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  margin-top: -7px;
  -webkit-transition-property: background, transform;
  transition-property: background, transform;
  transition-duration: 150ms;

      }
  .wyfr-slider___input::-moz-range-thumb {
        
  background: #426da9;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  margin-top: -7px;
  -moz-transition-property: background, transform;
  transition-property: background, transform;
  transition-duration: 150ms;

      }
  .wyfr-slider___input::-moz-range-track {
        
  width: 100%;
  height: 8px;
  background: #eaeaea;
  border-width: 1px;
  border-style: solid;
  border-color: #c1c1c1;
  border-radius: 9999px;
  -moz-transition-property: background;
  transition-property: background;
  transition-duration: 150ms;

      }
  .wyfr-slider___input:hover:not(:disabled)::-webkit-slider-runnable-track {
            background: #f6f6f6;
          }
  .wyfr-slider___input:hover:not(:disabled)::-webkit-slider-thumb {
            background: #1d4f91;
          }
  .wyfr-slider___input:hover:not(:disabled)::-moz-range-track {
            background: #f6f6f6;
          }
  .wyfr-slider___input:hover:not(:disabled)::-moz-range-thumb {
            background: #1d4f91;
          }
  .wyfr-slider___input:focus::-webkit-slider-thumb {
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25),0 0 0 1px #1d4f91;
        }
  .wyfr-slider___input:focus::-moz-range-thumb {
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25),0 0 0 1px #1d4f91;
        }
  .wyfr-slider___input.wyfr-slider___input:active:not(:disabled)::-webkit-slider-runnable-track {
            background: #ffffff;
          }
  .wyfr-slider___input.wyfr-slider___input:active:not(:disabled)::-webkit-slider-thumb {
            
  background: #123f7a;
  transform: scale(0.9);

          }
  .wyfr-slider___input.wyfr-slider___input:active:not(:disabled)::-moz-range-track {
            background: #ffffff;
          }
  .wyfr-slider___input.wyfr-slider___input:active:not(:disabled)::-moz-range-thumb {
            
  background: #123f7a;
  transform: scale(0.9);

          }
  .wyfr-slider___input.wyfr-slider___input.wyfr-slider___input:disabled {
      cursor: not-allowed;
    }
  .wyfr-slider___input.wyfr-slider___input.wyfr-slider___input:disabled::-webkit-slider-thumb {
          background: #8c8c8c;
        }
  .wyfr-slider___input.wyfr-slider___input.wyfr-slider___input:disabled::-moz-range-thumb {
          background: #8c8c8c;
        }
  .wyfr-slider___labels {
    font: 400 12px/16px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: #717171;
    display: flex;
    justify-content: space-between;
    margin-top: -10px;
    margin-bottom: -9px;
  }


  .wyfr-sort-button___button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    outline: 0;
    border-radius: 4px;
    background: transparent;
    margin: 0;
    padding: 0;
    width: 16px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }


  .wyfr-sort-button___button:focus {
      box-shadow: 0 0 0 1px #426da9;
    }


  .wyfr-sort-button___button:focus:hover {
        box-shadow: 0 0 0 1px #1d4f91;
      }


  .wyfr-sort-button___button:focus:active {
        box-shadow: 0 0 0 1px #123f7a;
      }


  .wyfr-step-sequence___root-common > * {
      flex: 1;
  }
  .wyfr-step-sequence___root-row {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .wyfr-step-sequence___root-column {
    display: inline-flex;
    flex-direction: column;
  }

  .wyfr-step-sequence___button-common {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: none;
    display: flex;
    align-items: stretch;
    text-align: center;
  }
  .wyfr-step-sequence___button-row {
    flex-direction: column;
  }
  .wyfr-step-sequence___button-column {
    flex-direction: row;
  }
  .wyfr-step-sequence___button-graphic-common {
    display: flex;
    align-items: center;
  }
  .wyfr-step-sequence___button-graphic-column {
    flex-direction: column;
  }
  .wyfr-step-sequence___button-graphic-row {
    flex-direction: row;
  }
  .wyfr-step-sequence___button-connector-common {
    flex: 1;
  }
  .wyfr-step-sequence___button-connector-row {
    height: 2px;
  }
  .wyfr-step-sequence___button-connector-column {
    width: 2px;
  }
  .wyfr-step-sequence___button-connector-visited-enabled {
    background-color: #426da9;
  }
  .wyfr-step-sequence___button-connector-visited-disabled {
    background-color: #8c8c8c;
  }
  .wyfr-step-sequence___button-connector-current {
    background-color: #883b92;
  }
  .wyfr-step-sequence___button-connector-future {
    background-color: #ffd8f0;
  }
  .wyfr-step-sequence___button-label-small {
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-step-sequence___button-label-medium {
    font: 400 18px/24px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-step-sequence___button-label-large {
    font: 400 24px/32px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }
  .wyfr-step-sequence___button-label-row {
    margin-top: 8px;
  }
  .wyfr-step-sequence___button-label-column {
    display: flex;
    align-items: center;
    margin-left: 8px;
  }


  .wyfr-switch___common {
    border-radius: 9999px;
    width: 32px;
    height: 16px;
    position: relative;
  }


  .wyfr-switch___common::after {
      content: "";
      position: absolute;
      border-radius: 9999px;
      transition-property: background-color, box-shadow;
      transition-duration: 64ms;
    }


  .wyfr-switch___common:checked::after {
      top: calc(50% - 4px);
      left: calc(100% - 12px);
      width: 8px;
      height: 8px;
      background-color: currentColor;
    }


  .wyfr-switch___common:not(:checked)::after {
        box-shadow: inherit;
      }


  .wyfr-switch___common:not(:checked):focus::after {
        top: 0;
        left: 0;
        width: 16px;
        height: 16px;
        transform: scale(0.5);
      }


  .wyfr-switch___common:not(:checked):not(:focus)::after {
        top: calc(50% - 4px);
        left: 4px;
        width: 8px;
        height: 8px;
      }


  .wyfr-token___layout {
    display: flex;
    align-items: center;
    margin: 0 8px;
    gap: 8px;
  }

  .wyfr-token___text {
    color: #333333;
    padding-top: 1px;
    padding-bottom: 1px;
    white-space: nowrap;
  }

  .wyfr-token___x {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    margin: 0;
    padding: 0;
    outline: none;
    font: inherit;
    background: transparent;
    color: inherit;
    display: flex;
  }


  .wyfr-toolbar___root, .wyfr-toolbar___content-selection {
    overflow: hidden;
  }
  .wyfr-toolbar___root {
    width: 100%;
  }
  .wyfr-toolbar___content-common {
    position: relative;
    display: flex;
    padding: 0;
    top: 0;
    transition: top 250ms;
    transition-timing-function: linear;
  }
  .wyfr-toolbar___content-with-selection {
    top: -100%;
  }


  .wyfr-tooltip___container {
    background: #333333;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
    font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 150ms;
    transition-delay: 0, 150ms;
  }
  .wyfr-tooltip___visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 150ms, 0;
  }
  .wyfr-tooltip___arrow {
    width: 6px;
    height: 6px;
  }
  .wyfr-tooltip___arrow::after {
      content: "";
      width: 0;
      height: 0;
      position: absolute;
      top: 0;
      left: 0;
      border-width: 6px;
      border-color: transparent;
      border-style: solid;
    }
  [data-popper-placement*='top'] > .wyfr-tooltip___arrow {
      bottom: calc(6px * -1);
    }
  [data-popper-placement*='top'] > .wyfr-tooltip___arrow::after {
        left: calc(6px / -2);
        border-bottom-width: 0;
        border-top-color: #333333;
      }
  [data-popper-placement*='right'] > .wyfr-tooltip___arrow {
      left: calc(6px * -1);
    }
  [data-popper-placement*='right'] > .wyfr-tooltip___arrow::after {
        top: calc(6px / -2);
        border-left-width: 0;
        border-right-color: #333333;
      }
  [data-popper-placement*='bottom'] > .wyfr-tooltip___arrow {
      top: calc(6px * -1);
    }
  [data-popper-placement*='bottom'] > .wyfr-tooltip___arrow::after {
        left: calc(6px / -2);
        border-top-width: 0;
        border-bottom-color: #333333;
      }
  [data-popper-placement*='left'] > .wyfr-tooltip___arrow {
      right: calc(6px * -1);
    }
  [data-popper-placement*='left'] > .wyfr-tooltip___arrow::after {
        top: calc(6px / -2);
        border-right-width: 0;
        border-left-color: #333333;
      }
._modalOverlay_17jcx_1 {
  align-items: center;
  background-color: var(--modal-overlay-bg-color, rgba(0, 0, 0, 0.07));
  background-size: 5px;
  background-image: var(--modal-overlay-bg-image, unset);
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 21000;
}

._modalOverlay_17jcx_1._hidden_17jcx_16 {
  display: none;
}

._disableOverlay_17jcx_20 {
  position: unset;
}

._modalDialog_17jcx_24 {
  position: absolute;
  width: var(--modal-width, initial);
  max-height: var(--modal-max-height, initial);
  box-shadow: var(--modal-boxshadow, 6px 6px 8px 0 rgba(0, 0, 0, 0.25));
  border-top: var(--modal-border-top, 4px solid var(--color-red));
  border-radius: var(--modal-border-radius, 0);
  padding: var(--modal-padding, 36px 24px 24px 36px);
  background: var(--modal-bg, white);
  transition: box-shadow 0.2s;
  user-select: none;
}

._glow_17jcx_37 {
  box-shadow: var(--modal-glow-boxshadow, #000 0 0 20px 3px);
}

._dialogTitle_17jcx_41 {
  position: relative;
  margin-bottom: var(--modal-title-margin-bottom, 24px);
  color: var(--modal-title-color, --color-text-blue);
  cursor: default;
  font-size: var(--modal-title-font-size, --font-xl);
  font-weight: 500;
  line-height: var(--modal-title-line-height, 1.8);
  display: var(--modal-title-display, block);
  justify-content: var(--modal-title-justify-content);
  align-items: var(--modal-title-align-items);
  align-content: var(--modal-title-align-content);
  flex-direction: var(--modal-flex-direction, row);
}

._dialogSubtitle_17jcx_56 {
  color: var(--color-text-blue);
  padding: var(--modal-subtitle-padding, 0 24px 7px 20px);
}

._divider_17jcx_61 {
  margin: 60px auto;
  width: 102px;
  border-color: black;
}

._dialogContent_17jcx_67 {
  margin-bottom: var(--modal-content-margin-bottom, 36px);
  user-select: text;
  overflow: var(--modal-dialog-content-overflow, visible);
  padding-right: var(
    --modal-content-padding-right,
    12px
  ); /* space for scrollbar subtracted from parent padding-right */
}

._expandCollapseButton_17jcx_77 {
  cursor: pointer;
  position: absolute;
  top: 11px;
  right: 48px;
  background: no-repeat center;
  width: 20px;
  height: 20px;
}

._expandCollapseButton_17jcx_77._expand_17jcx_77 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' stroke='%23AAA' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h1.5v3.75H4z'/%3E%3Cpath d='M4 4h3.75v1.5H4zM16 4h-1.5v3.75H16z'/%3E%3Cpath d='M16 4h-3.75v1.5H16zM4 16h1.5v-3.75H4z'/%3E%3Cpath d='M4 16h3.75v-1.5H4zM16 16h-1.5v-3.75H16z'/%3E%3Cpath d='M16 16h-3.75v-1.5H16z'/%3E%3C/svg%3E");
}

._expandCollapseButton_17jcx_77._expand_17jcx_77:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' stroke='%23C00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h1.5v3.75H4z'/%3E%3Cpath d='M4 4h3.75v1.5H4zM16 4h-1.5v3.75H16z'/%3E%3Cpath d='M16 4h-3.75v1.5H16zM4 16h1.5v-3.75H4z'/%3E%3Cpath d='M4 16h3.75v-1.5H4zM16 16h-1.5v-3.75H16z'/%3E%3Cpath d='M16 16h-3.75v-1.5H16z'/%3E%3C/svg%3E");
}

._expandCollapseButton_17jcx_77._collapse_17jcx_95 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' stroke='%23AAA' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 11.25V15h-1.5v-2.25H4v-1.5h3.75zm8.25 0v1.5h-2.25V15h-1.5v-3.75H16zM7.75 3v3.75H4v-1.5h2.25V3h1.5zm6 0v2.25H16v1.5h-3.75V3h1.5z'/%3E%3C/svg%3E");
}

._expandCollapseButton_17jcx_77._collapse_17jcx_95:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' stroke='%23C00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 11.25V15h-1.5v-2.25H4v-1.5h3.75zm8.25 0v1.5h-2.25V15h-1.5v-3.75H16zM7.75 3v3.75H4v-1.5h2.25V3h1.5zm6 0v2.25H16v1.5h-3.75V3h1.5z'/%3E%3C/svg%3E");
}

._xButton_17jcx_103 {
  cursor: pointer;
  padding: var(--modal-closebutton-padding, 5px 12px);
  position: absolute;
  top: var(--modal-closebutton-top, 8px);
  right: var(--modal-closebutton-right, 4px);
  z-index: 2;
  border-radius: 26px;
  height: 26px;
  width: 26px;
  max-height: 26px;
  padding: 0;
  margin: 0;
  padding-left: 5.25px;
  padding-top: 5.25px;
}

._xButton_17jcx_103 path {
  fill: none;
  stroke: #aaa;
  stroke-width: 2;
}

._xButton_17jcx_103:hover path {
  stroke: var(--xbutton-color-hover, #c00);
  stroke-width: 3;
}

._dialogButtons_17jcx_131 {
  display: flex;
  padding: var(--modal-button-bar-padding, 12px 0 15px);
}

._dialogButtons_17jcx_131 button {
  margin: 0 8px;
}

._dialogButtons_17jcx_131 button:last-child {
  margin-right: 0;
}

._dialogButtons_17jcx_131 button:first-child {
  margin-left: 0;
}

._seatedDialog_17jcx_148 {
  left: 0px;
  bottom: 0px;
  width: 100vw;
}

._titleCentered_17jcx_154 {
  text-align: center;
}
._menuItem_1520h_1 {
  display: flex;
  padding: 12px 16px;
  flex-direction: row;
  line-height: 1.4;
  cursor: pointer;
}

._menuItem_1520h_1:hover {
  background: var(--color-state-hover);
}

._label_1520h_13 {
  color: var(--color-text-black);
  font-size: var(--font-m);
}

._description_1520h_18 {
  color: var(--color-text-gray);
  font-size: var(--font-s);
}

._menuItem_1520h_1:hover ._label_1520h_13 {
  color: var(--color-text-white);
}

._menuItem_1520h_1:hover ._description_1520h_18 {
  color: #ccc;
}

._icon_1520h_31 {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 4px 13px 0 0;
  background: transparent no-repeat center;
}

._icon_1520h_31._Segmentation_1520h_39 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/events-f25446ab.svg');
}
._icon_1520h_31._EntityCohortAnalysis_1520h_42 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/cohorts-6ebcd2df.svg');
}
._icon_1520h_31._Funnel_1520h_45 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/funnel-23a8659c.svg');
}
._icon_1520h_31._SqlTable_1520h_48 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sql-58b2cd05.svg');
}
._icon_1520h_31._EntityPrediction_1520h_51 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/entity-fe68ce6c.svg');
}
._icon_1520h_31._EntityInstanceList_1520h_54 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/entity-fe68ce6c.svg');
}
._icon_1520h_31._SqlPrediction_1520h_57 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sqlPrediction-30cdcd44.svg');
}
._icon_1520h_31._SegmentAnalysis_1520h_60 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/segmentation-3d731ddb.svg');
}
._icon_1520h_31._Clustering_1520h_63 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/clustering-c0dfaad1.svg');
}
._icon_1520h_31._DimReduction_1520h_66 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/anomaly-5b08e0ea.svg');
}
._icon_1520h_31._Word2Vec_1520h_69 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/wordEmbedding-ec7a160a.svg');
}
._icon_1520h_31._EntityInstanceList_1520h_54 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/entity-fe68ce6c.svg');
}
:root {
  --nav-button-bg-size: 64px;
  --nav-button-med-size: 44px;

  /* Icons */
  --icon-navbar-home-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='20'%3E%3Cpath fill='gray' fill-rule='evenodd' class='shp0' d='M3.84 19.96V9.4H0L12-.2l12 9.6h-3.84v10.56H3.84zm10.56-7.68H9.6V19h4.8v-6.72z'/%3E%3C/svg%3E");
  --icon-navbar-home-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='20'%3E%3Cpath fill='%23f2eded' fill-rule='evenodd' class='shp0' d='M3.84 19.96V9.4H0L12-.2l12 9.6h-3.84v10.56H3.84zm10.56-7.68H9.6V19h4.8v-6.72z'/%3E%3C/svg%3E");
  --icon-navbar-home-active: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='20'%3E%3Cpath fill='%23fff' fill-rule='evenodd' class='shp0' d='M3.84 19.96V9.4H0L12-.2l12 9.6h-3.84v10.56H3.84zm10.56-7.68H9.6V19h4.8v-6.72z'/%3E%3C/svg%3E");

  --icon-navbar-new-normal: url('/decisionanalytics/ascend-intelligence/assets/new-05dcf459.svg');
  --icon-navbar-new-hover: url('/decisionanalytics/ascend-intelligence/assets/new-f86c83f9.svg');
  --icon-navbar-new-active: url('/decisionanalytics/ascend-intelligence/assets/new-05dcf459.svg');

  --icon-navbar-dashboard-normal: url('/decisionanalytics/ascend-intelligence/assets/dashboard-99391749.svg');
  --icon-navbar-dashboard-hover: url('/decisionanalytics/ascend-intelligence/assets/dashboard-6e66c605.svg');
  --icon-navbar-dashboard-active: url('/decisionanalytics/ascend-intelligence/assets/dashboard-02032d7c.svg');

  --icon-navbar-reports-normal: url('/decisionanalytics/ascend-intelligence/assets/dashboard-99391749.svg');
  --icon-navbar-reports-hover: url('/decisionanalytics/ascend-intelligence/assets/dashboard-6e66c605.svg');
  --icon-navbar-reports-active: url('/decisionanalytics/ascend-intelligence/assets/dashboard-02032d7c.svg');

  --icon-navbar-project-normal: url('/decisionanalytics/ascend-intelligence/assets/projects-0d6f70e6.svg');
  --icon-navbar-project-hover: url('/decisionanalytics/ascend-intelligence/assets/projects-adca3870.svg');
  --icon-navbar-project-active: url('/decisionanalytics/ascend-intelligence/assets/projects-74d1cb66.svg');

  --icon-navbar-business-normal: url('/decisionanalytics/ascend-intelligence/assets/business-normal-d3138017.svg');
  --icon-navbar-business-hover: url('/decisionanalytics/ascend-intelligence/assets/business-hovered-3c17f605.svg');
  --icon-navbar-business-active: url('/decisionanalytics/ascend-intelligence/assets/business-selected-a859b24b.svg');

  --icon-navbar-settings-normal: url('/decisionanalytics/ascend-intelligence/assets/settings-c2d1bb80.svg');
  --icon-navbar-settings-hover: url('/decisionanalytics/ascend-intelligence/assets/settings-97702947.svg');
  --icon-navbar-settings-active: url('/decisionanalytics/ascend-intelligence/assets/settings-51fb2878.svg');

  --icon-navbar-user-normal: url('/decisionanalytics/ascend-intelligence/assets/users-2a876010.svg');
  --icon-navbar-user-hover: url('/decisionanalytics/ascend-intelligence/assets/users-00f74158.svg');
  --icon-navbar-user-active: url('/decisionanalytics/ascend-intelligence/assets/users-af62abc1.svg');
}

._navBar_15dfq_39 {
  position: fixed;
  z-index: 21000;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: var(--navBar-width);
  flex: 0 0 auto;
  align-items: center;
  background: var(--color-navBar);
  padding: 50px 0 12px;
}

._menuOutter_15dfq_54 {
  position: absolute;
  left: 40px;
  background: transparent;
}

._menu_15dfq_54 {
  position: relative;
  left: 16px;
  min-width: 248px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  padding: 0 4px 4px;
  background: var(--color-menu-bg);
  border-radius: 4px;
  overflow-x: hidden;
  font-weight: var(--weight-medium);
}

._scrollableMenu_15dfq_74 {
  overflow-y: auto;
}

._scrollableMenu_15dfq_74::-webkit-scrollbar {
  display: none;
}

._topAnchor_15dfq_82 {
  top: -40px;
}

._bottomAnchor_15dfq_86 {
  bottom: 0;
}

._menuTitle_15dfq_90 {
  flex: 0 0 auto;
  height: 40px;
  padding-left: 14px;
  line-height: 40px;
  font-size: var(--font-xs);
  color: #b3b3b3;
}

._menuTitleWithSubtitle_15dfq_99 {
  line-height: 19px;
  padding-top: 8px;
}

.navBar-menuItem {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  line-height: 40px;
  border-radius: 4px;
  font-size: var(--font-s);
  color: #ebebeb;
  cursor: pointer;
}

.navBar-menuItem.navBar-selected {
  background: rgba(0, 0, 0, 0.46);
}

.navBar-menuItem:hover {
  background: rgba(140, 140, 140, 0.2);
}

._buttonWrapper_15dfq_123 {
  position: relative;
  margin-bottom: 12px;
}

._tooltip_15dfq_128 {
  display: none;
  position: absolute;
  top: 8px;
  left: 55px;
  padding: 3px 7px;
  border-radius: 4px;
  background: #010221;
  color: white;
  font-size: var(--font-xs);
  white-space: nowrap;
}

._buttonWrapper_15dfq_123:hover ._tooltip_15dfq_128 {
  display: block;
}

._button_15dfq_123 {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--color-navBar) no-repeat center;
  background-size: 18px;
  cursor: pointer;
}

._studioButton_15dfq_155 {
  background-size: var(--nav-button-bg-size);
}

._spacerFlex_15dfq_160 {
  flex: 2 0 auto;
}

._newProjectButton_15dfq_164 {
  flex: 0 0 auto;
  margin-top: 16px;
  padding: 0 4px 4px;
}

._newProjectButton_15dfq_164 button {
  width: 100%;
}

._button_15dfq_123:active,
._button_15dfq_123.navBar-selected {
  background-color: var(--color-navBar-icon-active);
}

._new_15dfq_164 {
  background-image: var(--icon-navbar-new-normal);
}
._buttonWrapper_15dfq_123:hover ._new_15dfq_164 {
  background-image: var(--icon-navbar-new-hover);
}
._new_15dfq_164:active,
._new_15dfq_164.navBar-selected {
  background-image: var(--icon-navbar-new-active);
}

/* Page icons */

._alerts_15dfq_193 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/alerts-3dc1f154.svg');
}
._buttonWrapper_15dfq_123:hover ._alerts_15dfq_193 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/alerts-853b71ae.svg');
}
._alerts_15dfq_193:active,
._alerts_15dfq_193.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/alerts-d59482f7.svg');
}

._charts_15dfq_205 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/charts-4a66b89a.svg');
}
._buttonWrapper_15dfq_123:hover ._charts_15dfq_205 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/charts-a781ba35.svg');
}
._charts_15dfq_205:active,
._charts_15dfq_205.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/charts-0b36037e.svg');
}

._dashboard_15dfq_217 {
  background-image: var(--icon-navbar-dashboard-normal);
}
._buttonWrapper_15dfq_123:hover ._dashboard_15dfq_217 {
  background-image: var(--icon-navbar-dashboard-hover);
}
._dashboard_15dfq_217:active,
._dashboard_15dfq_217.navBar-selected {
  background-image: var(--icon-navbar-dashboard-active);
}

._data_15dfq_229 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/data-2e461733.svg');
}
._buttonWrapper_15dfq_123:hover ._data_15dfq_229 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/data-037bbc38.svg');
}
._data_15dfq_229:active,
._data_15dfq_229.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/data-1d9bea7a.svg');
}

._exports_15dfq_241 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='21' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4l6 6-1 2-4-4v13H9V8l-4 4-1-2 6-6zm6.958-4a3.042 3.042 0 013.037 2.863l.005.179v10.916a3.042 3.042 0 01-2.863 3.037l-.179.005H14v-2h2.958c.536 0 .98-.408 1.036-.929l.006-.113V3.042c0-.536-.408-.98-.929-1.036L16.958 2H3.042c-.536 0-.98.408-1.036.929L2 3.042v10.916c0 .536.408.98.929 1.036l.113.006H6v2H3.042a3.042 3.042 0 01-3.037-2.863L0 13.958V3.042A3.042 3.042 0 012.863.005L3.042 0h13.916z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._buttonWrapper_15dfq_123:hover ._exports_15dfq_241 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='21' fill='%23f2eded' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4l6 6-1 2-4-4v13H9V8l-4 4-1-2 6-6zm6.958-4a3.042 3.042 0 013.037 2.863l.005.179v10.916a3.042 3.042 0 01-2.863 3.037l-.179.005H14v-2h2.958c.536 0 .98-.408 1.036-.929l.006-.113V3.042c0-.536-.408-.98-.929-1.036L16.958 2H3.042c-.536 0-.98.408-1.036.929L2 3.042v10.916c0 .536.408.98.929 1.036l.113.006H6v2H3.042a3.042 3.042 0 01-3.037-2.863L0 13.958V3.042A3.042 3.042 0 012.863.005L3.042 0h13.916z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._exports_15dfq_241:active,
._exports_15dfq_241.navBar-selected {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='21' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4l6 6-1 2-4-4v13H9V8l-4 4-1-2 6-6zm6.958-4a3.042 3.042 0 013.037 2.863l.005.179v10.916a3.042 3.042 0 01-2.863 3.037l-.179.005H14v-2h2.958c.536 0 .98-.408 1.036-.929l.006-.113V3.042c0-.536-.408-.98-.929-1.036L16.958 2H3.042c-.536 0-.98.408-1.036.929L2 3.042v10.916c0 .536.408.98.929 1.036l.113.006H6v2H3.042a3.042 3.042 0 01-3.037-2.863L0 13.958V3.042A3.042 3.042 0 012.863.005L3.042 0h13.916z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._hospital_15dfq_253 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='20' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 20C2.333 13.91 0 9.577 0 7a7 7 0 0114 0c0 2.577-2.333 6.91-7 13zM8 6V3H6v3H3v2h3v3h2V8h3V6H8z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px 19px;
}
._buttonWrapper_15dfq_123:hover ._hospital_15dfq_253 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='20' fill='%23f2eded' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 20C2.333 13.91 0 9.577 0 7a7 7 0 0114 0c0 2.577-2.333 6.91-7 13zM8 6V3H6v3H3v2h3v3h2V8h3V6H8z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._hospital_15dfq_253:active,
._hospital_15dfq_253.navBar-selected {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 20C2.333 13.91 0 9.577 0 7a7 7 0 0114 0c0 2.577-2.333 6.91-7 13zM8 6V3H6v3H3v2h3v3h2V8h3V6H8z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._list_15dfq_266 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/list-inactive-3e74bc1d.svg');
}
._buttonWrapper_15dfq_123:hover ._list_15dfq_266 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/list-hover-24535788.svg');
}
._list_15dfq_266:active,
._list_15dfq_266.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/list-active-f555d134.svg');
}

._mydashboard_15dfq_278 {
  background-image: var(--icon-navbar-my-dashboard-normal);
}
._buttonWrapper_15dfq_123:hover ._mydashboard_15dfq_278 {
  background-image: var(--icon-navbar-my-dashboard-hover);
}
._mydashboard_15dfq_278:active,
._mydashboard_15dfq_278.navBar-selected {
  background-image: var(--icon-navbar-my-dashboard-active);
}

._performance_15dfq_290 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='22' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M22 0h-9a2 2 0 00-2 2v3.523a9.11 9.11 0 011 .423V2a1 1 0 011-1h9a1 1 0 011 1v9a1 1 0 01-1 1h-5.23c.074.327.133.66.171 1H22a2 2 0 002-2V2a2 2 0 00-2-2'/%3E%3Cpath d='M22 7v4h-4V7h4zm-5-5v4h-4V2h4zm5 0v4h-4V2h4zm-5 5h-3.349a9.011 9.011 0 012.826 4H17V7zm-5.854 3.146L9.01 12.284a1.97 1.97 0 00-1.008-.282 2 2 0 102 2c0-.371-.108-.713-.284-1.01l2.136-2.137a.5.5 0 00-.707-.707'/%3E%3Cpath d='M13.413 18.432C12.453 17.586 10.394 17 8 17c-2.395 0-4.452.586-5.413 1.432A6.965 6.965 0 011 14c0-3.86 3.141-7 7-7 3.86 0 7 3.14 7 7a6.965 6.965 0 01-1.587 4.432M8 6a8 8 0 00-8 8 7.97 7.97 0 002.594 5.885l.023.02c.19.174.387.338.593.492l.061.046c.194.142.393.274.598.399l.107.066c.193.11.39.214.591.31.052.026.104.052.157.075.188.085.382.16.58.23.066.025.132.053.201.075.187.062.38.112.574.16.078.02.155.043.234.06.198.044.4.073.602.1.078.01.153.028.231.035a7.8 7.8 0 001.707 0c.08-.007.154-.024.232-.035.202-.027.404-.056.601-.1.08-.017.157-.04.235-.06.194-.048.387-.098.574-.16.068-.022.135-.05.202-.074.196-.071.391-.146.58-.231.052-.023.104-.05.156-.075a8.261 8.261 0 00.698-.376c.205-.125.404-.257.597-.4.021-.014.041-.03.062-.045a7.96 7.96 0 00.593-.491l.023-.021A7.97 7.97 0 0016 14a8 8 0 00-8-8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._performance_15dfq_290 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='22' fill='%23f2eded' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M22 0h-9a2 2 0 00-2 2v3.523a9.11 9.11 0 011 .423V2a1 1 0 011-1h9a1 1 0 011 1v9a1 1 0 01-1 1h-5.23c.074.327.133.66.171 1H22a2 2 0 002-2V2a2 2 0 00-2-2'/%3E%3Cpath d='M22 7v4h-4V7h4zm-5-5v4h-4V2h4zm5 0v4h-4V2h4zm-5 5h-3.349a9.011 9.011 0 012.826 4H17V7zm-5.854 3.146L9.01 12.284a1.97 1.97 0 00-1.008-.282 2 2 0 102 2c0-.371-.108-.713-.284-1.01l2.136-2.137a.5.5 0 00-.707-.707'/%3E%3Cpath d='M13.413 18.432C12.453 17.586 10.394 17 8 17c-2.395 0-4.452.586-5.413 1.432A6.965 6.965 0 011 14c0-3.86 3.141-7 7-7 3.86 0 7 3.14 7 7a6.965 6.965 0 01-1.587 4.432M8 6a8 8 0 00-8 8 7.97 7.97 0 002.594 5.885l.023.02c.19.174.387.338.593.492l.061.046c.194.142.393.274.598.399l.107.066c.193.11.39.214.591.31.052.026.104.052.157.075.188.085.382.16.58.23.066.025.132.053.201.075.187.062.38.112.574.16.078.02.155.043.234.06.198.044.4.073.602.1.078.01.153.028.231.035a7.8 7.8 0 001.707 0c.08-.007.154-.024.232-.035.202-.027.404-.056.601-.1.08-.017.157-.04.235-.06.194-.048.387-.098.574-.16.068-.022.135-.05.202-.074.196-.071.391-.146.58-.231.052-.023.104-.05.156-.075a8.261 8.261 0 00.698-.376c.205-.125.404-.257.597-.4.021-.014.041-.03.062-.045a7.96 7.96 0 00.593-.491l.023-.021A7.97 7.97 0 0016 14a8 8 0 00-8-8'/%3E%3C/g%3E%3C/svg%3E");
}
._performance_15dfq_290:active,
._performance_15dfq_290.navBar-selected {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='22' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M22 0h-9a2 2 0 00-2 2v3.523a9.11 9.11 0 011 .423V2a1 1 0 011-1h9a1 1 0 011 1v9a1 1 0 01-1 1h-5.23c.074.327.133.66.171 1H22a2 2 0 002-2V2a2 2 0 00-2-2'/%3E%3Cpath d='M22 7v4h-4V7h4zm-5-5v4h-4V2h4zm5 0v4h-4V2h4zm-5 5h-3.349a9.011 9.011 0 012.826 4H17V7zm-5.854 3.146L9.01 12.284a1.97 1.97 0 00-1.008-.282 2 2 0 102 2c0-.371-.108-.713-.284-1.01l2.136-2.137a.5.5 0 00-.707-.707'/%3E%3Cpath d='M13.413 18.432C12.453 17.586 10.394 17 8 17c-2.395 0-4.452.586-5.413 1.432A6.965 6.965 0 011 14c0-3.86 3.141-7 7-7 3.86 0 7 3.14 7 7a6.965 6.965 0 01-1.587 4.432M8 6a8 8 0 00-8 8 7.97 7.97 0 002.594 5.885l.023.02c.19.174.387.338.593.492l.061.046c.194.142.393.274.598.399l.107.066c.193.11.39.214.591.31.052.026.104.052.157.075.188.085.382.16.58.23.066.025.132.053.201.075.187.062.38.112.574.16.078.02.155.043.234.06.198.044.4.073.602.1.078.01.153.028.231.035a7.8 7.8 0 001.707 0c.08-.007.154-.024.232-.035.202-.027.404-.056.601-.1.08-.017.157-.04.235-.06.194-.048.387-.098.574-.16.068-.022.135-.05.202-.074.196-.071.391-.146.58-.231.052-.023.104-.05.156-.075a8.261 8.261 0 00.698-.376c.205-.125.404-.257.597-.4.021-.014.041-.03.062-.045a7.96 7.96 0 00.593-.491l.023-.021A7.97 7.97 0 0016 14a8 8 0 00-8-8'/%3E%3C/g%3E%3C/svg%3E");
}

._physician_15dfq_303 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='21' height='23' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0a2 2 0 012 2v2a2 2 0 01-1 1.732V7c0 4.433-2.856 5.722-5.153 5.957V17c0 2.21 1.944 4 4.153 4 1.491 0 2.92-.97 3.65-2.233A4.002 4.002 0 0117 11a4 4 0 01.68 7.942A6.004 6.004 0 0112 23c-3.238 0-6-2-6-6v-4.062C3.764 12.656 1 11.323 1 7L.999 5.732A2 2 0 010 4V2a2 2 0 114 0v2a2 2 0 01-.999 1.732L3 7c0 3.644 2.142 3.968 3.596 3.997l.995.002c1.419-.024 3.405-.344 3.405-3.823l.002-1.445A2 2 0 0110 4V2a2 2 0 012-2zm5 13a2 2 0 100 4 2 2 0 000-4z'/%3E%3C/svg%3E");
}
._buttonWrapper_15dfq_123:hover ._physician_15dfq_303 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='21' height='23' fill='%23f2eded' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0a2 2 0 012 2v2a2 2 0 01-1 1.732V7c0 4.433-2.856 5.722-5.153 5.957V17c0 2.21 1.944 4 4.153 4 1.491 0 2.92-.97 3.65-2.233A4.002 4.002 0 0117 11a4 4 0 01.68 7.942A6.004 6.004 0 0112 23c-3.238 0-6-2-6-6v-4.062C3.764 12.656 1 11.323 1 7L.999 5.732A2 2 0 010 4V2a2 2 0 114 0v2a2 2 0 01-.999 1.732L3 7c0 3.644 2.142 3.968 3.596 3.997l.995.002c1.419-.024 3.405-.344 3.405-3.823l.002-1.445A2 2 0 0110 4V2a2 2 0 012-2zm5 13a2 2 0 100 4 2 2 0 000-4z'/%3E%3C/svg%3E");
}
._physician_15dfq_303:active,
._physician_15dfq_303.navBar-selected {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='21' height='23' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0a2 2 0 012 2v2a2 2 0 01-1 1.732V7c0 4.433-2.856 5.722-5.153 5.957V17c0 2.21 1.944 4 4.153 4 1.491 0 2.92-.97 3.65-2.233A4.002 4.002 0 0117 11a4 4 0 01.68 7.942A6.004 6.004 0 0112 23c-3.238 0-6-2-6-6v-4.062C3.764 12.656 1 11.323 1 7L.999 5.732A2 2 0 010 4V2a2 2 0 114 0v2a2 2 0 01-.999 1.732L3 7c0 3.644 2.142 3.968 3.596 3.997l.995.002c1.419-.024 3.405-.344 3.405-3.823l.002-1.445A2 2 0 0110 4V2a2 2 0 012-2zm5 13a2 2 0 100 4 2 2 0 000-4z'/%3E%3C/svg%3E");
}

._pipeline_15dfq_315 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/pipeline-inactive-f1e6c30f.svg');
}
._buttonWrapper_15dfq_123:hover ._pipeline_15dfq_315 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/pipeline-hover-e182301a.svg');
}
._pipeline_15dfq_315:active,
._pipeline_15dfq_315.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/pipeline-active-6b42a0c0.svg');
}

._policies_15dfq_327 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/medicalPolicies-inactive-3bef6e08.svg');
  background-size: cover;
}

._policies_15dfq_327:hover {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/medicalPolicies-hovered-101a684d.svg');
}

._policies_15dfq_327:active,
._policies_15dfq_327.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/medicalPolicies-active-ba42ea46.svg');
}

._predictions_15dfq_342 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/predictions-2f6070de.svg');
}
._buttonWrapper_15dfq_123:hover ._predictions_15dfq_342 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/predictions-f733b3a2.svg');
}
._predictions_15dfq_342:active,
._predictions_15dfq_342.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/predictions-37e76340.svg');
}

._project_15dfq_354 {
  background-image: var(--icon-navbar-project-normal);
}
._buttonWrapper_15dfq_123:hover ._project_15dfq_354 {
  background-image: var(--icon-navbar-project-hover);
}
._project_15dfq_354:active,
._project_15dfq_354.navBar-selected {
  background-image: var(--icon-navbar-project-active);
}

._rcmControlPanel_15dfq_366 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/rcmControlPanel-inactive-9ec199cb.svg');
}
._buttonWrapper_15dfq_123:hover ._rcmControlPanel_15dfq_366 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/rcmControlPanel-hover-e6b91a5d.svg');
}
._rcmControlPanel_15dfq_366:active,
._rcmControlPanel_15dfq_366.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/rcmControlPanel-active-76219656.svg');
}

._rcmManagerDashboard_15dfq_378 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='26' height='19' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.963.008v1.46c2.755.294 4.56 1.972 4.708 4.203l.009.21H8.805c-.032-.848-.625-1.696-1.694-1.949l-.193-.038v3.92l.955.202c2.257.483 4.087 1.628 4.087 4.346 0 2.596-1.844 4.27-4.77 4.632l-.26.028.01 1.427H5.121l.011-1.404c-3.62-.263-5.035-2.346-5.127-4.373L0 12.508h2.942c.054.981.735 1.81 2.036 2.055l.21.034v-4.178l-.965-.213C2.133 9.746.292 8.442.292 5.893c0-2.616 2.01-4.1 4.613-4.41l.239-.026V.008h1.819zM24 2c1 0 2 1 2 2v11c0 1-1 2-2 2H14v-1h10c.5 0 1-.5 1-1V4c0-.592-.412-.933-1-1H13V2h11zm0 8v5h-5v-5h5zm-6 0v5h-4v-5h4zm-11.082.722v3.875c1.19-.101 2.033-.831 2.033-1.932 0-.92-.55-1.539-1.808-1.887l-.109-.024-.116-.032zM24 4v5h-5V4h5zm-6 0v5h-5V7h1V4h4zM5.188 3.872c-1.066.123-1.853.763-1.853 1.785 0 .809.517 1.393 1.539 1.73l.153.049.161.04V3.873z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 26px;
}
._buttonWrapper_15dfq_123:hover ._rcmManagerDashboard_15dfq_378 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='26' height='19' fill='%23f2eded' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.963.008v1.46c2.755.294 4.56 1.972 4.708 4.203l.009.21H8.805c-.032-.848-.625-1.696-1.694-1.949l-.193-.038v3.92l.955.202c2.257.483 4.087 1.628 4.087 4.346 0 2.596-1.844 4.27-4.77 4.632l-.26.028.01 1.427H5.121l.011-1.404c-3.62-.263-5.035-2.346-5.127-4.373L0 12.508h2.942c.054.981.735 1.81 2.036 2.055l.21.034v-4.178l-.965-.213C2.133 9.746.292 8.442.292 5.893c0-2.616 2.01-4.1 4.613-4.41l.239-.026V.008h1.819zM24 2c1 0 2 1 2 2v11c0 1-1 2-2 2H14v-1h10c.5 0 1-.5 1-1V4c0-.592-.412-.933-1-1H13V2h11zm0 8v5h-5v-5h5zm-6 0v5h-4v-5h4zm-11.082.722v3.875c1.19-.101 2.033-.831 2.033-1.932 0-.92-.55-1.539-1.808-1.887l-.109-.024-.116-.032zM24 4v5h-5V4h5zm-6 0v5h-5V7h1V4h4zM5.188 3.872c-1.066.123-1.853.763-1.853 1.785 0 .809.517 1.393 1.539 1.73l.153.049.161.04V3.873z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._rcmManagerDashboard_15dfq_378:active,
._rcmManagerDashboard_15dfq_378.navBar-selected {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='26' height='19' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.963.008v1.46c2.755.294 4.56 1.972 4.708 4.203l.009.21H8.805c-.032-.848-.625-1.696-1.694-1.949l-.193-.038v3.92l.955.202c2.257.483 4.087 1.628 4.087 4.346 0 2.596-1.844 4.27-4.77 4.632l-.26.028.01 1.427H5.121l.011-1.404c-3.62-.263-5.035-2.346-5.127-4.373L0 12.508h2.942c.054.981.735 1.81 2.036 2.055l.21.034v-4.178l-.965-.213C2.133 9.746.292 8.442.292 5.893c0-2.616 2.01-4.1 4.613-4.41l.239-.026V.008h1.819zM24 2c1 0 2 1 2 2v11c0 1-1 2-2 2H14v-1h10c.5 0 1-.5 1-1V4c0-.592-.412-.933-1-1H13V2h11zm0 8v5h-5v-5h5zm-6 0v5h-4v-5h4zm-11.082.722v3.875c1.19-.101 2.033-.831 2.033-1.932 0-.92-.55-1.539-1.808-1.887l-.109-.024-.116-.032zM24 4v5h-5V4h5zm-6 0v5h-5V7h1V4h4zM5.188 3.872c-1.066.123-1.853.763-1.853 1.785 0 .809.517 1.393 1.539 1.73l.153.049.161.04V3.873z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._reviewer_15dfq_391 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/reviewer-inactive-9a4887e7.svg');
}
._buttonWrapper_15dfq_123:hover ._reviewer_15dfq_391 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/reviewer-hover-1bdbfc11.svg');
}
._reviewer_15dfq_391:active,
._reviewer_15dfq_391.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/reviewer-active-814ea279.svg');
}

._sentinelRuns_15dfq_403 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sentinelRuns-inactive-c48bf49a.svg');
  background-size: cover;
}
._buttonWrapper_15dfq_123:hover ._sentinelRuns_15dfq_403 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sentinelRuns-hover-67e77676.svg');
}
._sentinelRuns_15dfq_403:active,
._sentinelRuns_15dfq_403.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sentinelRuns-active-9e67d550.svg');
}

._myCases_15dfq_416 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/myCases-inactive-7de5bce4.svg');
  background-size: cover;
}
._buttonWrapper_15dfq_123:hover ._myCases_15dfq_416 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/myCases-hover-cc013acd.svg');
}
._myCases_15dfq_416:active,
._myCases_15dfq_416.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/myCases-active-ed4a142d.svg');
}

._insights_15dfq_429 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/piManagerInsights-inactive-7d398b85.svg');
  background-size: 48px;
}
._buttonWrapper_15dfq_123:hover ._insights_15dfq_429 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/piManagerInsights-hover-f87dc830.svg');
}
._insights_15dfq_429:active,
._insights_15dfq_429.navBar-selected {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/piManagerInsights-active-67388e49.svg');
}

._reports_15dfq_442 {
  background-image: var(--icon-navbar-reports-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._reports_15dfq_442 {
  background-image: var(--icon-navbar-reports-hover);
}
._reports_15dfq_442:active,
._reports_15dfq_442.navBar-selected {
  background-image: var(--icon-navbar-reports-active);
}

._selectItem_15dfq_455 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M19 3c0-.781-4.062-2-9-2S1 2.219 1 3v14c0 .781 4.062 2 9 2s9-1.219 9-2V3zm1 0v14c0 1.657-4.477 3-10 3S0 18.657 0 17V3c0-1.657 4.477-3 10-3s10 1.343 10 3z'/%3E%3Cpath d='M1.867 7.482a.5.5 0 01.266-.964A29.422 29.422 0 0010 7.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 01.336.94C15.867 8.294 13.784 8.6 10 8.6c-2.724 0-5.436-.373-8.133-1.118zm0 4a.5.5 0 11.266-.964A29.422 29.422 0 0010 11.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 11.336.94c-2.301.823-4.384 1.13-8.168 1.13-2.724 0-5.436-.373-8.133-1.118zm0 4a.5.5 0 11.266-.964A29.422 29.422 0 0010 15.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 11.336.94c-2.301.823-4.384 1.13-8.168 1.13-2.724 0-5.436-.373-8.133-1.118z'/%3E%3C/g%3E%3C/svg%3E");
}
._buttonWrapper_15dfq_123:hover ._selectItem_15dfq_455 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23f2eded' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M19 3c0-.781-4.062-2-9-2S1 2.219 1 3v14c0 .781 4.062 2 9 2s9-1.219 9-2V3zm1 0v14c0 1.657-4.477 3-10 3S0 18.657 0 17V3c0-1.657 4.477-3 10-3s10 1.343 10 3z'/%3E%3Cpath d='M1.867 7.482a.5.5 0 01.266-.964A29.422 29.422 0 0010 7.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 01.336.94C15.867 8.294 13.784 8.6 10 8.6c-2.724 0-5.436-.373-8.133-1.118zm0 4a.5.5 0 11.266-.964A29.422 29.422 0 0010 11.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 11.336.94c-2.301.823-4.384 1.13-8.168 1.13-2.724 0-5.436-.373-8.133-1.118zm0 4a.5.5 0 11.266-.964A29.422 29.422 0 0010 15.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 11.336.94c-2.301.823-4.384 1.13-8.168 1.13-2.724 0-5.436-.373-8.133-1.118z'/%3E%3C/g%3E%3C/svg%3E");
}
._selectItem_15dfq_455:active,
._selectItem_15dfq_455.navBar-selected {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M19 3c0-.781-4.062-2-9-2S1 2.219 1 3v14c0 .781 4.062 2 9 2s9-1.219 9-2V3zm1 0v14c0 1.657-4.477 3-10 3S0 18.657 0 17V3c0-1.657 4.477-3 10-3s10 1.343 10 3z'/%3E%3Cpath d='M1.867 7.482a.5.5 0 01.266-.964A29.422 29.422 0 0010 7.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 01.336.94C15.867 8.294 13.784 8.6 10 8.6c-2.724 0-5.436-.373-8.133-1.118zm0 4a.5.5 0 11.266-.964A29.422 29.422 0 0010 11.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 11.336.94c-2.301.823-4.384 1.13-8.168 1.13-2.724 0-5.436-.373-8.133-1.118zm0 4a.5.5 0 11.266-.964A29.422 29.422 0 0010 15.6c3.676 0 5.647-.29 7.832-1.07a.5.5 0 11.336.94c-2.301.823-4.384 1.13-8.168 1.13-2.724 0-5.436-.373-8.133-1.118z'/%3E%3C/g%3E%3C/svg%3E");
}

._business_15dfq_467 {
  background-image: var(--icon-navbar-business-normal);
  background-size: var(--nav-button-med-size);
}
._buttonWrapper_15dfq_123:hover ._business_15dfq_467 {
  background-image: var(--icon-navbar-business-hover);
}
._business_15dfq_467:active,
._business_15dfq_467.navBar-selected {
  background-image: var(--icon-navbar-business-active);
}

._settings_15dfq_480 {
  background-image: var(--icon-navbar-settings-normal);
}
._buttonWrapper_15dfq_123:hover ._settings_15dfq_480 {
  background-image: var(--icon-navbar-settings-hover);
}
._settings_15dfq_480:active,
._settings_15dfq_480.navBar-selected {
  background-image: var(--icon-navbar-settings-active);
}

._user_15dfq_492 {
  background-image: var(--icon-navbar-user-normal);
}
._buttonWrapper_15dfq_123:hover ._user_15dfq_492 {
  background-image: var(--icon-navbar-user-hover);
}
._user_15dfq_492:active,
._user_15dfq_492.navBar-selected {
  background-image: var(--icon-navbar-user-active);
}

/* App Icons */

._menuButtonWrapper_15dfq_506 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

._menuButton_15dfq_506 {
  width: 30px;
  height: 30px;
  background: no-repeat center;
  background-size: 30px;
  cursor: pointer;
}

._menuButton_15dfq_506:active,
._menuButton_15dfq_506.navBar-selected {
  background-color: #513a69;
}

._appSwitcher_15dfq_525 {
  background-size: 40px;
  border-radius: 0;
}

._dataMapper-navBar_15dfq_531 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Canonical Mapping Nav 19x19-da669a6f.svg');
}
._dataMapper_15dfq_531 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Canonical Mapping Nav 19x19-da669a6f.svg');
}
.navBar-activeItem._dataMapper_15dfq_531 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Canonical Mapping Nav w stroke 40x40-8b4ab60e.svg');
}
.navBar-menuItem ._dataMapper_15dfq_531 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Canonical Mapping Menu 30x30-fdd0f127.svg');
}

._goldenEye-navBar_15dfq_546 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Goldeneye-Nav-28x28-9fbb79ae.svg');
}
._goldenEye_15dfq_546 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Goldeneye-Nav-28x28-9fbb79ae.svg');
}
.navBar-activeItem._goldenEye_15dfq_546 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Goldeneye-Nav-40x40-w-stroke-b37af264.svg');
}
.navBar-menuItem ._goldenEye_15dfq_546 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Goldeneye-Icon-30x30-Menu-w-stroke-b8ea8f81.svg');
}

._marketAnalyzer-navBar_15dfq_561 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Market Viewer Nav 25x22-341a6052.svg');
}
._marketAnalyzer_15dfq_561 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Market Viewer Nav 25x22-341a6052.svg');
}
.navBar-activeItem._marketAnalyzer_15dfq_561 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Market Viewer Nav w stroke 40x40-a7b0be33.svg');
}
.navBar-menuItem ._marketAnalyzer_15dfq_561 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Market Viewer Menu 30x30-d81e230d.svg');
}

._patriot-navBar_15dfq_576 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
._patriot_15dfq_576 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
.navBar-activeItem._patriot_15dfq_576 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-40x40-w-stroke-7f92a8a4.svg');
}
.navBar-menuItem ._patriot_15dfq_576 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Patriot-Icon-30x30-Menu-w-stroke-023a74d5.svg');
}

._policyAuthoring-navBar_15dfq_591 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
._policyAuthoring_15dfq_591 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
.navBar-activeItem._policyAuthoring_15dfq_591 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-40x40-w-stroke-7f92a8a4.svg');
}
.navBar-menuItem ._policyAuthoring_15dfq_591 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Patriot-Icon-30x30-Menu-w-stroke-023a74d5.svg');
}

._performanceAnalyzer-navBar_15dfq_606 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Performance Viewer Nav 23x23-19d378f3.svg');
}
._performanceAnalyzer_15dfq_606 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Performance Viewer Nav 23x23-19d378f3.svg');
}
.navBar-activeItem._performanceAnalyzer_15dfq_606 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Performance Viewer Nav w stroke 40x40-a98cebd5.svg');
}
.navBar-menuItem ._performanceAnalyzer_15dfq_606 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Performance Viewer Menu w stroke 30x30-d276bb65.svg');
}

._portal-navBar_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
._portal_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
.navBar-activeItem._portal_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-40x40-w-stroke-7f92a8a4.svg');
}
.navBar-menuItem ._portal_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Icon-30x30-Menu-w-stroke-2817ce66.svg');
}

._rcmManager-navBar_15dfq_636 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Team Advocate Nav 24x23-d7ebe529.svg');
}
._rcmManager_15dfq_378 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Team Advocate Nav 24x23-d7ebe529.svg');
}
.navBar-activeItem._rcmManager_15dfq_378 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Team Advocate Nav w stroke 40x40-3a717af1.svg');
}
.navBar-menuItem ._rcmManager_15dfq_378 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Team Advocate Menu w stroke 30x30-fc04dcf9.svg');
}

._sentinels-navBar_15dfq_651 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Sentinel-Nav-28x24-0de48290.svg');
}
._sentinels_15dfq_651 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Sentinel-Nav-28x24-0de48290.svg');
}
.navBar-activeItem._sentinels_15dfq_651 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Sentinel-Nav-40x40-w-stroke-dde7bea0.svg');
}
.navBar-menuItem ._sentinels_15dfq_651 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Sentinel-Icon-30x30-Menu-w-stroke-f5c536bf.svg');
}

._portal-navBar_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
._portal_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-30x30-15ac2e4f.svg');
}
.navBar-activeItem._portal_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Portal-Nav-40x40-w-stroke-7f92a8a4.svg');
}
.navBar-menuItem ._portal_15dfq_621 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Patriot-Icon-30x30-Menu-w-stroke-023a74d5.svg');
}

._studio-navBar_15dfq_681 {
  background-image: url('/decisionanalytics/ascend-intelligence/images/experian-logo-border.svg');
}
._studio_15dfq_155 {
  background-image: url('/decisionanalytics/ascend-intelligence/images/experian-logo-border.svg');
}
.navBar-activeItem._studio_15dfq_155 {
  background-image: url('/decisionanalytics/ascend-intelligence/images/experian-logo.svg');
}
.navBar-menuItem ._studio_15dfq_155 {
  background-image: url('/decisionanalytics/ascend-intelligence/images/experian-logo-border.svg');
}

._usageAnalytics-navBar_15dfq_696 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Admin Nav 27x19-8c4fceaf.svg');
}
._usageAnalytics_15dfq_696 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Admin Nav 27x19-8c4fceaf.svg');
}
.navBar-activeItem._usageAnalytics_15dfq_696 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Admin Nav w stroke 40x40-723bf77d.svg');
}
.navBar-menuItem ._usageAnalytics_15dfq_696 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Admin Icon Menu w stroke-83347c24.svg');
}

._jupyter-navBar_15dfq_711 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Jupyter Console Nav Bar 26x24-a13bad66.svg');
}
._jupyter_15dfq_711 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/Jupyter Console Nav Bar 26x24-a13bad66.svg');
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}

._menuButtonWrapper_15dfq_506 ._home_15dfq_723 {
  width: 30px;
  height: 30px;
  background: no-repeat center;
  background-size: 30px;
  cursor: pointer;
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}

._home_15dfq_723._appSwitcher_15dfq_525 {
  background-image: var(--icon-navbar-home-normal);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
  margin-top: 13px;
}

/* Experian */

._homePage_15dfq_744 {
  background-image: var(--icon-navbar-home-normal);
  background-size: 24px;
}
._home_15dfq_723 {
  background-image: var(--icon-navbar-home-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._home_15dfq_723 {
  background-image: var(--icon-navbar-home-hover);
}
._homePage_15dfq_744:active,
._home_15dfq_723:active,
._homePage_15dfq_744.navBar-selected,
._home_15dfq_723.navBar-selected {
  background-image: var(--icon-navbar-home-active);
}

._product_dashboard_15dfq_764,
._spend_pattern_15dfq_765,
._payment_pattern_15dfq_766 {
  background-image: var(--icon-navbar-dashboard-normal);
}

._buttonWrapper_15dfq_123:hover ._product_dashboard_15dfq_764,
._buttonWrapper_15dfq_123:hover ._spend_pattern_15dfq_765,
._buttonWrapper_15dfq_123:hover ._payment_pattern_15dfq_766 {
  background-image: var(--icon-navbar-dashboard-hover);
}
._product_dashboard_15dfq_764:active,
._spend_pattern_15dfq_765:active,
._payment_pattern_15dfq_766:active,
._product_dashboard_15dfq_764.navBar-selected,
._spend_pattern_15dfq_765.navBar-selected,
._payment_pattern_15dfq_766.navBar-selected {
  background-image: var(--icon-navbar-dashboard-active);
}

._challenger_15dfq_785,
._challenger_home_15dfq_786 {
  background-image: var(--icon-navbar-challenger-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._challenger_15dfq_785,
._buttonWrapper_15dfq_123:hover ._challenger_home_15dfq_786 {
  background-image: var(--icon-navbar-challenger-hover);
}

._challenger_15dfq_785:active,
._challenger_15dfq_785.navBar-selected,
._challenger_home_15dfq_786:active,
._challenger_home_15dfq_786.navBar-selected {
  background-image: var(--icon-navbar-challenger-active);
}

/* Acquire Model */
._acquireModel_15dfq_803,
._acquireModel_home_15dfq_804 {
  background-image: var(--icon-navbar-acquire-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._acquireModel_15dfq_803,
._buttonWrapper_15dfq_123:hover ._acquireModel_home_15dfq_804 {
  background-image: var(--icon-navbar-acquire-hover);
}

._acquireModel_15dfq_803:active,
._acquireModel_15dfq_803.navBar-selected,
._acquireModel_home_15dfq_804:active,
._acquireModel_home_15dfq_804.navBar-selected {
  background-image: var(--icon-navbar-acquire-active);
}

._pulse_15dfq_820,
._pulse_home_15dfq_821 {
  background-image: var(--icon-navbar-pulse-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._pulse_15dfq_820,
._buttonWrapper_15dfq_123:hover ._pulse_home_15dfq_821 {
  background-image: var(--icon-navbar-pulse-hover);
}
._pulse_15dfq_820:active,
._pulse_15dfq_820.navBar-selected,
._pulse_home_15dfq_821:active,
._pulse_home_15dfq_821.navBar-selected {
  background-image: var(--icon-navbar-pulse-active);
}

._faas_15dfq_836,
._faas_home_15dfq_837 {
  background-image: var(--icon-navbar-faas-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._faas_15dfq_836,
._buttonWrapper_15dfq_123:hover ._faas_home_15dfq_837 {
  background-image: var(--icon-navbar-faas-hover);
}
._faas_15dfq_836:active,
._faas_15dfq_836.navBar-selected,
._faas_home_15dfq_837:active,
._faas_home_15dfq_837.navBar-selected {
  background-image: var(--icon-navbar-faas-active);
}

._foresight_15dfq_852,
._foresight_home_15dfq_853 {
  background-image: var(--icon-navbar-foresight-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._foresight_15dfq_852,
._buttonWrapper_15dfq_123:hover ._foresight_home_15dfq_853 {
  background-image: var(--icon-navbar-foresight-hover);
}
._foresight_15dfq_852:active,
._foresight_15dfq_852.navBar-selected,
._foresight_home_15dfq_853:active,
._foresight_home_15dfq_853.navBar-selected {
  background-image: var(--icon-navbar-foresight-active);
}

._strategyAdvance_15dfq_868,
._strategyAdvance_home_15dfq_869 {
  background-image: var(--icon-navbar-strategyAdvance-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._strategyAdvance_15dfq_868,
._buttonWrapper_15dfq_123:hover ._strategyAdvance_home_15dfq_869 {
  background-image: var(--icon-navbar-strategyAdvance-hover);
}
._strategyAdvance_15dfq_868:active,
._strategyAdvance_15dfq_868.navBar-selected,
._strategyAdvance_home_15dfq_869:active,
._strategyAdvance_home_15dfq_869.navBar-selected {
  background-image: var(--icon-navbar-strategyAdvance-active);
}

._target_15dfq_884,
._target_home_15dfq_885 {
  background-image: var(--icon-navbar-target-normal);
  background-size: 24px;
}
._buttonWrapper_15dfq_123:hover ._target_15dfq_884,
._buttonWrapper_15dfq_123:hover ._target_home_15dfq_885 {
  background-image: var(--icon-navbar-target-hover);
}
._target_15dfq_884:active,
._target_15dfq_884.navBar-selected,
._target_home_15dfq_885:active,
._target_home_15dfq_885.navBar-selected {
  background-image: var(--icon-navbar-target-active);
}

._spendPattern_15dfq_900 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='26' height='19' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.963.008v1.46c2.755.294 4.56 1.972 4.708 4.203l.009.21H8.805c-.032-.848-.625-1.696-1.694-1.949l-.193-.038v3.92l.955.202c2.257.483 4.087 1.628 4.087 4.346 0 2.596-1.844 4.27-4.77 4.632l-.26.028.01 1.427H5.121l.011-1.404c-3.62-.263-5.035-2.346-5.127-4.373L0 12.508h2.942c.054.981.735 1.81 2.036 2.055l.21.034v-4.178l-.965-.213C2.133 9.746.292 8.442.292 5.893c0-2.616 2.01-4.1 4.613-4.41l.239-.026V.008h1.819zM24 2c1 0 2 1 2 2v11c0 1-1 2-2 2H14v-1h10c.5 0 1-.5 1-1V4c0-.592-.412-.933-1-1H13V2h11zm0 8v5h-5v-5h5zm-6 0v5h-4v-5h4zm-11.082.722v3.875c1.19-.101 2.033-.831 2.033-1.932 0-.92-.55-1.539-1.808-1.887l-.109-.024-.116-.032zM24 4v5h-5V4h5zm-6 0v5h-5V7h1V4h4zM5.188 3.872c-1.066.123-1.853.763-1.853 1.785 0 .809.517 1.393 1.539 1.73l.153.049.161.04V3.873z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 26px;
}
._buttonWrapper_15dfq_123:hover ._spendPattern_15dfq_900 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='26' height='19' fill='%23f2eded' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.963.008v1.46c2.755.294 4.56 1.972 4.708 4.203l.009.21H8.805c-.032-.848-.625-1.696-1.694-1.949l-.193-.038v3.92l.955.202c2.257.483 4.087 1.628 4.087 4.346 0 2.596-1.844 4.27-4.77 4.632l-.26.028.01 1.427H5.121l.011-1.404c-3.62-.263-5.035-2.346-5.127-4.373L0 12.508h2.942c.054.981.735 1.81 2.036 2.055l.21.034v-4.178l-.965-.213C2.133 9.746.292 8.442.292 5.893c0-2.616 2.01-4.1 4.613-4.41l.239-.026V.008h1.819zM24 2c1 0 2 1 2 2v11c0 1-1 2-2 2H14v-1h10c.5 0 1-.5 1-1V4c0-.592-.412-.933-1-1H13V2h11zm0 8v5h-5v-5h5zm-6 0v5h-4v-5h4zm-11.082.722v3.875c1.19-.101 2.033-.831 2.033-1.932 0-.92-.55-1.539-1.808-1.887l-.109-.024-.116-.032zM24 4v5h-5V4h5zm-6 0v5h-5V7h1V4h4zM5.188 3.872c-1.066.123-1.853.763-1.853 1.785 0 .809.517 1.393 1.539 1.73l.153.049.161.04V3.873z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._spendPattern_15dfq_900:active,
._spendPattern_15dfq_900.navBar-selected {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='26' height='19' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.963.008v1.46c2.755.294 4.56 1.972 4.708 4.203l.009.21H8.805c-.032-.848-.625-1.696-1.694-1.949l-.193-.038v3.92l.955.202c2.257.483 4.087 1.628 4.087 4.346 0 2.596-1.844 4.27-4.77 4.632l-.26.028.01 1.427H5.121l.011-1.404c-3.62-.263-5.035-2.346-5.127-4.373L0 12.508h2.942c.054.981.735 1.81 2.036 2.055l.21.034v-4.178l-.965-.213C2.133 9.746.292 8.442.292 5.893c0-2.616 2.01-4.1 4.613-4.41l.239-.026V.008h1.819zM24 2c1 0 2 1 2 2v11c0 1-1 2-2 2H14v-1h10c.5 0 1-.5 1-1V4c0-.592-.412-.933-1-1H13V2h11zm0 8v5h-5v-5h5zm-6 0v5h-4v-5h4zm-11.082.722v3.875c1.19-.101 2.033-.831 2.033-1.932 0-.92-.55-1.539-1.808-1.887l-.109-.024-.116-.032zM24 4v5h-5V4h5zm-6 0v5h-5V7h1V4h4zM5.188 3.872c-1.066.123-1.853.763-1.853 1.785 0 .809.517 1.393 1.539 1.73l.153.049.161.04V3.873z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._acquireModel_15dfq_803 {
  background-image: var(--icon-navbar-app-acquire);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._acquireModel-navBar_15dfq_920 {
  background-image: var(--icon-navbar-app-acquire);
}
._challenger_15dfq_785 {
  background-image: var(--icon-navbar-app-challenger);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._challenger-navBar_15dfq_931 {
  background-image: var(--icon-navbar-app-challenger);
}
._experian_15dfq_935 {
  background-image: var(--icon-navbar-app-challenger);
  border: 1px solid white;
  background-size: 30px 30px;
  border-radius: 6px;
  margin-top: -25px;
  margin-bottom: 30px;
}
._experian-navBar_15dfq_944 {
  background-image: var(--icon-navbar-app-challenger);
}
._pulse_15dfq_820 {
  background-image: var(--icon-navbar-app-pulse);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._pulse-navBar_15dfq_955 {
  background-image: var(--icon-navbar-app-faas);
}
._faas_15dfq_836 {
  background-image: var(--icon-navbar-app-faas);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._faas-navBar_15dfq_966 {
  background-image: var(--icon-navbar-app-foresight);
}
._foresight_15dfq_852 {
  background-image: var(--icon-navbar-app-foresight);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._foresight-navBar_15dfq_977 {
  background-image: var(--icon-navbar-app-foresight);
}
._strategyAdvance_15dfq_868 {
  background-image: var(--icon-navbar-app-strategyAdvance);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._strategyAdvance-navBar_15dfq_988 {
  background-image: var(--icon-navbar-app-strategyAdvance);
}
._target_15dfq_884 {
  background-image: var(--icon-navbar-app-target);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._target-navBar_15dfq_999 {
  background-image: var(--icon-navbar-app-target);
}
._limit_15dfq_1003 {
  background-image: var(--icon-navbar-app-limit);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._limit-navBar_15dfq_1010 {
  background-image: var(--icon-navbar-app-limit);
}
._optimize_15dfq_1014 {
  background-image: var(--icon-navbar-app-optimize);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._optimize-navBar_15dfq_1021 {
  background-image: var(--icon-navbar-app-optimize);
}
._support_15dfq_1025 {
  background-image: var(--icon-navbar-app-support);
  border: 1px solid white;
  background-size: 22px 22px;
  border-radius: 6px;
}
._support-navBar_15dfq_1032 {
  background-image: var(--icon-navbar-app-support);
}

/* notifications */

._notificationsModalDialog_15dfq_1039 {
  border-radius: 4px;
  border: none;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.36);
  margin: 0;
  padding: 0;
  z-index: 9001;
}

._notificationsModalDialogTitle_15dfq_1048 {
  align-items: center;
  border-bottom: solid 1px #e9e8e8;
  color: #060031;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  height: 44px;
  margin: 0;
  padding-top: 2px;
  padding-left: 16px;
}

._notificationsModalDialogContent_15dfq_1061 {
  border-bottom: solid 1px #e9e8e8;
  margin: 0;
  max-height: calc(100vh - 110px) !important;
}

._notificationsModalDialogFooter_15dfq_1067 {
  height: 40px;
}

._count_15dfq_1071 {
  cursor: pointer;
  position: absolute;
  right: -8px;
}

._messages_15dfq_1077 {
  background-image: url('../../images/messages/icon_nav_messages.svg');
}

._messages_15dfq_1077.navBar-selected {
  background-image: url('../../images/messages/icon_nav_messages_hover.svg');
}

@media print {
  ._navBar_15dfq_39 {
    display: none;
  }
}

._version_15dfq_1092 {
  position: fixed;
  top: 0;
  z-index: -1;
  width: var(--navBar-width);
  color: var(--color-navBar);
  word-wrap: anywhere;
}

._searchContainer_15dfq_1101 {
  position: relative;
  background: rgba(140, 140, 140, 0.2);
  border-radius: 4px;
  margin-bottom: 4px;
}

._searchBox_15dfq_1108 {
  margin: 8px;
}

._clearSearchButton_15dfq_1112 {
  position: absolute;
  top: 14px;
  right: 20px;
  cursor: pointer;
}

._emptySearchIcon_15dfq_1119 {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 14px;
  right: 20px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/search-592f6dc1.svg');
}
._closeButton_17p7i_1 {
  cursor: pointer;
  display: inline-block;
  height: 100%;
}

._closeButton_17p7i_1 svg {
  display: block;
}

._closeButton_17p7i_1 svg rect {
  fill: #fff;
}

._closeButton_17p7i_1 svg line {
  stroke: #d6d6d6;
  stroke-width: 2px;
}

._closeButton_17p7i_1:hover svg line {
  stroke: #f00;
  stroke-width: 3px;
}

._closeButton_17p7i_1._transparent_17p7i_25 svg rect {
  fill: transparent;
}

._closeButton_17p7i_1._transparent_17p7i_25 svg line {
  stroke: #d6d6d6;
}

._closeButton_17p7i_1._transparent_17p7i_25:hover svg line {
  stroke: #7d7d7d;
}
._toastContainer_yj8gs_1 {
  position: absolute;
  left: 50%;
}

._toast_yj8gs_1 {
  position: relative;
  left: -50%;
  background-color: #010221;
  box-shadow: 3px 4px 8px 0 rgba(0, 0, 0, 0.37);
  border-radius: 4px;
  padding: 16px;
  opacity: 0;
  z-index: 30000;
  -webkit-user-select: none;
}

._toast_yj8gs_1._fadeIn_yj8gs_18 {
  transition: opacity 0.2s;
  opacity: 1;
}

._toast_yj8gs_1._fadeOut_yj8gs_23 {
  transition: opacity 0.2s;
  opacity: 0;
}

._toast_yj8gs_1 ._toastContent_yj8gs_28 {
  color: #ffffff;
  font-size: var(--font-m);
  line-height: 19px;
}

._toast_yj8gs_1 ._toastContent_yj8gs_28 a {
  color: #eee;
}
._breadcrumbs_1q2pi_1 {
  line-height: var(--breadcrumb-height);
  font-size: var(--font-s);
  cursor: default;
  padding: var(--breadcrumb-padding, 4px 0px);
  margin-bottom: var(--breadcrumb-margin-bottom, 8px);
  display: flex;
  align-items: center;
  color: var(--breadcrumb-inactive-color, #000000);
}

._breadcrumbs_1q2pi_1 span a {
  color: var(--breadcrumb-inactive-color, #000000);
}

._breadcrumbs_1q2pi_1:hover,
._breadcrumbs_1q2pi_1:hover span a {
  color: var(--breadcrumb-active-color, #000000);
}

._arrow_1q2pi_21 {
  display: var(--breadcrumb-arrow-display, inline-flex);
  padding: var(--breadcrumb-arrow-padding, 0 12px 0 0);
  margin: var(--breadcrumb-arrow-margin, 0 12px);
  border-right: 1px solid
    var(--breadcrumb-inactive-color, var(--color-text-gray));
  line-height: var(--breadcrumb-line-height, 16px);
  justify-content: center;
  align-items: center;
}

._breadcrumbs_1q2pi_1:hover ._arrow_1q2pi_21 {
  border-right: 1px solid var(--breadcrumb-active-color, var(--color-text-gray));
}

._arrowSvg_1q2pi_36 {
  width: var(--breadcrumb-arrow-height, 16px) !important;
  height: var(--breadcrumb-arrow-width, 16px);
  margin: var(--breadcrumb-arrow-svg-margin);
  background-image: url('/decisionanalytics/ascend-intelligence/assets/back-arrow-inactive-8454b656.svg');
  background-size: cover;
}

._breadcrumbs_1q2pi_1:hover ._arrow_1q2pi_21 ._arrowSvg_1q2pi_36 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/back-arrow-active-7fb7ce84.svg');
}

._arrow_1q2pi_21._enabled_1q2pi_48 {
  cursor: pointer;
}

@media print {
  ._notPrintable_1q2pi_53 {
    display: none;
  }
}
._collapsedPanel_qv1yr_1 {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
}

._expandedPanel_qv1yr_8 {
  height: 100vh;
  width: 482px;
  min-width: 482px;
  z-index: 2;
  border-left: 1px solid #757575;
}

/* 
 * If the screen width is less than the size of SidePanel as well as the margin and min-width associated with
 * ContentArea it should become an absolutely-positioned element
 *
 * The max-width of 1542 needs to match the _ww check in js/models/Layout.js
 */
@media (max-width: 1542px) {
  /* 996 + 64 + 482 */
  ._expandedPanel_qv1yr_8 {
    position: fixed;
    top: 0;
    right: 0;
  }
}

._header_qv1yr_31 {
  padding: 0 8px 0 2px;
  background-color: var(--color-navBar);
  color: var(--color-navBar);
  height: 32px;
  display: flex;
  justify-content: space-between;
}

._collapsedHeader_qv1yr_40 {
  padding: 0 12px;
  border-bottom-left-radius: 4px;
}

._tabContainer_qv1yr_45 {
  display: flex;
  align-items: center;
  justify-content: center;
}

._tab_qv1yr_45 {
  display: flex;
  align-items: center;
}

._header_qv1yr_31 ._tab_qv1yr_45:first-child {
  margin-left: 8px;
}

._collapsedHeader_qv1yr_40 ._tab_qv1yr_45:first-child {
  margin-left: 0px;
}

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

._activeTabBookEnd_qv1yr_69 {
  background-color: var(--color-bg-level1);
  height: 4px;
  width: 4px;
  align-self: flex-end;
  position: relative;
}

._activeTabBookEnd_qv1yr_69 > div {
  background-color: var(--color-navBar);
  height: 4px;
  width: 4px;
}

._leadingBookEnd_qv1yr_83 {
  border-bottom-right-radius: 4px;
}

._trailingBookEnd_qv1yr_87 {
  border-bottom-left-radius: 4px;
}

._tab_qv1yr_45._active_qv1yr_64 {
  background-color: var(--color-bg-level1);
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 0 2px;
  height: 30px;
  align-self: flex-end;
  display: flex;
  align-items: center;
  margin: 0;
}

._tabName_qv1yr_103 {
  padding: 0 18px 0 4px;
  font-weight: 400;
  color: var(--color-text-black);
  font-size: 14px;
}

._tooltip_qv1yr_110 {
  word-break: initial;
  white-space: nowrap;
}

._renderArea_qv1yr_115 {
  height: calc(100% - 32px); /* 100% - header height */
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--color-bg-contentarea);
  position: relative;
}

._icon_qv1yr_123 {
  display: flex;
  height: 32px;
  width: 32px;
  cursor: pointer;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

._closeButton_qv1yr_134 {
  height: 24px;
  width: 24px;
  padding: 2px;
}

._closeButton_qv1yr_134:hover {
  background-color: var(--color-state-hover);
  border-radius: 50%;
}

._closeButton_qv1yr_134:hover svg line {
  stroke: #fff !important; /* Used to override .closeButton.transparent specificity */
  stroke-width: 2px;
}

/* Icons */

._icon_qv1yr_123._comment_qv1yr_152 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' fill='%238a889e' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 7H9s-3 0-3 3v10c0 3 3 3 3 3h2.007L11 28l6-5h7s3 0 3-3V10c0-3-3-3-3-3' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._icon_qv1yr_123._comment_qv1yr_152:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' fill='%23fcf7f7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 7H9s-3 0-3 3v10c0 3 3 3 3 3h2.007L11 28l6-5h7s3 0 3-3V10c0-3-3-3-3-3' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._active_qv1yr_64 ._icon_qv1yr_123._comment_qv1yr_152 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' fill='%23060031' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 7H9s-3 0-3 3v10c0 3 3 3 3 3h2.007L11 28l6-5h7s3 0 3-3V10c0-3-3-3-3-3' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._icon_qv1yr_123._functionReference_qv1yr_164 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' fill='%238A889E'%3E%3Cpath d='M24.04 8.066V24H11s-2 0-2-2 2-2 2-2h11V6H10s-3 0-3 4v12c0 3 4 3 4 3h15V8.066h-1.96z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._icon_qv1yr_123._functionReference_qv1yr_164:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' fill='%23FCF7F7'%3E%3Cpath d='M24.04 8.066V24H11s-2 0-2-2 2-2 2-2h11V6H10s-3 0-3 4v12c0 3 4 3 4 3h15V8.066h-1.96z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._active_qv1yr_64 ._icon_qv1yr_123._functionReference_qv1yr_164 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' fill='%23060031'%3E%3Cpath d='M24.04 8.066V24H11s-2 0-2-2 2-2 2-2h11V6H10s-3 0-3 4v12c0 3 4 3 4 3h15V8.066h-1.96z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._icon_qv1yr_123._schemaExplorer_qv1yr_176 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' fill='%238A889E'%3E%3Cpath d='M16.5 5C22.299 5 27 9.701 27 15.5S22.299 26 16.5 26C10.7 26 6 21.299 6 15.5S10.7 5 16.5 5zM23 9l-10 3-3 10 10-3 3-10zm-6.5 4a2.5 2.5 0 110 5 2.5 2.5 0 010-5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._icon_qv1yr_123._schemaExplorer_qv1yr_176:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' fill='%23FCF7F7'%3E%3Cpath d='M16.5 5C22.299 5 27 9.701 27 15.5S22.299 26 16.5 26C10.7 26 6 21.299 6 15.5S10.7 5 16.5 5zM23 9l-10 3-3 10 10-3 3-10zm-6.5 4a2.5 2.5 0 110 5 2.5 2.5 0 010-5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._active_qv1yr_64 ._icon_qv1yr_123._schemaExplorer_qv1yr_176 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg' fill='%23060031'%3E%3Cpath d='M16.5 5C22.299 5 27 9.701 27 15.5S22.299 26 16.5 26C10.7 26 6 21.299 6 15.5S10.7 5 16.5 5zM23 9l-10 3-3 10 10-3 3-10zm-6.5 4a2.5 2.5 0 110 5 2.5 2.5 0 010-5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._icon_qv1yr_123._schemaSearch_qv1yr_188 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%238A889E'%3E%3Cpath d='M25.788 24.77l-1.018 1.018a.725.725 0 01-1.025 0l-5.298-5.298a7.944 7.944 0 112.043-2.043l5.298 5.298a.725.725 0 010 1.025zm-11.93-5.913a5 5 0 100-10 5 5 0 000 10z'/%3E%3C/svg%3E");
}

._icon_qv1yr_123._schemaSearch_qv1yr_188:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23FCF7F7'%3E%3Cpath d='M25.788 24.77l-1.018 1.018a.725.725 0 01-1.025 0l-5.298-5.298a7.944 7.944 0 112.043-2.043l5.298 5.298a.725.725 0 010 1.025zm-11.93-5.913a5 5 0 100-10 5 5 0 000 10z'/%3E%3C/svg%3E");
}

._active_qv1yr_64 ._icon_qv1yr_123._schemaSearch_qv1yr_188 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23060031'%3E%3Cpath d='M25.788 24.77l-1.018 1.018a.725.725 0 01-1.025 0l-5.298-5.298a7.944 7.944 0 112.043-2.043l5.298 5.298a.725.725 0 010 1.025zm-11.93-5.913a5 5 0 100-10 5 5 0 000 10z'/%3E%3C/svg%3E");
}
._inputInvisible_1gyq2_1 {
  display: inline-block;
}

._inputInvisible_1gyq2_1:hover ._editButton_1gyq2_5 {
  visibility: visible;
}

._input_1gyq2_1 {
  cursor: text;
  display: inline-block;
  vertical-align: middle;
}

._readOnly_1gyq2_15 {
  cursor: default;
}

._editing_1gyq2_19 {
  background-color: white;
  border-style: none;
  position: relative;
  top: -2px;
  left: -8px;
  margin-bottom: -4px;
  padding: 2px 8px;
  width: 700px;
  outline-width: 2px;
}

._pencil_1gyq2_31 {
  display: none;
  margin-left: 0.5em;
  vertical-align: middle;
  cursor: pointer;
  font-size: 60%;
  color: #ccc;
}

._inputInvisible_1gyq2_1:hover ._pencil_1gyq2_31 {
  display: initial;
}

._editButton_1gyq2_5 {
  visibility: hidden;
  vertical-align: middle;
  transform: translateY(-1.5px);
  max-width: 24px;
}

._editButton_1gyq2_5:hover {
  background-color: transparent !important;
  background-image: url(
    '../../../images/icons/edit.svg',
    fill:#606060
  ) !important;
}

._commitSpinner_1gyq2_59 {
  vertical-align: middle;
  padding: 2px;
  background-color: transparent !important;
}
._alertBox_9ohmx_1 {
  margin: var(--alert-box-margin, 20px 0);
  padding: var(--alert-box-padding, 23px 30px 23px 52px);
  font-size: var(--font-m);
  line-height: 24px;
  white-space: pre-wrap;
}

._compact_9ohmx_9 {
  padding: 8px 30px;
  line-height: 16px;
}

._title_9ohmx_14 {
  position: relative;
  margin-bottom: 4px;
  color: #020348;
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
}

._message_9ohmx_22 {
  background: #ebe7ef;
  border-left: 12px solid #614581;
}

._caution_9ohmx_27 {
  background: #f4e8c1;
  border-left: 12px solid #ffbc42;
}

._error_9ohmx_32 {
  background: #ffdc6c;
  border-left: 12px solid #ffbc42;
}

._icon_9ohmx_37 {
  position: absolute;
  top: -2px;
  left: -36px;
}

._collapseableContainer_9ohmx_43 {
  overflow: hidden;
  position: relative;
}

._seeMore_9ohmx_48 {
  display: none;
  height: 56px;
  line-height: 25px;
  background: inherit;
  position: absolute;
  text-align: center;
  padding: 16px 0px;
  font-weight: var(--weight-medium);
  bottom: 0;
  left: 0;
  right: 0;
}

._seeMore_9ohmx_48:hover {
  text-decoration: underline;
  cursor: pointer;
}

._collapseableContainer_9ohmx_43 ._seeMore_9ohmx_48 {
  display: block;
}

._collapseableContainer_9ohmx_43._collapsed_9ohmx_71 {
  max-height: 199px;
}

._collapseableContainer_9ohmx_43._expanded_9ohmx_75 {
  padding-bottom: 56px;
}

._collapseableContainer_9ohmx_43 ._arrow_9ohmx_79 {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 10px;
  margin-left: 6px;
  background: url('../../../images/pulldown-arrow-hint.svg', fill='#000')
    no-repeat center !important;
}

._expanded_9ohmx_75 ._arrow_9ohmx_79 {
  transform: rotate(180deg);
}
._error_e71iv_1 {
  position: relative;
  z-index: 1;
  margin: 0;
}
._container_11v69_1 {
  display: flex;
  align-items: center;
}

._spinner_11v69_6 {
  margin-right: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='38' height='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke-width='2' stroke-dasharray='75 30' fill='none' stroke='%23DD0B2B' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18.99 24.74L10.07 1.16h17.84z'%3E%3Canimate attributeName='stroke-dashoffset' begin='0s' dur='4s' from='40' to='145' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M36.95 24.74H1.1l8.97-23.58h17.84z'%3E%3Canimate attributeName='stroke-dashoffset' begin='0s' dur='2.5s' from='40' to='145' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-color: #fff;
  background-position: 50% 45%;
  background-repeat: no-repeat;
  background-size: 70% 50%;
  border-radius: 50%;
}

.loadspinner {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

._withBox_11v69_24 {
  background-color: white;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.5);
  padding: 8px 16px 8px 16px;
  border-radius: 4px;
}
._searchBox_5qtpq_1 {
  position: relative;
}

._searchBox_5qtpq_1 input[type='text'] {
  padding: 2px 35px 2px 12px;
}

._searchIcon_5qtpq_9 {
  position: absolute;
  right: 15px;
  top: 50%;
}

._searchIcon_5qtpq_9 svg {
  display: block;
  width: 18px;
  margin-top: -50%;
}

._emptySearchIcon_5qtpq_21 {
  height: 20px;
  width: 20px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/search-592f6dc1.svg');
}

._selectBox_5qtpq_27 {
  margin-top: -1px;
  width: 100%;
  border: 1px solid #d6d6d6;
  outline: none;
  color: #050505;
  font-weight: normal;
  overflow-y: scroll;
  height: 150px;
}

._selectBox_5qtpq_27 ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

._selectBox_5qtpq_27 p {
  padding: 4px 10px;
  margin: 0;
  text-align: left;
  font-weight: 300;
}

._selectBox_5qtpq_27 ul li {
  padding: 4px 12px 4px 10px;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
._selectBox_5qtpq_27 ul li._selected_5qtpq_58 {
  background: #8d1e3f;
  color: #ffffff;
}

._selectBox_5qtpq_27 ul li div,
._selectBox_5qtpq_27 ul li svg {
  pointer-events: none;
  font-weight: 300;
}
._circle_ax5a8_1 {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: 1px solid #fff;
}
._container_14gnl_1 {
  position: relative;
  cursor: pointer;
  display: flex;
}

._circle_14gnl_7 {
  position: relative;
}

._more_14gnl_11 {
  position: relative;
  left: -7px;
  color: var(--color-text-gray);
}

._popup_14gnl_17 {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px;
  background-color: white;
  z-index: 999;
  border: 1px solid var(--color-mid-border);
  border-radius: 3px;
  box-shadow: 6px 6px 8px 0 rgba(0, 0, 0, 0.25);
}

._collectionCell_14gnl_29 {
  overflow: visible !important;
}

._collection_14gnl_29 {
  white-space: nowrap;
}
._collections_1ezx1_1 {
  display: flex;
  align-self: flex-start;
  margin-left: auto;
}

._container_1ezx1_7 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-height: 15px;
  margin-top: -5px;
}

._container_1ezx1_7 > div > div {
  font-size: 14px;
  line-height: 22px;
}

/* .label {
  margin-right: 8px;
  line-height: 24px;
  color: #818181;
  font-size: var(--font-s);
} */

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

._dropdown_1ezx1_32 {
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-bottom: 8px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/dropdown-80db2778.svg');
}
._dropdown_1ezx1_32:hover {
  background-image: url('../../../../images/icons/dropdown-hover.svg');
}
._dropdown_1ezx1_32:active {
  background-image: url('../../../../images/icons/dropdown-active.svg');
}

._showButton_1ezx1_47 {
  text-decoration: underline;
  color: var(--color-text-blue);
  cursor: pointer;
  margin-bottom: 8px;
}

._miniDdControl_1ezx1_54 > div > ._dropdown_1ezx1_32 {
  margin: 0px;
}

._toggleButton_1ezx1_58._miniButton_1ezx1_58 {
  margin-left: 4px;
  margin-top: 2px;
}
._reloadWidgetContainer_1ip5k_1 {
  --icon-button-radius: var(--reloadwidget-button-radius, 12px);
  display: var(--reloadwidget-display, flex);
  flex-direction: row;
  margin-bottom: var(--reloadwidget-margin-bottom, 12px);
  margin-top: var(--reloadwidget-margin-top, 8px);
  max-height: 25px;
  min-height: 25px;
  position: relative;
}

._buttonWrapper_1ip5k_12 {
  transform: scale(0.8);
  margin: var(--reloadWidget-margin, -2px 0 0 8px);
  display: inline-block;
  position: absolute;
}

._timestampContainer_1ip5k_19 {
  display: inline-flex;
}

._timestampTitle_1ip5k_23 {
  color: var(--reloadWidget-timestamp-title-color, #888888);
  font-size: var(--reloadWidget-timestamp-font-size, 14px);
  font-family: Roboto;
  min-height: 24px;
  white-space: pre;
}

._timestamp_1ip5k_19 {
  color: var(--reloadWidget-timestamp-color, #888888);
  font-size: var(--reloadWidget-timestamp-font-size, 14px);
  font-family: Roboto;
  min-height: 24px;
  font-weight: var(--reloadWidget-timestamp-font-weight, var(--weight-regular));
  text-transform: var(--reloadWidget-timestamp-text-transform);
}

._timestampStale_1ip5k_40 {
  color: #888888;
}
._header_36v0m_1 {
  margin-bottom: var(--header-bottom-margin);
  padding: var(--pageheader-padding, unset);
  display: var(--pageheader-display, block);
  border: var(--pageheader-border, none);
  border-right: none;
  border-left: none;
  border-top: var(--pageheader-border-top, var(--pageheader-border, none));
  border-bottom: var(--header-bottom-border, initial);
}

._borderBottom_36v0m_12 {
  margin-top: 12px;
  border-bottom: var(--header-bottom-border);
}

._noBorder_36v0m_17 {
  border: none;
}

._title_36v0m_21 {
  position: relative;
  font-size: var(--pageheader-title-font-size, var(--font-xl));
  font-weight: var(--weight-thick);
  color: var(--color-text-black);
  line-height: 24px;
  height: 24px;
  text-transform: var(--pageheader-title-text-transform, none);
}

._title_36v0m_21 * {
  width: calc(100% + 24px);
  white-space: nowrap;
}

._title_36v0m_21._editableTitle_36v0m_36 > div > div:first-child,
._titleToolTip_36v0m_37 {
  max-width: var(--pageheader-title-width, calc(100% - 23px));
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

._titleToolTip_36v0m_37::after {
  content: '';
  display: block;
}

._tooltip_36v0m_49 {
  text-transform: lowercase;
  max-width: 300px;
  position: fixed;
}

._withoutDescriptionAndButtons_36v0m_55 {
  padding-bottom: var(--pageheader-nodescbottompadding);
}

._descriptionAndButtons_36v0m_59 {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  margin-right: 8px;
  min-height: 14px;
  /* margin-bottom:-4px; */
}

/* .descriptionAndButtons.descriptionRowEditMode {
  padding-bottom:30px;
} */

._descriptionContainer_36v0m_72 {
  flex: 1 1 auto;
  height: fit-content;
  min-height: 14px;
  max-width: 660px;
  min-width: 294px;
  margin-top: -10px;
  margin-bottom: -2px;
  /* border: 1px solid red; */
}

._description_36v0m_59 {
  line-height: 22px;
}

._description_36v0m_59 * {
  background-color: transparent !important;
}

._descriptionPlaceholder_36v0m_91 {
  top: 10px !important;
}

._description_36v0m_59,
._descriptionPlaceholder_36v0m_91 {
  color: var(--color-text-gray) !important;
  font-size: var(--font-s) !important;
}

._descriptionPlaceholder_36v0m_91 {
  font-style: italic;
  line-height: 14px;
}

._description_36v0m_59._idleDescription_36v0m_106 * {
  padding: 0px !important;
}

._afterDescription_36v0m_110 {
  margin-left: auto;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

._timestamp_36v0m_117 {
  line-height: 24px;
}

._headerButtons_36v0m_121 {
  height: 24px;
  margin-left: auto;
  order: 2;
  justify-content: space-between;
  display: flex;
}

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

._afterTitle_36v0m_133 {
  order: 2;
}

._afterTitleRow_36v0m_137 {
  display: flex;
  justify-content: right;
}

._afterTitleRow_36v0m_137:not(:first-child) {
  margin-top: 8px;
}

._children_36v0m_146 {
  position: relative;
  margin-top: 16px;
}

._chartStatus_36v0m_151 {
  color: var(--color-text-chart-status);
  font-size: var(--font-s);
  text-transform: capitalize;
}

._chartStatus_36v0m_151._history_36v0m_157 {
  color: #d18c1d;
}

._titleLine_36v0m_161 {
  display: var(--pageheader-title-display, flex);
  justify-content: space-between;
  align-items: center;
  margin: var(--pageheader-title-margin, unset);
}

._versioningContainer_36v0m_168 {
  min-width: 294px;
  margin-right: 20px;
}

._versioningContainer_36v0m_168:only-child {
  margin-top: 5px;
  margin-bottom: -3px;
}

._versioning_36v0m_168,
._tableHeaderMetadata_36v0m_179 {
  color: var(--color-text-dark) !important;
  font-size: var(--font-s) !important;
  height: 14px !important;
  line-height: 14px !important;
  white-space: nowrap;
}

._selectVersionButton_36v0m_187,
._selectVersionDdArrow_36v0m_188 {
  height: 14px !important;
  padding: 0px !important;
}

._versionDropdown_36v0m_193 {
  max-height: 400px;
}

._showManagedIcon_36v0m_197 {
  background-image: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 61px;
}

._showManagedIcon_36v0m_197:before {
  content: 'Managed';
  position: absolute;
  margin: auto;
  font-size: var(--font-xs);
  text-transform: uppercase;
  font-weight: var(--weight-thick);
  color: var(--color-text-gray);
}

._hideChartBadge_36v0m_216 {
  display: none;
}

._tableBelowTitle_36v0m_220 {
  margin-top: 8px;
  height: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._timestamp_36v0m_117,
._creator_36v0m_229 {
  line-height: 14px;
  display: inline-flex;
}

._creator_36v0m_229 {
  margin-left: 26px;
}

._timestamp_36v0m_117:before {
  content: '';
  display: inline-block;
  height: 15px;
  width: 15px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/timestamp-537d2a01.svg');
  margin-right: 6px;
  margin-top: -1px;
}

._creator_36v0m_229:before {
  content: '';
  display: inline-block;
  height: 15px;
  width: 15px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/creator-77f2f97d.svg');
  background-size: cover;
  margin-right: 6px;
  margin-top: -2px;
}

._collectionContainer_36v0m_259 {
  margin-top: -0.5px;
  margin-bottom: -0.5px;
}

._buttonBadgeWrapper_36v0m_264 {
  display: inline-block;
  height: 28px;
}

._buttonWrapper_36v0m_269 {
  display: inline;
}

._headerButtonX_36v0m_273 {
  height: 28px;
  padding: 0px 16px;
}

._headerSaveButton_36v0m_278 {
  order: 1;
  margin-right: auto;
  margin-left: 26px;
}

._headerSaveButton_36v0m_278 > button {
  margin-right: 20px;
}

._headerSaveButton_36v0m_278 * {
  font-size: var(--font-xl);
}

._badge_36v0m_292 {
  display: inline;
  fill: #ffffff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  margin-right: 24px;
  padding: 0px 3px;
  text-transform: uppercase;
}

._published_36v0m_303 {
  color: #4694fc;
  outline: 1px solid #4694fc;
}
._historical_36v0m_307 {
  color: #f59a22;
  outline: 1px solid #f3900c;
}

._draft_36v0m_312 {
  color: #a8a8a8;
  outline: 1px solid #888;
}

._saved_36v0m_317 {
  color: #46bf40;
  outline: 1px solid #46bf40;
}

._default_36v0m_322 {
  color: #bb40bf;
  outline: 1px solid #bb40bf;
}
._title_8xwat_1 {
  margin-bottom: 24px;
  color: var(--color-text-blue);
  font-size: var(--font-l);
  font-weight: var(--weight-medium);
}

._field_8xwat_8 {
  margin-left: 12px;
  max-width: 300px;
}

._section_8xwat_13 {
  margin-bottom: 48px;
}

._editButton_8xwat_17 {
  margin-left: 12px;
  vertical-align: middle;
  transform: translateY(-4px);
}

._leave_8xwat_23 {
  cursor: pointer;
}

._leaveButton_8xwat_27 {
  margin-right: 12px;
  vertical-align: middle;
  transform: translateY(-2px);
}

._passwordError_8xwat_33 {
  margin: 6px 0 10px;
  font-size: var(--font-s);
  color: #b7782c;
}

._lastChanged_8xwat_39 {
  margin-top: 12px;
  color: var(--color-text-light-gray);
}
._datagrid_19txj_1 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

._datagrid_19txj_1 ._header_19txj_7 {
  text-align: left;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  font-size: var(--datagrid-header-font-size, var(--font-s));
  cursor: pointer;
  border-bottom: 1px solid var(--color-dark-border);
  letter-spacing: var(--datagrid-header-letter-spacing, normal);
}

._datagrid_19txj_1 ._header_19txj_7 {
  color: var(--datagrid-header-color, --color-text-blue);
  background-color: var(--datagrid-header-bgcolor);
}

._datagrid_19txj_1 ._header_19txj_7,
._datagrid_19txj_1 ._row_19txj_25 {
  display: flex;
  flex-direction: row;
  vertical-align: inherit;
  padding: 16px 20px 16px 24px;
}

._datagrid_19txj_1 ._header_19txj_7 > div,
._datagrid_19txj_1 ._row_19txj_25 > div {
  flex: 1;
  overflow: hidden;
  padding-right: 20px;
  margin-right: 10px;
}

._datagrid_19txj_1 ._header_19txj_7 ._defaultCell_19txj_40 {
  text-transform: var(--datagrid-header-text-transform, uppercase);
}

._datagrid_19txj_1 ._header_19txj_7 ._defaultCell_19txj_40:hover {
  color: var(--color-text-blue);
}

._datagrid_19txj_1 ._header_19txj_7 div {
  color: var(--datagrid-header-color, var(--color-text-gray));
}

._datagrid_19txj_1 ._row_19txj_25 div {
  color: black;
}

._datagrid_19txj_1 ._header_19txj_7 div._datagridActive_19txj_56 {
  color: var(--color-text-blue);
}

._datagrid_19txj_1 ._row_19txj_25 {
  min-height: var(--datagrid-row-minheight);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.07);
}

._datagrid_19txj_1 ._row_19txj_25 ._defaultCell_19txj_40 {
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  color: var(--color-text-td);
  word-wrap: break-word;
  line-height: 18px;
}

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

._datagrid_19txj_1 ._col-0_19txj_80 {
  padding-right: 50px;
  margin-right: 40px;
}

._datagrid_19txj_1 a._title_19txj_85 {
  font-weight: var(--weight-regular);
  color: var(--color-text-link);
}

._datagrid_19txj_1 ._row_19txj_25:last-child {
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0);
}

._datagrid_19txj_1 ._row_19txj_25:hover,
._datagrid_19txj_1 ._row_19txj_25._highlight_19txj_95 {
  background-color: var(--color-bg-hover);
  box-shadow: var(
    --datagrid-row-hover-boxshadow,
    inset 4px 0 0 0 var(--color-hover-border),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.16)
  );
}

._datagrid_19txj_1 ._row_19txj_25._clickable_19txj_104 {
  cursor: pointer;
}

._datagrid_19txj_1 ._gridsectionHeader_19txj_108 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 16px;
  font-weight: var(--weight-medium);
  font-style: normal;
  font-stretch: normal;
  line-height: 3.5;
  letter-spacing: normal;
  color: #1a1a1a;
  background-color: var(--color-bg-table-section-header);
  margin-top: 10px;
}

._datagrid_19txj_1 ._gridsectionHeader_19txj_108 ._title_19txj_85 {
  padding-left: 20px;
}

._datagrid_19txj_1 ._gridsectionHeader_19txj_108 ._nextSectionLink_19txj_127 {
  padding-right: 20px;
}

[data-column='fitting'] {
  min-width: 200px;
}

/*---Section head ----*/
._datagrid_19txj_1 ._gridsectionHeader_19txj_108 ._leftContainer_19txj_136 {
  display: flex;
  align-self: stretch;
  align-items: center;
}
/*---section select----*/
._sectionSelect_19txj_142 {
  padding: 0 0 0 16px;
}
._sectionSelect_19txj_142 > div > div > span,
._sectionSelect_19txj_142 > div > div {
  font-style: normal !important;
  color: #1a191a !important;
  text-transform: uppercase;
  padding: 0 !important;
  height: auto !important;
}
._sectionSelect_19txj_142 > div > div {
  background: var(--color-bg-table-section-header) !important;
  border: 0px !important;
  padding-top: 2px !important;
}
._sectionSelect_19txj_142 > div > div > div {
  margin-left: 3px;
  background: url('../../../../images/pulldown-arrow-hint.svg', fill='#918E8E')
    no-repeat center !important;
}

._sectionDropDown_19txj_164 {
  margin-top: -45px;
  padding: 0;
  border-color: #918e8e;
}

._sectionDropDown_19txj_164 div {
  text-transform: uppercase;
  padding: 5px 8px !important;
}

._primarySort_19txj_175 {
  color: var(--color-text-black);
  padding-left: 8px;
}

._secondarySort_19txj_180 {
  color: var(--color-text-gray);
}

._tertiarySort_19txj_184 {
  color: var(--color-text-light-gray);
}

._quantenarySort_19txj_188 {
  color: var(--color-text-light-blue);
}

._otherSort_19txj_192 {
  color: var(--color-text-green);
}
._checkboxColumn_oxhkg_1 {
  height: 17px;
  flex: 0 0 auto !important;
  min-width: auto !important;
  padding-left: 0 !important;
  margin-right: 0 !important;
  align-self: center;
  overflow: visible !important;
}

._checkboxCell_oxhkg_11 {
  height: 17px;
  margin-right: 0 !important;
  padding-right: 0 !important;
}

._checkbox_oxhkg_1 {
  margin-right: 5px !important;
}
._checkbox_oxhkg_1 > div {
  margin: 0;
}
._checkbox_oxhkg_1 div:hover {
  background: white no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/unchecked-52ca50f8.svg');
}
._checkbox_oxhkg_1 div {
  background: #fbf7f7
    url('../../../../images/checkbox/unchecked.svg', fill='#A0A0A0') no-repeat
    center;
}

._sectionCheckbox_oxhkg_33 {
  height: 16px;
  margin-left: 24px;
}

._rowCountColumn_oxhkg_38 {
  flex: 0 0 auto !important;
  margin-right: 0 !important;
  width: var(--row-count-width, 40px);
}
._button_pa4dd_1 {
  height: 24px;
  padding: 0 10px 0 5px;
  border: 1px solid transparent;
  color: var(--color-text-dark);
  font-size: var(--font-s);
  cursor: pointer;
}

._button_pa4dd_1:hover {
  color: var(--color-text-black);
}

._selected_pa4dd_14 {
  border-color: var(--color-gray-border);
  border-radius: 12px;
  color: var(--color-text-black);
}

._name_pa4dd_20 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

._disabled_pa4dd_26:hover,
._disabled_pa4dd_26 {
  color: var(--color-text-gray);
}

._mini_pa4dd_31 {
  padding: 0px !important;
  height: 16px !important;
  margin: 0px !important;
}

._mini_pa4dd_31:not(:first-child) {
  margin-left: -8px !important;
}

._miniCircle_pa4dd_41 {
  vertical-align: top;
}
._collections_srjsw_1 {
  display: flex;
}

._container_srjsw_5 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 30px;
}

._label_srjsw_12 {
  margin-right: 8px;
  line-height: 24px;
}

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

._add_srjsw_22 {
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-bottom: 8px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/newCollection-fd02873e.svg');
}
._add_srjsw_22:hover {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/newCollection-hover-8a4f082c.svg');
}
._add_srjsw_22:active {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/newCollection-active-a786f80b.svg');
}

._showButton_srjsw_37 {
  text-decoration: underline;
  color: var(--color-text-blue);
  cursor: pointer;
  margin-bottom: 8px;
}
._tiwacDropdownItem_1h5rp_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  overflow: hidden;
  line-height: var(--dropdown-item-line-height, initial);
  padding: var(--tiwac-dropdown-item-padding, 1px 8px);
  position: relative;
  white-space: pre;
  cursor: pointer;
}

._tiwacDropdownItem_1h5rp_1 > *:first-child {
  max-width: 560px;
  overflow: hidden;
  text-overflow: ellipsis;
}

._tiwac_1h5rp_1._multiselect_1h5rp_20 ._tiwacDropdownItem_1h5rp_1 {
  padding-left: 6px;
}

/* Modifiers on .tiwac-dropdown-item:
 *   .current: item has a keyboard cursor on it
 *   .focused: item has keyboard cursor, and that cursor takes precedence over textfield cursor
 *   .selected: item is the current value of the control (only for singleselect)
 *   :hover: item is hovered with a mouse
 */
._tiwacDropdownItem_1h5rp_1._current_1h5rp_25 {
  background: rgba(0, 0, 0, 0.08);
}

._tiwacDropdownItem_1h5rp_1._current_1h5rp_25._focused_1h5rp_26 {
  background: rgba(0, 0, 0, 0.1);
  border: 1px dotted #000;
  padding: 0 7px; /* compensate for 1px border */
}

._tiwac_1h5rp_1._multiselect_1h5rp_20 ._tiwacDropdownItem_1h5rp_1._current_1h5rp_25._focused_1h5rp_26 {
  padding-left: 5px;
}

._tiwacDropdownItem_1h5rp_1._current_1h5rp_25._focused_1h5rp_26:hover {
  border-color: white;
}

._tiwacDropdownItem_1h5rp_1._selected_1h5rp_27,
._tiwacDropdownItem_1h5rp_1._selected_1h5rp_27._current_1h5rp_25 {
  color: #000;
  font-weight: 400;
}

._tiwacDropdownItem_1h5rp_1._selected_1h5rp_27._current_1h5rp_25._focused_1h5rp_26 {
  background: var(--color-state-hover);
}

._tiwacDropdownItem_1h5rp_1:hover,
._tiwacDropdownItem_1h5rp_1._current_1h5rp_25:hover,
._tiwacDropdownItem_1h5rp_1._selected_1h5rp_27:hover,
._tiwacDropdownItem_1h5rp_1._current_1h5rp_25._selected_1h5rp_27:hover {
  background: var(--color-state-hover);
  color: white;
}

._check_1h5rp_66 {
  color: var(--color-state-click);
  margin-left: 8px;
}

._tiwacDropdownItem_1h5rp_1:hover ._check_1h5rp_66 {
  color: white;
}

._filtered_1h5rp_75 ._tiwacDropdownItem_1h5rp_1 {
  color: #777;
}

._tiwacDropdownItem_1h5rp_1 b {
  color: #000;
  font-weight: 500;
}

._tiwacDropdownItem_1h5rp_1:hover b {
  color: white;
  font-weight: 300;
  text-decoration: underline;
}

._tiwacDropdownItem_1h5rp_1._category_1h5rp_90 {
  background-color: #f7f7f7;
  color: #000;
  font-size: var(--font-s-A);
  font-weight: 400;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 1px 2px #ccc;
  margin: 10px -2px 4px -2px;
  padding: 3px 0 3px 6px;
}

._filtered_1h5rp_75 ._tiwacDropdownItem_1h5rp_1._category_1h5rp_90 {
  color: #000;
}

._tiwacDropdownItem_1h5rp_1._category_1h5rp_90:first-child {
  margin-top: 3px;
}

._tiwacMultiselectText_1h5rp_109 {
  text-overflow: ellipsis;
  overflow: hidden;
}

._separator_1h5rp_114 {
  height: 1px;
  background: #ddd;
  margin: 4px 0;
  pointer-events: none;
}
/*----- Common styles --------------------------------------------------------------------------*/
._tiwac_y004o_2 {
  position: relative;
  --pixel-per-char: var(--tiwac-pixel-per-char, 9);
  display: var(--tiwac-display, inline-block);
  flex: var(--tiwac-flex, initial);
  width: var(--tiwac-width, initial);
  max-width: var(--tiwac-max-width, initial);
  margin: var(--tiwac-margin, 0);
  padding: var(--tiwac-padding, 5px 8px 4px 8px);
  border: var(--tiwac-border, 1px solid var(--border-color-level2, #d6d6d6));
  cursor: text;
  outline: none;
  background: var(--tiwac-background, #fff);
  font-weight: 300;
  min-height: var(--tiwac-min-height, 32px);
  transition: border-color 0.3s;
  border-radius: var(--input-text-border-radius, 0);
  height: var(--tiwac-height, var(--button-height));
  align-items: center;
}

._tiwac_y004o_2._readOnly_y004o_23 {
  background-color: #e4e6e6;
  border-color: transparent;
}

._tiwac_y004o_2._withArrow_y004o_28 {
  padding-right: var(--tiwac-with-arrow-padding-right, 0);
}

._tiwac_y004o_2:hover {
  border-color: rgba(0, 0, 0, 0.365);
}

._tiwac_y004o_2._editing_y004o_36 {
  width: var(--tiwac-editing-min-width, initial);
  border-color: #777;
  border-bottom: var(
    --tiwac-border-bottom,
    var(--tiwac-border, 1px solid var(--border-color-level2, #777))
  );
  border-bottom-left-radius: var(
    --tiwac-editing-border-bottom-radius,
    var(--input-text-border-radius, 0)
  );
  border-bottom-right-radius: var(
    --tiwac-editing-border-bottom-radius,
    var(--input-text-border-radius, 0)
  );
}

._tiwacInner_y004o_53._singleselect_y004o_53 {
  display: inline-flex;
  margin-top: var(--tiwacInner-singleselect-margin-top, 0);
  padding-left: var(--tiwacInner-padding-left, 0);
}

._editing_y004o_36 ._tiwacInner_y004o_53._singleselect_y004o_53 {
  display: inherit;
}

._tiwacInner_y004o_53._multiselect_y004o_63 {
  display: block;
}

._placeholder_y004o_67 {
  display: inline-block;
  color: #bbb;
}

._editing_y004o_36 ._placeholder_y004o_67 {
  margin-left: -12px;
  margin-right: 24px;
}

._autocomplete_y004o_77 {
  color: #ccc;
  display: inline-block;
  vertical-align: top;
  white-space: pre-wrap;
}

/*-- tiwac-input box, contains textarea and dropdown --
This element has the following structure: there is a <div.mirror/>, which contains current
.inputText, and is allowed to expand as a normal inline-block element. However div.mirror is
not visible. And there is also a <textarea/>, which is positioned absolutely and anchored in
such a way as to exactly overlap the div.mirror. This allows us to have a textarea that grows
or shrinks naturally with the amount of text in it. [Note: div.mirror and textarea must be
styled exactly same; in particular if you remove visibility:hidden both texts should overlap
with pixel-perfect precision].
.tiwac-input also contains the dropdown, which is not very logical, but helps to position
that dropdown directly below the textarea box. */
._tiwacInputOuter_y004o_94 {
  display: inline-block;
  min-width: 50px;
  padding-right: 8px;
  position: relative;
}

._editing_y004o_36 ._tiwacInputOuter_y004o_94 {
  float: left;
  min-width: initial;
}

._editing_y004o_36._withTokens_y004o_106 ._multiselect_y004o_63 ._tiwacInputOuter_y004o_94 {
  min-width: 50px;
  float: inherit;
}

._withTokens_y004o_106 ._tiwacInputOuter_y004o_94 {
  margin-left: 4px;
}

._tiwacInput_y004o_94 {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

._tiwacInput_y004o_94 ._mirror_y004o_85 {
  margin: 0;
  max-height: 64px;
  overflow-y: auto;
  padding: 0 1px 0 0;
  visibility: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
}

._tiwacInput_y004o_94 textarea {
  background: transparent;
  border-style: none;
  box-sizing: border-box;
  color: #151515;
  margin: 0;
  outline: none;
  overflow-x: hidden;
  overflow-y: hidden;
  /* Should be auto, but then it tends to appear without any good reason... */
  padding: 0 1px 0 0;
  resize: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  white-space: var(--tiwacInput-textarea-white-space, unset);
}

/*-- dropdown (inside .tiwac-input) --*/
._tiwacDropdownOuter_y004o_153 {
  position: absolute;
  width: var(--tiwac-dropdown-width, initial);
  top: 100%;
  left: var(--tiwac-dropdown-outer-left, 0);
  z-index: 10000;
  border-bottom-left-radius: var(--dropdown-border-radius, 3px);
  border-bottom-right-radius: var(--dropdown-border-radius, 3px);
  border-right: var(--tiwac-dropdown-outer-border-right, none);
  border-bottom: var(--tiwac-dropdown-outer-border-bottom, none);
  border-left: var(--tiwac-dropdown-outer-border-left, none);
  overflow-y: var(--tiwac-dropdownOuter-overflow-y, unset);
}

._tiwacDropdownOuter_y004o_153._onTop_y004o_167 {
  top: initial;
  bottom: 100%;
}

._tiwacDropdown_y004o_153 {
  background: #fff;
  box-shadow: var(
    --tiwac-dropdown-box-shadow,
    2px 3px 4px 0 rgba(0, 0, 0, 0.25)
  );
  color: #151515;
  cursor: default;
  font-weight: 300;
  max-height: 85vh;
  width: var(--tiwac-dropdown-width, unset);
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  transition: left 0.4s;
  border-top-right-radius: var(
    var(--dropdown-top-border-radius, var(--dropdown-border-radius)),
    3px
  );
  border-top-left-radius: var(
    var(--dropdown-top-border-radius, var(--dropdown-border-radius)),
    3px
  );
  border-bottom-left-radius: var(--dropdown-border-radius, 3px);
  border-bottom-right-radius: var(--dropdown-border-radius, 3px);
}

._tiwacDropdownBorder_y004o_199 {
  border-top: var(--tiwac-dropdown-border-top, 1px solid #666);
  border-right: var(--tiwac-dropdown-border-right, 1px solid #666);
  border-bottom: var(--tiwac-dropdown-border-bottom, 1px solid #666);
  border-left: var(--tiwac-dropdown-border-left, 1px solid #666);
  border-top-left-radius: var(
    --tiwac-dropdown-border-top-radius,
    var(--dropdown-border-radius, 3px)
  );
  border-top-right-radius: var(
    --tiwac-dropdown-border-top-radius,
    var(--dropdown-border-radius, 3px)
  );
}

._tiwacDropdown_y004o_153 ._tiwacDropdownHeader_y004o_214 {
  color: var(--color-text-black);
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  font-weight: 400;
  margin: -2px -2px 2px -2px;
  padding: 6px 8px;
  white-space: nowrap;
}

/*-- multiselect tokens --*/
._tiwacMultiselectToken_y004o_225 {
  display: inline-flex;
  position: relative;
  top: -2px;
  align-items: center;
  background-color: #ddd;
  border-radius: 4px;
  cursor: default;
  margin: 1px 4px 1px 0;
  padding: 0 5px;
  max-width: 100%;
}

._tiwacMultiselectToken_y004o_225._selected_y004o_238 {
  border-color: #48d;
}

._tiwacMultiselectToken_y004o_225 ._x_y004o_242 {
  display: none;
}

._tiwacMultiselectToken_y004o_225:hover ._x_y004o_242 {
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  margin: 0 -12px 0 3px;
  width: 22px;
}

._tiwacSingleselectToken_y004o_255 {
  display: block;
  max-width: 100%;
  overflow: auto;
  white-space: pre-wrap;
}

._tiwac_y004o_2 ._tiwacDropdown_y004o_153 {
  left: var(--tiwac-dropdown-position-left, -1px);
  top: var(--tiwac-dropdown-position-top, 0);
}

._tiwac_y004o_2 ._tiwacDropdownOuter_y004o_153._onTop_y004o_167 ._tiwacDropdown_y004o_153 {
  top: -5px;
}

._tiwac_y004o_2._withTokens_y004o_106 ._tiwacDropdown_y004o_153 {
  left: 0;
}

._tiwac_y004o_2 ._placeholder_y004o_67 {
  font-style: italic;
  padding: var(--tiwac-placeholder-padding, 0 6px 0 0);
}

._tiwac_y004o_2._invalid_y004o_280 {
  background: rgba(204, 34, 34, 0.04);
  border-color: rgba(204, 34, 34, 0.7);
}

._tiwacSearchIcon_y004o_285 {
  float: right;
}

._tiwacSearchIcon_y004o_285 svg {
  display: block;
  margin-top: 3px;
  width: 18px;
}

._tiwacSearchIcon_y004o_285._spinner_y004o_295 svg {
  animation: _fa-spin_y004o_1 3s linear infinite;
}

._arrow_y004o_299 {
  display: inline-block;
  width: 24px;
  background: url('/decisionanalytics/ascend-intelligence/assets/pulldown-arrow-hint-4bdcd866.svg') no-repeat center;
  cursor: pointer;
  margin-left: var(--predicate-dropdown-arrow-margin-left, auto);
}

._tiwac_y004o_2:hover ._arrow_y004o_299 {
  background: url('/decisionanalytics/ascend-intelligence/assets/pulldown-arrow-hint-4bdcd866.svg') no-repeat center;
}

._searchIcon_y004o_311 {
  height: 20px;
  width: 20px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/search-592f6dc1.svg');
}
._dropdown_js58o_1 {
  position: absolute;
  z-index: 9000;
  display: flex;
  outline: none;
}

._columnContainer_js58o_8 {
  border: 1px solid #cccccc;
  border-left: none;
  overflow-y: hidden;
  min-width: 400px;
  max-width: 800px;
}

._columnContainer_js58o_8:first-child {
  border-left: 1px solid #cccccc;
}

._actionButtonContainer_js58o_20 {
  border-top: 1px solid #cccccc;
}

._column_js58o_8 {
  overflow-y: scroll;
  background-color: white;
  height: 100%;
}

._nodeContainer_js58o_30 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  background-color: white;
  border-top: 1px none;
  border-bottom: 1px none;
}

._emptyColumn_js58o_41 {
  display: flex;
  justify-content: center;
  align-items: center;
}

._branchContainer_js58o_47 {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

._expandedBranch_js58o_52 {
  position: sticky;
}

._cursorNode_js58o_56 {
  background-color: var(--color-state-hover);
  color: #ffffff;
}

._iconAndNameContainer_js58o_61 {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

._nodeName_js58o_68 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

._branchName_js58o_75,
._statusMessage_js58o_76 {
  font-weight: 400;
}

._noIcon_js58o_80 {
  width: 20px;
}

._icon_js58o_61 {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--icon-button-bg-normal) no-repeat center;
  background-color: transparent;
  margin-left: 8px;
  margin-right: 12px;
  flex-shrink: 0;
}

._rightIconContainer_js58o_95 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

._isScrolling_js58o_105 {
  pointer-events: none;
}

/* Icons */

._icon_js58o_61._back_js58o_111 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/back-7a3cf4fc.svg');
}
._icon_js58o_61._cache_js58o_114 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/cache-3c198f0a.svg');
}
._icon_js58o_61._clock_js58o_117 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/clock-80919b3c.svg');
}
._icon_js58o_61._comment_js58o_120 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/comment-c3f04e72.svg');
}
._icon_js58o_61._custom-table-folder_js58o_123 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/custom-table-folder-6af79608.svg');
}
._icon_js58o_61._custom-table_js58o_123 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/custom-table-bca5c49a.svg');
}
._icon_js58o_61._custom-event_js58o_129 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/custom-event-892210cb.svg');
}
._icon_js58o_61._custom-event-item_js58o_132 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/custom-event-item-e2533fca.svg');
}
._icon_js58o_61._dashboard_js58o_135 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/dashboard-81aa581f.svg');
}
._icon_js58o_61._database_js58o_138 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/database-7d87543e.svg');
}
._icon_js58o_61._dots-horizontal_js58o_141 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/dots-horizontal-405ceccb.svg');
}
._icon_js58o_61._dots-vertical_js58o_144 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/dots-vertical-f2ee96aa.svg');
}
._icon_js58o_61._download_js58o_147 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/upload-aacef352.svg');
}
._icon_js58o_61._duplicate_js58o_150 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/duplicate-3ae68252.svg');
}
._icon_js58o_61._edit_js58o_153 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/edit-1ee03271.svg');
  background-position: calc(50% + 1px) calc(50% - 1px);
}
._icon_js58o_61._editLight_js58o_157 {
  background-color: transparent;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/edit-1ee03271.svg');
}
._icon_js58o_61._entity_js58o_161 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/entity-c33a7580.svg');
}
._icon_js58o_61._entity-item_js58o_164 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/entity-item-3b367f2f.svg');
}
._icon_js58o_61._event_js58o_167 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/event-a804704b.svg');
}
._icon_js58o_61._event-item_js58o_170 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/event-item-dc67aeb8.svg');
}
._icon_js58o_61._export_js58o_173 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/export-515a9e94.svg');
}
._icon_js58o_61._folder_js58o_176 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/folder-86db025a.svg');
}
._icon_js58o_61._gear_js58o_179 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/gear-1e13e727.svg');
}
._icon_js58o_61._generated-table_js58o_182 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/generated-table-559acbd2.svg');
}
._icon_js58o_61._generated-table-folder_js58o_185 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/generated-table-folder-4a412519.svg');
}
._icon_js58o_61._leave_js58o_188 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/leave-3c5d7077.svg');
  background-position: calc(50% - -2px) calc(50% - 2px);
}
._icon_js58o_61._metric-item_js58o_192 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/metric-item-4f25135b.svg');
}
._icon_js58o_61._pause_js58o_195 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/pause-4a3a6f38.svg');
}
._icon_js58o_61._pipeline_js58o_198 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/pipeline-fd9ea9d1.svg');
}
._icon_js58o_61._reload_js58o_201 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/reload-b62ecd1f.svg');
}
._icon_js58o_61._reorder_js58o_204 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/reorder-7b2e1ff7.svg');
  background-size: 20px 20px;
}
._icon_js58o_61._resume_js58o_208 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/resume-92848748.svg');
}
._icon_js58o_61._revert_js58o_211 {
  background-position-y: 5px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/revert-0ba9ed9f.svg');
}
._icon_js58o_61._reply_js58o_215 {
  background-position-y: 5px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/reply-934ae730.svg');
}
._icon_js58o_61._resolve_js58o_219,
._icon_js58o_61._resolve-readonly_js58o_220 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/resolve-056eea7b.svg');
}
._icon_js58o_61._save_js58o_223 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/save-0aaf5d75.svg');
}
._icon_js58o_61._share_js58o_226 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/share-e12446a3.svg');
  background-position: calc(50% - 1px) 50%;
}
._icon_js58o_61._stop_js58o_230 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/stop-b829f4fb.svg');
  background-size: 50%;
}
._icon_js58o_61._table_js58o_234 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/table-0912a6cf.svg');
}
._icon_js58o_61._tag_js58o_237 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/tag-a71e0e4f.svg');
  background-position: calc(50% + 1px) calc(50% - 1px);
}
._icon_js58o_61._trash_js58o_241 {
  background-position-x: 6px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/trash-93c1405e.svg');
}
._icon_js58o_61._upload_js58o_245 {
  transform: rotate(180deg);
  background-image: url('/decisionanalytics/ascend-intelligence/assets/upload-aacef352.svg');
}
._icon_js58o_61._user_js58o_249 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/user-ecea0831.svg');
}
._icon_js58o_61._caret-chevron-right_js58o_252 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/caret-chevron-right-dbd181a0.svg');
}

/* Data Type Icons */

._double_js58o_258 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/double-20457996.svg');
}
._string_js58o_261 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/string-2e3cb2c6.svg');
}
._array_js58o_264 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/array-5ee0714f.svg');
}
._boolean_js58o_267 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/boolean-c4440b92.svg');
}
._byte_js58o_270 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/byte-c45832db.svg');
}
._date_js58o_273 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/date-f5cdfa72.svg');
}
._float_js58o_276 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/float-ff3e3912.svg');
}
._int_js58o_279 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/integer-bdc95a6a.svg');
}
._long_js58o_282 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/long-62877648.svg');
}
._map_js58o_285 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/map-2a86b1ce.svg');
}
._null_js58o_288 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/null-9f316ed0.svg');
}
._short_js58o_291 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/short-04e3a3da.svg');
}
._struct_js58o_294 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/struct-0afd0b89.svg');
}
._timestamp_js58o_297 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/timestamp-19a35de9.svg');
}
._any_js58o_300 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/unknown-8150941d.svg');
}
._vector_js58o_303 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/vector-04aa1641.svg');
}
._function_js58o_306 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/function-7be6e187.svg');
}

/* White Icons */

._icon_js58o_61._back-white_js58o_312 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7H3.83l5.59-5.59L8 0 0 8l8 8 1.41-1.41L3.83 9H16z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._cache-white_js58o_315 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.65 2.35A7.958 7.958 0 008 0C3.58 0 .01 3.58.01 8S3.58 16 8 16c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 018 14c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L9 7h7V0l-2.35 2.35z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._clock-white_js58o_318 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 7h3v2H7V3h2v4zm-1 8A7 7 0 108 1a7 7 0 000 14zm0 1A8 8 0 118 0a8 8 0 010 16z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._comment-white_js58o_321 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='32' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 7H9s-3 0-3 3v10c0 3 3 3 3 3h2.007L11 28l6-5h7s3 0 3-3V10c0-3-3-3-3-3' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._custom-table-white_js58o_324 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M4.5 0l-.9 3.6H0l2.7 1.8L1.8 9l2.7-2.7L7.2 9l-.9-3.6L9 3.6H5.4z'/%3E%3Cpath d='M15 1h-5v1h5v2h-5v6H0v7h16V1h-1zm-4 6h4V5h-4v2zm0 3h4V8h-4v2zm0 3h4v-2h-4v2zm-5 0h4v-2H6v2zm-5 0h4.001v-2h-4v2zm10 3h4v-2h-4v2zm-5 0h4v-2H6v2zm-5 0h4.001v-2h-4v2z'/%3E%3C/g%3E%3C/svg%3E");
}
._icon_js58o_61._custom-table-folder-white_js58o_327 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.583 17.667c.23 0 .417-.187.417-.417V3.083a.417.417 0 00-.417-.416H7.5a.75.75 0 01-.411-.169L6.002 1.412A1.548 1.548 0 005.007 1H.417A.417.417 0 000 1.417V17.25c0 .23.187.417.417.417h19.166zm-.416-12.5H.833V1.833h4.174c.115 0 .324.087.405.169l1.086 1.086c.24.238.662.412 1.001.412h11.668v1.667zm0 .833v10.833H.833V6h18.334z'/%3E%3Cpath d='M11.135 8.499A.995.995 0 0011 9v.393H7v1.786l4-.001v.893H7v1.786h4v.893H2.417a.426.426 0 01-.41-.366L2 14.304V8.946c0-.246.187-.446.417-.446zM6.167 12.07H2.833v1.786h3.334v-1.786zm0-2.678H2.833v1.786h3.334V9.393zM15.5 10.203a1.296 1.296 0 11.001 2.592 1.296 1.296 0 01-.001-2.592zM15.5 9c-.123 0-.245.01-.366.029a.044.044 0 00-.035.028c-.04.103-.038.217-.075.322-.036.104-.103.202-.287.278-.185.077-.301.055-.4.007-.1-.048-.18-.13-.28-.175a.044.044 0 00-.045.005 2.499 2.499 0 00-.518.518.044.044 0 00-.005.044c.045.1.127.181.175.28.048.1.07.216-.007.4-.076.185-.173.252-.278.288-.104.037-.218.036-.321.075a.044.044 0 00-.028.034c-.019.121-.029.244-.03.366v.001c0 .123.01.245.029.366a.044.044 0 00.028.034c.103.04.217.039.322.075.104.037.202.103.278.288.077.185.055.3.007.4-.048.1-.13.18-.175.28a.044.044 0 00.005.045 2.5 2.5 0 00.518.518c.013.01.03.01.044.004.1-.045.181-.126.28-.174.1-.048.216-.07.4.007.185.076.252.173.288.278.037.104.036.218.075.321a.044.044 0 00.034.028c.121.019.244.029.366.03h.001c.123 0 .245-.01.366-.03a.044.044 0 00.034-.027c.04-.103.039-.217.075-.322.037-.104.103-.202.288-.278.185-.077.301-.055.4-.007.1.048.18.13.28.175a.044.044 0 00.045-.005c.197-.147.371-.321.518-.519a.043.043 0 00.004-.044c-.044-.1-.126-.18-.174-.28-.048-.099-.07-.215.007-.4.076-.184.173-.251.278-.288.104-.036.218-.035.321-.074a.044.044 0 00.028-.034c.019-.121.029-.244.03-.367 0-.123-.01-.245-.03-.366a.043.043 0 00-.027-.035c-.103-.04-.217-.038-.322-.075-.104-.036-.202-.103-.278-.287-.077-.185-.055-.301-.007-.4.048-.1.13-.18.175-.28a.044.044 0 00-.005-.045 2.497 2.497 0 00-.518-.518.044.044 0 00-.044-.005c-.101.045-.181.127-.28.175-.1.048-.216.07-.4-.007-.185-.076-.252-.173-.288-.278-.037-.104-.036-.218-.075-.321a.044.044 0 00-.034-.028A2.49 2.49 0 0015.5 9z'/%3E%3C/svg%3E");
}
._icon_js58o_61._custom-event-white_js58o_330 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.455 3c.4 0 .727.327.727.727v.728h1.273c.299 0 .545.246.545.545l.001 6a5.011 5.011 0 00-.364-.249V7.727H2.363V17c0 .104.078.182.181.182H10.5c.06.124.126.246.196.364h-8.15A.548.548 0 012 17V5c0-.3.246-.545.545-.545h1.273v-.728c0-.4.328-.727.727-.727.4 0 .728.327.728.727v.728h2.182v-.728c0-.4.327-.727.727-.727.4 0 .727.327.727.727v.728h2.182v-.728c0-.4.328-.727.727-.727.4 0 .727.327.727.727v.728h2.182v-.728c0-.4.328-.727.728-.727zM3.818 4.818H2.545A.178.178 0 002.364 5v2.364h15.272V5a.178.178 0 00-.181-.182h-1.273v.727a.73.73 0 01-.727.728.73.73 0 01-.728-.728v-.727h-2.182v.727a.73.73 0 01-.727.728.73.73 0 01-.727-.728v-.727H8.909v.727a.73.73 0 01-.727.728.73.73 0 01-.727-.728v-.727H5.273v.727a.73.73 0 01-.728.728.73.73 0 01-.727-.728v-.727zm11.637-1.454a.359.359 0 00-.364.363v1.818c0 .205.159.364.364.364.204 0 .363-.159.363-.364V3.727a.359.359 0 00-.363-.363zm-3.637 0a.359.359 0 00-.363.363v1.818c0 .205.159.364.363.364.205 0 .364-.159.364-.364V3.727a.359.359 0 00-.364-.363zm-3.636 0a.359.359 0 00-.364.363v1.818c0 .205.16.364.364.364s.363-.159.363-.364V3.727a.359.359 0 00-.363-.363zm-3.637 0a.359.359 0 00-.363.363v1.818c0 .205.159.364.363.364.205 0 .364-.159.364-.364V3.727a.359.359 0 00-.364-.363z' stroke-width='.5'/%3E%3Cpath d='M15 13.444a1.555 1.555 0 110 3.112 1.556 1.556 0 110-3.112zM15 12c-.148 0-.294.012-.44.035a.053.053 0 00-.04.033c-.048.124-.047.26-.09.387-.044.125-.124.242-.346.334-.222.092-.36.066-.48.008s-.216-.156-.337-.21a.053.053 0 00-.052.006 2.998 2.998 0 00-.622.622.053.053 0 00-.006.053c.054.12.152.216.21.336.058.12.083.259-.008.48-.092.221-.208.302-.334.345-.125.044-.262.043-.386.09a.053.053 0 00-.033.04A2.99 2.99 0 0012 15V15c0 .147.012.294.035.44a.053.053 0 00.033.04c.124.048.26.047.387.09.125.044.242.124.334.346.092.221.066.36.008.48s-.156.216-.21.336a.053.053 0 00.006.053 3 3 0 00.622.622.053.053 0 00.053.005c.12-.053.217-.151.336-.21.12-.057.259-.082.48.01.221.09.302.208.345.333.044.125.043.262.09.386.006.017.022.03.04.033.146.023.293.035.44.036H15c.147 0 .294-.013.44-.035a.053.053 0 00.04-.033c.048-.124.047-.261.09-.387.044-.125.124-.242.346-.334.221-.092.36-.066.48-.008s.216.156.337.21a.053.053 0 00.052-.006c.237-.176.446-.385.622-.622a.052.052 0 00.005-.053c-.053-.12-.151-.216-.21-.336-.057-.12-.082-.259.01-.48.09-.222.207-.302.333-.346.125-.043.262-.042.386-.089a.052.052 0 00.033-.041c.023-.145.035-.292.036-.44a2.95 2.95 0 00-.035-.44.052.052 0 00-.033-.04c-.124-.048-.261-.047-.387-.09-.125-.044-.242-.124-.334-.346-.092-.222-.066-.36-.008-.48s.156-.216.21-.337a.053.053 0 00-.006-.052 2.997 2.997 0 00-.622-.622.053.053 0 00-.053-.006c-.12.054-.216.152-.336.21-.12.058-.259.084-.48-.008-.222-.092-.302-.208-.345-.334-.044-.125-.043-.262-.09-.386a.052.052 0 00-.041-.033A2.987 2.987 0 0015 12z'/%3E%3C/svg%3E");
}
._icon_js58o_61._custom-event-item-white_js58o_333 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4H1V3c0-.551.448-1 1-1h2v1h1V2h6v1h1V2h2c.552 0 1 .449 1 1v1zm0 11a1 1 0 01-1 1H2a1 1 0 01-1-1V5h14v10zM14 1h-2V0h-1v1H5V0H4v1H2a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V3a2 2 0 00-2-2z'/%3E%3Cpath d='M5.6 14L8 11.6l2.4 2.4-.8-3.2L12 9.2H8.8L8 6l-.8 3.2H4l2.4 1.6z'/%3E%3C/svg%3E");
}
._icon_js58o_61._dashboard-white_js58o_336 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7a1 1 0 011 1v3a1 1 0 01-1 1H1a1 1 0 01-1-1V8a1 1 0 011-1h4zm8 0a1 1 0 011 1v3a1 1 0 01-1 1H9a1 1 0 01-1-1V8a1 1 0 011-1h4zm0-7a1 1 0 011 1v3a1 1 0 01-1 1H9a1 1 0 01-1-1V1a1 1 0 011-1h4zM5 0a1 1 0 011 1v3a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1h4z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._database-white_js58o_339 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.577 17.157l.365.126a13.54 13.54 0 001.753.43l.502.083C8.053 17.924 9 18 10 18s1.947-.076 2.803-.204l.502-.083a13.54 13.54 0 001.753-.43l.365-.126C16.411 16.792 17 16.365 17 16l.001-2.547c-.864.584-2.233 1.049-3.887 1.311l-.531.076-.549.062c-.65.064-1.331.098-2.034.098-.703 0-1.385-.034-2.034-.098l-.549-.062-.531-.076c-1.653-.262-3.022-.726-3.886-1.31V16c0 .365.59.792 1.577 1.157zm12.424-7.704c-.864.584-2.233 1.049-3.887 1.311l-.531.076-.549.062c-.65.064-1.331.098-2.034.098-.703 0-1.385-.034-2.034-.098l-.549-.062-.531-.076c-1.653-.262-3.022-.726-3.886-1.31V12c0 .365.59.792 1.577 1.157l.365.126a13.54 13.54 0 001.753.43l.502.083C8.053 13.924 9 14 10 14s1.947-.076 2.803-.204l.502-.083a13.54 13.54 0 001.753-.43l.365-.126C16.411 12.792 17 12.365 17 12l.001-2.547zm0-4c-.864.584-2.233 1.049-3.887 1.311l-.531.076-.549.062C11.384 6.966 10.703 7 10 7c-.703 0-1.385-.034-2.034-.098l-.549-.062-.531-.076C5.233 6.502 3.864 6.038 3 5.454V8c0 .365.59.792 1.577 1.157l.365.126a13.54 13.54 0 001.753.43l.502.083C8.053 9.924 9 10 10 10s1.947-.076 2.803-.204l.502-.083a13.54 13.54 0 001.753-.43l.365-.126C16.411 8.792 17 8.365 17 8l.001-2.547zM10 2c-1 0-1.947.076-2.803.204l-.502.083a13.54 13.54 0 00-1.753.43l-.365.126C3.589 3.208 3 3.635 3 4s.59.792 1.577 1.157l.365.126a13.54 13.54 0 001.753.43l.502.083C8.053 5.924 9 6 10 6s1.947-.076 2.803-.204l.502-.083a13.54 13.54 0 001.753-.43l.365-.126C16.411 4.792 17 4.365 17 4s-.59-.792-1.577-1.157l-.365-.126a13.54 13.54 0 00-1.753-.43l-.502-.083A19.088 19.088 0 0010 2zM2 4c0-1.243 2.015-2.309 4.886-2.764l.531-.076.549-.062C8.616 1.034 9.297 1 10 1c.703 0 1.385.034 2.034.098l.549.062.531.076c2.779.44 4.755 1.453 4.88 2.644L18 4v12c0 1.243-2.015 2.309-4.886 2.764l-.531.076-.549.062c-.65.064-1.331.098-2.034.098-.703 0-1.385-.034-2.034-.098l-.549-.062-.531-.076C4.015 18.31 2 17.243 2 16V4z'/%3E%3C/svg%3E");
}
._icon_js58o_61._dots-horizontal-white_js58o_342 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='4' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 2c0 .825.675 1.5 1.5 1.5S12 2.825 12 2 11.325.5 10.5.5 9 1.175 9 2zM7.5 2C7.5 1.175 6.825.5 6 .5S4.5 1.175 4.5 2 5.175 3.5 6 3.5 7.5 2.825 7.5 2zM3 2C3 1.175 2.325.5 1.5.5S0 1.175 0 2s.675 1.5 1.5 1.5S3 2.825 3 2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._dots-vertical-white_js58o_345 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='12' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3c.825 0 1.5-.675 1.5-1.5S2.825 0 2 0 .5.675.5 1.5 1.175 3 2 3zm0 1.5C1.175 4.5.5 5.175.5 6S1.175 7.5 2 7.5 3.5 6.825 3.5 6 2.825 4.5 2 4.5zM2 9c-.825 0-1.5.675-1.5 1.5S1.175 12 2 12s1.5-.675 1.5-1.5S2.825 9 2 9z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._download-white_js58o_348 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='14' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6V0h2v6h2l-3 5-3-5zm-6 8v-2h14v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._duplicate-white_js58o_351 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.52.96H10v1.023H1V13.75H.02V2.46c0-.825.674-1.5 1.5-1.5zM3.47 3h7.996C12.291 3 13 3.675 13 4.5v9.987c0 .825-.709 1.5-1.534 1.5H3.47a1.482 1.482 0 01-1.474-1.5V4.5c0-.825.649-1.5 1.474-1.5zm8.54 12V4.023H3V15h9.01zM8 9h2v1H8v2H7v-2H5V9h2V7h1v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._edit-white_js58o_354 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3l-8 8v2h2l8-8zM10.293.707L9 2l2 2 1.293-1.293a1 1 0 000-1.414l-.586-.586a1 1 0 00-1.414 0z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: calc(50% + 1px) calc(50% - 1px);
}
._icon_js58o_61._editLight-white_js58o_358 {
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3l-8 8v2h2l8-8zM10.293.707L9 2l2 2 1.293-1.293a1 1 0 000-1.414l-.586-.586a1 1 0 00-1.414 0z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._entity-white_js58o_362 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='22' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.372 8.32a3.726 3.726 0 00.166 3.499 3.923 3.923 0 003.037 1.893v-3.593l-3.203-1.8zm.376-.628a3.97 3.97 0 013.2-1.601 3.91 3.91 0 013.181 1.61L9.947 9.49l-3.2-1.797zm2.827-2.314V.987l-7.45 4.107 3.974 2.233a4.714 4.714 0 013.476-1.949zm4.202 1.96l3.993-2.244L10.32.987v4.391c1.44.111 2.689.861 3.457 1.96zm-.279.995a3.75 3.75 0 01-.179 3.485 3.923 3.923 0 01-2.999 1.89V10.12l3.178-1.786zm.637 3.535l4.014 2.393V5.72l-4.002 2.249a4.461 4.461 0 01-.012 3.899zm-3.815 2.57v4.575l7.466-4.116-4.026-2.4a4.682 4.682 0 01-3.44 1.942zm-8.21.375l7.465 4.194v-4.566a4.681 4.681 0 01-3.48-1.947L2.11 14.813zM1.746 5.72l3.977 2.235a4.44 4.44 0 00-.003 3.91l-3.974 2.313V5.72zM9.764.047a.382.382 0 01.367 0l8.574 4.727c.117.065.19.186.19.317v9.818c0 .131-.073.252-.19.316l-8.574 4.728a.38.38 0 01-.37-.002l-8.574-4.818A.361.361 0 011 14.818V5.091c0-.131.072-.252.19-.317L9.763.047z' stroke-width='.2' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._entity-item-white_js58o_365 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='px' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0l9 5v10l-9 5-9-5V5l9-5zm0 1.144L2 5.588v8.823l8 4.445 8-4.445V5.588l-8-4.444zm0 3.144l5 2.857v5.71l-5 2.857-5-2.857v-5.71l5-2.857zm4 3.895l-3.5 2.1v3.991l3.5-1.999V8.183zm-8 0v4.092l3.5 1.999v-3.991L6 8.183zm4-2.743L6.604 7.38 10 9.417l3.396-2.037L10 5.44z'/%3E%3C/svg%3E");
}
._icon_js58o_61._event-white_js58o_368 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.364 7.727h15.272V17a.178.178 0 01-.181.182H2.545A.178.178 0 012.364 17V7.727zm.181-2.909h1.273v.727c0 .4.328.728.727.728a.73.73 0 00.728-.728v-.727h2.182v.727c0 .4.327.728.727.728a.73.73 0 00.727-.728v-.727h2.182v.727c0 .4.328.728.727.728a.73.73 0 00.727-.728v-.727h2.182v.727c0 .4.328.728.728.728a.73.73 0 00.727-.728v-.727h1.273c.103 0 .181.078.181.182v2.364H2.364V5c0-.104.078-.182.181-.182zm12.91-1.454c.204 0 .363.159.363.363v1.818c0 .205-.159.364-.363.364a.359.359 0 01-.364-.364V3.727c0-.204.159-.363.364-.363zm-3.637 0c.205 0 .364.159.364.363v1.818c0 .205-.16.364-.364.364a.359.359 0 01-.363-.364V3.727c0-.204.159-.363.363-.363zm-3.636 0c.204 0 .363.159.363.363v1.818c0 .205-.159.364-.363.364a.359.359 0 01-.364-.364V3.727c0-.204.16-.363.364-.363zm-3.637 0c.205 0 .364.159.364.363v1.818c0 .205-.159.364-.364.364a.359.359 0 01-.363-.364V3.727c0-.204.159-.363.363-.363zm0-.364a.73.73 0 00-.727.727v.728H2.545C2.246 4.455 2 4.7 2 5v12c0 .3.246.545.545.545h14.91c.299 0 .545-.246.545-.545V5c0-.3-.246-.545-.545-.545h-1.273v-.728A.73.73 0 0015.455 3a.73.73 0 00-.728.727v.728h-2.182v-.728A.73.73 0 0011.818 3a.73.73 0 00-.727.727v.728H8.909v-.728A.73.73 0 008.182 3a.73.73 0 00-.727.727v.728H5.273v-.728A.73.73 0 004.545 3z' stroke-width='.5'/%3E%3C/svg%3E");
}
._icon_js58o_61._event-item-white_js58o_371 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1v1h6V1h1v1h2c1.054 0 1.918.816 1.995 1.85L18 4v12a2.001 2.001 0 01-1.85 1.995L16 18H4a2.001 2.001 0 01-1.995-1.85L2 16V4c0-1.054.816-1.918 1.85-1.995L4 2h2V1h1zm10 5H3v10a1 1 0 00.883.993L4 17h12a1 1 0 00.993-.883L17 16V6zm-3.384 1.68l.768.64-5.351 6.42-3.386-3.387.707-.707 2.613 2.613 4.649-5.58zM6 3H4c-.513 0-.935.387-.993.884L3 4v1h14V4c0-.512-.386-.935-.883-.993L16 3h-2v1h-1V3H7v1H6V3z'/%3E%3C/svg%3E");
}
._icon_js58o_61._export-white_js58o_374 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0v2h14V0H0zm0 10h4v6h6v-6h4L7 3l-7 7z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._folder-white_js58o_377 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.333 4c.737 0 1.334.597 1.334 1.333H16c.736 0 1.333.597 1.333 1.334v8c0 .736-.597 1.333-1.333 1.333H4a1.333 1.333 0 01-1.333-1.333V5.333C2.667 4.597 3.264 4 4 4h5.333zm0 1.333H4v9.334h12v-8H9.333V5.333z'/%3E%3C/svg%3E");
}
._icon_js58o_61._gear-white_js58o_380 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.47 3.74l-2.402.939-.44-.329a5.84 5.84 0 00-1.342-.758l-.498-.199-.075-.506L10.42.9H7.584l-.368 2.493-.498.2c-.454.18-.9.434-1.352.764l-.437.319-.51-.2-1.885-.736-1.445 2.432 2.049 1.559-.064.495A6.15 6.15 0 003.016 9c0 .228.02.474.058.774l.064.495-.412.314-1.637 1.245 1.445 2.432 2.402-.939.44.329c.424.318.869.57 1.342.758l.498.199.075.506.293 1.987h2.836l.368-2.493.498-.2c.454-.18.9-.434 1.352-.764l.437-.319.51.2 1.885.736 1.445-2.432-2.049-1.559.064-.495c.04-.306.058-.54.058-.774a5.98 5.98 0 00-.058-.774l-.064-.495.412-.314 1.637-1.245L15.47 3.74zm.407 6.142l1.952 1.485a.446.446 0 01.11.576l-1.85 3.114a.456.456 0 01-.564.198l-2.304-.9a7.16 7.16 0 01-1.563.882l-.352 2.385a.447.447 0 01-.453.378H7.152a.447.447 0 01-.454-.378l-.351-2.385a6.808 6.808 0 01-1.564-.882l-2.304.9a.471.471 0 01-.564-.198l-1.85-3.114a.446.446 0 01.11-.576l1.952-1.485A6.946 6.946 0 012.063 9c0-.297.027-.594.064-.882L.175 6.633a.436.436 0 01-.11-.576l1.85-3.114a.457.457 0 01.564-.198l2.304.9a7.16 7.16 0 011.564-.882L6.698.378A.447.447 0 017.152 0h3.7c.232 0 .426.162.454.378l.352 2.385a6.808 6.808 0 011.563.882l2.304-.9a.471.471 0 01.564.198l1.85 3.114a.446.446 0 01-.11.576l-1.952 1.485c.037.288.064.576.064.882 0 .306-.027.594-.064.882zM9.002 11.25c1.253 0 2.285-1.004 2.285-2.25s-1.032-2.25-2.285-2.25C7.749 6.75 6.717 7.754 6.717 9s1.032 2.25 2.285 2.25zm0 .9c-1.786 0-3.238-1.413-3.238-3.15 0-1.737 1.452-3.15 3.238-3.15S12.24 7.263 12.24 9c0 1.737-1.452 3.15-3.238 3.15z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._generated-table-white_js58o_383 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 18V2h16v16H2zm5-3H3v2h4v-2zm5 0H8v2h4v-2zm5 0h-4v2h4v-2zm-5-3H8v2h4v-2zm5 0h-4v2h4v-2zM7 12H3v2h4v-2zm5-3H8v2h4V9zm5 0h-4v2h4V9zM7 9H3v2h4V9zm5-3H8v2h4V6zm5 0h-4v2h4V6zM7 6H3v2h4V6zm10-3H3v2h14V3z'/%3E%3C/svg%3E");
}
._icon_js58o_61._generated-table-folder-white_js58o_386 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.583 16.667c.23 0 .417-.187.417-.417V2.083a.417.417 0 00-.417-.416H7.5a.75.75 0 01-.411-.169L6.002.412A1.548 1.548 0 005.007 0H.417A.417.417 0 000 .417V16.25c0 .23.187.417.417.417h19.166zm-.416-12.5H.833V.833h4.174c.115 0 .324.087.405.169l1.086 1.086c.24.238.662.412 1.001.412h11.668v1.667zm0 .833v10.833H.833V5h18.334z'/%3E%3Cpath d='M5 7.917v5c0 .23.187.416.417.416h9.166c.23 0 .417-.186.417-.416v-5a.417.417 0 00-.417-.417H5.417A.417.417 0 005 7.917zm.833.416h3.334V10H5.833V8.333zm0 2.5h3.334V12.5H5.833v-1.667zM10 8.333h4.167V10H10V8.333zm0 2.5h4.167V12.5H10v-1.667z'/%3E%3C/svg%3E");
}
._icon_js58o_61._leave-white_js58o_389 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='17' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11H6v3h6v3H0v-6.872C0 8.401 1.356 7 3.03 7h5.94C10.645 7 12 8.4 12 10.128V11zm6 1.5L14.023 16v-2.105H12v-2.85h2.023V9L18 12.5zM6 6a3 3 0 110-6 3 3 0 010 6z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: calc(50% - -2px) calc(50% - 2px);
}
._icon_js58o_61._metric-item-white_js58o_393 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.056 14.021l-1.325-1.325a.186.186 0 010-.264l.425-.426a.186.186 0 01.264 0l1.326 1.325 1.379-1.379-.974-.974a.186.186 0 010-.263l.426-.426a.186.186 0 01.264 0l.973.974 1.38-1.38-1.326-1.325a.186.186 0 010-.264l.426-.426a.186.186 0 01.264 0l1.325 1.326 1.38-1.38-.974-.973a.186.186 0 010-.264l.426-.426a.186.186 0 01.263 0l.974.974 1.38-1.38-1.326-1.325a.186.186 0 010-.264l.426-.425a.186.186 0 01.264 0l1.325 1.325 1.378-1.378-2.204-2.203L1.381 13.289l2.204 2.203 1.471-1.471zM.361 12.953L12.86.454c.189-.19.494-.19.681-.003l2.882 2.881a.482.482 0 01-.004.682L3.92 16.513a.482.482 0 01-.681.003L.357 13.634a.482.482 0 01.004-.681z'/%3E%3C/svg%3E");
}
._icon_js58o_61._pause-white_js58o_396 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0h2v10H6V0zM0 0h2v10H0V0z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._pipeline-white_js58o_399 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12v2.5a1.5 1.5 0 103 0v-5a3.5 3.5 0 117 0V12h-2V9.5a1.5 1.5 0 10-3 0v5a3.5 3.5 0 11-7 0V12h2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._reload-white_js58o_402 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 4l-4 4h3c0 3.31-2.69 6-6 6a5.87 5.87 0 01-2.8-.7l-1.46 1.46A7.93 7.93 0 0011 16c4.42 0 8-3.58 8-8h3l-4-4zM5 8c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0011 0C6.58 0 3 3.58 3 8H0l4 4 4-4H5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._reorder-white_js58o_405 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23ECECEC' cx='12' cy='12' r='12'/%3E%3Cpath d='M17 15l-5 6-5-6h10zm5-4v2H2v-2h20zM12 3l5 6H7l5-6z' fill='gray'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 20px 20px;
}
._icon_js58o_61._resume-white_js58o_409 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l10 5-10 5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._revert-white_js58o_412 {
  background-position-y: 5px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L0 4l5-4v3h4a5 5 0 010 10H5v-2h4a3 3 0 00.176-5.995L5 5v3z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._reply-white_js58o_416 {
  background-position-y: 5px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.707 10.293a1 1 0 01.083 1.32l-.083.094a1 1 0 01-1.32.083l-.094-.083-5-5a1.007 1.007 0 01-.107-.127l-.061-.096-.054-.113-.035-.105-.025-.118-.007-.058L0 6l.003-.075.017-.126.03-.111.044-.111.053-.099.063-.09.083-.095 5-5a1 1 0 011.497 1.32l-.083.094L3.415 5 9.039 5c3.464 0 5.19 2.19 4.935 6.065a1 1 0 11-1.995-.13c.177-2.708-.663-3.864-2.741-3.932L9.039 7l-5.624-.001 3.292 3.294z'/%3E%3C/svg%3E");
}
._icon_js58o_61._resolve-white_js58o_420,
._icon_js58o_61._resolve-readonly-white_js58o_421 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.556 0L13 1.314 4.59 11 0 6.302l1.366-1.399 3.14 3.214z'/%3E%3C/svg%3E");
}
._icon_js58o_61._save-white_js58o_424 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='14' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.556 13h10.888c.485 0 .556-.07.556-.556V3.525L10.475 1h-8.92C1.072 1 1 1.07 1 1.556v10.823c.071.51.194.621.556.621zM0 12.444V1.556C0 .519.519 0 1.556 0h9.333L14 3.111v9.333C14 13.481 13.481 14 12.444 14H1.556C.648 14 .13 13.481 0 12.444zM3 3v1h6V3H3zM2 2h8v3H2V2zm5.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm0 1a2.5 2.5 0 110-5 2.5 2.5 0 010 5z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._share-white_js58o_427 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.75 11.06c-.57 0-1.08.225-1.47.577L4.932 8.525C4.97 8.352 5 8.18 5 8c0-.18-.03-.352-.068-.525l5.288-3.082A2.24 2.24 0 0011.75 5 2.247 2.247 0 0014 2.75 2.247 2.247 0 0011.75.5 2.247 2.247 0 009.5 2.75c0 .18.03.353.068.525L4.28 6.358a2.24 2.24 0 00-1.53-.608A2.247 2.247 0 00.5 8a2.247 2.247 0 002.25 2.25 2.24 2.24 0 001.53-.607l5.34 3.12c-.037.157-.06.322-.06.487 0 1.207.982 2.19 2.19 2.19 1.207 0 2.19-.982 2.19-2.19 0-1.207-.982-2.19-2.19-2.19z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: calc(50% - 1px) 50%;
}
._icon_js58o_61._stop-white_js58o_431 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 6.09 6.09'%3E%3Cpath d='M0 0h6.09v6.09H0z'/%3E%3C/svg%3E");
  background-size: 50%;
}
._icon_js58o_61._table-white_js58o_435 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 6V4H6v2h4zm0 1H6v2h4V7zM5 7H1V6h4V4H1V3h4V1H1v8h4V7zm6 0v2h4V1h-4v2h4v1h-4v2h4v1h-4zm-1-4V1H6v2h4zM0 0h16v10H0V0z'/%3E%3C/svg%3E");
}
._icon_js58o_61._tag-white_js58o_438 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='19' height='19' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M10.314 0L.707 9.607 0 14.556l4.243 4.243 4.95-.707 9.606-9.607L10.314 0zM1.06 14.203l.59-4.125 8.664-8.663 7.07 7.07-8.663 8.664-4.125.59-3.536-3.536z'/%3E%3Cpath d='M5.339 14.96a1 1 0 11-2 0 1 1 0 012 0'/%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(50% + 1px) calc(50% - 1px);
}
._icon_js58o_61._trash-white_js58o_442 {
  background-position-x: 6px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='18' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 16c0 .548.452 1 1 1h6c.548 0 1-.452 1.003-1.083L10.913 5H1.086L2 16zm1 2c-1.1 0-2-.9-2-2L0 4h12l-1 12c0 1.1-.9 2-2 2H3zM9.5 1.993h2.51v.92H.02v-.92H2.5l1-1h5l1 1z'/%3E%3C/svg%3E");
}
._icon_js58o_61._upload-white_js58o_446 {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='14' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6V0h2v6h2l-3 5-3-5zm-6 8v-2h14v2z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._user-white_js58o_450 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.831 14.438a9 9 0 10-15.663 0C2.684 12.92 4.549 12 10 12c5.453 0 7.317.92 7.831 2.438zM9.994 20C4.474 19.997 0 15.52 0 10 0 4.477 4.477 0 10 0s10 4.477 10 10c0 5.52-4.474 9.997-9.994 10a10.401 10.401 0 01-.012 0zM10 10a3 3 0 100-6 3 3 0 000 6zm0 1a4 4 0 110-8 4 4 0 010 8zm0 2c-5.426 0-6.91.715-6.996 2.449a4 4 0 00.313.427 8.43 8.43 0 001.409 1.321C6.225 18.323 8.016 19 10 19c1.983 0 3.775-.677 5.274-1.803a8.43 8.43 0 001.409-1.32c.136-.166.244-.314.313-.428C16.909 13.715 15.426 13 10 13zm-7 2.598v-.033a9.197 9.197 0 010 .033z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._icon_js58o_61._caret-chevron-right-white_js58o_453 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1.527L4.945 6.5 0 11.473 1.522 13 8 6.5 1.522 0z'/%3E%3C/svg%3E");
}

/* White Data Type Icons */

._double-white_js58o_459 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 8.038c.552 0 1 .445 1 .994v3.974A.997.997 0 0113 14H9c-.552 0-1-.445-1-.994V9.032a.997.997 0 011-.994h4zm-3.5 3.975c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zm-3-1.49c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm-3-1.491c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zM6 1c.552 0 1 .445 1 .994v3.974a.997.997 0 01-1 .994H2c-.552 0-1-.445-1-.994V1.994A.997.997 0 012 1h4zM2.5 4.975c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496zm3 0c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496zm-3-1.49c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm-3-1.491c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496zm3 0c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496z'/%3E%3C/svg%3E");
}
._string-white_js58o_462 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11.993c0 .708.14.97.43 1.005l.07.004H11V14H8.5c-.422 0-.756-.136-1-.388-.213.22-.496.352-.846.382L6.5 14H4v-.998h2.5l.07-.004c.267-.032.407-.258.427-.85L7 11.994V7.998L6 8v-.998L7 7V3.007c0-.708-.14-.97-.43-1.005l-.07-.004H4V1h2.5c.422 0 .756.136 1 .388.213-.22.496-.352.846-.382L8.5 1H11v.998H8.5l-.07.004c-.267.032-.407.258-.427.85L8 3.006V7h1v1l-1-.002v3.995z'/%3E%3C/svg%3E");
}
._array-white_js58o_465 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 1v1H2v11h2v1H1V1h3zm10 0v13h-3v-1h2V2h-2V1h3zm-3 9v1H4v-1h7zm0-2v1H4V8h7zm0-2v1H4V6h7zm0-2v1H4V4h7z'/%3E%3C/svg%3E");
}
._boolean-white_js58o_468 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.09v1.183h-3.545v1.182h2.363v1.181h-2.363V14H9.273V8.09H14zm-.937-6.989l.836.836-11.7 11.7-.835-.836L13.063 1.1zM6.909 1v1.182H4.545v4.727H3.364V2.182H1V1h5.91z'/%3E%3C/svg%3E");
}
._byte-white_js58o_471 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 8v5h1v1H8v-4H7V9h1V8h1zm4 0v5h1v1h-2v-4h-1V9h1V8h1zm-8 5v1H2v-1h3zM2 9v4H1V9h1zm4 0v4H5V9h1zM5 8v1H2V8h3zm8-7v5h1v1h-2V3h-1V2h1V1h1zM3 1v5h1v1H2V3H1V2h1V1h1zm6 5v1H6V6h3zM6 2v4H5V2h1zm4 0v4H9V2h1zM9 1v1H6V1h3z'/%3E%3C/svg%3E");
}
._date-white_js58o_474 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 1v1h5V1h1v1h1a2 2 0 012 2v1.034h.003l-.003.4V12a2 2 0 01-2 2H3a2 2 0 01-2-2V4a2 2 0 012-2h1V1h1zM2 5.965V12a1 1 0 00.883.993L3 13h9a1 1 0 00.993-.883L13 12V6.028L2 5.965zM12 11v1h-1v-1h1zm-2-2v1H9V9h1zm2 0v1h-1V9h1zM8 9v1H7V9h1zM6 9v1H5V9h1zM4 7v1H3V7h1zm2 0v1H5V7h1zm2 0v1H7V7h1zm2 0v1H9V7h1zm2 0v1h-1V7h1zM4 3H3a1 1 0 00-.993.883L2 4v1.365l.003-.4L13 5.029V4a1 1 0 00-.883-.993L12 3h-1v1h-1V3H5v1H4V3z'/%3E%3C/svg%3E");
}
._float-white_js58o_477 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 1.007H1v1.01H0v-1.01h1V0h2v10.013h1V11H0v-.987h2zm7 0H8v1.01H7v-1.01h1V0h2v10.013h1V11H7v-.987h2z'/%3E%3Ccircle cx='5.5' cy='8.35' r='1.35'/%3E%3C/svg%3E");
}
._int-white_js58o_480 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.066 1c-.52 0-1.045.35-1.586 1.032-.534.672-.804 1.311-.804 1.916 0 .277.139.471.395.54l.207-.112c.357-1.054.774-1.559 1.22-1.559.184 0 .421.275.673.847L5.847 5.2c.034.079.066.156.096.231l.088.221.316.832.49 1.228-.135.287c-.336.743-.829 1.601-1.48 2.575-.755 1.14-1.467 1.697-2.124 1.697a1.21 1.21 0 01-.498-.104l-.124-.063-.202.034-1.225 1.268a.173.173 0 00.048.275c.433.212.84.319 1.218.319 1.664 0 3.268-1.551 4.834-4.621l.184-.368.315.808.375.93c.477 1.15.861 1.94 1.155 2.377.388.576.845.874 1.365.874.702 0 1.32-.447 1.848-1.316.349-.575.525-1.003.525-1.304 0-.236-.147-.418-.409-.538a.173.173 0 00-.238.11c-.265.951-.664 1.4-1.193 1.4-.3 0-.698-.507-1.133-1.54l-.1-.242-.357-.895-.376-.906-.638-1.627.223-.427c.806-1.544 1.456-2.608 1.946-3.187.47-.556.93-.826 1.377-.826.108 0 .24.038.394.117l.13.074.21-.033 1.201-1.277a.173.173 0 00-.048-.272 2.836 2.836 0 00-1.286-.302c-1.307 0-2.577 1.13-3.827 3.358l-.168.305-.642 1.205-.521-1.335C6.906 3.13 6.483 2.2 6.186 1.743 5.868 1.255 5.493 1 5.066 1z'/%3E%3C/svg%3E");
}
._long-white_js58o_483 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1a1 1 0 011 1v11a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1h11zm-1.26 2.186l-4.091.578L8.84 4.946 4.967 8.79 3.863 7.695l-.583 4.06 4.092-.579L6.137 9.95l3.874-3.843 1.147 1.139.582-4.06z'/%3E%3C/svg%3E");
}
._map-white_js58o_486 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.583 1v6.883l3.116 3.288a.474.474 0 01-.05.705.577.577 0 01-.694.016l-.071-.063-2.3-2.426V14H7.5V8.26L3.3 3.83a.474.474 0 01.052-.706.577.577 0 01.693-.016l.071.063L7.5 6.74V1h1.083zm4.334 9v3h-1.084v-3h1.084zm-9.75-1v1H4.25v1H3.167v1H2.083v-1H1v-1h1.083V9h1.084zm0-3v1H4.25v1H1V7h1.083V6h1.084zm9.75 0v1H14v1h-3.25V7h1.083V6h1.084zm-9.75-4v3H2.083V2h1.084zm9.75-1v1H14v1h-1.083v1h-1.084V3H10.75V2h1.083V1h1.084z'/%3E%3C/svg%3E");
}
._null-white_js58o_489 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 1c1.615 0 3.092.589 4.229 1.564l1.417-1.418a.5.5 0 01.765.638l-.057.07-1.418 1.417a6.5 6.5 0 01-9.165 9.165l-1.417 1.418a.5.5 0 01-.765-.638l.057-.07 1.418-1.417A6.5 6.5 0 017.5 1zm4.227 2.98L3.98 11.727a5.5 5.5 0 007.746-7.746zM7.5 2a5.5 5.5 0 00-4.227 9.02l7.747-7.747A5.478 5.478 0 007.5 2z'/%3E%3C/svg%3E");
}
._short-white_js58o_492 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1a1 1 0 011 1v11a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1h11zM7.5 2L4 5h2v5H4l3.5 3 3.5-3H9V5h2L7.5 2z'/%3E%3C/svg%3E");
}
._struct-white_js58o_495 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 1v1H2v11h2v1H1V1h3zm10 0v13h-3v-1h2V2h-2V1h3zm-2 5c-.137 3.592-3.007 2.739-4.234 2.232l-.15-.064c-4.188-1.832-4.135.404-4.135.404H3c0-1.25 1.194-3.449 4.583-2.033l.229.1C11.715 8.404 11.465 6 11.465 6H12z'/%3E%3C/svg%3E");
}
._timestamp-white_js58o_498 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 1a6.5 6.5 0 110 13 6.5 6.5 0 010-13zm0 1a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM8 4v3.999L10 8v1H7V4h1z'/%3E%3C/svg%3E");
}
._any-white_js58o_501 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.571 11.833V14H6.286v-2.167H8.57zM10.857 1v1.083H12v3.25h-1.143v1.084l-1.143-.001V7.5H8.571v2.167H6.286V7.5h1.143V5.333h2.285V3.167H6.286V4.25H4V2.083h1.143V1h5.714zM6.286 4.25v1.083H4V4.25h2.286z'/%3E%3C/svg%3E");
}
._vector-white_js58o_504 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.786L2.393 1l1.393 2.786h-.929v.342l.429.147C5.592 5.06 7.31 6.093 8.438 7.38c1.023 1.17 1.83 2.571 2.423 4.203l.144.413.049.147h.16v-.929L14 12.607 11.214 14v-.929H1.93V3.786H1zM2.857 5.11v6.104h.929v.929h6.286l-.083-.24c-.554-1.528-1.305-2.83-2.25-3.912C6.79 6.91 5.334 6.004 3.362 5.286l-.505-.176z'/%3E%3C/svg%3E");
}
._function-white_js58o_507 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%23fff'%3E%3Cpath d='M8.5 5l4.5 9h-2L8 8l-3 6H3l4-8s-.997-2.979-3-3c-.016 0-.003-2 0-2 3 0 4.5 4 4.5 4z'/%3E%3C/svg%3E");
}
._tabbedContainer_1wfj4_1 {
  position: relative;
}

._tabs_1wfj4_5 {
  display: flex;
  background-color: var(--color-tab-bg);
  border-bottom: var(--tab-border-bottom);
}

._tab_1wfj4_1 {
  padding: var(--tab-padding, 18px);
  cursor: pointer;
  text-transform: uppercase;
  color: var(--color-tab-normal);
  font-weight: var(--weight-medium);
  font-size: var(--font-xs);
  height: var(--tab-height);
  max-height: var(--tab-height);
  display: var(--tab-display, block);
  justify-content: var(--tab-justify-content, space-between);
  align-items: center;
  min-width: var(--tab-width, unset) !important;
  border-right: var(--tab-border-right, inherit);
  border-bottom: var(--tab-border-bottom, inherit);
  box-shadow: inset 0 -4px 0 0 var(--color-tab-normal-shadow, transparent);
}

._tab_1wfj4_1._arrows_1wfj4_29 {
  min-width: 10em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._tab_1wfj4_1._selected_1wfj4_36 {
  background-color: var(--color-tab-selected-bg);
  box-shadow: inset 0 -4px 0 0 var(--color-tab-selected-shadow, #df0131ff);
  border-radius: 4px 4px 0 0;
  z-index: 1;
  color: var(--color-tab-selected);
}
._tab_1wfj4_1 ._icon_1wfj4_43 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/arrow_down-ca95c469.svg');
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  height: 1.4em;
  width: 1.4em;
  margin-left: 12px;
  display: var(--tab-icon-display, none);
}
._tab_1wfj4_1._selected_1wfj4_36 ._icon_1wfj4_43 {
  transform: unset;
}

._content_1wfj4_57 {
  position: relative;
  top: var(--tab-container-content-top, -1px);
  padding: 8px 8px 8px 0;
}

.tab-style {
  min-height: 600px;
  padding: 32px;
}
._datePicker_ybykg_1 {
  --input-select-button-padding: var(--default-button-padding);
  position: relative;
  display: inline-flex;
  align-items: center;
}

._value_ybykg_8 {
  display: var(--datepicker-input-selcet-button-display, inline-block);
  align-items: center;
  padding: 5px 9px 4px 9px;
  border: var(--datepicker-input-button-border, var(--light-border));
  border-radius: var(--datepicker-input-select-border-radius, 0px);
  background: white;
  transition: border-color 0.3s;
  cursor: pointer;
  height: var(--datepicker-input-select-height);
}

._value_ybykg_8._invalid_ybykg_20 {
  border: 2px solid rgba(204, 34, 34, 0.7);
}

._value_ybykg_8:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4) inset;
}

._value_ybykg_8:hover {
  border-color: rgba(0, 0, 0, 0.365);
}

._placeholder_ybykg_34 {
  color: rgb(136, 136, 136);
}

._popup_ybykg_38 {
  --default-border: 1px solid #d6d6d6;
  --color-tab-selected-shadow: var(--color-datepicker-tab-selected-shadow);
  --color-tab-normal-shadow: var(--color-datepicker-tab-normal-shadow);
  --tab-icon-display: var(--datepicker-tab-icon-display);
  --color-tab-bg: var(--datepicker-tab-bg);
  --tab-bg-active: var(--datepicker-tab-bg-active);
  --tab-bg-normal: var(--datepicker-tab-bg-normal);
  --tab-border-bottom: var(--datepicker-tabs-border-bottom);
  --tab-padding: var(--datepicker-tab-padding);
  --tab-justify-content: var(--datepicker-tab-justify-content);
  --tabs-justify-content: var(--datepicker-tabs-justify-content);
  --color-tab-selected-bg: var(--datepicker-tab-bg-normal);
  position: var(--datepicker-popup-position, absolute);
  top: var(--datepicker-popup-top, 32px);
  left: var(--datepicker-popup-left, 0);
  z-index: var(--datepicker-popup-zindex, 9000);
  width: var(--datepicker-popup-width, 350px);
  border: var(--datepicker-popup-border, var(--default-border));
  border-left-style: var(--datepicker-popup-border-left, solid);
  border-right-style: var(--datepicker-popup-border-right, solid);
  border-top-style: var(--datepicker-popup-border-top, solid);
  background: var(--datepicker-popup-bg, #fff);
  text-align: var(--datepicker-popup-text-align, center);
}

._popup_ybykg_38::before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: var(--datepicker-popup-display-before, inline-block) !important;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: var(--datepicker-popup-content-before, '');
}

._popup_ybykg_38:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: var(--datepicker-popup-display-after, inline-block) !important;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: var(--datepicker-popup-content-after, '');
}

._relativeInputs_ybykg_87 {
  display: inline-block;
  margin-top: var(--datepicker-relative-inputs-margin-top, 10px);
  padding: 24px 0;
  width: 100%;
}

._relativeInputs_ybykg_87 ._select_ybykg_94 {
  margin-right: 5px;
}

._tabs_ybykg_98 {
  margin-bottom: 12px;
  text-align: center;
}

._tabs_ybykg_98 ._buttonX_ybykg_103 {
  border-color: #7c7c7c;
}

._tabs_ybykg_98 ._buttonX_ybykg_103._blue_ybykg_107 {
  background: #000;
  border-color: #000;
  color: #fff;
}

._tabs_ybykg_98 ._buttonX_ybykg_103._blue_ybykg_107:hover {
  background: #191919;
  color: #fff;
}

._absoluteInputs_ybykg_118 {
  box-sizing: border-box;
  width: 100%;
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

._absoluteInputs_ybykg_118 > div > input {
  box-sizing: border-box;
}
._absoluteInputs_ybykg_118 > div:first-child {
  border: none;
}

._absoluteInputs_ybykg_118 > div,
._absoluteInputs_ybykg_118 > div:first-child > div:nth-child(n + 1) {
  width: 100% !important;
}

._absoluteInputs_ybykg_118 > div:first-child > div:nth-child(2) > div:first-child {
  background-color: transparent;
  color: #000;
}
._absoluteInputs_ybykg_118 > div:first-child > div:nth-child(2) > div:last-child {
  display: grid;
  border: 1px solid #7c7c7c;
}
._absoluteInputs_ybykg_118 > div:first-child > div:nth-child(2) > div:last-child > div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-row-gap: 0;
  border-left: none;
}

._absoluteInputs_ybykg_118
  > div:first-child
  > div:nth-child(2)
  > div:last-child
  > div:first-child {
  border-top: none;
}

._absoluteInputs_ybykg_118
  > div:first-child
  > div:nth-child(2)
  > div:last-child
  > div
  > div {
  width: 100%;
  border: 1px solid #7c7c7c;
  border-left: none;
  border-bottom: none;
  border-radius: 0;
  padding: 8px;
  box-sizing: border-box;
  margin: 0;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

._absoluteInputs_ybykg_118
  > div:first-child
  > div:nth-child(2)
  > div:last-child
  > div:first-child
  div {
  border-top: none;
}

._absoluteInputs_ybykg_118
  > div:first-child
  > div:nth-child(2)
  > div:last-child
  > div
  > div:last-child {
  border-right: none;
}

._absoluteCalendarHeader_ybykg_203 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dadada;
  padding: 8px 0;
  background-color: transparent;
  font-size: var(--font-m);
  color: #000;
}

._absoluteCalendarHeader_ybykg_203 span {
  display: inline-block;
}

._absoluteCalendarHeader_ybykg_203 + div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 14%);
  margin-top: 8px;
}

._absoluteHeaderCaret_ybykg_225 {
  font-size: 24px;
  line-height: 0.7;
  cursor: pointer;
  padding: 0px 8px;
  user-select: none;
}

._timePicker_ybykg_233 {
  display: inline-block;
  width: 211px;
  margin-top: 10px;
  font-size: var(--font-m);
}

._timePicker_ybykg_233 input {
  text-align: center;
}

._length_ybykg_244 {
  display: inline-block;
  margin-right: var(--datepicker-relative-length-margin-right, 5px);
  width: var(--datepicker-relative-length-width, 60px);
  font-size: var(--font-m);
  height: 35px !important;
}

._length_ybykg_244 input {
  text-align: right;
}

._timeUnit_ybykg_256,
._timeArrow_ybykg_257,
._anchorGranularity_ybykg_258 {
  width: var(--datepicker-input-button-width) !important;
  --input-select-button-padding: var(--datepicker-input-select-button-padding);
  --dropdown-item-padding: var(--datepicker-dropdown-item-padding);
}

._datePreview_ybykg_264 {
  color: #888;
  margin-bottom: 8px;
  font-size: var(--font-s);
}

._relative_ybykg_87 {
  position: relative;
  left: -1px;
}

._tabContainerSpacing_ybykg_275 {
  justify-content: var(--tabs-justify-content, space-around);
  background-color: var(--color-tab-bg, #f6f6f6);
  font-size: var(--font-s);
}

._tabContainerContent_ybykg_281 {
  padding: 0;
}

._icon_ybykg_285 {
  width: 12px;
  height: 18px;
  margin-right: 12px;
  vertical-align: middle;
  cursor: pointer;
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='17' fill='%23888' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 1h1v1h3v1H4v1H3V1zm5 14v-2h2v2H8zm-6 0v-2h2v2H2zm3 0v-2h2v2H5zm3-3v-2h2v2H8zm-6 0v-2h2v2H2zm3 0v-2h2v2H5zm3-3V7h2v2H8zM2 9V7h2v2H2zm3 0V7h2v2H5zm3-8h1v1h3v15H0V2h2v1H1v2h10V3H9v1H8V1zM1 16h10V6H1v10z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._arrow_ybykg_295 {
  display: inline-block;
  width: 14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='8' fill='%23ccc' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.473 0L6.5 4.945 1.527 0 0 1.522 6.5 8 13 1.522z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  height: 8px;
  margin-left: 4px;
}

._datePicker_ybykg_1:hover ._arrow_ybykg_295 {
  background: var(--datepicker-input-select-button-icon-focused);
}

._quickSelectRow_ybykg_310 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  cursor: pointer;
  font-size: var(--font-s);
}

._quickSelectRow_ybykg_310:hover {
  background: var(--color-state-hover);
  color: #ffffff;
}

._selectedText_ybykg_324 {
  font-weight: 500;
}

._quickSelectCustomRow_ybykg_328 {
  border-top: 1px solid #dadada;
}

._quickSelectText_ybykg_332 {
  margin-left: 20px;
}

._quickSelectIcon_ybykg_336 {
  margin-right: 20px;
}

._quickselectBackContainer_ybykg_340 {
  border-bottom: 1px solid #dadada;
  margin-bottom: 20px;
  justify-content: flex-start;
}

/* Icons */

._relativeIcon_ybykg_348 {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background: var(--icon-button-bg-normal) no-repeat center;
  background-color: transparent;
  background-size: contain;
}

._selectedIcon_ybykg_357 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/resolve-056eea7b.svg');
}

._quickSelectRow_ybykg_310:hover ._selectedIcon_ybykg_357 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.556 0L13 1.314 4.59 11 0 6.302l1.366-1.399 3.14 3.214z'/%3E%3C/svg%3E");
}

._customIcon_ybykg_365 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='13' fill='%23ccc' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1.527L4.945 6.5 0 11.473 1.522 13 8 6.5 1.522 0z'/%3E%3C/svg%3E");
}

._quickSelectRow_ybykg_310:hover ._customIcon_ybykg_365 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='13' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1.527L4.945 6.5 0 11.473 1.522 13 8 6.5 1.522 0z'/%3E%3C/svg%3E");
}

._backIcon_ybykg_373 {
  margin-left: 20px;
  margin-right: 12px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23868686' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7H3.83l5.59-5.59L8 0 0 8l8 8 1.41-1.41L3.83 9H16z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._predicate_vc4on_1 {
  --input-number-border-radius: var(--input-select-button-border-radius, 0);
  --search-box-filter-delete-button-margin: 0;
  --datepicker-popup-position: absolute;
  --datepicker-popup-zindex: 9000;
  --datepicker-tabs-justify-content: space-around;
  --datepicker-popup-width: fit-content;
  --datepicker-input-select-border-radius: var(
    --input-select-button-border-radius,
    0
  );
  --datepicker-input-select-height: var(--input-select-button-height);
  --datepicker-input-button-border: var(--input-select-button-border);
  display: inline-flex;
  flex-grow: 2;
  height: var(--button-height, 33px);
  align-items: center;
  width: var(--predicate-width);
}
._predicate_vc4on_1:hover ._hoverable_vc4on_20 div div:first-child {
  border-color: #757575 !important;
}
._predicate_vc4on_1:hover ._hoverable_vc4on_20 svg line {
  stroke: #7d7d7d;
}

._deleteButton_vc4on_27 {
  display: var(--predicate-delete-button-display, inline-flex) !important;
}

._betweenAnd_vc4on_31 {
  display: inline-block;
  line-height: 33px;
  margin: 0 12px;
}

._singleOp_vc4on_37 {
  margin-right: 12px;
  line-height: 32px;
}

._singleOp-control_vc4on_42 {
  height: var(--button-height) !important;
  width: var(--single-predicate-dropdown-width);
}

._lhsContainer_vc4on_47 {
  margin-right: 12px;
  height: var(--single-predicate-button-height);
}
._verticallyCenteredColumn_dw1qt_1 {
  display: flex;
  align-items: center;
}._addColumnWrapper_dw1qt_6 {
  display: inline-block;
  margin-left: 35px;
  padding: 16px 30px;
}._addColumn_dw1qt_6 {
  color: #a9a9a9;
  cursor: pointer;
}._eventRow_dw1qt_17 {
  align-items: center;
}._formElement_dw1qt_21 {
  margin-bottom: 0px;
}._segmentationMetricsPanel_4xd8s_1 {
  display: flex;
  margin-bottom: 24px;
  padding: 12px 24px 12px 24px;
}._segmentationMetricsPanelInset_4xd8s_7 {
  display: flex;
  flex-direction: column;
  min-width: 500px;
}._activeDropTarget_4xd8s_13 {
  background: var(--color-bg-dark);
}._grabber_4xd8s_17 {
  margin-left: 8px;
  line-height: 16px;
}._card_4xd8s_22:hover ._grabber_4xd8s_17 {
  cursor: move;
}._metricItem_4xd8s_26 {
  display: flex;
  margin-bottom: 24px;
}._firstSelector_4xd8s_31 {
  margin-top: 10px;
}._guideLineContainer_4xd8s_35 {
  flex: 1 1 auto;
  margin-top: 22px;
}._guideLine_4xd8s_35 {
  height: 1px;
  background: #e0e0e0;
  margin: 0 8px;
  min-width: 60px;
}._metricDeleteButton_4xd8s_47 {
  margin-top: 12px;
}._addMetricButton_4xd8s_51 {
  height: 28px;
  align-self: flex-start;
  background-color: var(--color-bg-level1);
  border-radius: 4px;
  border: 1px solid rgba(112, 112, 112, 0.46);
  padding: 0px 10px;
  font-weight: var(--weight-regular);
}._addMetricButton_4xd8s_51:hover {
  font-weight: var(--weight-regular) !important;
}._showLabel_4xd8s_65 {
  width: 81px;
  padding-top: 12px;
  padding-right: 12px;
  line-height: 30px;
  text-align: right;
}._showLabel_4xd8s_65 span {
  color: var(--color-text-black) !important;
}._metricTitle_4xd8s_77 {
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  color: #050505;
}._titleRow_4xd8s_83 {
  padding: 0 0 12px 0;
}

._addColumnWrapper_i4u9i_1 {
}

._addColumn_i4u9i_1 {
}

._addColumn_i4u9i_1:hover {
  color: #7d7d7d;
  font-weight: var(--weight-thick);
}

._guideLineContainer_i4u9i_14 {
  align-self: center;
  margin-top: 0;
}

._guideLine_i4u9i_14 {
  background: unset;
  border-top: 1px dotted #e0e0e0;
}

._closeButton_i4u9i_26 {
  margin: var(--search-box-filter-delete-button-margin, 11px 0 0 0);
}

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

._container_i4u9i_35 {
  flex-grow: 1;
  display: inline-flex;
  justify-content: stretch;
}
._container_19jpo_1 {
  --input-text-border-radius: var(--text-border-radius-level2, 0);
  position: relative;
  margin-top: 8px;
  padding: var(--predicate-container-padding, 22px 8px 24px 32px);
  border: 1px solid var(--color-section-border);
  background: var(--color-bg-level2);
}

._addFilterButton_19jpo_10 {
  margin-left: var(--filter-add-margin-left, 0);
  font-weight: var(--button-text-font-weight, var(--weight-regular));
  border: var(--button-secondary-border-normal);
  border-radius: var(--button-border-radius);
  padding: 0 var(--button-padding-horizontal);
  height: var(--button-height, 20px);
  font-size: var(--button-text-font-size, var(--font-s));
  width: var(--filter-add-width, auto);
  color: var(--filter-add-color, var(--color-text-dark));
  text-transform: var(--button-text-transform);
}

._addFilterButton_19jpo_10:hover {
  font-weight: var(--button-text-font-weight, var(--weight-regular)) !important;
}

._label_19jpo_27 {
  display: inline-block;
  width: 40px;
  margin-right: 12px;
  color: var(--predicate-label-color, var(--color-text-black));
  font-size: var(--predicate-label-font-size, var(--font-m));
  line-height: var(--predicate-label-line-height, 24px);
  text-align: right;
  text-transform: var(--text-transform-level2, unset);
  font-weight: var(--predicate-label-font-weight);
}

._booleanLabel_19jpo_39 {
  cursor: pointer;
}

._row_19jpo_43 {
  display: flex;
  align-items: var(--filter-row-align-items, baseline);
  margin-top: var(--filter-row-margin-top, 22px);
}
._row_19jpo_43:first-child {
  margin-top: 0;
}

._clear_19jpo_52 {
  width: auto;
  cursor: pointer;
  color: #02044d;
  font-size: var(--font-s);
  font-weight: var(--predicate-label-font-weight, var(--weight-regular));
  text-decoration: underline;
  text-transform: var(--text-transform-level1, unset);
  padding: 0;
  position: var(--filter-clear-position, absolute);
  right: var(--filter-clear-right, 8px);
  bottom: var(--filter-clear-bottom, 0px);
}

._footer_19jpo_66 {
  justify-content: space-between;
  margin-top: var(--predicate-footer-margin-top, 12px);
}
._searchBoxContainer_1yefw_1 {
  display: flex;
  align-items: var(--searchBoxContainer-align-items, unset);
}

._searchBox_1yefw_1 {
  display: flex;
  box-sizing: var(--search-box-boxsizing, initial);
  width: var(--search-box-width, 452px);
  height: var(--search-box-height, 28px);
  margin: var(--search-box-margin, 0 20px 0 0);
  background: var(--search-box-background, #fff);
  border: var(
    --search-box-border,
    1px solid var(--search-box-border-color, var(--color-search-box-normal))
  );
  border-right: var(
    --search-box-border-right,
    var(
      --search-box-border,
      1px solid var(--search-box-border-color, var(--color-search-box-normal))
    )
  );
  border-radius: var(--search-box-border-radius, 0);
  align-items: center;
  padding-right: 10px;
  color: var(--color-search-box-normal);
  position: relative;
}

._searchBox_1yefw_1._filterable_1yefw_31 {
  border-radius: var(
    --search-box-border-radius-filterable,
    var(--search-box-border-radius)
  );
}

._toolbar_1yefw_38 {
  display: inline-flex;
  width: 300px;
  height: 30px;
  margin: initial;
  border-radius: 15px;
}

._focused_1yefw_46 {
  border-color: var(
    --search-box-focused-border-color,
    var(--color-search-box-focus)
  );
  color: var(--search-box-focused-color, var(--color-search-box-focus));
}

._searchBox_1yefw_1:hover {
  border-color: var(
    --search-box-hover-border-color,
    var(--color-search-box-hover)
  );
  color: var(--search-box-hover-color, var(--color-search-box-normal));
}

._searchInput_1yefw_62 {
  width: 100%;
  height: 38px;
  margin: 0 10px;
  outline: none;
  border: none;
  background: transparent;
  font-size: var(--font-s);
  color: var(--color-search-box-focus);
  padding-left: var(--search-box-input-padding-left, unset);
}

._searchInput_1yefw_62::placeholder {
  color: var(
    --search-box-input-placeholder-color,
    var(--color-search-box-placeholder)
  );
  font-size: var(--search-box-input-placeholder-font-size, unset);
  font-weight: var(--search-box-input-placeholder-font-weight, unset);
  font-style: var(--search-box-input-placeholder-font-style, unset);
  letter-spacing: var(--search-box-input-placeholder-letter-spacing, unset);
}

._searchIcon_1yefw_85 {
  display: var(--search-box-icon-display, unset);
  border-radius: var(--search-box-icon-border-radius, 0);
  position: absolute;
  right: 10px;
}

._searchIcon_1yefw_85 svg {
  display: block;
  width: 18px;
}

._spinner_1yefw_97 svg {
  animation: _fa-spin_1yefw_1 3s linear infinite;
}

._clear_1yefw_101 {
  cursor: pointer;
  width: var(--search-box-icon-width, auto);
}

._clear_1yefw_101:hover svg circle {
  fill: #333;
}

._emptySearchIcon_1yefw_110 {
  height: var(--search-box-icon-height, 18px);
  width: var(--search-box-icon-width, 18px);
  border-radius: var(--search-box-icon-border-radius, 0);
  background-image: var(
    --search-box-icon-empty,
    url('/decisionanalytics/ascend-intelligence/assets/search-592f6dc1.svg')
  );
  background-repeat: no-repeat;
  background-color: var(--search-box-icon-bg, transparent);
}

._addFilterButton_1yefw_122 {
  width: var(--search-box-filter-width, unset);
  height: var(--search-box-filter-height, 28px);
  margin-left: var(--search-box-filter-margin, unset);
  border: var(--search-box-filter-border, 1px solid #d6d6d6);
  border-left: var(
    --search-box-border-left,
    var(--search-box-filter-border, 1px solid #d6d6d6)
  );
  border-radius: var(--search-box-filter-border-radius, 4px);
  color: var(--search-box-filter-color, #02044d);
  text-transform: var(--search-box-filter-text-transform, unset);
  font-weight: var(--search-box-filter-font-weight, unset);
  background: var(--search-box-filter-bg, unset);
}

._addFilterButton_1yefw_122 span {
  display: var(--search-box-filter-button-text-display, inline);
  padding: 0 10px;
}

._addFilterButton_1yefw_122 span:after {
  content: '+ filter';
}

._addFilterButton_1yefw_122:disabled,
._addFilterButton_1yefw_122:enabled:hover {
  background: var(--search-box-filter-bg-hover, var(--buttonX-bg-white-hover));
  border: var(--search-box-filter-border-hover);
}

._collections_1yefw_153 {
  margin-top: 8px;
}

._fixedTagContainer_1yefw_157 {
  margin-left: 10px;
  max-width: calc(100% - 30px);
}

._fixedTag_1yefw_157 {
  padding: 0 8px;
  height: 20px;
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  border-radius: 4px;
  font-size: var(--font-xxs);
  font-weight: 400;
}

._hidden_1yefw_176 {
  visibility: var(--search-box-filter-hidden, hidden);
}
._newMenu_s4s8l_1 {
  display: block;
  font-size: var(--font-m);
  margin: 0 0 0 auto;
}

._ddItemHeader_s4s8l_7 {
  margin: 7px 0 13px 9px;
  color: var(--color-text-blue);
  font-size: var(--font-s);
}

._ddItem_s4s8l_7 {
  display: flex;
  margin: 0 0 8px 4px;
  padding: 4px 0;
  flex-direction: row;
  line-height: 1.4;
}

._label_s4s8l_21 {
  color: var(--color-text-black);
  font-size: var(--font-m);
}

._description_s4s8l_26 {
  color: var(--color-text-gray);
  font-size: var(--font-s);
}

._ddItem_s4s8l_7:hover ._label_s4s8l_21 {
  color: var(--color-text-white);
}

._ddItem_s4s8l_7:hover ._description_s4s8l_26 {
  color: #ccc;
}

._icon_s4s8l_39 {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 4px 13px 0 0;
  background: transparent no-repeat center;
}

._icon_s4s8l_39._Segmentation_s4s8l_47 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/events-f25446ab.svg');
}
._icon_s4s8l_39._EntityCohortAnalysis_s4s8l_50 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/cohorts-6ebcd2df.svg');
}
._icon_s4s8l_39._Funnel_s4s8l_53 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/funnel-23a8659c.svg');
}
._icon_s4s8l_39._SqlTable_s4s8l_56 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sql-58b2cd05.svg');
}
._icon_s4s8l_39._EntityPrediction_s4s8l_59 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/entity-fe68ce6c.svg');
}
._icon_s4s8l_39._SqlPrediction_s4s8l_62 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sqlPrediction-30cdcd44.svg');
}
._icon_s4s8l_39._SegmentAnalysis_s4s8l_65 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/segmentation-3d731ddb.svg');
}
._icon_s4s8l_39._Clustering_s4s8l_68 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/clustering-c0dfaad1.svg');
}
._icon_s4s8l_39._DimReduction_s4s8l_71 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/anomaly-5b08e0ea.svg');
}
._icon_s4s8l_39._Word2Vec_s4s8l_74 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/wordEmbedding-ec7a160a.svg');
}
._icon_s4s8l_39._EntityInstanceList_s4s8l_77 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/entity-fe68ce6c.svg');
}
._result_76kdk_1 {
  background-color: #f0ecec;
  border-radius: 15px;
  padding: 4px 15px 4px 15px;
}
/*--Actions--*/
._actionsSelectButtonLabel_1pqzy_2 {
  font-style: normal;
  color: #918e8e;
}

._actionsSelect_1pqzy_2 * {
  outline: none;
}

/*--disable actions ----*/
._actionsSelect_1pqzy_2._disabledAction_1pqzy_12 > * {
  pointer-events: none;
}

._actionsSelect_1pqzy_2._disabledAction_1pqzy_12 ._actionsSelectButton_1pqzy_2,
._actionsSelect_1pqzy_2._disabledAction_1pqzy_12:hover ._actionsSelectButton_1pqzy_2 {
  background: var(--input-select-button-bg-color-disabled, --color-bg-level1);
  border: 1px solid var(--input-select-button-border-color-disabled, #cccccc);
  pointer-events: none;
}

._actionsSelect_1pqzy_2._disabledAction_1pqzy_12 ._actionsSelectButtonLabel_1pqzy_2,
._actionsSelect_1pqzy_2._disabledAction_1pqzy_12 ._actionsSelectButton_1pqzy_2,
._actionsSelect_1pqzy_2._disabledAction_1pqzy_12:hover ._actionsSelectButtonLabel_1pqzy_2,
._actionsSelect_1pqzy_2._disabledAction_1pqzy_12:hover ._actionsSelectButton_1pqzy_2 {
  color: var(--input-select-button-color-disabled, #cccccc);
}

._actionsSelect_1pqzy_2._disabledAction_1pqzy_12 ._actionsSelectDropdownArrow_1pqzy_30 {
  background: url('../../../images/pulldown-arrow-hint.svg', fill='#CCC')
    no-repeat center;
}

/*-----active Actions---*/
._actionsSelectButton_1pqzy_2 {
  background: #fff;
  border: 1px solid var(--input-select-button-border-color, #918e8e);
  border-radius: var(--input-select-button-border-radius, 3px);
  padding: var(--input-select-button-padding, 4px 8px 3px 8px);
  height: var(--input-select-button-height);
  width: var(--input-actions-select-button-width);
  display: flex;
  justify-content: var(--input-select-button-justify-content);
  align-items: center;
  cursor: pointer;
}

._actionsSelectDropdownArrow_1pqzy_30 {
  margin-left: var(--input-select-button-icon-margin-left, 3px);
  background: url('../../../images/pulldown-arrow-hint.svg', fill='#918E8E')
    no-repeat center;
  display: inline-block;
  width: 12px;
  height: 12px;
}

/*-------focused Actions-----*/
._actionsSelect_1pqzy_2._focusedAction_1pqzy_59 ._actionsSelectButton_1pqzy_2,
._actionsSelect_1pqzy_2._focusedAction_1pqzy_59:hover ._actionsSelectButton_1pqzy_2 {
  background: #ffffff;
  border-left: 1px solid var(--input-select-button-border-color, #ce2c39);
  border-right: 1px solid var(--input-select-button-border-color, #ce2c39);
  border-top: 1px solid var(--input-select-button-border-color, #ce2c39);
  border-bottom: var(
    --input-select-button-focus-border-bottom,
    1px solid var(--input-select-button-border-color, #ce2c39)
  );
  border-top-right-radius: var(--input-select-button-border-radius, 3px);
  border-top-left-radius: var(--input-select-button-border-radius, 3px);
  border-bottom-left-radius: var(
    --input-select-button-focus-border-radius,
    var(--input-select-button-border-radius, 3px)
  );
  border-bottom-right-radius: var(
    --input-select-button-focus-border-radius,
    var(--input-select-button-border-radius, 3px)
  );
}
._actionsSelect_1pqzy_2._focusedAction_1pqzy_59 ._actionsSelectButtonLabel_1pqzy_2 {
  color: var(--input-select-button-color, #ce2c39);
}
._actionsSelect_1pqzy_2._focusedAction_1pqzy_59 ._actionsSelectDropdownArrow_1pqzy_30 {
  background: var(
    --input-select-button-icon-focused,
    url('../../../images/pulldown-arrow-hint.svg', fill='#ce2c39')
  );
}
._newChartButton_c4jkc_1,
._newChartButton_c4jkc_1 button {
  height: 28px;
}

._actionsRow_c4jkc_6 {
  display: flex;
  position: relative;
}

._filterMatch_c4jkc_11 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._dependencyGraph_j3frd_1 {
  --fill-apply_model: #d1faf8;
  --fill-customModelFitting: #b8adeb;
  --fill-customModelFitting: #d5e7fc;
  --fill-entityProperty: #c6ecea;
  --fill-entityTable: #99d8c9;
  --fill-error: #ffffff;
  --fill-event: #ecdac6;
  --fill-explicit_fitting_model_info: #888;
  --fill-fittingModel: #d5e7fc;
  --fill-generic: #cfc1f1;
  --fill-missing: #ffcd48;
  --fill-model: #d2ecc6;
  --fill-modelInfo: #d2ecc6;
  --fill-pipeline: #aed6f1;
  --fill-pipelineSource: #85c1e9;
  --fill-resource: #eaecc6;
  --fill-table: #ebc2e2;
  --fill-tableValuedFunction: #5dade2;
}

._arrow_j3frd_22 {
  display: inline-block;
  color: var(--color-text-gray);
  cursor: pointer;
  border: 1px solid black;
  min-width: 35px;
  min-height: 35px;
  border-radius: 50%;
  padding-left: 9px;
  padding-top: 7px;
}

._pageDocument_j3frd_34 {
  margin-bottom: calc(var(--contentarea-inner-padding-sides) * -1);
  background: #fff;
}

._dependencyGraphSvg_j3frd_39 {
  cursor: crosshair;
  font-family: Roboto;
  font-size: 10px;
  cursor: auto;
  z-index: 1000;
  position: relative;
}

._headerGroup_j3frd_48 {
  font-size: var(--font-m);
}

._titleRowContainer_j3frd_52 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

._titleContainer_j3frd_58 {
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
}

._historyContainer_j3frd_63 {
  margin-top: 20px;
  width: 50px;
  height: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

._historyArrowContainer_j3frd_72 {
  min-width: 87px;
  padding-top: 30px;
}

._historyArrowContainerForward_j3frd_77 {
  padding-left: 52px;
}

._graphInfo_j3frd_81 {
  font-size: 14px;
  padding-top: 10px;
}

._radio_j3frd_86 {
  margin-right: 10px;
}

._radiosWrapper_j3frd_90 {
  display: inline-block;
}

._radioWrapper_j3frd_94 {
  display: inline-flex;
  align-items: center;
}

._radioLabel_j3frd_99 {
  font-size: var(--font-m);
  margin-right: 10px;
}

._containerRemove_j3frd_104 {
  overflow: scroll;
  height: calc(100vh - 200px);
  margin-bottom: 10px;
}

._header_j3frd_48 {
  width: 100%;
}

._controlsWrapper_j3frd_114 {
  display: flex;
  flex-direction: row;
  padding-bottom: 20px;
}

._controlsContainer_j3frd_120 {
  margin-top: 20px;
}

._controlLabel_j3frd_124 {
  display: inline-block;
  width: 40px;
  margin-right: 20px;
}

._metaContainer_j3frd_130 {
  position: fixed;
  left: 100px;
  bottom: 30px;
  font-size: 14px;
  width: fit-content;
  color: #050505;
  padding: 7px;
  background-color: var(--color-bg-contentarea);
  opacity: 0.8;
  border-radius: 3px;
}

._metaContainerEmbedded_j3frd_143 {
  margin-top: -90px;
  font-size: 14px;
  width: fit-content;
  color: #050505;
  padding: 7px;
  background-color: var(--color-bg-contentarea);
  opacity: 0.8;
  border-radius: 3px;
}

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

._viewContainer_j3frd_159 {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
}

._viewContainerEmbedded_j3frd_165 {
  margin-bottom: 10px;
  display: inline-block;
}

._spinnerContainer_j3frd_170 {
  margin-top: 24px;
}

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

._errorMessage_j3frd_179 {
  margin-top: 24px;
  color: red;
}

._edgeStroke_j3frd_184 {
  stroke: #aaa;
}

._edgeStrokeCycle_j3frd_188 {
  stroke: blue;
}

._edgeStrokeSelected_j3frd_192 {
  stroke: black;
}

._edgeStrokeError_j3frd_196 {
  stroke: red;
}

._edgeStroke_j3frd_184:hover,
._edgeStrokeCycle_j3frd_188:hover,
._edgeStrokeSelected_j3frd_192:hover {
  stroke: black;
}

._markerArrowNormal_j3frd_206 {
  fill: #aaa;
}

._markerArrowError_j3frd_210 {
  fill: red;
}

._markerArrowCycle_j3frd_214 {
  fill: blue;
}

._markerArrowNormalReverse_j3frd_218 {
  fill: #aaa;
}

._markerArrowCycleReverse_j3frd_222 {
  fill: blue;
}

._nodeTextStyle_j3frd_226 {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}

._nodeBoxStyle_j3frd_233 {
  rx: 3;
  cursor: pointer;
}

._nodeBoxStrokeNormal_j3frd_238 {
  stroke: none;
}

._nodeBoxStrokeSelected_j3frd_242 {
  stroke: #02044d;
}

._nodeBoxStrokeError_j3frd_246 {
  stroke: #ff0000;
}

._nodeBoxStrokeSynthetic_j3frd_250 {
  stroke: #ff0000;
  stroke-width: 3px;
}

._nodeBoxFill-generic_j3frd_255 {
  background-color: var(--fill-generic);
}

._nodeBoxFill-entityProperty_j3frd_259 {
  background-color: var(--fill-entityProperty);
}

._nodeBoxFill-entityTable_j3frd_263 {
  background-color: var(--fill-entityTable);
}

._nodeBoxFill-error_j3frd_267 {
  background-color: rgba(0, 0, 0, 0);
  border: 1.5px solid #ff0000;
}

._nodeBoxFill-event_j3frd_272 {
  background-color: var(--fill-event);
}

._nodeBoxFill-explicit_fitting_model_info_j3frd_276 {
  background-color: var(--fill-explicit_fitting_model_info);
}

._nodeBoxFill-fittingModel_j3frd_280 {
  background-color: var(--fill-fittingModel);
}

._nodeBoxFill-customModelFitting_j3frd_284 {
  background-color: var(--fill-customModelFitting);
}

._nodeBoxFill-model_j3frd_288 {
  background-color: var(--fill-model);
}

._nodeBoxFill-modelInfo_j3frd_292 {
  background-color: var(--fill-modelInfo);
}

._nodeBoxFill-resource_j3frd_296 {
  background-color: var(--fill-resource);
}

._nodeBoxFill-table_j3frd_300 {
  background-color: var(--fill-table);
}

._nodeBoxFill-tableValuedFunction_j3frd_304 {
  background-color: var(--fill-tableValuedFunction);
}

._nodeBoxFill-apply_model_j3frd_308 {
  background-color: var(--fill-apply_model);
}

._nodeBoxFill-pipelineSource_j3frd_312 {
  background-color: var(--fill-pipelineSource);
}

._nodeBoxFill-pipeline_j3frd_312 {
  background-color: var(--fill-pipeline);
}

._nodeBoxFill-svg-generic_j3frd_320 {
  fill: var(--fill-generic);
}

._nodeBoxFill-svg-entityProperty_j3frd_324 {
  fill: var(--fill-entityProperty);
}

._nodeBoxFill-svg-entityTable_j3frd_328 {
  fill: var(--fill-entityTable);
}

._nodeBoxFill-svg-event_j3frd_332 {
  fill: var(--fill-event);
}

._nodeBoxFill-svg-explicit_fitting_model_info_j3frd_336 {
  fill: var(--fill-explicit_fitting_model_info);
}

._nodeBoxFill-svg-fittingModel_j3frd_340 {
  fill: var(--fill-fittingModel);
}

._nodeBoxFill-svg-customModelFitting_j3frd_344 {
  fill: var(--fill-customModelFitting);
}

._nodeBoxFill-svg-model_j3frd_348 {
  fill: var(--fill-model);
}

._nodeBoxFill-svg-modelInfo_j3frd_352 {
  fill: var(--fill-modelInfo);
}

._nodeBoxFill-svg-resource_j3frd_356 {
  fill: var(--fill-resource);
}

._nodeBoxFill-svg-table_j3frd_360 {
  fill: var(--fill-table);
}

._nodeBoxFill-svg-tableValuedFunction_j3frd_364 {
  fill: var(--fill-tableValuedFunction);
}

._nodeBoxFill-svg-apply_model_j3frd_368 {
  fill: var(--fill-apply_model);
}

._nodeBoxFill-svg-customModelFitting_j3frd_344 {
  fill: var(--fill-customModelFitting);
}

._nodeBoxFill-svg-pipelineSource_j3frd_376 {
  fill: var(--fill-pipelineSource);
}

._nodeBoxFill-svg-pipeline_j3frd_376 {
  fill: var(--fill-pipeline);
}

._nodeBoxFill-svg-missing_j3frd_384 {
  fill: var(--fill-missing);
}

._legendContainer_j3frd_388 {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}

._legendItemContainer_j3frd_394 {
  display: flex;
  flex-direction: row;
  margin-right: 20px;
}

._legendItemMarker_j3frd_400 {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 2px;
}

._legendItemText_j3frd_408 {
  display: inline;
  text-transform: capitalize;
}
._container-with-comments_1w7g5_1 {
  display: flex;
  flex-direction: row;
  min-height: 100%;
}

._content-container_1w7g5_7 {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

._space-holder_1w7g5_13 {
  width: 424px;
  min-width: 424px;
}

._comments-sidebar_1w7g5_18 {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  position: absolute;
  background-color: var(--color-bg-level1);
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}

._empty-state_1w7g5_31 {
  width: 100%;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  color: var(--color-text-dark);
  font-weight: var(--weight-thick);
  font-size: var(--font-xl);
  text-align: center;
}

._top-area_1w7g5_43 {
  flex-grow: 1;
  max-height: calc(100% - 80px);
  overflow-y: scroll;
}

._comments-header_1w7g5_49 {
  margin-bottom: 20px;
  font-size: var(--font-l);
  padding: 18px 18px 18px 18px;
  cursor: pointer;
  text-transform: uppercase;
  color: #7a779a;
  color: var(--color-tab-normal);
  font-weight: 400;
  font-weight: var(--weight-medium);
}

._close-sidebar-button_1w7g5_61 {
  position: absolute;
  right: 10px;
  cursor: pointer;
}

._comments-list_1w7g5_67 {
  display: flex;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  padding: 24px 16px 0 34px;
  flex-direction: column;
}

._comment_1w7g5_18 {
  display: block;
  flex-direction: column;
  margin-bottom: 24px;
  opacity: 100%;
  transition: opacity 2s;
}

._comment-content_1w7g5_84 {
  display: block;
  margin: 12px 0;
  text-align: left;
  white-space: pre-wrap;
}

._comment-info_1w7g5_91 {
  display: block;
  color: #aaa;
  margin: 2px 0;
  font-size: 12px;
}

._error-container_1w7g5_98 {
  margin: 8px;
}

._centered-content_1w7g5_102 {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

._bottom-area_1w7g5_110 {
  display: flex;
  flex-direction: column;
  --alert-box-padding: 12px;
  --alert-box-margin: 0;
}

._resolved-toggle_1w7g5_117 {
  display: flex;
  align-content: space-between;
  justify-content: flex-end;
  padding: 8px;
  background: var(--color-bg-level1);
  border-bottom: 1px solid #cacaca;
}

._resolved-icon_1w7g5_126 {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: var(--icon-button-bg-normal) no-repeat center;
  border: 1px solid #757575;
  margin-right: 8px;
}

._new-comment_1w7g5_136 {
  border-top: 2px solid #cccccc;
  padding: 20px;
  width: 100%;
  display: inline-flex;
  max-height: 400px;
}

._new-comment-input_1w7g5_144 {
  width: 100%;
  max-width: 80%;
  margin-right: 8px;
}

._new-reply-input_1w7g5_150 {
  width: 100%;
  max-height: 360px;
  --textarea-max-height: 360px;
}

._post-button-container_1w7g5_156 {
  display: flex;
  flex-grow: 1;
  flex-direction: column-reverse;
}

._new-reply_1w7g5_150 {
  width: 100%;
}

._reply-actions_1w7g5_166 {
  display: flex;
  flex-direction: row-reverse;
  font-weight: var(--weight-regular);
  color: var(--color-text-link);
}

._comment_1w7g5_18._resolved_1w7g5_117 {
  opacity: 60%;
  transition: opacity 2s;
}

._comment_1w7g5_18._resolved_1w7g5_117:hover {
  opacity: 100%;
  transition: opacity 0.5s;
}

._replies_1w7g5_183 {
  padding-left: 16px;
}

._replies_1w7g5_183 ._comment_1w7g5_18 {
  margin-top: 24px;
}

._actions_1w7g5_191 span {
  font-size: 12px;
  margin-right: 15px;
  color: #acacac;
}

._commentMeta_1w7g5_197 {
  height: 32px;
  width: 100%;
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 12px;
}

._metaInfo_1w7g5_207 {
  display: flex;
}

._authorInitials_1w7g5_211 {
  height: 32px;
  width: 32px;
  color: white;
  border-radius: 32px;
  text-align: center;
  font-size: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

._nameAndTime_1w7g5_223 {
  flex-direction: column;
  display: flex;
  padding-left: 12px;
  padding-right: 20px;
}

._authorName_1w7g5_230 {
  display: flex;
  color: #02044d;
  font-size: 14px;
}

._commentTime_1w7g5_236 {
  display: flex;
  color: #888888;
  font-size: 14px;
}

._metaActions_1w7g5_242 {
  display: flex;
}
._selectionPanel_1st0d_1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 400px;
  row-gap: 10px;
}

._hierarchyPanel_1st0d_10 {
  position: relative;
  display: flex;
  min-width: 400px;
  height: 100%;
}

._hierarchyPanelColumnContainer_1st0d_17 {
  border-top: none;
  max-width: 30vw;
}

._hierarchyAllButtonGroup_1st0d_22 {
  display: flex;
}

._hierarchyAllButton_1st0d_22 {
  width: 50%;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding-left: 40px;
  min-width: 400px;
}

._hierarchyAllButton_1st0d_22:first-child {
  border-left: 1px solid #cccccc;
}

._hierarchyAllButton_1st0d_22:hover {
  background-color: var(--color-state-hover);
  color: #ffffff;
}

._columns_1st0d_43 {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: stretch;
  overflow-y: auto;
  border: var(--selectionpanel-columns-border, none);
}

._column_1st0d_43 {
  overflow-x: hidden;
  overflow-y: var(--selectionpanel-column-overflow-y, unset);
  height: var(--selectionpanel-column-height, none);
}

._selected_1st0d_58,
._deselected_1st0d_59 {
  flex: 1;
  flex-basis: 0;
  border-top: var(--selectionpanel-column-border-top, 1px solid #e6e6e6);
  padding: 0 6px 6px 6px;
}

._selected_1st0d_58 {
  direction: rtl;
}

._deselected_1st0d_59 {
  border-right: 1px solid #e6e6e6;
}

._item_1st0d_74 {
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 4px;
  padding-left: 6px;
  text-overflow: ellipsis;
  direction: ltr;
}

._item_1st0d_74._empty_1st0d_84 {
  color: #818181;
  cursor: default;
}

._item_1st0d_74._invalid_1st0d_89 {
  color: red;
}

._item_1st0d_74._disabled_1st0d_93 {
  color: #949494;
  cursor: text;
  user-select: none;
}

._item_1st0d_74 ._fa_1st0d_99 {
  font-size: 0.9em;
}

._item_1st0d_74 ._right_1st0d_103 {
  display: flex;
  justify-content: space-between;
}

._category_1st0d_108 {
  margin: -1px -6px 8px -6px;
  padding: 4px 6px;
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 1px 2px #ccc;
  cursor: default;
  font-size: 90%;
  font-weight: var(--weight-medium);
}

._button_1st0d_119 {
  color: var(--selectionpanel-button-color, var(--color-text-black));
  text-transform: var(--selectionpanel-text-transform, none);
  cursor: pointer;
}

._selectButtons_1st0d_125 {
  height: var(--selectionpanel-buttons-height, 36px);
  padding: var(--selectionpanel-buttons-padding, 8px 4px 0 4px);
  display: flex;
  margin-top: -2px;
}

._selectButtons_1st0d_125 div {
  display: inline-block;
  flex: 1;
  font-weight: var(--weight-regular);
  font-size: var(--font-m);
  cursor: pointer;
}

._sectionTitles_1st0d_140 {
  display: flex;
  padding: 0 4px;
}
._sectionTitles_1st0d_140 ._title_1st0d_144 {
  display: inline-block;
  flex: 1;
  color: black;
  font-weight: var(--weight-thick);
  font-size: var(--font-l);
}
._selectionPanelDropdown_3tuj3_1 {
  position: relative;
  display: inline-block;
  border: 1px solid #d6d6d6;
  padding: 5px 0 4px 8px;
  background: #fff;
  transition: border-color 0.3s;
  cursor: pointer;
}

._readOnly_3tuj3_11 {
  padding-right: 8px;
  background: #e4e6e6;
}

._invalid_3tuj3_16 {
  background: rgba(204, 34, 34, 0.04);
  border-color: rgba(204, 34, 34, 0.7);
}

._selectionPanelDropdown_3tuj3_1:hover {
  border-color: #777;
}

._search_3tuj3_25 input {
  outline: none;
  border: none;
  padding: 0;
}

._dropdown_3tuj3_31 {
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 9000;
  max-height: 85vh;
  border: 1px solid #d6d6d6;
  background: #fff;
}

._dropdown_3tuj3_31 > div {
  height: 100%;
}

._arrow_3tuj3_45 {
  display: inline-block;
  width: 24px;
  height: 10px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='8' xmlns='http://www.w3.org/2000/svg' fill='%23ccc'%3E%3Cpath d='M11.473 0L6.5 4.945 1.527 0 0 1.522 6.5 8 13 1.522z' fill-rule='evenodd'/%3E%3C/svg%3E")
    no-repeat center;
  cursor: pointer;
}

._selectionPanelDropdown_3tuj3_1:hover ._arrow_3tuj3_45 {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='8' xmlns='http://www.w3.org/2000/svg' fill='gray'%3E%3Cpath d='M11.473 0L6.5 4.945 1.527 0 0 1.522 6.5 8 13 1.522z' fill-rule='evenodd'/%3E%3C/svg%3E")
    no-repeat center;
}
._selectionPanel_qjrnv_1 {
  border: 1px solid #e6e6e6;
}
/*---- "Person" dropdown item ----*/
._ddPersonItem_i8ov2_2 {
  align-items: center;
  display: flex;
  padding: 2px 0;
}
._ddPersonItem_i8ov2_2 ._name_i8ov2_7 {
  font-size: 80%;
}

/*---- "Person" textfield item ----*/
._tokenContent_i8ov2_12 {
  display: inline-flex;
  align-items: center;
  line-height: 26px;
}
._avatar_i8ov2_17 {
  position: relative;
  left: -5px;
  min-width: 28px;
  text-align: center;
  color: #fff;
}
._tokenContent_i8ov2_12 ._avatar_i8ov2_17 {
  background: #cde;
  border: 1px solid #abc;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
._avatar_i8ov2_17 svg {
  vertical-align: middle;
}
._topkenContent_i8ov2_33 ._avatar_i8ov2_17 svg {
  height: 26px;
}

/*---- "Email" dropdown item ----*/
._tiwac_i8ov2_38 ._tiwac-dropdown_i8ov2_38 ._bareEmail_i8ov2_38 {
  padding: 5px;
}

/*---- "Email" textfield item ----*/

._messagePanel_i8ov2_44 {
  align-items: center;
  display: flex;
  font-size: var(--font-l);
  height: 200px;
  justify-content: center;
}

._chartTitle_i8ov2_52 {
  margin-bottom: 20px;
}

._label_i8ov2_56 {
  color: #818181 !important;
  font-size: var(--font-xs) !important;
}
._messageDiv_1malt_1 {
  align-items: center;
  display: flex;
  font-size: var(--font-l);
  height: 140px;
  justify-content: center;
}
._messageDiv_1malt_1 {
  align-items: center;
  display: flex;
  font-size: var(--font-l);
  height: 140px;
  justify-content: center;
}
._chartTitleArea_1jalk_1 {
  --pageheader-display: block;
}

._title_1jalk_5._editingTitle_1jalk_5 {
  width: 100%;
}

._title_1jalk_5 > div {
  white-space: nowrap;
  max-width: 100%;
}

._title_1jalk_5._editingTitle_1jalk_5 > div {
  width: 100%;
}

._chartTitle_1jalk_1 {
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  color: var(--color-text-black);
  line-height: 24px;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

._roomForIcon_1jalk_29 {
  max-width: calc(100% - 23px);
}

._saveButton_1jalk_33 {
  margin-left: 0px;
}

._saveButton_1jalk_33._hoverEditableName_1jalk_37 {
  margin-left: 8px;
}

._saveButton_1jalk_33._reserveSpace_1jalk_41 {
  margin-left: 24px;
}

._chartTitle_1jalk_1.editing {
  color: #333;
  width: 100%;
}

/* .chartSubTitle {
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  margin-bottom: 8px;
} */

._chartActions_1jalk_56 {
  display: flex;
}

._actionButton_1jalk_60 {
  margin-right: 8px;
  vertical-align: text-bottom;
}

._actionButton_1jalk_60:last-child {
  margin-right: 0;
}

._chartStatus_1jalk_69._history_1jalk_69 {
  color: #d18c1d;
}

._edited_1jalk_73 {
  color: var(--color-text-red);
}

._user_1jalk_77 {
  margin-bottom: 24px;
}
._svg_1tduc_1 {
  text-rendering: optimizeLegibility;
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
  fill: rgb(5, 5, 5);
  cursor: pointer;
}

._title_1tduc_9 {
  font-weight: var(--weight-thick);
  cursor: default;
}

._disabledItem_1tduc_14 {
  fill: #888888;
  cursor: not-allowed;
}

._hoverItem_1tduc_19 {
  font-weight: var(--weight-thick);
}

._marker_1tduc_23 {
  fill: #df0131;
}
._selectionPanelWrapper_16ibc_1 {
  height: 100%;
  border: none;
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
}

._inputY_16ibc_9 {
  border: none;
  font-size: var(--font-m);
}

._searchBox_16ibc_14 {
  width: 100%;
  margin: 0px;
  border: 1px solid lightgray;
}

._searchBoxInput_16ibc_20 {
  font-size: var(--font-m);
}

._g3-react-legend-control-container_16ibc_24 {
  display: flex;
  flex-direction: row;
}

._g3-react-legend-title_16ibc_29 {
  font-size: var(--font-s);
  font-weight: 400;
  padding-left: 5px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 10px;
}

._g3-react-legend_16ibc_24 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
}
/** IE hack. Otherwise legend never wraps **/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  ._g3-react-legend_16ibc_24 {
    max-width: 1000px;
    margin: auto;
  }
}

._g3-react-legend-item_16ibc_52 {
  padding: 1px 30px 1px 6px;
  display: flex;
  align-items: baseline;
}

._g3-react-legend-item-name_16ibc_58 {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: var(--legend-name-max-width);
  max-width: var(--legend-name-min-width);
  font-size: var(--font-s);
}

._g3-react-legend-item-name-compact_16ibc_68 {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--font-xxs);
}

._g3-react-legend-item_16ibc_52:hover {
  background: #F0F0F0;
  cursor: pointer;
}
._g3-react-legend-item_16ibc_52 ._icon_16ibc_80 {
  display: inline-block;
  margin-right: 6px;
  width: 9px;
  height: 9px;
}
._container_i1iwz_1 {
  height: 100%;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

._nonPositionedContainer_i1iwz_9 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

._placeholder_i1iwz_16 {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  bottom: 0;
  color: #ddd;
  display: flex;
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}

._placeholderDashboardCard_i1iwz_32 {
  top: 50px;
  height: 300px;
}
._chartError_rsea6_1 {
  border: 1px solid #ccc;
  border-radius: 6px;
}
._errorTitle_rsea6_5 {
  background: white;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-weight: var(--weight-medium);
  font-size: var(--font-l);
  padding: 3px 12px;
}
._errorContent_rsea6_13 {
  font-family: Consolas, monospace;
  white-space: pre-wrap;
  padding: 12px 12px;
}
._copyData_18kxm_1:hover {
  cursor: pointer;
}

._copyData_18kxm_1 > textarea {
  opacity: 0;
  width: 0px;
  height: 0px;
  margin: 0px;
  padding: 0px;
  position: absolute;
}
._vectorView_1uqpk_1 {
  overflow: hidden;
}

._vectorCell_1uqpk_5 {
  height: 48px;
}

._vectorCell_1uqpk_5 span {
  max-height: 40px;
  line-height: 20px;
  overflow: hidden;
}
._disableUserSelect_h2dl1_1 {
  user-select: none;
}

._treeView_h2dl1_5 ul {
  line-height: 24px;
  list-style: none;
  margin: 0;
  padding-left: 30px;
}

._treeView_h2dl1_5 > ul {
  padding: 0;
}

._toggle_h2dl1_16 {
  margin-right: 5px;
  font-size: var(--font-l);
  text-align: center;
  height: 15px;
  cursor: pointer;
}

._loading_h2dl1_24 {
  padding-left: 20px;
}

._node_h2dl1_28 {
  display: inline-block;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
  margin-top: -3px;
  margin-bottom: -2px;
  align-items: center;
}

._activeDropTargetTop_h2dl1_37 {
  border-top: 3px solid #99063e !important;
}

._activeDropTargetBottom_h2dl1_41 {
  border-bottom: 3px solid #99063e !important;
}

._activeDropTargetInside_h2dl1_45 {
  border-bottom: 3px solid #99063e !important;
}
._structFont_ei9k5_1 {
  font-family: monospace;
}
._mapView_gpj00_1 {
  overflow: hidden;
}
._content_1jr47_1 {
  white-space: pre-wrap;
  overflow: auto;
  overflow-wrap: anywhere;
}

._clickable_1jr47_7 {
  cursor: pointer;
}
._tableView_f1mn8_1 {
  word-break: break-all;
  border: 1px solid var(--table-border);
  background-color: white;
  overscroll-behavior-x: contain;
}

._noscroll_f1mn8_8 {
  overflow: hidden !important;
}

._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12,
._tableData_f1mn8_13 ._defaultCellStyle_f1mn8_12 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4px 8px;
  border-right: 1px solid var(--table-border);
  white-space: pre-wrap;
}

._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12 {
  font-weight: var(--weight-medium);
  font-size: var(--font-l);
}

._tableData_f1mn8_13 ._defaultCellStyle_f1mn8_12 {
  font-weight: var(--weight-regular);
  font-size: var(--font-m);
}

._tableHeader_f1mn8_12:focus {
  outline: none;
}

._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12 {
  padding-right: 25px;
}

._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12._numeric_f1mn8_41,
._tableData_f1mn8_13 ._defaultCellStyle_f1mn8_12._numeric_f1mn8_41 {
  justify-content: flex-end;
  padding-right: 25px;
}

._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12._string_f1mn8_47,
._tableData_f1mn8_13 ._defaultCellStyle_f1mn8_12._string_f1mn8_47 {
  justify-content: flex-start;
}

._headerCell_f1mn8_52 {
  height: 100%;
  border-bottom: 1px solid var(--table-border);
  background-color: var(--table-header-bg);
}

._headerCell_f1mn8_52._defaultCellStyle_f1mn8_12 > div {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}

._tableData_f1mn8_13 {
  overflow: hidden;
  background-color: var(--table-cell-even-bg);
  position: relative;
}

._tableData_f1mn8_13:focus {
  outline: none;
}

._tableData_f1mn8_13 ._lastRow_f1mn8_74 {
  border-bottom: 1px solid var(--table-border);
}

._tableData_f1mn8_13 ._null_f1mn8_78 {
  font-size: var(--font-xs);
  color: #ccc;
}

._tableData_f1mn8_13 ._odd_f1mn8_83 {
  background-color: var(--table-cell-odd-bg);
}

._firstColumn_f1mn8_87 {
  border-left: none;
}

._lastColumn_f1mn8_91 {
  border-right: none !important;
}

._sortButton_f1mn8_95 {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  height: 20px;
  transform: translateY(-14px);
  cursor: pointer;
  font-size: var(--font-l);
}

._sortButton_f1mn8_95._desc_f1mn8_106 {
  transform: translateY(-15px);
}

._sortButton_f1mn8_95._active_f1mn8_110 {
  display: block;
}

._sortButton_f1mn8_95._activeNonPrimary_f1mn8_114 {
  display: block;
  color: #aaa;
}

/*.sortButton .fa {
  position: absolute;
  top: 50%;
  left: 50%;
}*/

._tableHeader_f1mn8_12 ._sortButton_f1mn8_95 ._fa-sort_f1mn8_125 {
  transform: translate(-50%, -50%);
}

._tableHeader_f1mn8_12 ._sortButton_f1mn8_95 ._fa-sort-up_f1mn8_129 {
  transform: translate(-50%, -25%);
}

._tableHeader_f1mn8_12 ._sortButton_f1mn8_95 ._fa-sort-down_f1mn8_133 {
  transform: translate(-50%, -75%);
}

._tableHeader_f1mn8_12 ._tableHeaderCell_f1mn8_137:hover ._sortButton_f1mn8_95 {
  display: block;
}

._moreLink_f1mn8_141 {
  cursor: pointer;
  font-weight: var(--weight-medium);
}

._tableViewArrayContents_f1mn8_146,
._tableViewVectorContents_f1mn8_147 {
  max-height: 250px;
}

._minimalTable_f1mn8_151 {
  table-layout: auto;
  width: 100%;
  border: 1px solid #dadada;
}

._minimalTable_f1mn8_151 thead tr th,
._minimalTable_f1mn8_151 thead ._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12._headerCell_f1mn8_52,
._minimalTable_f1mn8_151 thead tr {
  background-color: #f6f6f6;
}

._minimalTable_f1mn8_151 tbody tr:nth-child(odd) {
  background-color: #ffffff;
  border: 1px solid #dadada;
}

._minimalTable_f1mn8_151 tbody tr:nth-child(even) {
  background-color: #f6f6f6;
}

._minimalTable_f1mn8_151 ._tableHeader_f1mn8_12,
._minimalTable_f1mn8_151 ._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12 {
  border: none !important;
  font-family: Roboto;
  font-weight: 400;
}

._minimalTable_f1mn8_151 ._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12._headerCell_f1mn8_52,
._minimalTable_f1mn8_151 ._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12,
._minimalTable_f1mn8_151 ._tableData_f1mn8_13 ._defaultCellStyle_f1mn8_12 {
  color: #050505;
  font-size: 14px;
  line-height: 16px !important;
  overflow: hidden;
  white-space: nowrap;
  border: none;
  padding: 6px 8px;
}

._minimalTable_f1mn8_151 ._tableHeader_f1mn8_12 ._defaultCellStyle_f1mn8_12._headerCell_f1mn8_52 {
  background-color: #dadada;
  font-family: Roboto;
  font-weight: 400;
  padding: 6px 8px;
}

._spanLink_f1mn8_198:hover {
  text-decoration: underline;
  cursor: pointer;
}

/*
.highlightedCell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 255, 196, 0.2);
}*/

._highlightedCell_f1mn8_204,
._highlightedCell_f1mn8_204 ._defaultCellStyle_f1mn8_12 {
  background: rgba(76, 255, 196, 0.2);
}

._highlightedCellTop_f1mn8_219::after {
  border-top: 3px solid rgba(76, 255, 196);
}
._highlightedCellRight_f1mn8_222::after {
  border-right: 3px solid rgba(76, 255, 196);
}
._highlightedCellBottom_f1mn8_225::after {
  border-bottom: 3px solid rgba(76, 255, 196);
}
._highlightedCellLeft_f1mn8_228::after {
  border-left: 3px solid rgba(76, 255, 196);
}
._displayOptions_1ea2o_1 {
  padding-bottom: 5px;
}

table._metrics_1ea2o_5 {
  background: #f6f7f8;
  width: 100%;
}

._metrics_1ea2o_5 td {
  padding: 5px;
}

._metrics_1ea2o_5 thead td {
  height: 40px;
  font-weight: var(--weight-medium);
  background: #f2f2f2;
}

._even_1ea2o_20 {
  background-color: #fff;
}

._metrics_1ea2o_5 {
  max-width: 530px;
  background-color: rgb(246, 247, 248);
}

._sectionTitle_1ea2o_29 {
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  border-bottom: 1px solid black;
}

._colorMenuItemWrapper_1ea2o_35 {
  padding: 5px;
}

._colorMenuItem_1ea2o_35 {
  padding-top: 10px;
  outline: 1px solid white;
  width: 20px;
  height: 10px;
}

._metricsColumn_1ea2o_46 {
  width: 380px;
}

._metricsRow_1ea2o_50 {
  cursor: move;
}

._colorMenuColumn_1ea2o_54 {
  width: 100px;
}

._instruction_1ea2o_58 {
  margin-bottom: 20px;
}

._noModalMargin_1ea2o_62 {
  margin-top: 20px;
}

._noModalResetButton_1ea2o_66 {
  cursor: pointer;
  margin-top: 10px;
  margin-left: 5px;
  font-size: 14px;
}

._noModalResetButton_1ea2o_66:hover {
  font-weight: 400;
}

._grabberContainer_1ea2o_77 {
  width: 30px;
  margin-top: 3px;
}
._waitingBlock_1bzbz_1 {
  margin: 20px auto;
}

._boldLabel_1bzbz_5 {
  margin: 0px 0px 10px 0px;
  color: #151515;
  font-weight: var(--weight-medium);
}

._noData_1bzbz_11 {
  color: #ddd;
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

._noModelSummary_1bzbz_21 {
  width: 100%;
  font-size: var(--font-l);
  font-weight: var(--weight-regular);
  max-width: 900px;
  padding: 12px;
}

._subheading_1bzbz_29 {
  color: #aaa;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  margin: 0px 0px 12px 0px;
}

._centeredMessage_1bzbz_36 {
  color: #ddd;
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

._compactTitle_1bzbz_46 {
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
  color: #151515;
  padding: 16px;
}

._partitionSelector_1bzbz_53 {
  margin-top: 48px;
}

._partitionDropdown_1bzbz_57 {
  max-height: 200px;
}

._queryError_1bzbz_61 {
  border: 1px solid #ccc;
  border-radius: 6px;
}

._queryError_1bzbz_61 ._errorTitle_1bzbz_66 {
  background: white;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-weight: var(--weight-medium);
  font-size: var(--font-l);
  padding: 3px 12px;
}

._queryError_1bzbz_61 ._errorContent_1bzbz_75 {
  font-family: Consolas, monospace;
  white-space: pre-wrap;
  padding: 12px 12px;
}

._displayOptions_1bzbz_81 {
  padding-bottom: 5px;
}

._metrics_1bzbz_85 {
  max-width: 500px;
}

._sectionTitle_1bzbz_89 {
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  border-bottom: 1px solid black;
}

._segmentationDisplayOptions_1bzbz_95 {
  max-height: 600px;
  overflow-y: auto;
}

._segmentationDisplayOptions_1bzbz_95 table {
  background: #f6f7f8;
  width: 100%;
}

._segmentationDisplayOptions_1bzbz_95 thead td {
  height: 40px;
  font-weight: var(--weight-medium);
  background: #f2f2f2;
}

._segmentationDisplayOptions_1bzbz_95 td {
  padding: 5px;
}

._segmentationDisplayOptions_1bzbz_95 tr._even_1bzbz_115 {
  background: #ffffff;
}

._segmentation-modal-trigger-container_1bzbz_119 {
  margin-top: 20px;
  font-size: 14px;
  cursor: default;
  align-self: flex-start;
  margin-left: 50px;
}

._segmentation-modal-trigger_1bzbz_119 {
  min-width: 200px;
  max-width: 200px;
  width: 200px;
  display: inline-block;
  margin-right: 50px;
}

._segmentation-modal-trigger_1bzbz_119:hover {
  font-weight: 400;
  cursor: pointer;
}
._dictionaryTooltip_ptdd0_1 {
  position: relative;
  padding: 18px;
  color: var(--color-text-black);
}

._edit_ptdd0_7 {
  display: inline-block;
  margin-left: 10px;
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkuNTI5IDUuMzQ4bC02LjMwNSA2LjMwNHYyLjEwMmgyLjEwMmw2LjMwNC02LjMwNUw5LjUzIDUuMzQ4em0yLjEwMS0yLjEwMmMtLjA0IDAtLjE5Mi4wNTkgMCAwbC0xLjQgMS40MDEgMi4xIDIuMTAyIDEuNDAyLTEuNDAxYy4wNTguMDc2LjA1OC0uMzAxIDAtLjdMMTIuMzMgMy4yNDVjLS4yODMuMDU5LS40MzUgMC0uNyAweiIgZmlsbD0iI0Q4RDhEOCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
  cursor: pointer;
}

._edit_ptdd0_7:hover {
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjNDhBRUU2IiBkPSJNMSAxaDE1djE1SDF6Ii8+PHBhdGggZD0iTTkuNTI5IDUuMzQ4bC02LjMwNSA2LjMwNHYyLjEwMmgyLjEwMmw2LjMwNC02LjMwNUw5LjUzIDUuMzQ4em0yLjEwMS0yLjEwMmMtLjA0IDAtLjE5Mi4wNTkgMCAwbC0xLjQgMS40MDEgMi4xIDIuMTAyIDEuNDAyLTEuNDAxYy4wNTguMDc2LjA1OC0uMzAxIDAtLjdMMTIuMzMgMy4yNDVjLS4yODMuMDU5LS40MzUgMC0uNyAweiIgZmlsbD0iI0ZGRiIvPjwvZz48L3N2Zz4=');
}

._more_ptdd0_20 {
  cursor: pointer;
  color: var(--color-text-light-gray);
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
}

._title_ptdd0_27 {
  margin-right: 8px;
  font-size: var(--font-m);
  line-height: 20px;
  font-weight: var(--weight-medium);
}

._description_ptdd0_34 {
  margin-top: 16px;
  max-width: 300px;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  line-height: 20px;
  color: var(--color-text-black);
  cursor: pointer;
  word-wrap: break-word;
}

._description_ptdd0_34._custom_ptdd0_45 {
  cursor: auto;
}

._type_ptdd0_49 {
  font-size: var(--font-xs);
  text-transform: uppercase;
  color: #aaa;
  font-weight: var(--weight-regular);
}

._info_ptdd0_56 {
  padding-top: 8px;
}

/* .label {
  font-size: var(--font-xxs);
  font-weight: var(--weight-regular);
  color: #cdcdcd;
  line-height: 15px;
} */
._wrapper_u1f79_1 {
  display: inline-block;
  position: relative;
}

._icon_u1f79_6 {
  display: inline-block;
  margin-right: 8px;
  width: 15px;
  height: 15px;
  background: no-repeat center;
  transform: translateY(-2px);
  vertical-align: middle;
}

._double_u1f79_16 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 8.038c.552 0 1 .445 1 .994v3.974A.997.997 0 0113 14H9c-.552 0-1-.445-1-.994V9.032a.997.997 0 011-.994h4zm-3.5 3.975c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zm-3-1.49c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm-3-1.491c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.497 0 .274.224.496.5.496s.5-.222.5-.496a.498.498 0 00-.5-.497zM6 1c.552 0 1 .445 1 .994v3.974a.997.997 0 01-1 .994H2c-.552 0-1-.445-1-.994V1.994A.997.997 0 012 1h4zM2.5 4.975c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496zm3 0c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496zm-3-1.49c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm3 0c-.276 0-.5.222-.5.496a.499.499 0 001 0 .498.498 0 00-.5-.497zm-3-1.491c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496zm3 0c-.276 0-.5.222-.5.496 0 .275.224.497.5.497s.5-.222.5-.497a.498.498 0 00-.5-.496z'/%3E%3C/svg%3E");
}

._string_u1f79_20 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11.993c0 .708.14.97.43 1.005l.07.004H11V14H8.5c-.422 0-.756-.136-1-.388-.213.22-.496.352-.846.382L6.5 14H4v-.998h2.5l.07-.004c.267-.032.407-.258.427-.85L7 11.994V7.998L6 8v-.998L7 7V3.007c0-.708-.14-.97-.43-1.005l-.07-.004H4V1h2.5c.422 0 .756.136 1 .388.213-.22.496-.352.846-.382L8.5 1H11v.998H8.5l-.07.004c-.267.032-.407.258-.427.85L8 3.006V7h1v1l-1-.002v3.995z'/%3E%3C/svg%3E");
}

._array_u1f79_24 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 1v1H2v11h2v1H1V1h3zm10 0v13h-3v-1h2V2h-2V1h3zm-3 9v1H4v-1h7zm0-2v1H4V8h7zm0-2v1H4V6h7zm0-2v1H4V4h7z'/%3E%3C/svg%3E");
}

._boolean_u1f79_28 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.09v1.183h-3.545v1.182h2.363v1.181h-2.363V14H9.273V8.09H14zm-.937-6.989l.836.836-11.7 11.7-.835-.836L13.063 1.1zM6.909 1v1.182H4.545v4.727H3.364V2.182H1V1h5.91z'/%3E%3C/svg%3E");
}

._byte_u1f79_32 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 8v5h1v1H8v-4H7V9h1V8h1zm4 0v5h1v1h-2v-4h-1V9h1V8h1zm-8 5v1H2v-1h3zM2 9v4H1V9h1zm4 0v4H5V9h1zM5 8v1H2V8h3zm8-7v5h1v1h-2V3h-1V2h1V1h1zM3 1v5h1v1H2V3H1V2h1V1h1zm6 5v1H6V6h3zM6 2v4H5V2h1zm4 0v4H9V2h1zM9 1v1H6V1h3z'/%3E%3C/svg%3E");
}

._date_u1f79_36 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 1v1h5V1h1v1h1a2 2 0 012 2v1.034h.003l-.003.4V12a2 2 0 01-2 2H3a2 2 0 01-2-2V4a2 2 0 012-2h1V1h1zM2 5.965V12a1 1 0 00.883.993L3 13h9a1 1 0 00.993-.883L13 12V6.028L2 5.965zM12 11v1h-1v-1h1zm-2-2v1H9V9h1zm2 0v1h-1V9h1zM8 9v1H7V9h1zM6 9v1H5V9h1zM4 7v1H3V7h1zm2 0v1H5V7h1zm2 0v1H7V7h1zm2 0v1H9V7h1zm2 0v1h-1V7h1zM4 3H3a1 1 0 00-.993.883L2 4v1.365l.003-.4L13 5.029V4a1 1 0 00-.883-.993L12 3h-1v1h-1V3H5v1H4V3z'/%3E%3C/svg%3E");
}

._float_u1f79_40 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 1.007H1v1.01H0v-1.01h1V0h2v10.013h1V11H0v-.987h2zm7 0H8v1.01H7v-1.01h1V0h2v10.013h1V11H7v-.987h2z'/%3E%3Ccircle cx='5.5' cy='8.35' r='1.35'/%3E%3C/svg%3E");
}

._int_u1f79_44 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.066 1c-.52 0-1.045.35-1.586 1.032-.534.672-.804 1.311-.804 1.916 0 .277.139.471.395.54l.207-.112c.357-1.054.774-1.559 1.22-1.559.184 0 .421.275.673.847L5.847 5.2c.034.079.066.156.096.231l.088.221.316.832.49 1.228-.135.287c-.336.743-.829 1.601-1.48 2.575-.755 1.14-1.467 1.697-2.124 1.697a1.21 1.21 0 01-.498-.104l-.124-.063-.202.034-1.225 1.268a.173.173 0 00.048.275c.433.212.84.319 1.218.319 1.664 0 3.268-1.551 4.834-4.621l.184-.368.315.808.375.93c.477 1.15.861 1.94 1.155 2.377.388.576.845.874 1.365.874.702 0 1.32-.447 1.848-1.316.349-.575.525-1.003.525-1.304 0-.236-.147-.418-.409-.538a.173.173 0 00-.238.11c-.265.951-.664 1.4-1.193 1.4-.3 0-.698-.507-1.133-1.54l-.1-.242-.357-.895-.376-.906-.638-1.627.223-.427c.806-1.544 1.456-2.608 1.946-3.187.47-.556.93-.826 1.377-.826.108 0 .24.038.394.117l.13.074.21-.033 1.201-1.277a.173.173 0 00-.048-.272 2.836 2.836 0 00-1.286-.302c-1.307 0-2.577 1.13-3.827 3.358l-.168.305-.642 1.205-.521-1.335C6.906 3.13 6.483 2.2 6.186 1.743 5.868 1.255 5.493 1 5.066 1z'/%3E%3C/svg%3E");
}

._long_u1f79_48 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1a1 1 0 011 1v11a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1h11zm-1.26 2.186l-4.091.578L8.84 4.946 4.967 8.79 3.863 7.695l-.583 4.06 4.092-.579L6.137 9.95l3.874-3.843 1.147 1.139.582-4.06z'/%3E%3C/svg%3E");
}

._map_u1f79_52 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.583 1v6.883l3.116 3.288a.474.474 0 01-.05.705.577.577 0 01-.694.016l-.071-.063-2.3-2.426V14H7.5V8.26L3.3 3.83a.474.474 0 01.052-.706.577.577 0 01.693-.016l.071.063L7.5 6.74V1h1.083zm4.334 9v3h-1.084v-3h1.084zm-9.75-1v1H4.25v1H3.167v1H2.083v-1H1v-1h1.083V9h1.084zm0-3v1H4.25v1H1V7h1.083V6h1.084zm9.75 0v1H14v1h-3.25V7h1.083V6h1.084zm-9.75-4v3H2.083V2h1.084zm9.75-1v1H14v1h-1.083v1h-1.084V3H10.75V2h1.083V1h1.084z'/%3E%3C/svg%3E");
}

._null_u1f79_56 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 1c1.615 0 3.092.589 4.229 1.564l1.417-1.418a.5.5 0 01.765.638l-.057.07-1.418 1.417a6.5 6.5 0 01-9.165 9.165l-1.417 1.418a.5.5 0 01-.765-.638l.057-.07 1.418-1.417A6.5 6.5 0 017.5 1zm4.227 2.98L3.98 11.727a5.5 5.5 0 007.746-7.746zM7.5 2a5.5 5.5 0 00-4.227 9.02l7.747-7.747A5.478 5.478 0 007.5 2z'/%3E%3C/svg%3E");
}

._short_u1f79_60 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1a1 1 0 011 1v11a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1h11zM7.5 2L4 5h2v5H4l3.5 3 3.5-3H9V5h2L7.5 2z'/%3E%3C/svg%3E");
}

._struct_u1f79_64 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 1v1H2v11h2v1H1V1h3zm10 0v13h-3v-1h2V2h-2V1h3zm-2 5c-.137 3.592-3.007 2.739-4.234 2.232l-.15-.064c-4.188-1.832-4.135.404-4.135.404H3c0-1.25 1.194-3.449 4.583-2.033l.229.1C11.715 8.404 11.465 6 11.465 6H12z'/%3E%3C/svg%3E");
}

._timestamp_u1f79_68 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 1a6.5 6.5 0 110 13 6.5 6.5 0 010-13zm0 1a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM8 4v3.999L10 8v1H7V4h1z'/%3E%3C/svg%3E");
}

._unknown_u1f79_72 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.571 11.833V14H6.286v-2.167H8.57zM10.857 1v1.083H12v3.25h-1.143v1.084l-1.143-.001V7.5H8.571v2.167H6.286V7.5h1.143V5.333h2.285V3.167H6.286V4.25H4V2.083h1.143V1h5.714zM6.286 4.25v1.083H4V4.25h2.286z'/%3E%3C/svg%3E");
}

._vector_u1f79_76 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.786L2.393 1l1.393 2.786h-.929v.342l.429.147C5.592 5.06 7.31 6.093 8.438 7.38c1.023 1.17 1.83 2.571 2.423 4.203l.144.413.049.147h.16v-.929L14 12.607 11.214 14v-.929H1.93V3.786H1zM2.857 5.11v6.104h.929v.929h6.286l-.083-.24c-.554-1.528-1.305-2.83-2.25-3.912C6.79 6.91 5.334 6.004 3.362 5.286l-.505-.176z'/%3E%3C/svg%3E");
}
._docTreeView_2ygoj_1 {
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  margin-right: 20px;
  overflow: auto;
  border: 1px solid #d6d6d6;
  background: #fff;
  font-size: var(--font-s);
}

._functionWidget_2ygoj_12 {
  flex: 1 1 auto;
  height: 300px;
  overflow: auto;
  padding: 8px;
  border: 1px solid #d6d6d6;
  background: #fff;
}

/*.sqlBox :global(.CodeMirror) {
  min-height: 160px;
}*/
._expressionContainer_1sglk_1 {
  max-height: 700px;
  overflow-y: auto;
}
._edit_1m68h_1 {
  vertical-align: -7px;
  margin-left: 10px;
}
._attributeLeafSelector_syctt_1 {
  display: flex;
  align-items: center;
}

._extraMenu_syctt_6 {
  height: 24px;
  margin-left: 12px;
}

._binningOption_syctt_11 {
  margin: 20px 12px;
}

._radioRow_syctt_15 {
  display: flex;
  align-items: center;
}

._radioInput_syctt_20 {
  margin-right: 12px;
  width: 15px;
}

._optionBody_syctt_25 {
  padding-left: 27px;
  display: flex;
  align-items: center;
}

._optionBodyItem_syctt_31 {
  margin-right: 12px;
}
._chartBuilderBackButton_1si5q_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 33px;
  color: #818181;
  border: 1px solid #818181;
  padding: 8px;
  cursor: pointer;
}

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

._chartBuilderBackButton_1si5q_1 svg path {
  fill: none;
  stroke: #818181;
  stroke-width: 2;
}

._chartBuilderBackButton_1si5q_1:hover svg path {
  stroke: #48aee6;
}

._chartBuilderBackButton_1si5q_1:hover {
  color: #48aee6;
  border-color: #48aee6;
}

._panel_1si5q_32 {
  font-size: var(--font-m);
  --webkit-user-select: none;
  cursor: default;
}

._pagePanel_1si5q_38 {
  background-color: #fff;
  flex: 1 1 auto;
  padding: 24px;
}

._row_1si5q_44 {
  position: relative;
  display: flex;
  align-items: center;
  margin: 12px 0;
}

._label_1si5q_51 {
  color: #050505;
  font-weight: var(--weight-regular);
  text-align: right;
}

._boldLabel_1si5q_57 {
  color: #151515;
  font-weight: var(--weight-thick);
}

._label_1si5q_51,
._boldLabel_1si5q_57 {
  margin: 0 8px;
}

._label_1si5q_51:first-child,
._boldLabel_1si5q_57:first-child {
  margin-left: 0;
}

._label_1si5q_51 + ._label_1si5q_51,
._label_1si5q_51 + ._boldLabel_1si5q_57,
._boldLabel_1si5q_57 + ._label_1si5q_51 {
  margin-left: 0;
}

._chart_1si5q_1 {
  flex: 1 1 auto;
  height: 448px;
  padding: 0 20px;
}

._chartBuilderDeleteButton_1si5q_84._borderless_1si5q_84._buttonX_1si5q_84 {
  color: #aaa;
  font-weight: var(--weight-thin);
  padding: 3px 6px;
  position: relative;
  top: 3px;
}

._chartBuilderDeleteButton_1si5q_84._borderless_1si5q_84._buttonX_1si5q_84:hover {
  color: #000;
  font-weight: var(--weight-medium);
}

._chartBuilderTitle_1si5q_97 {
  margin-bottom: 36px;
  color: #818181;
  font-size: var(--font-xl-A);
  font-weight: var(--weight-thin);
}

._buttonX_1si5q_84 svg._icon_1si5q_104 {
  display: block;
}

._chartIcon_1si5q_108 {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin: 8px 13px 2px;
  background: no-repeat center;
  cursor: pointer;
}

._lineChartIcon_1si5q_117 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.79 24.85'%3E%3Cpath fill='none' stroke='%23818181' d='M.84 24.3l5.21-8 3.14 4L14.4 6.96l6.26 6.67L24.84.3'/%3E%3C/svg%3E");
}
button:hover ._lineChartIcon_1si5q_117 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.79 24.85'%3E%3Cpath fill='none' stroke='%23fff' d='M.84 24.3l5.21-8 3.14 4L14.4 6.96l6.26 6.67L24.84.3'/%3E%3C/svg%3E");
}
button:disabled ._lineChartIcon_1si5q_117,
button:disabled:hover ._lineChartIcon_1si5q_117 {
  cursor: default;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.79 24.85'%3E%3Cpath fill='none' stroke='%23ccc' d='M.84 24.3l5.21-8 3.14 4L14.4 6.96l6.26 6.67L24.84.3'/%3E%3C/svg%3E");
}

._matrixViewIcon_1si5q_129 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23818181' d='M0 0h24v24H0z'/%3E%3Cpath d='M0 12h6v4H0zm0 6h6v4H0zM0 0h6v4H0zm0 6h6v4H0zm18 6h6v4h-6zm0 6h6v4h-6zm0-18h6v4h-6zm0 6h6v4h-6zm-9 6h6v4H9zm0 6h6v4H9zM9 0h6v4H9zm0 6h6v4H9z'/%3E%3C/svg%3E");
}
button:hover ._matrixViewIcon_1si5q_129 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3Cpath d='M0 12h6v4H0zm0 6h6v4H0zM0 0h6v4H0zm0 6h6v4H0zm18 6h6v4h-6zm0 6h6v4h-6zm0-18h6v4h-6zm0 6h6v4h-6zm-9 6h6v4H9zm0 6h6v4H9zM9 0h6v4H9zm0 6h6v4H9z'/%3E%3C/svg%3E");
}
button:disabled ._matrixViewIcon_1si5q_129,
button:disabled:hover ._matrixViewIcon_1si5q_129 {
  cursor: default;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ccc' d='M0 0h24v24H0z'/%3E%3Cpath d='M0 12h6v4H0zm0 6h6v4H0zM0 0h6v4H0zm0 6h6v4H0zm18 6h6v4h-6zm0 6h6v4h-6zm0-18h6v4h-6zm0 6h6v4h-6zm-9 6h6v4H9zm0 6h6v4H9zM9 0h6v4H9zm0 6h6v4H9z'/%3E%3C/svg%3E");
}

._stackedY_1si5q_141 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.79 24.85'%3E%3Cpath fill='none' stroke='%23818181' stroke-width='2' d='M.84 23.3l5.21-7 3.14 2 5.21-3.34 6.26 4.67 4.18 2.67'/%3E%3Cpath fill='none' stroke='%23616161' stroke-width='2' d='M.84 10.3l5.21-6 3.14 4 5.21 1.66 4.26-6.33 6.18 6.67'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='M0 12.8h26'/%3E%3C/svg%3E");
}
button:hover ._stackedY_1si5q_141 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.79 24.85'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M.84 23.3l5.21-7 3.14 2 5.21-3.34 6.26 4.67 4.18 2.67'/%3E%3Cpath fill='none' stroke='%23ccc' stroke-width='2' d='M.84 10.3l5.21-6 3.14 4 5.21 1.66 4.26-6.33 6.18 6.67'/%3E%3Cpath fill='none' stroke='%23eee' stroke-width='1.5' d='M0 12.8h26'/%3E%3C/svg%3E");
}
button:disabled ._stackedY_1si5q_141,
button:disabled:hover ._stackedY_1si5q_141 {
  cursor: default;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.79 24.85'%3E%3Cpath fill='%23ccc' stroke='%23818181' stroke-width='2' d='M.84 23.3l5.21-7 3.14 2 5.21-3.34 6.26 4.67 4.18 2.67'/%3E%3Cpath fill='none' stroke='%23616161' stroke-width='2' d='M.84 10.3l5.21-6 3.14 4 5.21 1.66 4.26-6.33 6.18 6.67'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='M0 12.8h26'/%3E%3C/svg%3E");
}

._areaChart_1si5q_153 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.04 25.45'%3E%3Cdefs%3E%3CclipPath id='a' transform='translate(2.05 .64)'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23a8a8a8' d='M1.31 15.65L5.7 3.7l5.63 5.47 4.52-5.26 5.64 2.63 4.93-5.9.62 24-25.97.57.24-9.56z'/%3E%3Cpath stroke-width='2' stroke='%23818181' fill='none' d='M.94 15.65L5.33 3.7l5.63 5.47 4.52-5.26 5.64 2.63 4.93-5.9'/%3E%3Cpath fill='%23777' d='M.88 25.21l4.38-9.6L10 16.75l5.43-3.94 5.64 3.29 6.16-7.28v16.39H.88z'/%3E%3Cpath stroke='%23545454' stroke-width='2' fill='none' d='M.94 25.04l4.38-9.6 4.73 1.15 5.43-3.95 5.64 3.29 6.16-7.28'/%3E%3C/g%3E%3C/svg%3E");
}
button:hover ._areaChart_1si5q_153 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.04 25.45'%3E%3Cdefs%3E%3CclipPath id='a' transform='translate(2.05 .64)'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23fff' d='M1.31 15.65L5.7 3.7l5.63 5.47 4.52-5.26 5.64 2.63 4.93-5.9.62 24-25.97.57.24-9.56z'/%3E%3Cpath stroke-width='2' stroke='%23818181' fill='none' d='M.94 15.65L5.33 3.7l5.63 5.47 4.52-5.26 5.64 2.63 4.93-5.9'/%3E%3Cpath fill='%23a8a8a8' d='M.88 25.21l4.38-9.6L10 16.75l5.43-3.94 5.64 3.29 6.16-7.28v16.39H.88z'/%3E%3Cpath stroke='%23545454' stroke-width='2' fill='none' d='M.94 25.04l4.38-9.6 4.73 1.15 5.43-3.95 5.64 3.29 6.16-7.28'/%3E%3C/g%3E%3C/svg%3E");
}
button:disabled ._areaChart_1si5q_153,
button:disabled:hover ._areaChart_1si5q_153 {
  cursor: default;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.04 25.45'%3E%3Cdefs%3E%3CclipPath id='a' transform='translate(2.05 .64)'%3E%3Cpath fill='%23ccc' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23a8a8a8' d='M1.31 15.65L5.7 3.7l5.63 5.47 4.52-5.26 5.64 2.63 4.93-5.9.62 24-25.97.57.24-9.56z'/%3E%3Cpath stroke-width='2' stroke='%23818181' fill='none' d='M.94 15.65L5.33 3.7l5.63 5.47 4.52-5.26 5.64 2.63 4.93-5.9'/%3E%3Cpath fill='%23777' d='M.88 25.21l4.38-9.6L10 16.75l5.43-3.94 5.64 3.29 6.16-7.28v16.39H.88z'/%3E%3Cpath stroke='%23545454' stroke-width='2' fill='none' d='M.94 25.04l4.38-9.6 4.73 1.15 5.43-3.95 5.64 3.29 6.16-7.28'/%3E%3C/g%3E%3C/svg%3E");
}
._segmentationChartEditor_qzu3f_1 {
  flex: 1 1 auto;
}

._metricsSection_qzu3f_5 {
  margin-bottom: 16px;
}

._firstSection_qzu3f_9 {
  padding: 0px 24px 12px 24px;
  min-height: 100px;
}

._label_qzu3f_14 {
  width: 65px;
  margin: 0 8px;
  color: var(--color-text-label);
  font-weight: var(--weight-regular);
  text-align: right;
}

._thirdSection_qzu3f_22 {
  flex-direction: column;
  min-height: 200px;
}

._paren_qzu3f_27 {
  color: #aaa;
}

._downloadButton_qzu3f_31,
._viewOptionsButton_qzu3f_32 {
  width: 44px;
  height: 36px;
  line-height: 36px;
  border: 1px solid var(--color-light-border);
  transition: height 0.25s;
}

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

._viewOptionsButton_qzu3f_32._toggled_qzu3f_45 {
  border: 1px solid #e6e6e6;
  height: 40px;
  background: #f9f9f9;
}

._viewOptionsButton_qzu3f_32._toggled_qzu3f_45:before {
  content: ' ';
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: #f9f9f9;
  z-index: 1;
}

._viewOptionsButton_qzu3f_32._toggled_qzu3f_45 i {
  margin-bottom: 35px;
}

._viewOptions_qzu3f_32 {
  margin-top: -13px;
  margin-bottom: 12px;
  width: 100%;
  height: 0px;
  overflow: hidden;
  background: #f9f9f9;
  transition: height 0.2s;
  transition: min-height 0.2s;
}

._viewOptions_qzu3f_32 > div {
  border: 1px solid #e6e6e6;
  padding: 32px;
}

._batchButton_qzu3f_82 {
  margin-top: 28px;
  margin-left: 80px;
}

._calculateButton_qzu3f_87 {
  margin-top: 28px;
  margin-left: 80px;
  margin-bottom: 36px;
}

._cancelButton_qzu3f_93 {
  margin-top: 28px;
  margin-left: 12px;
  margin-bottom: 36px;
}
._metricSelector_55h6w_1 {
  display: flex;
  align-items: center;
  font-size: var(--font-m);
}

._separated_55h6w_7 {
  border-bottom: 1px solid #ccc;
  margin-bottom: 4px;
  padding-bottom: 4px;
}

/* .editSublink {
  color: #606060;
  font-size: var(--font-xs-A);
  font-weight: var(--weight-regular);
  padding-left: 24px;
} */

._editMetric_55h6w_20:hover ._editSublink_55h6w_13 {
  color: #000;
}

._edit-sublink_55h6w_24 ._fa_55h6w_24 {
  margin-right: 6px;
}

._closeButton_55h6w_28 {
  margin: 0 12px 0 24px;
}

._extraMenu_55h6w_32 {
  margin-left: 6px;
  line-height: 16px;
}
._buttons_4jze2_1 {
  display: flex;
  padding: 24px 0;
}

._button_4jze2_1 {
  margin-right: 24px;
}
._entitySelector_7nlwn_1 label {
  display: inline-block;
  color: #333;
  font-size: var(--font-m);
  margin-right: 4px;
}
._withMaxWidth_1v542_1 {
  max-width: 300px;
  min-width: 100px;
}

._formElement_1v542_6 {
  display: flex;
  margin-bottom: 12px;
  flex-direction: row;
  align-items: center;
}

._formRow_1v542_13 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

._formRow_1v542_13 > * {
  display: inline-block;
}

._formElementWithTopLabel_1v542_24 {
  flex-direction: column;
  align-items: flex-start;
}

._right_1v542_29 {
  margin-left: 8px;
}

._radio_1v542_33 {
  margin-top: -2px;
}

._defaultLabelStyle_1v542_37 {
  display: inline-block;
  margin-right: 8px;
  font-size: var(--font-m);
}

._topLabel_1v542_43 {
  align-self: stretch;
}

._topLabel_1v542_43 ._defaultLabelStyle_1v542_37 {
  margin-bottom: 8px;
}

._error_1v542_51 {
  margin-left: 10px;
  margin-top: 8px;
  color: #cc2222;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
}
._label_kloj2_1 {
  margin-right: 8px;
  font-weight: var(--weight-regular);
  text-align: right;
}

._label_kloj2_1._cohortEventName_kloj2_7 {
  color: #555;
}

._error_kloj2_11 {
  color: #f00;
  padding: 10px 0;
}

._entityPropertyDialog_kloj2_16 .CodeMirror {
  max-height: 200px;
}

._entityPropertyDialog_kloj2_16 .CodeMirror-scroll {
  min-height: 100px;
}

._expressionTab_kloj2_24 .CodeMirror .CodeMirror-scroll {
  max-height: 400px;
  min-height: 200px;
}

._row_kloj2_29:not(:last-child) {
  margin-bottom: 24px;
}

._definition_kloj2_33 {
  margin-bottom: 16px;
  color: var(--color-text-black);
  font-size: var(--font-xl-B);
  font-weight: var(--weight-thick);
}

._disabled_kloj2_40 {
  padding: 16px;
  padding-top: 8px;
  background: var(--color-bg-level2);
}

._disabled_kloj2_40 ._row_kloj2_29:last-child {
  margin-bottom: 0px;
}

._tabsContent_kloj2_50 {
  background: var(--color-bg-level1);
  padding-top: 16px;
  padding-bottom: 0px;
}

._tabsContent_kloj2_50 ._row_kloj2_29:last-child {
  margin-bottom: 0px;
}

._variables_kloj2_60 {
  margin-bottom: 24px;
}

._definedVariableBox_kloj2_64 {
  margin: 12px 0px 6px 0px;
  display: flex;
  cursor: pointer;
}

._variableLink_kloj2_70 {
  flex: 0 1 auto;
  border: solid #ccc 1px;
  background: #fff;
  padding: 4px 12px 4px 12px;
}

._deleteVariableButton_kloj2_77 {
  flex: 0 1 auto;
  top: -1;
  padding-left: 12px;
  height: 32px;
}

._opContainer_kloj2_84 {
  padding-top: 12px;
}

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

._optionsFormContainer_kloj2_92 {
  margin-top: 24px;
}

._aggregateEditor_kloj2_96 {
  padding-bottom: 12px;
}

._disabled_kloj2_40 ._aggregateEditor_kloj2_96 {
  padding-bottom: 0px;
}

._columnSelector_kloj2_104 {
  margin-bottom: 0px;
}

._headerLabel_kloj2_108 {
  font-weight: var(--weight-medium);
  margin-bottom: 12px;
}

._readOnlyCodeMirror_kloj2_113 .CodeMirror {
  background-color: transparent !important;
  border: none;
  padding-left: 0;
}

._readOnlyCodeMirror_kloj2_113 .CodeMirror:hover {
  border: none;
}

._versionContainer_kloj2_123 {
  background-color: #f2eded;
  margin-top: 8px;
  padding: 16px;
}

._detailContainer_kloj2_129 {
  padding-top: 20px;
}

._detailLabel_kloj2_133 {
  font-weight: var(--weight-medium);
}
._editButton_19ujp_1 {
  margin-left: 12px;
  vertical-align: text-bottom;
}

._entityInstanceIDWrapper_19ujp_6 {
  display: inline-block;
  position: relative;
}

._stringIcon_19ujp_11 {
  display: inline-block;
  margin-right: 8px;
  width: 15px;
  height: 15px;
  background: no-repeat center;
  transform: translateY(-2px);
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11.993c0 .708.14.97.43 1.005l.07.004H11V14H8.5c-.422 0-.756-.136-1-.388-.213.22-.496.352-.846.382L6.5 14H4v-.998h2.5l.07-.004c.267-.032.407-.258.427-.85L7 11.994V7.998L6 8v-.998L7 7V3.007c0-.708-.14-.97-.43-1.005l-.07-.004H4V1h2.5c.422 0 .756.136 1 .388.213-.22.496-.352.846-.382L8.5 1H11v.998H8.5l-.07.004c-.267.032-.407.258-.427.85L8 3.006V7h1v1l-1-.002v3.995z'/%3E%3C/svg%3E");
}
._filterRow_1k260_1 {
  align-items: center;
  display: flex;
  margin-bottom: 12px;
}

._guideLineContainer_1k260_7 {
  flex: 1 1 auto;
  margin-top: 2px;
  margin-left: auto;
}

._guideLine_1k260_7 {
  height: 1px;
  background: #e0e0e0;
  margin: 0 8px;
  min-width: 60px;
}

._guideLineSpacer_1k260_20 {
  height: 1px;
  margin-left: 95px;
}

._columnDeleteButton_1k260_25 {
  display: flex;
  flex: unset;
  align-items: center;
}
._filtersWidgetContainer_ekthz_1 {
  display: flex;
  align-items: baseline;
  margin: 12px 0;
}

._inline_ekthz_7 {
  display: inline-flex;
}

._filtersWidget_ekthz_1 {
  position: relative;
}

._operator_ekthz_15 {
  color: #aaa;
  width: 30px;
  cursor: pointer;
  font-size: var(--font-xs);
}

._operator_ekthz_15:hover {
  color: #000;
  font-weight: var(--weight-medium);
}

._label_ekthz_27 {
  margin-right: 8px;
}

._addFilterbutton_ekthz_31 {
  font-weight: var(--weight-regular);
}

._addFilterbutton_ekthz_31:hover {
  font-weight: var(--weight-regular) !important;
}
._metricEditor_2dawe_1 {
  display: flex;
  flex-direction: column;
  min-width: 560px;
  background-color: var(--color-bg-level2);
  border-top: 8px solid var(--color-bg-level2-darker);
}

._metricEditor_2dawe_1._readOnly_2dawe_9 {
  border: none;
}

._metricEditor_2dawe_1._simple_2dawe_13 {
  padding: 8px 12px 11px 12px;
  background-color: var(--color-bg-level2);
}

._metricEditor_2dawe_1._simple_2dawe_13 ._closeButton_2dawe_18 {
  margin: 8px -10px 0 24px;
}

._metricEditor_2dawe_1._simple_2dawe_13 ._inputY_2dawe_22 ._select_2dawe_22 {
  margin-right: 6px;
}

._metricEditor_2dawe_1._simple_2dawe_13 ._paren_2dawe_26 {
  color: #aaa;
  font-size: var(--font-xl-A);
  line-height: 18px;
  margin-left: 5px;
  margin-right: 5px;
}

._filterButton_2dawe_34 {
  color: var(--color-text-black);
}
._ratioMetricsContainer_11dug_1 {
  display: flex;
}

._dividerBlock_11dug_5 {
  font-size: var(--font-xl-E);
  text-align: center;
  color: #7d7d7d;
  padding-top: 6px;
  width: 64px;
}

._ratioEditor_11dug_13 {
  padding: 8px 12px 11px 12px;
  background-color: var(--color-bg-ratioEditor);
  border-top: 8px solid var(--color-border-ratioEditor);
}

._ratioMetricTopPadding_11dug_19 {
  padding-top: 12px;
}
._saveMetricDialog_g6475_1 ._inputRow_g6475_1 {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
}

._metricName_g6475_7 {
  font-weight: var(--weight-medium);
}

._inputRow_g6475_1 input[type='radio'] {
  margin-right: 8px;
  margin-left: 2px;
}
._infoBlock_ysxc4_1 {
  display: flex;
}

._icon_ysxc4_5 {
  flex: 0 0 auto;
  margin-right: 8px;
  color: #25a;
}
._editor_tn5xf_1 {
  display: flex;
}

._metricControls_tn5xf_5 {
  display: flex;
  padding: 10px 0px;
}

._metricControls_tn5xf_5 > * {
  margin: 0 0 0 8px;
}

._ratioMetricEditor_tn5xf_14 {
  margin-top: -5px; /* Cheat a little bit and move this up to align the other controls */
}
._segmentationMetricsPanel_4xd8s_1 {
  display: flex;
  margin-bottom: 24px;
  padding: 12px 24px 12px 24px;
}

._segmentationMetricsPanelInset_4xd8s_7 {
  display: flex;
  flex-direction: column;
  min-width: 500px;
}

._activeDropTarget_4xd8s_13 {
  background: var(--color-bg-dark);
}

._grabber_4xd8s_17 {
  margin-left: 8px;
  line-height: 16px;
}

._card_4xd8s_22:hover ._grabber_4xd8s_17 {
  cursor: move;
}

._metricItem_4xd8s_26 {
  display: flex;
  margin-bottom: 24px;
}

._firstSelector_4xd8s_31 {
  margin-top: 10px;
}

._guideLineContainer_4xd8s_35 {
  flex: 1 1 auto;
  margin-top: 22px;
}

._guideLine_4xd8s_35 {
  height: 1px;
  background: #e0e0e0;
  margin: 0 8px;
  min-width: 60px;
}

._metricDeleteButton_4xd8s_47 {
  margin-top: 12px;
}

._addMetricButton_4xd8s_51 {
  height: 28px;
  align-self: flex-start;
  background-color: var(--color-bg-level1);
  border-radius: 4px;
  border: 1px solid rgba(112, 112, 112, 0.46);
  padding: 0px 10px;
  font-weight: var(--weight-regular);
}

._addMetricButton_4xd8s_51:hover {
  font-weight: var(--weight-regular) !important;
}

._showLabel_4xd8s_65 {
  width: 81px;
  padding-top: 12px;
  padding-right: 12px;
  line-height: 30px;
  text-align: right;
}

._showLabel_4xd8s_65 span {
  color: var(--color-text-black) !important;
}

._metricTitle_4xd8s_77 {
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  color: #050505;
}

._titleRow_4xd8s_83 {
  padding: 0 0 12px 0;
}
._segmentationDisplayOptions_kpq1d_1 {
  padding-bottom: 5px;
}

._inputY_kpq1d_5 {
  margin: 0;
}

._sectionTitle_kpq1d_9 {
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  border-bottom: 1px solid black;
}

._segmentationDisplayOptions_kpq1d_1 table {
  background: #f6f7f8;
  width: 100%;
}

._segmentationDisplayOptions_kpq1d_1 thead td {
  height: 40px;
  font-weight: var(--weight-medium);
  background: #f2f2f2;
}

._segmentationDisplayOptions_kpq1d_1 tr._even_kpq1d_26 {
  background: #ffffff;
}

._segmentationDisplayOptions_kpq1d_1 td {
  padding: 5px;
}

._segmentationDisplayOptions_kpq1d_1 table._metrics_kpq1d_34 td:first-child {
  width: 200px;
}

._segmentationDisplayOptions_kpq1d_1 table._yAxes_kpq1d_38 td:first-child {
  width: 120px;
}

._segmentationDisplayOptions_kpq1d_1 table ._checkbox_kpq1d_42 {
  margin: auto;
}

._colorMenuItemWrapper_kpq1d_46 {
  padding: 5px;
}

._colorMenuItem_kpq1d_46 {
  padding-top: 10px;
  outline: 1px solid white;
  width: 20px;
  height: 10px;
}

._colorTextWrapper_kpq1d_57 {
  display: inline-block;
  vertical-align: top;
  padding-top: 4px;
}

._colorIconWrapper_kpq1d_63 {
  margin-left: 10px;
  display: inline-block;
  max-height: 24px;
}
._JobProgressWidget_1y02h_1 td {
  height: 30px;
  vertical-align: bottom;
  padding-top: 10px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

._toggle_1y02h_9 {
  margin-right: 8px;
  font-size: 125%;
  vertical-align: -0.2em;
  text-align: center;
  cursor: pointer;
}

._spec_1y02h_17 {
  padding: 8px 0;
  font-size: var(--font-s);
}

._statusIconContainer_1y02h_22 {
  padding-right: 10px;
  color: var(--color-check, #000000);
}

._loadingContainer_1y02h_27 {
  margin: 0 0 24px 0;
}

._exclamation_1y02h_31 {
  font-size: 80%;
  vertical-align: 0em;
}

._errorWidget_1y02h_36 {
  margin-top: 20px;
}

._clusterIndent_1y02h_40 {
  padding-left: 40px;
}
._queryContainer_mfell_1 {
  display: flex;
  width: 100%;
  margin-top: 8px;
}

._sqlContainer_mfell_7 {
  flex: 2 1 auto;
}

._schemaExplorer_mfell_11 {
  min-width: 400px;
  max-width: 33%;
  margin-left: 10px;
  min-height: 217px;
  display: flex;
  flex-direction: column;
}

._panelTitle_mfell_20 {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  height: 28px;
  padding-left: 8px;
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  background: #f2eded;
  cursor: 'pointer';
}

._docTreeView_mfell_32 {
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  background: #fff;
  font-size: var(--font-s);
}

._functionDoc_mfell_42 {
  flex: 1 1 auto;
  height: 300px;
  padding: 8px;
  border: 1px solid #d6d6d6;
  border-left: none;
  background: #fff;
  overflow: auto;
}

._sqlBox_mfell_52 .CodeMirror,
._sqlBox_mfell_52 .CodeMirror-sizer {
  min-height: 230px !important;
}

._sqlBox_mfell_52 label {
  font-size: var(--font-m);
  color: #818181;
}

._executeButton_mfell_62 {
  height: 28px;
  margin: 16px 0 36px 0;
}

/* .queryResult {
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
} */

._saveControls_mfell_72 {
  display: flex;
  flex-direction: row-reverse;
  background: var(--table-header-bg);
  padding: 1px 6px 2px 6px;
}

._editButton_mfell_79 {
  margin-left: 8px;
}

._truncatedLoadingSpinnerContainer_mfell_83 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

._truncatedLoadingSpinner_mfell_83 {
  display: block;
  margin: 0 auto;
}

._truncatedLoadingSpinnerText_mfell_94 {
  padding-top: 5px;
  padding-left: 15px;
}

._leftSpacer_mfell_99 {
  flex: 1.2 1 auto;
}

._buttonGroupContainer_mfell_103 {
  margin: 24px 0 12px;
  display: flex;
}

._tableButton_mfell_108 {
  width: 44px;
  height: 36px;
  padding-top: 3px;
}

._chartButton_mfell_114 {
  width: 44px;
  height: 36px;
  padding-top: 2px;
}

._scatterButton_mfell_120 {
  width: 44px;
  height: 36px;
  padding-top: 7px;
}

._downloadButton_mfell_126 {
  height: 36px;
  padding: 3px 16px;
}

._downloadButtonContainer_mfell_131 {
  flex: 1 1 auto;
}

._noDataContainer_mfell_135 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  color: #ddd;
}

._dataPendingSpinner_mfell_145 {
  display: block;
  margin: 0 auto;
}

._formContainer_mfell_150 {
  margin: 24px 0;
}

._batchModeToggle_mfell_154 {
  margin-top: 16px;
}
._queryContainer_di8zn_1 {
  display: flex;
  width: 100%;
  margin-top: 8px;
}

._panelTitle_di8zn_7 {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  height: 28px;
  padding-left: 8px;
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  background: #f2eded;
  cursor: 'pointer';
}

._batchModeToggle_di8zn_19 {
  margin-top: 16px;
  margin-left: 16px;
}

._executeButton_di8zn_24 {
  height: 28px;
  margin: 16px 0 36px 16px;
}

._cancelButton_di8zn_29 {
  height: 28px;
  margin: 16px 0 36px 16px;
}

._saveControls_di8zn_34 {
  display: flex;
  flex-direction: row-reverse;
  background: var(--table-header-bg);
  padding: 1px 6px 2px 6px;
}

._editButton_di8zn_41 {
  margin-left: 8px;
}

._entitySelectContainer_di8zn_45 {
  margin-left: 32px;
}
._entitySelectContainer_di8zn_45 label {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}

._additionalOptionsLabel_di8zn_54 {
  width: 112px;
  text-align: right;
  padding-right: 10px;
  margin-right: 0px;
}

._additionalOptionsLabel_di8zn_54 + div {
  display: none !important;
}
._row_13yi2_1 {
  position: relative;
  display: flex;
  align-items: center;
}
._label_12a60_1 {
  display: inline-block;
  color: #333;
  font-size: var(--font-m);
  margin-right: 4px;
}
._userSegmentsViewer_18ewn_1 {
  position: relative;
  width: 100%;
  max-width: 610px;
  height: 100%;
}

._segmentCard_18ewn_8 {
  border: 1px solid #e6e6e6;
  font-size: var(--font-l);
  width: 760px;
  min-height: 200px;
  margin: 36px 0px 0px 0px;
  padding: 12px;
}
._segmentCardContent_18ewn_16 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 0 1 auto;
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: flex-start;
  margin: 0px 24px 0px 0px;
  width: 385px;
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 h1 {
  flex: 0 1 auto;
  font-size: var(--font-xl);
  color: var(--color-text-black);
  font-weight: var(--weight-medium);
  margin: 0 0 12px 0;
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 ._description_18ewn_37 {
  color: var(--color-text-black);
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  flex: 1 1 auto;
  margin: 0px 0 12px 12px;
}
._condition_18ewn_44 {
  position: relative;
  margin: 0 0 6px 0;
  overflow: hidden;
  line-height: 1.2em;
  text-align: justify;
  margin-right: -1em;
  padding-right: 1em;
  word-break: break-all;
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 ._condition_18ewn_44 {
  max-height: 6em;
}
._segmentCard_18ewn_8._expanded_18ewn_57 ._leftBlock_18ewn_22 ._condition_18ewn_44 {
  max-height: initial;
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 ._condition_18ewn_44:before {
  content: '\02026';
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgb(247, 247, 247);
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 ._condition_18ewn_44:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background: rgb(247, 247, 247);
}
._segmentCard_18ewn_8._expanded_18ewn_57 ._leftBlock_18ewn_22 ._condition_18ewn_44:before,
._segmentCard_18ewn_8._expanded_18ewn_57 ._leftBlock_18ewn_22 ._condition_18ewn_44:after {
  content: none;
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 ._attribute_18ewn_80 {
  max-width: 40%;
}
._segmentCard_18ewn_8 ._leftBlock_18ewn_22 ._operands_18ewn_83 {
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  overflow: hidden;
}
._segmentCard_18ewn_8 ._insetGraph_18ewn_88 {
  color: #151515;
  font-size: var(--font-xs-A);
  font-weight: var(--weight-regular);
  flex: 0 1 auto;
  width: 104px;
  height: 100%;
  margin-left: 24px;
}
._segmentCard_18ewn_8 ._insetGraph_18ewn_88 div {
  text-align: center;
  margin: 4px 0;
}

._segmentCard_18ewn_8 ._insetGraph_18ewn_88 ._regressionScore_18ewn_102 {
  position: relative;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: BarlowCondensed;
  font-weight: 300;
  font-size: 40px;
  color: #fff;
  background: linear-gradient(#8c4580, #442569);
}

._segmentCounter_18ewn_116 {
  width: 60px;
  text-align: right;
  border: 1px solid #d6d6d6;
}

._segmentCounter_18ewn_116:hover {
  border-color: rgba(0, 0, 0, 0.365);
}

._segmentCounter_18ewn_116:focus {
  border-color: #888;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4) inset;
  outline: none;
}
._column_m51ii_1 {
  display: flex;
  align-items: center;
}

._columnCentered_m51ii_6 {
  display: flex;
  align-items: center;
  justify-content: center;
}
._ModelSpecWidget_5efkb_1 td {
  height: 30px;
  vertical-align: bottom;
}

._toggle_5efkb_6 {
  margin-right: 8px;
  text-align: center;
  cursor: pointer;
}

/* .spec {
  padding: 8px 0;
  font-size: var(--font-s);
} */

._modelStatsHeader_5efkb_17 {
  margin-top: 11px;
  margin-bottom: 11px;
  padding-top: 48px;
  font-size: var(--font-xl);
  font-weight: var(--weight-regular);
  color: var(--color-text-black);
}

._modelStatsSubHeading_5efkb_26 {
  color: var(--color-text-gray);
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  margin-bottom: 11px;
  word-wrap: break-word;
}

._model-spec-section_5efkb_34,
._model-spec-section_5efkb_34 > div:not(._model-spec_5efkb_34) {
  display: flex;
  flex-direction: column;
}

._model-spec_5efkb_34 {
  display: inline-flex;
}

._label_5efkb_44 {
  text-align: right;
  margin-right: 15px;
  display: inline-flex;
  flex: 0 0 200px;
  justify-content: flex-end;
}

._value_5efkb_52 {
  display: block;
}

._statsTable_5efkb_56 {
  border-collapse: collapse;
}

._statsRow_5efkb_60:nth-child(even) {
  background-color: var(--color-bg-level1);
}

._statsTable_5efkb_56 td {
  line-height: 36px;
}

._statsCell_5efkb_68 {
  border: 1px solid rgba(204, 204, 204, 0.5);
  padding: 0 14px;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  line-height: 2.25;
}

._statsCell_5efkb_68._legacy_5efkb_76 {
  font-weight: var(--weight-medium);
}

._statsTable_5efkb_56 thead td {
  background-color: var(--color-bg-level2);
  color: var(--color-text-blue);
  font-size: var(--font-s);
  font-weight: var(--weight-medium);
}

._modelStats_5efkb_17,
._bothCurves_5efkb_88,
._modelStatsCurveHeader_5efkb_89 {
  display: flex;
}

._modelStats_5efkb_17,
._bothCurves_5efkb_88 {
  align-items: flex-start;
}

._modelStats_5efkb_17 {
  flex-direction: column;
}

._predictorsTable_5efkb_102 div[class*='header'],
._predictorsTable_5efkb_102 div[class*='row'] {
  border-bottom: 0px;
  display: flex;
  flex-direction: row;
  vertical-align: inherit;
  padding: 0px 0px 0px 0px;
}

._predictorsTable_5efkb_102 div[class*='header'] div[class*='defaultCell'] {
  align-items: center;
  background-color: var(--color-bg-level2);
  border: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  font-weight: 400;
  font-size: 14px;
  height: 50px;
  justify-content: flex-start;
  margin: 0px;
  padding-left: 14px;
  text-transform: none;
}

._predictorsTable_5efkb_102 div[class*='header'] div[class*='defaultCell'] span {
  padding: 0px 2px 0px 6px;
  font-size: 0.75em;
}

._predictorsTable_5efkb_102
  div[class*='header']
  div[class*='defaultCell'][class*='align-center'] {
  align-items: center;
  border: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  font-weight: 400;
  font-size: 14px;
  height: 50px;
  margin: 0px;
  padding: 0px 0px 0px 8px;
  text-transform: none;
}

._predictorsTable_5efkb_102
  div[class*='header']
  div[class*='defaultCell'][class*='align-right'] {
  align-items: right;
  background-color: #eaeaea;
  border: 1px solid#d6d6d6;
  display: flex;
  font-weight: 400;
  font-size: 14px;
  height: 50px;
  justify-content: flex-end;
  margin: 0px;
  padding: 0px;
  padding-right: 8px;
  text-transform: none;
}

._predictorsTable_5efkb_102 div[class*='gridRowContainer'] div[class*='row'] {
  box-shadow: none;
}

._predictorsTable_5efkb_102 div[class*='gridRowContainer'] div[class*='row']:hover,
._predictorsTable_5efkb_102 div[class*='gridRowContainer'] div[class*='row']._highlight_5efkb_166 {
  background-color: transparent !important;
  box-shadow: none !important;
}

._predictorsTable_5efkb_102 div[class*='defaultCell'] {
  padding-left: 0px;
  padding-right: 0px;
  margin-right: 0px;
}

._predictorsTable_5efkb_102 div[class*='gridsectionHeader'] {
  margin-top: 0px;
}

._predictorsTable_5efkb_102 ._datagrid_5efkb_181 ._col_5efkb_181 {
  padding-right: 0px;
  padding-left: 0px;
  margin-right: 0px;
}

._predictorsTable_5efkb_102 ._datagrid_5efkb_181 ._header_5efkb_187 > div,
._predictorsTable_5efkb_102 ._datagrid_5efkb_181 ._row_5efkb_188 > div {
  padding-right: 0px;
  margin-right: 0px;
}

._predictorsTable_5efkb_102
  div[class*='gridRowContainer']
  div[class*='row']
  div[class*='statsCell'] {
  min-width: 100%;
  min-height: 100%;
}

._partition-selector_5efkb_201 {
  align-items: baseline;
}

._downloadModel_5efkb_205 {
  margin-top: 48px;
}
._waitingBlock_112m5_1 {
  text-align: center;
  margin: 20px auto;
}
._noData_112m5_5 {
  color: #ddd;
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
._noModelSummary_112m5_14 {
  width: 100%;
  font-size: var(--font-l);
  font-weight: var(--weight-regular);
  max-width: 900px;
  padding: 12px;
}
._centeredMessage_112m5_21 {
  color: #ddd;
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
._panelContainer_1hsr7_1 {
  background: var(--color-bg-level2);
  padding: 8px 12px;
  border-bottom: 2px solid var(--color-section-border);
}

._panelContainer_1hsr7_1._collapsed_1hsr7_7 {
  margin: -1px 0 5 0;
}

._panelContainer_1hsr7_1 ._title_1hsr7_11 {
  color: var(--color-text-black);
  font-size: var(--font-l);
  font-weight: var(--weight-thick);
  user-select: none;
  cursor: pointer;
}

._panelContainer_1hsr7_1 ._toggle_1hsr7_19 {
  width: 24px;
  color: #606060;
  text-align: center;
}

._panelContainer_1hsr7_1 ._content_1hsr7_25 {
  margin-top: 10px;
  padding-left: 16px;
}

._panelContainer_1hsr7_1._collapsed_1hsr7_7 ._content_1hsr7_25 {
  height: 0;
  overflow: hidden;
  margin: 0;
}
._mxNetLayerEditWidget_diym5_1 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 392px;
  width: 460px;
  padding: 14px 14px 14px 36px;
  background: #ffffff;
  border: 1px solid #bfbfbf;
  box-shadow: 6px 6px 8px 0 rgba(0, 0, 0, 0.25);
  cursor: auto;
}

._layerCard_diym5_14 {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 368px;
  height: 88px;
  margin-bottom: 16px;
  padding: 7px 0 9px 15px;
  background: #f2f2f2;
  box-shadow:
    inset 0 -2px 0 0 rgb(207, 207, 207),
    inset -2px 0 0 0 rgba(205, 205, 205, 0.32);
  border: none;
  color: var(--color-text-black);
  font-weight: var(--weight-regular);
  font-size: var(--font-m);
  cursor: pointer;
}

._layerCard_diym5_14._selected_diym5_33 {
  border: 1px solid #4a90e2;
}
._clusterSelector_qnfle_1 {
  --default-button-padding: 4px 0 3px 8px;
  display: flex;
  align-items: baseline;
  position: relative;
  height: var(--input-height, 32px);
}

._clusterSelector_qnfle_1 label {
  color: var(--color-text-black);
  font-size: var(--font-m);
  align-self: center;
}

label._left_qnfle_15 {
  display: inline-block;
  margin-right: 8px;
}
._row_d13di_1 {
  display: flex;
  align-items: center;
  margin: 12px 0;
  min-height: 32px;
}

._settingsLabel_d13di_8 {
  width: 200px;
  margin-right: 30px;
  text-align: right;
  color: var(--color-text-black);
  font-weight: var(--weight-regular);
}

._settingsSubsectionHeader_d13di_16 {
  font-size: var(--font-l);
  font-weight: var(--weight-medium);
  margin: 12px 0;
}

._settingsLabelWithTooltip_d13di_22 {
  width: 200px;
  text-align: right;
  color: var(--color-text-black);
  font-weight: var(--weight-regular);
  display: inline-block;
}

._addLayerButton_d13di_30 {
  width: 368px;
  height: 32px;
  color: #212121 !important;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 12px;
  font-size: var(--font-m) !important;
  text-align: center;
}

._modelParamsEditor_d13di_41 .panel {
  background-color: var(--color-bg-level2);
}

._separatedRow_d13di_45 {
  margin: 24px 0;
}

._separatedRowContent_d13di_49 {
  margin-left: 24px;
}

._formRowLeader_d13di_53 {
  flex-basis: 100%;
}

._sectionError_d13di_57 {
  display: inline-block;
  font-size: 16px;
  margin-left: 66px;
  font-weight: var(--weight-regular);
  color: #bd761a;
  position: relative;
}

._sectionError_d13di_57 ._detailsLink_d13di_66 {
  display: inline-block;
  font-weight: var(--weight-medium);
  color: #02044d;
  margin-left: 16px;
}

._sectionError_d13di_57 ._warningIcon_d13di_73 {
  position: absolute;
  left: -40px;
  top: -1px;
  height: 21px;
  width: 24px;
}
._cohortTable_1pxxy_1 {
  font-size: var(--font-s);
  border: none;
}

._cohortCell_1pxxy_6 {
  overflow: visible !important;
}
._cohortHeaderCell_1pxxy_9,
._retentionCell_1pxxy_10,
._cohortCell_1pxxy_6 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  padding: 4px 8px;
}

._retentionCell_1pxxy_10 {
  box-sizing: content-box;
  border: 1px solid #868686;
  padding: 0;
}

._cohortCell_1pxxy_6 > div {
  display: flex;
  width: 100%;
  padding: 0 10px 0 0;
  justify-content: space-between;
}

._cohortCount_1pxxy_33 {
  text-align: right;
  font-size: var(--font-xs);
}
._dateRangePicker_shgdj_1 {
  --input-select-button-padding: var(--default-button-padding);
  display: inline-flex;
  align-items: center;
}

._rangeLabel_shgdj_7 {
  margin: 0 12px;
  color: #818181;
}
._cohortTable_1pxxy_1 {
  font-size: var(--font-s);
  border: none;
}

._cohortCell_1pxxy_6 {
  overflow: visible !important;
}
._cohortHeaderCell_1pxxy_9,
._retentionCell_1pxxy_10,
._cohortCell_1pxxy_6 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  padding: 4px 8px;
}

._retentionCell_1pxxy_10 {
  box-sizing: content-box;
  border: 1px solid #868686;
  padding: 0;
}

._cohortCell_1pxxy_6 > div {
  display: flex;
  width: 100%;
  padding: 0 10px 0 0;
  justify-content: space-between;
}

._cohortCount_1pxxy_33 {
  text-align: right;
  font-size: var(--font-xs);
}
._funnelTableSpinner_tw3fn_1 {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  bottom: 0;
  color: #ddd;
  display: flex;
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}
._funnelMetricRoot_165iy_1 {
  position: relative;
  display: flex;
  padding: 36px 24px 12px 24px;
}
._funnelStepOuterContainer_165iy_6[data-index='0'] {
  margin-top: -26px;
}
._funnelStepContainer_165iy_9 {
  position: relative;
  width: 800px;
  margin: -2px 0 0 30px;
  padding: 10px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid #ddd;
}
._funnelStepContainer_165iy_9._raised_165iy_17 {
  background: #fff;
  border: none;
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.35);
}
._funnelStepContainer_165iy_9._dragHoverTop_165iy_22 {
  border-top: 2px solid #979797;
}
._funnelStepContainer_165iy_9._dragHoverBottom_165iy_25 {
  border-bottom: 2px solid #979797;
}
._funnelStepContainer_165iy_9._collapsed_165iy_28 {
  border-bottom: none;
}
._funnelMetricRollup_165iy_31 {
  margin-right: 12px;
  width: 16px;
  height: 20px;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjRjZGNkY2IiBkPSJNMCAwaDE2djIwSDB6Ii8+PGcgc3Ryb2tlPSIjNDA0MDQwIj48cGF0aCBkPSJNNCA2bDQgNCA0LTRNNCAxMWw0IDQgNC00Ii8+PC9nPjwvZz48L3N2Zz4=');
  cursor: pointer;
}
._funnelMetricRollup_165iy_31:hover {
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjMTkxOTE5IiBkPSJNMCAwaDE2djIwSDB6Ii8+PGcgc3Ryb2tlPSIjQ0RDRENEIj48cGF0aCBkPSJNNCA2bDQgNCA0LTRNNCAxMWw0IDQgNC00Ii8+PC9nPjwvZz48L3N2Zz4=');
}
._funnelMetricRollup_165iy_31._closed_165iy_41 {
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjRjZGNkY2IiBkPSJNMCAwaDE2djIwSDB6Ii8+PGcgc3Ryb2tlPSIjNDA0MDQwIj48cGF0aCBkPSJNNCAxNWw0LTQgNCA0TTQgMTBsNC00IDQgNCIvPjwvZz48L2c+PC9zdmc+');
}
._funnelMetricRollup_165iy_31._closed_165iy_41:hover {
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjMTkxOTE5IiBkPSJNMCAwaDE2djIwSDB6Ii8+PGcgc3Ryb2tlPSIjQ0RDRENEIj48cGF0aCBkPSJNNCAxNWw0LTQgNCA0TTQgMTBsNC00IDQgNCIvPjwvZz48L2c+PC9zdmc+');
}
._funnelStep_165iy_6 {
  display: flex;
  align-items: baseline;
  width: 100%;
}
._funnelStepHandle_165iy_52 {
  display: inline-block;
  color: #e0e0e0;
  width: 30px;
  cursor: move;
}
._funnelStepHandle_165iy_52:hover {
  color: #c8c8c8;
}
._funnelStepNumber_165iy_61 {
  display: inline-block;
  line-height: 24px;
  width: 30px;
  font-size: var(--font-xl-B);
  font-weight: var(--weight-thick);
  color: #c6c6c6;
}
._funnelStepContainer_165iy_9._raised_165iy_17 ._funnelStepNumber_165iy_61 {
  visibility: hidden;
}

._stepError_165iy_73 {
  color: black;
  display: inline-block;
  background-color: #ffdc6c;
  border-left: 12px solid #ffbc42;
  padding: 8px;
  padding-right: 40px;
  margin-top: -8px;
}

._warning_165iy_83 {
  margin-left: 10px;
  position: absolute;
  top: 34px;
}

._table_165iy_89 a {
  font-weight: 400;
}
._modelStats_1bv1w_1,
._bothCurves_1bv1w_2,
._modelStatsCurveHeader_1bv1w_3 {
  display: flex;
}

._modelStats_1bv1w_1,
._bothCurves_1bv1w_2 {
  align-items: flex-start;
}

._modelStats_1bv1w_1 {
  flex-direction: column;
}

._modelStatsHeader_1bv1w_16 {
  margin-top: 24px;
  margin-bottom: 11px;
  padding-top: 48px;
  font-size: var(--font-xl);
  font-weight: var(--weight-regular);
  color: var(--color-text-black);
}

._modelStatsHeader_1bv1w_16:first-of-type {
  padding-top: 0px;
}

._modelStatsTooltip_1bv1w_29 {
  width: 300px;
}

._statsTable_1bv1w_33 {
  border-collapse: collapse;
}

._statsRow_1bv1w_37:nth-child(even) {
  background-color: var(--color-bg-level1);
}

._statsTable_1bv1w_33 td {
  line-height: 36px;
}

._statsCell_1bv1w_45 {
  border: 1px solid rgba(204, 204, 204, 0.5);
  padding: 0 14px;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  line-height: 2.25;
}

._statsCell_1bv1w_45._legacy_1bv1w_53 {
  font-weight: var(--weight-medium);
}

._modelStats_1bv1w_1 thead td {
  background-color: var(--color-bg-level2);
  color: var(--color-text-blue);
  font-size: var(--font-s);
  font-weight: var(--weight-medium);
}

._bothCurves_1bv1w_2,
._modelStatsCurveHeader_1bv1w_3 {
  flex-direction: row;
  flex-wrap: wrap;
}

._modelStatsCurveHeader_1bv1w_3 {
  height: 30px;
  width: 642px;
  margin-top: 48px;
  border: 1px solid #e6e6e6;
  border-bottom: none;
  background: #fcfcfc;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  color: var(--color-text-black);
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

._roc_1bv1w_85 {
  margin-right: 60px;
}
._clustersView_11arp_1 {
  margin-top: 48px;
}

._clusterCard_11arp_5 {
  border: 1px solid #e6e6e6;
  font-size: var(--font-l);
  width: 760px;
  min-height: 200px;
  margin: 36px 0px 0px 0px;
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 0 1 auto;
}

._clusterCard_11arp_5:first-child {
  margin-top: 0;
}

._clusterCard_11arp_5 ._leftBlock_11arp_22 {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: flex-start;
  margin: 0px 24px 0px 0px;
}

._clusterCard_11arp_5 ._leftBlock_11arp_22 h1 {
  flex: 0 1 auto;
  font-size: var(--font-xl);
  color: var(--color-text-black);
  font-weight: var(--weight-medium);
  margin: 0 0 12px 0;
}

._clusterCard_11arp_5 ._leftBlock_11arp_22 ._description_11arp_38 {
  color: var(--color-text-black);
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  flex: 1 1 auto;
  margin: 0px 0 12px 12px;
}

._clusterCard_11arp_5 ._insetGraph_11arp_46 {
  color: #151515;
  font-size: var(--font-xs-A);
  font-weight: var(--weight-regular);
  flex: 0 1 auto;
  width: 104px;
  height: 100%;
  margin-left: 24px;
}

._clusterCard_11arp_5 ._insetGraph_11arp_46 div {
  text-align: center;
  margin: 4px 0;
}

._clusterCard_11arp_5 ._insetGraph_11arp_46 ._regressionScore_11arp_61 {
  position: relative;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: RobotoCondensed;
  font-size: var(--font-xxl-A);
  background-color: #e0e0e0;
}

._clustersBreadcrumbs_11arp_73 {
  margin-bottom: 12px;
}
._fittedModelSummary_hjvgk_1 {
  background-color: var(--color-bg-model-summary);
  color: var(--color-text-black);
  font-size: var(--font-m);
  line-height: 25px;
  padding: 10px 40px;
  margin: auto;
  box-shadow: inset 12px 0 0 0 var(--color-model-summary-border);
}
._boldLabel_mgmbd_1 {
  margin: 0px 0px 10px 0px;
}
._separatedRow_ao6u2_1 {
  margin: 24px 0;
}

._boldLabel_ao6u2_5 {
  margin: 0px 0px 10px 0px;
}
._factorsHeading_1k5xe_1 {
  color: #151515;
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
}

._unusedFactorsHeading_1k5xe_7 {
  margin: 20px 0 12px;
}

._subheading_1k5xe_11 {
  color: #aaa;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  margin: 0px 0px 12px 0px;
}

._segmentsArrowButton_1k5xe_18 {
  position: relative;
  height: 50px;
  width: 160px;
}

._segmentsArrowButton_1k5xe_18::after {
  content: ' ';
  border: 25px solid transparent;
  border-left-color: var(--button-primary-bg-normal);
  border-right-width: 0;
  /* prevent hover region from being too large */
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin: -25px 0 0 -2px;
}

._segmentsArrowButton_1k5xe_18:hover::after {
  border-left-color: var(--button-primary-bg-hover);
}

._segmentsArrowButton_1k5xe_18:active::after {
  border-left-color: var(--button-primary-bg-click);
}

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

._predictorsBlock_1k5xe_46 ._predictorsList_1k5xe_51 {
  flex: 0 1 auto;
  padding-top: 2px;
}

._predictorsBlock_1k5xe_46 ._curlyBrace_1k5xe_56 {
  flex: 0 0 30px;
  padding-top: 3px;
  text-align: right;
}

._predictorsBlock_1k5xe_46 ._segmentifyPanel_1k5xe_62 {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  padding: 110px 0 0 40px;
}

._predictorsBlock_1k5xe_46 ._morePredictorsButton_1k5xe_69 {
  font-size: var(--font-m);
  text-align: center;
}

._predictorCard_1k5xe_74 {
  font-size: var(--font-xl);
  background-color: #f7f7f7;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.27);
  min-height: 56px;
  width: 640px;
  padding: 0 18px 0 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

._predictorCard_1k5xe_74 ._number_1k5xe_86 {
  color: #aaa;
  min-width: 36px;
}

._predictorCard_1k5xe_74 ._predictorTitle_1k5xe_91 {
  flex: 1 1 auto;
  color: #151515;
  margin-right: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._predictorCard_1k5xe_74 ._minichart_1k5xe_100 {
  width: 100px;
  height: 56px;
  cursor: pointer;
}

._predictorCard_1k5xe_74 ._unignoreButton_1k5xe_106 {
  color: #ddd;
  cursor: pointer;
}

._predictorCard_1k5xe_74 ._unignoreButton_1k5xe_106:hover {
  color: #0a0;
}

._compact_1k5xe_115 ._predictorCard_1k5xe_74 {
  font-size: var(--font-xl-B);
  box-shadow: none;
  width: auto;
  min-height: initial;
  margin: 0 0 12px 0;
}

._partitionName_1k5xe_123 {
  font-weight: var(--weight-medium);
}
._apiContainer_11wx2_1 {
  scroll-behavior: smooth;
}

._apiParamTable_11wx2_5 {
  margin-top: 18px;
}

._apiParamTr_11wx2_9 {
  border-bottom: 1px solid #ccc;
  vertical-align: text-top;
}

._apiParamTd_11wx2_14 {
  padding: 8px 0px 8px 2px;
  min-width: 200px;
}

._apiParamTitle_11wx2_19 {
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  margin-right: 40px;
}

._apiParamSubtitle_11wx2_25 {
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  color: #ccc;
  font-style: italic;
}

._apiParamDescription_11wx2_32 {
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
}

._apiParamObjectName_11wx2_37 {
  font-size: var(--font-xl);
  font-weight: var(--weight-regular);
  margin-bottom: 12px;
}

._apiParamObjectDescription_11wx2_43 {
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  margin-bottom: 12px;
}

._apiPaneTitle_11wx2_49 {
  margin-bottom: 24px;
  font-size: var(--font-xl);
  font-weight: var(--weight-regular);
  color: var(--color-heading);
}

._apiHeader_11wx2_56 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: var(--font-l);
  font-weight: var(--weight-medium);
}

._url_11wx2_63 {
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
  color: #666;
  font-family: monospace;
}

._apiDescription_11wx2_70 {
  margin-top: 12px;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
}

._apiParamRequired_11wx2_76 {
  text-transform: uppercase;
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-green);
}

._selectedDiscrim_11wx2_83 {
  color: #c60544;
}

._discrim_11wx2_87:hover {
  cursor: pointer;
  color: #c60544;
}

._discrimDiv_11wx2_92 {
  font-family: Consolas, monospace;
  font-weight: var(--weight-medium);
}

._parentRefs_11wx2_97 {
  font-family: Consolas, monospace;
  font-weight: var(--weight-medium);
}

._parentRef_11wx2_97 {
  color: #c60544;
}

._parentRef_11wx2_97:hover {
  cursor: pointer;
}

._deprecatedBadge_11wx2_110 {
  margin-left: 12px;
  display: inline;
  fill: #ffffff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  margin-right: 24px;
  padding: 0px 3px;
  text-transform: uppercase;
  color: #f59a22;
  outline: 1px solid #f3900c;
}
._dataType_1sk6r_1 {
  color: #5b3fa4;
  font-family: Consolas, monospace;
  font-weight: var(--weight-medium);
}

._treeViewLink_1sk6r_7 {
  color: #c60544;
}

._treeViewLink_1sk6r_7:hover {
  cursor: default;
}

._link_1sk6r_15 {
  color: #c60544;
  cursor: pointer;
}

._link_1sk6r_15:hover {
  cursor: pointer;
}

._treeViewContainer_1sk6r_24 {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

._treeView_1sk6r_7 {
  max-height: 60vh;
  overflow-y: auto !important;
  margin-right: -16px;
  font-size: 16px;
  font-family: Consolas, monospace;
  font-weight: var(--weight-medium);
  padding-right: 16px;
}

._treeView_1sk6r_7:before {
  content: '';
  display: flex;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: -18px;
}

._treeView_1sk6r_7 li {
  margin-bottom: 4px;
}

._treeViewHoverCatch_1sk6r_60 {
  position: absolute;
  top: -30px;
  bottom: -30px;
  right: -30px;
  left: -30px;
  z-index: -1;
}

._icon_1sk6r_69 {
  display: inline-block;
  margin-right: 8px;
  width: 15px;
  height: 15px;
  background: no-repeat center;
  transform: translateY(-2px);
  vertical-align: middle;
}

._double_1sk6r_79 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/double-20457996.svg');
}

._string_1sk6r_83 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/string-2e3cb2c6.svg');
}

._array_1sk6r_87 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/array-5ee0714f.svg');
}

._boolean_1sk6r_91 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/boolean-c4440b92.svg');
}

._byte_1sk6r_95 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/byte-c45832db.svg');
}

._date_1sk6r_99 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/date-f5cdfa72.svg');
}

._float_1sk6r_103 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/float-ff3e3912.svg');
}

._int_1sk6r_107 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/integer-bdc95a6a.svg');
}

._long_1sk6r_111 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/long-62877648.svg');
}

._map_1sk6r_115 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/map-2a86b1ce.svg');
}

._null_1sk6r_119 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/null-9f316ed0.svg');
}

._short_1sk6r_123 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/short-04e3a3da.svg');
}

._struct_1sk6r_127 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/struct-0afd0b89.svg');
}

._timestamp_1sk6r_131 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/timestamp-19a35de9.svg');
}

._unknown_1sk6r_135 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/unknown-8150941d.svg');
}

._vector_1sk6r_139 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/vector-04aa1641.svg');
}
._dependencyGraph_11d0n_1 {
  border: 1px solid #d6d6d6;
  padding: 10px;
}

._predictor_11d0n_6 {
  padding: 1px 4px;
  cursor: pointer;
}

._computable_11d0n_11::after {
  content: 'Optional';
  text-transform: uppercase;
  background: #333;
  padding: 2px 4px;
  color: #f7f7f7;
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  margin-left: 6px;
}
._SqlPredictionsTab_1y2zj_1 {
  min-height: 550px;
  max-width: 640px;
  justify-content: center;
}
._predictionsTabRow_1y2zj_6 {
  display: flex;
  align-items: center;
  margin: 24px 0px;
}
._predictionsTab_vz3c3_1 {
  min-height: 550px;
  max-width: 640px;
  justify-content: center;
}
._section_vz3c3_6 {
  margin: 36px 0px 20px 0px;
  font-size: var(--font-xl-A);
  font-weight: var(--weight-regular);
}
._disabled_vbh9i_1 {
  color: var(--color-text-gray) !important;
}
._row_183s2_1 {
  margin-bottom: 12px;
}

._radioInput_183s2_5 {
  margin-right: 4px;
  margin-left: 2px;
  width: 15px;
  vertical-align: text-top;
}
._separatedRow_1ktuu_1 {
  margin: 24px 0;
}

._separatedRowContent_1ktuu_5 {
  margin-left: 24px;
}

._refNowSelector_1ktuu_9 {
  display: flex;
  align-items: baseline;
}

._customConditionBox_1ktuu_14 {
  margin: 12px 0px 6px 0px;
  display: flex;
}
._customConditionBox_1ktuu_14 ._conditionLink_1ktuu_18 {
  flex: 0 1 auto;
  border: solid #ccc 1px;
  background: #fff;
  padding: 4px 12px 4px 12px;
}

._customConditionBox_1ktuu_14 ._conditionLink_1ktuu_18._invalid_1ktuu_25 {
  background: rgba(204, 34, 34, 0.04);
  border-color: rgba(204, 34, 34, 0.7);
}

._customConditionBox_1ktuu_14 ._conditionLink-disabled_1ktuu_30 {
  color: #bbb;
}

._customConditionBox_1ktuu_14 ._deleteIcon_1ktuu_34 {
  flex: 0 1 auto;
  top: -1;
  padding-left: 12px;
  height: 32px;
}

._boldLabel_1ktuu_41 {
  margin: 0px 0px 10px 0px;
}

._entityEditPanel_1ktuu_45 {
  margin-bottom: 24;
}
._summaryTable_1wdv9_1 {
  border: 1px solid #ccc;
}

._summaryTable_1wdv9_1 td {
  border: 1px solid #ccc;
  padding: 10px;
}

._summaryTable_1wdv9_1 td:first-of-type {
  font-weight: var(--weight-medium);
}

._summaryTable_1wdv9_1 td:last-of-type {
  text-align: right;
  min-width: 120px;
}

._subtitle_1wdv9_19 {
  color: #333;
  font-size: var(--font-l);
  font-weight: var(--weight-regular);
  margin: 18px 0 10px;
  border-bottom: 1px solid #ccc;
}
._conditionBlock_1x3na_1 .label {
  width: 135px;
  text-align: right;
}
._pageChartEditor_2no8f_1 {
  flex: 1 1 auto;
}
._title_1lix2_1 {
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
  color: var(--color-text-black);
  margin-bottom: 13px;
}

._header_1lix2_8 {
  display: flex;
  align-items: center;
}

._body_1lix2_13 {
  position: relative;
}

._emptyMessage_1lix2_17 {
  text-align: center;
  color: #ddd;
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
}

._activeDropTarget_1lix2_24 {
  background: var(--color-bg-dark);
}

._grabber_1lix2_28 {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  /* background: #ddd; */
  cursor: pointer;
}

/* .grabber:active {
  background: #c8c8c8;
} */

._card_1lix2_43:hover ._grabber_1lix2_28 {
  display: block;
  cursor: move;
}
._chartCard_m6sby_1 {
  background: white;
  display: inline-block;
  opacity: 1;
  padding: 8px;
  position: relative;
  transition: opacity 0.3s;
  vertical-align: top;
  -webkit-user-select: none;
  margin-bottom: 12px;
}

._chartCardChartView_m6sby_13 {
  border: 1px solid var(--color-bg-level2);
  overflow: hidden;
}

._chartCardTitle_m6sby_18 {
  color: var(--color-text-blue);
  cursor: default;
  font-size: var(--font-m);
  font-weight: var(--weight-regular);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._chartCardAuthor_m6sby_29,
._chartCardFootnote_m6sby_30 {
  color: var(--color-text-gray);
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
  line-height: 1.35;
}

._chartCardAuthor_m6sby_29 a {
  color: var(--color-text-gray);
}

._titleRow_m6sby_41,
._row_m6sby_42 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

._titleRow_m6sby_41 {
  padding-top: 4px;
}

._checkbox_m6sby_53 div:hover {
  background: white no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/unchecked-52ca50f8.svg');
}

._checkbox_m6sby_53 div {
  background: white
    url('../../../images/checkbox/unchecked.svg', fill='#A0A0A0') no-repeat
    center;
}
._newChartButton_19irn_1,
._newChartButton_19irn_1 button {
  height: 28px;
}

._sortControls_19irn_6 {
  text-align: right;
}

._loadSpinner_19irn_10 {
  min-height: auto;
  height: 30px;
  margin-bottom: -30px;
}

._actionsRow_19irn_16 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

._actionButtonContainer_19irn_23 {
  display: flex;
  align-items: center;
}

._selectAllButton_19irn_28 {
  margin-right: 16px;
}

._publicationLevelToggle_19irn_32 {
  margin-left: 40px;
}

._contentVerticalSpacing_19irn_36 {
  margin-top: -10px;
  margin-bottom: 10px;
}
._customTableWidget_o2lqo_1 {
  position: relative;
  padding: 0px 24px;
}

._deleteButtonBlock_o2lqo_6 {
  position: absolute;
  top: 20px;
  right: 20px;
}
._PageSection_wk8ln_1 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 5px;
  margin-top: 48px;
}

._PageSection_wk8ln_1:first-child {
  margin-top: 0px;
}

._PageSectionHeader_wk8ln_12 {
  font-size: var(--font-xl-B);
  font-weight: var(--weight-regular);
  color: #333;
}
._label_tbg8e_1 {
  width: 160px;
  margin-right: 16px;
  text-align: right;
}

._typeLabel_tbg8e_7 {
  width: 170px;
  margin-right: 16px;
  text-align: right;
}

._fragmentWrapper_tbg8e_13 {
  padding: 10px 8px 0 8px;
  border: 1px solid #d6d6d6;
}

._columnSeparatorControl_tbg8e_18 {
  width: 40px;
  margin-left: 12px;
  text-align: center;
}
._editor_18wmt_1 {
  max-width: 608px;
}

._readonly_18wmt_5 {
  padding: 16px;
  background: var(--color-bg-level2);
}

._name_18wmt_10 {
  margin-bottom: 36px;
}

._configTitle_18wmt_14 {
  margin-bottom: 28px;
  line-height: 24px;
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
}
._sectionTitle_k0p6b_1 {
  font-size: var(--font-xl-B);
}

._sectionTitle_k0p6b_1 ._step_k0p6b_5 {
  font-size: var(--font-m);
}

._subtitle_k0p6b_9 {
  font-size: var(--font-m);
  line-height: 24px;
}

._headerCell_k0p6b_14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: var(--weight-regular);
  justify-content: center;
  width: 100%;
  padding: 4px 8px;
  border-right: 1px solid #ddd;
  padding-right: 25px;
}
._dropTarget_yuz53_1 {
  position: relative;
  width: 585px;
  height: 450px;
  padding: 8px;
  border: 1px dashed #000;
}

._activeDrag_yuz53_9 {
  background-color: var(--color-bg-level2);
}

._prompt_yuz53_13 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  font-size: var(--font-xl);
  text-align: center;
  line-height: 2em;
}

._browse_yuz53_24 {
  color: var(--color-text-blue);
  font-weight: var(--weight-medium);
  cursor: pointer;
}

._upload_yuz53_30 {
  position: absolute;
  bottom: 8px;
}

._progress_yuz53_35 {
  width: 100%;
  font-size: var(--font-s);
  line-height: initial;
  text-align: right;
  color: var(--color-text-gray);
}

._progressBarBorder_yuz53_43 {
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--color-bg-dark);
  border-radius: 4px;
}

._progressBar_yuz53_43 {
  height: 8px;
  border-radius: 4px;
  background: rgb(67, 47, 88);
}

._error_yuz53_57 {
  max-height: 50px;
  overflow: auto;
  word-break: break-all;
}
._sectionTitle_109ue_1 {
  font-size: var(--font-xl-B);
}

._sectionTitle_109ue_1 ._step_109ue_5 {
  font-size: var(--font-m);
}

._sectionSubtitle_109ue_9 {
  font-size: var(--font-m);
  line-height: 24px;
}

._headerCell_109ue_14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: var(--weight-regular);
  justify-content: center;
  width: 100%;
  padding: 4px 8px;
  border-right: 1px solid #ddd;
  padding-right: 25px;
}

._uploader_109ue_26 {
  margin-bottom: 20px;
}
._pageResourceUnionTableEdit_1hjp9_1 {
  margin-top: 24px;
  flex: 1 1 auto;
}

._fileListingWrapper_1hjp9_6 {
  border: 1px solid #e6e6e6;
  padding: 12px 24px;
}

._fileListTitle_1hjp9_11 {
  color: #818181;
  margin-bottom: 12px;
}

._fileListWrapper_1hjp9_16 {
  margin-bottom: 10px;
  flex: 1 1 auto;
}

._addButtonWrapper_1hjp9_21 {
  font-size: 16px;
  font-weight: 300;
  padding: 8px;
}

._plusWrapper_1hjp9_27 {
  font-size: 24px;
  line-height: 16px;
  font-weight: 200;
  position: relative;
  top: 2px;
  margin-right: 6px;
}

._dataSourceWrapper_1hjp9_36 {
  font-weight: 200;
}

._dataSourceName_1hjp9_40 {
  font-weight: 400;
}

._dataResourceWrapper_1hjp9_44 {
  margin-bottom: 0px;
  margin-left: 10px;
  font-weight: 200;
  flex: 1 1 auto;
}

._dataResourceName_1hjp9_51 {
  font-weight: 400;
  margin-right: 10px;
}

._dataResourceError_1hjp9_56 {
  font-weight: 400;
  color: #f00;
}

._deleteIcon_1hjp9_61 {
  cursor: pointer;
}

._doneButtonWrapper_1hjp9_65 {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 20px;
}

._dataSourceContainer_1hjp9_71 {
  padding: 16px 0px 16px 16px;
  background: var(--color-bg-level2);
}

._dataSourceLabelContainer_1hjp9_76 {
  padding-bottom: 16px;
  text-align: right;
}

._dataSourceLabel_1hjp9_76 {
  color: #888888;
  font-size: 16px;
  font-weight: 300;
  padding-right: 8px;
}

._dataSourceType_1hjp9_88 {
  color: #02044d;
  font-size: 16px;
  font-weight: 300;
  text-align: right;
}

._dataSourceFieldContainer_1hjp9_95 {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
}

._dataSourceField_1hjp9_95 {
  color: #02044d;
  font-size: 16px;
  font-weight: 400;
  padding-right: 8px;
}
._sqlBox_1jzh1_1 .CodeMirror-scroll {
  min-height: 100px;
}

._sqlBox_1jzh1_1 .CodeMirror {
  border: 1px solid var(--color-bg-level2);
}

._sqlBox_1jzh1_1 .CodeMirror-gutters {
  background-color: #dfd7d7;
}

._andBar_1jzh1_13 {
  padding: 12px 24px;
  color: #888;
}

._container_1jzh1_18 {
  padding: 16px 16px 32px 16px;
  background: var(--color-bg-level2);
}

._contentWrapper_1jzh1_23 {
  overflow-y: scroll;
  max-height: 600px;
}
._eventExpressionWidget_1nw0v_1 {
  position: relative;
  padding: 10px 24px;
  border: 1px solid #e6e6e6;
}

._deleteButtonBlock_1nw0v_7 {
  position: absolute;
  top: 20px;
  right: 20px;
}

._errorText_1nw0v_13 {
  padding: 4px 0;
  color: #f00;
}
._orBar_10yq2_1 {
  padding: 10px 24px;
  color: #888;
}

._headerArea_10yq2_6 {
  padding: 10px 0px;
}

._sqlBox_10yq2_10 .CodeMirror-scroll {
  min-height: 100px;
}

._container_10yq2_14 {
  padding: 12px 16px;
  background: var(--color-bg-level2);
}
@keyframes _ui-spinner-rotate-right_15pol_1 {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes _ui-spinner-rotate-left_15pol_1 {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

._ui-spinner_15pol_45 {
  display: inline-block;
  position: relative;
  border-radius: 100%;
  vertical-align: middle;
}
._ui-spinner_15pol_45 ._side_15pol_51 {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
._ui-spinner_15pol_45 ._side_15pol_51 ._fill_15pol_57 {
  border-radius: 999px;
  position: absolute;
  width: 100%;
  height: 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
._ui-spinner_15pol_45 ._side-left_15pol_65 {
  left: 0;
}
._ui-spinner_15pol_45 ._side-left_15pol_65 ._fill_15pol_57 {
  left: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  animation-name: _ui-spinner-rotate-left_15pol_1;
  transform-origin: 0 50%;
}
._ui-spinner_15pol_45 ._side-right_15pol_75 {
  left: 50%;
}
._ui-spinner_15pol_45 ._side-right_15pol_75 ._fill_15pol_57 {
  left: -100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  animation-name: _ui-spinner-rotate-right_15pol_1;
  transform-origin: 100% 50%;
}

._ui-spinner_15pol_45 {
  width: 26px;
  height: 26px;
  margin-left: 12px;
  background-color: rgba(180, 180, 180, 0.6);
}
._ui-spinner_15pol_45 ._side_15pol_51 ._fill_15pol_57 {
  background: #b4b4b4;
  animation-duration: 6s;
}
._ui-spinner_15pol_45:after {
  content: '';
  background: transparent;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  top: 9px;
  left: 9px;
  display: block;
}
._label_1ru81_1 {
  display: inline-block;
  padding-top: 7px;
  margin-right: 8px;
}

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

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

._sortColumn_1ru81_12 {
  display: flex;
  overflow-x: visible;
  position: relative;
  margin-bottom: 12px;
  align-items: center;
}

._sortColumn_1ru81_12:last-child {
  margin-bottom: 0px;
}

._sortColumn_1ru81_12 > *:first-child {
  margin-right: 12px;
}

._sortColumn_1ru81_12 > * {
  flex: 1;
  flex-basis: 50%;
}

._sortOrderToggle_1ru81_38 > div {
  margin-top: 5px;
}

._newColumnButton_1ru81_42 {
  text-align: left;
  padding-left: 0px;
  box-shadow: none !important;
}

._sortColumn_1ru81_12 ._directionSelector_1ru81_48 {
  max-width: 117px;
  width: 117px;
  display: flex;
  align-self: flex-end;
  align-items: flex-end;
}

._removeColumnButton_1ru81_56 {
  display: flex;
  align-items: center;
  flex: 0;
  position: absolute;
  right: -110px;
}

._removeColumnButton_1ru81_56:before {
  content: '';
  display: block;
  width: 60px;
  border-top: 2px solid gray;
  margin-right: 10px;
}

._guideLineContainer_1ru81_72 {
  flex: 1 1 auto;
  margin-top: 2px;
  margin-left: auto;
}

._guideLine_1ru81_72 {
  height: 1px;
  background: #e0e0e0;
  margin: 0 8px;
  min-width: 60px;
}

._guideLineSpacer_1ru81_85 {
  height: 1px;
  margin-left: 95px;
}

._columnDeleteButton_1ru81_90 {
  display: flex;
  flex: unset;
  align-items: center;
}
._row_urpwj_1 {
  margin-bottom: 12px;
}

._label_urpwj_5 {
  flex: 0 0 auto;
  width: 137px;
  text-align: right;
  margin-right: 30px !important;
  position: relative;
}

._label_urpwj_5._warnLabel_urpwj_13 {
  padding-bottom: 15px;
}

._labelNoExtraMargin_urpwj_17 {
  margin-right: 8px !important;
}

._numberControl_urpwj_21 {
  max-width: 110px;
}

._clusterLabel_urpwj_25 {
  margin-right: 30px !important;
}

._warn_urpwj_13 {
  border-color: var(--color-red) !important;
}

._minValueWarning_urpwj_33 {
  display: block;
  color: var(--color-red);
  font-size: var(--font-xs);
  white-space: nowrap;
  position: absolute;
  right: -197px;
  top: 26px;
}
._modal_yzhkp_1 {
  min-width: fit-content !important;
  --modal-dialog-content-overflow: auto;
  --modal-content-margin-bottom: 24px; /* mirrors top margin from title */
}
._storageProgressWidget_1srn9_1 {
  background-color: #fcf7f7;
  border: 1px solid #757575;
  padding: 12px 18px;
  min-width: 418px;
  min-height: 133px;
  line-height: 14px;
  position: relative;
  display: grid;
}

._progressInfo_1srn9_12 {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-right: 110px;
}

._progressLine_1srn9_19 {
  margin-bottom: 8px;
  height: 14px;
}

._progressWidgetTitle_1srn9_24 {
  font-size: var(--font-l);
  font-weight: var(--weight-thick);
  margin-bottom: 12px;
}

._viewDetails_1srn9_30 {
  margin-left: 16px;
  font-size: var(--font-s);
  font-weight: var(--weight-medium);
  color: #02044d;
  text-decoration: underline;
}

._cancelButton_1srn9_38 {
  color: #02044d;
  font-weight: var(--weight-thick);
  cursor: pointer;
  margin-top: auto;
}

._progress_1srn9_12 {
  position: absolute;
  display: flex;
  top: 12px;
  right: 43px;
  height: 74px;
  width: 74px;
}

._progress_1srn9_12 ._spinnerPiece_1srn9_54 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  display: block;
}

._spinnerPiece_1srn9_54._one_1srn9_69 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/001-fe83ee82.svg');
}

._spinnerPiece_1srn9_54._two_1srn9_73 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/002-f8de2422.svg');
  animation: _rotation_1srn9_1 4s reverse infinite linear;
}

._spinnerPiece_1srn9_54._three_1srn9_78 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/003-97b643c3.svg');
  animation: _rotation_1srn9_1 4s infinite linear;
}

._spinnerPiece_1srn9_54._four_1srn9_83 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/004-fe355dea.svg');
  animation: _rotation_1srn9_1 4s reverse infinite linear;
}

._spinnerPiece_1srn9_54._five_1srn9_88 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/005-5590d3c5.svg');
  animation: _rotation_1srn9_1 4s infinite linear;
}

@keyframes _rotation_1srn9_1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
._container_k14r3_1 {
  padding: 12px 16px;
  background: var(--color-bg-level2);
}

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

._statusContainer_k14r3_6:not(:last-child) {
  margin-bottom: 16px;
}

._warningIcon_k14r3_15 {
  margin-right: 12px;
  transform: translateY(-2px);
}

._error_k14r3_20 {
  color: var(--color-error-text);
}

._statusTable_k14r3_24 {
  max-width: 50%;
  flex-basis: 50%;
}

._statusTableFull_k14r3_29 {
  max-width: 100%;
}

._statusTable_k14r3_24 td {
  line-height: 24px;
  padding-right: 12px;
  vertical-align: baseline;
}

._statusTable_k14r3_24 td:first-of-type {
  text-align: right;
  width: 127px;
}

._locationActionButton_k14r3_44 {
  margin: -2px 0px 0px 9px;
}

._cancelButton_k14r3_48,
._linkButton_k14r3_49 {
  margin-left: 1ex;
  font-weight: var(--weight-medium);
  color: var(--color-text-blue);
  cursor: pointer;
}

._cancelButton_k14r3_48:hover,
._linkButton_k14r3_49:hover {
  text-decoration: underline;
}

._linkButtonContainer_k14r3_61 {
  justify-content: flex-end;
  padding-top: 10px;
}

._deleteButton_k14r3_66 {
  vertical-align: middle;
}

._actionRow_k14r3_70 {
  display: flex;
  flex-direction: row;
  line-height: 32px;
}

._actionSelector_k14r3_76 {
  margin-right: 24px;
}

._storageInfo_k14r3_80 {
  line-height: 28px;
  display: flex;
  align-items: center;
}

._progressWidgets_k14r3_86 {
  margin-top: 20px;
  display: flex;
}
._failedContainer_ttkl3_1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

._failedIcon_ttkl3_7 {
  width: 15px;
  height: 14px;
  margin-right: 4px;
  margin-top: 1px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/yellow_alert-9d75ee29.svg');
}
._failedText_ttkl3_14 {
  margin-bottom: -4px;
  color: var(--color-orange) !important;
}
._fittedAt_19pmj_1 a {
  color: var(--color-text-blue);
  text-decoration: underline;
}

._fitBlock_19pmj_6 {
  display: flex;
}

._fitTime_19pmj_10 {
  display: block;
  box-sizing: border-box;
  margin-top: 2px;
}

._fitSync_19pmj_16 {
  display: block;
  cursor: pointer;
  padding-left: 5px;
  box-sizing: border-box;
  margin-top: 10px;
}

._fitSyncSingleRow_19pmj_24 {
  cursor: pointer;
  padding-left: 5px;
}

._fittingInProgress_19pmj_29 {
  cursor: pointer;
}

._fitProgressStatus_19pmj_33 ._stopIcon_19pmj_33,
._fitProgressStatus_19pmj_33:hover ._syncIcon_19pmj_34 {
  display: none;
}

._fitProgressStatus_19pmj_33:hover ._stopIcon_19pmj_33,
._fitProgressStatus_19pmj_33 ._syncIcon_19pmj_34 {
  display: inline-block;
}

._reloadWidget_19pmj_43 {
  justify-content: center;
  margin: 0 0 -5px;
}

._immovable_19pmj_48 {
  position: relative;
}
._tableFieldsList_kfwq2_1 {
  padding: 0px 0px;
}

._subHeader_kfwq2_5 {
  display: flex;
}

._searchBox_kfwq2_9 {
  flex: 1 0;
  margin: 24px 0 0 0;
}

._addButton_kfwq2_14 {
  text-align: right;
  margin-top: 24px;
  margin-left: auto;
  font-size: var(--font-m);
  display: block;
}

._error_kfwq2_22 {
  margin-top: 20px;
  color: red;
  white-space: pre;
  overflow: auto;
}

._issue_kfwq2_29 {
  color: var(--color-error-text) !important;
  line-height: 16px;
  font-size: var(--font-s);
}

._nameCell_kfwq2_35 {
  min-width: 200px;
  max-width: 400px;
}

._definitionCell_kfwq2_40 {
  min-width: 500px;
}

._definitionPre_kfwq2_44 {
  margin: 0px;
}

/* The dataType cell and it's contents need to be able to overflow for the tree to be visible. */
._dataTypeCell_kfwq2_49,
._dataTypeCell_kfwq2_49 * {
  overflow: visible !important;
  max-width: 200px;
}

._nullableCell_kfwq2_55 {
  max-width: 150px;
}

._fittingCell_kfwq2_59 {
  max-width: 200px;
}

._actionsRow_kfwq2_63 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}
._historyRow_1m57x_1 {
  align-items: center;
}

._versionItem_1m57x_5 {
  text-align: center;
}

._bulleted_1m57x_9 {
  list-style: inside;
  margin-left: 2px;
}

._unbulleted_1m57x_14 {
  list-style: none;
}

._diffButton_1m57x_18 {
  display: flex;
  justify-content: end;
}
._row_1m2v8_1 {
  display: flex;
  margin-bottom: 12px;
}
._exportDialog_t92qv_1 ._row_t92qv_1 {
  display: flex;
  margin-bottom: 12px;
}
._exportDialog_t92qv_1 ._row_t92qv_1 label,
._label_t92qv_6 {
  margin-right: 16px !important;
  width: 160px !important;
  text-align: right;
}

._exportDialog_t92qv_1 ._row_t92qv_1 label ~ div[style*='width: 14px;'] {
  display: none !important; /*  Hide the spacers */
}

._exportDialog_t92qv_1 div[class*='select--'],
._exportDialog_t92qv_1 ._row_t92qv_1 input {
  max-width: 195px;
  width: 100%;
  flex: 1;
}

._exportDialog_t92qv_1 div[class*='inputY-'] {
  flex: 1;
}

._exportDialog_t92qv_1 div[class^='arrow--'] {
  margin-left: auto;
}

._nameInput_t92qv_31 input {
  padding: 4px 8px;
}

._exportDialog_t92qv_1 ._fileTypeSelectField_t92qv_35 {
  flex: 1;
  overflow-x: hidden;
}

._exportDialog_t92qv_1 div[class*='fileFormatWidget'] {
  margin-right: 40px;
}

._exportDialog_t92qv_1 div[class*='fileFormatWidget'] > div:first-child {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 18px;
}

._exportDialog_t92qv_1 div[class*='fileFormatWidget'] div[class*='formElement--'] {
  width: 100%;
  flex: 1;
}

._exportDialog_t92qv_1 div[class*='fileFormatWidget'] div[class*='select--'],
._exportDialog_t92qv_1 div[class*='fileFormatWidget'] div[class*='inputY-'] {
  max-width: 95px;
  width: 100%;
}

._exportDialog_t92qv_1 ._naturalSize_t92qv_61 div[class*='select--'] {
  flex: unset !important; /* always unset these on naturalSize elements */
  width: unset !important;
}
._field_k4ny0_1 {
  margin-bottom: 15px;
}
._versionSelectContainer_dlu32_1 {
  display: flex;
}

._versionSelect_dlu32_1 {
  width: 47%;
}

._versionSelectRightMargin_dlu32_9 {
  margin-left: 6%;
}

._detailsText_dlu32_13 {
  margin-bottom: 8px;
}

._diffContainer_dlu32_17 {
  margin-top: 8px;
}
._tableFieldsList_152a3_1 {
  padding: 0px 0px;
}

._subHeader_152a3_5 {
  display: flex;
}

._searchBox_152a3_9 {
  flex: 1 0;
  margin: 24px 0 0 0;
}

._addButton_152a3_14 {
  text-align: right;
  margin-top: 24px;
  margin-left: auto;
  font-size: var(--font-m);
  display: block;
}

._error_152a3_22 {
  margin-top: 20px;
  color: red;
  white-space: pre;
  overflow: auto;
}

/* .issue {
    color: var(--color-error-text) !important;
    line-height: 16px;
    font-size: var(--font-s);
  } */

/* The dataType cell and it's contents need to be able to overflow for the tree to be visible. */
._dataTypeCell_152a3_36,
._dataTypeCell_152a3_36 * {
  overflow: visible !important;
}

._actionsRow_152a3_41 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}

._dataTypeCell_152a3_36 {
  display: flex;
  align-items: center;
  min-width: 197px;
}

._indexColumn_152a3_54 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 0px !important;
  max-width: 60px;
  padding-right: 34px !important;
}

._indexColumn_152a3_54 > span {
  margin-right: -14px;
}

._metadataColumn_152a3_67 {
  padding: 0px !important;
  flex: 3 !important;
  min-width: 395px;
  margin-right: 25px !important;
  align-items: center;
}

._nameColumn_152a3_75 {
  flex: 2 !important;
  display: flex;
  align-items: center;
}

._distributionColumn_152a3_81 {
  min-width: 166px;
  display: flex;
  align-items: center;
}

._nullableColumn_152a3_87 {
  display: flex;
  align-items: center;
}

._fittingColumn_152a3_92 {
  display: flex;
  align-items: center;
}

._clickForDetailsContainer_152a3_97 {
  height: 84px;
  display: flex;
  align-items: center;
}

._metadataSummaryCell_152a3_103 {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

._metadataSummaryColumnA_152a3_109 {
  flex: 1.5;
  margin-right: 44px;
}

._metadataSummaryColumnB_152a3_114 {
  flex: 1;
}

._metadataSummaryRow_152a3_118 {
  display: flex;
  border-bottom: 1px solid #eae5e5;
  min-height: 26px;
  align-items: center;
}

._metadataSummaryLabel_152a3_125 {
  display: block;
  font-weight: var(--weight-medium);
  margin-right: auto;
}

._metadataSummaryValue_152a3_131 {
  display: block;
  margin-left: 16px;
}

._distributionGraphContainer_152a3_136 {
  margin-top: -10px;
  margin-bottom: -20px;
}

._noDataIndicator_152a3_141 {
  height: 1px;
  width: 13px;
  background-color: #050505;
}

.header ._metadataColumn_152a3_67 {
  pointer-events: none;
  cursor: default !important;
}

.header ._distributionColumn_152a3_81 {
  pointer-events: none;
  cursor: default !important;
}

._generateSummaryButton_152a3_157 {
  border-radius: 5px;
  border: 1px solid black;
  background-color: white;
  font-size: 18;
}

._gridRow_152a3_164 {
  height: 136px;
}
._contentVerticalSpacing_102p3_1 {
  margin-top: 48px;
}

._flexOuterContainer_102p3_5 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  /* Accounts for the container padding */
  margin: -45px -40px -40px -40px;
}

._flexInnerContainer_102p3_16 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: calc(100% - 80px);
  margin: 40px;
}

._diffButton_102p3_24 {
  cursor: pointer;
}
._tableTestList_1sj7m_1 {
  padding: 0px 0px;
}

._subHeader_1sj7m_5 {
  display: flex;
}

._searchBox_1sj7m_9 {
  flex: 1 0;
  margin: 24px 0 0 0;
}

._addButton_1sj7m_14 {
  text-align: right;
  margin-top: 24px;
  margin-left: auto;
  font-size: var(--font-m);
  display: block;
}

._actionsRow_1sj7m_22 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}

._noTestsContainer_1sj7m_29 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

._passedWidget_1sj7m_37 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

._passedWidgetIcon_1sj7m_43 {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  margin-bottom: 1px;
  margin-top: 1px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/green_checkbox-99893882.svg');
  background-repeat: no-repeat;
}

._failedWidget_1sj7m_53 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 120px;
}

._failedWidgetText_1sj7m_60 {
  color: var(--color-orange) !important;
}

._failedWidgetIcon_1sj7m_64 {
  width: 15px;
  height: 14px;
  margin-right: 12px;
  margin-bottom: 2px;
  margin-top: 1px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/yellow_alert-9d75ee29.svg');
  background-repeat: no-repeat;
}
._row_1qnvl_1 {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
._summaryTable_1o1hs_1 {
  display: flex;
}

._summaryContainerRow_1o1hs_5 {
  display: flex;
  margin-bottom: 48px;
}

._summaryRow_1o1hs_10 {
  display: flex;
  border-bottom: 1px solid #eae5e5;
  min-height: 24px;
  margin-bottom: 12px;
}

._summaryColumn_1o1hs_17 {
  max-width: 250px;
  margin-right: 92px;
}

._summaryRowLabel_1o1hs_22 {
  display: block;
  font-weight: var(--weight-medium);
  margin-right: 16px;
  white-space: nowrap;
}

._summaryRowValue_1o1hs_29 {
  display: block;
  text-align: right;
  width: 100%;
  white-space: nowrap;
}

._summaryTableHeader_1o1hs_36 {
  display: block;
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
  margin-bottom: 24px;
  color: var(--color-text-blue);
}

._sampleSizeInfo_1o1hs_44 {
  display: block;
  font-weight: var(--weight-small);
  margin-right: 16px;
  white-space: pre-wrap;
}

._distributionColumn_1o1hs_51 {
  max-width: 440px;
  background-color: white;
  margin-left: -26px;
  padding: 12px;
}

._distributionColumn_1o1hs_51 ._summaryTableHeader_1o1hs_36 {
  font-size: var(--font-m);
  color: black;
  margin-bottom: 12px;
}

._title_1o1hs_64,
._subtitle_1o1hs_65 {
  color: #333;
  font-size: var(--font-l);
  font-weight: var(--weight-regular);
  margin: 18px 0 10px;
  border-bottom: 1px solid #ccc;
}

._title_1o1hs_64 {
  font-size: var(--font-xl);
  margin-bottom: 16px;
}

._summaryTable_1o1hs_1 td,
._percentileTable_1o1hs_79 td {
  border: 1px solid #ccc;
  padding: 10px;
}

._summaryTable_1o1hs_1 td:first-of-type,
._percentileTable_1o1hs_79 td:first-of-type {
  font-weight: var(--weight-medium);
}

._summaryTable_1o1hs_1 td:last-of-type {
  text-align: right;
  min-width: 120px;
}

._percentileTable_1o1hs_79 td:last-of-type {
  text-align: right;
  min-width: 80px;
}
._smallLabel_1bbn9_1 {
  font-weight: var(--weight-regular);
  font-size: var(--font-s);
  color: #818181;
}

._name_1bbn9_7 {
  font-weight: var(--weight-regular);
  font-size: var(--font-s);
  color: #191919;
}

._row_1bbn9_13 {
  margin-bottom: 24px;
}

._definitionContainer_1bbn9_17 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

._definitionLabel_1bbn9_23 {
  width: 98px;
  height: 24px;
  padding-top: 2px;
  text-align: right;
  margin-right: 30px;
}

._definitionContainerRight_1bbn9_31 {
}

._definitionHeader_1bbn9_34 {
  display: flex;
  align-items: flex-start;
  font-size: var(--font-m);
  margin-bottom: 2px;
}

._definitionHeaderText_1bbn9_41 {
  font-size: var(--font-m);
  height: 24px;
  padding-top: 2px;
}

._refreshSummaryContainer_1bbn9_47 {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}

._refreshSummaryContainer_1bbn9_47 span {
  margin-right: 9px;
}

._generateSummaryButton_1bbn9_57 {
  border-radius: 5px;
  border: 1px solid black;
  background-color: white;
  font-size: 18;
}

._summarySectionHeader_1bbn9_64 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 48px;
}

._readOnlyDef_1bbn9_70 {
  border: 1px solid var(--color-mid-border);
  background-color: var(--color-bg-level2);
  padding: 2px 12px;
  margin: 0px;
}
._sqlBox_1dydj_1 .CodeMirror-scroll {
  min-height: 100px;
}

._sqlBox_1dydj_1._disabled_1dydj_5 .CodeMirror {
  min-height: auto;
}

._tableError_1dydj_9 {
  color: #f00;
}

._fieldName_1dydj_13 {
  display: inline-block;
  width: 130px;
  margin-right: 10px;
  text-align: right;
}

._errorArea_1dydj_20 {
  color: #cc2222;
  flex: 0 1 auto;
  font-size: var(--font-s);
}

._sectionHeader_1dydj_26 ._step_1dydj_26 {
  font-size: var(--font-m);
}

._andBar_1dydj_30 {
  padding: 10px 24px;
  color: #888;
}
._pageTableEdit_gqb2h_1 {
  margin-top: 24px;
  flex: 1 1 auto;
}

._attributeList_gqb2h_6 {
  width: 800px;
  background-color: #fff;
  padding: 24px;
  margin: 0 auto 20px auto;
}
._typeField_uf6w7_1 {
  width: 160px;
}

._nameField_uf6w7_5 {
  width: 150px;
}

._keyTypeLabel_uf6w7_9 {
  flex: 0 0 auto;
  width: 78px;
  text-align: right;
}

._addFieldButton_uf6w7_15 {
  color: var(--color-text-blue);
  font-size: var(--font-m);
  cursor: pointer;
}

._row_uf6w7_21 {
  flex-wrap: nowrap;
  margin: 0;
}

._separator_uf6w7_26 {
  flex: 1 1 100%;
  align-self: flex-start;
  margin: 16px 0 0 8px;
}

._separatorLine_uf6w7_32 {
  height: 1px;
  min-width: 16px;
  border-top: 1px solid #ccc;
}

._delete_uf6w7_38 {
  margin-left: 8px;
  transform: translateY(3px);
}
._verticallyCenteredColumn_dw1qt_1 {
  display: flex;
  align-items: center;
}

._addColumnWrapper_dw1qt_6 {
  display: inline-block;
  margin-left: 35px;
  padding: 16px 30px;
}

._addColumn_dw1qt_6 {
  color: #a9a9a9;
  cursor: pointer;
}

._eventRow_dw1qt_17 {
  align-items: center;
}

._formElement_dw1qt_21 {
  margin-bottom: 0px;
}
._radioContainer_cc0a9_1 {
  margin-bottom: 13px;
}

._radioItem_cc0a9_5 {
  margin-bottom: 10px;
}

._radioContainer_cc0a9_1 input[type='radio'] {
  display: none;
}

._radioContainer_cc0a9_1 input[type='radio']:checked + label:before {
  background-color: black;
}

._radioContainer_cc0a9_1 input[type='radio'] + label:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 3px;
  margin-right: 3px;
  background-clip: content-box;
  border: 2px solid black;
  background-color: transparent;
  border-radius: 50%;
}

._radioContainer_cc0a9_1 label {
  display: flex;
  align-items: center;
}

._radio_cc0a9_1 {
  padding-left: 10px;
  margin-top: 1px;
}
._orBar_4ohxn_1 {
  padding: 10px 24px;
  color: #888;
}

._headerArea_4ohxn_6 {
  padding: 10px 0px;
}

._eventExpressionWidgetsContainer_4ohxn_10._error_4ohxn_10 {
  border-color: rgba(204, 34, 34, 0.7);
}

._expressionTab_4ohxn_14 .CodeMirror {
  height: 300px;
}
._sqlBox_z1i09_1 .CodeMirror,
._sqlBox_z1i09_1 .CodeMirror-sizer {
  min-height: 160px !important;
}
._loadSummary_2awox_1,
._columnSummary_2awox_2 {
  margin-top: 12px;
}

._reloadSummaryButton_2awox_6 {
  margin-bottom: 24px;
}
._row_1m2v8_1 {
  display: flex;
  margin-bottom: 12px;
}
._snapshotsWidget_w00rz_1 {
  margin-top: 48px;
}

._tabbedContainer_w00rz_5 {
  margin-top: 48px;
}
._container_j5g1z_1 {
  padding: 12px 16px;
  background: var(--color-bg-level2);
}

._saveCancelButtons_j5g1z_6 {
  margin-top: 16px;
  margin-left: 6px;
  display: flex;
}

._formFieldRow_j5g1z_12 {
  font-size: var(--font-m);
}

._resultsContainer_j5g1z_16 {
  margin-top: 16px;
}

._failureTableReason_j5g1z_20 {
  margin-bottom: 16px;
}

._formFieldLabel_j5g1z_24 {
  width: 90px;
  text-align: right;
}

._testDescription_j5g1z_29 {
  margin-left: 120px;
  margin-bottom: 32px;
}

._tabVerticalSpacing_j5g1z_34 {
  margin-top: 48px;
}
._conditionLabel_14rg7_1 {
  align-self: flex-start;
  margin-top: 6px;
}
._sqlBox_q5bb5_1 {
  margin-left: 120px;
  margin-top: 4px;
}
._sqlBox_q5bb5_1 .CodeMirror,
._sqlBox_q5bb5_1 .CodeMirror-sizer {
  min-height: 160px !important;
}
._dividerLine_ns67u_1 {
  height: 1px;
  width: 100%;
  background-color: #cccccc;
  margin-bottom: 30px;
  margin-top: -2px;
}

._progressContainer_ns67u_9 {
  margin-top: 54px;
}
._eventHideShow_12ro2_1 {
  min-width: 36px;
  border-left: 1px solid;
  cursor: pointer;
}

._actionsRow_12ro2_7 {
  display: flex;
  position: relative;
}

._filterMatch_12ro2_12 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._actionsRow_10par_1 {
  display: flex;
  position: relative;
  min-height: 33px;
}

._filterMatch_10par_7 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._row_14y1q_1 {
  margin: 12px 0;
}

._actionsRow_14y1q_5 {
  display: flex;
  position: relative;
}

._filterMatch_14y1q_10 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._header_1chz2_1 {
  margin-bottom: 10px;
}

._actionsRow_1chz2_5 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}
._pageExportedTables_ihuvs_1 {
  position: relative;
}
._header_ihuvs_4 {
  width: 800px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 24px auto 40px auto;
  min-height: 46px;
}
._header_ihuvs_4 ._center_ihuvs_12 {
  flex: 1 1 auto;
}
._header_ihuvs_4 ._right_ihuvs_15 {
  width: 100px;
  text-align: right;
}

._exportProgressTitle_ihuvs_20 {
  margin-bottom: 24px;
  color: var(--color-text-blue);
  cursor: default;
  font-size: var(--font-xl);
  font-weight: 500;
  line-height: 1.8;
}

._exportProgressContainer_ihuvs_29 {
  font-size: var(--font-s);
  padding-bottom: 24px;
}

/* .exportedTableRow {
  width: 720px;
  margin: auto;
  border-top: 1px solid #eee;
  padding: 10px 0 10px 0px;
  display: flex;
  align-items: top;
}
.exportedTableRow .leftSection {
  width: 560px;
}
.exportedTableRow .rightSection {
  width: 140px;
  min-width: 140px;
  padding-right: 10px;
  font-size: var(--font-xs);
  font-weight: var(--weight-regular);
  color: #818181;
  line-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
} */
/* .name {
  padding-right: 6px;
  margin-bottom: 6px;
  font-size: var(--font-m);
  font-weight: var(--weight-medium);
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
} */
/* .details {
  padding-right: 6px;
  margin-bottom: 6px;
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
  color: #333;
} */
/* .error {
  padding-right: 6px;
  margin-bottom: 6px;
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
  color: #f00;
  text-overflow: ellipsis;
  overflow: hidden;
} */

._datagrid_ihuvs_83 ._header_ihuvs_4,
._datagrid_ihuvs_83 ._row_ihuvs_84 div {
  padding: 20px 20px 2px 24px;
}

._pageHeader_ihuvs_88 {
  margin-bottom: 10px;
}

._actionsRow_ihuvs_92 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}

._actionButton_ihuvs_99 {
  margin-right: 8px;
}
._editor_j6eti_1 {
  max-width: 608px;
}
._createdDate_usccc_1 {
  line-height: 24px;
  color: var(--color-text-gray);
  font-size: var(--font-s);
}

._container_usccc_7 {
  padding: 14px 0 0 20px;
}

._container_usccc_7 > div {
  padding-bottom: 14px;
}

._row_usccc_15 {
  display: flex;
  align-items: center;
  min-height: 47px;
}

._row_usccc_15 > div {
  margin-bottom: 12px;
  margin-right: 12px;
}
._titleMenu_18b1s_1 ._select_18b1s_1 {
  margin-right: 0;
}

._container_18b1s_5 {
  padding: 12px 16px;
  background: var(--color-bg-level2);
  margin-bottom: 48px;
}

._searchBox_18b1s_11 {
  flex: 1 0;
  margin: 24px 0 0 0;
}

._propertiesMenu_18b1s_16 {
  display: inline-block;
}

._propertyName_18b1s_20:hover {
  cursor: pointer;
  text-decoration: underline;
}

._rankCell_18b1s_25 {
  max-width: 50px;
}

/* The dataType cell and it's contents need to be able to overflow for the tree to be visible. */
._dataTypeCell_18b1s_30,
._dataTypeCell_18b1s_30 * {
  overflow: visible !important;
}

._definitionCell_18b1s_35 {
  min-width: 500px;
}

._actionsRow_18b1s_39 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}

._propertiesSection_18b1s_46 {
  margin-top: 0px;
}
._tabbedChartGrid_fg9hu_1 {
  flex: 1 1 auto;
}

._tcgHeader_fg9hu_5 {
  margin-bottom: 40px;
}

._right_fg9hu_9 {
  margin-left: auto;
  text-align: right;
}

._tabs_fg9hu_14 {
  margin-bottom: 40px;
}

._tcgHeaderControls_fg9hu_18 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

._actionsRow_fg9hu_24 {
  display: flex;
  position: relative;
}

._filterMatch_fg9hu_29 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._actionsRow_1em2p_1 {
  display: flex;
  position: relative;
}

._filterMatch_1em2p_6 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._row_7xjal_1 {
  margin-bottom: 20px;
}
._alertContacts_af63l_1 {
  flex: 1 1 auto;
}

._contactList_af63l_5 {
  padding: 0px 0px;
}

._contact_af63l_5 {
  cursor: pointer;
}
._contact_af63l_5:hover {
  text-decoration: underline;
}

._alertContactsHeader_af63l_16 ._withoutDescription_af63l_16 {
  padding-bottom: 0px;
}

._header_af63l_20 {
  margin-bottom: 10px;
}

._actionsRow_af63l_24 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}

._addContactButton_af63l_31,
._addContactButton_af63l_31 button {
  height: 28px;
}
._error_mfuu7_1 {
  color: #f00;
  padding: 10px 0;
}

._formLabel_mfuu7_6 {
  text-align: right;
  width: 175px;
}

._conditionLabel_mfuu7_11 {
  align-self: flex-start;
  margin-top: 16px;
}

._noConditions_mfuu7_16 {
  margin-top: 11px;
}
._container_1tn8r_1 {
  padding: 12px 16px;
  background: var(--color-bg-level2);
  margin-bottom: 48px;
}
._titleMenu_b7e3x_1 ._select_b7e3x_1 {
  margin-right: 0;
}

/* .titleMenu button {
  border: none !important;
  padding: 0;
  color: #333 !important;
  font-size: var(--font-s);
} */

._searchBox_b7e3x_12 {
  flex: 1 0;
  margin: 24px 0 0 0;
}

._addButton_b7e3x_17 {
  text-align: right;
  margin-top: 24px;
  margin-left: auto;
}

._addButton_b7e3x_17 button {
  height: 28px;
}

._propertiesMenu_b7e3x_27 {
  display: inline-block;
}

._propertyName_b7e3x_31:hover {
  cursor: pointer;
  text-decoration: underline;
}

._lastCached_b7e3x_36 {
  display: flex;
}

._refTableName_b7e3x_40 {
  cursor: 'pointer';
  font-size: 16px;
  font-weight: 400;
  padding: 8px 0 6px;
}

._subHeader_b7e3x_47 {
  display: flex;
}

._fittedAt_b7e3x_51 a {
  color: var(--color-text-blue);
  text-decoration: underline;
}

._fitBlock_b7e3x_56 {
  display: flex;
}

._fitTime_b7e3x_60 {
  display: block;
  box-sizing: border-box;
}

._fitSync_b7e3x_65 {
  display: block;
  cursor: pointer;
  padding-left: 5px;
  box-sizing: border-box;
  margin-top: 10px;
}

._snapshotStatus_b7e3x_73 {
  display: flex;
  justify-content: space-between;
}

._rankCell_b7e3x_78 {
  max-width: 50px;
}

/* The dataType cell and it's contents need to be able to overflow for the tree to be visible. */
._dataTypeCell_b7e3x_83,
._dataTypeCell_b7e3x_83 * {
  overflow: visible !important;
}

._definitionCell_b7e3x_88 {
  min-width: 500px;
}

._actionsRow_b7e3x_92 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}

._propertiesSection_b7e3x_99 {
  margin-top: 0px;
}

._historyList_b7e3x_103 {
  margin-top: 48px;
}
._documentIcon_9bkin_1 {
  --default-icon: url(
    '../../../images/documents/document-simple.svg',
    fill:#757575
  );
  position: relative;
  width: var(--document-icon-width, 20px);
  height: var(--document-icon-height, 20px);
  font-size: var(--font-s);
  line-height: 20px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--document-tab-icon-active, var(--default-icon));
}

._index_9bkin_17 {
  position: var(--document-icon-position, static);
  top: var(--document-icon-top, inherit);
}
._referenceFeedbackWidget_1ctyj_1 {
  position: absolute;
  width: 80px;
  height: 16px;
  left: -80px;
  display: flex;
  justify-content: flex-end;
}

._referenceFeedbackWidget_1ctyj_1._dim_1ctyj_10 {
  opacity: 0.5;
}

._referenceFeedbackButton_1ctyj_14 {
  height: 16px;
  width: 15px;
  cursor: pointer;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 8px;
}

._thumbsUp_1ctyj_25 {
  top: -2px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/thumbsUp-gray-6d051e11.svg');
}

._thumbsUp_1ctyj_25._selected_1ctyj_30,
._thumbsUp_1ctyj_25:hover {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/thumbsUp-green-4bbab065.svg');
}

._thumbsDown_1ctyj_35 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/thumbsDown-gray-21c71a54.svg');
  top: 2px;
}

._thumbsDown_1ctyj_35._selected_1ctyj_30,
._thumbsDown_1ctyj_35:hover {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/thumbsDown-red-187c2f14.svg');
}
._settableAtom_1ax3m_1 {
  --dropdown-arrow-display: none;
  padding: 6px;
  margin-bottom: 10px;
}

._settableAtom_1ax3m_1._selectMode_1ax3m_7 {
  outline: 2px solid #cae2ff;
}

._settableAtom_1ax3m_1._selectMode_1ax3m_7 * {
  pointer-events: none;
}

._settableAtom_1ax3m_1._selectMode_1ax3m_7:hover {
  outline: 2px solid #4a90e2;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

._settableAtom_1ax3m_1:last-child {
  margin-bottom: 24px;
}

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

._inputProperty_1ax3m_29,
._checkboxProperty_1ax3m_24 {
  margin-top: var(--input-property-margin-top, 0);
  margin-bottom: var(--input-property-margin-bottom, 0);
}

._leafCheckboxLabel_1ax3m_35 {
  padding-left: 8px;
  line-height: 16px;
  color: var(--color-text-black);
  font-size: var(--font-s);
  font-weight: var(--weight-regular);
}

._leafInputLabel_1ax3m_43 {
  text-transform: uppercase;
  font-size: var(--font-xs);
  color: var(--color-text-gray);
}
/* TODO: This is duplicated in EntityProperties */
._referenceLink_1ax3m_49 {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 4px;
  align-items: center;
  cursor: pointer;
  position: relative;
}
._referenceLink_1ax3m_49:hover {
  text-decoration: underline;
}

._referenceItemHighlighted_1ax3m_61 {
  background: #b2ffe6;
}

._linkText_1ax3m_65 {
  flex: 1 1 0;
  margin-right: 8px;
  padding: 2px 4px;
  font-size: var(--font-s);
}

._linkText_1ax3m_65 ._selected_1ax3m_72 {
  background: #b2ffe6;
  margin-top: 0;
  margin-bottom: 0;
}

._referencesHeaderText_1ax3m_78 {
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-gray);
  vertical-align: middle;
  padding-top: 2px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

._referenceList_1ax3m_89 {
  list-style-type: none;
  margin-bottom: 4px;
  padding-left: 0px;
  margin-top: 0px;
  width: 100%;
}

._referencesHeader_1ax3m_78 {
  display: flex;
}

._referencesHeaderTooltip_1ax3m_101 {
  font-size: var(--font-s);
  margin-left: 4px;
}

._referencesHeaderNoIcon_1ax3m_106 {
  width: 12px;
  height: 14px;
  margin-right: 8px;
}

._referencesHeaderDocIcon_1ax3m_112 {
  width: 12px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
  background: no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/document-tab-11901b7f.svg');
}

._referencesHeaderTableIcon_1ax3m_121 {
  width: 13px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
  background: no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/table-reference-c59a4063.svg');
}

._linkIcon_1ax3m_130 {
  width: 16px;
  height: 10px;
  margin-right: 4px;
  vertical-align: middle;
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}

._linkIcon5CA2FF_1ax3m_139 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%235ca2ff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
._linkIconC60644_1ax3m_142 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%23c60644' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
._linkIconFF8C00_1ax3m_145 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%23ff8c00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
._linkIconFFD100_1ax3m_148 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%23ffd100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
._linkIcon2291A1_1ax3m_151 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%232291a1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
._linkIcon04DDEB_1ax3m_154 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%2304ddeb' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
._linkIcon9269F2_1ax3m_157 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%239269f2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
._linkIcon94008C_1ax3m_160 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='10' fill='%2394008c' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3.036a3.5 3.5 0 01-.308 6.959L12.5 10h-5a3.5 3.5 0 01-.68-6.934l.18-.03v2.05a1.5 1.5 0 00.356 2.907L7.5 8h5l.144-.007a1.5 1.5 0 00.488-2.854l-.131-.053v-2.05zM8.5 0A3.5 3.5 0 019 6.964v-2.05a1.5 1.5 0 00-.356-2.907L8.5 2h-5A1.5 1.5 0 003 4.915v2.05A3.5 3.5 0 013.5 0h5z' fill-rule='nonzero'/%3E%3C/svg%3E");
}

/* TODO: This is duplicated */
._noteIcon_1ax3m_165 {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  vertical-align: middle;
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' stroke='%23000' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon5CA2FF_1ax3m_174 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%235ca2ff' stroke='%235ca2ff' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIconC60644_1ax3m_177 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%23c60644' stroke='%23c60644' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIconFF8C00_1ax3m_180 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%23ff8c00' stroke='%23ff8c00' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIconFFD100_1ax3m_183 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%23ffd100' stroke='%23ffd100' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon2291A1_1ax3m_186 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%232291a1' stroke='%232291a1' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon04DDEB_1ax3m_189 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%2304ddeb' stroke='%2304ddeb' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon9269F2_1ax3m_192 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%239269f2' stroke='%239269f2' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon94008C_1ax3m_195 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' fill='%2394008c' stroke='%2394008c' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='none' stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' stroke='none' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}

._noteInputContainer_1ax3m_199 {
  display: flex;
}

._noteInput_1ax3m_199 {
  flex: 1 1 auto;
  font-size: var(--font-s);
  line-height: 1.3em;
}

._showHideReferences_1ax3m_209 {
  margin: 4px 0 12px 0;
}
._showHideReferences_1ax3m_209 a {
  font-size: var(--font-xs);
  line-height: var(--font-xs);
  color: #0082e6;
}

._references_1ax3m_78 {
  margin: 8px 0 0 24px;
}
._references_1ax3m_78:empty {
  margin-top: 0;
}

._criteriaNote_1ax3m_225 {
  margin-bottom: 8px;
}
._addCriteriaNote_1ax3m_228 {
  visibility: hidden;
  line-height: 32px;
  margin-left: 24px;
}
._settableAtom_1ax3m_1:hover ._addCriteriaNote_1ax3m_228 {
  visibility: visible;
}
._addCriteriaNote_1ax3m_228 a {
  font-size: var(--font-xs);
  color: #0082e6;
}
._noCriteriaNote_1ax3m_240 {
  margin-bottom: 24px;
}

._propertyMenu_1ax3m_244 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/propertyMenu-1de92810.svg');
  vertical-align: middle;
}

._propertyInput_1ax3m_254 {
  font-size: var(--font-m);
  color: var(--color-text-black);
}

._placeholderTextAreaText_1ax3m_259 {
  margin-bottom: 8px;
  color: var(--color-text-gray);
}

._notePlaceholder_1ax3m_264,
._propertyInput_1ax3m_254 input::placeholder {
  font-size: var(--font-s) !important;
  line-height: 1.3em !important;
}

._noteDoneButton_1ax3m_270 {
  margin-right: 24px;
  font-size: var(--font-s);
  font-weight: 400;
  color: #0082e6;
  cursor: pointer;
  text-align: right;
}

._checkboxIcon_1ax3m_279 {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background: no-repeat center;
  background-position-y: 1px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon5CA2FF_1ax3m_288 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%235ca2ff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIconC60644_1ax3m_291 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23c60644' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIconFF8C00_1ax3m_294 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23ff8c00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIconFFD100_1ax3m_297 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23ffd100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon2291A1_1ax3m_300 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%232291a1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon04DDEB_1ax3m_303 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%2304ddeb' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon9269F2_1ax3m_306 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%239269f2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon94008C_1ax3m_309 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%2394008c' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}

._xIcon_1ax3m_313 {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background: no-repeat center;
  background-position-y: 1px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon5CA2FF_1ax3m_322 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%235ca2ff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIconC60644_1ax3m_325 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%23c60644' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIconFF8C00_1ax3m_328 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%23ff8c00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIconFFD100_1ax3m_331 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%23ffd100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon2291A1_1ax3m_334 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%232291a1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon04DDEB_1ax3m_337 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%2304ddeb' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon9269F2_1ax3m_340 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%239269f2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon94008C_1ax3m_343 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%2394008c' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._otherBooleanValues_1ax3m_347 {
  display: flex;
}

._referenceDocumentIcon_1ax3m_351 {
  float: left;
  margin-right: 8px;
}
._section_j3fyd_1 {
  background: var(--collapsible-section-bg, transparent);
}

._sectionTitle_j3fyd_5 {
  position: sticky;
  top: 0;
  z-index: var(--collapsible-section-z-index, 2);
  min-height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--section-title-padding, 0 15px);
  line-height: 28px;
  user-select: none;
  border-top: var(--collapsible-section-border-top, solid 1px #808080);
  border-bottom: var(--collapsible-section-border-bottom, solid 1px #808080);
  background: var(--collapsible-section-title-bg, #f5f5f5);
  height: var(--section-title-height, 28px);
  font-size: var(--collapsible-section-title-font-size, var(--font-m));
  font-weight: var(--collapsible-section-title-font-weight, 700);
  text-transform: var(--section-title-text-transform, unset);
  letter-spacing: var(--collapsible-section-title-letter-spacing, unset);
}

._section_j3fyd_1._collapsed_j3fyd_26 ._sectionTitle_j3fyd_5 {
  border-bottom: none;
}

._titleCollapsible_j3fyd_30 {
  cursor: pointer;
}

._sectionToggleLeft_j3fyd_34 {
  width: 24px !important;
  display: var(--collapsible-section-toggle-left-display, unset);
}

._sectionToggleRight_j3fyd_39._icon_j3fyd_39 {
  height: 20px;
  display: var(--collapsible-section-toggle-right-display, none) !important;
}

._decorations_j3fyd_44 {
  display: inline-flex;
  align-self: center;
  align-items: center;
}

._sectionContent_j3fyd_50 {
  padding: var(--collapsible-section-content-padding, 28px 40px);
}

._section_j3fyd_1._collapsed_j3fyd_26 ._sectionContent_j3fyd_50 {
  display: none;
}

._sectionDescription_j3fyd_58 {
  margin-bottom: 24px;
  color: var(--color-text-black);
  font-weight: var(--weight-regular);
  font-size: var(--font-s);
}

._sectionTitle_j3fyd_5 ._icon_j3fyd_39 {
  display: inline-block;
  background-repeat: no-repeat;
  width: var(--collapsible-section-icon-width, 16px);
  height: var(--collapsible-section-icon-height, 16px);
  margin: 0 4px;
}

._sectionTitle_j3fyd_5 ._icon_j3fyd_39._collapsed_j3fyd_26 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/arrow_left-01-931d97fd.svg');
}

._sectionTitle_j3fyd_5 ._icon_j3fyd_39._expanded_j3fyd_77 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/arrow_down-ca95c469.svg');
}

._right_j3fyd_81 {
  display: inline-flex;
  align-items: center;
}
._sectionTitle_jpwnh_1 {
  position: sticky;
  top: -1px;
  z-index: 1;
  height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  border-top: solid 1px #b0b0b0;
  background: #f5f5f5;
  font-size: var(--font-m);
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  user-select: none;
}
._section_jpwnh_1:first-child ._sectionTitle_jpwnh_1 {
  border: none;
}

._sectionToggle_jpwnh_22 {
  width: 24px !important;
}

._sectionContent_jpwnh_26 {
  margin: 24px 40px;
}
._section_jpwnh_1._collapsed_jpwnh_29 ._sectionContent_jpwnh_26 {
  display: none;
}

._sectionDescription_jpwnh_33 {
  margin-bottom: 24px;
  color: var(--color-text-black);
  font-weight: var(--weight-regular);
  font-size: var(--font-s);
}

._selectMode_jpwnh_40 {
  outline: 2px solid #cae2ff;
}

._selectMode_jpwnh_40 * {
  pointer-events: none;
}

._selectMode_jpwnh_40:hover {
  outline: 2px solid #4a90e2;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

._propertyLabel_jpwnh_53,
._propertyLabelReadOnly_jpwnh_54 {
  display: flex;
  height: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--color-text-gray);
  font-size: var(--font-xs);
  letter-spacing: 0.6px;
}
._propertyLabel_jpwnh_53 *,
._propertyLabelReadOnly_jpwnh_54 * {
  vertical-align: middle;
}
._propertyLabel_jpwnh_53 {
  margin-bottom: 20px;
}
._propertyLabelReadOnly_jpwnh_54 {
  margin-bottom: 4px;
}

/* .propertyTitle {
  margin-bottom: 20px;
} */

._propertyDescription_jpwnh_78 {
  margin-bottom: 24px;
  /* Padding to match interior node values container */
  padding-left: 24px;
  color: var(--color-text-black);
  font-weight: var(--weight-regular);
  font-size: var(--font-s);
}

._interiorNodeValues_jpwnh_87 {
  padding-left: 24px;
}

._propertyValueReadOnly_jpwnh_91 {
  margin-bottom: 24px;
  font-size: var(--font-s);
  font-weight: var(--weight-medium);
  word-wrap: break-word;
}

._property_jpwnh_53 {
  padding: 3px 0;
  overflow-x: auto;
}

._property_jpwnh_53._unstructured_jpwnh_103 {
  --input-property-margin-top: 0;
  --input-property-margin-bottom: 20px;
}

._addPropertySection_jpwnh_108 {
  margin-bottom: 20px;
}

._propertiesButtons_jpwnh_112 {
  position: sticky;
  display: flex;
  margin-bottom: 20px;
  background: #fff;
}

._propertiesButtons_jpwnh_112 > button {
  margin-left: 20px;
}

._referenceLink_jpwnh_123 {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 8px;
  align-items: center;
  cursor: pointer;
}

._annotationIcon_jpwnh_131 {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  vertical-align: middle;
  background: no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/annotation-353c3c6b.svg');
}
._annotationIcon5CA2FF_jpwnh_139 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%235ca2ff' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}
._annotationIconC60644_jpwnh_142 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%23c60644' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}
._annotationIconFF8C00_jpwnh_145 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%23ff8c00' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}
._annotationIconFFD100_jpwnh_148 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%23ffd100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}
._annotationIcon2291A1_jpwnh_151 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%232291a1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}
._annotationIcon04DDEB_jpwnh_154 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%2304ddeb' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}
._annotationIcon9269F2_jpwnh_157 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%239269f2' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}
._annotationIcon94008C_jpwnh_160 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='%2394008c' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23fff' d='M-3-3h24v24H-3z'/%3E%3Cpath d='M16 16H2V2h7V0H2a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V9h-2v7zM11 0v2h3.59l-9.83 9.83 1.41 1.41L16 3.41V7h2V0h-7z'/%3E%3C/g%3E%3C/svg%3E");
}

._noteIcon_jpwnh_164 {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  vertical-align: middle;
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath stroke='%23000' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon5CA2FF_jpwnh_173 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%235ca2ff' stroke='%235ca2ff' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIconC60644_jpwnh_176 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23c60644' stroke='%23c60644' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIconFF8C00_jpwnh_179 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23ff8c00' stroke='%23ff8c00' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIconFFD100_jpwnh_182 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23ffd100' stroke='%23ffd100' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon2291A1_jpwnh_185 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%232291a1' stroke='%232291a1' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon04DDEB_jpwnh_188 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%2304ddeb' stroke='%2304ddeb' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon9269F2_jpwnh_191 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%239269f2' stroke='%239269f2' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}
._noteIcon94008C_jpwnh_194 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%2394008c' stroke='%2394008c' d='M0 0h24v24H0z'/%3E%3Cpath d='M19 20v-8h2v6.684A3.316 3.316 0 0117.684 22H7.316A3.316 3.316 0 014 18.684V5.316A3.316 3.316 0 017.316 2H12v2H6v16h13z' fill-rule='nonzero'/%3E%3Cpath d='M16.105 4.988v2.907h2.492l-2.492-2.907z' fill='none' stroke-width='2.211'/%3E%3C/g%3E%3C/svg%3E");
}

._noteText_jpwnh_198 {
  flex: 1 1 0;
  margin-right: 8px;
  color: #0082e6;
  font-size: var(--font-s);
}

._noteInputContainer_jpwnh_205 {
  display: flex;
}

._noteInput_jpwnh_205 {
  flex: 1 1 auto;
  font-size: var(--font-s);
  line-height: 1.3em;
}

._addNote_jpwnh_215 {
  margin-top: 16px;
}
._addNote_jpwnh_215 a {
  font-size: var(--font-s);
  color: #0082e6;
}

._noteAnnotation_jpwnh_223 {
  margin-left: 29px;
}

._sectionComplete_jpwnh_227,
._sectionIncomplete_jpwnh_228 {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

._sectionTitleStatus_jpwnh_237 {
  margin-right: 4px;
  transform: translateY(3px);
}

._sectionTitleStatuses_jpwnh_242 {
  color: #757575;
  font-size: var(--font-xs);
}
._sectionTitleStatuses_jpwnh_242 span {
  margin-right: 16px;
}

._sectionComplete_jpwnh_227 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%2325b81d' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0a8 8 0 110 16A8 8 0 018 0zm3.68 4L6.5 9.17 4.41 7.09 3 8.5 6.5 12l6.59-6.59L11.68 4z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._sectionIncomplete_jpwnh_228 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23ffd100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M8 0a8 8 0 110 16A8 8 0 018 0z'/%3E%3Cpath fill='%23FFF' d='M3 7h10v2H3z'/%3E%3C/g%3E%3C/svg%3E");
}

._propertyMenu_jpwnh_258 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/propertyMenu-1de92810.svg');
  vertical-align: middle;
}

._notePlaceholder_jpwnh_268,
._propertyInput_jpwnh_269 input::placeholder {
  font-size: var(--font-s) !important;
  line-height: 1.3em !important;
}

._noteDoneButton_jpwnh_274 {
  margin-right: 24px;
  font-size: var(--font-s);
  font-weight: 400;
  color: #0082e6;
  cursor: pointer;
  text-align: right;
}

@keyframes _flash_jpwnh_294 {
  0% {
    background: none;
  }
  30% {
    background: #7efcb0;
  }
  0% {
    background: none;
  }
}
._flash_jpwnh_294 {
  animation: _flash_jpwnh_294 1s ease-out;
}

._checkboxIcon_jpwnh_298 {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background: no-repeat center;
  background-position-y: 1px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon5CA2FF_jpwnh_307 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%235ca2ff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIconC60644_jpwnh_310 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23c60644' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIconFF8C00_jpwnh_313 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23ff8c00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIconFFD100_jpwnh_316 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%23ffd100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon2291A1_jpwnh_319 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%232291a1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon04DDEB_jpwnh_322 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%2304ddeb' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon9269F2_jpwnh_325 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%239269f2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}
._checkboxIcon94008C_jpwnh_328 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='%2394008c' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.847.594l1.559 1.253-6.963 8.664L.586 5.474l1.44-1.388 3.28 3.402z'/%3E%3C/svg%3E");
}

._xIcon_jpwnh_332 {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background: no-repeat center;
  background-position-y: 1px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon5CA2FF_jpwnh_341 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%235ca2ff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIconC60644_jpwnh_344 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%23c60644' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIconFF8C00_jpwnh_347 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%23ff8c00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIconFFD100_jpwnh_350 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%23ffd100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon2291A1_jpwnh_353 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%232291a1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon04DDEB_jpwnh_356 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%2304ddeb' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon9269F2_jpwnh_359 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%239269f2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._xIcon94008C_jpwnh_362 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='10' fill='%2394008c' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.711.08l1.415 1.414L6.59 5.03l3.536 3.535L8.71 9.979 5.176 6.444 1.64 9.979.226 8.565 3.762 5.03.226 1.494 1.64.08l3.536 3.536z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._otherBooleanValues_jpwnh_366 {
  display: flex;
}

._collapseButton_jpwnh_370,
._expandButton_jpwnh_371 {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: no-repeat center;
  cursor: pointer;
}
._collapseButton_jpwnh_370 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sectionCollapse-b357a95f.svg');
}
._expandButton_jpwnh_371 {
  transform: rotate(-90deg);
  background-image: url('/decisionanalytics/ascend-intelligence/assets/sectionCollapse-b357a95f.svg');
}
._container_12435_1 {
  border-top: var(--splitter-container-border-top, none);
  position: relative;
  display: flex;
  overflow-x: auto;
  height: 100%;
  width: 100%;
}

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

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

._dragImage_12435_18 {
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  position: absolute;
  background: transparent;
}

._dragIndicator_12435_27 {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #555;
  display: none;
}

._columns_12435_10._dragIndicator_12435_27 {
  width: 4px;
  height: 100%;
}

._rows_12435_14._dragIndicator_12435_27 {
  width: 100%;
  height: 4px;
}

._handle_12435_46 {
  background-color: var(--splitter-handle-bg, #c4c4c4);
  width: var(--splitter-divider-width, 7px);
  height: var(--splitter-handle-height, 53px);
  display: var(--splitter-handle-display, none);
  align-self: center;
}

._separator_12435_54 {
  display: flex;
  flex: 0 0 auto;
  background: var(--splitter-divider-bg, #979797);
}

._columns_12435_10._separator_12435_54 {
  width: var(--splitter-divider-width, 4px);
  cursor: col-resize;
  border: var(--splitter-divider-border, none);
}

._rows_12435_14._separator_12435_54 {
  height: 4px;
  width: 100%;
  cursor: row-resize;
}

/* The width of this column is set by the component and
   the right column will fill the remaining space */
._beforeSection_12435_74 {
  flex: 0 0 auto;
  overflow-y: auto;
}

._afterSection_12435_79 {
  flex: 1 1 auto;
  overflow-y: auto;
}
._pageDocument_c7h3g_1 {
  margin-left: calc(var(--contentarea-inner-padding-sides) * -1);
  margin-right: calc(var(--contentarea-inner-padding-sides) * -1);
  background: #fff;
}

._error_c7h3g_7 {
  color: red;
  font-size: var(--font-s);
  font-weight: var(--weight-medium);
  padding: 16px;
}

._columnContainer_c7h3g_14 {
  position: fixed;
  width: calc(100% - 65px);
  height: calc(100% - 46px);
}

._propertiesColumn_c7h3g_20 {
  overflow-y: auto;
  background: #fff;
}

._documentColumn_c7h3g_25 {
  overflow-x: hidden;
  overflow-y: auto;
  background: #e9eef4;
}

._propertiesHeader_c7h3g_31 {
  display: flex;
  height: 44px;
  padding: 0 40px;
  align-items: center;
}
._propertiesHeader_c7h3g_31 button {
  height: 28px;
  margin-right: 16px;
}
._propertiesHeader_c7h3g_31 button:last-of-type {
  margin-right: 0;
}

._docStatus_c7h3g_45 {
  flex: 1 1 auto;
  color: #454545;
}
._docStatusTitle_c7h3g_49 {
  font-weight: var(--weight-thick);
}
._docStatusValue_c7h3g_52 {
  font-weight: var(--weight-medium);
  font-style: italic;
}
._tabContainer_xaqqz_1 {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  height: var(--tab-height, 37px);
  align-items: flex-end;
  border: 1px solid #b0b0b0;
  background-color: var(--document-tab-container-bg, #fff);
  overflow-x: auto;
  scrollbar-width: 0px;
}

._tabContainer_xaqqz_1::-webkit-scrollbar {
  display: none;
}

._tab_xaqqz_1 {
  display: var(--document-tab-display, flex);
  grid-template-columns: calc(var(--tab-max-width, 220px) - 66px) 12px;
  grid-column-gap: 12px;
  align-items: center;
  position: var(--document-tab-position, relative);
  bottom: var(--document-tab-bottom, -1px);
  min-width: var(--tab-min-width, 220px);
  max-width: var(--tab-max-width, 220px);
  background: var(--tab-bg-normal, #f3f3f3);
  line-height: var(--tab-line-height, 16px);
  text-align: center;
  white-space: nowrap;
  border: var(--tab-border, 1px solid #b0b0b0);
  border-right: var(--document-tab-border-right, 1px solid #b0b0b0);
  border-radius: var(--tab-border-radius, 4px 4px 0 0);
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  padding: var(--tab-padding, 8px 28px 8px 8px);
  cursor: pointer;
  text-transform: var(--tab-text-transform, unset);
  color: var(--document-tab-color-normal, #b0b0b0);
  font-weight: var(--weight-medium);
  font-size: var(--document-tab-font-size, var(--font-s));
  height: var(--tab-height, 32px);
  max-height: var(--tab-height);
}

._tab_xaqqz_1._active_xaqqz_46 {
  border-bottom: var(--tab-border-active, none);
  color: var(--tab-color-active, #454545);
  background-color: var(--tab-bg-active, #f3f3f3);
}

._tab_xaqqz_1._pinned_xaqqz_52 {
  display: flex;
  min-width: var(--tab-pinned-min-width, 150px);
  padding-right: var(--tab-pinned-padding-right, 8px);

  grid-template-columns: unset;
}

._tabClose_xaqqz_60 {
  display: inline-block;
  position: var(--document-tab-close-position, absolute);
  top: var(--document-tab-close-top, 8px);
  right: var(--document-tab-close-right, 8px);
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='14' fill='%23ccc' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 1.41L12.59 0 7 5.59 1.41 0 0 1.41 5.59 7 0 12.59 1.41 14 7 8.41 12.59 14 14 12.59 8.41 7z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

._tabClose_xaqqz_60:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='14' fill='%23606060' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 1.41L12.59 0 7 5.59 1.41 0 0 1.41 5.59 7 0 12.59 1.41 14 7 8.41 12.59 14 14 12.59 8.41 7z' fill-rule='evenodd'/%3E%3C/svg%3E");
}
._documentCanvas_1fxz6_1 {
  cursor: text;
  mix-blend-mode: multiply;
  user-select: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  ._documentCanvas_1fxz6_1 {
    opacity: 0.5;
  }
}
/*
The anchor is on the top left and takes up no vertical space.
*/
._tooltipAnchor_1xwff_4 {
  height: 0;
}

/*
The tooltip is relatively positioned inside the anchor, so it will have a width
and we can use max-width.
*/
._tooltip_1xwff_4 {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 50%;
  --tooltip-bg: linear-gradient(to bottom, #8c8c8c, #545454);
}

._tooltipText_1xwff_20 {
  padding: 12px;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  box-shadow: 5px 6px 11px 0 rgba(0, 0, 0, 0.26);
  font-size: var(--font-s);
}

._tooltipContent_1xwff_29 {
  position: relative;
  margin-bottom: 4px;
  background: var(--tooltip-bg);
  border-radius: 4px;
}

/* Idle state */

._tooltipButtons_1xwff_38 {
  display: inline-flex;
  flex-direction: row;
}

._tooltipButton_1xwff_38 {
  color: white;
  font-size: var(--font-xs);
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  padding: 4px 12px;
  border: 1px solid #000;
  border-top: none;
  border-bottom: none;
  cursor: pointer;
  user-select: none;
  min-width: 68px;
}

._tooltipButton_1xwff_38:active {
  background: linear-gradient(to bottom, #f2f2f2, #b1b1b1);
  color: #474747;
}

._tooltipButton_1xwff_38:first-child {
  border-left: none;
}
._tooltipButton_1xwff_38._hasMiddleButtons_1xwff_66:first-child {
  border-right: none;
}

._tooltipButton_1xwff_38:last-child {
  border: none;
}

/* Add Note */

._addNote_1xwff_76 {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 9px;
}

/* Add reference */

._addReference_1xwff_85 {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 9px;
  background: #010221;
  color: #fff;
  font-weight: var(--weight-thick);
}

._addReference_1xwff_85 > div,
._addNote_1xwff_76 > div {
  margin-right: 8px;
}

._addReference_1xwff_85 > div:last-child,
._addNote_1xwff_76 > div:last-child {
  margin-right: 0;
}

._referenceSelector_1xwff_105 {
  min-height: 0;
  height: 20px;
  min-width: 200px;
  padding: 0;
  font-size: var(--font-xs);
}

._spinner_1xwff_113 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}

._saveButton_1xwff_122 {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/ok-c44386d5.svg');
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

._dragReferenceCursor_1xwff_132 {
  position: fixed;
  z-index: 10000;
  top: 100px;
  left: 100px;
  width: 47px;
  height: 47px;
  background: url('/decisionanalytics/ascend-intelligence/assets/dragReferenceCursor-0c44d5f5.svg');
  pointer-events: none;
}

._cancelButton_1xwff_143 {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/cancel-19db6c4b.svg');
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

._dragReferenceCursor_1xwff_132 {
  position: fixed;
  z-index: 10000;
  top: 100px;
  left: 100px;
  width: 47px;
  height: 47px;
  background: url('/decisionanalytics/ascend-intelligence/assets/dragReferenceCursor-0c44d5f5.svg');
  pointer-events: none;
}
._pageWrapper_1hyny_1 {
  position: relative;
  margin: 0 auto 20px auto;
}

._renderedColumn_1hyny_6 {
  position: absolute;
  top: 0;
  left: 0;
}

._originalColumn_1hyny_12 {
  position: absolute;
  top: 0;
  left: 0;
}
._pageContainer_3w7yb_1 {
  flex: 1 1 auto;
  position: relative;
  overflow-x: auto;
}

._pageContainer_3w7yb_1._disableScrolling_3w7yb_7 {
  overflow: hidden;
}

._error_3w7yb_11 {
  color: var(--color-error-text, #ef6843);
}
._documentTab_ghs6w_1 {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: var(--height-default);
}

._documentTabTitle_ghs6w_8 {
  text-overflow: ellipsis;
  overflow: hidden;
}

._documentTabIcon_ghs6w_13 {
  display: inline-block;
  flex-basis: 24px;
  margin-right: 8px;
  background-image: var(
    --document-tab-icon-inactive,
    var(--default-document-tab-icon-inactive)
  ) !important;
}
.activeTab ._documentTabIcon_ghs6w_13 {
  background-image: var(
    --document-tab-icon-active,
    var(--default-document-tab-icon-active)
  ) !important;
}

._documentTableTabIcon_ghs6w_29 {
  display: inline-block;
  width: var(--document-tab-icon-width, 11px);
  height: var(--document-tab-icon-height, 10px);
  margin-right: 8px;
  background-size: var(--document-list-icon-size, 11px);
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(
    --document-list-icon-inactive,
    var(--default-document-list-icon-inactive)
  );
}
.activeTab ._documentTableTabIcon_ghs6w_29 {
  background-image: var(
    --document-list-icon-active,
    var(--default-document-list-icon-active)
  );
}

._badge_ghs6w_49 {
  position: absolute;
  top: 3px;
  left: 3px;
  padding: 1px 2px;
  background: #df0131;
  border-radius: 3px;
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  color: #ffffff;
  letter-spacing: 0;
  line-height: 12px;
}

._documentToolbar_ghs6w_63 {
  --default-gradient: linear-gradient(#fafafa, #f2f2f2);
  display: flex;
  flex-direction: row;
  align-items: center;
  height: var(--height-default, 36px);
  padding: var(--toolbar-padding, 8px 8px 8px 12px);
  background: var(--toolbar-bg, #f5f5f5);
  border-bottom: 1px solid var(--toolbar-border-bottom-color, #dfdfe0);
}

._toolbarSearch_ghs6w_74 {
  flex: 0 0 auto;
  display: inline-flex;
  width: 260px !important;
  height: var(--toolbar-search-height, 28px) !important;
  margin-right: 8px !important;
  border-radius: var(--toolbar-search-border-radius, 4px);
  border-color: var(--toolbar-bg) !important;
}
._toolbarSearch_ghs6w_74 input {
  font-size: var(--font-s) !important;
}
._toolbarSearch_ghs6w_74:hover,
._toolbarSearch_ghs6w_74:focus,
._toolbarSearch_ghs6w_74:active {
  border-color: var(--dark-active, #000) !important;
}

._toolbarButton_ghs6w_92 {
  width: 28px;
  height: 28px;
  border: var(--toolbar-button-border, 1px solid #d9d9d9);
  border-radius: var(--toolbar-button-border-radius, 3px);
  cursor: pointer;
  user-select: none;
  background-color: var(--toolbar-nav-bg, transparent);
  background-position: center;
  background-repeat: no-repeat;
}
._toolbarButton_ghs6w_92:hover {
  border-color: #060031;
}

._searchPrevious_ghs6w_107 {
  --default-prev-bg: url(
      "data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' xmlns='http://www.w3.org/2000/svg' fill='gray'%3E%3Cpath d='M9.79 5.53L8.682 6.64 4.987 3.013 1.469 6.64.361 5.53 4.987.79z'/%3E%3C/svg%3E"
    ),
    var(--default-gradient);
  margin-right: 3px;
  background-image: var(
    --toolbar-prev-background-image,
    var(--default-prev-bg)
  );
}

._searchNext_ghs6w_120 {
  --default-next-bg: url(
      "data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' xmlns='http://www.w3.org/2000/svg' fill='gray'%3E%3Cpath d='M9.25 2.001L8.144.894l-3.5 3.776-3.5-3.776L.035 2l4.608 4.893z'/%3E%3C/svg%3E"
    ),
    var(--default-gradient);
  background-image: var(
    --toolbar-next-background-image,
    var(--default-next-bg)
  );
}

._noMatches_ghs6w_132 {
  color: #df0131;
  font-weight: var(--weight-medium);
  font-size: var(--font-xs);
  margin-left: 12px;
}

._matchCount_ghs6w_139 {
  margin-right: 25px;
  margin-left: 8px;
  font-weight: var(--weight-medium);
  font-size: var(--font-xs);
}

._zoomOut_ghs6w_146 {
  --default-zoom-image: url('/decisionanalytics/ascend-intelligence/assets/zoomOut-02bd1fb5.svg'),
    var(--default-gradient);
  margin-right: 4px;
  background-image: var(--zoom-out-background-image, var(--default-zoom-image));
}
._zoomIn_ghs6w_152 {
  --default-zoom-image: url('/decisionanalytics/ascend-intelligence/assets/zoomIn-08b875a7.svg'),
    var(--default-gradient);
  background-image: var(--zoom-in-background-image, var(--default-zoom-image));
}

._flexibleSpace_ghs6w_158 {
  flex: 1 1 auto;
}

._tabContainerClassName_ghs6w_162 {
  background-color: white;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
}

._pageCount_ghs6w_169 {
  color: var(--toolbar-pagecount-color, #3d3d3d);
  font-size: var(--toolbar-pagecount-font-size, var(--font-xs));
  font-weight: var(--weight-medium);
  text-align: center;
  display: flex;
  align-items: center;
}

._pageInput_ghs6w_178 {
  width: 3em;
  height: 24px;
}

._tabbedViewerContainer_ghs6w_183 {
  display: flex;
  flex-direction: column;
  height: 100%;
}
._apiKeys_184fx_1 {
  margin: 24px 0;
  padding: 13px 36px;
  border-bottom: 2px solid var(--color-section-border);
  background: var(--color-bg-level2);
  color: var(--color-text-black);
}

._apiKeys_184fx_1 header {
  font-size: var(--font-xl);
  font-weight: var(--weight-thick);
  color: var(--color-text-blue);
  margin-bottom: 12px;
}

._apiKey_184fx_1 {
  font-size: var(--font-m);
  word-wrap: break-word;
}

._ttlType_184fx_21 {
  margin-right: 20px;
}

._projectInfoTtl_184fx_25 {
  margin-right: 20px;
  margin-left: 20px;
  width: 60px;
}

._projectInfoTtl_184fx_25 input {
  text-align: right;
}

._formLabel_184fx_35 {
  width: 150px;
  text-align: right;
}
._projectInfo_fs2p4_1 {
  margin-top: 30px;
}
._row_nsslh_1 {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

._addUserButton_nsslh_7 {
  float: right;
}

._revokeLink_nsslh_11 {
  margin-left: 16px;
  color: var(--color-text-gray);
}

._projectMemberRoles_nsslh_16 {
  flex: 1;
}

._projectMemberRoles_nsslh_16 span,
._projectMemberRoles_nsslh_16 div {
  vertical-align: middle;
}

._projectMemberRoles_nsslh_16 span {
  margin-right: 6px;
}

._actionsRow_nsslh_29 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}
._selector_17ehh_1 {
  height: 200px;
  padding-top: 6px;
}
._row_k1ees_1 {
  margin: 30px 0 30px;
  display: flex;
  justify-content: space-between;
}

._addUserButton_k1ees_7 {
  float: right;
}

._revokeLink_k1ees_11 {
  margin-left: 16px;
  color: var(--color-text-gray);
}

._projectMemberRoles_k1ees_16 {
  flex: 1;
}

._projectMemberRoles_k1ees_16 span,
._projectMemberRoles_k1ees_16 div {
  vertical-align: middle;
}

._projectMemberRoles_k1ees_16 span {
  margin-right: 6px;
}

._actionsRow_k1ees_29 {
  display: flex;
  position: relative;
}

._filterMatch_k1ees_34 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._searchBox_ukrgh_1 {
  margin-bottom: 60px;
}
._projectInfo_1nuz5_1 {
  margin-top: 30px;
}

._pageWrapper_1nuz5_5 {
  margin: 8px 40px 40px 40px;
}
._header_1chz2_1 {
  margin-bottom: 10px;
}

._actionsRow_1chz2_5 {
  display: flex;
  justify-content: center;
  min-height: 30px;
  margin-top: 5px;
}
._codeEditor_1kczf_1 .CodeMirror,
._codeEditor_1kczf_1 .CodeMirror-sizer {
  min-height: 160px !important;
}
._settingsSectionHeader_1xsaa_1 {
  font-size: var(--font-xl-B);
  font-weight: 400;
  margin-bottom: 48px;
}

._section_1xsaa_7 {
  margin-bottom: 48px;
}

._row_1xsaa_11 {
  margin-bottom: 12px;
}

._toggleWrap_1xsaa_15 {
  margin-top: 24px;
}

._historyHelpText_1xsaa_19 {
  display: block;
  margin-bottom: 12px;
}

._historySection_1xsaa_24 .CodeMirror {
  border: none;
}

._historySection_1xsaa_24 .CodeMirror:hover {
  border: none;
}

._statusHeader_1xsaa_32 {
  font-size: var(--font-xl-B);
  font-weight: var(--weight-medium);
  margin-bottom: 16px;
}

._label_1xsaa_38 {
  width: 185px;
  text-align: right;
}

._labelOnTop_1xsaa_43 {
  align-self: flex-start;
  padding-top: 6px;
}

._minValueWarning_1xsaa_48:after {
  content: 'Recommended value is 10,000+';
  position: absolute;
  bottom: -17px;
  font-size: var(--font-xs);
  color: var(--color-red);
  left: 215px;
}

._idLabel_1xsaa_57 {
  text-align: right;
}

._historySection__toggle_1xsaa_61 {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

._section--small-margin-bottom_1xsaa_67 {
  margin-bottom: 20px;
}

._iconPlaceholder_1xsaa_71 {
  margin-bottom: 10px;
}

._deletedRow__cell_1xsaa_75 {
  color: #969292 !important;
}

._form__spinner_1xsaa_79 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 22px;
}
._generateSummaryButton_ocvhc_1 {
  border-radius: 5px;
  border: 1px solid black;
  background-color: white;
  font-size: 18;
}

._refreshContainer_ocvhc_8 {
  display: flex;
  align-items: center;
}

._refreshContainer_ocvhc_8 span {
  margin-right: 9px;
}

._section_ocvhc_17 {
  margin-bottom: 48px;
}

._statusWidgetContainer_ocvhc_21 {
  margin-bottom: 24px;
}

._settingsSectionHeader_ocvhc_25 {
  font-size: var(--font-xl-B);
  font-weight: var(--weight-medium);
  margin-bottom: 22px;
}

._statusHeader_ocvhc_31 {
  font-size: var(--font-xl-B);
  font-weight: var(--weight-medium);
  margin-bottom: 16px;
}
._labelOnTop_1scws_1 {
  align-self: flex-start;
  padding-top: 6px;
}

._label_1scws_1 {
  width: 185px;
  text-align: right;
}

._section_1scws_11 {
  margin-bottom: 48px;
}

._settingsSectionHeader_1scws_15 {
  font-size: var(--font-xl-B);
  font-weight: var(--weight-medium);
  margin-bottom: 22px;
}

._statusHeader_1scws_21 {
  font-size: var(--font-xl-B);
  font-weight: var(--weight-medium);
  margin-bottom: 16px;
}
._dashboardCard_1denf_1 {
  display: inline-block;
  background: white;
  padding: 14px 16px 20px;
  vertical-align: top;
  user-select: none;
  margin-bottom: 12px;
  overflow: hidden;
}

._chartView_1denf_11 {
  overflow: hidden;
}

._title_1denf_15 {
  height: 24px;
  line-height: 24px;
  color: var(--color-text-black);
  cursor: default;
  font-size: var(--font-l);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._controls_1denf_27 {
  display: none;
  position: absolute;
  top: 20px;
  right: 8px;
}

._dashboardCard_1denf_1:hover ._controls_1denf_27 {
  display: block;
}

._titleRow_1denf_38 {
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  user-select: text;
}

._collections_1denf_47 {
  padding-right: 16px;
}

._chartCaption_1denf_51 {
  background: white;
  color: #888;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: text;
  white-space: nowrap;
}

._checkbox_1denf_62 div:hover {
  background: white no-repeat center;
  background-image: url('/decisionanalytics/ascend-intelligence/assets/unchecked-52ca50f8.svg');
}

._checkbox_1denf_62 div {
  background: white
    url('../../../images/checkbox/unchecked.svg', fill='#A0A0A0') no-repeat
    center;
}
._collections_1es54_1 {
  margin-bottom: 48px;
}

._actionsRow_1es54_5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

._container-with-sidebar_1es54_12 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  /* Accounts for the container padding */
  margin: var(--pageDashboard-margin, -45px -40px -40px -40px);
}

._content-area_1es54_23 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  margin: 40px;
}

._actionButtonContainer_1es54_31 {
  display: flex;
  align-items: center;
}

._actionsRow_1es54_5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

._selectAllButton_1es54_43 {
  margin-right: 16px;
}
._error_bfz7g_1 {
  color: red;
}

._row_bfz7g_5 {
  margin: 12px 0;
}

._actionsRow_bfz7g_9 {
  display: flex;
  position: relative;
}

._filterMatch_bfz7g_14 {
  top: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
._importButton_t30f3_1 {
  background: transparent;
  color: #a9a9a9;
  border-color: #888888;
  border-width: 1px;
  font-weight: var(--weight-regular);
}

._schemaHeaderRow_t30f3_9 {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 668px;
  padding: 16px 0;
  border-bottom: 1px solid #000000;
}

._nameHeader_t30f3_18 {
  width: 340px;
  margin: 0 20px 0 35px;
}

._nameHeader_t30f3_18,
._dataTypeHeader_t30f3_24 {
  font-size: var(--font-s);
  color: var(--color-text-gray);
  text-transform: uppercase;
}

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

._spacer_t30f3_35 {
  flex: 1 1 0;
}

._row_t30f3_39 {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 668px;
  padding: 16px 0;
  border-bottom: 1px solid #d8d4d4;
}

._dataType_t30f3_24 {
  margin-right: 36px;
}

._dataTypeEditor_t30f3_52 {
  margin-bottom: -12px;
}

._index_t30f3_56 {
  max-width: 13px;
  margin-right: 22px;
  color: #a9a9a9;
}

._name_t30f3_18 {
  flex: 0 0 auto;
  width: 340px;
  margin-right: 20px;
}

._addRow_t30f3_68 {
  display: inline-block;
  margin-left: 35px;
  padding: 16px 0;
  color: #a9a9a9;
  cursor: pointer;
}

._metadataField_t30f3_76 {
  margin-bottom: 32px;
  width: 308px;
}
._root_mdup0_1 {
  display: flex;
  flex-direction: column;
}
._mainArea_mdup0_5 {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
}

._searchBox_mdup0_11 {
  margin-bottom: 8px;
}

._hierarchyList_mdup0_15 {
  position: initial;
  max-height: calc(100% - 40px); /* 100% - search box vertical space */
}

._leafName_mdup0_20 {
  padding: 4px;
}

._leafName_mdup0_20:hover {
  cursor: pointer;
}

._leafName_mdup0_20._selected_mdup0_28 {
  background-color: #333;
  color: #fff;
}

._pathDetail_mdup0_33 {
  flex: 1 1 auto;
  padding: 0px 20px 20px 20px;
  overflow: auto;
}

._alertBox_mdup0_39 {
  width: 100%;
  height: fit-content;
  margin-right: 40px;
}
._picker-container_4h6zw_1 {
  position: relative;
}

._picker_4h6zw_1 {
  position: absolute;
  top: 35px;
  left: -85px;
  z-index: 1001;
}

._overlay_4h6zw_12 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

._button_4h6zw_21 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 24px;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
}

._color-base_4h6zw_32 {
  margin: 0px 3px;
  position: absolute;
  bottom: -2px;
  height: 3px;
  left: 0;
  right: 0;
}
._editor-container_uzi4a_1 {
  position: relative;
  background-color: var(--editor-background, white);
}
._editor_uzi4a_1 {
  padding: var(--editor-padding, 130px 20px 20px 40px);
}

._table_uzi4a_9 {
  border: var(--editor-table-border, 1px solid #ccc);
  padding: var(--editor-table-padding, 5px);
}

._table_uzi4a_9 td {
  border: var(--editor-table-cell-border, 1px solid #ccc);
  padding: var(--editor-table-cell-padding, 5px);
}

._table_uzi4a_9 th {
  text-align: var(--editor-table-text-align, left);
  border: var(--editor-table-header-border, 1px solid #ccc);
  padding: var(--editor-table-header-padding, 5px);
  font-weight: var(--editor-table-header-font-weight, 400);
}

._fixed-menu_uzi4a_26 {
  position: sticky;
  background-color: white;
  top: 0px;
  margin: 0 20px;
  z-index: 999;
}

/* Slate plugin seems to not use the className prop somehow, hacking for now. */
._fixed-menu_uzi4a_26 > div:first-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

._hovering-menu_uzi4a_40 {
  padding: 8px 7px 6px;
  position: absolute;
  z-index: 1;
  top: -10000px;
  left: -10000px;
  margin-top: -6px;
  opacity: 0;
  background-color: #eee;
  border-radius: 4px;
  transition: opacity 0.75s;
}

._toolbar-divider_uzi4a_53 {
  height: 24px;
  border-left: 1px solid #aaa;
  width: 1px;
  margin: 0 8px;
}

._drag-handle_uzi4a_60 {
  cursor: grab;
}

._input-label_uzi4a_64 {
  margin-top: 24px;
  width: 585px;
}

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

._image-preview_uzi4a_69 img {
  /* Fits the image inside the modal */
  max-height: calc(100vh - 260px);
}

._balloonToolbar_uzi4a_78 {
  top: 0;
}
._tableHeader_ol9a2_1 {
  background-color: var(--color-bg-level2);
  border: 1px solid rgba(204, 204, 204, 0.5);
  font-weight: 400;
  font-size: 14px;
  height: 50px;
  margin: 0px;
  padding-left: 14px;
  padding-right: 14px;
  text-transform: none;
}

._tableHeaderRow_ol9a2_13 {
  border: 1px solid rgba(204, 204, 204, 0.5);
}

._tableDataRow_ol9a2_17 {
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 0px;
  padding: 0px 0px 0px 0px;
}

._tableValue_ol9a2_23 {
  border: 1px solid rgba(204, 204, 204, 0.5);
  padding-left: 14px;
  padding-right: 14px;
}
._rendered-image_1kbo1_1 {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

._image-element_1kbo1_7 {
  display: 'block';
}

._imageContainer_1kbo1_11 {
  display: inline-block;
  position: relative;
}

._imageSelected_1kbo1_16 {
  box-shadow: 0 0 0 3px #b4d5ff;
}

._resizer_1kbo1_20 {
  height: 12px;
  width: 12px;
  cursor: nwse-resize;
  background-color: #b4d5ff;
  position: absolute;
  bottom: -6px;
  right: -6px;
}
._newChartButton_3rrub_1 {
  float: right;
}

._sortControls_3rrub_5 {
  text-align: right;
}

._loadSpinner_3rrub_9 {
  min-height: auto;
  height: 30px;
  margin-bottom: -30px;
}

._actionsRow_3rrub_15 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

._actionButtonContainer_3rrub_22 {
  display: flex;
  align-items: center;
}

._selectAllButton_3rrub_27 {
  margin-right: 16px;
}
:root {
  --portal-green: #3db98a;
  --portal-dark-green: #288e6c;
}

._contentWrapper_1hwi9_6 {
  display: flex;
  justify-content: space-between;
  flex-basis: 100%;
  max-width: 100%;
}

._contentArea_1hwi9_13 {
  height: 100vh;
  overflow-y: scroll;
  background-color: var(--color-bg-contentarea);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-left: var(--navBar-width);
}

._contentAreaInner_1hwi9_23 {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: var(--contentarea-inner-padding-top)
    var(--contentarea-inner-padding-sides)
    var(--contentarea-inner-padding-bottom)
    var(--contentarea-inner-padding-sides);
  min-width: 996px;
}

#error-log {
  background-color: #fff;
  border-left: 5px solid red;
  border-bottom: 1px solid #c66;
  box-shadow: 0 0 5px 0 rgba(255, 0, 0, 0.5);
  position: relative;
  font-size: var(--font-s);
  font-weight: 400;
  display: none;
}

#error-log .msg {
  padding: 1px 10px;
}

#error-log .msg.error {
  color: red;
  background-color: #fee;
}

#error-log .msg.warn {
  color: orange;
  background-color: #ffe;
}

#error-log ._x_1hwi9_59 {
  position: absolute;
  right: 8px;
  top: 1px;
  cursor: pointer;
}

#error-log ._x_1hwi9_59:hover {
  color: red;
}

.pagePanel {
  background-color: #fff;
  flex: 1 1 auto;
  padding: 24px;
}
._experian-constants_1pxjg_1 {
  --color-bg-level1: #f6f6f6;
  --color-bg-level2: #f2f2f2;
  --color-bg-level2-darker: #eaeaea;

  --color-experian-dark: #1d4f91;

  --color-navBar: #0a3163;
  --color-menu-bg: #426da9;
  --color-navBar-icon: #ffffff;
  --color-navBar-icon-hover: #426da9;
  --color-navBar-icon-active: #426da9;
  --color-navBar-icon-secondary: #f2eded;

  /* --color-red: #e63888; */
  --color-red: #1d4f91;
  --color-state-hover: #426da9;
  --color-state-click: #1d4f91;
  --color-hover-border: var(--color-red);
  --color-tab-selected: #020348;
  --color-tab-selected-shadow: var(--color-red);
  --color-tab-bg: 'transparent';
  --color-tab-normal: #426da9;

  --color-bg-ratioEditor: #e0e0e0;
  --color-border-ratioEditor: #eaeaea;

  --tab-border-bottom: 1px solid #d6d6d6;

  --button-primary-bg-normal: #426da9;
  --button-primary-bg-hover: #1d4f91;
  --button-primary-bg-click: #1d4f91;
  --button-primary-color-normal: white;
  --button-primary-color-hover: white;
  --button-primary-color-click: white;

  --button-secondary-bg-normal: #f2f8ff;
  --button-secondary-color-normal: #426da9;
  --button-secondary-border-normal: #bfd2eb;

  --button-secondary-bg-click: #d6e3f4;
  --button-secondary-color-click: #426da9;
  --button-secondary-border-click: #bfd2eb;

  --button-secondary-bg-hover: #d6e3f4;
  --button-secondary-color-hover: var(--button-secondary-color-normal);
  --button-secondary-border-hover: var(--button-secondary-border-normal);

  --nav-button-bg-size: 18px;

  --icon-button-bg-normal: #d6e3f4;
  --icon-button-bg-hover: #1d4f91;
  --icon-button-bg-click: #1d4f91;

  --color-bg-mapped-data-row: #bfd2eb;
  --color-bg-table-section-header: #d6e3f4;

  /* --header-bottom-margin: none;
  --header-bottom-border: none; */

  --icon-navbar-project-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd' fill='%238dabd4'%3E%3Cpath d='M5 1v10h8V3.648L10.493 1H5zM4 0h6.923L14 3.25V12H4V0z'/%3E%3Cpath d='M10.5 3.5H14v1H9.5V0h1zM1 17v2h2v-2H1zm-1-1h4v4H0v-4zm8 1v2h2v-2H8zm-1-1h4v4H7v-4zm8 1v2h2v-2h-2zm-1-1h4v4h-4v-4z'/%3E%3Cpath d='M8.5 14.5V13h1v.5h7V17h-1v-2.5z'/%3E%3Cpath d='M8.5 13.5V13h1v1.5h-7V17h-1v-3.5z'/%3E%3Cpath d='M8.5 11.861h1V17h-1z'/%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-project-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd' fill='%23fff'%3E%3Cpath d='M5 1v10h8V3.648L10.493 1H5zM4 0h6.923L14 3.25V12H4V0z'/%3E%3Cpath d='M10.5 3.5H14v1H9.5V0h1zM1 17v2h2v-2H1zm-1-1h4v4H0v-4zm8 1v2h2v-2H8zm-1-1h4v4H7v-4zm8 1v2h2v-2h-2zm-1-1h4v4h-4v-4z'/%3E%3Cpath d='M8.5 14.5V13h1v.5h7V17h-1v-2.5z'/%3E%3Cpath d='M8.5 13.5V13h1v1.5h-7V17h-1v-3.5z'/%3E%3Cpath d='M8.5 11.861h1V17h-1z'/%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-project-active: url("data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd' fill='%23fff'%3E%3Cpath d='M5 1v10h8V3.648L10.493 1H5zM4 0h6.923L14 3.25V12H4V0z'/%3E%3Cpath d='M10.5 3.5H14v1H9.5V0h1zM1 17v2h2v-2H1zm-1-1h4v4H0v-4zm8 1v2h2v-2H8zm-1-1h4v4H7v-4zm8 1v2h2v-2h-2zm-1-1h4v4h-4v-4z'/%3E%3Cpath d='M8.5 14.5V13h1v.5h7V17h-1v-2.5z'/%3E%3Cpath d='M8.5 13.5V13h1v1.5h-7V17h-1v-3.5z'/%3E%3Cpath d='M8.5 11.861h1V17h-1z'/%3E%3C/g%3E%3C/svg%3E");

  --icon-navbar-settings-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' fill='%238dabd4'%3E%3Cpath d='M19.133 11.97a.949.949 0 01.237 1.228l-1.844 3.104a.958.958 0 01-1.183.419l-2.053-.802a7.635 7.635 0 01-1.179.668l-.31 2.099a.947.947 0 01-.948.814H8.152c-.478 0-.89-.343-.948-.805l-.311-2.107a7.288 7.288 0 01-1.182-.668l-2.065.806c-.434.154-.937-.013-1.161-.414L.628 13.188a.946.946 0 01.244-1.219l1.726-1.313A6.519 6.519 0 012.563 10c0-.21.012-.423.035-.656L.871 8.03a.934.934 0 01-.237-1.228L2.48 3.698a.958.958 0 011.18-.418l2.053.802a7.635 7.635 0 011.179-.668l.31-2.099A.947.947 0 018.151.5h3.7c.478 0 .89.343.949.805l.31 2.107c.412.184.805.407 1.182.668l2.065-.806c.434-.154.937.013 1.161.414l1.857 3.124a.946.946 0 01-.244 1.219l-1.726 1.312a6.301 6.301 0 010 1.314l1.727 1.313zm-2.79-.865l.038-.287a6.25 6.25 0 00.06-.818c0-.25-.02-.5-.06-.818l-.037-.287.23-.175 1.91-1.452-1.81-3.045-2.53.989-.222-.167a6.306 6.306 0 00-1.45-.818l-.267-.106-.042-.285-.344-2.336H8.186l-.387 2.62-.267.107c-.493.197-.973.47-1.454.822l-.222.161-.255-.1-2.271-.887-1.81 3.045 2.14 1.627-.037.287c-.04.313-.06.574-.06.818s.02.505.06.818l.037.287-.23.175-1.91 1.452 1.81 3.045 2.53-.989.222.167c.457.341.937.613 1.45.818l.267.106.042.285.345 2.336h3.632l.387-2.62.267-.107c.493-.197.973-.47 1.454-.822l.222-.161.255.1 2.271.887 1.81-3.044-2.14-1.628zM10 14.5A4.504 4.504 0 015.5 10c0-2.482 2.018-4.5 4.5-4.5s4.5 2.018 4.5 4.5-2.018 4.5-4.5 4.5zm0-1c1.93 0 3.5-1.57 3.5-3.5S11.93 6.5 10 6.5 6.5 8.07 6.5 10s1.57 3.5 3.5 3.5z' fill-rule='evenodd'/%3E%3C/svg%3E");
  --icon-navbar-settings-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M19.133 11.97a.949.949 0 01.237 1.228l-1.844 3.104a.958.958 0 01-1.183.419l-2.053-.802a7.635 7.635 0 01-1.179.668l-.31 2.099a.947.947 0 01-.948.814H8.152c-.478 0-.89-.343-.948-.805l-.311-2.107a7.288 7.288 0 01-1.182-.668l-2.065.806c-.434.154-.937-.013-1.161-.414L.628 13.188a.946.946 0 01.244-1.219l1.726-1.313A6.519 6.519 0 012.563 10c0-.21.012-.423.035-.656L.871 8.03a.934.934 0 01-.237-1.228L2.48 3.698a.958.958 0 011.18-.418l2.053.802a7.635 7.635 0 011.179-.668l.31-2.099A.947.947 0 018.151.5h3.7c.478 0 .89.343.949.805l.31 2.107c.412.184.805.407 1.182.668l2.065-.806c.434-.154.937.013 1.161.414l1.857 3.124a.946.946 0 01-.244 1.219l-1.726 1.312a6.301 6.301 0 010 1.314l1.727 1.313zm-2.79-.865l.038-.287a6.25 6.25 0 00.06-.818c0-.25-.02-.5-.06-.818l-.037-.287.23-.175 1.91-1.452-1.81-3.045-2.53.989-.222-.167a6.306 6.306 0 00-1.45-.818l-.267-.106-.042-.285-.344-2.336H8.186l-.387 2.62-.267.107c-.493.197-.973.47-1.454.822l-.222.161-.255-.1-2.271-.887-1.81 3.045 2.14 1.627-.037.287c-.04.313-.06.574-.06.818s.02.505.06.818l.037.287-.23.175-1.91 1.452 1.81 3.045 2.53-.989.222.167c.457.341.937.613 1.45.818l.267.106.042.285.345 2.336h3.632l.387-2.62.267-.107c.493-.197.973-.47 1.454-.822l.222-.161.255.1 2.271.887 1.81-3.044-2.14-1.628zM10 14.5A4.504 4.504 0 015.5 10c0-2.482 2.018-4.5 4.5-4.5s4.5 2.018 4.5 4.5-2.018 4.5-4.5 4.5zm0-1c1.93 0 3.5-1.57 3.5-3.5S11.93 6.5 10 6.5 6.5 8.07 6.5 10s1.57 3.5 3.5 3.5z' fill-rule='evenodd'/%3E%3C/svg%3E");
  --icon-navbar-settings-active: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M19.133 11.97a.949.949 0 01.237 1.228l-1.844 3.104a.958.958 0 01-1.183.419l-2.053-.802a7.635 7.635 0 01-1.179.668l-.31 2.099a.947.947 0 01-.948.814H8.152c-.478 0-.89-.343-.948-.805l-.311-2.107a7.288 7.288 0 01-1.182-.668l-2.065.806c-.434.154-.937-.013-1.161-.414L.628 13.188a.946.946 0 01.244-1.219l1.726-1.313A6.519 6.519 0 012.563 10c0-.21.012-.423.035-.656L.871 8.03a.934.934 0 01-.237-1.228L2.48 3.698a.958.958 0 011.18-.418l2.053.802a7.635 7.635 0 011.179-.668l.31-2.099A.947.947 0 018.151.5h3.7c.478 0 .89.343.949.805l.31 2.107c.412.184.805.407 1.182.668l2.065-.806c.434-.154.937.013 1.161.414l1.857 3.124a.946.946 0 01-.244 1.219l-1.726 1.312a6.301 6.301 0 010 1.314l1.727 1.313zm-2.79-.865l.038-.287a6.25 6.25 0 00.06-.818c0-.25-.02-.5-.06-.818l-.037-.287.23-.175 1.91-1.452-1.81-3.045-2.53.989-.222-.167a6.306 6.306 0 00-1.45-.818l-.267-.106-.042-.285-.344-2.336H8.186l-.387 2.62-.267.107c-.493.197-.973.47-1.454.822l-.222.161-.255-.1-2.271-.887-1.81 3.045 2.14 1.627-.037.287c-.04.313-.06.574-.06.818s.02.505.06.818l.037.287-.23.175-1.91 1.452 1.81 3.045 2.53-.989.222.167c.457.341.937.613 1.45.818l.267.106.042.285.345 2.336h3.632l.387-2.62.267-.107c.493-.197.973-.47 1.454-.822l.222-.161.255.1 2.271.887 1.81-3.044-2.14-1.628zM10 14.5A4.504 4.504 0 015.5 10c0-2.482 2.018-4.5 4.5-4.5s4.5 2.018 4.5 4.5-2.018 4.5-4.5 4.5zm0-1c1.93 0 3.5-1.57 3.5-3.5S11.93 6.5 10 6.5 6.5 8.07 6.5 10s1.57 3.5 3.5 3.5z' fill-rule='evenodd'/%3E%3C/svg%3E");

  --icon-navbar-user-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' stroke='%238dabd4'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-2-2h24v24H-2z'/%3E%3Cpath d='M10 19.5a9.5 9.5 0 110-19 9.5 9.5 0 010 19z'/%3E%3Cpath d='M10 10.5a3.5 3.5 0 110-7 3.5 3.5 0 010 7zm0 2c5.459 0 7.385.719 7.495 2.924l.008.153-.08.131c-.085.14-.208.31-.355.487a8.933 8.933 0 01-1.493 1.402C13.93 18.832 12.026 19.5 10 19.5c-2.026 0-3.931-.668-5.575-1.903a8.933 8.933 0 01-1.493-1.402 4.295 4.295 0 01-.355-.487l-.08-.131.008-.153C2.615 13.219 4.54 12.5 10 12.5z'/%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-user-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-2-2h24v24H-2z'/%3E%3Cpath d='M10 19.5a9.5 9.5 0 110-19 9.5 9.5 0 010 19z'/%3E%3Cpath d='M10 10.5a3.5 3.5 0 110-7 3.5 3.5 0 010 7zm0 2c5.459 0 7.385.719 7.495 2.924l.008.153-.08.131c-.085.14-.208.31-.355.487a8.933 8.933 0 01-1.493 1.402C13.93 18.832 12.026 19.5 10 19.5c-2.026 0-3.931-.668-5.575-1.903a8.933 8.933 0 01-1.493-1.402 4.295 4.295 0 01-.355-.487l-.08-.131.008-.153C2.615 13.219 4.54 12.5 10 12.5z'/%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-user-active: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-2-2h24v24H-2z'/%3E%3Cpath d='M10 19.5a9.5 9.5 0 110-19 9.5 9.5 0 010 19z'/%3E%3Cpath d='M10 10.5a3.5 3.5 0 110-7 3.5 3.5 0 010 7zm0 2c5.459 0 7.385.719 7.495 2.924l.008.153-.08.131c-.085.14-.208.31-.355.487a8.933 8.933 0 01-1.493 1.402C13.93 18.832 12.026 19.5 10 19.5c-2.026 0-3.931-.668-5.575-1.903a8.933 8.933 0 01-1.493-1.402 4.295 4.295 0 01-.355-.487l-.08-.131.008-.153C2.615 13.219 4.54 12.5 10 12.5z'/%3E%3C/g%3E%3C/svg%3E");

  --icon-navbar-my-dashboard-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' xmlns='http://www.w3.org/2000/svg' fill='%238dabd4'%3E%3Cpath d='M2 0h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2v-5a2 2 0 012-2zM15 0h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2v-5a2 2 0 012-2z'/%3E%3C/svg%3E");
  --icon-navbar-my-dashboard-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M2 0h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2v-5a2 2 0 012-2zM15 0h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2v-5a2 2 0 012-2z'/%3E%3C/svg%3E");
  --icon-navbar-my-dashboard-active: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M2 0h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2v-5a2 2 0 012-2zM15 0h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2v-5a2 2 0 012-2z'/%3E%3C/svg%3E");
  --icon-navbar-reports-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' xmlns='http://www.w3.org/2000/svg' fill='%238dabd4'%3E%3Cpath d='M2 0h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2v-5a2 2 0 012-2zM15 0h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2v-5a2 2 0 012-2z'/%3E%3C/svg%3E");
  --icon-navbar-reports-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M2 0h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2v-5a2 2 0 012-2zM15 0h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2v-5a2 2 0 012-2z'/%3E%3C/svg%3E");
  --icon-navbar-reports-active: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M2 0h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2v-5a2 2 0 012-2zM15 0h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2V2a2 2 0 012-2zm0 11h7a2 2 0 012 2v5a2 2 0 01-2 2h-7a2 2 0 01-2-2v-5a2 2 0 012-2z'/%3E%3C/svg%3E");

  --icon-navbar-new-normal: url('/decisionanalytics/ascend-intelligence/assets/new-05dcf459.svg');
  --icon-navbar-new-hover: url('/decisionanalytics/ascend-intelligence/assets/new-f86c83f9.svg');
  --icon-navbar-new-active: url('/decisionanalytics/ascend-intelligence/assets/new-4b3a77ba.svg');

  --icon-navbar-home-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='20' fill='%238dabd4'%3E%3Cpath fill-rule='evenodd' class='shp0' d='M3.84 19.96V9.4H0L12-.2l12 9.6h-3.84v10.56H3.84zm10.56-7.68H9.6V19h4.8v-6.72z'/%3E%3C/svg%3E");
  --icon-navbar-home-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='20' fill='%23fff'%3E%3Cpath fill-rule='evenodd' class='shp0' d='M3.84 19.96V9.4H0L12-.2l12 9.6h-3.84v10.56H3.84zm10.56-7.68H9.6V19h4.8v-6.72z'/%3E%3C/svg%3E");
  --icon-navbar-home-active: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='20' fill='%23fff'%3E%3Cpath fill-rule='evenodd' class='shp0' d='M3.84 19.96V9.4H0L12-.2l12 9.6h-3.84v10.56H3.84zm10.56-7.68H9.6V19h4.8v-6.72z'/%3E%3C/svg%3E");
}

:root {
  --icon-navbar-challenger-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12' fill='%23fff'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");
  --icon-navbar-challenger-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f2eded'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12' fill='%23fff'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");
  --icon-navbar-challenger-active: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");

  --icon-navbar-acquire-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12' fill='%23fff'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");
  --icon-navbar-acquire-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f2eded'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12' fill='%23fff'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");
  --icon-navbar-acquire-active: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");

  --icon-navbar-faas-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='gray' fill-rule='evenodd'%3E%3Ccircle cx='15.01' cy='15' r='15' fill='%23fff'/%3E%3Cpath d='M7.788 8.827l-.862.161c-.166.031-.329.07-.495.094-.27.039-.544-.157-.582-.406-.047-.312.141-.556.463-.61 1.035-.172 2.07-.346 3.104-.52l2.706-.447c.166-.027.334-.047.496-.088a.187.187 0 00.106-.13 2.18 2.18 0 01.395-.956c.954-1.324 3.015-1.206 3.798.22.067.123.137.139.263.116.574-.102 1.15-.196 1.725-.292a2481.347 2481.347 0 013.796-.634c.243-.041.488-.074.733-.118.316-.056.6.115.643.397.048.311-.156.554-.486.607-.521.078-1.04.165-1.56.252a.388.388 0 00-.074.031l.633 1.284c.766 1.549 1.535 3.097 2.305 4.645.119.237.122.474.081.723-.151.904-.564 1.67-1.278 2.27a3.578 3.578 0 01-1.834.827c-1.326.186-2.441-.217-3.341-1.174a3.415 3.415 0 01-.908-1.909c-.018-.132-.03-.264-.045-.396a.785.785 0 01.079-.45c.887-1.812 1.771-3.625 2.652-5.44l.072-.152-3.173.537c-.04.627-.275 1.158-.743 1.586-.258.235-.57.405-.909.496-.083.023-.107.058-.1.133v13.519h3.33c.31 0 .532.214.532.5a.502.502 0 01-.494.497h-7.633c-.326 0-.495-.114-.57-.379a.48.48 0 01.075-.416.504.504 0 01.38-.204h3.366V9.548c0-.118-.024-.173-.15-.211a2.157 2.157 0 01-1.387-1.213c-.049-.107-.102-.12-.213-.1-.584.102-1.17.194-1.755.29-.47.076-.94.15-1.427.23l.084.175c.93 1.884 1.86 3.767 2.791 5.648.057.12.08.254.066.386-.052 1.063-.468 1.96-1.285 2.667a3.758 3.758 0 01-4.726.12 3.546 3.546 0 01-1.374-2.274 4.1 4.1 0 01-.049-.34 1.09 1.09 0 01.098-.61c.88-1.78 1.75-3.564 2.62-5.348.018-.038.033-.076.061-.14zm15.83 3.394L21.23 7.362l-2.384 4.86h4.774zm-12.574 2.02L8.66 9.395 6.284 14.24l4.76.001zm12.83-1.006h-5.261c-.037.89 1.164 2.02 2.28 2.132 1.452.148 2.706-.778 2.98-2.132zm-17.85 2.031c.26 1.415 1.64 2.359 3.09 2.115 1.285-.203 2.094-1.303 2.165-2.115H6.024zm10.153-8.05c-.005-.662-.557-1.194-1.233-1.191-.677.003-1.224.54-1.222 1.201.001.661.55 1.197 1.226 1.197.327 0 .64-.127.872-.354a1.19 1.19 0 00.357-.854z' fill='%23FE0194' fill-rule='nonzero'/%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-faas-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f2eded' fill-rule='evenodd'%3E%3Ccircle cx='15.01' cy='15' r='15' fill='%23fff'/%3E%3Cpath d='M7.788 8.827l-.862.161c-.166.031-.329.07-.495.094-.27.039-.544-.157-.582-.406-.047-.312.141-.556.463-.61 1.035-.172 2.07-.346 3.104-.52l2.706-.447c.166-.027.334-.047.496-.088a.187.187 0 00.106-.13 2.18 2.18 0 01.395-.956c.954-1.324 3.015-1.206 3.798.22.067.123.137.139.263.116.574-.102 1.15-.196 1.725-.292a2481.347 2481.347 0 013.796-.634c.243-.041.488-.074.733-.118.316-.056.6.115.643.397.048.311-.156.554-.486.607-.521.078-1.04.165-1.56.252a.388.388 0 00-.074.031l.633 1.284c.766 1.549 1.535 3.097 2.305 4.645.119.237.122.474.081.723-.151.904-.564 1.67-1.278 2.27a3.578 3.578 0 01-1.834.827c-1.326.186-2.441-.217-3.341-1.174a3.415 3.415 0 01-.908-1.909c-.018-.132-.03-.264-.045-.396a.785.785 0 01.079-.45c.887-1.812 1.771-3.625 2.652-5.44l.072-.152-3.173.537c-.04.627-.275 1.158-.743 1.586-.258.235-.57.405-.909.496-.083.023-.107.058-.1.133v13.519h3.33c.31 0 .532.214.532.5a.502.502 0 01-.494.497h-7.633c-.326 0-.495-.114-.57-.379a.48.48 0 01.075-.416.504.504 0 01.38-.204h3.366V9.548c0-.118-.024-.173-.15-.211a2.157 2.157 0 01-1.387-1.213c-.049-.107-.102-.12-.213-.1-.584.102-1.17.194-1.755.29-.47.076-.94.15-1.427.23l.084.175c.93 1.884 1.86 3.767 2.791 5.648.057.12.08.254.066.386-.052 1.063-.468 1.96-1.285 2.667a3.758 3.758 0 01-4.726.12 3.546 3.546 0 01-1.374-2.274 4.1 4.1 0 01-.049-.34 1.09 1.09 0 01.098-.61c.88-1.78 1.75-3.564 2.62-5.348.018-.038.033-.076.061-.14zm15.83 3.394L21.23 7.362l-2.384 4.86h4.774zm-12.574 2.02L8.66 9.395 6.284 14.24l4.76.001zm12.83-1.006h-5.261c-.037.89 1.164 2.02 2.28 2.132 1.452.148 2.706-.778 2.98-2.132zm-17.85 2.031c.26 1.415 1.64 2.359 3.09 2.115 1.285-.203 2.094-1.303 2.165-2.115H6.024zm10.153-8.05c-.005-.662-.557-1.194-1.233-1.191-.677.003-1.224.54-1.222 1.201.001.661.55 1.197 1.226 1.197.327 0 .64-.127.872-.354a1.19 1.19 0 00.357-.854z' fill='%23FE0194' fill-rule='nonzero'/%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-faas-active: url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Ccircle cx='15.01' cy='15' r='15'/%3E%3Cpath d='M7.788 8.827l-.862.161c-.166.031-.329.07-.495.094-.27.039-.544-.157-.582-.406-.047-.312.141-.556.463-.61 1.035-.172 2.07-.346 3.104-.52l2.706-.447c.166-.027.334-.047.496-.088a.187.187 0 00.106-.13 2.18 2.18 0 01.395-.956c.954-1.324 3.015-1.206 3.798.22.067.123.137.139.263.116.574-.102 1.15-.196 1.725-.292a2481.347 2481.347 0 013.796-.634c.243-.041.488-.074.733-.118.316-.056.6.115.643.397.048.311-.156.554-.486.607-.521.078-1.04.165-1.56.252a.388.388 0 00-.074.031l.633 1.284c.766 1.549 1.535 3.097 2.305 4.645.119.237.122.474.081.723-.151.904-.564 1.67-1.278 2.27a3.578 3.578 0 01-1.834.827c-1.326.186-2.441-.217-3.341-1.174a3.415 3.415 0 01-.908-1.909c-.018-.132-.03-.264-.045-.396a.785.785 0 01.079-.45c.887-1.812 1.771-3.625 2.652-5.44l.072-.152-3.173.537c-.04.627-.275 1.158-.743 1.586-.258.235-.57.405-.909.496-.083.023-.107.058-.1.133v13.519h3.33c.31 0 .532.214.532.5a.502.502 0 01-.494.497h-7.633c-.326 0-.495-.114-.57-.379a.48.48 0 01.075-.416.504.504 0 01.38-.204h3.366V9.548c0-.118-.024-.173-.15-.211a2.157 2.157 0 01-1.387-1.213c-.049-.107-.102-.12-.213-.1-.584.102-1.17.194-1.755.29-.47.076-.94.15-1.427.23l.084.175c.93 1.884 1.86 3.767 2.791 5.648.057.12.08.254.066.386-.052 1.063-.468 1.96-1.285 2.667a3.758 3.758 0 01-4.726.12 3.546 3.546 0 01-1.374-2.274 4.1 4.1 0 01-.049-.34 1.09 1.09 0 01.098-.61c.88-1.78 1.75-3.564 2.62-5.348.018-.038.033-.076.061-.14zm15.83 3.394L21.23 7.362l-2.384 4.86h4.774zm-12.574 2.02L8.66 9.395 6.284 14.24l4.76.001zm12.83-1.006h-5.261c-.037.89 1.164 2.02 2.28 2.132 1.452.148 2.706-.778 2.98-2.132zm-17.85 2.031c.26 1.415 1.64 2.359 3.09 2.115 1.285-.203 2.094-1.303 2.165-2.115H6.024zm10.153-8.05c-.005-.662-.557-1.194-1.233-1.191-.677.003-1.224.54-1.222 1.201.001.661.55 1.197 1.226 1.197.327 0 .64-.127.872-.354a1.19 1.19 0 00.357-.854z' fill='%23FE0194' fill-rule='nonzero'/%3E%3C/g%3E%3C/svg%3E");

  --icon-navbar-pulse-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray'%3E%3Cellipse cx='12.01' cy='12.02' rx='12' ry='11.97' fill='%23fff'/%3E%3Cpath d='M20.9 12.53c.06.07 0 .17.11.23v.33a2.85 2.85 0 01-.12.31.92.92 0 01-1.51.1.29.29 0 00-.24-.11h-1.75a.26.26 0 00-.26.14l-.88 1.4a.45.45 0 01-.37.26.48.48 0 01-.51-.33c-.09-.22-.16-.44-.25-.65-.2-.55-.41-1.1-.61-1.66v-.05a2.28 2.28 0 00-.15.36c-.43 1.13-.87 2.26-1.3 3.4l-.33.84a.46.46 0 01-.57.32.44.44 0 01-.35-.34c0-.24-.09-.47-.13-.7s-.05-.23-.06-.34c-.06-.31-.12-.62-.17-.93-.09-.51-.19-1-.28-1.52l-.27-1.51c-.09-.51-.19-1-.28-1.52q-.08-.47-.18-.93l-.15.71-.18.9c-.13.59-.25 1.18-.37 1.78s-.21 1.06-.33 1.59v.22a.49.49 0 01-.93 0l-.24-.65c-.21-.57-.43-1.14-.64-1.72 0 0 0-.12-.07-.12s-.06.07-.08.11c-.1.21-.2.42-.31.62a.49.49 0 01-.48.3h-1.9s-.07 0-.1.07a.91.91 0 01-.53.35A.89.89 0 013 13a.93.93 0 01.28-.71.9.9 0 011.36.14.13.13 0 00.14.06 1 1 0 01.24 0h1.21a.14.14 0 00.15-.09l.5-1c.08-.16.15-.32.25-.48a.47.47 0 01.68-.11.41.41 0 01.13.19c.16.4.3.8.45 1.2l.31.8c0-.3.12-.6.17-.89s.15-.67.21-1 .13-.63.19-.94.15-.74.23-1.11c0-.2.07-.39.13-.59v-.11c.07-.32.13-.64.2-1A2.87 2.87 0 0110 7a.44.44 0 01.47-.33.44.44 0 01.41.36c.07.34.13.68.19 1 .1.53.19 1.05.29 1.57l.18 1c.05.32.11.65.17 1l.18 1c.06.35.13.71.19 1.06l.18.95c0 .21.07.41.11.62v.02l.42-1.08c.1-.27.2-.54.31-.81s.28-.74.43-1.11.25-.66.38-1a2 2 0 01.11-.26.44.44 0 01.42-.23.42.42 0 01.38.28c.14.35.27.7.4 1s.25.67.38 1 .13.39.21.58v.07c0 .01.05 0 .07-.06l.49-.78a.6.6 0 01.2-.25.53.53 0 01.3-.09h2.22a.18.18 0 00.16-.08.87.87 0 01.87-.36.84.84 0 01.61.41.22.22 0 01.17.05z' fill='%23ed358f'/%3E%3Cpath d='M9.71 8.33a2.44 2.44 0 01.07-.39c0-.22.08-.44.13-.65s.05-.41.22-.55.14-.07.19-.13h.23a.52.52 0 01.33.47c0 .14.05.28.07.41.06.36.13.71.19 1.07s.11.6.17.9l.18 1 .12.65c.06.33.11.66.17 1l.18.93c.06.33.11.67.17 1s.09.44.13.66 0 .27.07.41 0 .06 0 .06c.13-.35.26-.71.4-1.07l.44-1.1c.13-.35.27-.71.4-1.07L14 11a.47.47 0 01.87 0l.39 1c.13.33.26.66.38 1l.21.54v.09c0 .01.05-.05.07-.08l.52-.84a.52.52 0 01.47-.26h2.19a.18.18 0 00.17-.08.87.87 0 01.9-.36.77.77 0 01.64.5c-.08-.08-.13-.18-.21-.25a.88.88 0 00-1.19 0 .7.7 0 00-.14.16c0 .06-.09.05-.14.05H17a.46.46 0 00-.42.23l-.12.19-.45.71s0 .07-.08.07 0 0-.05-.08c-.12-.33-.25-.66-.37-1s-.25-.67-.38-1-.15-.44-.25-.66a.4.4 0 00-.4-.25.43.43 0 00-.41.3l-.81 2.12-.57 1.47c-.08.19-.15.39-.22.58v.06l-.15-.82c-.09-.5-.17-1-.26-1.48l-.18-1c-.08-.4-.14-.8-.21-1.21s-.13-.62-.18-.94-.12-.65-.17-1-.12-.6-.17-.89-.08-.48-.13-.72-.05-.41-.26-.5A.41.41 0 0010 7a7.79 7.79 0 00-.2 1c0 .14-.07.27-.1.41z' fill='%23f69ec9'/%3E%3Cpath d='M9.71 8.33a2.66 2.66 0 01-.07.39c-.07.37-.15.74-.23 1.11l-.12.61c-.05.2-.09.41-.13.62s-.09.44-.14.66-.14.63-.19.94a1.75 1.75 0 00-.06.33v.08s-.06 0-.07-.07l-.49-1.32c-.09-.22-.17-.45-.26-.68a.38.38 0 00-.37-.29.43.43 0 00-.48.29l-.53 1.06a3.78 3.78 0 00-.17.35.13.13 0 01-.15.09H4.92a.35.35 0 01-.35-.14.82.82 0 00-1-.21.86.86 0 00-.48.65.88.88 0 001.57.67.2.2 0 01.21-.1h.84-.9a.16.16 0 00-.15.08.91.91 0 01-1.61-.25v-.5c.07 0 .05-.1.08-.15a.93.93 0 011-.52 1 1 0 01.55.37.14.14 0 00.13.07h1.42a.15.15 0 00.15-.1l.52-1c.08-.15.14-.29.23-.43a.43.43 0 01.42-.22.43.43 0 01.38.26c.11.27.21.54.31.82s.26.67.38 1c0 .07.05.13.07.19s0 .05 0 .05v-.05c0-.18.07-.35.11-.53s.11-.58.17-.87l.18-.89.18-.85c.07-.36.14-.71.22-1.07.09-.18.13-.32.16-.45z' fill='%23f48dc0'/%3E%3C/svg%3E");
  --icon-navbar-pulse-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f2eded'%3E%3Cellipse cx='12.01' cy='12.02' rx='12' ry='11.97' fill='%23fff'/%3E%3Cpath d='M20.9 12.53c.06.07 0 .17.11.23v.33a2.85 2.85 0 01-.12.31.92.92 0 01-1.51.1.29.29 0 00-.24-.11h-1.75a.26.26 0 00-.26.14l-.88 1.4a.45.45 0 01-.37.26.48.48 0 01-.51-.33c-.09-.22-.16-.44-.25-.65-.2-.55-.41-1.1-.61-1.66v-.05a2.28 2.28 0 00-.15.36c-.43 1.13-.87 2.26-1.3 3.4l-.33.84a.46.46 0 01-.57.32.44.44 0 01-.35-.34c0-.24-.09-.47-.13-.7s-.05-.23-.06-.34c-.06-.31-.12-.62-.17-.93-.09-.51-.19-1-.28-1.52l-.27-1.51c-.09-.51-.19-1-.28-1.52q-.08-.47-.18-.93l-.15.71-.18.9c-.13.59-.25 1.18-.37 1.78s-.21 1.06-.33 1.59v.22a.49.49 0 01-.93 0l-.24-.65c-.21-.57-.43-1.14-.64-1.72 0 0 0-.12-.07-.12s-.06.07-.08.11c-.1.21-.2.42-.31.62a.49.49 0 01-.48.3h-1.9s-.07 0-.1.07a.91.91 0 01-.53.35A.89.89 0 013 13a.93.93 0 01.28-.71.9.9 0 011.36.14.13.13 0 00.14.06 1 1 0 01.24 0h1.21a.14.14 0 00.15-.09l.5-1c.08-.16.15-.32.25-.48a.47.47 0 01.68-.11.41.41 0 01.13.19c.16.4.3.8.45 1.2l.31.8c0-.3.12-.6.17-.89s.15-.67.21-1 .13-.63.19-.94.15-.74.23-1.11c0-.2.07-.39.13-.59v-.11c.07-.32.13-.64.2-1A2.87 2.87 0 0110 7a.44.44 0 01.47-.33.44.44 0 01.41.36c.07.34.13.68.19 1 .1.53.19 1.05.29 1.57l.18 1c.05.32.11.65.17 1l.18 1c.06.35.13.71.19 1.06l.18.95c0 .21.07.41.11.62v.02l.42-1.08c.1-.27.2-.54.31-.81s.28-.74.43-1.11.25-.66.38-1a2 2 0 01.11-.26.44.44 0 01.42-.23.42.42 0 01.38.28c.14.35.27.7.4 1s.25.67.38 1 .13.39.21.58v.07c0 .01.05 0 .07-.06l.49-.78a.6.6 0 01.2-.25.53.53 0 01.3-.09h2.22a.18.18 0 00.16-.08.87.87 0 01.87-.36.84.84 0 01.61.41.22.22 0 01.17.05z' fill='%23ed358f'/%3E%3Cpath d='M9.71 8.33a2.44 2.44 0 01.07-.39c0-.22.08-.44.13-.65s.05-.41.22-.55.14-.07.19-.13h.23a.52.52 0 01.33.47c0 .14.05.28.07.41.06.36.13.71.19 1.07s.11.6.17.9l.18 1 .12.65c.06.33.11.66.17 1l.18.93c.06.33.11.67.17 1s.09.44.13.66 0 .27.07.41 0 .06 0 .06c.13-.35.26-.71.4-1.07l.44-1.1c.13-.35.27-.71.4-1.07L14 11a.47.47 0 01.87 0l.39 1c.13.33.26.66.38 1l.21.54v.09c0 .01.05-.05.07-.08l.52-.84a.52.52 0 01.47-.26h2.19a.18.18 0 00.17-.08.87.87 0 01.9-.36.77.77 0 01.64.5c-.08-.08-.13-.18-.21-.25a.88.88 0 00-1.19 0 .7.7 0 00-.14.16c0 .06-.09.05-.14.05H17a.46.46 0 00-.42.23l-.12.19-.45.71s0 .07-.08.07 0 0-.05-.08c-.12-.33-.25-.66-.37-1s-.25-.67-.38-1-.15-.44-.25-.66a.4.4 0 00-.4-.25.43.43 0 00-.41.3l-.81 2.12-.57 1.47c-.08.19-.15.39-.22.58v.06l-.15-.82c-.09-.5-.17-1-.26-1.48l-.18-1c-.08-.4-.14-.8-.21-1.21s-.13-.62-.18-.94-.12-.65-.17-1-.12-.6-.17-.89-.08-.48-.13-.72-.05-.41-.26-.5A.41.41 0 0010 7a7.79 7.79 0 00-.2 1c0 .14-.07.27-.1.41z' fill='%23f69ec9'/%3E%3Cpath d='M9.71 8.33a2.66 2.66 0 01-.07.39c-.07.37-.15.74-.23 1.11l-.12.61c-.05.2-.09.41-.13.62s-.09.44-.14.66-.14.63-.19.94a1.75 1.75 0 00-.06.33v.08s-.06 0-.07-.07l-.49-1.32c-.09-.22-.17-.45-.26-.68a.38.38 0 00-.37-.29.43.43 0 00-.48.29l-.53 1.06a3.78 3.78 0 00-.17.35.13.13 0 01-.15.09H4.92a.35.35 0 01-.35-.14.82.82 0 00-1-.21.86.86 0 00-.48.65.88.88 0 001.57.67.2.2 0 01.21-.1h.84-.9a.16.16 0 00-.15.08.91.91 0 01-1.61-.25v-.5c.07 0 .05-.1.08-.15a.93.93 0 011-.52 1 1 0 01.55.37.14.14 0 00.13.07h1.42a.15.15 0 00.15-.1l.52-1c.08-.15.14-.29.23-.43a.43.43 0 01.42-.22.43.43 0 01.38.26c.11.27.21.54.31.82s.26.67.38 1c0 .07.05.13.07.19s0 .05 0 .05v-.05c0-.18.07-.35.11-.53s.11-.58.17-.87l.18-.89.18-.85c.07-.36.14-.71.22-1.07.09-.18.13-.32.16-.45z' fill='%23f48dc0'/%3E%3C/svg%3E");
  --icon-navbar-pulse-active: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cellipse cx='12.01' cy='12.02' rx='12' ry='11.97'/%3E%3Cpath d='M20.9 12.53c.06.07 0 .17.11.23v.33a2.85 2.85 0 01-.12.31.92.92 0 01-1.51.1.29.29 0 00-.24-.11h-1.75a.26.26 0 00-.26.14l-.88 1.4a.45.45 0 01-.37.26.48.48 0 01-.51-.33c-.09-.22-.16-.44-.25-.65-.2-.55-.41-1.1-.61-1.66v-.05a2.28 2.28 0 00-.15.36c-.43 1.13-.87 2.26-1.3 3.4l-.33.84a.46.46 0 01-.57.32.44.44 0 01-.35-.34c0-.24-.09-.47-.13-.7s-.05-.23-.06-.34c-.06-.31-.12-.62-.17-.93-.09-.51-.19-1-.28-1.52l-.27-1.51c-.09-.51-.19-1-.28-1.52q-.08-.47-.18-.93l-.15.71-.18.9c-.13.59-.25 1.18-.37 1.78s-.21 1.06-.33 1.59v.22a.49.49 0 01-.93 0l-.24-.65c-.21-.57-.43-1.14-.64-1.72 0 0 0-.12-.07-.12s-.06.07-.08.11c-.1.21-.2.42-.31.62a.49.49 0 01-.48.3h-1.9s-.07 0-.1.07a.91.91 0 01-.53.35A.89.89 0 013 13a.93.93 0 01.28-.71.9.9 0 011.36.14.13.13 0 00.14.06 1 1 0 01.24 0h1.21a.14.14 0 00.15-.09l.5-1c.08-.16.15-.32.25-.48a.47.47 0 01.68-.11.41.41 0 01.13.19c.16.4.3.8.45 1.2l.31.8c0-.3.12-.6.17-.89s.15-.67.21-1 .13-.63.19-.94.15-.74.23-1.11c0-.2.07-.39.13-.59v-.11c.07-.32.13-.64.2-1A2.87 2.87 0 0110 7a.44.44 0 01.47-.33.44.44 0 01.41.36c.07.34.13.68.19 1 .1.53.19 1.05.29 1.57l.18 1c.05.32.11.65.17 1l.18 1c.06.35.13.71.19 1.06l.18.95c0 .21.07.41.11.62v.02l.42-1.08c.1-.27.2-.54.31-.81s.28-.74.43-1.11.25-.66.38-1a2 2 0 01.11-.26.44.44 0 01.42-.23.42.42 0 01.38.28c.14.35.27.7.4 1s.25.67.38 1 .13.39.21.58v.07c0 .01.05 0 .07-.06l.49-.78a.6.6 0 01.2-.25.53.53 0 01.3-.09h2.22a.18.18 0 00.16-.08.87.87 0 01.87-.36.84.84 0 01.61.41.22.22 0 01.17.05z' fill='%23ed358f'/%3E%3Cpath d='M9.71 8.33a2.44 2.44 0 01.07-.39c0-.22.08-.44.13-.65s.05-.41.22-.55.14-.07.19-.13h.23a.52.52 0 01.33.47c0 .14.05.28.07.41.06.36.13.71.19 1.07s.11.6.17.9l.18 1 .12.65c.06.33.11.66.17 1l.18.93c.06.33.11.67.17 1s.09.44.13.66 0 .27.07.41 0 .06 0 .06c.13-.35.26-.71.4-1.07l.44-1.1c.13-.35.27-.71.4-1.07L14 11a.47.47 0 01.87 0l.39 1c.13.33.26.66.38 1l.21.54v.09c0 .01.05-.05.07-.08l.52-.84a.52.52 0 01.47-.26h2.19a.18.18 0 00.17-.08.87.87 0 01.9-.36.77.77 0 01.64.5c-.08-.08-.13-.18-.21-.25a.88.88 0 00-1.19 0 .7.7 0 00-.14.16c0 .06-.09.05-.14.05H17a.46.46 0 00-.42.23l-.12.19-.45.71s0 .07-.08.07 0 0-.05-.08c-.12-.33-.25-.66-.37-1s-.25-.67-.38-1-.15-.44-.25-.66a.4.4 0 00-.4-.25.43.43 0 00-.41.3l-.81 2.12-.57 1.47c-.08.19-.15.39-.22.58v.06l-.15-.82c-.09-.5-.17-1-.26-1.48l-.18-1c-.08-.4-.14-.8-.21-1.21s-.13-.62-.18-.94-.12-.65-.17-1-.12-.6-.17-.89-.08-.48-.13-.72-.05-.41-.26-.5A.41.41 0 0010 7a7.79 7.79 0 00-.2 1c0 .14-.07.27-.1.41z' fill='%23f69ec9'/%3E%3Cpath d='M9.71 8.33a2.66 2.66 0 01-.07.39c-.07.37-.15.74-.23 1.11l-.12.61c-.05.2-.09.41-.13.62s-.09.44-.14.66-.14.63-.19.94a1.75 1.75 0 00-.06.33v.08s-.06 0-.07-.07l-.49-1.32c-.09-.22-.17-.45-.26-.68a.38.38 0 00-.37-.29.43.43 0 00-.48.29l-.53 1.06a3.78 3.78 0 00-.17.35.13.13 0 01-.15.09H4.92a.35.35 0 01-.35-.14.82.82 0 00-1-.21.86.86 0 00-.48.65.88.88 0 001.57.67.2.2 0 01.21-.1h.84-.9a.16.16 0 00-.15.08.91.91 0 01-1.61-.25v-.5c.07 0 .05-.1.08-.15a.93.93 0 011-.52 1 1 0 01.55.37.14.14 0 00.13.07h1.42a.15.15 0 00.15-.1l.52-1c.08-.15.14-.29.23-.43a.43.43 0 01.42-.22.43.43 0 01.38.26c.11.27.21.54.31.82s.26.67.38 1c0 .07.05.13.07.19s0 .05 0 .05v-.05c0-.18.07-.35.11-.53s.11-.58.17-.87l.18-.89.18-.85c.07-.36.14-.71.22-1.07.09-.18.13-.32.16-.45z' fill='%23f48dc0'/%3E%3C/svg%3E");

  --icon-navbar-foresight-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='gray' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Ccircle cx='12.01' cy='12' r='12' fill='%23fff'/%3E%3Cpath class='cls-2' d='M19.63 9.74a.61.61 0 000 .27 5.12 5.12 0 01-4.11 4.56 5 5 0 01-4.25-1.11c-.05 0-.07-.05-.12 0l-.72.71c-.05.06 0 .09 0 .13a3.83 3.83 0 01.28.29.4.4 0 010 .59l-2 2c-.69.69-1.39 1.38-2.07 2.07a1.38 1.38 0 01-.85.4.66.66 0 01-.14 0 1.28 1.28 0 01-1.26-1.26 1 1 0 010-.17 1.32 1.32 0 01.39-.83c1.34-1.35 2.69-2.69 4-4a.4.4 0 01.63 0l.24.26c.05 0 .08.07.14 0l.72-.73s.06-.08 0-.13a5 5 0 01-1-2.05 5.12 5.12 0 014.8-6.28h.27a4.83 4.83 0 013.11 1.15 5.06 5.06 0 011.33 1.68 5.23 5.23 0 01.5 1.69 2.54 2.54 0 010 .39v.03a2.72 2.72 0 000 .28z'/%3E%3Cpath class='cls-3' d='M4.4 18.37a1.33 1.33 0 001.24 1.24H4.45c-.06 0-.07 0-.07-.07v-1.17s.01-.01.02 0z'/%3E%3Cpath d='M14.69 4.37h-.29z' fill='%23fce1ee'/%3E%3Cpath d='M19.63 9.68a1 1 0 010-.29z' fill='%23f9c3dd'/%3E%3Cpath d='M4.4 18.37v-.19z' fill='%23facde3'/%3E%3Cpath d='M19.63 9.39v-.1z' fill='%23fbdeed'/%3E%3Cpath class='cls-3' d='M18.79 9.46a4.35 4.35 0 01-3 4.18 4.24 4.24 0 01-5.24-2.59 4.21 4.21 0 011-4.69 4 4 0 012.69-1.19 4.29 4.29 0 014.46 3.48 2 2 0 01.06.35 4.07 4.07 0 01.03.46z'/%3E%3Cpath d='M10.11 9.9v-.22c.01.08.05.15 0 .22z' fill='%23f272b1'/%3E%3Cpath d='M19 9.61v.19s-.1-.13 0-.19z' fill='%23f26eaf'/%3E%3Cpath d='M14.74 12h-.15c.05-.07.09-.09.15 0z' fill='%23f8b6d7'/%3E%3Cpath d='M19 9.8v.06s-.08-.03 0-.06z' fill='%23f6a5cd'/%3E%3Cpath d='M13.68 6.65h.13a.09.09 0 01-.13 0z' fill='%23f7aed2'/%3E%3Cpath d='M10.09 9.68v-.05a.05.05 0 010 .05z' fill='%23f69dc9'/%3E%3Cpath class='cls-2' d='M10.09 9.68a.29.29 0 000-.09.44.44 0 01.77-.1.1.1 0 00.09 0h.67a.12.12 0 00.12-.08c.11-.22.22-.43.32-.65a.23.23 0 01.23-.16.25.25 0 01.22.18l.33.88a.16.16 0 00.06.09c0-.17.07-.34.1-.51.17-.81.34-1.62.5-2.43a.24.24 0 01.16-.2h.13a.26.26 0 01.17.22c.16.93.33 1.86.5 2.79.08.41.15.82.23 1.24a.18.18 0 00.06-.1l.75-2a.26.26 0 01.2-.19.25.25 0 01.26.18c.14.4.29.8.44 1.2v.08s.05 0 .07-.08l.21-.33a.29.29 0 01.32-.1h1a.15.15 0 00.13-.06.43.43 0 01.76.14v.19a.18.18 0 000 .1.44.44 0 01-.77.11.14.14 0 00-.11 0h-.9a.13.13 0 00-.11.06l-.43.68a.22.22 0 01-.24.14c-.11 0-.16-.09-.2-.18l-.39-1s0-.09-.06-.12l-.26.66c-.2.54-.41 1.07-.61 1.61a.37.37 0 01-.13.17h-.15a.27.27 0 01-.18-.23c-.22-1.19-.43-2.39-.65-3.58a.19.19 0 000-.07c-.06 0 0 .06 0 .08-.17.83-.33 1.65-.5 2.47q0 .21-.21.21c-.11 0-.19 0-.24-.18-.15-.38-.29-.76-.43-1.13a.38.38 0 00-.05-.12c-.07.13-.13.25-.18.37a.28.28 0 01-.29.18H11a.15.15 0 00-.12 0 .44.44 0 01-.76-.12c0-.07-.05-.15-.03-.22z'/%3E%3Cpath d='M13.7 8.17a.17.17 0 010-.1z' fill='%23f486bc'/%3E%3C/svg%3E");
  --icon-navbar-foresight-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23f2eded' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Ccircle cx='12.01' cy='12' r='12' fill='%23fff'/%3E%3Cpath class='cls-2' d='M19.63 9.74a.61.61 0 000 .27 5.12 5.12 0 01-4.11 4.56 5 5 0 01-4.25-1.11c-.05 0-.07-.05-.12 0l-.72.71c-.05.06 0 .09 0 .13a3.83 3.83 0 01.28.29.4.4 0 010 .59l-2 2c-.69.69-1.39 1.38-2.07 2.07a1.38 1.38 0 01-.85.4.66.66 0 01-.14 0 1.28 1.28 0 01-1.26-1.26 1 1 0 010-.17 1.32 1.32 0 01.39-.83c1.34-1.35 2.69-2.69 4-4a.4.4 0 01.63 0l.24.26c.05 0 .08.07.14 0l.72-.73s.06-.08 0-.13a5 5 0 01-1-2.05 5.12 5.12 0 014.8-6.28h.27a4.83 4.83 0 013.11 1.15 5.06 5.06 0 011.33 1.68 5.23 5.23 0 01.5 1.69 2.54 2.54 0 010 .39v.03a2.72 2.72 0 000 .28z'/%3E%3Cpath class='cls-3' d='M4.4 18.37a1.33 1.33 0 001.24 1.24H4.45c-.06 0-.07 0-.07-.07v-1.17s.01-.01.02 0z'/%3E%3Cpath d='M14.69 4.37h-.29z' fill='%23fce1ee'/%3E%3Cpath d='M19.63 9.68a1 1 0 010-.29z' fill='%23f9c3dd'/%3E%3Cpath d='M4.4 18.37v-.19z' fill='%23facde3'/%3E%3Cpath d='M19.63 9.39v-.1z' fill='%23fbdeed'/%3E%3Cpath class='cls-3' d='M18.79 9.46a4.35 4.35 0 01-3 4.18 4.24 4.24 0 01-5.24-2.59 4.21 4.21 0 011-4.69 4 4 0 012.69-1.19 4.29 4.29 0 014.46 3.48 2 2 0 01.06.35 4.07 4.07 0 01.03.46z'/%3E%3Cpath d='M10.11 9.9v-.22c.01.08.05.15 0 .22z' fill='%23f272b1'/%3E%3Cpath d='M19 9.61v.19s-.1-.13 0-.19z' fill='%23f26eaf'/%3E%3Cpath d='M14.74 12h-.15c.05-.07.09-.09.15 0z' fill='%23f8b6d7'/%3E%3Cpath d='M19 9.8v.06s-.08-.03 0-.06z' fill='%23f6a5cd'/%3E%3Cpath d='M13.68 6.65h.13a.09.09 0 01-.13 0z' fill='%23f7aed2'/%3E%3Cpath d='M10.09 9.68v-.05a.05.05 0 010 .05z' fill='%23f69dc9'/%3E%3Cpath class='cls-2' d='M10.09 9.68a.29.29 0 000-.09.44.44 0 01.77-.1.1.1 0 00.09 0h.67a.12.12 0 00.12-.08c.11-.22.22-.43.32-.65a.23.23 0 01.23-.16.25.25 0 01.22.18l.33.88a.16.16 0 00.06.09c0-.17.07-.34.1-.51.17-.81.34-1.62.5-2.43a.24.24 0 01.16-.2h.13a.26.26 0 01.17.22c.16.93.33 1.86.5 2.79.08.41.15.82.23 1.24a.18.18 0 00.06-.1l.75-2a.26.26 0 01.2-.19.25.25 0 01.26.18c.14.4.29.8.44 1.2v.08s.05 0 .07-.08l.21-.33a.29.29 0 01.32-.1h1a.15.15 0 00.13-.06.43.43 0 01.76.14v.19a.18.18 0 000 .1.44.44 0 01-.77.11.14.14 0 00-.11 0h-.9a.13.13 0 00-.11.06l-.43.68a.22.22 0 01-.24.14c-.11 0-.16-.09-.2-.18l-.39-1s0-.09-.06-.12l-.26.66c-.2.54-.41 1.07-.61 1.61a.37.37 0 01-.13.17h-.15a.27.27 0 01-.18-.23c-.22-1.19-.43-2.39-.65-3.58a.19.19 0 000-.07c-.06 0 0 .06 0 .08-.17.83-.33 1.65-.5 2.47q0 .21-.21.21c-.11 0-.19 0-.24-.18-.15-.38-.29-.76-.43-1.13a.38.38 0 00-.05-.12c-.07.13-.13.25-.18.37a.28.28 0 01-.29.18H11a.15.15 0 00-.12 0 .44.44 0 01-.76-.12c0-.07-.05-.15-.03-.22z'/%3E%3Cpath d='M13.7 8.17a.17.17 0 010-.1z' fill='%23f486bc'/%3E%3C/svg%3E");
  --icon-navbar-foresight-active: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Ccircle cx='12.01' cy='12' r='12'/%3E%3Cpath class='cls-2' d='M19.63 9.74a.61.61 0 000 .27 5.12 5.12 0 01-4.11 4.56 5 5 0 01-4.25-1.11c-.05 0-.07-.05-.12 0l-.72.71c-.05.06 0 .09 0 .13a3.83 3.83 0 01.28.29.4.4 0 010 .59l-2 2c-.69.69-1.39 1.38-2.07 2.07a1.38 1.38 0 01-.85.4.66.66 0 01-.14 0 1.28 1.28 0 01-1.26-1.26 1 1 0 010-.17 1.32 1.32 0 01.39-.83c1.34-1.35 2.69-2.69 4-4a.4.4 0 01.63 0l.24.26c.05 0 .08.07.14 0l.72-.73s.06-.08 0-.13a5 5 0 01-1-2.05 5.12 5.12 0 014.8-6.28h.27a4.83 4.83 0 013.11 1.15 5.06 5.06 0 011.33 1.68 5.23 5.23 0 01.5 1.69 2.54 2.54 0 010 .39v.03a2.72 2.72 0 000 .28z'/%3E%3Cpath class='cls-3' d='M4.4 18.37a1.33 1.33 0 001.24 1.24H4.45c-.06 0-.07 0-.07-.07v-1.17s.01-.01.02 0z'/%3E%3Cpath d='M14.69 4.37h-.29z' fill='%23fce1ee'/%3E%3Cpath d='M19.63 9.68a1 1 0 010-.29z' fill='%23f9c3dd'/%3E%3Cpath d='M4.4 18.37v-.19z' fill='%23facde3'/%3E%3Cpath d='M19.63 9.39v-.1z' fill='%23fbdeed'/%3E%3Cpath class='cls-3' d='M18.79 9.46a4.35 4.35 0 01-3 4.18 4.24 4.24 0 01-5.24-2.59 4.21 4.21 0 011-4.69 4 4 0 012.69-1.19 4.29 4.29 0 014.46 3.48 2 2 0 01.06.35 4.07 4.07 0 01.03.46z'/%3E%3Cpath d='M10.11 9.9v-.22c.01.08.05.15 0 .22z' fill='%23f272b1'/%3E%3Cpath d='M19 9.61v.19s-.1-.13 0-.19z' fill='%23f26eaf'/%3E%3Cpath d='M14.74 12h-.15c.05-.07.09-.09.15 0z' fill='%23f8b6d7'/%3E%3Cpath d='M19 9.8v.06s-.08-.03 0-.06z' fill='%23f6a5cd'/%3E%3Cpath d='M13.68 6.65h.13a.09.09 0 01-.13 0z' fill='%23f7aed2'/%3E%3Cpath d='M10.09 9.68v-.05a.05.05 0 010 .05z' fill='%23f69dc9'/%3E%3Cpath class='cls-2' d='M10.09 9.68a.29.29 0 000-.09.44.44 0 01.77-.1.1.1 0 00.09 0h.67a.12.12 0 00.12-.08c.11-.22.22-.43.32-.65a.23.23 0 01.23-.16.25.25 0 01.22.18l.33.88a.16.16 0 00.06.09c0-.17.07-.34.1-.51.17-.81.34-1.62.5-2.43a.24.24 0 01.16-.2h.13a.26.26 0 01.17.22c.16.93.33 1.86.5 2.79.08.41.15.82.23 1.24a.18.18 0 00.06-.1l.75-2a.26.26 0 01.2-.19.25.25 0 01.26.18c.14.4.29.8.44 1.2v.08s.05 0 .07-.08l.21-.33a.29.29 0 01.32-.1h1a.15.15 0 00.13-.06.43.43 0 01.76.14v.19a.18.18 0 000 .1.44.44 0 01-.77.11.14.14 0 00-.11 0h-.9a.13.13 0 00-.11.06l-.43.68a.22.22 0 01-.24.14c-.11 0-.16-.09-.2-.18l-.39-1s0-.09-.06-.12l-.26.66c-.2.54-.41 1.07-.61 1.61a.37.37 0 01-.13.17h-.15a.27.27 0 01-.18-.23c-.22-1.19-.43-2.39-.65-3.58a.19.19 0 000-.07c-.06 0 0 .06 0 .08-.17.83-.33 1.65-.5 2.47q0 .21-.21.21c-.11 0-.19 0-.24-.18-.15-.38-.29-.76-.43-1.13a.38.38 0 00-.05-.12c-.07.13-.13.25-.18.37a.28.28 0 01-.29.18H11a.15.15 0 00-.12 0 .44.44 0 01-.76-.12c0-.07-.05-.15-.03-.22z'/%3E%3Cpath d='M13.7 8.17a.17.17 0 010-.1z' fill='%23f486bc'/%3E%3C/svg%3E");

  --icon-navbar-strategyAdvance-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='gray' viewBox='0 0 24 24'%3E%3Cellipse cx='12.01' cy='11.98' rx='12' ry='11.99' fill='%23fff'/%3E%3Cpath d='M3 13.7v-.14a2.16 2.16 0 014.18-.27c0 .06 0 .1.11.09a4.72 4.72 0 002.48-.94 4.18 4.18 0 001.6-2.74 7.26 7.26 0 00.07-1.32V5.91h-.08L9.82 7.53a.51.51 0 01-.82-.2.52.52 0 01.15-.55L11 4.9l1-1h.08l2.82 2.82a.52.52 0 11-.73.74c-.52-.51-1-1-1.54-1.54l-.06-.09a.13.13 0 000 .12v3a5.43 5.43 0 01-1 3.21 5.33 5.33 0 01-3.24 2.06 4.85 4.85 0 01-.85.13c-.08 0-.11 0-.13.11A2.09 2.09 0 015.65 16 2.15 2.15 0 013 14.34v-.25a.81.81 0 000-.31zm18 .55v.13a2.16 2.16 0 01-4.2.15c0-.07 0-.1-.12-.11a5.69 5.69 0 01-3.18-1.23 5.12 5.12 0 01-1.14-1.27.14.14 0 010-.16 6.51 6.51 0 00.47-1.23c.05 0 .05.1.07.14a4.21 4.21 0 002.94 2.56 5 5 0 00.86.15c.07 0 .11 0 .13-.08a2.15 2.15 0 014.18.34v.19a.57.57 0 000 .26zm-9.19 6.86a.65.65 0 00-.24-.06 2.16 2.16 0 01-.24-4.15c.08 0 .11-.06.11-.15v-3.59a.33.33 0 01.08-.24 3.29 3.29 0 00.43-.54c0-.06.06-.07.11 0a3.56 3.56 0 00.41.53.23.23 0 01.07.17v3.65c0 .09 0 .12.1.15a2.16 2.16 0 01-.34 4.21h-.15a.57.57 0 00-.26 0z' fill='%23ed358f'/%3E%3Cpath d='M3 13.78a.42.42 0 010 .31z' fill='%23f26eaf'/%3E%3Cpath d='M21 14.09a.3.3 0 010-.26z' fill='%23ef4b9c'/%3E%3Cpath d='M11.88 21.11a.39.39 0 01.26 0z' fill='%23f59bc8'/%3E%3Cpath d='M5.16 12.83a1.12 1.12 0 110 2.23 1.12 1.12 0 110-2.23zm13.7.02A1.11 1.11 0 0120 14a1.12 1.12 0 01-2.24-.05 1.12 1.12 0 011.1-1.1zm-7.96 6.08a1.12 1.12 0 111.1 1.13 1.13 1.13 0 01-1.1-1.13z' fill='%23fefefe'/%3E%3C/svg%3E");
  --icon-navbar-strategyAdvance-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23f2eded' viewBox='0 0 24 24'%3E%3Cellipse cx='12.01' cy='11.98' rx='12' ry='11.99' fill='%23fff'/%3E%3Cpath d='M3 13.7v-.14a2.16 2.16 0 014.18-.27c0 .06 0 .1.11.09a4.72 4.72 0 002.48-.94 4.18 4.18 0 001.6-2.74 7.26 7.26 0 00.07-1.32V5.91h-.08L9.82 7.53a.51.51 0 01-.82-.2.52.52 0 01.15-.55L11 4.9l1-1h.08l2.82 2.82a.52.52 0 11-.73.74c-.52-.51-1-1-1.54-1.54l-.06-.09a.13.13 0 000 .12v3a5.43 5.43 0 01-1 3.21 5.33 5.33 0 01-3.24 2.06 4.85 4.85 0 01-.85.13c-.08 0-.11 0-.13.11A2.09 2.09 0 015.65 16 2.15 2.15 0 013 14.34v-.25a.81.81 0 000-.31zm18 .55v.13a2.16 2.16 0 01-4.2.15c0-.07 0-.1-.12-.11a5.69 5.69 0 01-3.18-1.23 5.12 5.12 0 01-1.14-1.27.14.14 0 010-.16 6.51 6.51 0 00.47-1.23c.05 0 .05.1.07.14a4.21 4.21 0 002.94 2.56 5 5 0 00.86.15c.07 0 .11 0 .13-.08a2.15 2.15 0 014.18.34v.19a.57.57 0 000 .26zm-9.19 6.86a.65.65 0 00-.24-.06 2.16 2.16 0 01-.24-4.15c.08 0 .11-.06.11-.15v-3.59a.33.33 0 01.08-.24 3.29 3.29 0 00.43-.54c0-.06.06-.07.11 0a3.56 3.56 0 00.41.53.23.23 0 01.07.17v3.65c0 .09 0 .12.1.15a2.16 2.16 0 01-.34 4.21h-.15a.57.57 0 00-.26 0z' fill='%23ed358f'/%3E%3Cpath d='M3 13.78a.42.42 0 010 .31z' fill='%23f26eaf'/%3E%3Cpath d='M21 14.09a.3.3 0 010-.26z' fill='%23ef4b9c'/%3E%3Cpath d='M11.88 21.11a.39.39 0 01.26 0z' fill='%23f59bc8'/%3E%3Cpath d='M5.16 12.83a1.12 1.12 0 110 2.23 1.12 1.12 0 110-2.23zm13.7.02A1.11 1.11 0 0120 14a1.12 1.12 0 01-2.24-.05 1.12 1.12 0 011.1-1.1zm-7.96 6.08a1.12 1.12 0 111.1 1.13 1.13 1.13 0 01-1.1-1.13z' fill='%23fefefe'/%3E%3C/svg%3E");
  --icon-navbar-strategyAdvance-active: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cellipse cx='12.01' cy='11.98' rx='12' ry='11.99'/%3E%3Cpath d='M3 13.7v-.14a2.16 2.16 0 014.18-.27c0 .06 0 .1.11.09a4.72 4.72 0 002.48-.94 4.18 4.18 0 001.6-2.74 7.26 7.26 0 00.07-1.32V5.91h-.08L9.82 7.53a.51.51 0 01-.82-.2.52.52 0 01.15-.55L11 4.9l1-1h.08l2.82 2.82a.52.52 0 11-.73.74c-.52-.51-1-1-1.54-1.54l-.06-.09a.13.13 0 000 .12v3a5.43 5.43 0 01-1 3.21 5.33 5.33 0 01-3.24 2.06 4.85 4.85 0 01-.85.13c-.08 0-.11 0-.13.11A2.09 2.09 0 015.65 16 2.15 2.15 0 013 14.34v-.25a.81.81 0 000-.31zm18 .55v.13a2.16 2.16 0 01-4.2.15c0-.07 0-.1-.12-.11a5.69 5.69 0 01-3.18-1.23 5.12 5.12 0 01-1.14-1.27.14.14 0 010-.16 6.51 6.51 0 00.47-1.23c.05 0 .05.1.07.14a4.21 4.21 0 002.94 2.56 5 5 0 00.86.15c.07 0 .11 0 .13-.08a2.15 2.15 0 014.18.34v.19a.57.57 0 000 .26zm-9.19 6.86a.65.65 0 00-.24-.06 2.16 2.16 0 01-.24-4.15c.08 0 .11-.06.11-.15v-3.59a.33.33 0 01.08-.24 3.29 3.29 0 00.43-.54c0-.06.06-.07.11 0a3.56 3.56 0 00.41.53.23.23 0 01.07.17v3.65c0 .09 0 .12.1.15a2.16 2.16 0 01-.34 4.21h-.15a.57.57 0 00-.26 0z' fill='%23ed358f'/%3E%3Cpath d='M3 13.78a.42.42 0 010 .31z' fill='%23f26eaf'/%3E%3Cpath d='M21 14.09a.3.3 0 010-.26z' fill='%23ef4b9c'/%3E%3Cpath d='M11.88 21.11a.39.39 0 01.26 0z' fill='%23f59bc8'/%3E%3Cpath d='M5.16 12.83a1.12 1.12 0 110 2.23 1.12 1.12 0 110-2.23zm13.7.02A1.11 1.11 0 0120 14a1.12 1.12 0 01-2.24-.05 1.12 1.12 0 011.1-1.1zm-7.96 6.08a1.12 1.12 0 111.1 1.13 1.13 1.13 0 01-1.1-1.13z' fill='%23fefefe'/%3E%3C/svg%3E");

  --icon-navbar-target-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='gray' viewBox='0 0 24 24.02'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cellipse cx='12' cy='12.01' rx='12' ry='12.01' fill='%23fff'/%3E%3Cpath class='cls-2' d='M10.67 3.84a2.34 2.34 0 011.65.79A4.11 4.11 0 0113 5.86a7 7 0 01.41 1.74 18.71 18.71 0 01.14 2.24v.68a.31.31 0 01-.28.34.3.3 0 01-.32-.3 12.27 12.27 0 00-.7-3 3.81 3.81 0 00-.57-1.14 1.57 1.57 0 00-2-.53 4.93 4.93 0 00-1.33.87 8.57 8.57 0 00-1.54 1.78 7 7 0 00-1 2.75A7.19 7.19 0 007.31 17a8.94 8.94 0 002.25 2 2.56 2.56 0 001.07.39 1.4 1.4 0 001.3-.63 3.94 3.94 0 00.53-1.09 10.74 10.74 0 00.5-1.93c0-.37.07-.74.09-1.12a.28.28 0 01.29-.28.29.29 0 01.27.31c0 .73 0 1.47-.07 2.2a13.87 13.87 0 01-.17 1.58 5 5 0 01-.55 1.73 1.92 1.92 0 01-1.49 1h-.25a.71.71 0 00-.29 0h-.12c-.14 0-.29 0-.44-.05a7.31 7.31 0 01-2-.76 10.39 10.39 0 01-1.78-1.22A11.14 11.14 0 015.24 18a11.31 11.31 0 01-1.08-1.49 8.29 8.29 0 01-1.08-2.93 4.76 4.76 0 01-.08-.84v-.16a.37.37 0 000-.18.37.37 0 000-.18v-.14a6.52 6.52 0 01.3-1.86 7.23 7.23 0 01.56-1.42 10.55 10.55 0 011.43-2.11 10.22 10.22 0 012.3-1.95 6.37 6.37 0 012.33-.89 1.94 1.94 0 01.34 0h.3s.08-.03.11-.01z'/%3E%3Cpath d='M21 14.34c-.05 0-.07 0-.1-.05l-.79-.89-.61-.69c-.08-.09-.08-.11 0-.2l1.06-1.19.36-.4s0-.05.08 0z' fill='%23fefefe'/%3E%3Cpath d='M10.56 3.84h-.18.18z' fill='%23f6a4cd'/%3E%3Cpath d='M3 12.2v.18-.18z' fill='%23f69ec9'/%3E%3Cpath d='M3 12.4v.18z' fill='%23f69dc9'/%3E%3Cpath d='M3 12.58v.18z' fill='%23facfe4'/%3E%3Cpath d='M3 12.2V12z' fill='%23facee4'/%3E%3Cpath d='M10.38 3.82h-.13z' fill='%23fad3e6'/%3E%3Cpath d='M10.56 3.84h.11z' fill='%23fad2e6'/%3E%3Cpath class='cls-2' d='M21 10.88l-.78.87-.72.8s-.06.07 0 .12l1.47 1.64c0 .07-.06 0-.09 0h-3.46a.26.26 0 01-.2-.08A4 4 0 0014.47 13h-1.79l-2.79-.06h-.45a.29.29 0 01-.31-.27.28.28 0 01.31-.28h1.51l2.93-.06a5.58 5.58 0 001.47-.17 4 4 0 001.86-1.13.25.25 0 01.19-.09h3.46s.14-.11.14-.06z'/%3E%3Cpath class='cls-2' d='M7.53 12.49a3.42 3.42 0 01.79-2.22 1.72 1.72 0 011-.63 1.11 1.11 0 011 .33 2.11 2.11 0 01.68 1.18l.12.68c0 .06 0 .08-.07.09H9.61a.65.65 0 00-.61.68.64.64 0 00.58.67h1.48c.06 0 .08 0 .07.08a5.56 5.56 0 01-.25 1.34 1.45 1.45 0 01-.5.71 1.19 1.19 0 01-1.42 0 2.91 2.91 0 01-1.16-1.46 4.06 4.06 0 01-.27-1.45z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-target-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f2eded' viewBox='0 0 24 24.02'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cellipse cx='12' cy='12.01' rx='12' ry='12.01' fill='%23fff'/%3E%3Cpath class='cls-2' d='M10.67 3.84a2.34 2.34 0 011.65.79A4.11 4.11 0 0113 5.86a7 7 0 01.41 1.74 18.71 18.71 0 01.14 2.24v.68a.31.31 0 01-.28.34.3.3 0 01-.32-.3 12.27 12.27 0 00-.7-3 3.81 3.81 0 00-.57-1.14 1.57 1.57 0 00-2-.53 4.93 4.93 0 00-1.33.87 8.57 8.57 0 00-1.54 1.78 7 7 0 00-1 2.75A7.19 7.19 0 007.31 17a8.94 8.94 0 002.25 2 2.56 2.56 0 001.07.39 1.4 1.4 0 001.3-.63 3.94 3.94 0 00.53-1.09 10.74 10.74 0 00.5-1.93c0-.37.07-.74.09-1.12a.28.28 0 01.29-.28.29.29 0 01.27.31c0 .73 0 1.47-.07 2.2a13.87 13.87 0 01-.17 1.58 5 5 0 01-.55 1.73 1.92 1.92 0 01-1.49 1h-.25a.71.71 0 00-.29 0h-.12c-.14 0-.29 0-.44-.05a7.31 7.31 0 01-2-.76 10.39 10.39 0 01-1.78-1.22A11.14 11.14 0 015.24 18a11.31 11.31 0 01-1.08-1.49 8.29 8.29 0 01-1.08-2.93 4.76 4.76 0 01-.08-.84v-.16a.37.37 0 000-.18.37.37 0 000-.18v-.14a6.52 6.52 0 01.3-1.86 7.23 7.23 0 01.56-1.42 10.55 10.55 0 011.43-2.11 10.22 10.22 0 012.3-1.95 6.37 6.37 0 012.33-.89 1.94 1.94 0 01.34 0h.3s.08-.03.11-.01z'/%3E%3Cpath d='M21 14.34c-.05 0-.07 0-.1-.05l-.79-.89-.61-.69c-.08-.09-.08-.11 0-.2l1.06-1.19.36-.4s0-.05.08 0z' fill='%23fefefe'/%3E%3Cpath d='M10.56 3.84h-.18.18z' fill='%23f6a4cd'/%3E%3Cpath d='M3 12.2v.18-.18z' fill='%23f69ec9'/%3E%3Cpath d='M3 12.4v.18z' fill='%23f69dc9'/%3E%3Cpath d='M3 12.58v.18z' fill='%23facfe4'/%3E%3Cpath d='M3 12.2V12z' fill='%23facee4'/%3E%3Cpath d='M10.38 3.82h-.13z' fill='%23fad3e6'/%3E%3Cpath d='M10.56 3.84h.11z' fill='%23fad2e6'/%3E%3Cpath class='cls-2' d='M21 10.88l-.78.87-.72.8s-.06.07 0 .12l1.47 1.64c0 .07-.06 0-.09 0h-3.46a.26.26 0 01-.2-.08A4 4 0 0014.47 13h-1.79l-2.79-.06h-.45a.29.29 0 01-.31-.27.28.28 0 01.31-.28h1.51l2.93-.06a5.58 5.58 0 001.47-.17 4 4 0 001.86-1.13.25.25 0 01.19-.09h3.46s.14-.11.14-.06z'/%3E%3Cpath class='cls-2' d='M7.53 12.49a3.42 3.42 0 01.79-2.22 1.72 1.72 0 011-.63 1.11 1.11 0 011 .33 2.11 2.11 0 01.68 1.18l.12.68c0 .06 0 .08-.07.09H9.61a.65.65 0 00-.61.68.64.64 0 00.58.67h1.48c.06 0 .08 0 .07.08a5.56 5.56 0 01-.25 1.34 1.45 1.45 0 01-.5.71 1.19 1.19 0 01-1.42 0 2.91 2.91 0 01-1.16-1.46 4.06 4.06 0 01-.27-1.45z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-target-active: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24.02'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cellipse cx='12' cy='12.01' rx='12' ry='12.01'/%3E%3Cpath class='cls-2' d='M10.67 3.84a2.34 2.34 0 011.65.79A4.11 4.11 0 0113 5.86a7 7 0 01.41 1.74 18.71 18.71 0 01.14 2.24v.68a.31.31 0 01-.28.34.3.3 0 01-.32-.3 12.27 12.27 0 00-.7-3 3.81 3.81 0 00-.57-1.14 1.57 1.57 0 00-2-.53 4.93 4.93 0 00-1.33.87 8.57 8.57 0 00-1.54 1.78 7 7 0 00-1 2.75A7.19 7.19 0 007.31 17a8.94 8.94 0 002.25 2 2.56 2.56 0 001.07.39 1.4 1.4 0 001.3-.63 3.94 3.94 0 00.53-1.09 10.74 10.74 0 00.5-1.93c0-.37.07-.74.09-1.12a.28.28 0 01.29-.28.29.29 0 01.27.31c0 .73 0 1.47-.07 2.2a13.87 13.87 0 01-.17 1.58 5 5 0 01-.55 1.73 1.92 1.92 0 01-1.49 1h-.25a.71.71 0 00-.29 0h-.12c-.14 0-.29 0-.44-.05a7.31 7.31 0 01-2-.76 10.39 10.39 0 01-1.78-1.22A11.14 11.14 0 015.24 18a11.31 11.31 0 01-1.08-1.49 8.29 8.29 0 01-1.08-2.93 4.76 4.76 0 01-.08-.84v-.16a.37.37 0 000-.18.37.37 0 000-.18v-.14a6.52 6.52 0 01.3-1.86 7.23 7.23 0 01.56-1.42 10.55 10.55 0 011.43-2.11 10.22 10.22 0 012.3-1.95 6.37 6.37 0 012.33-.89 1.94 1.94 0 01.34 0h.3s.08-.03.11-.01z'/%3E%3Cpath d='M21 14.34c-.05 0-.07 0-.1-.05l-.79-.89-.61-.69c-.08-.09-.08-.11 0-.2l1.06-1.19.36-.4s0-.05.08 0z' fill='%23fefefe'/%3E%3Cpath d='M10.56 3.84h-.18.18z' fill='%23f6a4cd'/%3E%3Cpath d='M3 12.2v.18-.18z' fill='%23f69ec9'/%3E%3Cpath d='M3 12.4v.18z' fill='%23f69dc9'/%3E%3Cpath d='M3 12.58v.18z' fill='%23facfe4'/%3E%3Cpath d='M3 12.2V12z' fill='%23facee4'/%3E%3Cpath d='M10.38 3.82h-.13z' fill='%23fad3e6'/%3E%3Cpath d='M10.56 3.84h.11z' fill='%23fad2e6'/%3E%3Cpath class='cls-2' d='M21 10.88l-.78.87-.72.8s-.06.07 0 .12l1.47 1.64c0 .07-.06 0-.09 0h-3.46a.26.26 0 01-.2-.08A4 4 0 0014.47 13h-1.79l-2.79-.06h-.45a.29.29 0 01-.31-.27.28.28 0 01.31-.28h1.51l2.93-.06a5.58 5.58 0 001.47-.17 4 4 0 001.86-1.13.25.25 0 01.19-.09h3.46s.14-.11.14-.06z'/%3E%3Cpath class='cls-2' d='M7.53 12.49a3.42 3.42 0 01.79-2.22 1.72 1.72 0 011-.63 1.11 1.11 0 011 .33 2.11 2.11 0 01.68 1.18l.12.68c0 .06 0 .08-.07.09H9.61a.65.65 0 00-.61.68.64.64 0 00.58.67h1.48c.06 0 .08 0 .07.08a5.56 5.56 0 01-.25 1.34 1.45 1.45 0 01-.5.71 1.19 1.19 0 01-1.42 0 2.91 2.91 0 01-1.16-1.46 4.06 4.06 0 01-.27-1.45z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

  --icon-navbar-limit-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='gray' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12.03' cy='12.01' rx='12' ry='11.99' fill='%23fff'/%3E%3Cpath d='M4.27 6h.19a.3.3 0 00.13 0H16.5a.34.34 0 00.14 0h.24a1.45 1.45 0 011.25 1.22 6.52 6.52 0 010 .76v.62c0 .16 0 .18.19.18h1.2a1.55 1.55 0 011.36.91 2.15 2.15 0 01.09.44V17a3.88 3.88 0 000 .59v.15a.15.15 0 000 .09 1.38 1.38 0 01-.85 1.17 2.14 2.14 0 01-.44.08h-.12a.29.29 0 00-.13 0H7.37a.29.29 0 00-.13 0h-.12A.2.2 0 007 19a1.49 1.49 0 01-1.22-1.26v-1.36c0-.18 0-.2-.2-.2H4.42a1 1 0 01-.24 0 1.57 1.57 0 01-1.09-.88 2 2 0 01-.09-.41V7.24a1.38 1.38 0 01.25-.71A1.29 1.29 0 014.2 6h.07z' fill='%23ed358f'/%3E%3Cpath class='cls-3' d='M21 10.09V10a1.51 1.51 0 00-1.47-1.19h-1.32c-.09 0-.11 0-.11-.12v-1.2A1.5 1.5 0 0016.86 6h-.05 4.09c.08 0 .1 0 .1.1zm-18 4.8V15a1.51 1.51 0 001.45 1.17h1.26c.1 0 .13 0 .13.13v1.2A1.51 1.51 0 007 19h.09-4C3 19.05 3 19 3 19zm16.68 4.16h.11A1.49 1.49 0 0021 17.86v-.1V19c0 .06 0 .07-.08.07zM4.27 6h-.08A1.48 1.48 0 003 7.17v.07V6h.07z'/%3E%3Cpath d='M7.24 19.05h12.32z' fill='%23f378b4'/%3E%3Cpath d='M16.64 6a.2.2 0 01-.13 0h-10z' fill='%23f056a1'/%3E%3Cpath d='M3 7.31a.19.19 0 010 .14v7.36z' fill='%23f168ab'/%3E%3Cpath d='M21 17v-6.69a.21.21 0 010-.15V17s0 .05 0 0z' fill='%23f161a7'/%3E%3Cpath d='M6.48 6h-1.9a.17.17 0 01-.12 0z' fill='%23f05ba4'/%3E%3Cpath d='M21 17v.58a2.26 2.26 0 010-.58z' fill='%23f169ac'/%3E%3Cpath class='cls-3' d='M10.55 9.7h6.54c.12 0 .15 0 .15.16v4.76a.65.65 0 01-.69.69h-12a.64.64 0 01-.69-.69V9.84c0-.12 0-.14.14-.14z'/%3E%3Cpath class='cls-3' d='M13.41 18.18h-6a.65.65 0 01-.71-.71v-1.18c0-.11 0-.13.13-.13h9.72a1.5 1.5 0 001.55-1.54v-1.94c0-.1 0-.13.12-.13H20c.09 0 .12 0 .12.12v4.82a.64.64 0 01-.69.69zM10.55 8.17H4c-.15 0-.15 0-.15-.15v-.53a.63.63 0 01.67-.67h12a.65.65 0 01.68.68v.56c0 .19 0 .12-.12.11h-6.53zM19.12 11h-.91c-.08 0-.12 0-.11-.11V9.76c0-.08 0-.11.1-.11h1.28a.63.63 0 01.65.59v.7c0 .23 0 .08-.1.08h-.91z'/%3E%3Cpath d='M7.32 13.13h.42c.06 0 .08 0 .08.08v.69c0 .07 0 .08-.08.08h-.86c-.06 0-.08 0-.08-.08v-.69c0-.07 0-.08.09-.08zm3.23.87h-.43c-.06 0-.09 0-.09-.09v-.68c0-.07 0-.08.09-.08H11c.07 0 .1 0 .1.08v.69c0 .07 0 .08-.1.08zm-4.86 0h-.41c-.06 0-.1 0-.1-.08v-.7s0-.07.08-.07h.87c.06 0 .08 0 .08.08v.68c0 .07 0 .09-.09.09zm3.24-.87h.41c.07 0 .1 0 .1.08v.68c0 .07 0 .09-.09.09h-.84c-.07 0-.1 0-.1-.08v-.68c0-.22 0-.1.1-.09z' fill='%23ed3590'/%3E%3C/svg%3E");
  --icon-navbar-limit-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23f2eded' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12.03' cy='12.01' rx='12' ry='11.99' fill='%23fff'/%3E%3Cpath d='M4.27 6h.19a.3.3 0 00.13 0H16.5a.34.34 0 00.14 0h.24a1.45 1.45 0 011.25 1.22 6.52 6.52 0 010 .76v.62c0 .16 0 .18.19.18h1.2a1.55 1.55 0 011.36.91 2.15 2.15 0 01.09.44V17a3.88 3.88 0 000 .59v.15a.15.15 0 000 .09 1.38 1.38 0 01-.85 1.17 2.14 2.14 0 01-.44.08h-.12a.29.29 0 00-.13 0H7.37a.29.29 0 00-.13 0h-.12A.2.2 0 007 19a1.49 1.49 0 01-1.22-1.26v-1.36c0-.18 0-.2-.2-.2H4.42a1 1 0 01-.24 0 1.57 1.57 0 01-1.09-.88 2 2 0 01-.09-.41V7.24a1.38 1.38 0 01.25-.71A1.29 1.29 0 014.2 6h.07z' fill='%23ed358f'/%3E%3Cpath class='cls-3' d='M21 10.09V10a1.51 1.51 0 00-1.47-1.19h-1.32c-.09 0-.11 0-.11-.12v-1.2A1.5 1.5 0 0016.86 6h-.05 4.09c.08 0 .1 0 .1.1zm-18 4.8V15a1.51 1.51 0 001.45 1.17h1.26c.1 0 .13 0 .13.13v1.2A1.51 1.51 0 007 19h.09-4C3 19.05 3 19 3 19zm16.68 4.16h.11A1.49 1.49 0 0021 17.86v-.1V19c0 .06 0 .07-.08.07zM4.27 6h-.08A1.48 1.48 0 003 7.17v.07V6h.07z'/%3E%3Cpath d='M7.24 19.05h12.32z' fill='%23f378b4'/%3E%3Cpath d='M16.64 6a.2.2 0 01-.13 0h-10z' fill='%23f056a1'/%3E%3Cpath d='M3 7.31a.19.19 0 010 .14v7.36z' fill='%23f168ab'/%3E%3Cpath d='M21 17v-6.69a.21.21 0 010-.15V17s0 .05 0 0z' fill='%23f161a7'/%3E%3Cpath d='M6.48 6h-1.9a.17.17 0 01-.12 0z' fill='%23f05ba4'/%3E%3Cpath d='M21 17v.58a2.26 2.26 0 010-.58z' fill='%23f169ac'/%3E%3Cpath class='cls-3' d='M10.55 9.7h6.54c.12 0 .15 0 .15.16v4.76a.65.65 0 01-.69.69h-12a.64.64 0 01-.69-.69V9.84c0-.12 0-.14.14-.14z'/%3E%3Cpath class='cls-3' d='M13.41 18.18h-6a.65.65 0 01-.71-.71v-1.18c0-.11 0-.13.13-.13h9.72a1.5 1.5 0 001.55-1.54v-1.94c0-.1 0-.13.12-.13H20c.09 0 .12 0 .12.12v4.82a.64.64 0 01-.69.69zM10.55 8.17H4c-.15 0-.15 0-.15-.15v-.53a.63.63 0 01.67-.67h12a.65.65 0 01.68.68v.56c0 .19 0 .12-.12.11h-6.53zM19.12 11h-.91c-.08 0-.12 0-.11-.11V9.76c0-.08 0-.11.1-.11h1.28a.63.63 0 01.65.59v.7c0 .23 0 .08-.1.08h-.91z'/%3E%3Cpath d='M7.32 13.13h.42c.06 0 .08 0 .08.08v.69c0 .07 0 .08-.08.08h-.86c-.06 0-.08 0-.08-.08v-.69c0-.07 0-.08.09-.08zm3.23.87h-.43c-.06 0-.09 0-.09-.09v-.68c0-.07 0-.08.09-.08H11c.07 0 .1 0 .1.08v.69c0 .07 0 .08-.1.08zm-4.86 0h-.41c-.06 0-.1 0-.1-.08v-.7s0-.07.08-.07h.87c.06 0 .08 0 .08.08v.68c0 .07 0 .09-.09.09zm3.24-.87h.41c.07 0 .1 0 .1.08v.68c0 .07 0 .09-.09.09h-.84c-.07 0-.1 0-.1-.08v-.68c0-.22 0-.1.1-.09z' fill='%23ed3590'/%3E%3C/svg%3E");
  --icon-navbar-limit-active: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12.03' cy='12.01' rx='12' ry='11.99'/%3E%3Cpath d='M4.27 6h.19a.3.3 0 00.13 0H16.5a.34.34 0 00.14 0h.24a1.45 1.45 0 011.25 1.22 6.52 6.52 0 010 .76v.62c0 .16 0 .18.19.18h1.2a1.55 1.55 0 011.36.91 2.15 2.15 0 01.09.44V17a3.88 3.88 0 000 .59v.15a.15.15 0 000 .09 1.38 1.38 0 01-.85 1.17 2.14 2.14 0 01-.44.08h-.12a.29.29 0 00-.13 0H7.37a.29.29 0 00-.13 0h-.12A.2.2 0 007 19a1.49 1.49 0 01-1.22-1.26v-1.36c0-.18 0-.2-.2-.2H4.42a1 1 0 01-.24 0 1.57 1.57 0 01-1.09-.88 2 2 0 01-.09-.41V7.24a1.38 1.38 0 01.25-.71A1.29 1.29 0 014.2 6h.07z' fill='%23ed358f'/%3E%3Cpath class='cls-3' d='M21 10.09V10a1.51 1.51 0 00-1.47-1.19h-1.32c-.09 0-.11 0-.11-.12v-1.2A1.5 1.5 0 0016.86 6h-.05 4.09c.08 0 .1 0 .1.1zm-18 4.8V15a1.51 1.51 0 001.45 1.17h1.26c.1 0 .13 0 .13.13v1.2A1.51 1.51 0 007 19h.09-4C3 19.05 3 19 3 19zm16.68 4.16h.11A1.49 1.49 0 0021 17.86v-.1V19c0 .06 0 .07-.08.07zM4.27 6h-.08A1.48 1.48 0 003 7.17v.07V6h.07z'/%3E%3Cpath d='M7.24 19.05h12.32z' fill='%23f378b4'/%3E%3Cpath d='M16.64 6a.2.2 0 01-.13 0h-10z' fill='%23f056a1'/%3E%3Cpath d='M3 7.31a.19.19 0 010 .14v7.36z' fill='%23f168ab'/%3E%3Cpath d='M21 17v-6.69a.21.21 0 010-.15V17s0 .05 0 0z' fill='%23f161a7'/%3E%3Cpath d='M6.48 6h-1.9a.17.17 0 01-.12 0z' fill='%23f05ba4'/%3E%3Cpath d='M21 17v.58a2.26 2.26 0 010-.58z' fill='%23f169ac'/%3E%3Cpath class='cls-3' d='M10.55 9.7h6.54c.12 0 .15 0 .15.16v4.76a.65.65 0 01-.69.69h-12a.64.64 0 01-.69-.69V9.84c0-.12 0-.14.14-.14z'/%3E%3Cpath class='cls-3' d='M13.41 18.18h-6a.65.65 0 01-.71-.71v-1.18c0-.11 0-.13.13-.13h9.72a1.5 1.5 0 001.55-1.54v-1.94c0-.1 0-.13.12-.13H20c.09 0 .12 0 .12.12v4.82a.64.64 0 01-.69.69zM10.55 8.17H4c-.15 0-.15 0-.15-.15v-.53a.63.63 0 01.67-.67h12a.65.65 0 01.68.68v.56c0 .19 0 .12-.12.11h-6.53zM19.12 11h-.91c-.08 0-.12 0-.11-.11V9.76c0-.08 0-.11.1-.11h1.28a.63.63 0 01.65.59v.7c0 .23 0 .08-.1.08h-.91z'/%3E%3Cpath d='M7.32 13.13h.42c.06 0 .08 0 .08.08v.69c0 .07 0 .08-.08.08h-.86c-.06 0-.08 0-.08-.08v-.69c0-.07 0-.08.09-.08zm3.23.87h-.43c-.06 0-.09 0-.09-.09v-.68c0-.07 0-.08.09-.08H11c.07 0 .1 0 .1.08v.69c0 .07 0 .08-.1.08zm-4.86 0h-.41c-.06 0-.1 0-.1-.08v-.7s0-.07.08-.07h.87c.06 0 .08 0 .08.08v.68c0 .07 0 .09-.09.09zm3.24-.87h.41c.07 0 .1 0 .1.08v.68c0 .07 0 .09-.09.09h-.84c-.07 0-.1 0-.1-.08v-.68c0-.22 0-.1.1-.09z' fill='%23ed3590'/%3E%3C/svg%3E");

  --icon-navbar-optimize-normal: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='gray' viewBox='0 0 24 23.76'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12' cy='11.88' rx='11.99' ry='11.86' fill='%23fff'/%3E%3Cpath class='cls-2' d='M14.36 20.88c-.52-.4-1-.83-1.51-1.25a.36.36 0 010-.53c.33-.39.67-.78 1-1.18l.14-.16a.38.38 0 01.52 0 .36.36 0 010 .5l-.51.61h.1a7.38 7.38 0 005.15-5.43c.06-.25.09-.51.14-.76a.34.34 0 01.33-.3.37.37 0 01.38.24.34.34 0 010 .22 8.15 8.15 0 01-6 6.8h-.09l.64.54c.3.25.27.53-.07.71zM2.8 13.91c.36-.52.75-1 1.11-1.53a.39.39 0 01.6-.1l1.35 1a.36.36 0 01.19.37.37.37 0 01-.59.26l-.67-.48-.07-.05a7.12 7.12 0 00.39 1.21 7.38 7.38 0 005.24 4.37.38.38 0 01.32.46.37.37 0 01-.47.27 8.08 8.08 0 01-3.78-2A8 8 0 014 13.61a.25.25 0 000-.07l-.29.39-.19.27a.38.38 0 01-.67 0zM12 6.65h.49a.93.93 0 01.94.92V8a.18.18 0 00.12.2.18.18 0 00.23-.05l.28-.28a.93.93 0 011.31 0c.24.23.48.46.71.7a.91.91 0 010 1.31 3.7 3.7 0 01-.28.28.18.18 0 00-.05.22.21.21 0 00.19.13 3.09 3.09 0 01.61 0 .91.91 0 01.72.88v1a.91.91 0 01-.91.93H16a.2.2 0 00-.23.13c-.05.11 0 .18.08.24l.25.25a.92.92 0 010 1.32l-.7.7a.94.94 0 01-1.32 0l-.29-.29a.17.17 0 00-.22 0 .19.19 0 00-.12.19 4.78 4.78 0 010 .53.91.91 0 01-.89.79h-1a.92.92 0 01-.91-.89v-.41a.19.19 0 00-.12-.21.2.2 0 00-.24.05l-.25.25a.93.93 0 01-1.37 0L8 15.31a.92.92 0 010-1.33l.28-.28a.18.18 0 000-.22.17.17 0 00-.18-.12 5.42 5.42 0 01-.57 0 .91.91 0 01-.77-.9v-1a.92.92 0 01.87-.92H8a.2.2 0 00.15-.35l-.25-.35a.9.9 0 010-1.31l.69-.69a.94.94 0 011.33 0l.28.28a.2.2 0 00.36-.12v-.45a.91.91 0 01.91-.9zm8 3.23l.47-.81a.38.38 0 11.65.37c-.29.49-.57 1-.86 1.49a.38.38 0 01-.56.15l-1.49-.84a.36.36 0 01-.21-.51.38.38 0 01.53-.14l.66.38a1.07 1.07 0 00-.07-.32 7.46 7.46 0 00-5.71-5.18h-.17A.36.36 0 0113 4a.37.37 0 01.43-.29 8.5 8.5 0 011.64.46A8.24 8.24 0 0117.84 6 8 8 0 0120 9.76a.68.68 0 010 .12zM9.58 3.93l-.88-.32a.35.35 0 01-.23-.29.34.34 0 01.15-.32.37.37 0 01.38-.08l1.71.62a.35.35 0 01.21.46c-.19.56-.4 1.11-.6 1.66a.38.38 0 01-.49.22.38.38 0 01-.21-.49l.27-.73h-.08a7.39 7.39 0 00-4.26 3.4 7.15 7.15 0 00-.9 2.58.37.37 0 01-.45.36.36.36 0 01-.32-.42 6.53 6.53 0 01.35-1.48 8.12 8.12 0 014.25-4.73 7.25 7.25 0 011-.41s.09.04.1-.03z'/%3E%3Cpath class='cls-3' d='M12 16.39h-.47c-.15 0-.21-.06-.21-.21a3.85 3.85 0 000-.48.89.89 0 00-.63-.79.93.93 0 00-1 .22l-.28.27c-.1.1-.18.11-.28 0l-.69-.68a.17.17 0 010-.27l.29-.29a.94.94 0 00-.67-1.6h-.4c-.14 0-.2-.07-.2-.21v-.94c0-.14.06-.21.21-.21a4.34 4.34 0 00.51 0 .9.9 0 00.76-.61.89.89 0 00-.18-.94c-.09-.11-.21-.21-.31-.31a.19.19 0 010-.3l.66-.66a.19.19 0 01.31 0l.27.26A1 1 0 0011.31 8v-.42a.17.17 0 01.19-.19h1a.18.18 0 01.2.2V8a.92.92 0 00.56.86.93.93 0 001-.18l.29-.28c.1-.1.19-.11.29 0l.68.67a.17.17 0 010 .29l-.26.27a.9.9 0 00-.2 1 .89.89 0 00.86.58h.39c.15 0 .21.07.21.21v.94c0 .14-.06.2-.2.21a3.37 3.37 0 00-.55 0 .9.9 0 00-.74.62.91.91 0 00.2 1l.29.29a.18.18 0 010 .3l-.66.66c-.11.11-.19.11-.31 0l-.27-.27a.92.92 0 00-1-.19.89.89 0 00-.57.86v.38a.19.19 0 01-.21.21z'/%3E%3Cpath class='cls-2' d='M12 9.85a2 2 0 11-2.07 2 2 2 0 012.07-2z'/%3E%3Cpath class='cls-3' d='M13.31 11.89A1.32 1.32 0 1112 10.58a1.32 1.32 0 011.31 1.31z'/%3E%3C/svg%3E");
  --icon-navbar-optimize-hover: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23f2eded' viewBox='0 0 24 23.76'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12' cy='11.88' rx='11.99' ry='11.86' fill='%23fff'/%3E%3Cpath class='cls-2' d='M14.36 20.88c-.52-.4-1-.83-1.51-1.25a.36.36 0 010-.53c.33-.39.67-.78 1-1.18l.14-.16a.38.38 0 01.52 0 .36.36 0 010 .5l-.51.61h.1a7.38 7.38 0 005.15-5.43c.06-.25.09-.51.14-.76a.34.34 0 01.33-.3.37.37 0 01.38.24.34.34 0 010 .22 8.15 8.15 0 01-6 6.8h-.09l.64.54c.3.25.27.53-.07.71zM2.8 13.91c.36-.52.75-1 1.11-1.53a.39.39 0 01.6-.1l1.35 1a.36.36 0 01.19.37.37.37 0 01-.59.26l-.67-.48-.07-.05a7.12 7.12 0 00.39 1.21 7.38 7.38 0 005.24 4.37.38.38 0 01.32.46.37.37 0 01-.47.27 8.08 8.08 0 01-3.78-2A8 8 0 014 13.61a.25.25 0 000-.07l-.29.39-.19.27a.38.38 0 01-.67 0zM12 6.65h.49a.93.93 0 01.94.92V8a.18.18 0 00.12.2.18.18 0 00.23-.05l.28-.28a.93.93 0 011.31 0c.24.23.48.46.71.7a.91.91 0 010 1.31 3.7 3.7 0 01-.28.28.18.18 0 00-.05.22.21.21 0 00.19.13 3.09 3.09 0 01.61 0 .91.91 0 01.72.88v1a.91.91 0 01-.91.93H16a.2.2 0 00-.23.13c-.05.11 0 .18.08.24l.25.25a.92.92 0 010 1.32l-.7.7a.94.94 0 01-1.32 0l-.29-.29a.17.17 0 00-.22 0 .19.19 0 00-.12.19 4.78 4.78 0 010 .53.91.91 0 01-.89.79h-1a.92.92 0 01-.91-.89v-.41a.19.19 0 00-.12-.21.2.2 0 00-.24.05l-.25.25a.93.93 0 01-1.37 0L8 15.31a.92.92 0 010-1.33l.28-.28a.18.18 0 000-.22.17.17 0 00-.18-.12 5.42 5.42 0 01-.57 0 .91.91 0 01-.77-.9v-1a.92.92 0 01.87-.92H8a.2.2 0 00.15-.35l-.25-.35a.9.9 0 010-1.31l.69-.69a.94.94 0 011.33 0l.28.28a.2.2 0 00.36-.12v-.45a.91.91 0 01.91-.9zm8 3.23l.47-.81a.38.38 0 11.65.37c-.29.49-.57 1-.86 1.49a.38.38 0 01-.56.15l-1.49-.84a.36.36 0 01-.21-.51.38.38 0 01.53-.14l.66.38a1.07 1.07 0 00-.07-.32 7.46 7.46 0 00-5.71-5.18h-.17A.36.36 0 0113 4a.37.37 0 01.43-.29 8.5 8.5 0 011.64.46A8.24 8.24 0 0117.84 6 8 8 0 0120 9.76a.68.68 0 010 .12zM9.58 3.93l-.88-.32a.35.35 0 01-.23-.29.34.34 0 01.15-.32.37.37 0 01.38-.08l1.71.62a.35.35 0 01.21.46c-.19.56-.4 1.11-.6 1.66a.38.38 0 01-.49.22.38.38 0 01-.21-.49l.27-.73h-.08a7.39 7.39 0 00-4.26 3.4 7.15 7.15 0 00-.9 2.58.37.37 0 01-.45.36.36.36 0 01-.32-.42 6.53 6.53 0 01.35-1.48 8.12 8.12 0 014.25-4.73 7.25 7.25 0 011-.41s.09.04.1-.03z'/%3E%3Cpath class='cls-3' d='M12 16.39h-.47c-.15 0-.21-.06-.21-.21a3.85 3.85 0 000-.48.89.89 0 00-.63-.79.93.93 0 00-1 .22l-.28.27c-.1.1-.18.11-.28 0l-.69-.68a.17.17 0 010-.27l.29-.29a.94.94 0 00-.67-1.6h-.4c-.14 0-.2-.07-.2-.21v-.94c0-.14.06-.21.21-.21a4.34 4.34 0 00.51 0 .9.9 0 00.76-.61.89.89 0 00-.18-.94c-.09-.11-.21-.21-.31-.31a.19.19 0 010-.3l.66-.66a.19.19 0 01.31 0l.27.26A1 1 0 0011.31 8v-.42a.17.17 0 01.19-.19h1a.18.18 0 01.2.2V8a.92.92 0 00.56.86.93.93 0 001-.18l.29-.28c.1-.1.19-.11.29 0l.68.67a.17.17 0 010 .29l-.26.27a.9.9 0 00-.2 1 .89.89 0 00.86.58h.39c.15 0 .21.07.21.21v.94c0 .14-.06.2-.2.21a3.37 3.37 0 00-.55 0 .9.9 0 00-.74.62.91.91 0 00.2 1l.29.29a.18.18 0 010 .3l-.66.66c-.11.11-.19.11-.31 0l-.27-.27a.92.92 0 00-1-.19.89.89 0 00-.57.86v.38a.19.19 0 01-.21.21z'/%3E%3Cpath class='cls-2' d='M12 9.85a2 2 0 11-2.07 2 2 2 0 012.07-2z'/%3E%3Cpath class='cls-3' d='M13.31 11.89A1.32 1.32 0 1112 10.58a1.32 1.32 0 011.31 1.31z'/%3E%3C/svg%3E");
  --icon-navbar-optimize-active: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 23.76'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12' cy='11.88' rx='11.99' ry='11.86'/%3E%3Cpath class='cls-2' d='M14.36 20.88c-.52-.4-1-.83-1.51-1.25a.36.36 0 010-.53c.33-.39.67-.78 1-1.18l.14-.16a.38.38 0 01.52 0 .36.36 0 010 .5l-.51.61h.1a7.38 7.38 0 005.15-5.43c.06-.25.09-.51.14-.76a.34.34 0 01.33-.3.37.37 0 01.38.24.34.34 0 010 .22 8.15 8.15 0 01-6 6.8h-.09l.64.54c.3.25.27.53-.07.71zM2.8 13.91c.36-.52.75-1 1.11-1.53a.39.39 0 01.6-.1l1.35 1a.36.36 0 01.19.37.37.37 0 01-.59.26l-.67-.48-.07-.05a7.12 7.12 0 00.39 1.21 7.38 7.38 0 005.24 4.37.38.38 0 01.32.46.37.37 0 01-.47.27 8.08 8.08 0 01-3.78-2A8 8 0 014 13.61a.25.25 0 000-.07l-.29.39-.19.27a.38.38 0 01-.67 0zM12 6.65h.49a.93.93 0 01.94.92V8a.18.18 0 00.12.2.18.18 0 00.23-.05l.28-.28a.93.93 0 011.31 0c.24.23.48.46.71.7a.91.91 0 010 1.31 3.7 3.7 0 01-.28.28.18.18 0 00-.05.22.21.21 0 00.19.13 3.09 3.09 0 01.61 0 .91.91 0 01.72.88v1a.91.91 0 01-.91.93H16a.2.2 0 00-.23.13c-.05.11 0 .18.08.24l.25.25a.92.92 0 010 1.32l-.7.7a.94.94 0 01-1.32 0l-.29-.29a.17.17 0 00-.22 0 .19.19 0 00-.12.19 4.78 4.78 0 010 .53.91.91 0 01-.89.79h-1a.92.92 0 01-.91-.89v-.41a.19.19 0 00-.12-.21.2.2 0 00-.24.05l-.25.25a.93.93 0 01-1.37 0L8 15.31a.92.92 0 010-1.33l.28-.28a.18.18 0 000-.22.17.17 0 00-.18-.12 5.42 5.42 0 01-.57 0 .91.91 0 01-.77-.9v-1a.92.92 0 01.87-.92H8a.2.2 0 00.15-.35l-.25-.35a.9.9 0 010-1.31l.69-.69a.94.94 0 011.33 0l.28.28a.2.2 0 00.36-.12v-.45a.91.91 0 01.91-.9zm8 3.23l.47-.81a.38.38 0 11.65.37c-.29.49-.57 1-.86 1.49a.38.38 0 01-.56.15l-1.49-.84a.36.36 0 01-.21-.51.38.38 0 01.53-.14l.66.38a1.07 1.07 0 00-.07-.32 7.46 7.46 0 00-5.71-5.18h-.17A.36.36 0 0113 4a.37.37 0 01.43-.29 8.5 8.5 0 011.64.46A8.24 8.24 0 0117.84 6 8 8 0 0120 9.76a.68.68 0 010 .12zM9.58 3.93l-.88-.32a.35.35 0 01-.23-.29.34.34 0 01.15-.32.37.37 0 01.38-.08l1.71.62a.35.35 0 01.21.46c-.19.56-.4 1.11-.6 1.66a.38.38 0 01-.49.22.38.38 0 01-.21-.49l.27-.73h-.08a7.39 7.39 0 00-4.26 3.4 7.15 7.15 0 00-.9 2.58.37.37 0 01-.45.36.36.36 0 01-.32-.42 6.53 6.53 0 01.35-1.48 8.12 8.12 0 014.25-4.73 7.25 7.25 0 011-.41s.09.04.1-.03z'/%3E%3Cpath class='cls-3' d='M12 16.39h-.47c-.15 0-.21-.06-.21-.21a3.85 3.85 0 000-.48.89.89 0 00-.63-.79.93.93 0 00-1 .22l-.28.27c-.1.1-.18.11-.28 0l-.69-.68a.17.17 0 010-.27l.29-.29a.94.94 0 00-.67-1.6h-.4c-.14 0-.2-.07-.2-.21v-.94c0-.14.06-.21.21-.21a4.34 4.34 0 00.51 0 .9.9 0 00.76-.61.89.89 0 00-.18-.94c-.09-.11-.21-.21-.31-.31a.19.19 0 010-.3l.66-.66a.19.19 0 01.31 0l.27.26A1 1 0 0011.31 8v-.42a.17.17 0 01.19-.19h1a.18.18 0 01.2.2V8a.92.92 0 00.56.86.93.93 0 001-.18l.29-.28c.1-.1.19-.11.29 0l.68.67a.17.17 0 010 .29l-.26.27a.9.9 0 00-.2 1 .89.89 0 00.86.58h.39c.15 0 .21.07.21.21v.94c0 .14-.06.2-.2.21a3.37 3.37 0 00-.55 0 .9.9 0 00-.74.62.91.91 0 00.2 1l.29.29a.18.18 0 010 .3l-.66.66c-.11.11-.19.11-.31 0l-.27-.27a.92.92 0 00-1-.19.89.89 0 00-.57.86v.38a.19.19 0 01-.21.21z'/%3E%3Cpath class='cls-2' d='M12 9.85a2 2 0 11-2.07 2 2 2 0 012.07-2z'/%3E%3Cpath class='cls-3' d='M13.31 11.89A1.32 1.32 0 1112 10.58a1.32 1.32 0 011.31 1.31z'/%3E%3C/svg%3E");

  --icon-navbar-app-challenger: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");
  --icon-navbar-app-acquire: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='11.97' cy='12.02' rx='11.95' ry='12'/%3E%3Cpath class='cls-2' d='M11.4 3h.28A2.71 2.71 0 0012 3h.83a4 4 0 01.69.14 6 6 0 013.7 3.16 5.69 5.69 0 01.56 2v.62a5.85 5.85 0 01-.24 1.6 5.67 5.67 0 01-1.22 2.23A5.91 5.91 0 0114.81 14a6.31 6.31 0 01-1.77.66c-.13 0-.14 0-.09.17l1.09 3 .57 1.55c.06.16.07.17.18 0l.49-.6a.59.59 0 01.66-.25l.82.16c.13 0 .14 0 .1-.11-.29-.8-.58-1.59-.88-2.39-.11-.33-.24-.66-.35-1a.51.51 0 111-.34c.38 1.06.76 2.12 1.15 3.18l.29.81a2.36 2.36 0 01.1.46v.15a.47.47 0 01-.23.37.62.62 0 01-.38 0l-1.39-.29a.28.28 0 00-.31.11L15 20.78a.49.49 0 01-.39.23h-.19a.46.46 0 01-.38-.35c-.44-1.22-.89-2.45-1.34-3.67l-.75-2.06a.18.18 0 00-.19-.13 6.14 6.14 0 01-2.15-.46 5.62 5.62 0 01-.61-.29c-.11-.07-.14-.06-.18.06-.21.58-.43 1.15-.64 1.73s-.53 1.45-.8 2.17c-.07.2-.15.39-.21.59s0 .13.09.1l.85-.16a.55.55 0 01.6.22l.55.68c.07.07.09.07.13 0l.39-1 .66-1.79c.07-.2.14-.4.23-.6a.49.49 0 01.58-.32.5.5 0 01.4.47.59.59 0 010 .23c-.18.48-.36.95-.53 1.43-.28.75-.56 1.49-.83 2.24l-.25.66a.38.38 0 01-.38.29h-.17a.58.58 0 01-.44-.3c-.27-.35-.56-.68-.83-1a.22.22 0 00-.25-.08l-1.5.29a.53.53 0 01-.45-.13.38.38 0 01-.11-.29v-.15a2.3 2.3 0 01.09-.75c.27-.72.54-1.44.8-2.16l.75-2c.12-.34.24-.68.37-1a.17.17 0 000-.21 5.71 5.71 0 01-1.4-1.87 5.85 5.85 0 01-.53-1.82 7.14 7.14 0 010-.8 5.67 5.67 0 01.36-1.91 5.74 5.74 0 01.77-1.57 5.82 5.82 0 013.55-2.21 4.62 4.62 0 01.65-.09h.08z'/%3E%3Cpath class='cls-3' d='M18.14 19.33c-.2-.62-.44-1.22-.65-1.83-.32-.88-.63-1.75-.95-2.62a.44.44 0 00-.38-.31.41.41 0 00-.42.17.44.44 0 00-.06.47c.32.87.64 1.75.95 2.62.11.28.21.57.31.85a.34.34 0 010 .12l-.54-.11-.57-.11a.47.47 0 00-.5.18l-.61.75-.11.13-1.82-5c.27-.06.54-.12.8-.2a5.84 5.84 0 00-.35-11.26A6.47 6.47 0 0012.4 3h-.07H18c.08 0 .1 0 .1.1zM9.58 21a.47.47 0 00.33-.31c.54-1.44 1.08-2.89 1.61-4.34a.45.45 0 10-.85-.31c-.44 1.16-.87 2.32-1.3 3.48a1 1 0 010 .1s-.05 0-.07-.05l-.64-.8a.49.49 0 00-.53-.18l-1 .19c-.09 0-.1 0-.07-.08q.84-2.35 1.7-4.7c0-.07.06-.08.13 0a5.73 5.73 0 002.88.8.14.14 0 01.16.12Q13 17.8 14.05 20.7a.58.58 0 00.33.37h-4.8s-.01-.07 0-.07zM11.4 3a1.59 1.59 0 01-.38.06A5.87 5.87 0 006 7.9a5.7 5.7 0 001.88 5.33.17.17 0 01.06.23l-2.08 5.72v.13V3.12c0-.09 0-.1.1-.1z'/%3E%3Cpath class='cls-3' d='M5.82 19.48a.44.44 0 00.54.35l1.64-.3a.16.16 0 01.17.06l.81 1a1.05 1.05 0 00.46.4H5.9c-.08 0-.1 0-.1-.09v-1.45c.01.02.02.02.02.03zM14.57 21a.73.73 0 00.35-.25c.31-.4.63-.78.95-1.18a.15.15 0 01.16 0l1.5.3a.46.46 0 00.59-.33V21c0 .06 0 .08-.08.08z'/%3E%3Cpath d='M12 3a1 1 0 01-.3 0h.3z' fill='%23ee4397'/%3E%3Cpath d='M5.82 19.48v-.17z' fill='%23f69fc9'/%3E%3Cpath d='M9.58 21h-.17.17z' fill='%23f6a2cb'/%3E%3Cpath d='M12.22 3h-.13c-.04 0 0 0 0 0z' fill='%23f379b5'/%3E%3Cpath d='M12.09 3H12z' fill='%23ef53a0'/%3E%3Cpath class='cls-3' d='M6.85 8.86a5 5 0 115 5 5 5 0 01-5-5z'/%3E%3Cpath class='cls-2' d='M16.3 8.88a4.44 4.44 0 11-4.44-4.4 4.43 4.43 0 014.44 4.4z'/%3E%3Cpath class='cls-3' d='M15.39 8.88a3.53 3.53 0 11-3.53-3.5 3.52 3.52 0 013.53 3.5z'/%3E%3Cpath class='cls-2' d='M13 11a.43.43 0 01-.24-.06l-.81-.4a.15.15 0 00-.17 0L11 11a.47.47 0 01-.51 0 .46.46 0 01-.18-.48c.05-.27.09-.55.14-.83a.21.21 0 00-.07-.23l-.6-.57a.46.46 0 01-.15-.5A.45.45 0 0110 8l.86-.12a.19.19 0 00.14-.1c.12-.26.25-.51.37-.76a.47.47 0 01.87 0c.12.25.25.5.37.76a.2.2 0 00.18.12l.88.13a.42.42 0 01.37.3.44.44 0 01-.12.48c-.21.21-.42.42-.64.62a.18.18 0 00-.06.19c0 .28.1.56.16.85A.42.42 0 0113 11z'/%3E%3C/svg%3E");
  --icon-navbar-app-support: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill='%23fff' data-name='Layer 1'%3E%3Ccircle r='12' cy='11.99' cx='12.02'/%3E%3Ctext transform='matrix(1 0 0 .8052 0 2.874)' font-family='Noto Sans JP' font-size='24' stroke-width='0' y='19.335' x='6.181' fill='%23ed358f'%3E?%3C/text%3E%3C/svg%3E");
  --icon-navbar-app-pulse: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cellipse cx='12.01' cy='12.02' rx='12' ry='11.97'/%3E%3Cpath d='M20.9 12.53c.06.07 0 .17.11.23v.33a2.85 2.85 0 01-.12.31.92.92 0 01-1.51.1.29.29 0 00-.24-.11h-1.75a.26.26 0 00-.26.14l-.88 1.4a.45.45 0 01-.37.26.48.48 0 01-.51-.33c-.09-.22-.16-.44-.25-.65-.2-.55-.41-1.1-.61-1.66v-.05a2.28 2.28 0 00-.15.36c-.43 1.13-.87 2.26-1.3 3.4l-.33.84a.46.46 0 01-.57.32.44.44 0 01-.35-.34c0-.24-.09-.47-.13-.7s-.05-.23-.06-.34c-.06-.31-.12-.62-.17-.93-.09-.51-.19-1-.28-1.52l-.27-1.51c-.09-.51-.19-1-.28-1.52q-.08-.47-.18-.93l-.15.71-.18.9c-.13.59-.25 1.18-.37 1.78s-.21 1.06-.33 1.59v.22a.49.49 0 01-.93 0l-.24-.65c-.21-.57-.43-1.14-.64-1.72 0 0 0-.12-.07-.12s-.06.07-.08.11c-.1.21-.2.42-.31.62a.49.49 0 01-.48.3h-1.9s-.07 0-.1.07a.91.91 0 01-.53.35A.89.89 0 013 13a.93.93 0 01.28-.71.9.9 0 011.36.14.13.13 0 00.14.06 1 1 0 01.24 0h1.21a.14.14 0 00.15-.09l.5-1c.08-.16.15-.32.25-.48a.47.47 0 01.68-.11.41.41 0 01.13.19c.16.4.3.8.45 1.2l.31.8c0-.3.12-.6.17-.89s.15-.67.21-1 .13-.63.19-.94.15-.74.23-1.11c0-.2.07-.39.13-.59v-.11c.07-.32.13-.64.2-1A2.87 2.87 0 0110 7a.44.44 0 01.47-.33.44.44 0 01.41.36c.07.34.13.68.19 1 .1.53.19 1.05.29 1.57l.18 1c.05.32.11.65.17 1l.18 1c.06.35.13.71.19 1.06l.18.95c0 .21.07.41.11.62v.02l.42-1.08c.1-.27.2-.54.31-.81s.28-.74.43-1.11.25-.66.38-1a2 2 0 01.11-.26.44.44 0 01.42-.23.42.42 0 01.38.28c.14.35.27.7.4 1s.25.67.38 1 .13.39.21.58v.07c0 .01.05 0 .07-.06l.49-.78a.6.6 0 01.2-.25.53.53 0 01.3-.09h2.22a.18.18 0 00.16-.08.87.87 0 01.87-.36.84.84 0 01.61.41.22.22 0 01.17.05z' fill='%23ed358f'/%3E%3Cpath d='M9.71 8.33a2.44 2.44 0 01.07-.39c0-.22.08-.44.13-.65s.05-.41.22-.55.14-.07.19-.13h.23a.52.52 0 01.33.47c0 .14.05.28.07.41.06.36.13.71.19 1.07s.11.6.17.9l.18 1 .12.65c.06.33.11.66.17 1l.18.93c.06.33.11.67.17 1s.09.44.13.66 0 .27.07.41 0 .06 0 .06c.13-.35.26-.71.4-1.07l.44-1.1c.13-.35.27-.71.4-1.07L14 11a.47.47 0 01.87 0l.39 1c.13.33.26.66.38 1l.21.54v.09c0 .01.05-.05.07-.08l.52-.84a.52.52 0 01.47-.26h2.19a.18.18 0 00.17-.08.87.87 0 01.9-.36.77.77 0 01.64.5c-.08-.08-.13-.18-.21-.25a.88.88 0 00-1.19 0 .7.7 0 00-.14.16c0 .06-.09.05-.14.05H17a.46.46 0 00-.42.23l-.12.19-.45.71s0 .07-.08.07 0 0-.05-.08c-.12-.33-.25-.66-.37-1s-.25-.67-.38-1-.15-.44-.25-.66a.4.4 0 00-.4-.25.43.43 0 00-.41.3l-.81 2.12-.57 1.47c-.08.19-.15.39-.22.58v.06l-.15-.82c-.09-.5-.17-1-.26-1.48l-.18-1c-.08-.4-.14-.8-.21-1.21s-.13-.62-.18-.94-.12-.65-.17-1-.12-.6-.17-.89-.08-.48-.13-.72-.05-.41-.26-.5A.41.41 0 0010 7a7.79 7.79 0 00-.2 1c0 .14-.07.27-.1.41z' fill='%23f69ec9'/%3E%3Cpath d='M9.71 8.33a2.66 2.66 0 01-.07.39c-.07.37-.15.74-.23 1.11l-.12.61c-.05.2-.09.41-.13.62s-.09.44-.14.66-.14.63-.19.94a1.75 1.75 0 00-.06.33v.08s-.06 0-.07-.07l-.49-1.32c-.09-.22-.17-.45-.26-.68a.38.38 0 00-.37-.29.43.43 0 00-.48.29l-.53 1.06a3.78 3.78 0 00-.17.35.13.13 0 01-.15.09H4.92a.35.35 0 01-.35-.14.82.82 0 00-1-.21.86.86 0 00-.48.65.88.88 0 001.57.67.2.2 0 01.21-.1h.84-.9a.16.16 0 00-.15.08.91.91 0 01-1.61-.25v-.5c.07 0 .05-.1.08-.15a.93.93 0 011-.52 1 1 0 01.55.37.14.14 0 00.13.07h1.42a.15.15 0 00.15-.1l.52-1c.08-.15.14-.29.23-.43a.43.43 0 01.42-.22.43.43 0 01.38.26c.11.27.21.54.31.82s.26.67.38 1c0 .07.05.13.07.19s0 .05 0 .05v-.05c0-.18.07-.35.11-.53s.11-.58.17-.87l.18-.89.18-.85c.07-.36.14-.71.22-1.07.09-.18.13-.32.16-.45z' fill='%23f48dc0'/%3E%3C/svg%3E");
  --icon-navbar-app-foresight: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cellipse cx='12.01' cy='12.02' rx='12' ry='11.97'/%3E%3Cpath d='M20.9 12.53c.06.07 0 .17.11.23v.33a2.85 2.85 0 01-.12.31.92.92 0 01-1.51.1.29.29 0 00-.24-.11h-1.75a.26.26 0 00-.26.14l-.88 1.4a.45.45 0 01-.37.26.48.48 0 01-.51-.33c-.09-.22-.16-.44-.25-.65-.2-.55-.41-1.1-.61-1.66v-.05a2.28 2.28 0 00-.15.36c-.43 1.13-.87 2.26-1.3 3.4l-.33.84a.46.46 0 01-.57.32.44.44 0 01-.35-.34c0-.24-.09-.47-.13-.7s-.05-.23-.06-.34c-.06-.31-.12-.62-.17-.93-.09-.51-.19-1-.28-1.52l-.27-1.51c-.09-.51-.19-1-.28-1.52q-.08-.47-.18-.93l-.15.71-.18.9c-.13.59-.25 1.18-.37 1.78s-.21 1.06-.33 1.59v.22a.49.49 0 01-.93 0l-.24-.65c-.21-.57-.43-1.14-.64-1.72 0 0 0-.12-.07-.12s-.06.07-.08.11c-.1.21-.2.42-.31.62a.49.49 0 01-.48.3h-1.9s-.07 0-.1.07a.91.91 0 01-.53.35A.89.89 0 013 13a.93.93 0 01.28-.71.9.9 0 011.36.14.13.13 0 00.14.06 1 1 0 01.24 0h1.21a.14.14 0 00.15-.09l.5-1c.08-.16.15-.32.25-.48a.47.47 0 01.68-.11.41.41 0 01.13.19c.16.4.3.8.45 1.2l.31.8c0-.3.12-.6.17-.89s.15-.67.21-1 .13-.63.19-.94.15-.74.23-1.11c0-.2.07-.39.13-.59v-.11c.07-.32.13-.64.2-1A2.87 2.87 0 0110 7a.44.44 0 01.47-.33.44.44 0 01.41.36c.07.34.13.68.19 1 .1.53.19 1.05.29 1.57l.18 1c.05.32.11.65.17 1l.18 1c.06.35.13.71.19 1.06l.18.95c0 .21.07.41.11.62v.02l.42-1.08c.1-.27.2-.54.31-.81s.28-.74.43-1.11.25-.66.38-1a2 2 0 01.11-.26.44.44 0 01.42-.23.42.42 0 01.38.28c.14.35.27.7.4 1s.25.67.38 1 .13.39.21.58v.07c0 .01.05 0 .07-.06l.49-.78a.6.6 0 01.2-.25.53.53 0 01.3-.09h2.22a.18.18 0 00.16-.08.87.87 0 01.87-.36.84.84 0 01.61.41.22.22 0 01.17.05z' fill='%23ed358f'/%3E%3Cpath d='M9.71 8.33a2.44 2.44 0 01.07-.39c0-.22.08-.44.13-.65s.05-.41.22-.55.14-.07.19-.13h.23a.52.52 0 01.33.47c0 .14.05.28.07.41.06.36.13.71.19 1.07s.11.6.17.9l.18 1 .12.65c.06.33.11.66.17 1l.18.93c.06.33.11.67.17 1s.09.44.13.66 0 .27.07.41 0 .06 0 .06c.13-.35.26-.71.4-1.07l.44-1.1c.13-.35.27-.71.4-1.07L14 11a.47.47 0 01.87 0l.39 1c.13.33.26.66.38 1l.21.54v.09c0 .01.05-.05.07-.08l.52-.84a.52.52 0 01.47-.26h2.19a.18.18 0 00.17-.08.87.87 0 01.9-.36.77.77 0 01.64.5c-.08-.08-.13-.18-.21-.25a.88.88 0 00-1.19 0 .7.7 0 00-.14.16c0 .06-.09.05-.14.05H17a.46.46 0 00-.42.23l-.12.19-.45.71s0 .07-.08.07 0 0-.05-.08c-.12-.33-.25-.66-.37-1s-.25-.67-.38-1-.15-.44-.25-.66a.4.4 0 00-.4-.25.43.43 0 00-.41.3l-.81 2.12-.57 1.47c-.08.19-.15.39-.22.58v.06l-.15-.82c-.09-.5-.17-1-.26-1.48l-.18-1c-.08-.4-.14-.8-.21-1.21s-.13-.62-.18-.94-.12-.65-.17-1-.12-.6-.17-.89-.08-.48-.13-.72-.05-.41-.26-.5A.41.41 0 0010 7a7.79 7.79 0 00-.2 1c0 .14-.07.27-.1.41z' fill='%23f69ec9'/%3E%3Cpath d='M9.71 8.33a2.66 2.66 0 01-.07.39c-.07.37-.15.74-.23 1.11l-.12.61c-.05.2-.09.41-.13.62s-.09.44-.14.66-.14.63-.19.94a1.75 1.75 0 00-.06.33v.08s-.06 0-.07-.07l-.49-1.32c-.09-.22-.17-.45-.26-.68a.38.38 0 00-.37-.29.43.43 0 00-.48.29l-.53 1.06a3.78 3.78 0 00-.17.35.13.13 0 01-.15.09H4.92a.35.35 0 01-.35-.14.82.82 0 00-1-.21.86.86 0 00-.48.65.88.88 0 001.57.67.2.2 0 01.21-.1h.84-.9a.16.16 0 00-.15.08.91.91 0 01-1.61-.25v-.5c.07 0 .05-.1.08-.15a.93.93 0 011-.52 1 1 0 01.55.37.14.14 0 00.13.07h1.42a.15.15 0 00.15-.1l.52-1c.08-.15.14-.29.23-.43a.43.43 0 01.42-.22.43.43 0 01.38.26c.11.27.21.54.31.82s.26.67.38 1c0 .07.05.13.07.19s0 .05 0 .05v-.05c0-.18.07-.35.11-.53s.11-.58.17-.87l.18-.89.18-.85c.07-.36.14-.71.22-1.07.09-.18.13-.32.16-.45z' fill='%23f48dc0'/%3E%3C/svg%3E");
  --icon-navbar-app-strategyAdvance: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cellipse cx='12.01' cy='11.98' rx='12' ry='11.99'/%3E%3Cpath d='M3 13.7v-.14a2.16 2.16 0 014.18-.27c0 .06 0 .1.11.09a4.72 4.72 0 002.48-.94 4.18 4.18 0 001.6-2.74 7.26 7.26 0 00.07-1.32V5.91h-.08L9.82 7.53a.51.51 0 01-.82-.2.52.52 0 01.15-.55L11 4.9l1-1h.08l2.82 2.82a.52.52 0 11-.73.74c-.52-.51-1-1-1.54-1.54l-.06-.09a.13.13 0 000 .12v3a5.43 5.43 0 01-1 3.21 5.33 5.33 0 01-3.24 2.06 4.85 4.85 0 01-.85.13c-.08 0-.11 0-.13.11A2.09 2.09 0 015.65 16 2.15 2.15 0 013 14.34v-.25a.81.81 0 000-.31zm18 .55v.13a2.16 2.16 0 01-4.2.15c0-.07 0-.1-.12-.11a5.69 5.69 0 01-3.18-1.23 5.12 5.12 0 01-1.14-1.27.14.14 0 010-.16 6.51 6.51 0 00.47-1.23c.05 0 .05.1.07.14a4.21 4.21 0 002.94 2.56 5 5 0 00.86.15c.07 0 .11 0 .13-.08a2.15 2.15 0 014.18.34v.19a.57.57 0 000 .26zm-9.19 6.86a.65.65 0 00-.24-.06 2.16 2.16 0 01-.24-4.15c.08 0 .11-.06.11-.15v-3.59a.33.33 0 01.08-.24 3.29 3.29 0 00.43-.54c0-.06.06-.07.11 0a3.56 3.56 0 00.41.53.23.23 0 01.07.17v3.65c0 .09 0 .12.1.15a2.16 2.16 0 01-.34 4.21h-.15a.57.57 0 00-.26 0z' fill='%23ed358f'/%3E%3Cpath d='M3 13.78a.42.42 0 010 .31z' fill='%23f26eaf'/%3E%3Cpath d='M21 14.09a.3.3 0 010-.26z' fill='%23ef4b9c'/%3E%3Cpath d='M11.88 21.11a.39.39 0 01.26 0z' fill='%23f59bc8'/%3E%3Cpath d='M5.16 12.83a1.12 1.12 0 110 2.23 1.12 1.12 0 110-2.23zm13.7.02A1.11 1.11 0 0120 14a1.12 1.12 0 01-2.24-.05 1.12 1.12 0 011.1-1.1zm-7.96 6.08a1.12 1.12 0 111.1 1.13 1.13 1.13 0 01-1.1-1.13z' fill='%23fefefe'/%3E%3C/svg%3E");

  --icon-navbar-app-target: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24.02'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cellipse cx='12' cy='12.01' rx='12' ry='12.01'/%3E%3Cpath class='cls-2' d='M10.67 3.84a2.34 2.34 0 011.65.79A4.11 4.11 0 0113 5.86a7 7 0 01.41 1.74 18.71 18.71 0 01.14 2.24v.68a.31.31 0 01-.28.34.3.3 0 01-.32-.3 12.27 12.27 0 00-.7-3 3.81 3.81 0 00-.57-1.14 1.57 1.57 0 00-2-.53 4.93 4.93 0 00-1.33.87 8.57 8.57 0 00-1.54 1.78 7 7 0 00-1 2.75A7.19 7.19 0 007.31 17a8.94 8.94 0 002.25 2 2.56 2.56 0 001.07.39 1.4 1.4 0 001.3-.63 3.94 3.94 0 00.53-1.09 10.74 10.74 0 00.5-1.93c0-.37.07-.74.09-1.12a.28.28 0 01.29-.28.29.29 0 01.27.31c0 .73 0 1.47-.07 2.2a13.87 13.87 0 01-.17 1.58 5 5 0 01-.55 1.73 1.92 1.92 0 01-1.49 1h-.25a.71.71 0 00-.29 0h-.12c-.14 0-.29 0-.44-.05a7.31 7.31 0 01-2-.76 10.39 10.39 0 01-1.78-1.22A11.14 11.14 0 015.24 18a11.31 11.31 0 01-1.08-1.49 8.29 8.29 0 01-1.08-2.93 4.76 4.76 0 01-.08-.84v-.16a.37.37 0 000-.18.37.37 0 000-.18v-.14a6.52 6.52 0 01.3-1.86 7.23 7.23 0 01.56-1.42 10.55 10.55 0 011.43-2.11 10.22 10.22 0 012.3-1.95 6.37 6.37 0 012.33-.89 1.94 1.94 0 01.34 0h.3s.08-.03.11-.01z'/%3E%3Cpath d='M21 14.34c-.05 0-.07 0-.1-.05l-.79-.89-.61-.69c-.08-.09-.08-.11 0-.2l1.06-1.19.36-.4s0-.05.08 0z' fill='%23fefefe'/%3E%3Cpath d='M10.56 3.84h-.18.18z' fill='%23f6a4cd'/%3E%3Cpath d='M3 12.2v.18-.18z' fill='%23f69ec9'/%3E%3Cpath d='M3 12.4v.18z' fill='%23f69dc9'/%3E%3Cpath d='M3 12.58v.18z' fill='%23facfe4'/%3E%3Cpath d='M3 12.2V12z' fill='%23facee4'/%3E%3Cpath d='M10.38 3.82h-.13z' fill='%23fad3e6'/%3E%3Cpath d='M10.56 3.84h.11z' fill='%23fad2e6'/%3E%3Cpath class='cls-2' d='M21 10.88l-.78.87-.72.8s-.06.07 0 .12l1.47 1.64c0 .07-.06 0-.09 0h-3.46a.26.26 0 01-.2-.08A4 4 0 0014.47 13h-1.79l-2.79-.06h-.45a.29.29 0 01-.31-.27.28.28 0 01.31-.28h1.51l2.93-.06a5.58 5.58 0 001.47-.17 4 4 0 001.86-1.13.25.25 0 01.19-.09h3.46s.14-.11.14-.06z'/%3E%3Cpath class='cls-2' d='M7.53 12.49a3.42 3.42 0 01.79-2.22 1.72 1.72 0 011-.63 1.11 1.11 0 011 .33 2.11 2.11 0 01.68 1.18l.12.68c0 .06 0 .08-.07.09H9.61a.65.65 0 00-.61.68.64.64 0 00.58.67h1.48c.06 0 .08 0 .07.08a5.56 5.56 0 01-.25 1.34 1.45 1.45 0 01-.5.71 1.19 1.19 0 01-1.42 0 2.91 2.91 0 01-1.16-1.46 4.06 4.06 0 01-.27-1.45z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  --icon-navbar-app-limit: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12.03' cy='12.01' rx='12' ry='11.99'/%3E%3Cpath d='M4.27 6h.19a.3.3 0 00.13 0H16.5a.34.34 0 00.14 0h.24a1.45 1.45 0 011.25 1.22 6.52 6.52 0 010 .76v.62c0 .16 0 .18.19.18h1.2a1.55 1.55 0 011.36.91 2.15 2.15 0 01.09.44V17a3.88 3.88 0 000 .59v.15a.15.15 0 000 .09 1.38 1.38 0 01-.85 1.17 2.14 2.14 0 01-.44.08h-.12a.29.29 0 00-.13 0H7.37a.29.29 0 00-.13 0h-.12A.2.2 0 007 19a1.49 1.49 0 01-1.22-1.26v-1.36c0-.18 0-.2-.2-.2H4.42a1 1 0 01-.24 0 1.57 1.57 0 01-1.09-.88 2 2 0 01-.09-.41V7.24a1.38 1.38 0 01.25-.71A1.29 1.29 0 014.2 6h.07z' fill='%23ed358f'/%3E%3Cpath class='cls-3' d='M21 10.09V10a1.51 1.51 0 00-1.47-1.19h-1.32c-.09 0-.11 0-.11-.12v-1.2A1.5 1.5 0 0016.86 6h-.05 4.09c.08 0 .1 0 .1.1zm-18 4.8V15a1.51 1.51 0 001.45 1.17h1.26c.1 0 .13 0 .13.13v1.2A1.51 1.51 0 007 19h.09-4C3 19.05 3 19 3 19zm16.68 4.16h.11A1.49 1.49 0 0021 17.86v-.1V19c0 .06 0 .07-.08.07zM4.27 6h-.08A1.48 1.48 0 003 7.17v.07V6h.07z'/%3E%3Cpath d='M7.24 19.05h12.32z' fill='%23f378b4'/%3E%3Cpath d='M16.64 6a.2.2 0 01-.13 0h-10z' fill='%23f056a1'/%3E%3Cpath d='M3 7.31a.19.19 0 010 .14v7.36z' fill='%23f168ab'/%3E%3Cpath d='M21 17v-6.69a.21.21 0 010-.15V17s0 .05 0 0z' fill='%23f161a7'/%3E%3Cpath d='M6.48 6h-1.9a.17.17 0 01-.12 0z' fill='%23f05ba4'/%3E%3Cpath d='M21 17v.58a2.26 2.26 0 010-.58z' fill='%23f169ac'/%3E%3Cpath class='cls-3' d='M10.55 9.7h6.54c.12 0 .15 0 .15.16v4.76a.65.65 0 01-.69.69h-12a.64.64 0 01-.69-.69V9.84c0-.12 0-.14.14-.14z'/%3E%3Cpath class='cls-3' d='M13.41 18.18h-6a.65.65 0 01-.71-.71v-1.18c0-.11 0-.13.13-.13h9.72a1.5 1.5 0 001.55-1.54v-1.94c0-.1 0-.13.12-.13H20c.09 0 .12 0 .12.12v4.82a.64.64 0 01-.69.69zM10.55 8.17H4c-.15 0-.15 0-.15-.15v-.53a.63.63 0 01.67-.67h12a.65.65 0 01.68.68v.56c0 .19 0 .12-.12.11h-6.53zM19.12 11h-.91c-.08 0-.12 0-.11-.11V9.76c0-.08 0-.11.1-.11h1.28a.63.63 0 01.65.59v.7c0 .23 0 .08-.1.08h-.91z'/%3E%3Cpath d='M7.32 13.13h.42c.06 0 .08 0 .08.08v.69c0 .07 0 .08-.08.08h-.86c-.06 0-.08 0-.08-.08v-.69c0-.07 0-.08.09-.08zm3.23.87h-.43c-.06 0-.09 0-.09-.09v-.68c0-.07 0-.08.09-.08H11c.07 0 .1 0 .1.08v.69c0 .07 0 .08-.1.08zm-4.86 0h-.41c-.06 0-.1 0-.1-.08v-.7s0-.07.08-.07h.87c.06 0 .08 0 .08.08v.68c0 .07 0 .09-.09.09zm3.24-.87h.41c.07 0 .1 0 .1.08v.68c0 .07 0 .09-.09.09h-.84c-.07 0-.1 0-.1-.08v-.68c0-.22 0-.1.1-.09z' fill='%23ed3590'/%3E%3C/svg%3E");
  --icon-navbar-app-optimize: url("data:image/svg+xml;charset=utf-8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 23.76'%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23ed358f}.cls-3{fill:%23fefefe}%3C/style%3E%3C/defs%3E%3Cellipse cx='12' cy='11.88' rx='11.99' ry='11.86'/%3E%3Cpath class='cls-2' d='M14.36 20.88c-.52-.4-1-.83-1.51-1.25a.36.36 0 010-.53c.33-.39.67-.78 1-1.18l.14-.16a.38.38 0 01.52 0 .36.36 0 010 .5l-.51.61h.1a7.38 7.38 0 005.15-5.43c.06-.25.09-.51.14-.76a.34.34 0 01.33-.3.37.37 0 01.38.24.34.34 0 010 .22 8.15 8.15 0 01-6 6.8h-.09l.64.54c.3.25.27.53-.07.71zM2.8 13.91c.36-.52.75-1 1.11-1.53a.39.39 0 01.6-.1l1.35 1a.36.36 0 01.19.37.37.37 0 01-.59.26l-.67-.48-.07-.05a7.12 7.12 0 00.39 1.21 7.38 7.38 0 005.24 4.37.38.38 0 01.32.46.37.37 0 01-.47.27 8.08 8.08 0 01-3.78-2A8 8 0 014 13.61a.25.25 0 000-.07l-.29.39-.19.27a.38.38 0 01-.67 0zM12 6.65h.49a.93.93 0 01.94.92V8a.18.18 0 00.12.2.18.18 0 00.23-.05l.28-.28a.93.93 0 011.31 0c.24.23.48.46.71.7a.91.91 0 010 1.31 3.7 3.7 0 01-.28.28.18.18 0 00-.05.22.21.21 0 00.19.13 3.09 3.09 0 01.61 0 .91.91 0 01.72.88v1a.91.91 0 01-.91.93H16a.2.2 0 00-.23.13c-.05.11 0 .18.08.24l.25.25a.92.92 0 010 1.32l-.7.7a.94.94 0 01-1.32 0l-.29-.29a.17.17 0 00-.22 0 .19.19 0 00-.12.19 4.78 4.78 0 010 .53.91.91 0 01-.89.79h-1a.92.92 0 01-.91-.89v-.41a.19.19 0 00-.12-.21.2.2 0 00-.24.05l-.25.25a.93.93 0 01-1.37 0L8 15.31a.92.92 0 010-1.33l.28-.28a.18.18 0 000-.22.17.17 0 00-.18-.12 5.42 5.42 0 01-.57 0 .91.91 0 01-.77-.9v-1a.92.92 0 01.87-.92H8a.2.2 0 00.15-.35l-.25-.35a.9.9 0 010-1.31l.69-.69a.94.94 0 011.33 0l.28.28a.2.2 0 00.36-.12v-.45a.91.91 0 01.91-.9zm8 3.23l.47-.81a.38.38 0 11.65.37c-.29.49-.57 1-.86 1.49a.38.38 0 01-.56.15l-1.49-.84a.36.36 0 01-.21-.51.38.38 0 01.53-.14l.66.38a1.07 1.07 0 00-.07-.32 7.46 7.46 0 00-5.71-5.18h-.17A.36.36 0 0113 4a.37.37 0 01.43-.29 8.5 8.5 0 011.64.46A8.24 8.24 0 0117.84 6 8 8 0 0120 9.76a.68.68 0 010 .12zM9.58 3.93l-.88-.32a.35.35 0 01-.23-.29.34.34 0 01.15-.32.37.37 0 01.38-.08l1.71.62a.35.35 0 01.21.46c-.19.56-.4 1.11-.6 1.66a.38.38 0 01-.49.22.38.38 0 01-.21-.49l.27-.73h-.08a7.39 7.39 0 00-4.26 3.4 7.15 7.15 0 00-.9 2.58.37.37 0 01-.45.36.36.36 0 01-.32-.42 6.53 6.53 0 01.35-1.48 8.12 8.12 0 014.25-4.73 7.25 7.25 0 011-.41s.09.04.1-.03z'/%3E%3Cpath class='cls-3' d='M12 16.39h-.47c-.15 0-.21-.06-.21-.21a3.85 3.85 0 000-.48.89.89 0 00-.63-.79.93.93 0 00-1 .22l-.28.27c-.1.1-.18.11-.28 0l-.69-.68a.17.17 0 010-.27l.29-.29a.94.94 0 00-.67-1.6h-.4c-.14 0-.2-.07-.2-.21v-.94c0-.14.06-.21.21-.21a4.34 4.34 0 00.51 0 .9.9 0 00.76-.61.89.89 0 00-.18-.94c-.09-.11-.21-.21-.31-.31a.19.19 0 010-.3l.66-.66a.19.19 0 01.31 0l.27.26A1 1 0 0011.31 8v-.42a.17.17 0 01.19-.19h1a.18.18 0 01.2.2V8a.92.92 0 00.56.86.93.93 0 001-.18l.29-.28c.1-.1.19-.11.29 0l.68.67a.17.17 0 010 .29l-.26.27a.9.9 0 00-.2 1 .89.89 0 00.86.58h.39c.15 0 .21.07.21.21v.94c0 .14-.06.2-.2.21a3.37 3.37 0 00-.55 0 .9.9 0 00-.74.62.91.91 0 00.2 1l.29.29a.18.18 0 010 .3l-.66.66c-.11.11-.19.11-.31 0l-.27-.27a.92.92 0 00-1-.19.89.89 0 00-.57.86v.38a.19.19 0 01-.21.21z'/%3E%3Cpath class='cls-2' d='M12 9.85a2 2 0 11-2.07 2 2 2 0 012.07-2z'/%3E%3Cpath class='cls-3' d='M13.31 11.89A1.32 1.32 0 1112 10.58a1.32 1.32 0 011.31 1.31z'/%3E%3C/svg%3E");
  --icon-navbar-app-faas: url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Ccircle cx='15.01' cy='15' r='15'/%3E%3Cpath d='M7.788 8.827l-.862.161c-.166.031-.329.07-.495.094-.27.039-.544-.157-.582-.406-.047-.312.141-.556.463-.61 1.035-.172 2.07-.346 3.104-.52l2.706-.447c.166-.027.334-.047.496-.088a.187.187 0 00.106-.13 2.18 2.18 0 01.395-.956c.954-1.324 3.015-1.206 3.798.22.067.123.137.139.263.116.574-.102 1.15-.196 1.725-.292a2481.347 2481.347 0 013.796-.634c.243-.041.488-.074.733-.118.316-.056.6.115.643.397.048.311-.156.554-.486.607-.521.078-1.04.165-1.56.252a.388.388 0 00-.074.031l.633 1.284c.766 1.549 1.535 3.097 2.305 4.645.119.237.122.474.081.723-.151.904-.564 1.67-1.278 2.27a3.578 3.578 0 01-1.834.827c-1.326.186-2.441-.217-3.341-1.174a3.415 3.415 0 01-.908-1.909c-.018-.132-.03-.264-.045-.396a.785.785 0 01.079-.45c.887-1.812 1.771-3.625 2.652-5.44l.072-.152-3.173.537c-.04.627-.275 1.158-.743 1.586-.258.235-.57.405-.909.496-.083.023-.107.058-.1.133v13.519h3.33c.31 0 .532.214.532.5a.502.502 0 01-.494.497h-7.633c-.326 0-.495-.114-.57-.379a.48.48 0 01.075-.416.504.504 0 01.38-.204h3.366V9.548c0-.118-.024-.173-.15-.211a2.157 2.157 0 01-1.387-1.213c-.049-.107-.102-.12-.213-.1-.584.102-1.17.194-1.755.29-.47.076-.94.15-1.427.23l.084.175c.93 1.884 1.86 3.767 2.791 5.648.057.12.08.254.066.386-.052 1.063-.468 1.96-1.285 2.667a3.758 3.758 0 01-4.726.12 3.546 3.546 0 01-1.374-2.274 4.1 4.1 0 01-.049-.34 1.09 1.09 0 01.098-.61c.88-1.78 1.75-3.564 2.62-5.348.018-.038.033-.076.061-.14zm15.83 3.394L21.23 7.362l-2.384 4.86h4.774zm-12.574 2.02L8.66 9.395 6.284 14.24l4.76.001zm12.83-1.006h-5.261c-.037.89 1.164 2.02 2.28 2.132 1.452.148 2.706-.778 2.98-2.132zm-17.85 2.031c.26 1.415 1.64 2.359 3.09 2.115 1.285-.203 2.094-1.303 2.165-2.115H6.024zm10.153-8.05c-.005-.662-.557-1.194-1.233-1.191-.677.003-1.224.54-1.222 1.201.001.661.55 1.197 1.226 1.197.327 0 .64-.127.872-.354a1.19 1.19 0 00.357-.854z' fill='%23FE0194' fill-rule='nonzero'/%3E%3C/g%3E%3C/svg%3E");
}

._logo-header_1pxjg_139 {
  border-width: 0 0 2px;
  -o-border-image: linear-gradient(90deg, #af1685, #1d4f91) 50;
  border-image: linear-gradient(90deg, #af1685, #1d4f91) 50;
  border-style: solid;
  margin-left: calc(var(--contentarea-inner-padding-sides) * -1);
  margin-right: calc(var(--contentarea-inner-padding-sides) * -1);
  padding: 10px var(--contentarea-inner-padding-sides) 10px
    var(--contentarea-inner-padding-sides);
  margin-bottom: 20px;
}

._logo-header_1pxjg_139 img {
  height: 50px;
}

div[class*='pageLoginDialog'] {
  padding: unset;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0;
  background: #ffffff !important;
  display: flex;
  width: 100% !important;
  --button-primary-bg-normal: #426da9;
  --button-primary-bg-hover: #1d4f91;
  --color-text-white: #000000;
}

div[class*='loginDialogContent'] > img {
  display: none;
}

._pageTitle_1pxjg_173 {
  font-size: 34px;
  font-size: var(--font-xxl);
  font-weight: 300;
  font-weight: var(--weight-regular);
  color: #000000;
  color: var(--color-heading);
  margin-bottom: 15px;
}

div[class*='loginDialogContent']::before {
  content: url('/decisionanalytics/ascend-intelligence/experian/ascend_logo.png');
  display: block;
  margin-bottom: 50px;
}

div[class*='loginDialogContent'] div[class*='inputY'] {
  height: 48px !important;
  margin-bottom: 30px !important;
}

div[class*='loginDialogContent'] div[class*='inputY'] input[id*='input-y'] {
  height: 48px !important;
}

div[class*='pageLoginDialog']
  div[class*='loginDialogContent']
  button[class*='buttonX'] {
  width: 100% !important;
  height: 50px !important;
}

div[class*='pageLoginDialog'] div[class*='dialogContent'] {
  margin: 80px auto 36px auto;
}

div[class*='pageLoginDialog']::before {
  content: '';
  display: block;
  height: 100%;
  width: calc(100% - 540px) !important;
  background: url('/decisionanalytics/ascend-intelligence/experian/login_image.jpg') no-repeat center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* div[class*="panelContainer"] svg[class*="toggle"] {
  float: right;
  margin-top: 7px;
} */

._experian-app_1pxjg_224 {
  display: flex;
  flex-direction: row;
  min-width: 100%;
}

._experian-app_1pxjg_224 ._content-area_1pxjg_230 {
  background-color: black !important;
}

._incompleteItem_1pxjg_234 {
  color: #ccc;
}

._completeIcon_1pxjg_238 {
  margin-right: 12px;
  width: 0.8em !important;
}

._panel_1pxjg_243 {
  margin-top: 10px;
}

._panelContent_1pxjg_247 {
  padding: 5px 0 5px 60px;
}

._panelContent_1pxjg_247 ._completeIcon_1pxjg_238 {
  margin-bottom: 2px;
  margin-left: -28px;
  margin-top: 2px;
}

._panelItem_1pxjg_257 {
  padding: 5px 0 5px 15px;
}

._panelTitle_1pxjg_261 {
  padding: 0 0 5px 0;
}

._panelContainer_1pxjg_265 {
  background: #ffffff;
  /* background: #FAFAFA; */
  /* border: 1px solid #F2F8FF; */
  /* border-bottom: 1px solid transparent; */
  /* border-bottom: 2px solid var(--color-section-border); */
}

._panelContainer_1pxjg_265._collapsed_1pxjg_273 {
  margin: -1px 0 5 0;
  background-color: #f2f8ff;
}

._panelContainer_1pxjg_265 ._title_1pxjg_278 {
  color: #050505;
  background: #f2f8ff;
  font-size: var(--font-xl);
  font-weight: var(--weight-medium);
  user-select: none;
  cursor: pointer;
  padding: 8px 12px;
}

._panelContainer_1pxjg_265 ._toggle_1pxjg_288 {
  width: 24px;
  color: #606060;
  text-align: center;
}

._panelContainer_1pxjg_265 ._content_1pxjg_230 {
  /* margin-top: 10px; */
  padding: 8px 12px 8px 20px;
  /* border-top: 1px solid #d6d6d6; */
}

._panelContainer_1pxjg_265._collapsed_1pxjg_273 ._content_1pxjg_230 {
  height: 0;
  overflow: hidden;
  margin: 0;
  border-top: none;
}

._PanelIcon_1pxjg_307 {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  /* background: var(--icon-button-bg-normal) no-repeat center; */
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  padding-top: 10px;
  margin-bottom: -4px;
  margin-right: 5px;
}

._panelComplete_1pxjg_321 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/section_complete-5f115e15.svg');
}

._panelIncomplete_1pxjg_325 {
  background-image: url('/decisionanalytics/ascend-intelligence/assets/section_incomplete-3e878447.svg');
}

._update-property_1pxjg_329 {
  float: right;
}

._approved_1pxjg_333 {
  color: #717171;
}

._addDocument_1pxjg_337 {
  vertical-align: middle;
  font-size: 10px;
  margin-left: 0.75rem;
}

._approval-action_1pxjg_343 {
  margin: 35px 0 25px -15px;
}
:root {
  --danger-bg: #b91c1c;
  --danger-text: white;
  --success-bg: #16a34a;
  --success-text: white;
  --info-bg: #0369a1;
  --info-text: white;
  --warning-bg: #ea580c;
  --warning-text: white;
  --secondary-bg: #94a3b8;
  --secondary-text: white;
  --background: #d6d6d6;
  --selected-bg: #d3d3d3e5;
  --alt-row-bg: #b7b7b7e5;
  --subtle-text: #888;
}

._detailLink_1n3hd_18 {
  height: 100%;
  padding: 1rem;
  background-color: var(--secondary-bg);
  display: flex;
  align-items: center;
  border-radius: 0 5px 5px 0;
  border: 1px solid var(--secondary-bg);
}
._stepSummary_1n3hd_27 {
  padding: 1rem;
  flex-grow: 1;
}
._shadow_1n3hd_31 {
  box-shadow:
    0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075);
}
._stepActionButton_1n3hd_36 {
  height: auto;
  background-color: var(--info-bg);
  color: var(--info-text);
  border-radius: 3px;
  padding: 3px 10px;
  margin: 6px;
}
._stepDetailsWrapper_1n3hd_45 {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
._stepDetails_1n3hd_45 {
  color: #888;
  flex-grow: 1;
}

._stepHeading_1n3hd_55 {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 20px;
  flex-grow: 1;
}
._buildStep_1n3hd_61 {
  display: flex;
  width: 100%;
  background-color: var(--background);
  margin-bottom: 1rem;
  border-radius: 5px;
}
._buildStepInner_1n3hd_69 {
  display: flex;
  align-items: center;
  width: 100%;
}
._flex_1n3hd_74 {
  display: flex;
  align-items: center;
}

._statusBadge_1n3hd_79 {
  padding: 2px 3px;
  font-size: 1rem;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  min-width: 80px;
  text-align: center;
}

._Pending_1n3hd_89,
._Acquired_1n3hd_90,
._Running_1n3hd_91,
._NotStarted_1n3hd_92 {
  background-color: var(--secondary-bg);
  color: var(--secondary-text);
}

._Cancelled_1n3hd_97,
._Deleted_1n3hd_98 {
  background-color: var(--warning-bg);
  color: var(--warning-text);
}

._Failed_1n3hd_103 {
  background-color: var(--danger-bg);
  color: var(--danger-text);
}

._Done_1n3hd_108 {
  background-color: var(--success-bg);
  color: var(--success-text);
}

/* PIPELINE DETAIL */

._stepExecutionDetails_1n3hd_115 {
  background-color: var(--background);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

._stepExecutionStackedValue_1n3hd_123 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
  font-weight: bold;
}
._stepExecutionHeading_1n3hd_130 {
  margin-top: 0px;
  margin-bottom: 0px;
}
._stepExecutionSubheading_1n3hd_134 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #777;
}
._stepExecutionDetailLabel_1n3hd_139 {
  text-align: left;
  color: #777;
  padding-bottom: 5px;
}
._stepExecutionDetailValue_1n3hd_144 {
  text-align: left;
  color: #333;
}
._stepExecutionDetailRow_1n3hd_148 {
  display: flex;
  margin-top: 20px;
}

._statsHeader_1n3hd_153 {
  margin-top: 24px;
  margin-bottom: 11px;
  font-size: var(--font-xl);
  font-weight: var(--weight-regular);
  color: var(--color-text-black);
}

._statsTable_1n3hd_161 {
  border-collapse: collapse;
}

._statsTable_1n3hd_161 tbody tr td {
  border-bottom: 1px solid var(--alt-row-bg);
}
._statsTable_1n3hd_161 tbody tr:last-child td {
  border-bottom: 0px;
}

._statsTable_1n3hd_161 tbody tr:hover td {
  background-color: var(--selected-bg);
}

._statsTable_1n3hd_161 {
  line-height: 36px;
}
._moreLink_1n3hd_179 {
  color: #337ab7;
}

._statsTable_1n3hd_161 tr td,
._statsTable_1n3hd_161 tr th {
  padding: 0 14px 0 0;
  line-height: 2.25;
  min-width: 200px;
}
._statsTable_1n3hd_161 tr th {
  font-style: italic;
  font-weight: normal;
  color: #777;
  border-bottom: 2px solid var(--alt-row-bg);
}

._statsParameterValue_1n3hd_196 {
  color: #333;
}

._statsParameterKey_1n3hd_200 {
  color: #777;
}

._statsTable_1n3hd_161 thead td {
  background-color: var(--color-bg-level2);
  color: var(--color-text-blue);
  font-size: var(--font-s);
  font-weight: var(--weight-medium);
}
._subtle_1n3hd_210 {
  color: var(--subtle-text);
}

/* LOG ENTRIES */

._logEntry_1n3hd_216 {
  padding: 10px;
}

._errorEntryIcon_1n3hd_220 {
  color: var(--danger-bg);
  display: inline-block;
  margin-left: 10px;
}

._logEntry_1n3hd_216:hover {
  background-color: var(--selected-bg);
}
._logEntryExpanded_1n3hd_229 {
  background-color: var(--selected-bg);
}
._logSummaryMessage_1n3hd_232 {
  padding: 0px 10px;
  flex-grow: 1;
  color: #777;
}
._logMoreInfo_1n3hd_237 {
  flex-grow: 0;
  margin-right: 10px;
}
._logDuration_1n3hd_241 {
  flex-grow: 0;
}
._logSummary_1n3hd_232 {
  display: flex;
  cursor: pointer;
  align-items: center;
}
