/*animate*/
@keyframes loopScale {
	0% { transform: scale(1,1) }
	40% { transform: scale(1,1) }
	60% { transform: scale(1.2,1.2) }
	100% { transform: scale(1,1) }
}
.loopScale {
	animation-name: loopScale;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}
/*html*/
html {
	background: white;
	font-family: Arial, Helvetica, sans-serif;
}
::-webkit-scrollbar {
    display: none;
}
body {
	padding-top: 80px;
}
@media(min-width: 768px) {
	body {
		padding-top: 100px;
	}
}
/*layerLoading, layerZoom*/
.layerLoading, .layerZoom {
	background: rgb(40,40,40);
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	z-index: 40;
	transition: opacity 1s;
}
.titleLoading {
	color: white;
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%,-50%);
	font-size: 18px;
	text-align: center;
}
.layerZoom {
	opacity: 0;
	pointer-events: none;
}
.imgZoom {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
}
.btnCloseLayerZoom {
	position: absolute;
	right: 18px; top: 18px;
	width: 32px;
	transition: transform 0.5s;
	cursor: pointer;
}
.btnCloseLayerZoom:active {
	transform: scale(1.5);
}
/*header*/
header {
	background: white;
	position: fixed;
	left: 0; top: 0;
	padding: 10px 5%;
	width: 100%;
	box-shadow: 0 0 5px rgb(80,80,80);
	overflow: hidden;
	font-size: 0;
	z-index: 10;
}
@media(min-width: 414px) {
	header {
		padding: 10px 4%;
	}
}
@media(min-width: 768px) {
	header {
		padding: 10px 3%;
	}
}
/*brand*/
.brand {
	float: left;
	margin-bottom: 10px;
}
.logo {
	display: inline-block;
	height: 50px;
}
.coDescribe {
	/*color: rgb(240,120,0);*/
	color: rgb(80,80,80);
	display: inline-block;
	margin-left: 10px;
	vertical-align: bottom;
}
.company {
	font-size: 18px;
	font-weight: 700;
}
.slogan {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1px;
}
@media(min-width: 768px) {
	.brand {
		margin-bottom: 20px;
	}
	.logo {
		height: 60px;
	}
	.company {
		margin-bottom: 3px;
		font-size: 20px;
	}
	.slogan {
		font-size: 10px;
	}
}
/*nav*/
nav {
	display: none;
	float: right;
	margin-top: 30px;
}
nav a {
	color: rgb(80,80,80);
	display: inline-block;
	font-size: 20px;
	font-weight: 400;
	margin-left: 20px;
}
nav a.selected {
	color: rgb(240,120,0);
}
.btnOpenSideMenu {
	float: right;
	height: 20px;
	margin-top: 20px;
	transition: transform 0.5s;
	cursor: pointer;
}
.btnOpenSideMenu:active {
	transform: scale(1.5);
}
@media(min-width: 768px) {
	.btnOpenSideMenu {
		margin-top: 30px;
	}
}
/*sideMenu*/
.layerCloseSideMenu {
	background: rgba(0,0,0,0.5);
	position: fixed;
	right: 0; top: 0;
	width: 100%;
	height: 100%;
	z-index: 30;
	transition: all 0.5s;
	opacity: 0;
	pointer-events: none;
}
.sideMenu {
	background: rgba(0,0,0,0.8);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	position: fixed;
	right: 0; top: 0;
	width: 300px;
	height: 100%;
	z-index: 30;
	transform: translateX(100%);
	transition: all 0.5s;
	opacity: 0;
}
.sideMenu a {
	color: white;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
}
.sideMenu a span {
	display: inline-block;
	width: 40px;
	font-size: 20px;
	text-align: center;
}
.headerSideMenu {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	height: 80px;
}
.btnSignOut {
	flex: 0 0 auto;
}
.stretch {
	flex: 1 1 0;
}
.btnCloseSideMenu {
	flex: 0 0 auto;
	width: 32px;
	margin-right: 20px;
	transition: transform 0.5s;
	cursor: pointer;
}
.btnCloseSideMenu:active {
	transform: scale(1.5);
}
.bodySideMenu {
	flex: 1 1 0;
	padding-bottom: 60px;
	overflow: auto;
}
.bodySideMenu a {
	display: block;
	line-height: 60px;
	border-bottom: 1px solid rgb(200,200,200);
}
/*banner*/
.banner {
	position: relative;
}
.banner img {
	display: block;
	width: 100%;
}
.announcement {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 0 10px black;
}
@media(min-width: 640px) {
	.announcement {
		font-size: 20px;
	}
}
@media(min-width: 768px) {
	.announcement {
		font-size: 24px;
	}
}
@media(min-width: 960px) {
	.announcement {
		font-size: 32px;
	}
}
/*boxControl*/
.boxControl {
	background: white;
	color: rgb(80,80,80);
	line-height: 20px;
	overflow: hidden;
	padding: 10px 5%;
}
.category {
	float: left;
	font-size: 18px;
	font-weight: 700;
	width: 110px;
	border-left: 1px solid rgb(80,80,80);
	border-right: 1px solid rgb(80,80,80);
	margin-top: 4px;
}
.labelProduct {
	display: none;
}
.pageControl {
	float: right;
	font-size: 18px;
	font-weight: 400;
}
#pageSelectAbove,#pageSelectBelow {
	font-size: 16px;
	width: 60px;
	height: 28px;
	padding-left: 3px;
}
.btnPagePrev {
	margin-right: 10px;
}
.btnPageNext {
	margin-left: 10px;
}
.btnPageDisable {
	color: rgb(200,200,200);
}
@media(min-width: 414px) {
	.boxControl {
		padding: 10px 4%;
	}
	.category {
		width: auto;
		border: none;
	}
	.labelProduct {
		display: inline;
	}
	.btnPagePrev {
		margin-right: 20px;
	}
	.btnPageNext {
		margin-left: 20px;
	}
	
}
@media(min-width: 768px) {
	.boxControl {
		padding: 20px 3%;
	}
	.category, .pageControl {
		font-size: 20px;
	}
	#pageSelectAbove,#pageSelectBelow  {
		font-size: 18px;
	}
}
/*gallery*/
.gallery {
	background: rgb(180,180,180);
	padding: 10px 0;
	font-size: 0;
	text-align: center;
}
.gallery .item {
	background: white;
	display: inline-block;
	padding: 15px;
	width: 90%;
	margin: 10px 5%;
	border-radius: 8px;
	vertical-align: top;
}
.codeProduct {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 400;
}
.imgProduct {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 100%;
	height: 160px;
	/*aspect-ratio: 3/2;*/
	transition: all 0.2s;
	cursor: pointer;
}
.imgProduct:active {
	transform: scale(0.96);
}
.imgDetail {
	height: 60px;
	margin: 10px 0;
	font-size: 14px;
	white-space: pre-wrap;
	word-wrap: break-word;
}
.boxProductRequest input {
	margin-right: 10px;
	vertical-align: middle;
}
.boxProductRequest label {
	color: rgb(0,180,200);
	vertical-align: middle;
	font-size: 14px;
	cursor: pointer;
}
@media(min-width: 414px) {
	.gallery .item {
		width: 44%;
		margin: 10px 2%;
	}
}
@media(min-width: 768px) {
	.gallery {
		padding: 20px 0;
	}
	.gallery .item {
		width: 22%;
		margin: 10px 1%;
	}
	.gallery .item {
		width: 26%;
		margin: 10px 2%;
	}
}
/*footer*/
footer {
	background: rgb(80,80,80);
	color: white;
	font-size: 14px;
	padding: 40px 5% 80px;
}
.contact h4 {
	font-weight: 700;
	text-align: left;
	margin-bottom: 5px;
}
.contact p {
	font-weight: 400;
	line-height: 20px;
	margin: 10px 0 30px;
}
.contact a {
	display: block;
	font-weight: 400;
	margin: 10px 0;
}
@media(min-width: 414px) {
	footer {
		padding: 40px 4% 80px;
	}
}
@media(min-width: 768px) {
	footer {
		padding: 40px 3% 80px;
	}
}
/*btnSignIn, btnChat*/
.btnSignIn, .btnChat {
	background: rgb(240,140,0);
	color: white;
	display: flex; align-items: center;
	justify-content: center;
	flex-direction: column;
	position: fixed;
	right: 15px; bottom: 15px;
	width: 70px;
	height: 70px;
	border: 2px solid white;
	border-radius: 40px;
	box-shadow: 0 0 5px rgb(160,160,160);
	font-size: 12px;
	z-index: 20;
	transition: 0.2s;
	cursor: pointer;
	-webkit-user-drag: none;
}
.btnChat {
	background: rgb(0,180,200);
}
.btnSignIn:active, .btnChat:active {
	transform: scale(1.12);
}
.btnSignIn img, .btnChat img {
	width: 28px;
	margin-bottom: 2px;
}
/*boxSelection*/
.boxSelection {
	background: rgba(255,255,255);
	color: rgb(0,180,200);
	position: fixed;
	left: 0; bottom: 0;
	line-height: 60px;
	padding: 0 15px;
	box-shadow: 0 0 8px rgb(80,80,80);
	border-radius: 0 5px 0 0;
	font-size: 14px;
	z-index: 20;
	transform: translateY(100%);
	transition: all 1s;
}
.selectionNum {
	display: inline-block;
	width: 25px;
}
.btnCancelSelection {
	background: rgb(255,69,0);
	color: white;
	height: 30px;
	border: 1px solid white;
	border-radius: 5px;
	box-shadow: 0 0 5px rgb(160,160,160);
	font-size: 14px;
}