.jetimob-filtro {
    display: flex;
    align-items: center;
    background: #f2efef;
    border-radius: 10px;
    /*overflow: hidden;*/
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.filtro-item {
    flex: 1;
    position: relative;
    border-right: 1px solid #d0d0d0;
}

.filtro-item:last-child {
    border-right: none;
}

.filtro-item input,
.filtro-item select {
    width: 100%;
    height: 64px;
    padding: 0 18px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #333;
    outline: none;
}

.filtro-item input::placeholder {
    color: #555;
}

.filtro-item.select select {
    appearance: none;
    cursor: pointer;
}

.filtro-item.select i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d47ff;
    font-size: 14px;
    pointer-events: none;
}

/* Botão buscar */
.filtro-buscar {
    width: 70px;
    height: 64px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    color: #0d47ff;
    transition: background 0.3s ease;
}

.filtro-buscar:hover {
    background: rgba(13,71,255,0.1);
}

@media (max-width: 992px) {
    .jetimob-filtro {
        flex-wrap: wrap;
    }

    .filtro-item {
        flex: 1 1 50%;
        border-bottom: 1px solid #d0d0d0;
    }

    .filtro-item:nth-child(odd) {
        border-right: 1px solid #d0d0d0;
    }

    .filtro-buscar {
        width: 100%;
        height: 56px;
    }
}

.select-multi {
    position: relative;
    cursor: pointer;
}

.select-display {
    padding: 12px;
    /*background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;*/
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-height: 220px;
    width:250px;
    overflow-y: auto;
    display: none;
    z-index: 20;
}

.select-dropdown input {
    height: 15px;
    float: left;
    width: auto;
    margin-right: 5px;
}

.select-dropdown label {
    display: block;
    padding: 8px 12px;
    cursor: pointer;
}

.select-dropdown label:hover {
    background: #f5f5f5;
}
