div.list-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #638ecf;
  padding-left: 1rem;
  padding-right: 1rem;
  color: white;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0;
  height: 4.5rem;
}
div.list-header .list-title {
  margin-top: 0;
  margin-bottom: 0;
}
div.list-header .search-container {
  display: flex;
  font-weight: normal;
  font-size: 1.4rem;
  color: var(--stand_alone_text_color);
  line-height: normal;
}
div.list-header .search-container .quick_search_find {
  border-radius: 0.4rem;
  margin-left: 0.4rem;
  margin-right: 0;
  height: 3.5rem;
  border: 1px solid transparent;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
div.list-header .search-container .quick_search_find:disabled {
  opacity: 0.5;
}
div.list-header .search-container .quick_search_clear {
  border-radius: 0.4rem;
  margin-left: 0.4rem;
  margin-right: 0;
  border: 1px solid transparent;
  height: 3.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
div.list-header .search-container .quick_search_clear:disabled {
  opacity: 0.5;
}
div.list-header .search-container .quick_search_company {
  padding-left: 1rem;
  width: 12rem;
  height: 3.5rem;
  border: 1px solid var(--border_color);
  border-radius: 0.4rem;
  margin-right: 0.4rem;
}
div.list-header .search-container .advanced-search {
  padding: 0.5rem;
  border-radius: 0.4rem;
  background-color: #ccc;
  margin-left: 0.4rem;
  width: 3.3rem;
  border: 1px solid transparent;
  height: 3.5rem;
}
div.list-header .search-container .advanced-search.is_search {
  background-color: var(--search_active);
}
div.list-header .search-container .advanced-search:hover {
  background-color: var(--base_hover_background_color);
  color: #fff;
}
div.list-header .search-container .advanced-search span:hover {
  background-color: transparent;
  color: #fff;
}
div.list-header .search-container .advanced-search:disabled {
  opacity: 0.5;
}
div.list-header div.page-navigation {
  display: inline-flex;
  margin-left: 1.4rem;
  margin-top: 0.4rem;
  color: var(--stand_alone_text_color);
  font-weight: normal;
  font-size: 1.4rem;
}
div.list-header div.page-navigation div.navigation-pages {
  color: white;
  display: flex;
  align-items: center;
}

div.webmax-list {
  height: 100%;
}
div.webmax-list table.items-area {
  width: 100%;
}
div.webmax-list table.items-area div.column-header {
  display: flex;
}
div.webmax-list table.items-area tbody tr:nth-child(even) {
  background-color: var(--odd_tr_color);
}
div.webmax-list table.items-area tbody tr:hover {
  background-color: var(--hover_color);
  cursor: pointer;
}
div.webmax-list table.items-area tbody tr.last-viewed-index {
  background-color: rgb(245, 215, 168);
}
div.webmax-list table.items-area td, div.webmax-list table.items-area th {
  font-weight: normal;
  padding: 0.5rem;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  height: 32px;
}
div.webmax-list table.items-area thead {
  background-color: var(--table_header_color);
  color: var(--stand_alone_text_color);
}
div.webmax-list table.items-area thead th {
  color: #000;
}
div.webmax-list table.items-area thead th.current-column {
  font-weight: bold;
}
div.webmax-list .no_matches,
div.webmax-list .not_allowed {
  font-size: 3rem;
  color: var(--stand_alone_text_color);
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  width: 100%;
  height: 100%;
  /* position:absolute; */
  top: 10rem;
  left: 0px;
}
