.btn, input, select
{
	outline: none !important;
}
.form-control {
	background: none;
	border: none;
	border-bottom: 1px solid #e2e2e2;
	border-radius: 0;
	box-shadow: none;
	padding-left: 0;
}
.form-control:focus {
	box-shadow: none;
}
.btn {
	position: relative;
	border: none;
	border-radius: 3px;
	padding: 12px 30px;
	transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);	
	box-shadow: none;
}
.btn:hover {
	box-shadow: 
		0 14px 26px -12px rgba(153, 153, 153, 0.42),
		0 4px 23px 0px rgba(0, 0, 0, 0.12),
		0 8px 10px -5px rgba(153, 153, 153, 0.2);
}
.btn-primary
{
	box-shadow: none;
	background: #7db1ef;
}
.bold {
	font-weight: bold;
}
.relative {
	position: relative;
}
.inline-block {
	display: inline-block;
}
.text-overflow,
.text-overflow-2-lines,
.text-overflow-3-lines,
.text-overflow-4-lines,
.text-overflow-5-lines,
.text-overflow-6-lines
{
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
}
.text-overflow { line-clamp: 1; -webkit-line-clamp: 1; }
.text-overflow-2-lines { line-clamp: 2; -webkit-line-clamp: 2; }
.text-overflow-3-lines { line-clamp: 3; -webkit-line-clamp: 3; }
.text-overflow-4-lines { line-clamp: 4; -webkit-line-clamp: 4; }
.text-overflow-5-lines { line-clamp: 5; -webkit-line-clamp: 5; }
.text-overflow-6-lines { line-clamp: 6; -webkit-line-clamp: 6; }
.tabs {
	position: relative;
}
.tabs-left {
	float: left;
}
.tabs-right {
	float: right;
}
.tabs {

}
	.tabs > .tab {
		display: block;
		position: relative;
		float: left;
		padding: 16px 0 18px 0;
		margin: 0 15px;
		text-decoration: none;
		color: #999;
		transition: all .2s;
	}
	.tabs > .tab:after {
		content: "";
		display: block;
		position: absolute;
		height: 2px;
		bottom: 0;
		width: 100%;
		background: #000;
		transition: all .3s;
		transform: scale(0);
	}
	.tabs > .tab:hover {
		color: #444;
	}
	.tabs > .tab:active
	{
		top: 1px;
	}
	.tabs > .tab:hover:after {
		transform: scale(1);
	}
.spinner {
	display: inline-block;
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #d2d2d2;
	overflow: hidden;
	-webkit-animation: spin infinite linear;
	-o-animation: spin infinite linear;
	animation: spin infinite linear;
}
.spinner:before,
.spinner:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	background: #999;
	padding: 5px;
	border-radius: 50%;
	overflow: hidden;
}
.spinner:after {
	top: initial;
	bottom: 0;
}
@keyframes spin {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes spin {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
body {
	font: 14px "Roboto", sans-serif;
}
#header {
}
	#header .logo {
		display: block;
		position: relative;
		z-index: 1;
		float: left;
		width: 210px;
		margin: 15px 15px 0 0;
		transition: all .3s;
	}
	#header .logo img {
		max-width: 100%;
	}
	#header .desc {
		display: block;
		float: left;
		width: 170px;
		margin: 15px 20px 0 0;
		padding: 7px 15px;
	}
	#header .tabs
	{
		margin-top: 15px;
	}
		#header .tabs .btn {
			margin: 0px 0 7px 15px;
		}
#page {
	position: relative;
}
	#page .section {
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		background-color: #f2f2f2;
		min-height: 400px;
		padding: 30px 0;
	}

.product-list .item {
	display: block;
	cursor: pointer;
	text-decoration: none;
	border: none;
	color: #222;
	background: #fff;
	transition: all .3s;
	margin-bottom: 30px;
}
.product-list .item:hover {
	box-shadow: 5px 5px 1px 1px rgba(204, 204, 204, 0.55);
}
	.product-list .item-body {
		position: relative;
	}
	.product-list .item-footer {
		position: relative;
		padding: 10px 15px;
	}
	.product-list .img {
		display: block;
		position: relative;
		height: 160px;
		background: transparent no-repeat top center;
		background-size: cover;
		border: none;
	}
	.product-list .img:after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,.4);
		transition: all .3s;
	}
	.product-list .item:hover .img:after {
		background: rgba(0,0,0,.1);
	}
	.product-list .name {
		position: absolute;
		top: -15px;
		left: 15px;
		padding: 5px 10px;
		background: #ffe734;
	}
	.product-list .desc {
		margin-top: 10px;
		height: 27px;
	}
