.nova-table-selection-dialog-content {
  box-sizing: border-box;
  height: 260px;
  width: 480px;
  padding: 20px;
  border: 1px solid black;
  font-family: Verdana, Arial, sans-serif;
}
.nova-table-selection-dialog-content * {
  box-sizing: border-box;
}
.nova-table-selection-dialog-content .nova-table-selection-description-container {
  margin: 5px 0 20px 0;
  display: flex;
  align-items: center;
}
.nova-table-selection-dialog-content .nova-table-selection-description-container .nova-table-selection-description-text {
  font-size: 14px;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container {
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row {
  display: flex;
  padding: 5px 0;
  cursor: pointer;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row.disabled {
  opacity: 0.5;
  cursor: default;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row.disabled:hover {
  background-color: inherit;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row:hover {
  background-color: var(--bgColorHover);
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  padding-right: 5px;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-icon-container .nova-table-selection-row-icon {
  border-style: solid;
  border-color: var(--fcContent);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(315deg);
  margin-bottom: 2px;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-text-container .nova-table-selection-row-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}
.nova-table-selection-dialog-content .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-text-container .nova-table-selection-row-text {
  font-size: 12px;
  line-height: 20px;
}
