/*----------------FILTERS------------------*/
.filter-button{
    position: relative;
}
.filter-button .dropdown-label {
    position: relative;
    z-index: 5;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.filter-button .dropdown-label svg,
.filter-button .dropdown-label i {
    margin-left: 5px;
    font-size: 12px;
}

.filter-button.active .dropdown-label i{
    transform: rotate(180deg);
}

.filter-button .dropdown-container {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    min-width: 270px;
    background-color: #FFFFFF;
    padding: 36px 34px;
    overflow: hidden;
    box-shadow: 3px 3px 30px #386D8A21;
}

.filter-button.active .dropdown-container {
    visibility: visible;
    opacity: 1;
}
.filter-button:hover .dropdown-label path,
.filter-button.active .dropdown-label path {
    fill: #fff;
}
#filter-date .dropdown-container {
    width: 527px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    top: 60px;
    left:0px;
    right: auto;
}
.dropdown-container #date-range {
    width: 100%!important;
    max-width: 100%!important;
    font-size: 15px;
    line-height: 30px;
    border: #EFEFF1 solid 1px;
}

.filter-item {
    /*display: grid;
    grid-template-columns: 1fr 24px 24px;
    grid-gap: 15px;*/
    display: flex;
    justify-content: space-between;
    grid-gap: 15px;
    cursor: default;
}
.filter-item:not(:last-child) {
    margin-bottom: 15.5px;
}
.filter-item .term-name {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #221F20;
    text-align: left;
}
.filter-item .term-count {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #3D4444;
    text-align: left;
    opacity: 0.7;
}
.filter-item .term-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    border: solid 1px #2D2E3D;
    cursor: pointer;
}
.filter-item .term-input svg {
    opacity: 0;
    visibility: hidden;
}
.filter-item .term-input.selected {
    background-color: #2D2D3C;
    border: solid 1px #2D2D3C;
}
.filter-item .term-input.selected svg {
    opacity: 1;
    visibility: visible;
}

/*Sort*/
.filter-item .sort , .filter-item .term-input.single{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    border: solid 1px #2D2E3D;
    cursor: pointer;
    border-radius: 50%;
}
.filter-item .sort i , .filter-item .term-input.single i {
    opacity: 0;
    visibility: hidden;
}
.filter-item .sort.selected, .filter-item .term-input.single.selected {
    background-color: #ffff;
    border: solid 1px #2D2E3D;
}
.filter-item .sort.selected i, .filter-item .term-input.single.selected i {
    opacity: 1;
    visibility: visible;
}
/*End Sort*/

.applied-filters {
    text-align: left;
    font-size: 0%;
}
.applied-filters .term-selected {
    display: inline-block;
    cursor: pointer;
    background-color: #F0F5F5;
    border: solid 1px #267fb2;
    border-radius: 100px;
    padding: 3px 16px;
    font-size: .85rem;
    font-weight: 400;
    line-height: 28px;
    color: #267fb2;
    margin: 0 16px 16px 0;
}
.daterangepicker::before {
    display: none;
}
.daterangepicker td:not(.off).active, .daterangepicker td:not(.off).active:hover {
    background-color: #FCAF2E!important;
}

.results-count {
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}
.results-loader {
    position: relative;
}
.results-loader::before {
    visibility: hidden;
    opacity: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
}
.results-loader.loading::before {
    visibility: visible;
    opacity: 1;
}

.results-progress {
    width: 190px;
    text-align: center;
    margin: 0 auto 27px;
}
.results-progress .progress-label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #221F20;
    margin-bottom: 10px;
}
.results-progress .progress {
    display: block;
    position: relative;
    background-color: #B3D4E5;
    border-radius: 100px;
    height: 2px;
    overflow: hidden;
}
.results-progress .progress span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #1855A8;
    transition: all 0.5s;
}

/*-------------END OF FILTERS--------------*/

.filter-end-results{ 
    display: none;
}

.filter-load-more{
    display: none;
}

.filter-no-postings{
    display: none;
}