/* BUSCADOR */

.new-filter-container {
    background-color: #7b1c61;
    border-radius: 1rem;
    height: fit-content;
    padding: 3px 25px 5px 25px;
}

#filter-button {
    color: #7b1c61;
    font-weight: 700;
    background-color: #fedd69;
}

#filter-button:hover,
#search-icon:hover {
    background: #ffe997;
}

.searcher-chevron-down {
    right: 14px;
    top: 8px;
    color: #7b1c61;
}

.searcher-search {
    color: #7b1c61;
    background-color: #fedd69;
    height: 95%;
    top: 1px;
    right: 1px;
    width: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;
}

/* FILTERS */

/* .select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 16px;
    width: 16px;
    border: 2px solid #e9e9e9;
    border-radius: 4px;
    background-color: #fff;
    margin-right: 10px;
    vertical-align: text-top;
}
  .select2-results__option[aria-selected=true]:before {
    font-family:fontAwesome;
    content: "\f00c";
    color: #fff;
    background-color: #7b1c61;
    border: 0;
    display: inline-block;
    padding-left: 3px;
    font-size: smaller;
} */

.select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 16px;
    width: 16px;
    border: 0.1em solid #7B1C61;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    margin-right: 10px;
    vertical-align: middle;
    background-color: #fff;
    font-size: 1rem;
}

.select2-results__option[aria-selected=true]:before {
    font-family: fontAwesome;
    content: "\f00c";
    font-size: 13px;
    color: #ffffff;
    display: inline-block;
    position: relative;
    border-radius: 0.1em;
    background-color: #7B1C61;
    margin-right: 10px;
    vertical-align: middle;
    line-height: 14px;
}


/* CHECKS */

.filter-pill {
    background-color: #c3c5ca;
    color: #7b1c61;
    border-radius: 9px;
    float: left;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
    margin-right: 5px;
    display: inline-flex;
}

.filter-pill::after {
    content: '×';
    font-weight: bolder;
    font-size: 15px;
    display: inline-block;
    margin-left: 2px;
}

/* FILTROS */

input[type="checkbox"] {
    appearance: none;
    font: inherit;
    border: 0.1em solid #7B1C61;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.form-control+.form-control {
    margin-top: 1em;
}

input[type="checkbox"]::before {
    font-family: fontAwesome;
    content: "\f00c";
    font-size: 16px;
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #FFF;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:checked {
    background-color: #7B1C61;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

hr.searcher-divisor {
    border-color: #7B1C61;
}

.titleAccordion {
    color: #7B1C61;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    padding-right: 1.5rem;
}

label {
    font-size: 12px;
}

.filter-chevron-down {
    right: 5px;
    color: #7B1C61;
}

.active .filter-chevron-down {
    transform: rotate(180deg);
}

.btn-sort-by:hover {
    background-color: transparent;
}

/**************************
Accordion
*************************/

.accordion {
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.contentAccordion {
    margin: 5px 0px 5px 5px;
}

.textAccordion {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    max-height: 150px;
    overflow-y: scroll;
}

.optionAccordion {
    margin-left: 0.5rem;
    vertical-align: text-top;
}