._sources_x341v_1 {
  background: var(--content-background-color);
  display: flex;
  overflow: hidden;
  transition: background-color var(--theme-transition-time) ease-in-out;
  height: 100%;
  width: 100%;
  --focus-background-color: var(--document-list-focus-color);
}

._sourcesContainer_x341v_11 {
  width: 100%;
  box-shadow: var(--inbox-container-drop-shadow);
  display: flex;
  flex-direction: column;
}

._header_x341v_18 {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: var(--s2) 26px;
  height: var(--inbox-header-height);
  font-size: var(--font-size-2xl);
  position: relative;
  border-bottom: 1px solid var(--border-tertiary-alpha);
}

._header_x341v_18 ._isHeaderDisabled_x341v_29 {
    opacity: 0.4;
    pointer-events: none;
  }

._header_x341v_18 ._title_x341v_34 {
    color: var(--inbox-header-active-tab-text-color);
    font-size: var(--font-size-lg);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }

._header_x341v_18 ._headerRight_x341v_44 {
    display: flex;
    align-items: center;
    gap: 8px;

  }

._header_x341v_18 ._headerRight_x341v_44 input {
      margin-right: 32px;
      max-width: 289px;
    }

._header_x341v_18 ._headerRight_x341v_44 ._deleteBtn_x341v_54 {
      display: flex;
      align-items: center;
      gap: 6px;
    }

._header_x341v_18 ._headerRight_x341v_44 ._deleteBtn_x341v_54:not(:active):hover {
        background: var(--u-alpha-300);
      }

._header_x341v_18 ._headerRight_x341v_44 ._subscribeBtn_x341v_64 {
      display: flex;
      align-items: center;
      gap: 6px;
    }

._header_x341v_18 ._primary_x341v_72 {
    border-radius: 48px;
    color: var(--text-interactive);
    background: var(--primary-button-background);
  }

._header_x341v_18 ._primary_x341v_72:not(:active):hover {
      background: var(--primary-button-hover-background);
    }

._header_x341v_18 ._leftNav_x341v_82 {
    display: flex;
    align-items: center;
    gap: 44px;
  }

._header_x341v_18 ._navPillsContainer_x341v_88 {
    display: flex;
    gap: 24px;
  }

._header_x341v_18 ._navPillsContainer_x341v_88 li {
      display: flex;
        white-space: nowrap;
    }

._header_x341v_18 ._navPill_x341v_88 {
    font-weight: 400;
    font-size: 14px;
    line-height: 58px;
    color: var(--text-secondary);
    letter-spacing: -0.24px;
  }

._header_x341v_18 ._navPill_x341v_88._active_x341v_105 {
      position: relative;
      font-weight: 500;
      color: var(--text-primary);
    }

._header_x341v_18 ._navPill_x341v_88._active_x341v_105::after {
        content: " ";
        border-bottom: var(--icon-primary) solid 1px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
      }

._header_x341v_18 ._navPill_x341v_88 ._newLabel_x341v_120 {
      display: inline-flex;
      color: #FFFFFF;
      background: var(--orange-70);
      padding: 2px 5px;
      margin-left: 4px;
      border-radius: 32px;
      font-size: 11px;
      line-height: 12px;
      font-weight: 600;
      width: 34px;
      height: 16px;
    }

._feedSuggestionTableTitle_x341v_136 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  margin: 22px 20px 8px;
}

._feedSuggestionTableTitle_x341v_136 div:first-child {
    display: flex;
    gap: 8px;
  }

._feedSuggestionTableTitle_x341v_136 div:first-child p {
      margin: 0;
      line-height: 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary)
    }

._feedSuggestionTableTitle_x341v_136 div:first-child span {
      display: inline-flex;
      margin: 0;
      line-height: 20px;
      font-size: 14px;
      font-weight: 400;
      color: var(--text-secondary)

    }

._feedSuggestionTableTitle_x341v_136 ._restoreBtn_x341v_166 {
    box-shadow: none;
    margin-right: 12px;
  }

._restoreDropdown_x341v_172 {
  width: auto;
  margin-right: 25px;
}

._listContainer_x341v_177 {
  overflow-y: auto;
  height: 100%;
  padding: 0;
  padding-bottom: 64px;
}

._listContainer_x341v_177 table {
    position: relative;
    display: grid;
    border-collapse: collapse;
    min-width: 100%;
    grid-template-columns:
      minmax(64px, 3%) /* checkbox */
      minmax(100px, 27%) /* name */
      minmax(100px, 30%) /* description */
      minmax(100px, 8%) /* documents */
      minmax(100px, 23%) /* views */
      minmax(100px, 10%) /* last updated */;

    width: 100%;
  }

