/* -- List Sort Styles -- */
.psListHeader {
    position: relative;
    padding: 10px;
}
.psListSortbox {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 5px 10px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
}
.psListSortbox:before {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-color: #eee;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center center;
    background-image: url("/Assets/Images/Icons/fontawesome/solid/sort.svg");
    content: "";
    vertical-align: -5px;
}
.psListSort, .psListSort_more {
    display: inline-block;
    background-color: #fff;
    margin-right: 5px;
    color: #000 !important;
    font-size: 13px;
}
.psListSort_moreDropdown {
    position: absolute;
    right: 0px;
    top: 2px;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 2;
    display: none;
}
.psListSort_moreDropdown .psListSort {
    border: 0;
}
.psListSort.active {
    color: #ffa300 !important;
    font-weight: bold;
}