I'm attempting to align the drop-down boxes and the input box on the same line, but for some reason the input box keeps floating to the bottom. Check out the image showing the floating boxes
<div style="margin-left: 2%; font-size:10";>
<h1 style="font-size:15px;color:#343538">Geographical Constraint</h1>
<div class=".col1">
<select class="selectpicker" >
<option>USA</option>
<option>CA</option>
</select>
<select class="selectpicker">
<option>=</option>
<option>></option>
<option><</option>
<option>>=</option>
<option><=</option>
</select>
</div>
<div class="col-xs-2">
<input type="value" class="form-control" id="val">
</div>
</div>