.listItem{
	transition: all 250ms;
	position: relative;
	z-index: 1;
/*	padding: 2px;
	background: #f9f9f9;*/
	flex-grow: 1;
}
.listItem:not(.locked):hover{
	box-shadow: 0 0 15px 0px rgba(50,50,50,.3);
	transform: translateY(-5px);
	background: #f0f0f0;
	z-index: 50;
}

.result .column{
	display: flex;
	flex-direction: column;
}
.listName .number{
	font-weight: bold;
}
.multiCheckBox .trigger:after, 
#searchWrap .multiCheckBox .options label:before{
	display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Pro";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.filter.column{
	padding-top:5px; 
	padding-bottom:5px; 
}
/*multiCheckBox Filter*/
.multiCheckBox{
	position: relative;
	font-size: 14px;
	font-weight: bold;
}
.multiCheckBox .trigger{
	padding: 0 10px;
	cursor: pointer;
	position: relative;
}
#searchWrap .multiCheckBox .trigger label{
	padding: 0
}
.multiCheckBox .trigger:after{
	content: '\f078';
	position: absolute;
	right: 0;
	top: 0;
	color: #434a49;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
}
.multiCheckBox .trigger.open:after{
	content: '\f077';
}
.multiCheckBox .options{
	position: absolute;
	z-index: 100;
    background: #f9f9f9;
    padding: 5px;
    width: 190px;
    top: 25px;
    left: 0px;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.4);
}
#searchWrap .multiCheckBox .options label{
	width: auto;
	display: flex;
	padding: 3px;
	cursor: pointer;
	padding-right: 10px;
}

#searchWrap .multiCheckBox .options label.selected{
	color: #3f5f7e;
}

.listItemContainer.noItems{
	text-align: center;
}
#searchWrap .multiCheckBox .options label:before{
	content: '\f00c';
	height: 20px;
	min-width: 20px;
    border: 2px solid #ccc;
    display: block;
    margin-right: 15px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    line-height: 16px;
    text-align: center;
    color: #ccc;
    transition: all 200ms;
        margin-top: 2px;
}
#searchWrap .multiCheckBox .options label:hover:before{
	border-color: #aaa;
	color: #aaa;
}
#searchWrap .multiCheckBox .options label.selected:before{
	color: #3f5f7e;
	border-color: #3f5f7e;
}
.multiCheckBox .options input{
	position: absolute;
	top: -10000px;
}

.passedFilters{
	display: block;
	width: 100%;
	background: #f9f9f9;
	min-height: 31px;
	display: flex;
	margin-bottom: 10px;
}
.passFilterItem{
	background: rgba(228,233,239,.1);
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-right: 5px;
}
.passFilterItem .name{
	padding: 0 10px;
}
.passFilterItem .remover{
	width: 25px;
	height: 100%;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
	background: #ececec;
}
.passFilterItem .remover:hover{
	background: rgba(0,0,0,.2);
}
.passFilterItem .remover .fal{
	line-height: 30px;
}
.filterElement{
	padding: 5px;
    background: #f9f9f9;
    margin-bottom: 10px;
    height: 100%;
    border-bottom: 10px solid #fff;
}
.filterExpander{
	margin-left: auto;
    background: #3f5f7e;
    width: 70px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.filterExpander.active{
	background: #aaa;
}
.isFilteredName {
    margin: 2px 10px;
    font-weight: 400;
    font-size: 12px;
    padding: 0 10px;
    color: #3f5f7e;
    background: #ececec;
    line-height: 25px;
}
.isFilteredName .fas{
	line-height: 25px;
}

