.genericlist {
}

.modal-content .genericlist .searchContainer {
    /*    width: 270px !important;
*/
}

.mainContainer .genericlist .table {
    max-height: 550px !important;
}

.genericlist .hint {
    color: green;
    display: inline-block;
    font-size: 13px;
    margin-left: 5px;
}

.genericlist .clickable {
    cursor: pointer;
}

.genericlist .clickable.blue {
    color: #3fb7e3;
}

.genericlist .clickable.blue:hover {
    color: #1a96c3;
}

.genericlist .clickable.red {
    color: #b41a1a;
}

.genericlist .clickable.red:hover {
    color: #7e0303;
}

.genericlist .table {
    max-height: 400px !important;
}

.tblContainer {
    overflow-y: scroll;
    max-height: 350px;
}
.genericlist .table {
    background-color: white !important;
    box-shadow: 0px 2px 5px #888888;
    overflow: scroll;
    max-height: 400px;
    margin: 0 !important;
}

.genericlist .table.margin-bottom {
    margin-bottom: 20px !important;
}

.genericlist .table th,
.genericlist .table td {
    padding: 15px 30px;
    font-size: 13px;
    text-align: left;
    color: #333;
}

.genericlist .table tr.tableRow:hover {
    background-color: #d4e0e4 !important;
}

.genericlist .table tr.tableRow.header:hover {
    background-color: white !important;
}

.genericlist .table tr.header {
    border-bottom: 1px solid #aaa;
}

.genericlist .table tr.totals {
    border-top: 1px solid #aaa;
}

.genericlist .table th {
    cursor: pointer;
    font-weight: bold;
}

.genericlist .table .table-image,
.genericlist .table .table-title {
    display: inline-block;
}

.genericlist .table .table-image {
    height: 40px;
}

.genericlist .table .table-title {
    font-size: 13px;
    margin-left: 5px;
}

.genericlist .searchContainer {
    margin-bottom: 15px;
}

.genericlist .searchContainer .searchLabel,
.genericlist .searchContainer .searchInput {
    display: inline-block;
    color: #333;
}

.genericlist .searchInput {
    width: 188px;
    height: 21px;
    margin-left: 15px;
    background-size: 21px;
    text-align: left;
}

/* The container */
.checkboxContainer {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 5px;
    left: 7px;
    height: 25px;
    width: 25px;
    background-color: white;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.genericlist .checkmark_label {
	color: #333;
}

.dark .genericlist .table td select {
	background-color: white;
	color: #333;
}

/* DARK MODE */
.dark .genericlist .searchContainer .searchLabel,
.dark .genericlist .searchContainer .searchInput,
.dark .genericlist .table th,
.dark .genericlist .table td,
.dark .genericlist .checkmark_label,
.dark .genericlist .table td select {
    color: rgba(255, 255, 255, 0.87);
}
.dark .genericlist .table,
.dark .genericlist .table td select {
    background-color: #0d4962 !important;
}
.dark .genericlist .table td select {
	border: solid 1px rgba(255, 255, 255, 0.87);
}
.dark .genericlist .table tr.header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.dark .genericlist .table th,
.dark .genericlist .table td {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}
