/*********************************
4. Home
*********************************/

.home {
	width: 100%;
	height: 100px;
	background: transparent;
}

.home_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.home_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #cde4f1;
	background: linear-gradient(#616161, #FFFFFF);
	opacity: 0.3;
}

.home_content {
	width: 100%;
	height: 100%;
}

.home_title {
	font-size: 24px;
}

/*********************************
5. Shop
*********************************/

.shop {
	background: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 139px;
}

.shop_content {
	width: 100%;
}

.shop_bar {
	border-bottom: solid 1px #dadada;
	padding-bottom: 14px;
	z-index: 6;
}

.shop_brand_count {
	font-size: 14px;
	font-weight: 500;
	float: left;
}

.shop_brand_count span {
	color: #0e8ce4;
}

/*********************************
5.1 Shop brands
*********************************/

.brand_grid {}

.brand_grid_border {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 3px;
	height: 100%;
	background: #FFFFFF;
	z-index: 1;
}

.brand_item {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #FFFFFF;
	cursor: pointer;
	padding-top: 40px;
	padding-bottom: 24px;
	text-align: center;
}

.brand_border {
	display: block;
	position: absolute;
	top: 52px;
	right: 1px;
	width: 1px;
	height: calc(100% - 71px);
	background: #e5e5e5;
}

.brand_image {
	width: 100%;
	height: 275px;
	overflow: hidden
}

.brand_image a {
	display: block;
	width: 100%;
	height: 100%;
}

.brand_image img {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.brand_content {
	width: 100%;
}

.brand_price {
	font-size: 16px;
	font-weight: 500;
	margin-top: 25px;
}

.brand_item.discount {
	color: #df3b3b;
}

.brand_price span {
	position: relative;
	font-size: 12px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
	margin-left: 10px;
}

.brand_name {
	margin-top: 4px;
	overflow: hidden;
}

.brand_name div {
	width: 100%;

}

.brand_name div a {
	font-size: 16px;
	font-weight: bolder;
	font-weight: 400;
	color: #000000;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* number of lines to show */
	-webkit-box-orient: vertical;
}

.brand_name div a:hover {
	color: #0e8ce4;
}
