* {
	margin: 0;
	padding: 0;
}
input, textarea, select, a:focus {
	outline: none;
}
a{
	font-size: 0px;
}
.fx-row {
	display: flex;
	flex-direction: row;
}

.fx-column {
	display: flex;
	flex-direction: column;
}

.fx-row-center {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.alignItems-center {
	align-items: center;
}

.alignItems-flexStart {
	align-items: flex-start;
}

.alignItems-flexEnd {
	align-items: flex-end;
}

.justifyContent-spaceBetween {
	justify-content: space-between;
}

.justifyContent-center {
	justify-content: center;
}

.justifyContent-spaceAround {
	justify-content: space-around;
}

.justifyContent-flexStart {
	justify-content: flex-start;
}

.justifyContent-flexEnd {
	justify-content: flex-end;
}

.fx-wrap {
	flex-wrap: wrap;
}
.textEllipsis {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}




