#modal-filtrar-fundos .modal-myhunter-body{    
    top: 10%;
}

.filtro-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

ul.opcoes-filtro {
    list-style: none;
    padding: 8px 0 0px 0;
}

ul.opcoes-filtro li {
    display: inline-flex;
    margin: 0px 8px 16px 0px;
}

ul.opcoes-filtro li label {
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    background-color: rgba(255, 255, 255, .9);
    border: 2px solid #3B69FF;
    color: #3B69FF;
    border-radius: 2rem;
}

ul.opcoes-filtro li label {
    padding: 8px 16px;
    cursor: pointer;
}

ul.opcoes-filtro li input[type="checkbox"]:checked+label,
ul.opcoes-filtro li input[type="radio"]:checked+label {
    background-color: #3B69FF;
    color: #fff;
    transition: all .2s;
}

ul.opcoes-filtro li input[type="checkbox"],ul.opcoes-filtro li input[type="radio"] {
    display: absolute;
    position: absolute;
    opacity: 0;
}

.filtro-buttons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 32px;
}

.filtro-buttons .btn-aplicar-filtros {
    background-color: #E1173F;
    padding: 16px 48px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 2rem;
    border: none;
}

.filtro-buttons .btn-limpar-filtros {
    background-color: transparent;
    padding: 16px 48px;
    color: #3B69FF;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2rem;
    border: none;
}


@media (max-width: 992px) {
    .modal-myhunter-container{
        padding: 24px 0;
    }
}

@media (max-width: 600px) {
    .filtro-buttons {
        flex-direction: column;
    }
}