I am currently working with Bootstrap 4.3.1 and utilizing flex for my page layout.
<div class='row d-flex align-items-center'>
<div class='col-lg-12'>
<div class="form-group row">
<div class="col-lg-2">
<label class='col-form-label font-weight-bold display-6' for="inputDeploymentLocation">Deployment Location</label>
</div>
<div class="col-lg-10">
<select class="custom-select custom-select-lg mr-lg-2" id="inputDeploymentLocation" name='inputDeploymentLocation'>
</select>
</div>
</div>
</div>
</div>
https://i.sstatic.net/urkZx.png
I currently have the select element top-aligned horizontally. What is the best way to horizontally align the select element in the middle of the column?