.list {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border-collapse: collapse;
    background-color: #FFF;
    padding: 0;
    font-size: 13px;
}

.list tr {
    color: #444;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    position: relative;
}

/*
.list tr:first-child {
    cursor: default;
}
*/


.list th {
    cursor: default;
}


.list .tractive td {
    background-color: #d7e1f4 !important;
}

.list tr:hover td {
    background-color: #EFEFEF;
}

.list tr:first-child th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 7px 10px;
    text-align: left;
    background-color: #FFFFFF;
    box-shadow: inset 0 0px 0 #d7d7d7, inset 0 -1px 0 #d7d7d7;
    font-weight: normal;
    color: #666666;
    height: 26px;
}

.list tr td {
    padding: 7px 10px;
    background-color: #FFFFFF;
}

.list tr:last-child {
    border-bottom: 0;
}

.listTdRight {
    text-align: right !important;
}

.listTdCenter {
    text-align: center !important;
}

.listIcon {
    font-size: 18px;
}

.listIconInactive {
    color: #d7d7d7;
}

.listThFlex {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 10px;
    width: 100%;
}

.listThFlexRight {
    justify-content: flex-end;
}

.listThIcon {
    font-size: 16px;
    color: #999999;
}

.listItemCol {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    gap: 4px;
    min-width: 42px;
}

.listItemColCheckbox {
    min-width: 10px;
}

.listItemColRight {
    text-align: right;
}

.listItem:hover {
    color: #444444;
    text-decoration: none;
    background-color: #F9F9F9;
}

.listItem:hover .listItemIconCircle .listItemIconStatus,
.listItem:hover .listItemIconCircle .listItemIconStatusInactive {
    border: 2px solid #F9F9F9;
}

.listItemIcon {
    font-size: 24px;
}

.listItemIconCircle {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 24px;
    border-radius: 100%;
    background-color: #e6e6e6;
}

.listItemIconSmall {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 18px;
}

.listItemIconStatus {
    background-color: #009933;
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 2px solid #FFFFFF;
}

.listItemIconStatusInactive {
    background-color: #bfbfbf;
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 2px solid #FFFFFF;
}

.listItemIconImage {
    height: 32px;
    height: 32px;
}

.listItemTitle {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listItemDescription {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: #888888;
}

.listItemColFirst {
    width: 180px;
}

.listItemColSecound {
    width: 220px;
} 

.listNoResults {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    gap: 20px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.listNoResultsIcon {
    color: #a6a6a6;
    font-size: 46px;
    text-align: center;
}

.listNoResultsText {
    color: #a6a6a6;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    line-height: 1.4em;
    max-width: 280px;
}

.listItemColStatus {
    max-width: 16px;
    min-width: 16px;
}

.status {
    display: inline-block;
    margin: 0 auto;
    border: 1px solid #666666;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.status1 {
    background-color: #009933;
}



.listSummary {
    user-select: none;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    border-top: 1px solid #d7d7d7;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    padding: 0;
    gap: 0;
    background-color: #FFFFFF;
}

.listSummaryItem {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    font-size: 13px;
    position: relative;
    height: 100%;
    gap: 4px;
    padding: 0 4px;
}


.listSummaryItem:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    border-left: 1px solid #D7D7D7;
}


.iconListSummary {
    width: 32px;
    height: 32px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 3px;
    overflow: hidden;
    border-radius: 100%;
    cursor: pointer;
}

.iconListSummary:hover {
    background-color: #EFEFEF;
}

.listSummaryItemText {
    margin: 10px 6px;
}

.listHead {
    position: fixed;
    top: 55px;
    left: 320px;
    right: 0;
    height: 40px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #d7d7d7;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.listHeadContainer {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 100%;
    gap: 10px;
    font-size: 12px;
}

.listHeadContainerRight {
    justify-content: flex-end;
}

.listHeadItem {
    padding: 0 20px;
}

.listSelectItem {
    width: 18px;
}

.listIconItem {
    width: 18px;
}

.listTdDate {
    width: 120px;
}

.listInactive {
    color: #999999 !important;
}

.sortColumn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 16px;
    height: 16px;
    font-size: 15px;
    color: #AAAAAA;
    cursor: pointer;
}

.listNodisplay {
    display: none;
}

.listSmallIcon {
    font-size: 18px;
}

.listSmallIconUnact {
    color: #d7d7d7 !important;
}

.listCustomMenu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    z-index: 9999;
    box-shadow: 0px 0px 20px -16px rgba(0, 0, 0, 1);
    overflow: hidden;
    overflow-y: auto;
    user-select: none;
    box-sizing: border-box;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.listCustomMenuColumn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
}

.lictCustomMenuBtnSmallContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 5px;
    padding: 10px;
    box-sizing: border-box;
    height: auto;
    min-height: 100%;
}

.listBtnSmall {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
    gap: 10px;
    font-size: 13px;
    border-radius: 3px;
    width: 100%;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.listBtnSmall label {
    color: #444;
    font-size: 13px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 7px 10px 7px 0;
    cursor: pointer;
}

.listBtnSmall input[type="checkbox"] {
    margin: 7px 0 7px 10px;
}

.listBtnSmall:hover {
    background-color: #EFEFEF;
}

.menuDateRange {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 100%;
    padding: 10px;
    border-left: 1px solid #d7d7d7;
}

.listBtnSmallNormal {
    padding: 7px 10px;
}

.listInfo {
    width: calc(100% - 20px);
    margin: 10px;
    border-collapse: collapse;
}

.listInfo td {
    padding: 10px 15px;
    border: 0;
}

.listInfo tr:hover td {
    background-color: #EFEFEF;
}

.listInfo tr:hover td:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.listInfo tr:hover td:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.listInfo td:last-child {
    text-align: right;
}

.listFiltersItemLine {
    width: 1px;
    height: 28px;
    border: 0;
    margin: 2px 10px;
    background-color: #d7d7d7;
}