.d-flex {
    display: flex;
}


/* Justify content */

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}


/* Align items */

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-stretch {
    align-items: stretch;
}


/* Wrap */

.flex-wrap {
    flex-wrap: wrap;
}

/* Direction */

.flex-column {
    flex-direction: column;
}

tbody > tr.noPdf {
	background-color: rgb(255, 254, 223) !important;
}