
/*For when we need 5 columns in bootstrap in the 12 column grid layout*/
.col-xs-5-cols,
.col-sm-5-cols,
.col-md-5-cols,
.col-lg-5-cols {
    position: relative !important;
    min-height: 1px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.col-xs-5-cols {
    width: 20% !important;
    float: left !important;
}

@media (min-width: 768px) {
    .col-sm-5-cols {
        width: 20% !important;
        float: left !important;
    }
}

@media (min-width: 992px) {
    .col-md-5-cols {
        width: 20% !important;
        float: left !important;
    }
}

@media (min-width: 1200px) {
    .col-lg-5-cols {
        width: 20% !important;
        float: left !important;
    }
}
