/*
 * FILE_HEADER
 */

.ThemeSelection {
  .StretchedFlexItem();
  .FlexContainer();
  order: 1;
  position: relative;
}

.ThemeSelectionHeader {
  padding: 16px 16px 14px 16px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ThemeSelectionHint {
  padding: 0.8em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ThemeSelectionItems {
  width: 100%;
  min-height: 2em;
  min-width: 6em;

  .ThemeSelectionRow {
    .SimpleRow();
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding: 0.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
  }

  .ThemeSelectionRow:last-child {
    border-bottom: none;
  }

  .ThemeSelectionRowIconChecked {
    width:16px;
    min-width:16px;
    height:16px;
    margin: 16px 8px 16px 16px;
  }

  .ThemeSelectionRowNoIcon {
    width:40px;
    min-width:40px;
    height: 48px;
  }

  .ThemeSelectionRowLabel{
    vertical-align: top;
    margin-top: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}