I have the following code:
<div class="region-table-container">
    <div class="region-table-value"</div>
</div>
With the following CSS:
.region-table-container {
        margin: 0 auto;
        width:400px;
    }
    .region-table-value {
        width: 32%;
        color: #7f8585;
        font-size: $font-size-x-small;
        font-weight: 700;
        line-height: 26px;
        text-transform: uppercase;
        display: inline-block;
        text-align: left;
    }
and the result is that the last row (NY / FL) is not aligned to the left as the rest of the names (see image).

How to fix this please?
Thanks.
