/* imports */
@import url('import/color.css');
@import url('import/reset.css');
@import url('import/alert.css');
@import url('import/header.css');
@import url('import/product.css');
@import url('import/detail.css');
@import url('import/cart.css');
@import url('import/form.css');
/* screen */
@import url('import/mobile.css');
@import url('import/tablet.css');

/* categories */
div.categories-box {
	width: 100%;
	height: auto;
	float: left;
	background-color: #f9f9f9;
	color: #222;
	margin-bottom: 10px;
	padding: 10px;
	box-sizing: border-box;
	box-shadow: 0 0 2px 1px #eee
}

	div.categories-box a {
		color: #222;
	}

	div.categories-sub-box {
		width: 100%;
		float: left;
	}

		div.categories-sub-box a:after {
			content: ", ";
		}

		div.categories-sub-box a:last-child:after {
			content: '';
		}

/* title */
div.title {
	width: 100%;
	min-height: 30px;
	line-height: 30px;
	float: left;
	margin: 5px 0;
	padding: 0 10px;
	box-sizing: border-box;
	border-bottom: dotted 1px #ddd;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

/* contact */
div.contact-map {
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 20px;
}

	div.contact-map iframe {
		width: 100%;
		height: 250px;
	}

div.contact-box {
	width: 100%;
	height: auto;
	border: solid 1px #eee;
	border-left: solid 3px var(--main-color);
	box-sizing: border-box;
	margin-bottom: 20px;
	padding: 10px
}	

	div.contact-box span.icon {
		width: 30px;
		height: 30px;
		line-height: 30px;
		float: left;
	}

	div.contact-box span.info {
		width: calc(100% - 30px);
		height: auto;
		line-height: 30px;
		float: left;
	}

/* category */
.sub-category-menu a {
	width: 100%;
	height: 24;
	line-height: 24px;
	float: left;
	text-indent: 10px;
	color: #333;
}
	.sub-category-menu a:hover {
		text-decoration: underline;
	}

	.sub-category-menu a.active {
		font-weight: bold;
		color: #3b5998;
	}

/* footer */
div.footer {
	width: 100%;
	height: auto;
	float: left;
	background-color: var(--footer-bg);
	color: var(--footer-color);
}

	div.footer-box {
		padding: 10px 0;
		float: left;
		box-sizing: border-box;
	}

		div.footer-title {
			font-size: 24px;
			font-weight: bold;
		}

		div.footer-box a {
			width: 50%;
			float: left;
			text-decoration: none;
			color: var(--footer-color);
			font-size: 13px;
		}

			div.footer-box a:hover {
				text-decoration: underline;
			}


		div.footer-scl {
			float: left;
		}

			div.footer-scl a {
				width: auto !important;
				font-size: 14px;
				padding-right: 10px;
			}


/* pagination */
.pagination {
	justify-content: center;
}

span.order-note-con {
	font-size: 12px;
}

/* 404 */
div.not-found {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #f5f5f5;
}

div._404 {
	color: #ff9158;
	font-size: 186px;
	text-align: center;
	font-weight: 200
}

div._404_below {
	font-size: 33px;
	text-align: center;
}

div._404_small {
	font-size: 16px;
	text-align: center;
}

	div._404_small a {
		color: #ff9158;
		text-decoration: none;
		border-bottom: dashed 1px;
	}