/*
* FacetWP plugin
 */


/* input box for search */
.facetwp-input-wrap {
    width: 100%;
    border-bottom: 1px solid var(--wp--preset--color--white);
}
.blue-search .facetwp-input-wrap {
    width: 100%;
    border-bottom: 1px solid var(--wp--preset--color--blue);
}

/* search icon */
.facetwp-input-wrap .facetwp-icon {
    opacity: 1;
    right: -15px;
    top: 5px;
}
.facetwp-icon:before {
  background: url(../img/search-icon.png) no-repeat !important;
}
.blue-search .facetwp-icon:before {
    background: url(../img/search-icon-blue.png) no-repeat !important;
}

/* checkbox field */
.facetwp-checkbox {
    /*text-transform: uppercase;*/
    margin-bottom: 10px !important;
}

/* input box */
.facetwp-facet input.facetwp-search, .facetwp-facet input.facetwp-location {
    /*padding-left: 20px;*/
    background: transparent;
    color: var(--wp--preset--color--white);
    /*text-transform: uppercase;*/
    padding-bottom: 2px;
    font-size: var(--wp--preset--font-size--xs);
    width: 100%;
}
.blue-search .facetwp-facet input.facetwp-search, .lightblue-search .facetwp-facet input.facetwp-location {
    width: 100%;
    /*font-size: var(--wp--preset--font-size--xl);*/
}

/* hide checkbox counts */
.facetwp-counter {
    display: none;
}

/* pager styling */
.facetwp-pager {
    text-align: center;
}
.facetwp-page {
    /*color: var(--wp--preset--color--blue);*/
    padding: 0 8px;
}

/* center the facet columns on mobile for directory*/
@media(max-width: 599px) {
    .directory .fwpl-col {
        margin-right: 30%;
        margin-left: 30%;
    }
}

/* user selections */
.facetwp-selections {
    padding-bottom: 10px;
}
.facetwp-selection-label {
    display: none;
}
.facetwp-selection-value {
    font-size: var(--wp--preset--font-size--xl);
    color: var(--wp--preset--color--blue);
}