.btn-filtro {
    width: 100%;
    padding: 11px 45px 11px 20px;
    justify-content: space-between;
    font-size: 14px;
    background: transparent url(../img/seta-azul.svg) calc( 100% - 20px ) center no-repeat;
    color: var(--azul);
    border: 1px solid var(--azul);
}
.btn-seta:hover {
    background-image: url( ../img/seta-azul.svg ) !important;
    background-position: calc( 100% - 20px ) center !important;
}
.btn-filtro * {pointer-events: none;}

.bg-azul .btn-filtro,
.bg-roxo .btn-filtro {
    color: var(--branco);
    border-color: var(--branco);
}

form.wpcf7-form .btn-filtro {
	border: 1px solid #02466366 !important;
    background-color: var(--branco) !important;
    margin-top: 8px;
    margin-bottom: 24px;
    padding: 0 0;
	box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
    text-transform: none;
}
form.wpcf7-form .btn-filtro:hover,
form.wpcf7-form .btn-filtro:hover span {
    background-color: var(--branco) !important;
    color: var(--cinzas-cinza-70) !important;
}
form.wpcf7-form .btn-filtro span {
    position: relative;
    display: block;
    width: 100%;
    padding: 1.15rem 1.5rem;
    padding-right: 60px;
    text-align: left;
    border-radius: 100px;
    background-color: var(--branco);
}
form.wpcf7-form .btn-filtro span:after {
    content: '';
    display: block;
    background-image: url( ../img/seta-circulo-azul.svg );
    background-repeat: no-repeat;
    background-size: 100%;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: 0.2s transform;
}
form.wpcf7-form .btn-filtro.show span:after {
    transform: translateY(-50%) rotate(180deg);
}
form.wpcf7-form .dropdown-content {
    margin-top: -20px;
	box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
	border: 1px solid #02466366;
    border-radius: var(--radius-g);
}
@media (max-width: 767px) {
    form.wpcf7-form .btn-filtro span {
		font-size: var(--font-m);
		padding: 13px 24px;
        background-size: 24px;
	}
    form.wpcf7-form .btn-filtro:hover span {
        background-size: 24px;
	}
}



.btn-seta {
    background-image: url( ../img/seta-branca.svg );
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: calc( 100% - 20px ) center;
    padding-right: 60px;
}
.btn-seta-preta {
    background-image: url( ../img/seta-preta.svg );
}

#filtroInput {
    box-sizing: border-box;
    margin: 0 0;
    padding: 14px 30px;
    border: none;
    font-size: 16px;
    background-color: var(--branco);
    transition: 0.2s outline;
    border-radius: 0;
    box-shadow: 0px -2px 0px rgba(0, 0, 0, 0.1) inset;
    width: calc(100% + 20px);
    margin-left: -10px;
    padding-left: 30px;
    padding-right: 30px;
}


/* #filtroInput::placeholder {color: var(--azul-claro);} */

#filtroInput:focus {
    /* box-shadow: none; */
    /* outline: 3px solid var(--azul); */
}

.dropdown {
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 2;
}
.dropdown:focus-within {
    z-index: 3;
}

.dropdown button {width: 100%;}

.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    min-width: 230px;
    height: 340px;
    overflow: hidden;
    background-color: var(--branco);
    border: 1px solid var(--azul);
    border-radius: var(--radius);
    z-index: 1;
}

.dropdown-content span {
    display: block;
    padding: 12px 32px;
    color: var(--texto);
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
}
.dropdown-content span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc( 100% - 64px );
    height: 1px;
    background-color: var(--cinzas-cinza-30);
}

.dropdown-content span:hover,
.dropdown-content span.selecionado {
    background-color: var(--primarias-principal-00);
}

.itens_wrapper {
    max-height: 261px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.itens_wrapper::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
.itens_wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.itens_wrapper::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.show {display: block;}
