.layout {
	display: flex;
}
.align-center {
	align-items: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-center {
	justify-content: center;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.col-5 {
    width: 50%;
}
.col-6 {
    width: 60%;
}
.col-10 {
    width: 100%;
}
.white {
    color: white !important;
}
