/*** TOP ***/
.top, .t-0 {
	top: 0;
}

/*** TOP ***/
.left, .l-0, .start, .s-0 {
	left: 0;
}

/*** BACKGROUND COLOR ***/
.bg-white, .background-white {
	background-color: #fff;
}

/*** POSITION ***/
.position-fixed {
	position: fixed;
}
.position-absolute {
	position: absolute;
}

/*** WIDTH ***/
.w-100 {
	width: 100%;
}
.w-300px {
	width: 300px;
}

/*** HEIGHT ***/
.h-100 {
	height: 100%;
}

/*** DISPLAY ***/
.d-flex {
	display: flex;
}

/*** JUSTIFY CONTENT ***/
.justify-content-space-between {
	justify-content: space-between;
}

/*** ALIGN ITEMS ***/
.align-items-center {
	align-items: center;
}

/*** TEXT ALIGN ***/
.text-center {
	text-align: center;
}