.code-search-cell {
  padding: 6px 0px 6px 18px;
  position: relative;
  margin: 0 1px;
  line-height: normal;
  outline: none;
  border-bottom:  1px solid;
  border-bottom-color: rgba( 234, 234, 234 ,  1 );
  border-bottom-color: rgba( var(--palette-neutral-8,234, 234, 234) ,  1 );
}

.code-search-cell.is-active, .code-search-cell:hover, .code-search-cell:focus {
  background-color: rgba( 239, 246, 252 ,  1 );
  background-color: rgba( var(--palette-primary-tint-40,239, 246, 252) ,  1 );
}

.code-search-cell .cell-header {
  font-size: 12px;
  cursor: text;
  display: flex;
  flex-flow: row nowrap;
}

.code-search-cell .cell-header .file-info {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  flex: 1 auto;
  padding: 1px;
}

.code-search-cell .cell-header .file-name {
  color: rgba( 0, 0, 0 ,  1 );
  color: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 );
  font-weight: 600;
  font-size: 14px;
}

.code-search-cell .cell-header .file-name.custom-vc {
  display: inline !important;
}

.code-search-cell .cell-header .file-link {
  font-size: 14px;
  font-weight: 600;
  border: none !important;
}

.code-search-cell .cell-header .project-repo-info {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  font-size: 11px;
  padding-left: 14px;
}

.code-search-cell .cell-content {
  font-size: 13px;
  color: #656565;
  margin-top: 4px;
  line-height: 20px;
  flex-flow: row nowrap;
  display: flex;
}

.code-search-cell .cell-content .text-content-container {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  flex: 1 auto;
  font-size: 12px;
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
}

.code-search-cell .hits {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  color: #656565;
  margin-right: 15px;
  font-size: 12px;
}

.code-search-cell .vertical-mode {
  display: flex;
  flex-direction: row;
}

.code-search-cell .vertical-mode .cell-header {
  flex: 1 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.code-search-cell .vertical-mode .cell-content {
  flex: 2 0;
  margin-top: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.code-search-cell .vertical-mode .hits {
  flex: 0 100px;
  text-align: right;
}

.is-focusVisible .code-search-cell:focus:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  border:  1px solid;
  border-color: rgba( 102, 102, 102 ,  1 );
  border-color: rgba( var(--palette-neutral-60,102, 102, 102) ,  1 );
}
