* {
	margin: 0;
	padding: 0;
}

input, textarea, select, a:focus {
	outline: none;
}

.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;
}

.pcTitle {
	width: 100%;
	padding: 67px 0 10px 0;
	margin-bottom: 50px;
	border-bottom: 1px solid #6d6d6d;
	color: #fff;
	font-weight: bold;
	font-size: 36px;
}

/*.pcTitle span {*/
/*	position: relative;*/
/*	display: inline-block;*/
/*}*/

/*.pcTitle span::after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	left: 0;*/
/*	bottom: -10px;*/
/*	width: 100%;*/
/*	height: 1px;*/
/*	background: #FFBC00;*/
/*}*/

.textEllipsis {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}