._listContainer_x341v_177 table thead,
    ._listContainer_x341v_177 table tbody,
    ._listContainer_x341v_177 table tr {
      display: contents;
    }

._listContainer_x341v_177 table thead tr {
      border-bottom: 0;
    }

._listContainer_x341v_177 table tr {
      width: 100%;
      height: 44px;
    }

._listContainer_x341v_177 table tr td {
        border-bottom: 1px solid var(--border-tertiary-alpha);
      }

._listContainer_x341v_177 table td {
      height: 44px;
      padding: 0 8px;
    }

._listContainer_x341v_177 table td a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
      }

._listContainer_x341v_177 table td a span {
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden;
        }

._listContainer_x341v_177 table tbody tr {
      scroll-margin-top: 50px;
    }

._mainSuggestionsContent_x341v_241 {
  overflow-y: auto;
  height: 100%;
  padding-bottom: 16px;
}

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246._isFocused_x341v_247 {
      background: var(--u-alpha-100);
      border-bottom: 1px solid var(--border-tertiary-alpha);
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246._isFocused_x341v_247 td:first-child {
        position: relative;
        overflow: visible;
      }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246._isSelected_x341v_257 {
      background: var(--u-alpha-blue-100);
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246._isSelected_x341v_257:hover {
        background: var(--u-alpha-blue-200) !important;
      }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._tdWithCheckbox_x341v_265 {
      min-width: 20px;
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 td {
      color: var(--text-secondary);
      font-weight: 400;
      font-size: 12px;
      line-height: 16px;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._focusedIndicator_x341v_279 {
      position: absolute;
      left: -11px;
      width: 3px;
      background: var(--border-focus);
      height: 100%;
      border-radius: 3px 0px 0px 3px;
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._nameWithImage_x341v_288 {
      display: flex;
      align-items: center;
      font-weight: 600;
      font-size: 14px;
      line-height: 20px;
      color: var(--text-primary);
      height: 100%;
      position: relative;
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._nameWithImage_x341v_288 span {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
      }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._nameWithImage_x341v_288 img,
      ._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._nameWithImage_x341v_288 svg {
        border-radius: 4px;
        width: 24px;
        height: 24px;
        margin-right: 16px;
      }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._description_x341v_313,
    ._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._documents_x341v_314,
    ._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._lastUpdated_x341v_315 {
      color: var(--text-secondary);
      font-weight: 400;
      font-size: 12px;
      line-height: 16px;
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._documents_x341v_314 {
      text-align: center;
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._actionsContainer_x341v_326 {
      display: flex;
      justify-content: flex-end;
    }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._actionsContainer_x341v_326 button {
        width: 32px;
        height: 32px;
      }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._actionsContainer_x341v_326 svg {
        width: 20px;
        height: 20px;
        fill: var(--icon-secondary);
      }

._mainSuggestionsContent_x341v_241 ._feedItem_x341v_246 ._actionsContainer_x341v_326 svg * {
          fill: var(--icon-secondary);
        }

._feedSuggestionsTableContainer_x341v_348 {
  border: 1px solid var(--border-secondary);
  border-radius: 8px;
  padding: 0;
  margin: 0 16px;
}

._feedSuggestionsTableContainer_x341v_348 * {
    margin: 0;
    box-sizing: border-box;
  }

._feedSuggestionsTableContainer_x341v_348 table {
    border-collapse: separate;
    table-layout: fixed;
    position: relative;
    border-spacing: 0;
    width: 100%;
  }

._feedSuggestionsTableContainer_x341v_348 table ._feedItem_x341v_246:hover {
        background: var(--u-alpha-100);
      }

._feedSuggestionsTableContainer_x341v_348 table thead tr th {
        border-bottom: 1px solid var(--border-secondary);
        position: unset;
        box-shadow: none;
      }

._feedSuggestionsTableContainer_x341v_348 table thead tr th:first-child {
        border-top-left-radius: 8px;
      }

._feedSuggestionsTableContainer_x341v_348 table thead tr th:last-child {
        border-top-right-radius: 8px;
      }

._feedSuggestionsTableContainer_x341v_348 table tr {
      height: 44px;
      width: 100%;
    }

._feedSuggestionsTableContainer_x341v_348 table tr:not(:last-child) td {
          border-bottom: 1px solid var(--border-tertiary-alpha);
        }

._feedSuggestionsTableContainer_x341v_348 table td {
      height: 44px;
      padding: 0 8px;
    }

._feedSuggestionsTableContainer_x341v_348 table td a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
      }

._feedSuggestionsTableContainer_x341v_348 table td a span {
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden;
        }

._feedSuggestionsTableContainer_x341v_348 table tbody tr {
      scroll-margin-top: 50px;
    }

._sourcesList_x341v_425 ._feedItem_x341v_246._isFocused_x341v_247 td {
    background: var(--u-alpha-100);
    border-bottom: 1px solid var(--border-tertiary-alpha);
  }

._sourcesList_x341v_425 ._feedItem_x341v_246._isFocused_x341v_247 td:first-child {
      position: relative;
      overflow: visible;
    }

._sourcesList_x341v_425 ._feedItem_x341v_246._isChecked_x341v_436 td{
    background: var(--u-alpha-blue-200);
  }

._sourcesList_x341v_425 ._feedItem_x341v_246._isFocused_x341v_247._isChecked_x341v_436 td{
    background: var(--u-alpha-blue-300);
  }

._sourcesList_x341v_425 ._feedItem_x341v_246._isSelected_x341v_257 td {
    background: var(--u-alpha-blue-100);
  }

._sourcesList_x341v_425 ._feedItem_x341v_246._isSelected_x341v_257 td:hover {
      background: var(--u-alpha-blue-200) !important;
    }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._tdWithCheckbox_x341v_265 {
    min-width: 20px;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 td {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._checkboxWrapper_x341v_466 {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 0;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._checkboxWrapper_x341v_466 button,
    ._sourcesList_x341v_425 ._feedItem_x341v_246 ._checkboxWrapper_x341v_466 input {
      height: 16px;
      width: 16px;
      min-width: 16px;
      box-sizing: border-box;
      margin: 0;
    }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._isDragging_x341v_483 ._nameWithImage_x341v_288 {
    background: var(--content-background-color);
    box-shadow: var(--shadow-200);
    border-radius: 8px;
    padding: 0 16px;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._nameWithImage_x341v_288 {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-primary);
    height: 100%;
    position: relative;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._nameWithImage_x341v_288 span {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._nameWithImage_x341v_288 img,
    ._sourcesList_x341v_425 ._feedItem_x341v_246 ._nameWithImage_x341v_288 svg {
      border-radius: 4px;
      min-width: 24px;
      width: 24px;
      min-height: 24px;
      height: 24px;
      margin-right: 16px;
    }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._description_x341v_313,
  ._sourcesList_x341v_425 ._feedItem_x341v_246 ._documents_x341v_314,
  ._sourcesList_x341v_425 ._feedItem_x341v_246 ._lastUpdated_x341v_315 {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._description_x341v_313 span, ._sourcesList_x341v_425 ._feedItem_x341v_246 ._documents_x341v_314 span, ._sourcesList_x341v_425 ._feedItem_x341v_246 ._lastUpdated_x341v_315 span {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._documents_x341v_314 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._views_x341v_538 {
    display: flex;
    align-items: center;
  }

._sourcesList_x341v_425 ._feedItem_x341v_246 ._lastUpdated_x341v_315 {
    display: flex;
    align-items: center;
  }

._checkbox_x341v_466 {
  width: fit-content;
}

._checkbox_x341v_466 input[type="checkbox"] {
    border-radius: 4px;
    accent-color: var(--icon-interactive);
    cursor: pointer;
  }

._checkbox_x341v_466 input[type="checkbox"]:indeterminate {
      background: green;
    }

._suggestionsPrompt_x341v_563 {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

._loaderContainer_x341v_570 {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 16px;
}

._loaderContainer_x341v_570 p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: var(--text-primary);
  }

._emptyStateContainer_x341v_584 {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  height: 208px;
}

._emptyStateContainer_x341v_584._high_x341v_591 {
    background: var(--u-alpha-blue-100);
  }

._emptyStateContainer_x341v_584 ._radarWrapper_x341v_595 {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

._deleteButton_x341v_604 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-error);
  background: var(--background-primary);
}

._deleteButton_x341v_604:hover {
    background: var(--background-primary);
  }

._deleteButton_x341v_604 svg {
    margin-right: 4px;
  }

._deleteButton_x341v_604 svg * {
      fill: var(--icon-danger);
    }

._sources_x341v_1._areSelectedItems_x341v_624 ._navPillsContainer_x341v_88,
  ._sources_x341v_1._areSelectedItems_x341v_624 ._headerRight_x341v_44 button {
    opacity: 0.4;
    pointer-events: none;
  }

._sources_x341v_1._areSelectedItems_x341v_624 ._feedItem_x341v_246 td {
      -webkit-user-select: none;
              user-select: none;
    }

._sources_x341v_1._areSelectedItems_x341v_624 ._feedItem_x341v_246 td * {
        pointer-events: none;
      }

._hideElement_x341v_642 {
  display: none !important;
}
