.select_ui {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.select_ui::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.select_ui select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid var(--clrInputBorder, #ccc);
    border-radius: 3px;
    background-color: #fff;
    font-size: 1em;
    cursor: pointer;
}

.mobility select{
    margin-bottom: 10px;
}
.width-20 {
    width: 20%;
    height: auto;
    padding: 0.5em 0.75em;
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--clrInputBorder, #ccc);
    border-radius: 0;
    -webkit-appearance: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}


@media screen and (max-width: 768px){
	#contact_qa label {
	    width: 100%;
	    margin: 0;
	}
	.width-20 {
	    width: 40%;
	    padding: 15px;
	}
}