/* Helper classes */
.margin-bottom-small {
	margin-bottom: 5px;
}

.center-block {
	float: none;
	margin: auto;
}

.grid-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}



@media (max-width: 767px) {
    .grid-flex {
        flex-direction: column;
    }
}


.align-baseline {
    align-items: baseline;
}

.justify-center {
    justify-content: center;
}



/* Responsive table */

.table-container {
	overflow-x: auto;
	width: 100%;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none;
    }
}

.margin-zero {
    margin: 0;
}

.full-width {
    width: 100%;
}

.color-white {
    color: white;
}
