.flex {
	display: flex;
}
.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex-column {
	flex-direction: column;
}
.flex-wrap {
	flex-wrap: wrap;
}
.flex-shrink {
	flex-shrink: 0;
}
.justify-between {
	justify-content: space-between;
}
.justify-center {
	justify-content: center;
}
.flex-1 {
	flex: 1;
}
.flex-2 {
	flex: 2;
}
.flex-3 {
	flex: 3;
}
.flex-4 {
	flex: 4;
}
.flex-5 {
	flex: 5;
}
.align-center {
	align-items: center;
}
.n-s {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.tc {
	text-align: center;
}
.mt-1 {
	margin-top: 10px;
}
.mt-2 {
	margin-top: 20px;
}
.mb-4 {
	margin-bottom: 40px;
}
.line-1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}



.text-title {
	color: #23252a;
}
.text-main {
	color: #595959;
}
.text-muted {
	color: #999999;
}