.q-row {
	display: flex;
	flex-wrap: wrap;
}

.q-row > * {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.q-col-10 {
	flex: 0 0 auto;
	width: 83.3333%;
}

.q-col-6 {
	flex: 0 0 auto;
	width: 50%;
}

@media (min-width: 576px) {
	.q-col-sm-2 {
		flex: 0 0 auto;
		width: 12.6666%;
	}
}

/* vertical alignment */
.q-align-items-start {
	align-items: flex-start !important;
}
.q-align-items-center {
	align-items: center !important;
}
.q-align-items-end {
	align-items: flex-end !important;
}

/* horizontal alignment */
.q-justify-content-start {
	justify-content: flex-start !important;
}
.q-justify-content-center {
	justify-content: center !important;
}
.q-justify-content-end {
	justify-content: flex-end !important;
}
/* AND SEVERAL MORE */

.q-order-first { order: -1 !important; }
.q-order-1 { order: 1 !important; }
.q-order-2 { order: 2 !important; }
.q-order-3 { order: 3 !important; }
.q-order-4 { order: 4 !important; }
.q-order-5 { order: 5 !important; }
.q-order-last { order: 6 !important; }

@media (min-width: 576px) {
	.q-order-sm-first { order: -1 !important; }
	.q-order-sm-1 { order: 1 !important; }
	.q-order-sm-2 { order: 2 !important; }
	.q-order-sm-3 { order: 3 !important; }
	.q-order-sm-4 { order: 4 !important; }
	.q-order-sm-5 { order: 5 !important; }
	.q-order-sm-last { order: 6 !important; }
}
