.filter-custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 46rem;
    font-size: 1.3rem;
    height: 4rem;
    color: rgb(var(--dark));
}

.filter-custom-select.open {
    border-radius: .5rem .5rem 0 0;
    border-bottom: none
}

.filter-custom-select.open .custom-select-content {
    display: block;
    border-radius: 0 0 .5rem .5rem;
    border-top: none;
}

.filter-custom-select.single .custom-select-content .custom-select-options .custom-checkbox label::before {
    display: none !important;
}

.filter-custom-select.open .custom-select-header {
    border-bottom-color: transparent;
    border-radius: .5rem .5rem 0 0;
}

.filter-custom-select .custom-select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    cursor: pointer;

    border: 2px solid rgb(var(--light));
    border-radius: 0.5rem;
    padding: 0 1rem;
}

.filter-custom-select .custom-select-header span {
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(var(--dark));
    font-size: 2.5rem;
}

.filter-custom-select .custom-select-header span:nth-of-type(2),
.filter-custom-select .custom-select-header span.fa-chevron-down {
    font-size: 1.5rem;
}

@media(min-width:992px) {
    /* .filter-custom-select .custom-select-header span {
        font-size: 2rem;
    } */
}

.filter-custom-select .custom-select-content {
    height: auto;
    display: none;
    padding: 0 1rem;
    /* padding-top: 0; */
    position: absolute;
    top: 100%;
    z-index: 3;
    background-color: rgb(var(--white));
    border: 2px solid rgb(var(--light));
    width: 100%;
    left: 0;
}

.filter-custom-select .custom-select-content input {
    width: 100%;
    margin-bottom: 5px;
    border-radius: 0;
    border: 1px solid #000;
    height: 30px
}

.filter-custom-select .custom-select-content input::placeholder {
    color: #000;
    padding-left: 10px;
    font-size: 13px
}

.filter-custom-select .custom-select-content .custom-select-options {
    width: 100%;
    overflow-y: auto;
    height: auto
}

.filter-custom-select .custom-select-content .custom-select-options.default label::before {
    display: none
}

.filter-custom-select .custom-select-content .custom-select-options label {
    /* display: block; */
    font-size: 1.4rem;
    white-space: nowrap;
    /* overflow: auto; */
    /* padding-left: 1rem; */
    margin-bottom: 0;
    height: 2rem;
}

.filter-custom-select .custom-select-content .custom-select-options label span {
    position: relative;
    font-size: 2rem;
}

.filter-custom-select .custom-select-content .custom-select-options label::before {
    content: "";
    /* width: 1.4rem; */
    /* height: 1.4rem; */
    display: inline-block;
    /* border: 1px solid black; */
    margin-right: 5px;

    background-color: rgb(var(--white));
    height: 2rem;
    width: 2rem;
    border: 2px solid rgb(var(--light));
    border-radius: .4rem;
    /* margin-right: 2rem; */
    z-index: 10;
    cursor: pointer !important;
}

.filter-custom-select .custom-select-content .custom-select-options .form-group:last-of-type {
    margin-bottom: 0
}

.filter-custom-select .custom-select-content .custom-select-options .form-group .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-custom-select .custom-select-content .custom-select-options .form-group .custom-checkbox:hover {
    background-color: #ccc
}

.filter-custom-select .custom-select-content .custom-select-options .checked-input label::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Solid";
    font-weight: 900;
    display: block;
    color: rgb(var(--dark));
    line-height: 1.8rem;
    text-align: center;
}

.filter-custom-checkbox-container {
    margin-bottom: 0 !important;
    padding-top: 10px;
}

.front-select-holder .error-msg {
    margin-bottom: 0
}

.gray-bg {
    background: #ccc
}

.bg-white {
    background-image: white
}

.bg-light-gray {
    background-color: #f2f2f5
}