@keyframes Loader_LoaderSvg_svgLoader_2de {
  0% {
    opacity: 1;
  }
  42% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.3;
  }
}

/* A negative animation-delay causes the animation to begin immediately, but
   partway through its cycle, this prevents loader bars staying on their start
   frame (opacity 1) when the loader first appears:
   https://developer.mozilla.org/en-US/docs/Web/CSS/animation-delay */
.Loader_LoaderSvg_svg_e09 path {
    animation: Loader_LoaderSvg_svgLoader_2de 1200ms infinite linear;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(1) {
    animation-delay: -1100ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(2) {
    animation-delay: -1000ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(3) {
    animation-delay: -900ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(4) {
    animation-delay: -800ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(5) {
    animation-delay: -700ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(6) {
    animation-delay: -600ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(7) {
    animation-delay: -500ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(8) {
    animation-delay: -400ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(9) {
    animation-delay: -300ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(10) {
    animation-delay: -200ms;
  }
.Loader_LoaderSvg_svg_e09 path:nth-child(11) {
    animation-delay: -100ms;
  }

/* needs specificity to override UnstyledButton */
button.Button_LinkButton_linkButton_390 {
  color: #3781b8;
  color: var(--linkColor);
}
button.Button_LinkButton_linkButton_390:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
    color: #3274a6;
    color: var(--linkColorHover);
  }

.Button_LinkButton_small_d6f {
  font-size: 13px;
}

/* some reset rules from https://gist.github.com/MoOx/9137295 */
.Button_UnstyledButton_button_41c {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  text-align: inherit;
  font: inherit;
  line-height: normal;
  vertical-align: inherit;
  color: inherit;

  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;

  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

/* CSS specific to our composeable V2 modals.
   General (global) modal styles are in modals.less
   TODO: merge the two if/when there are fewer handlebars modals. */

.Modal {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1050;
  z-index: var(--zindexModal);
  width: 560px;
  max-height: 80vh;
  margin-top: 10vh;
  background-color: #ffffff;
  background-color: var(--surfaceBackgroundDefault);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-radius: var(--modalBorderRadius);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  /* Remove focus outline from opened modal */
  outline: none;

  /* reapply fixed positioning for modals that are not children of their backdrop (Legacy modals) */
}

.Modal.BootstrapModal {
    position: fixed;
  }

/* smaller screen height: give more vertical space */

@media (max-height: 600px) {

.Modal {
    margin-top: 32px;
    margin-top: var(--spacing-32);
    max-height: calc(100vh - (32px * 2));
    max-height: calc(100vh - (var(--spacing-32) * 2));
}
  }

/* mobile: size12 around whole modal */

@media (max-width: 600px) {

.Modal {
    width: calc(100vw - (12px * 2));
    width: calc(100vw - (var(--spacing-12) * 2));
    margin-top: 12px;
    margin-top: var(--spacing-12);
    max-height: calc(100vh - (12px * 2));
    max-height: calc(100vh - (var(--spacing-12) * 2));
}
  }

.Modal__closeCrossBtn:disabled {
  pointer-events: none;
}

.Modal__closeCrossBtn:disabled:hover,
  .Modal__closeCrossBtn:disabled:focus {
    opacity: 0.2; /* keep opacity the same as if un-hovered */
  }

.Modal__footer {
  display: flex;
  text-align: left;
  align-items: center;
}

@media screen and (max-width: 767px) {

.Modal__footer {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
}
  }

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

@media screen and (max-width: 767px) {

.Modal__subActions {
    order: 2;
    border-top: 1px solid #e2e2e2;
    border-top: 1px solid var(--borderDefault);
    justify-content: center;
    padding: 16px 0;
    padding: var(--spacing-16) 0;
}
  }

.Modal__actions {
  margin-left: auto;
}

@media screen and (max-width: 767px) {

.Modal__actions {
    order: 1;
    padding: 0 0 16px 0;
    padding: 0 0 var(--spacing-16) 0;
}
  }

.Modal__actionsLoader {
  display: inline-block;
  margin-right: 10px;
}

.Modal__disabledBtn {
  /* We need this so that a tooltip works properly over a disabled button.
     Workaround for https://github.com/facebook/react/issues/4251 */
  pointer-events: none;
}

.Modal_v2_backdrop_c8d {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  z-index: var(--zindexModalBackdrop);
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 200ms; /* duration must match closeTimeoutMS prop */
}

.Modal_v2_backdropAfterOpen_1f1 {
  background-color: rgba(0, 0, 0, 0.8);
  transition-timing-function: ease-out;
}

.Modal_v2_backdropBeforeClose_210 {
  background-color: rgba(0, 0, 0, 0);
  transition-timing-function: ease-in;
}

.Modal_v2_body_430 {
  position: relative;
  overflow-y: auto;
}

.Modal_v2_body_430.Modal_v2_globalPadding_c57 {
    padding: 16px;
    padding: var(--modalBodyPadding);
  }

.Modal_v2_bodyContainer_e72 {
  opacity: 0;
  scale: 0.95;
  transition:
    scale 200ms, opacity 200ms; /* duration must match closeTimeoutMS prop */
}

.Modal_v2_bodyContainerAfterOpen_c72 {
  opacity: 1;
  scale: 1;
  transition-timing-function: ease-out;
}

.Modal_v2_bodyContainerBeforeClose_5f0 {
  opacity: 0;
  scale: 0.95;
  transition-timing-function: ease-in;
}

.Loader_fullscreen_307 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3; /* above lead page stuff and below search input */
}

.Loader_svgLoader_90b {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 2px;
  vertical-align: -3px;
}

.Tooltip_tooltip_483 {
  width: max-content;
  word-wrap: break-word;
  opacity: 0.95;
}

.Tooltip_tooltip_483[data-placement^='bottom'] .Tooltip_arrow_067 {
    top: -2px;
  }

.Tooltip_tooltip_483[data-placement^='top'] .Tooltip_arrow_067 {
    bottom: -2px;
  }

.Tooltip_tooltip_483[data-placement^='left'] .Tooltip_arrow_067 {
    right: -2px;
  }

.Tooltip_tooltip_483[data-placement^='right'] .Tooltip_arrow_067 {
    left: -2px;
  }

.Tooltip_content_40e {
  font-size: 11px;
  line-height: 1.5;
  padding: 7px;
  border-radius: 3px;
  color: #ffffff;
  color: var(--colorTextNeutralWhite);
  background: #474747;
  background: var(--colorBgTooltip);
  text-align: center;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.Tooltip_content_40e a {
    color: inherit;
  }

.Tooltip_shortcutKeyList_08f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.Tooltip_shortcutKeyItem_f1d {
  background-color: #5e5e5e;
  background-color: var(--colorBgTooltipKey);
  border-radius: 3px;
  box-sizing: border-box;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.Tooltip_arrow_067,
  .Tooltip_arrow_067::before {
    position: absolute;
    width: 10px;
    height: 10px;
    z-index: -1;
  }

.Tooltip_arrow_067::before {
    content: '';
    transform: rotate(45deg);
    background: #474747;
    background: var(--colorBgTooltip);
  }

.Tooltip_TruncateText_truncated_801 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* so dots have correct color */
  color: currentColor;
}

.IconSVG {
  line-height: 0;
  vertical-align: middle;
}

.IconSVG--inlineBlock {
  display: inline-block;
  vertical-align: text-bottom;
}

.IconSVG--tiny svg {
  width: 8px;
}

.IconSVG--mini svg {
  width: 12px;
}

.IconSVG--small svg {
  width: 14px;
}

.IconSVG--regular svg {
  width: 16px;
}

.IconSVG--large svg {
  width: 20px;
}

.IconSVG--fluid svg {
  width: 100%;
}

.HintIcon_hintIcon_d60 {
  margin: 0 4px;
  align-self: center;
}

.Typography_defaultColor_ce4 {
  color: #2e2e2e;
  color: var(--colorTextDefault);
}

.Typography_mediumColor_333 {
  color: #5e5e5e;
  color: var(--colorTextMedium);
}

.Typography_lightColor_dd6 {
  color: #767676;
  color: var(--colorTextLight);
}

.Typography_errorColor_5e4 {
  color: #dd0f21;
  color: var(--colorTextDanger);
}

.Typography_linkColor_409 {
  color: #3781b8;
  color: var(--linkColor);
}

.Typography_invertedColor_e5c {
  color: #ffffff;
  color: var(--colorTextNeutralInvert);
}

.Typography_displayText_322 {
  margin: 0;
  font-weight: 700;
}

.Typography_displayText_322.Typography_medium_e73,
  .Typography_displayText_322.Typography_large_1aa {
    font-size: 24px;
    font-size: var(--headingSizeDisplay);
    line-height: 32px;
  }

@media screen and (min-width: 768px) {
    .Typography_displayText_322.Typography_large_1aa {
      font-size: 30px;
      font-size: var(--headingSizeSuper);
      line-height: 40px;
    }
  }

.Typography_heading_b67 {
  margin: 0;
}

.Typography_heading_b67.Typography_small_fad {
    font-size: 14px;
    font-size: var(--fontSizeBase);
    line-height: 18px;
    font-weight: 600;
    font-weight: var(--fontWeightBold);
  }

.Typography_heading_b67.Typography_medium_e73 {
    font-size: 16px;
    font-size: var(--headingSizeMedium);
    line-height: 20px;
    font-weight: 700;
  }

.Typography_heading_b67.Typography_large_1aa {
    font-size: 18px;
    font-size: var(--headingSizeLarge);
    line-height: 24px;
    font-weight: 700;
  }

.Typography_caption_486 {
  line-height: 16px;
}

.Typography_caption_486.Typography_small_fad {
    font-size: 12px;
    font-size: var(--fontSizeTiny); /* uiText smallest */
  }

.Typography_caption_486.Typography_medium_e73 {
    font-size: 13px;
    font-size: var(--fontSizeSmall);
  }

.Typography_uiText_80f {
  line-height: 16px;
  font-weight: normal;
}

.Typography_uiText_80f.Typography_x-small_4d1 {
    font-size: 11px;
  }

.Typography_uiText_80f.Typography_smallest_4b7 {
    font-size: 12px;
  }

.Typography_uiText_80f.Typography_small_fad {
    font-size: 13px;
  }

.Typography_uiText_80f.Typography_base_141 {
    font-size: 14px;
  }

/* when text is uppercase, it renders at smaller sizes */

.Typography_uiText_80f.Typography_uppercase_a90 {
    text-transform: uppercase;
    letter-spacing: 0.25px;
    font-feature-settings:
      'pnum' on,
      'lnum' on,
      'cv09' on;
  }

.Typography_uiText_80f.Typography_uppercase_a90.Typography_x-small_4d1 {
      font-size: 9px;
    }

.Typography_uiText_80f.Typography_uppercase_a90.Typography_smallest_4b7 {
      font-size: 10px;
    }

.Typography_uiText_80f.Typography_uppercase_a90.Typography_small_fad {
      font-size: 11px;
    }

.Typography_uiText_80f.Typography_uppercase_a90.Typography_base_141 {
      font-size: 12px;
    }

.Typography_uiText_80f.Typography_bold_667 {
    font-weight: 600;
    font-weight: var(--fontWeightBold);
  }

.Typography_uiText_80f.Typography_italic_8da {
    font-style: italic;
  }

.Typography_uiText_80f.Typography_underline_fdb {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.Typography_uiText_80f.Typography_noWrap_d73 {
    white-space: nowrap;
  }

.Typography_uiText_80f.Typography_numeric_d1d {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
  }

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

.Typography_pointerCursor_5f5 {
  cursor: pointer;
}

.Typography_KeyboardHint_keyboardHint_87e {
  background: #f1f1f1;
  background: var(--surfaceBackgroundDark);
  border-radius: 3px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
  font-family: var(--monoFontFamily);
  line-height: 16px;
  padding: 2px 4px;
  padding: 2px var(--spacing-4);

  /**
   * these sizes are smaller than normal typography mappings because
   * the monospace font family appears higher-emphasis to our UI text
   */
}.Typography_KeyboardHint_keyboardHint_87e.Typography_KeyboardHint_x-small_b69,
  .Typography_KeyboardHint_keyboardHint_87e.Typography_KeyboardHint_smallest_043 {
    font-size: 10px;
    padding: 1px 4px;
    padding: 1px var(--spacing-4);
  }.Typography_KeyboardHint_keyboardHint_87e.Typography_KeyboardHint_small_e50 {
    font-size: 11px;
  }.Typography_KeyboardHint_keyboardHint_87e.Typography_KeyboardHint_base_6cb {
    font-size: 12px;
  }.Typography_KeyboardHint_keyboardHint_87e.Typography_KeyboardHint_defaultColor_687 {
    color: #2e2e2e;
    color: var(--colorTextDefault);
  }.Typography_KeyboardHint_keyboardHint_87e.Typography_KeyboardHint_linkColor_57c {
    /* TODO [darkmode] confirm alias */
    background-color: #eaf1ff;
    background-color: var(--bgTokenDefault);
    color: #3781b8;
    color: var(--colorLinkDefault);
  }

.subcomponents_ModalBanner_main_20d {
  padding: 16px;
  display: flex;
  align-items: flex-start;
}

.subcomponents_ModalBanner_main_20d.subcomponents_ModalBanner_info_e77 {
    background: #eef7fb;
    background: var(--closeLightBlue);
  }

.subcomponents_ModalBanner_main_20d.subcomponents_ModalBanner_danger_bb3 {
    background: #fbe6e8;
  }

.subcomponents_ModalBanner_main_20d.subcomponents_ModalBanner_bottomBorder_cc0 {
    border-bottom: 1px solid #e2e2e2;
    border-bottom: 1px solid var(--borderDefault);
  }

.subcomponents_ModalBanner_icon_a61 {
  flex: 0 0 auto;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.subcomponents_ModalBanner_content_9f7 {
  flex: 0 1 100%;
}

.subcomponents_ModalBanner_headerTooltip_34e {
  /* Nudge the tooltip into place. */
  display: inline-flex;
  position: relative;
  top: 3px;
}

.subcomponents_ModalBanner_body_edd {
  color: #474747;
  color: var(--gray-70);

  /* If there is a prior sibling (eg a title), we want a little extra spacing
     before the body */
}

.subcomponents_ModalBanner_body_edd:not(:first-child) {
    margin-top: 2px;
  }

.subcomponents_ModalForm_form_dcd {
  box-sizing: border-box;

  /* override global */
  margin: 0;

  /* fill height so child components behave as though this extra element wasn't there */
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* override .modal-header, padding is applied to inner element instead */
.modal-header.subcomponents_ModalHeader_header_5ad {
  padding: 0;
}
.subcomponents_ModalHeader_header_5ad.modal-header .Modal__closeCrossBtn {
    margin-top: 0;
  }
.subcomponents_ModalHeader_header_5ad.subcomponents_ModalHeader_noBorder_ed4.modal-header {
    border-bottom: 0;
  }

.subcomponents_ModalHeader_headerInner_ae9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  padding: var(--modalBodyPadding);
}

.Message_message_a69 {
  width: 100%;
  padding: 14px 35px 14px 14px;
  display: none;
  box-sizing: border-box;
  line-height: 16px;

  border: 1px solid #e2e2e2;

  border: 1px solid var(--borderDefault);
  border-style: solid;
  border-radius: 3px;
  border-radius: var(--baseBorderRadius);
  color: #2e2e2e;
  color: var(--colorTextDefault);
  font-size: 13px;

  /* Keeping it here for compatibility purposes. */
}

.Message_message_a69 h4 {
    margin: 0;
  }

.Message_message_a69 > p,
  .Message_message_a69 > ul {
    margin-bottom: 0;
  }

.Message_message_a69 p + p {
    margin-top: 5px;
  }

.Message_withMargin_689 {
  margin-bottom: 20px;
  margin-bottom: var(--spacing-20);
}

.Message_warning_c9f {
  background-color: #f9f2cd;
  background-color: var(--bgWarnMuted);
}

.Message_danger_525 {
  background-color: #ffece9;
  background-color: var(--bgDangerMuted);
}

.Message_info_72e {
  background-color: #e5f3ff;
  background-color: var(--bgInformationalMuted);
}

.Message_success_997 {
  background-color: #dffadc;
  background-color: var(--bgSuccessMuted);
}

.Message_visible_3c0 {
  display: block;
}

.Message_narrow_e36 {
  padding: 8px 12px;
  padding: var(--spacing-8) var(--spacing-12);
}

.Message_wide_9a4 {
  padding: 16px;
  padding: var(--spacing-16);
}

.Message_borderLess_ac9 {
  border: 0;
  border-radius: 0;
}

.Message_close_628 {
  float: right;
  background: transparent;
  border: 0;
  font-size: 21px;
  padding: 0;
  color: rgba(0, 0, 0, 0.2);
  margin-left: 10px;
  margin-top: -3px;
}

.UserAvatar_avatarContainer_afa {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
  font-weight: 600;
  font-weight: var(--fontWeightBold);
  background: #ffffff;
  background: var(--surfaceBackgroundDefault);
}

.UserAvatar_avatarContainer_afa.UserAvatar_mini_cc9 {
    width: 16px;
    height: 16px;
    font-size: 7.25px;
    line-height: 9px;
  }

.UserAvatar_avatarContainer_afa.UserAvatar_x-small_270 {
    width: 20px;
    height: 20px;
    font-size: 9px;
    line-height: 9px;
  }

.UserAvatar_avatarContainer_afa.UserAvatar_small_914 {
    width: 24px;
    height: 24px;
    font-size: 10px;
    line-height: 9px;
  }

.UserAvatar_avatarContainer_afa.UserAvatar_medium_1f8 {
    width: 32px;
    height: 32px;
    font-size: 12px;
    line-height: 14px;
  }

.UserAvatar_avatarContainer_afa.UserAvatar_large_f5f {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 19px;
  }

.UserAvatar_avatar_4d2 {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.UserAvatar_avatar_4d2:after {
    border-radius: 50%;
  }

.UserAvatar_border_ec7 {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 50%;
  /* TODO [darkmode] might need to alias this so we can have a light version in dark moda? */
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 10;
  z-index: var(--userAvatarZIndex);
}

.UserAvatar_image_fec {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 50%;
}

.UserAvatar_initials_183 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-weight: var(--fontWeightBold);
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
}

.Badge_badge_c32 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  padding: 3px 7px;
  font-weight: 600;
  font-weight: var(--fontWeightBold);
  color: #2e2e2e;
  color: var(--colorTextDefault);
  border-radius: 50px;
  line-height: 12px;
  overflow: hidden;
  max-width: 100%;
  min-width: 20px;
  min-height: 20px;

  /*
    We don't want any default text-shadows to be set on the Badge.
    Remove any shadow set by eg. Message component
  */
  text-shadow: none;

  /* This is assigned a color elsewhere */
  border: 1px solid transparent;
}

.Badge_icon_ea1 {
  margin-right: 4px;
  display: inline-block;
  height: 12px;
}

.Badge_icon_ea1 svg {
    width: 12px;
    height: 12px;
    vertical-align: bottom;
  }

.Badge_small_87f {
  font-size: 10px;
  padding: 2px 4px;
  min-width: 16px;
  line-height: 10px;
  min-height: 16px;
}

.Badge_small_87f .Badge_icon_ea1 {
    margin-right: 5px;
    height: 10px;
  }

.Badge_small_87f .Badge_icon_ea1 svg {
      width: 10px;
      height: 10px;
    }

.Badge_isCircle_2fd {
  padding: 3px 1px;
}

.Badge_isCircle_2fd.Badge_small_87f {
    padding: 2px;
  }

.Badge_isCircle_2fd .Badge_icon_ea1 {
    margin: 0;
  }

.Badge_default_708 {
  background-color: #e2e2e2;
  background-color: var(--borderDefault);

  /* only default style supports an outline atm */
}

.Badge_default_708.Badge_outlined_bbd {
    border-color: #e2e2e2;
    border-color: var(--gray-10);
    background-color: white;
  }

.Badge_text_9c4,
.Badge_prefix_745 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 50%;
  max-width: max-content;
}
.Badge_prefix_745 {
  color: #2e2e2e;
  color: var(--colorTextDefault);
  background-color: #ffffff;
  background-color: var(--surfaceBackgroundDefault);
  /* eat padding of Badge */
  margin: -4px 6px -4px -7px;
  padding: 3px 7px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border: 1px solid #e2e2e2;
  border: 1px solid var(--gray-10);
  border-right: 0;
}
.Badge_small_87f .Badge_prefix_745 {
    margin: -3px 6px -3px -4px;
    padding: 2px 6px;
  }

.Badge_info_65c,
.Badge_danger_d5c,
.Badge_success_402 {
  color: white;
}

.Badge_info_65c {
  background-color: #3781b8;
  background-color: var(--linkColor);
}

.Badge_warning_91f {
  background-color: #fccc0b;
  background-color: var(--warningPrimaryColor);
}

.Badge_danger_d5c {
  background-color: #dd0f21;
  background-color: var(--failurePrimaryColor);
}

.Badge_success_402 {
  background-color: #4ec375;
  background-color: var(--successPrimaryColor);
}

.Badge_active_d0f {
  background-color: #ffbd2e;
  background-color: var(--statusTypeActiveColor);
}

.Badge_inverted_202 {
  background-color: #ffffff;
  background-color: var(--white);
}

.Badge_inverted_202.Badge_outlined_bbd {
    border-color: #e2e2e2;
    border-color: var(--gray-10);
  }

.Popover_popover_91a {
  --popoverBorderRadius: 3px;
  background-clip: padding-box;
  border-radius: 3px;
  border-radius: var(--popoverBorderRadius);
  border: 1px solid #e2e2e2;
  border: 1px solid var(--borderDefault);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  color: #2e2e2e;
  color: var(--colorTextDefault);
  line-height: 20px;
  background-color: #ffffff;
  background-color: var(--bgPopover);
  max-height: 70vh;
  position: relative;
  z-index: 2;
}

.Popover_popover_91a.Popover_hasManualHeight_f49 {
    height: 100%;
    max-height: none;
  }

/* https://popper.js.org/docs/v2/modifiers/hide/ */

.Popover_popover_91a[data-reference-hidden] {
    visibility: hidden;
  }

/* tippy arrow with border
   https://github.com/atomiks/tippyjs/blob/master/src/scss/index.scss */
.Popover_arrow_bee {
  position: absolute;
  width: 12px;
  height: 12px;
}
.Popover_arrow_bee::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border: 1px solid #e2e2e2;
    border: 1px solid var(--borderDefault);
    background-color: #ffffff;
    background-color: var(--bgPopover);
    background-clip: padding-box;
  }
.Popover_arrow_bee.Popover_grayArrowBackground_97d::before {
    background-color: #f9f9f9;
    background-color: var(--surfaceBackgroundMedium);
  }
[data-placement^='top'] > .Popover_arrow_bee {
    bottom: 0;
  }
[data-placement^='top'] > .Popover_arrow_bee::before {
      bottom: -6px;
      border-top-color: rgba(0, 0, 0, 0);
      border-left-color: rgba(0, 0, 0, 0);
    }
[data-placement^='bottom'] > .Popover_arrow_bee {
    top: 0;
  }
[data-placement^='bottom'] > .Popover_arrow_bee:before {
      top: -6px;
      border-right-color: rgba(0, 0, 0, 0);
      border-bottom-color: rgba(0, 0, 0, 0);
    }
[data-placement^='left'] > .Popover_arrow_bee {
    right: 0;
  }
[data-placement^='left'] > .Popover_arrow_bee.Popover_hasManualPlacement_1ee {
      right: 16px;
    }
[data-placement^='left'] > .Popover_arrow_bee::before {
      right: -6px;
      border-left-color: rgba(0, 0, 0, 0);
      border-bottom-color: rgba(0, 0, 0, 0);
    }
[data-placement^='right'] > .Popover_arrow_bee {
    left: 0;
  }
[data-placement^='right'] > .Popover_arrow_bee::before {
      left: -6px;
      border-top-color: rgba(0, 0, 0, 0);
      border-right-color: rgba(0, 0, 0, 0);
    }
/* Override the automatic arrow placement if the arrow is being placed manually/
     only do so on on large screens, since it's likely on small screens that the
     manual arrow placement will not "match" the position of the target element */
@media screen and (min-width: 768px) {
    .Popover_arrow_bee.Popover_hasManualPlacement_1ee {
      transform: none !important;
    }

      [data-placement$='start'] > .Popover_arrow_bee.Popover_hasManualPlacement_1ee {
        right: auto !important;
        right: initial !important;
        left: 16px !important;
      }

      [data-placement$='end'] > .Popover_arrow_bee.Popover_hasManualPlacement_1ee {
        left: auto !important;
        left: initial !important;
        right: 16px !important;
      }
  }

.Popover_scrollContainer_0f8 {
  position: relative;
  z-index: 2;
  overflow-y: auto;
}

.Popover_contentWithPadding_cf0 {
  padding: 8px 14px;
}

.Popover_popoverHeader_ad4,
.Popover_popoverFooter_832 {
  /* let popover content dictate how wide header/footer should be */
  width: min-content;
  min-width: 100%;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
}

.Popover_popoverHeader_ad4.Popover_whiteBackground_e4f, .Popover_popoverFooter_832.Popover_whiteBackground_e4f {
    background-color: #ffffff;
    background-color: var(--bgPopover);
  }

.Popover_popoverHeader_ad4.Popover_grayBackground_061, .Popover_popoverFooter_832.Popover_grayBackground_061 {
    /* TODO [darkmode] this ends up darker than the BG in dark mode */
    background-color: #f9f9f9;
    background-color: var(--surfaceBackgroundMedium);
  }

.Popover_headerWithPadding_255,
.Popover_footerWithPadding_e7c {
  padding: 8px 14px;
}

.Popover_popoverHeader_ad4 {
  border-bottom: 1px solid #e2e2e2;
  border-bottom: 1px solid var(--borderDefault);
  border-top-left-radius: calc(var(--popoverBorderRadius) - 1px);
  border-top-right-radius: calc(var(--popoverBorderRadius) - 1px);
}

.Popover_popoverFooter_832 {
  border-top: 1px solid #e2e2e2;
  border-top: 1px solid var(--borderDefault);
  border-bottom-left-radius: calc(var(--popoverBorderRadius) - 1px);
  border-bottom-right-radius: calc(var(--popoverBorderRadius) - 1px);
}

.Popover_popoverFooter_832.Popover_noBorder_3f6 {
    border-top: none;
  }

.Popover_backdrop_4b4 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 102; /* in front of left nav, behind filter sidebar */
}

@keyframes Skeletons_skeleton_392 {
  0% {
    background-color: var(--fromBg);
  }
  100% {
    background-color: var(--toBg);
  }
}

.Skeletons_skeleton_392 {
  --fromBg: rgba(0, 0, 0, 0.02);
  --toBg: rgba(0, 0, 0, 0.06);
  /* keep in sync with useStaggeredAnimation */
  --animationLength: 0.5s;

  border-radius: 3px;

  background-color: rgba(0, 0, 0, 0.02);

  background-color: var(--fromBg);
  animation: Skeletons_skeleton_392 0.5s infinite alternate;
  animation: Skeletons_skeleton_392 var(--animationLength) infinite alternate;
  animation-delay: inherit;
}
.Skeletons_skeleton_392.Skeletons_dark_8ad {
  --fromBg: rgba(255, 255, 255, 0.06);
  --toBg: rgba(255, 255, 255, 0.1);
}

/**
 * Box/Text
 */

.Skeletons_box_9d1 {
  display: block;
  max-width: 100%;
  height: 1.2em;
  font-size: 1rem;
}

.Skeletons_box_9d1:not(:last-child):not(.Skeletons_inline_ee1) {
    margin-bottom: 0.25em;
  }

.Skeletons_fullWidth_212 {
  width: 100%;
}

/**
 * Icon
 */

.Skeletons_icon_866 {
  display: block;
}

.Skeletons_rounded_940 {
  border-radius: 50%;
}

/**
 * Common
 */

.Skeletons_inline_ee1 {
  display: inline-block;
  vertical-align: middle;
}


  .Field_Field_b43.Field_withMargin_8ce {
    margin-bottom: 20px;
  }

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

.Field_content_43f.Field_errorBottom_0c4 {
    flex-direction: column;
    align-items: inherit;
  }

div.Field_label_08d,
label.Field_label_08d {
  /* TODO: remove hardcoded value and set on consumer container
     https://github.com/closeio/closeio/issues/18925
     this could then be set to 100% all the time */
  width: 340px;
  margin: 0;
  font-size: 14px;
}

div.Field_label_08d.Field_disabled_1cc, label.Field_label_08d.Field_disabled_1cc {
    cursor: default;
  }

div.Field_label_08d.Field_fullWidth_758, label.Field_label_08d.Field_fullWidth_758 {
    width: 100%;
  }

.Field_labelText_6f5 {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  line-height: 16px;
  font-weight: 600;
  font-weight: var(--fontWeightBold);
}

.Field_disabled_1cc > .Field_labelText_6f5 {
    opacity: 0.5;
  }

.Field_description_a9c {
  margin-top: 8px;
  color: #5e5e5e;
  color: var(--colorTextMedium);
  line-height: 16px;
  word-wrap: break-word;
  word-break: break-word;
}

.Field_error_947 {
  color: #dd0f21;
  color: var(--colorTextDanger);
  padding-left: 20px;
}

.Field_error_947.Field_rightWithLabel_f6f {
    margin-top: 24px;
  }

.Field_error_947.Field_bottom_b22 {
    margin-top: 5px;
    width: 100%;
    padding: 0;
  }

.Field_errorIcon_141 {
  margin-right: 5px;
}

.Field_required_44d {
  color: #dd0f21;
  color: var(--colorTextDanger);
}

.FormikAdapter_FormikField_input_6dc,

.FormikAdapter_FormikField_input_6dc[type] {
  /* We don't want input elements to have margins themselves by default.
     Margins can be added on the Field level, or if necessary by passing
     inputComponentClassName to FormikField with a margin in place */
  margin: 0;

  /* Always stretch inputs to 100% of the FormikField by default. */
  box-sizing: border-box;
  width: 100%;

  /* Bootstrap isn't applying border-box which means we have to also tweak
     the default height to accommodate this. */
}.FormikAdapter_FormikField_input_6dc[type='text'],
  .FormikAdapter_FormikField_input_6dc[type][type='text'],
  .FormikAdapter_FormikField_input_6dc[type='password'],
  .FormikAdapter_FormikField_input_6dc[type][type='password'],
  .FormikAdapter_FormikField_input_6dc[type='datetime'],
  .FormikAdapter_FormikField_input_6dc[type][type='datetime'],
  .FormikAdapter_FormikField_input_6dc[type='datetime-local'],
  .FormikAdapter_FormikField_input_6dc[type][type='datetime-local'],
  .FormikAdapter_FormikField_input_6dc[type='date'],
  .FormikAdapter_FormikField_input_6dc[type][type='date'],
  .FormikAdapter_FormikField_input_6dc[type='month'],
  .FormikAdapter_FormikField_input_6dc[type][type='month'],
  .FormikAdapter_FormikField_input_6dc[type='time'],
  .FormikAdapter_FormikField_input_6dc[type][type='time'],
  .FormikAdapter_FormikField_input_6dc[type='week'],
  .FormikAdapter_FormikField_input_6dc[type][type='week'],
  .FormikAdapter_FormikField_input_6dc[type='number'],
  .FormikAdapter_FormikField_input_6dc[type][type='number'],
  .FormikAdapter_FormikField_input_6dc[type='email'],
  .FormikAdapter_FormikField_input_6dc[type][type='email'],
  .FormikAdapter_FormikField_input_6dc[type='url'],
  .FormikAdapter_FormikField_input_6dc[type][type='url'],
  .FormikAdapter_FormikField_input_6dc[type='search'],
  .FormikAdapter_FormikField_input_6dc[type][type='search'],
  .FormikAdapter_FormikField_input_6dc[type='tel'],
  .FormikAdapter_FormikField_input_6dc[type][type='tel'],
  .FormikAdapter_FormikField_input_6dc[type='color'],
  .FormikAdapter_FormikField_input_6dc[type][type='color'] {
    height: 32px;
    height: var(--inputHeight);
  }

.Input_fieldContainer_77b {
  width: 100%;
  position: relative;

  /* Large size */
  --fontSize: 20px;
  --inputHeight: 50px;
  --verticalPadding: 8px;
  --horizontalPadding: 16px;
  --prefixSuffixGap: 12px;

  /* Defaults */
  --iconWidth: 16px;
  --paddingLeft: var(--horizontalPadding);
  --paddingRight: var(--horizontalPadding);
}

.Input_fieldContainerSmall_b60 {
  --fontSize: inherit;
  --inputHeight: 32px;
  --verticalPadding: 4px;
  --horizontalPadding: 12px;
  --prefixSuffixGap: 8px;
}

.Input_fieldContainerSmall_b60 .Input_textarea_41a {
    height: inherit;
  }

.Input_fieldContainerTiny_847 {
  --fontSize: 12px;
  --inputHeight: 26px;
  --verticalPadding: 3px;
  --horizontalPadding: 8px;
  --prefixSuffixGap: 6px;
}

.Input_fieldContainerTiny_847 .Input_textarea_41a {
    height: inherit;
  }

.Input_fieldPrefix_380,
.Input_fieldSuffix_019 {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  box-sizing: border-box;
  font-size: var(--fontSize);
  color: #767676;
  color: var(--colorTextLight);
}

.Input_fieldPrefix_380 {
  width: var(--iconWidth);
  left: var(--horizontalPadding);
}

.Input_fieldSuffix_019 {
  /* we have some suffixes bigger than the default size, i.e. "seconds" */
  min-width: var(--iconWidth);
  right: var(--horizontalPadding);
}

.Input_fieldContainerWithPrefix_339 .Input_input_fe6 {
    --paddingLeft: calc(
      var(--horizontalPadding) + var(--iconWidth) + var(--prefixSuffixGap)
    );
  }

.Input_fieldContainerWithSuffix_b55 .Input_input_fe6 {
    --paddingRight: calc(
      var(--horizontalPadding) + var(--iconWidth) + var(--prefixSuffixGap)
    );
  }

.Input_textarea_41a,
.Input_input_fe6.Input_input_fe6 {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  display: block;
  text-align: inherit;
  font-size: var(--fontSize);
  height: 32px;
  height: var(--inputHeight);
  padding: var(--verticalPadding) var(--paddingRight) var(--verticalPadding)
    var(--paddingLeft);

  color: #2e2e2e;

  color: var(--colorTextDefault);
  border-radius: 7px;
  border-radius: var(--baseInputBorderRadius);
  border: 1px solid #e2e2e2;
  border: 1px solid var(--borderDefault);
  box-shadow: none;
}

.Input_textarea_41a[aria-invalid='true'], .Input_input_fe6.Input_input_fe6[aria-invalid='true'] {
    border-color: #dd0f21;
    border-color: var(--borderDanger);
  }

.Input_textarea_41a:focus, .Input_input_fe6.Input_input_fe6:focus {
    outline: 0;
    border-color: #598df2;
    border-color: var(--borderFocused);
  }

.Input_input_fe6[type='number']::-webkit-outer-spin-button,
.Input_input_fe6[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.Input_input_fe6[type='number'] {
  -moz-appearance: textfield; /* Firefox */
}

.subComponents_SelectLabel_root_cf1 {
  position: relative;
  padding: 4px 16px 4px 40px; /* 24px total height */
  font-size: 14px;
  font-size: var(--fontSizeBase);
}

.subComponents_SelectLabel_icon_500 {
  position: absolute;
  display: flex;
  align-items: start;
  justify-content: center;
  left: 0;
  width: 40px;
  padding-top: 2px;
}

/* This wrapper moves the item "top" – as used when computing the position
   needed to scroll the item into view. This prevents keyboard navigation from
   scrolling items to a point underneath a sticky search input.

   TODO: once compute-scroll-into-view (used by downshift) supports the
   `scroll-margin-top` css prop, use that instead.
   https://github.com/scroll-into-view/compute-scroll-into-view/issues/831 */
.subComponents_SelectRow_root_224 {
  position: relative;
  pointer-events: none;
  padding-top: 0;
  padding-top: var(--select-menu-fixed-header-height, 0);
  margin-top: calc(-1 * 0);
  margin-top: calc(-1 * var(--select-menu-fixed-header-height, 0));
}
.subComponents_SelectRow_root_224 .subComponents_SelectRow_inner_5aa {
    pointer-events: auto;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
  }
.subComponents_SelectRow_root_224 .subComponents_SelectRow_inner_5aa.subComponents_SelectRow_highlighted_687 {
      background-color: #f1f1f1;
      background-color: var(--bgMenuItemHover);
    }
.subComponents_SelectRow_root_224 .subComponents_SelectRow_inner_5aa.subComponents_SelectRow_disabled_c5d {
      cursor: not-allowed;
      opacity: 0.5;
      opacity: var(--disabledOpacity);
      -webkit-user-select: none;
              user-select: none;
    }

.IconButton_iconButton_753 {
  --scopedBaseColor: var(--colorIconDefault);
  --hoverColor: var(--colorTextDefault);

  border: 0;
  background: transparent;
  color: #474747;
  color: var(--scopedBaseColor);
  width: 32px;
  width: var(--inputHeight);
  height: 32px;
  height: var(--inputHeight);
  outline: none;
  padding: 0;
}.IconButton_iconButton_753.IconButton_disabled_4e5 {
    pointer-events: none;
    opacity: 0.5;
  }.IconButton_iconButton_753.IconButton_grow_0f3 {
    height: auto;
    height: initial;
    width: auto;
    width: initial;
  }.IconButton_iconButton_753.IconButton_grow_0f3 span {
      height: auto;
      height: initial;
      width: auto;
      width: initial;
    }.IconButton_iconButton_753 span {
    display: flex;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin: 0 auto;
  }.IconButton_iconButton_753 svg {
    width: 100%;
    /* prevent title tags from showing browser tooltips */
    pointer-events: none;
  }.IconButton_iconButton_753:hover,
  .IconButton_iconButton_753:focus {
    color: var(--hoverColor);
  }.IconButton_iconButton_753:focus:not(:hover) {
    border-radius: 50%;
    box-shadow: 0 0 0 3px
      rgba(20, 99, 255, 0.5);
  }@supports (color: color-mix(in lch, red, blue)) {
.IconButton_iconButton_753:focus:not(:hover) {
    box-shadow: 0 0 0 3px
      color-mix(in srgb, transparent 50%, var(--colorBrandBlue));
  }
}.IconButton_iconButton_753.IconButton_active_ec2 {
    background-color: rgba(0, 0, 0, 0.1);
  }.IconButton_iconButton_753.IconButton_small_752 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
  }.IconButton_iconButton_753.IconButton_small_752 span {
      width: 14px;
      height: 14px;
    }.IconButton_iconButton_753.IconButton_small_752,
  .IconButton_iconButton_753.IconButton_round_962 {
    border-radius: 50%;
  }.IconButton_iconButton_753.IconButton_small_752.IconButton_withHoverBackground_e44:hover,
    .IconButton_iconButton_753.IconButton_round_962.IconButton_withHoverBackground_e44:hover,
    .IconButton_iconButton_753.IconButton_small_752.IconButton_hover_506.IconButton_withHoverBackground_e44,
    .IconButton_iconButton_753.IconButton_round_962.IconButton_hover_506.IconButton_withHoverBackground_e44 {
      background-color: rgba(0, 0, 0, 0.05);
    }.IconButton_iconButton_753.IconButton_small_752.IconButton_withHoverBackground_e44.IconButton_active_ec2:hover, .IconButton_iconButton_753.IconButton_round_962.IconButton_withHoverBackground_e44.IconButton_active_ec2:hover, .IconButton_iconButton_753.IconButton_small_752.IconButton_hover_506.IconButton_withHoverBackground_e44.IconButton_active_ec2, .IconButton_iconButton_753.IconButton_round_962.IconButton_hover_506.IconButton_withHoverBackground_e44.IconButton_active_ec2 {
        background-color: rgba(0, 0, 0, 0.15);
      }.IconButton_iconButton_753.IconButton_notAButton_4e8 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

.BottomSheet_backdrop_2ad {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  z-index: var(--zindexModalBackdrop);
  background-color: transparent;
  transition: background-color 300ms ease-in-out;
}

.BottomSheet_backdrop_2ad.BottomSheet_afterOpen_1d8 {
    /* TODO [darkmode] token/alias for backdrops? */
    background-color: rgba(25, 25, 25, 0.7);
  }

.BottomSheet_backdrop_2ad.BottomSheet_beforeClose_993 {
    background-color: transparent;
  }

.BottomSheet_sheet_724 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: var(--zIndexModal);
  background-color: #ffffff;
  background-color: var(--surfaceBackgroundDefault);
  border-radius: 7px 7px 0 0;
  transform: translate3d(0, 100%, 0);
  transition: transform 400ms cubic-bezier(0.28, 0.03, 0.25, 1);
  /* always leave some room for the backdrop */
  max-height: calc(100vh - 120px);
}

.BottomSheet_sheet_724:focus {
    outline: none;
  }

.BottomSheet_sheet_724.BottomSheet_afterOpen_1d8 {
    transform: translate3d(0, 0, 0);
  }

.BottomSheet_sheet_724.BottomSheet_beforeClose_993 {
    transform: translate3d(0, 100%, 0);
  }

.BottomSheet_fixedHeight_b81 {
  height: calc(100vh - 120px);
}

.BottomSheet_header_99c {
  padding: 16px;
  padding: var(--spacing-16);
  border-bottom: 1px solid #e2e2e2;
  border-bottom: 1px solid var(--borderDefault);
}

.BottomSheet_headerUpper_f0d {
  display: flex;
  gap: 8px;
  gap: var(--spacing-8);
  align-items: center;
}

.BottomSheet_title_4f6 {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: auto;
}

.BottomSheet_scrollContainer_1a7 {
  min-height: 0;
  overflow-y: auto;
}

.BottomSheet_scrollContainerInner_074 {
  padding: 8px 0 32px;
  padding: var(--spacing-8) 0 var(--spacing-32);
}

.subComponents_SelectInlineButton_wrapper_42c {
  position: relative;
}

.subComponents_SelectInlineButton_button_c06 {
  cursor: pointer;

  box-sizing: border-box;
  width: 100%;
  padding: 3px 24px 3px 8px;
  border: 1px solid transparent;
  border-radius: 3px;
  border-radius: var(--baseBorderRadius);

  font-size: 13px;
  line-height: 20px;
  color: #2e2e2e;
  color: var(--colorTextDefault);

  display: flex;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;

  /* button reset */
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.subComponents_SelectInlineButton_button_c06.subComponents_SelectInlineButton_placeholder_55f {
    color: #767676;
    color: var(--gray-50);
  }

.subComponents_SelectInlineButton_button_c06.subComponents_SelectInlineButton_isOpen_e98,
  .subComponents_SelectInlineButton_button_c06:hover {
    border: 1px solid #e2e2e2;
    border: 1px solid var(--borderDefault);
    background-color: #ffffff;
    background-color: var(--surfaceBackgroundDefault);
  }

.subComponents_SelectInlineButton_button_c06::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6px;
    right: 6px;
    width: calc(100% - 12px);
    border-top: 1px solid #e2e2e2;
    border-top: 1px solid var(--borderDefault);
  }

.subComponents_SelectInlineButton_icon_e81 {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}

.subComponents_SelectInput_inputWrap_adc {
  --iconGap: 32px;
  position: relative;
}

.subComponents_SelectInput_flex_ca9 {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
}

.subComponents_SelectInput_selectInput_ff1[type='search'] {
  background-color: #ffffff;
  background-color: var(--formBackground);
  /* TODO [darkmode] needs an alias, or --borderFocus needs updating */
  --colorButtonFocusRingDefault: var(--colorBlue20);

  padding-right: var(--iconGap);
  padding-left: 10px; /* Match the content of the select */
  -webkit-appearance: none; /* Fix border-radius issue on Mobile Safari */
  cursor: pointer;

  /* special styles for Select inputs that are embedded in elements that render */
  /* their own border and padding, e.g. the compose form (Send As & Templates) */
}

.subComponents_SelectInput_selectInput_ff1.subComponents_SelectInput_noBorder_aca[type='search'] {
    width: auto;
    border: 1px solid transparent;
    box-shadow: none;
    width: 100%;
    transition: none;
    background-color: transparent;

    /* override */
  }

.subComponents_SelectInput_selectInput_ff1.subComponents_SelectInput_noBorder_aca[type='search']:focus {
      outline: none !important;
    }

.subComponents_SelectInput_selectInput_ff1.subComponents_SelectInput_noBorder_aca[type='search']:focus {

      /* match buttons */
      /* TODO: move be the default focus styles for all selects */
      border-color: #598df2;
      border-color: var(--formBorderFocused);
      box-shadow: 0 0 0 3px var(--colorButtonFocusRingDefault);
    }

/**
 * handle Selects inside .input-prepend
 * input-prepend is a backbone-forms only thing
 */

.input-prepend .subComponents_SelectInput_selectInput_ff1[type='search'] {
    border-left: none;

    /* override .input-prepend input:focus */
    z-index: 1;
  }

/* hide placeholder text when disabled */

.subComponents_SelectInput_selectInput_ff1[type='search']:disabled,
  .subComponents_SelectInput_selectInput_ff1[type='search']:disabled::placeholder {
    color: transparent;
  }

/* By default, readonly inputs get a grey BG (global stylesheet) */

/* which we don't want. But we do want disabled readonly inputs to get that BG. */

.subComponents_SelectInput_selectInput_ff1[type='search'][readonly]:not(:disabled) {
    background-color: #ffffff;
    background-color: var(--formBackground);
  }

.subComponents_SelectInput_tiny_b41 .subComponents_SelectInput_selectInput_ff1[type='search'] {
    height: 26px;
    font-size: 12px;
  }

.subComponents_SelectInput_small_786 .subComponents_SelectInput_selectInput_ff1[type='search'] {
    height: 32px;
    font-size: 14px;
  }

.subComponents_SelectInput_medium_8e1 .subComponents_SelectInput_selectInput_ff1[type='search'] {
    height: 52px;
  }

.subComponents_SelectInput_large_082 .subComponents_SelectInput_selectInput_ff1[type='search'] {
    height: 64px;
    font-size: 16px;
  }

.subComponents_SelectInput_selectInput_ff1[type='search']:focus {
    outline: none;
    box-shadow: none;
    /* color: transparent; // no cursor when focused and not open */
  }

.subComponents_SelectInput_inputTrigger_264 {
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  width: calc(100% - 2px);
  border-radius: 7px;
  border-radius: var(--baseInputBorderRadius);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 var(--iconGap) 0 10px;
  color: #2e2e2e;
  color: var(--colorTextDefault);
  background: #ffffff;
  background: var(--formBackground);
}

.subComponents_SelectInput_inputTrigger_264:disabled,
  .subComponents_SelectInput_inputTrigger_264[aria-disabled='true'] {
    background: transparent;
    color: #767676;
    color: var(--colorTextLight);
  }

.subComponents_SelectInput_tiny_b41 .subComponents_SelectInput_inputTrigger_264 {
    font-size: 12px;
  }

.subComponents_SelectInput_small_786 .subComponents_SelectInput_inputTrigger_264 {
    font-size: 14px;
  }

.subComponents_SelectInput_large_082 .subComponents_SelectInput_inputTrigger_264 {
    font-size: 16px;
  }

.subComponents_SelectInput_inputTrigger_264.subComponents_SelectInput_isOpen_c9b {
    display: none;
  }

/* account for extra icon here so ellipses don't overlap */

.subComponents_SelectInput_inputTrigger_264.subComponents_SelectInput_withClearButton_b4a {
    padding-right: calc(var(--iconGap) + 16px);
  }

.subComponents_SelectInput_triggerText_dd9 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.subComponents_SelectInput_triggerText_dd9[data-placeholder='true'] {
    color: #767676;
    color: var(--colorTextLight);
  }

.subComponents_SelectInput_inputIcon_86c {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  pointer-events: none;
}

.subComponents_SelectInput_inputIcon_86c.subComponents_SelectInput_faded_71c {
    color: #919191;
    color: var(--colorIconLight);
  }

.subComponents_SelectInput_closeIcon_cbe {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 32px;
  cursor: pointer;
}

.subComponents_SelectInput_closeIcon_cbe:hover {
    color: #919191;
    color: var(--colorIconLight);
  }

.subComponents_SelectMenu_menu_8c6 {
  overflow-y: auto;

  /* push in front of popover arrow */
  position: relative;
  z-index: 2;

  /* this will be used by both the fixed header itself (if it exists),
     and by individual items, so that they can be positioned in a way
     that prevents `scrollIntoView` from placing them under the fixed header. */
  --select-menu-fixed-header-height: 0;
}

.subComponents_SelectMenu_menu_8c6:focus {
    outline: none;
  }

.subComponents_SelectMenu_menu_8c6.subComponents_SelectMenu_hasFixedInlineSearch_ac9 {
    --select-menu-fixed-header-height: 48px;
  }

.subComponents_SelectMenu_menuItems_60e {
  /* use margin instead of padding, so that it collapses with margins of child elements */
  margin: 4px 0;
}

/* NOTE: item heights are also hardcoded in SelectMenu for the purposes of virtualization. */
.subComponents_Divider_divider_55e {
  border-top: 1px solid #e2e2e2;
  border-top: 1px solid var(--borderDefault);
  margin: 4px 0;

  /* don't show two next to each other, */
  /* don't show if it follows the hidden search input, */
  /* don't show if all items above divider have been filtered out */
  /* dont' show a divider if it's the last item rendered */
}
.subComponents_Divider_divider_55e + .subComponents_Divider_divider_55e,
  .subComponents_Divider_divider_55e:first-child,
  .subComponents_Divider_divider_55e:last-child {
    display: none;
  }

.Checkbox {
  --focusedBorderColor: rgba(82, 168, 236, 0.8);

  cursor: pointer;
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 16px;
  -webkit-user-select: none;
          user-select: none;
}

.Checkbox--isLoading {
  opacity: 0.5;
  opacity: var(--disabledOpacity);
}

.Checkbox__label {
  cursor: pointer;
  color: #2e2e2e;
  color: var(--colorTextDefault);
  display: flex;
  align-items: flex-start;
  font-weight: normal;
  max-width: 100%;
  position: relative;

  /**
   * The checkbox "box"
   * Colors are defined state by state below
   */
}

.Checkbox__label::before {
    content: '';
    position: relative;
    top: 1px;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    width: 14px;
    height: 14px;
    transition:
      border 80ms ease-in-out, background 80ms ease-in-out;
    margin-right: 12px;
    flex: 0 0 14px;
    box-sizing: border-box;
  }

/**
   * The checkbox checkmark
   * Colors are defined state by state below
   */

.Checkbox__label::after {
    content: '';
    display: none;
    position: absolute;
    width: 3px;
    height: 6px;
    top: 3px;
    left: 5px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }

.Checkbox__label:empty {
    /* the label should only take the size of the checkbox when it's empty */
    width: 14px;
  }

.Checkbox__label:hover {
    color: #2e2e2e;
    color: var(--colorTextDefault);
  }

.Checkbox__label.is-disabled {
    color: #5e5e5e;
    color: var(--colorTextMedium);
  }

.Checkbox__label.is-bold {
    font-weight: 600;
    font-weight: var(--fontWeightBold);
  }

.Checkbox__label--isMobile {
  pointer-events: none; /* mobile: otherwise the label doesn't check the box */
}

.Checkbox__label--halfChecked::after {
  display: block;
  transform: none;
  top: calc(50% - 7px);
  left: 4px;
  width: 6px;
  border-width: 0 0 2px 0;
}

.Checkbox__label--left::before {
    margin-right: 0;
    margin-left: 12px;
    order: 1;
  }

.Checkbox__label--left::after {
    right: 4px;
    left: auto;
    left: initial;
  }

.Checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.Checkbox__input:disabled ~ .Checkbox__label {
    color: #5e5e5e;
    color: var(--colorTextMedium);
    cursor: not-allowed;
  }

/**
 * Default (enabled unchecked)
 */
/* box */
.Checkbox__label::before {
    background-color: #ffffff;
    background-color: var(--bgFormControlEnabledUnchecked);
    border-color: #e2e2e2;
    border-color: var(--borderFormControlEnabledUnchecked);
  }

/**
 * Disabled unchecked
 */

/* box */

.Checkbox__input:disabled ~ .Checkbox__label::before,
  .Checkbox__input:disabled ~ .Checkbox__label--halfChecked::before {
    background: #e2e2e2;
    background: var(--bgFormControlDisabled);
    border-color: #e2e2e2;
    border-color: var(--bgFormControlDisabled);
  }

/* box */

.Checkbox__input:disabled ~ .Checkbox__label::after,
  .Checkbox__input:disabled ~ .Checkbox__label--halfChecked::after {
    border-color: #919191;
    border-color: var(--fillFormControlDisabled);
  }

/**
 * Enabled checked/halfchecked
 */

/* box */
.Checkbox__input:checked ~ .Checkbox__label::before,
.Checkbox__label--halfChecked::before {
  border-color: #2b6cf0;
  border-color: var(--bgFormControlEnabledChecked);
  background: #2b6cf0;
  background: var(--bgFormControlEnabledChecked);
}

/* mark */
.Checkbox__input:checked ~ .Checkbox__label::after,
.Checkbox__label--halfChecked::after {
  display: flex;
  border-color: #ffffff;
  border-color: var(--fillFormControlEnabled);
}

/**
 * Disabled checked/halfchecked
 */

/* box */
.Checkbox__input:disabled:checked ~ .Checkbox__label::before,
  .Checkbox__input:disabled:checked ~ .Checkbox__label--halfChecked::before {
    background: #e2e2e2;
    background: var(--bgFormControlDisabled);
    border-color: #e2e2e2;
    border-color: var(--bgFormControlDisabled);
  }
.Checkbox__input:disabled:checked ~ .Checkbox__label::after,
  .Checkbox__input:disabled:checked ~ .Checkbox__label--halfChecked::after {
    border-color: #919191;
    border-color: var(--fillFormControlDisabled);
  }

/* focus */
.Checkbox__input:focus ~ .Checkbox__label::before {
  border-color: var(--focusedBorderColor);
  box-shadow: 0 0 0 3px
    rgba(20, 99, 255, 0.5);
}
@supports (color: color-mix(in lch, red, blue)) {
.Checkbox__input:focus ~ .Checkbox__label::before {
  box-shadow: 0 0 0 3px
    color-mix(in srgb, transparent 50%, var(--colorBrandBlue));
}
}

.subComponents_GroupHeading_groupItemWrap_042 {
  overflow: hidden;
}

/* NOTE: item heights are also hardcoded in SelectMenu for the purposes of virtualization. */
.subComponents_GroupHeading_groupItem_88d {
  margin: 0;
  position: relative;
  padding: 4px 32px 6px 12px;
}

.subComponents_GroupHeading_multiGroupItem_67b {
  padding-left: 16px;
}

.subComponents_GroupHeading_groupToggle_03d {
  position: absolute;
  display: flex;
  top: 0;
  right: 4px;
  right: var(--spacing-4);
  bottom: 0;
  padding: 0 8px;
  padding: 0 var(--spacing-8);
  cursor: pointer;
}

.subComponents_GroupHeading_count_577 {
  margin-left: 8px;
  display: flex;
  align-self: center;
}

.subComponents_GroupHeading_groupLabel_f81 {
  cursor: pointer;
}

.subComponents_GroupHeading_groupLabel_f81.subComponents_GroupHeading_withCount_ea2 {
    display: flex;
    min-width: 184px; /* give some extra space on right side for "x selected" label */
  }

.subComponents_InlineSearch_cloakedSearchWrap_c8a {
  position: absolute;
  height: 0;
  overflow: hidden;
}

.subComponents_InlineSearch_inlineSearchWrap_d09 {
  position: sticky;
  top: 0;
  box-sizing: border-box;
  height: 0;
  height: var(--select-menu-fixed-header-height, 0);
  overflow: hidden;
  padding: 8px 0;
  padding: var(--spacing-8) 0;
  background-color: #ffffff;
  background-color: var(--formBackground);
  border-bottom: 1px solid #e2e2e2;
  border-bottom: 1px solid var(--borderDefault);
  z-index: 1;
}

/* Can't use SearchInput here as this maintains the same styles while focussed */
.subComponents_InlineSearch_inlineSearchInput_481[type='search'],
  .subComponents_InlineSearch_inlineSearchInput_481[type='search']:focus {
    box-shadow: none !important;
  }
.subComponents_InlineSearch_inlineSearchInput_481[type='search'],
  .subComponents_InlineSearch_inlineSearchInput_481[type='search']:focus {
    border: none;
    background-color: #f1f1f1;
    background-color: var(--surfaceBackgroundDark);
    min-width: 200px;
  }

.subComponents_SelectItem_checkbox_fa2 {
  /* adjust left padding because there is no checkmark icon to offset from */
  /* adjust top & bottom to maintain consistent height (`Checkbox` has a custom non-20px line-height) */
  padding: 6px 24px 6px 16px;
}

.subComponents_SelectItem_checkIcon_40f {
  color: #919191;
  color: var(--colorIconLight);
  /* TODO [darkmode] maybe-temporary opacity treatment until we settle on an alias */
  opacity: 0;
}

.subComponents_SelectItem_checkIcon_40f.subComponents_SelectItem_iconHovered_88b {
    opacity: 0.3;
  }

.subComponents_SelectItem_checkIcon_40f.subComponents_SelectItem_iconActive_157 {
    color: #2b6cf0;
    color: var(--bgFormControlEnabledChecked);
    opacity: 1;
  }

.subComponents_SelectPopover_flexWrapper_d72 {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}

.subComponents_ConfirmationFooter_footer_14e {
  /* shared with Popover.Footer */
  width: min-content;
  min-width: 100%;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
  border-top: 1px solid #e2e2e2;
  border-top: 1px solid var(--borderDefault);
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;

  padding: 12px 16px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}


/*# sourceMappingURL=https://srcmaps.close.com/srcmaps/hydrate_main~08054841.1c90f9d678d21cd863d8.js.map*/