.fuelm-filter-area {
    background: #f7f7f7;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
}

.fuelm-filter-result-count {
    font-weight: bold;
}

.fuelm-filter-area .hidden {
    display: none;
}

.fuelm-filter-area form {
    margin-bottom: 0;
}

.fuelm-filter-item {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
    padding-top: 15px;
}

.fuelm-filter-item:last-child {
    border: none;
    padding-bottom: 0;
}

.fuelm-filter-item-heading {
    display: flex;
}

.fuelm-filter-item-icon {
    padding: 10px 0 0 0;
    margin: -10px 10px 0 0px;
}

.fuelm-filter-item-label {
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.fuelm-filter-area.collapsable .fuelm-filter-item-content {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.26s ease;
    height: 0;
}

.fuelm-filter-item-content {
    margin-top: 10px;
}

/*.fuelm-filter-area.scrollable .fuelm-filter-item[data-type=select] .fuelm-filter-item-content,*/
.fuelm-filter-area.scrollable .fuelm-filter-item[data-type=multiselect] .fuelm-filter-item-content,
.fuelm-filter-area.scrollable .fuelm-filter-item[data-type=checkbox] .fuelm-filter-item-content,
.fuelm-filter-area.scrollable .fuelm-filter-item[data-type=radio] .fuelm-filter-item-content {
    max-height: 150px;
    overflow: auto;
}

.fuelm-filter-area.collapsable .fuelm-filter-item-label:after {
    content: '\02795';
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
}

.fuelm-filter-item.active .fuelm-filter-item-content {
    transform: scaleY(1);
    height: auto;
}

.fuelm-filter-area.collapsable .fuelm-filter-item.active .fuelm-filter-item-label:after {
    content: "\2796";
}

.fuelm-filter-button {
    background: #19bc9c;
    padding: 10px;
    color: #fff;
    border-radius: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: 0;
    width: 100%;
    transition: background .5s;
    margin-top: 20px;
}

.fuelm-filter-button:hover {
    background: #17a78a;
}

.fuelm-filter-search-terms {
    margin-top: 20px;
    margin-bottom: 20px;
}

.fuelm-filter-search-terms .selected-label {
    color: #fff;
    padding: 5px 5px 5px 10px;
    display: block;
    font-weight: bold;
    cursor: pointer;
}

.fuelm-filter-search-terms .selected-label:after {
    content: 'x';
    background: #20ab90;
    color: #fff;
    margin-left: 10px;
    border-top-right-radius: 20px;
    padding: 8px;
    margin-right: -5px;
}

.fuelm-filter-search-terms div {
    background: #1abb9b;
    display: inline-block;
    border-radius: 20px;
    margin-right: 15px;
}

/*.fuelm-filter-search-terms div:before {*/
/*    background-color: #ddd;*/
/*    content: '\2796'*/
/*}*/

/* Loading */
.fuelm-filter-loading {
    position: absolute;
    z-index: 11;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(245, 245, 245, 0.9);
}


.fuelm-filter-loading .multi-ripple {
    display: block;
    margin: auto;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
}

.fuelm-filter-loading .multi-ripple div {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid #142de3;
    -webkit-animation: 2s ripple infinite;
    animation: 2s ripple infinite;
}

@-webkit-keyframes ripple {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ripple {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/* Elements */

.fuelm-filter-item input,
.fuelm-filter-item select {
    width: 100%;
    padding: 5px;
    border: 1px solid #e8e8e8;
    outline: 0;
}

.fuelm-filter-item input.has-button {
    width: 80%;
}


/*.fuelm-filter-item input[type='radio'], .fuelm-filter-item input[type='checkbox'] {*/
/*    width: auto;*/
/*}*/

/* Image Picker */

ul.thumbnails.image_picker_selector {
    overflow: auto;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}


ul.thumbnails.image_picker_selector ul {
    overflow: auto;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}


ul.thumbnails.image_picker_selector li.group_title {
    float: none;
}


ul.thumbnails.image_picker_selector li {
    margin: 0px 12px 12px 0px;
}


ul.thumbnails.image_picker_selector li .thumbnail {
    padding: 6px;
    border: 1px solid #DDD;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


ul.thumbnails.image_picker_selector li .thumbnail img {
    -webkit-user-drag: none;
    margin: 0 auto;
    display: block;
}


ul.thumbnails.image_picker_selector li .thumbnail.selected {
    border-color: #08C;
}

@media only screen and (max-width: 768px) {
    .fuelm-filter-heading {
        display: block !important;
        border: 0;
        padding: 0;
    }

    .fuelm-filter-heading.active {
        margin-bottom: 10px;
        padding: 0 0 10px;
        border-bottom: 1px solid #e8e8e8;
    }

    .fuelm-filter-area-content {
        display: none;
    }
}

@keyframes fade_in_show {
    0% {
        opacity: 0;
        transform: scale(0)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes fade_in_hide {
    0% {
        opacity: 1;
        transform: scale(1)
    }
    100% {
        opacity: 0;
        transform: scale(0)
    }
}


.fuelm-filter-area .select2-container--default .select2-selection--multiple {
    border: 1px solid #ddd !important;
    height: auto !important;
    /*min-height: auto !important;*/
    border-radius: 0 !important;
}

@-webkit-keyframes click-wave {
    0% {
        height: 20px;
        width: 20px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

@-moz-keyframes click-wave {
    0% {
        height: 20px;
        width: 20px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

@keyframes click-wave {
    0% {
        height: 20px;
        width: 20px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

.fuelm-filter-option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 5px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px !important;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    z-index: 1000;
}

.fuelm-filter-option-input:hover {
    background: #9faab7;
}

.fuelm-filter-option-input:checked {
    background: #40e0d0;
}

.fuelm-filter-option-input:checked::before {
    height: 20px;
    width: 20px;
    position: absolute;
    content: '\2716';
    display: inline-block;
    font-size: 15px;
    text-align: center;
    line-height: 20px;
}

.fuelm-filter-option-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #40e0d0;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}

.fuelm-filter-option-input.radio {
    border-radius: 50%;
}

.fuelm-filter-option-input.radio::after {
    border-radius: 50%;
}

.fuelm-filter-area.scrollable .fuelm-filter-item-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.fuelm-filter-area.scrollable .fuelm-filter-item-content::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.fuelm-filter-area.scrollable .fuelm-filter-item-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.fuelm-filter-item .easy-autocomplete {
    width: 100% !important;
}

.fuelm-filter-item .easy-autocomplete-container {
    position: relative !important;
}

.fuelm-filter-item .easy-autocomplete-container .eac-item span {
    color: #aaa;
    font-style: italic;
    font-size: 0.9em;
}

.fuelm-filter-item.search .fuelm-filter-item-content {
    max-height: 100% !important;
    position: relative;
}

.fuelm-filter-item .easy-autocomplete input {
    box-shadow: none !important;
    border-radius: 2px !important;
}

.fuelm-filter-range-container[data-range-type="input"] {
    display: flex;
}

.fuelm-filter-range-container[data-range-type="input"] input:not(:last-child) {
    margin-right: 10px;
}

.fm-filter-search-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #19bc9c;
    padding: 6px;
    min-width: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}