/**
 * Filters
 */
#filters {
    margin-bottom: 25px;
}
#filters .card-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
#filters .card-content div.custom-multiselect {
    flex: 1 0 240px;
}
#filters .card-content div.input-search {
    flex: 1 1 512px;
}

.offers-nb {
    margin: 0 0 25px 0;
    font-size: 22px;
    font-weight: 700;

    .big {
        font-size: 48px;
    }
}

/**
 * Forms components
 */
.custom-multiselect {
    position: relative;
    width: 100%;
}
.custom-multiselect .multiselect-header {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    background: white;
    font-weight: 300;
    font-size: 14px;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-multiselect .multiselect-header .label {
    flex: 1;
}
.custom-multiselect .multiselect-header .clear-btn {
    cursor: pointer;
    color: #888;
    font-size: 16px;
    padding: 0 5px;
    margin-left: 10px;
}
.custom-multiselect .multiselect-header .clear-btn:hover {
    color: #000;
}
.custom-multiselect .multiselect-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}
.custom-multiselect .multiselect-option {
    display: flex;
    align-items: flex-start;
    padding: 8px 10px;
    cursor: pointer;
}
.custom-multiselect .multiselect-option:hover {
    background: #f5f5f5;
}
.custom-multiselect .multiselect-options.open {
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}
.custom-multiselect .multiselect-option input[type="checkbox"] {
    margin: 2px 10px 0px 0px;
}

/**
 * Input search
 */
.input-search {
    display: flex;
    flex-direction: row;
    padding: 11px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;

    .fa { color: #777; }

    input {
        flex: 1;
        padding: 0;
        background: transparent;
        border: none;
        font-weight: 300;
        font-size: 15px;
        outline: none;
    }
}