@charset "utf-8";

/*==================================*/
/* Global
/* =================================*/
body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #333;
	background-color: #f2f2f2;
}
a {
	color: #ffa500;
}
a:hover {
	color: #ffa500;
	text-decoration: none;
}
img {
	max-width: 100%;
}
.noimg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.alert {
	border-radius: 0;
    margin-bottom: 30px;
}

/*==================================*/
/* Placeholder
/* =================================*/
::-webkit-input-placeholder {
  color: #999999;
  font-style: italic !important;
}
:-ms-input-placeholder {
  color: #999999;
  font-style: italic !important;
}
::-ms-input-placeholder {
  color: #999999;
  font-style: italic !important;
}
::placeholder {
  color: #999999;
  font-style: italic !important;
}

/*==================================*/
/* Button
/* =================================*/
.button {
	outline: none;
	color: #fff;
	background: #ffa500;
	font-size: 13px;
	font-weight: 500;
}
.button:hover,
.button:focus,
.button:active:focus,
.button:active {
	color: #fff;
	background: #ffa500;
}
.button-white {
	color: #333;
	background: #fff;
}
.button-white:hover,
.button-white:focus,
.button-white:active:focus,
.button-white:active {
	color: #333;
	background: #eee;
}
.btn-link {
	color: #333;
	font-size: 13px;
	font-weight: 500;
}
.btn-link:hover {
	color: #ffa500;
}

/*==================================*/
/* Paging
/* =================================*/
.pagination {
	margin-bottom: 0;
}
.pagination .page-link {
	color: #808080;
	margin: 0 5px;
}
.pagination .active .page-link,
.pagination .page-link:hover {
	color: #fff;
	background-color: #ffa500;
	border-color: #ffa500;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
	border-radius: 0;
}
.pagination .page-prev,
.pagination .page-next {
	background: #ccc;
	color: #fff;
}
.paging {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 15px;
}
.paging nav {
	display: inline-block;
}

/*==================================*/
/* Common
/* =================================*/
.main {
	padding: 20px 0;
}
.main-name {
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0 0 20px;
}
.main-more {
	font-size: .9rem;
	font-weight: 500;
	float: right;
	text-transform: none;
	margin-top: 5px;
}
.main.pdt0 {
	padding-top: 0;
}
.main.pdb0 {
	padding-bottom: 0;
}
.heading {
	margin: 0 0 20px;
	font-size: 1.6rem;
	font-weight: 500;
	color: #333;
}
.heading-sub {
	font-weight: normal;
	font-size: 1.1rem;
	color: #999;
}

/*==================================*/
/* Owl carousel
/* =================================*/
.owl-carousel {
    position: relative;
}
.owl-next,
.owl-prev {
    position: absolute;
    top: 50%;
	z-index: 1000;
    transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	font-size: 2rem !important;
	color: #ffa500 !important;
	outline: none !important;
}
.owl-next {
    right: -50px;
    display: flex;
}
.owl-prev{
    left: -50px;
    display: flex;
}
.owl-nav i {
	border: 1px solid rgba(255, 165, 0, .4);
	border-radius: 50%;
	font-size: 1rem;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
.owl-dots {
	position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    z-index: 100;
}
.owl-dot {
	margin: 0 5px;
	outline: none;
}
.owl-dot span {
	width: 7px;
	height: 7px;
	background: #fff;
	display: block;
	border-radius: 50%;
}
.owl-dot.active span {
	width: 10px;
	height: 10px;
	background: #ffa500;
}

/*==================================*/
/* Checkboxs
/* =================================*/
.checkboxs {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 7px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checkboxs label {
	cursor: pointer;
}
.checkboxs input {
	position: absolute;
	opacity: 0;
	height: 0;
	width: 0;
}
.checkboxs .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 21px;
	width: 21px;
	background-color: #eee;
}
.checkboxs input:checked ~ .checkmark {
	background-color: #ffa500;
}
.checkboxs .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.checkboxs input:checked ~ .checkmark:after {
  display: block;
}
.checkboxs .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*==================================*/
/* Radios
/* =================================*/
.radios {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	margin-top: 7px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radios label {
	cursor: pointer;
}
.radios input {
	position: absolute;
	opacity: 0;
	height: 0;
	width: 0;
}
.radios .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border-radius: 50%;
}
.radios input:checked ~ .checkmark {
	background-color: #ffa500;
}
.radios .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.radios input:checked ~ .checkmark:after {
  display: block;
}
.radios .checkmark:after {
	left: 5px;
	top: 5px;
	width: 5px;
	height: 5px;
	border: solid white 5px;
	border-radius: 50%;
}

/*==================================*/
/* Dropdown
/* =================================*/
.dropdown .dropdown-toggle {
	border: 1px solid #ddd;
	color: #999;
	font-size: .9rem;
	font-family: 'Roboto', sans-serif;
	position: relative;
	padding-right: 60px;
	border-radius: 0;
}
.dropdown .dropdown-menu {
	border-radius: 0;
}
.dropdown .dropdown-item:last-child {
	border-bottom: 0;
}
.dropdown .dropdown-toggle::after {
	display: none;
}
.dropdown .fa-caret-square-down {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 35px;
	border-left: 1px solid #ddd;
}
.dropdown .fa-caret-square-down:before {
	height: 30px;
	line-height: 35px;
}

/*==================================*/
/* Zoom
/* =================================*/
/*
.zoom-wrap {
	margin-top: 5px;
}
.zoom-img {
	display: inline-block;
	width: 19.46%;
}
.zoom-img img {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}
#zoomImg {
	border: 3px solid #89B61E;
}
*/

/*==================================*/
/* Accordion
/* =================================*/
/*
.accordion .card {
	border: 0;
	margin-bottom: 5px;
}
.accordion .card-header {
	background: #E7E7E7;
	font-weight: 700;
	color: #224710;
	border: 0;
	cursor: pointer;
}
.card-header:first-child,
.accordion .card:last-of-type,
.accordion .card:first-of-type,
.accordion .card:not(:first-of-type) .card-header:first-child {
	border-radius: 0;
}
*/

/*==================================*/
/* Aside
/* =================================*/
aside {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #f2f2f2;
}
aside:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.aside-title {
	color: #000;
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 20px;
}
.aside-brand,
.aside-price,
.aside-price2 {
	font-size: .8rem;
}
.aside-brand .total {
	color: #999;
	font-size: .7rem;
}
.aside-price2 div {
	margin-bottom: 10px;
}
.aside-price2 input {
	max-width: 100px;
	height: 30px;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
	padding: 5px;
}
.aside-price2 .btn {
	border: 1px solid #ffa500;
	font-size: .9rem;
	min-width: 100px;
	padding: 4px;
	color: #999;
}
.aside-price2 .btn:hover {
	background: #ffa500;
	color: #fff;
}
.aside-toggle {
	max-height: 300px;
	overflow: hidden;
}
.aside-toggle.show {
	max-height: none;
	overflow: auto;
}
.aside-more {
	display: block;
	text-align: center;
	margin-top: 10px;
	font-size: .8rem;
	color: #333;
}
.aside-more a:hover {
	color: #ffa500;
}

/*==================================*/
/* Breadcrumbs
/* =================================*/
.breadcrumbs {
	background: #E6E6E6;
}
.breadcrumb {
	background: none;
	border-radius: 0;
	margin: 0;
	font-size: .8rem;
}
.breadcrumb a {
	color: #999;
}
.breadcrumb .active,
.breadcrumb a:hover {
	color: #333;
}
.breadcrumb-item+.breadcrumb-item::before {
	content: "»";
	color: #999;
}
.breadcrumb-wrap {
	overflow: auto;
}

/*==================================*/
/* Device Menu
/* =================================*/
.navbar-toggle {
	position: absolute;
    left: 0;
    top: 10px;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: none;
    outline: none !important;
    z-index: 10;
    display: none;
}
.navbar-toggle .icon-bar {
	background: #fff;
	display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
}
.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
}
#navdevice.active {
	background: #ffa500;
    border: 1px solid #ffa500;
}
#navdevice.active .icon-bar {
	background: #fff;
}
.navdevice {
	position: fixed;
	left: -100%;
	top: 0;
	height: 100%;
	width: 300px;
	background-color: #151515;
	overflow-y: scroll;
	z-index: 1000;
	box-shadow: 0px 10px 10px #111;
}
.navdevice .head {
	text-transform: uppercase;
	padding: 10px 10px 10px 20px;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	background-color: #ffa500;
}
.navdevice ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.navdevice a {
	display: block;
	padding: 7px 10px 7px 20px;
	color: #fff;
	border-top: 1px solid #222;
	position: relative;
}
.navdevice .active > a {
	text-decoration: none;
	background-color: #ffa500;
	color: #ffffff;
}
.navdevice ul ul {
	display: none;
	background: #404040;
}
.navdevice ul ul ul {
	background: #868686;
}
.navdevice ul ul a {
	padding-left: 20px;
}
.navdevice ul ul ul a {
	padding-left: 35px;
}
.navdevice ul .fas {
	margin-right: 5px;
}
.navdevice .badge {
	background: #ffa500;
	color: #fff;
	font-weight: 500;
}

/*==================================*/
/* Header
/* =================================*/
.header-special {
	background: #ffa500;
	color: #fff;
	font-size: .9rem;
	text-align: center;
	padding: 8px 0;
	font-weight: 500;
}
.header-top-link {
	background: #ffa500;
	color: #000;
	padding: 5px 0;
}
.header-top-link-info {
	float: right;
	text-align: right;
}
.header-top-link-data {
	text-align: left;
	padding: 20px 15px;
	width: 300px;
	top: 15px !important;
	box-shadow: 0 5px 11px 0 rgba(0,0,0,0.5);
	font-size: .8rem;
}
.header-top-link-data::before {
    position: absolute;
    top: -10px;
    right: 10%;
	content: "";
	width: 0px;
	height: 0px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
    margin-left: -5px;
}
.header-top-link-data h4 {
	font-size: .9rem;
	color: #ffa500;
	font-weight: 500;
	margin: 0 0 15px;
}
.header-top-link-data ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.header-top-link-data li {
	margin-bottom: 5px;
	padding-left: 15px;
	position: relative;
}
.header-top-link-data li:before {
	width: 8px;
	height: 8px;
	background: #ffa500;
	content: "";
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 6px;
}
.header-top-link a {
	color: #000;
}
.header-top-link .space {
	margin: 0 5px;
}
.header-top {
	background: #000;
	padding: 10px 0 20px;
	color: #fff;
}
.header-top a {
	color: #fff;
}
.header-top a:hover {
	color: #ffa500;
}
.header-search{
	padding-top: 5px;
}
.header-search .form-control {
	background: #f2f2f2;
	border-right: 0;
	font-size: 14px;
	border: 0;
	height: 40px;
}
.header-search .input-group-text {
	background: #ffa500;
	color: #fff;
	border: 0;
	outline: none;
}
.header-ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.header-li {
	position: relative;
	flex: 50%;
	padding-left: 5px;
	padding-right: 5px;
}
.header-li .account {
	position: relative;
	padding-left: 32px;
}
.header-li .cart {
	position: relative;
	padding-left: 30px;
	line-height: 32px;
}
.header-li .icon {
	font-size: 1rem;
	width: 30px;
	height: 30px;
	line-height: 30px;
	position: absolute;
	left: 0;
	top: 5px;
}
.header-li .fa-user {
	font-size: 1.7rem;
}
.header-li .cart .icon {
	top: 0;
	left: 5px;
	width: 25px;
}
.header-li:hover .header-sub {
	display: block;
}
.header-sub {
	display: none;
	position: absolute;
	top: 40px;
	right: 0;
	width: 160px;
	z-index: 10000;
}
.header-sub .w {
	position: relative;
	background: #fff;
	margin-top: 12px;
	border: 1px solid #ddd;
	border-radius: 2px;
}
.header-sub .w::before {
    position: absolute;
    top: -10px;
    left: 50%;
	content: "";
	width: 0px;
	height: 0px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
    margin-left: -5px;
}
.header-sub a {
	color: #333;
	display: block;
	padding: 7px 15px;
}
.header-sub a:hover {
	color: #333;
	background: #e6e6e6;
}
.header-total-cart {
	background: #ffa500;
	color: #000;
	padding: 2px 1px;
	font-style: normal;
	font-weight: 500;
	font-size: .9rem;
	border-radius: 3px;
	margin-left: 5px;
}
.header-border {
	border: 1px solid #ffa500;
	border-radius: 5px;
	padding: 3px;
}
.header-top-ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.header-top-li {
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}
.header-top-li-1 {
	flex: 20%;
}
.header-top-li-2 {
	flex: 50%;
	padding-top: 7px;
}
.header-top-li-3 {
	flex: 20%;
	padding-top: 10px;
}
.header-top-li-4,
.header-top-li-5 {
	display: none;
}

/*==================================*/
/* Main Menu
/* =================================*/
.header-nav {
	background: #000;
}
/*
.sticky {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1200;
}
*/
#menu {
	padding: 0;
}
.nav-link {
	color: #fff;
	padding: 7px 15px !important;
	font-size: 1rem;
	text-transform: uppercase;
}
.nav-item.active > .nav-link,
.nav-item:hover > .nav-link {
	color: #fff;
}
.nav-item .dropdown-menu {
	box-shadow: 0 5px 11px 0 rgba(0,0,0,0.2);
	margin-top: 0;
	padding: 1px 0 0 0;
	border-radius: 0;
}
.nav-item:hover .dropdown-menu {
	display: block;
}
.navbar-nav {
	display: table;
	width: 100%;
}
.nav-item {
	display: table-cell;
}
.navbar-nav .nav-item:first-child {
	width: 280px;
}
.menu-sub {
	display: table;
}
.menu-col {
	display: table-cell;
}
.dropdown-item {
	min-width: 200px;
	font-size: 14px;
    color: #414042;
	padding: 7px 15px;
	border-bottom: 1px solid #ddd;
	border-radius: 0 !important;
}
.dropdown-item:hover {
	color: #fff;
	background: #fac03a;
}
.menu-brand {
	z-index: 1100;
	margin-left: -350px;
}
.menu-brand .dropdown-item {
	border-right: 1px solid #ddd;
}
#menu .vn {
	margin-bottom: 3px;
	margin-left: 5px;
}

/*==================================*/
/* Categories
/* =================================*/
.categories {
	list-style: none;
	padding: 0;
	margin: 0;
}
.categories a {
	color: #000;
	font-size: .8rem;
}
.categories > li > a {
	padding: 5px 15px;
	display: block;
}
.categories > li.active > a,
.categories > li:hover > a {
	background: #ffa500;
	color: #000;
}
.categories > li.active > a > .fas,
.categories > li:hover > a > .fas {
	color: #fff;
}
.categories .fa-chevron-right {
	float: right;
	margin-top: 4px;
	color: #808080;
}
.categories > li.active .fa-chevron-right,
.categories > li:hover .fa-chevron-right {
	color: #000;
}
.categories .view-more {
	color: #999;
	padding-top: 6px;
	padding-bottom: 6px;
}
.categories-wrap {
	display: none;
}
.categories-wrap.active,
.banner-left .categories > li:hover .categories-wrap,
.catmenu.hover:hover .categories-menu-wrap .categories > li:hover .categories-wrap {
	display: block;
}
.categories-ul {
	background: #fff;
	position: absolute;
	left: 240px;
	top: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 0 5px #dedede;
	display: flex;
	flex-wrap: wrap;
	min-height: 350px;
}
.categories-li {
	padding: 15px;
	flex: 25%;
	border-right: 1px solid #e6e6e6;
}
.categories-li.end {
	border-right: 0;
}
.categories-item {
	margin-bottom: 20px;
}
.categories-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.categories-item .parent {
	font-weight: bold;
	font-size: .9rem;
}
.categories-item .fas {
	color: #ffa500;
}
.categories-item .badge {
	background: #ffa500;
	color: #fff;
}
.categories-item a:hover {
	color: #ffa500;
}
.categories-menu-wrap {
	position: absolute;
	z-index: 10;
	display: none;
}
.categories-menu-wrap.active,
.catmenu.hover:hover .categories-menu-wrap {
	display: block;
}
.catmenu.hover:hover .categories-menu-wrap,
.categories-menu-wrap.w100 {
	width: 100%;
}
.categories-menu-wrap .categories {
	width: 240px;
	background: #fff;
}
.categories-menu-wrap .categories-ul {
	box-shadow: 5px 2px 5px #dedede;
	border-left: 1px solid #f3f3f3;
}

/*==================================*/
/* Banner
/* =================================*/
.banner {
	position: relative;
}
.banner::after {
	content: "";
	clear: both;
	display: block;
}
.banner-item {
	float: left;
}
.banner-left {
	width: 240px;
	background: #fff;
}
.banner-middle {
	width: 710px;
}
.banner-left-2 {
	width: 950px;
}
.banner-right {
	width: 280px;
	margin-left: 10px;
}
.bg-theme-colored-transparent {
	background-color: rgba(106, 180, 62, 0.75) !important;
	padding-left: 30px;
	padding-right: 30px;
}
.banner-right .item:first-child {
	margin-bottom: 10px;
}

/*==================================*/
/* Hotlink
/* =================================*/
.hotlink-ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.hotlink-li {
	display: flex;
	flex: 20%;
	padding-left: 15px;
	padding-right: 15px;
}
.hotlink-li a {
	display: block;
	border-radius: 4px;
	position: relative;
	width: 100%;
	max-width: 242px;
	height: 120px;
	margin-bottom: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.hotlink-li a::before {
	clear: both;
	display: block;
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	left: 5px;
	z-index: 1;
	bottom: 5px;
	border: 1px solid #eee;
	border-radius: 4px;
}
.hotlink-li a::after {
	clear: both;
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, .3);
}
.hotlink-li a:hover::after {
	background-color: rgba(254, 165, 0, .7);
}
.hotlink-1 {
	background-image: url(../images/hotlink/1.jpg);
}
.hotlink-2 {
	background-image: url(../images/hotlink/2.jpg);
}
.hotlink-3 {
	background-image: url(../images/hotlink/3.jpg);
}
.hotlink-4 {
	background-image: url(../images/hotlink/4.jpg);
}
.hotlink-5 {
	background-image: url(../images/hotlink/5.jpg);
}
.hotlink-li a span {
	position: absolute;
	top: 10px;
	right: 10px;
	left: 10px;
	bottom: 10px;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	z-index: 1;
	padding-top: 20px;
}
.hotlink-ul-4 .hotlink-li {
	flex: 25%;
}
.hotlink-ul-4 .hotlink-li a {
	max-width: 295px;
	height: 146px;
}
.hotlink-ul-4 .hotlink-li a span {
	font-size: 1.8rem;
}
.hotlink-ul-3 .hotlink-li {
	flex: 30%;
}
.hotlink-ul-3 .hotlink-li a {
	max-width: 404px;
	height: 200px;
}
.hotlink-ul-3 .hotlink-li a span {
	font-size: 2.5rem;
}
.hotlink-ul-2 .hotlink-li {
	flex: 50%;
}
.hotlink-ul-2 .hotlink-li a {
	max-width: 620px;
	height: 200px;
}
.hotlink-ul-2 .hotlink-li a span {
	font-size: 2.5rem;
}

/*==================================*/
/* Products
/* =================================*/
.products-wrap {
	background: #fff;
}
.products-ul {
	display: flex;
	flex-wrap: wrap;
}
.products-li {
	display: flex;
	flex: 0 0 20%;
}
.products-li.end {
	display: none;
}
.products-ul-4 .products-li {
	flex: 0 0 25%;
}
.products-item {
	padding: 15px;
}
.products-item:hover {
	box-shadow: 0px 0px 10px #d8d8d8;
}
.products-name {
	margin: 5px 0 10px;
	line-height: 14px;
	font-size: .7rem;
}
.products-name a {
	color: #333;
}
.products-name:hover a {
	color: #fea500;
}
.products-price {
	margin-bottom: 5px;
}
.products-price .price {
	font-weight: 700;
	font-size: .9rem;
}
.products-price .old-price {
	font-size: .8rem;
	text-decoration: line-through;
	color: #808080;
	margin-left: 7px;
}
.products-price .discount {
	float: right;
	color: #c1272d;
	font-weight: 500;
}
.products-price .line {
	display: block;
}
.products-price .line .old-price {
	margin-left: 0;
}
.products-rating {
	color: #ababab;
	font-size: .7rem;
}
.products-rating .active {
	color: #fea500;
}

/*==================================*/
/* Feature
/* =================================*/
.features-ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.features-li {
	display: flex;
	flex: 40%;
	margin: 0 5px 10px 5px;
}
.feature {
	margin-bottom: 30px;
}
.features-ul2 .features-li {
	flex: 30%;
}

/*==================================*/
/* Partner
/* =================================*/
.partner {
	background: #fff;
	padding: 30px 60px;
}

/*==================================*/
/* Subscribe
/* =================================*/
.subscribe {
	background: #1F1F1F;
	padding: 15px 0;
	color: #fff;
	margin-top: 10px;
}
.subscribe .label {
	position: relative;
	padding-left: 60px;
}
.subscribe .icon {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 50px;
}
.subscribe .form-control {
	font-size: 1rem;
	border: 0;
}
.subscribe .input-group-append {
	margin-left: 10px;
}
.subscribe .input-group-text {
	background: #fea500;
	color: #fff;
	padding: 5px 25px;
	border: 0;
	text-transform: uppercase;
	font-weight: 500;
}
.subscribe .form-control:not(:last-child),
.subscribe .input-group-text {
	border-radius: .25rem !important;
}

/*==================================*/
/* Bottom
/* =================================*/
.bottom {
	background: #e6e6e6;
	padding-bottom: 40px;
	padding-top: 40px;
}
.bottom h3 {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 15px;
	color: #1A1A1A;
}
.bottom ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.bottom li {
	margin-bottom: 5px;
}
.bottom a {
	color: #1A1A1A;
}
.bottom a:hover {
	color: #fea500;
}
.bottom .social {
	font-size: 1.8rem;
}
.bottom .social a {
	margin-right: 10px;
}
.bottom-item {
	margin-bottom: 20px;
}
.bottom-item+div.bottom-item {
	margin-bottom: 0;
}

/*==================================*/
/* Footer
/* =================================*/
footer {
	background: #E1E1E1;
	padding: 10px 0;
	color: #000222;
	font-size: .8rem;
}
.f-website a {
	margin-right: 15px;
}

.f-website .icon {
	display: inline-block;
	width: 87px;
	height: 42px;
	line-height: 42px;
	vertical-align: middle;
	background-size: auto 42px;
	background-repeat: no-repeat;
}
.f-website .icon-tatmart {
	background-image: url("../images/logo/logo_tatmart.png");
}
.f-website .icon-mrtho {
	background-image: url("../images/logo/logo_mrtho.png");
}

/*==================================*/
/* Product
/* =================================*/
.product-bg {
	background: #fff;
	padding: 20px;
}
.product-bg .meta th {
	background: #F2F2F2;
}
.product-description {
	max-height: 839px;
	overflow: hidden;
}
.product-read-more {
	text-align: center;
	background: #fff;
	padding: 20px;
}
.product-read-more .btn {
	color: #fea500;
	border: 1px solid #fea500;
	min-width: 120px;
}
.product-read-more .btn:hover {
	background: #fea500;
	color: #fff;
	text-decoration: none;
}
.product-bag {
	margin-bottom: 30px;
}
.product-bag.mb0 {
	margin-bottom: 0;
}
.product-related {
	margin-top: 48px;
}
.product-related .products-item {
	background: #fff;
	margin-bottom: 30px;
	max-width: none;
}
.product-title {
	color: #333;
	font-size: 1.4rem;
	font-weight: 500;
	margin: 10px 0 15px;
}
.product-col-left {
	border-left: 1px solid #f3f3f3;
}
.product-col-right {
	border-right: 1px solid #f3f3f3;
}
.product-meta {
	border-bottom: 1px solid #f3f3f3;
	margin-bottom: 15px;
	font-size: .8rem;
}
.product-brand label {
	font-weight: 500;
}
.product-brand a {
	color: #29abe2;
}
.product-sku {
	color: #999999;
	margin-left: 30px;
}
.product-share {
	float: right;
	margin-left: 30px;
}
.product-share a {
	color: #999999;
	font-size: 1rem;
	margin-left: 5px;
}
.product-share a:hover {
	color: #fea500;
}
.product-gallery {
	padding-top: 20px;
	padding-left: 40px;
	padding-right: 40px;
}
.product-gallery .img {
	border: 1px solid #f3f3f3;
}
.product-gallery .owl-nav i {
    border: 0;
    border-radius: 0;
	color: #808080;
}
.product-price .price {
	color: #fea500;
	font-size: 2rem;
	font-weight: 500;
}
.product-price .old-price {
	color: #888888;
	font-size: 1.3rem;
	font-weight: 500;
	text-decoration: line-through;
}
.product-price .discount {
	color: #c1272d;
	font-size: 1.4rem;
	font-weight: 500;
	margin-left: 5px;
}
.product-intro {
	font-size: .8rem;
	margin: 10px 0;
}
.product-intro p {
	margin: 0 0 5px;
}
.product-quantity {
	margin-bottom: 20px;
}
.product-quantity::after {
	clear: both;
	content: "";
	display: block;
}
.product-quantity label {
	float: left;
	margin-top: 4px;
	margin-right: 40px;
}
.product-quantity .count {
	float: left;
	margin-top: 4px;
	margin-left: 10px;
	color: #B3B3B3;
	font-size: .8rem;
}
.product-qty {
	float: left;
	position: relative;
	max-width: 100px;
}
.product-qty .minus-qty,
.product-qty .plus-qty {
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: #f2f2f2;
	color: #808080;
	text-align: center;
	cursor: pointer;
}
.product-qty .minus-qty {
	left: 0;
}
.product-qty .plus-qty {
	right: 0;
}
.product-qty .qty {
	padding-left: 30px;
	padding-right: 30px;
	max-width: 150px;
	display: block;
}
.product-qty .input-qty {
	border: 0;
	height: 30px;
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	outline: none;
	color: #808080;
}
.product-action .btn {
	padding: 8px 30px;
	text-transform: uppercase;
	font-size: .9rem;
}
.product-action .btn-link {
	border: 1px solid #ddd;
}
.product-action .btn-link:focus,
.product-action .btn-link:hover {
	text-decoration: none;
}
.product-info {
	border-bottom: 1px solid #f3f3f3;
	margin-bottom: 10px;
}
.product-info:last-child {
	border-bottom: 0;
}
.product-info-li {
	margin-bottom: 10px;
	position: relative;
	font-size: .84rem;
}
.product-info-li .left {
	position: absolute;
	left: 0;
	width: 25px;
	color: #999999;
}
.product-info-li .right {
	position: absolute;
	right: 0;
}
.product-info-li .center {
	display: block;
	padding: 0 70px 0 25px;
}
.product-info-li .grey {
	color: #aaa;
}
.product-info-li a.grey:hover {
	color: #fea500;
}
.product-edit-address {
	background: #fff;
	border: 1px solid #ddd;
	padding: 15px 15px 10px;
	position: absolute;
	right: 0;
	z-index: 10;
	min-width: 270px;
	box-shadow: 0 0 5px #dedede;
	display: none;
}
.product-edit-address label {
	font-weight: 600;
	margin: 0;
	font-size: 1rem;
}
.product-edit-address .form-control {
	font-size: .9rem;
}
.product-edit-address .btn {
	border: 1px solid #ddd;
	background: #fff;
	font-size: .9rem;
	padding-left: 20px;
	padding-right: 20px;
}
.product-edit-address .btn:hover {
	background: #fea500;
	color: #fff;
	border-color: #fea500;
}
.product-edit-address p {
	margin: 0 0 10px;
}
.product-option {
	margin-bottom: 20px;
	color: #999;
}
.product-option-label {
	margin-bottom: 5px;
}
.product-option-image-ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.product-option-image-li {
	flex: 20%;
	padding-left: 5px;
	padding-right: 5px;
}
.product-option-image-li label {
	border: 1px solid #ddd;
	display: block;
	padding: 5px;
	cursor: pointer;
	max-width: 70px;
}
.product-option-image-li input,
.product-option-select input {
	display: none;
}
.product-option-select label {
	border: 1px solid #ddd;
	display: inline-block;
	cursor: pointer;
	padding: 5px 10px;
}
.product-option-image-li label.active,
.product-option-select label.active,
.product-option-image-li label:hover,
.product-option-select label:hover {
	border-color: #fea500;
	color: #000;
}
.product-option-list-name {
	float: left;
	margin: 7px 10px 0 0;
}
.product-info-chat {
	float: right;
	font-weight: 500;
}
.product-info-feedback {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.product-info-feedback .product-info-li {
	flex: 30%;
	padding-left: 15px;
	padding-right: 15px;
	font-size: .7rem;
	border-left: 1px solid #f3f3f3;
}
.product-info-feedback .product-info-li:first-child {
	border-left: 0;
}
.product-info-feedback .product-info-li .sum {
	font-size: 1.6rem;
	font-weight: 500;
	margin-top: 5px;
}
.product-info-store {
	text-align: center;
}
.product-info-store i {
	margin-right: 5px;
}
.product-other .owl-prev {
    left: 0;
    top: 55%;
}
.product-other .owl-next {
    right: 0;
    top: 55%;
}
.product-other .products-item {
	min-height: 338px;
}

/*==================================*/
/* Category
/* =================================*/
.category::after {
	clear: both;
	content: "";
	display: block;
}
.category-left {
	float: left;
	width: 247px;
	background: #fff;
	padding: 30px 15px 15px 15px;
}
.category-right {
	margin-left: 248px;
}
.category-nav {
	font-size: .8rem;
}
.category-nav li {
	margin-bottom: 7px;
}
.category-nav,
.category-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.category-nav ul {
	padding-left: 10px;
	margin-top: 7px;
	display: none;
}
.category-nav ul ul {
	padding-left: 20px;
}
.category-nav > .active > ul,
.category-nav > li > ul > .active > ul {
	display: block;
}
.category-nav a {
	color: #333;
}
.category-nav a:hover {
	color: #fea500;
}
.category-nav .active > a {
	font-weight: 600;
}
.category-nav > li > a::before,
.category-nav > li > ul > li > a::before {
	content: "";
	display: inline-block;
	vertical-align: .1em;
	border-top: .3em solid transparent;
	border-bottom: .3em solid transparent;
	border-right: 0;
	border-left: .3em solid #999;
	width: 15px;
}
.category-nav > li.active > a::before,
.category-nav > li > ul > li.active > a::before {
	content: "";
	display: inline-block;
	vertical-align: .255em;
	border-top: .3em solid #999;
	border-bottom: 0;
	border-right: .3em solid transparent;
	border-left: .3em solid transparent;
	width: 8px;
	margin-right: 7px;
}
.category-nav .total {
	color: #999;
	font-size: .7rem;
}
.category-head {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 15px 10px 15px;
	margin-bottom: 5px;
}
.category-head .heading {
	flex: 0 0 75%;
	margin-bottom: 0;
}
.category-head .category-filter {
	flex: 0 0 25%;
	text-align: right;
	display: table;
}
.category-filter-li {
	display: table-cell
}
.category-filter-li:last-child {
	display: none;
	text-align: right;
}
.category-filter-right {
	border: 1px solid #ddd;
    color: #999;
    font-size: .9rem;
    position: relative;
    padding-right: 60px;
    border-radius: 0;
}
.category-filter-right .fas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    border-left: 1px solid #ddd;
}
.category-filter-right .fas:before {
    height: 30px;
    line-height: 35px;
}
.category-banner {
	margin-bottom: 20px;
}
.category-hotlink {
	padding: 15px;
}
.category-hotlink .hotlink-ul-4 .hotlink-li a span {
    font-size: 1.3rem;
}
.category-hotlink .hotlink-ul-4 .hotlink-li a {
	height: 120px;
}
.category-wrap {
	background: #fff;
}
.category-wrap .products-wrap {
	padding-bottom: 60px;
}
.category-wrap .products-li {
	flex: 0 0 25%;
}
.category-merchant {
	display: none;
	padding: 15px 30px;
	border-bottom: 1px solid #ddd;
}
.merchant-title {
	font-size: 1.5rem;
	margin: 10px 0;
}
.merchant-title .fa-certificate {
	color: #fea500;
	font-size: 1.2rem;
}
.merchant-since {
	color: #808080;
	margin-bottom: 5px;
}
.merchant-rating {
	color: #808080;
	font-size: .8rem;
}
.merchant-rating .fas {
	color: #E1E1E1;
}
.merchant-rating .active {
	color: #fea500;
}
.merchant-meta {
	margin-top: 5px;
}
.merchant-meta label {
	margin: 0;
	font-weight: 500;
}
.merchant-meta a {
	color: #333;
}
.merchant-meta a:hover {
	color: #fea500;
}
.certificate-ul {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 15px;
}
.certificate-li {
	flex: 25%;
	padding-left: 15px;
	padding-right: 15px;
}
.certificate-item {
	position: relative;
	padding-left: 50px;
}
.certificate-item .fas {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2rem;
	color: #fea500;
}
.certificate-title {
	font-size: 1rem;
	margin: 0 0 5px;
}
.certificate-intro {
	color: #999;
}
.merchant-certificate-ul {
	display: block;
	padding: 0;
	margin-top: 20px;
}
.merchant-certificate-ul .certificate-li {
	display: block;
	flex: 100%;
	padding: 0;
	margin-top: 15px;
}
.merchant-certificate-ul .certificate-item .fas {
	font-size: 1.3rem;
}
.merchant-certificate-ul .certificate-item {
	padding-left: 35px;
}
.category-filter-mobile {
	position: fixed;
	right: -100%;
	top: 0;
	height: 100%;
	width: 247px;
	background-color: #fff;
	overflow-y: scroll;
	z-index: 1000;
	box-shadow: 0px 10px 10px #111;
}
.category-filter-mobile aside {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}
.category-filter-mobile .aside-title {
	padding: 6px 12px;
	background: #FFA600;
	color: #fff;
	margin: 0;
}
.category-filter-mobile .aside-title .icon {
	float: right;
}
.category-filter-mobile-content {
	padding: 12px;
	display: none;
}
.category-filter-mobile .aside-category .category-filter-mobile-content {
	display: block;
}

/*==================================*/
/* Modal Product
/* =================================*/
.modal-product {
	max-width: 1000px;
}
.modal-product .modal-content,
.modal-product .modal-header {
	border-radius: 0;
}
.modal-product .main-name {
	font-weight: 500;
}
.modal-product .products-item {
	margin: 10px;
}
.modal-product .owl-prev {
    left: 0;
    top: 55%;
}
.modal-product .owl-next {
    right: 0;
    top: 55%;
}
.modal-product .modal-header {
	border-bottom: 0;
}
.modal-product .modal-header .close {
	background: #fea500;
	color: #fff;
	opacity: 1;
	padding: .6rem 1rem;
}
.modal-product-ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.modal-product-li {
	flex: 60%;
	padding-left: 15px;
	padding-right: 15px;
}
.modal-product-li+.modal-product-li {
	flex: 40%;
}
.modal-product-li i {
	margin-right: 5px;
}
.modal-product-li .fa-check-square {
	color: #8CC63F;
}
.modal-product-li .fa-info-circle {
	color: #999;
}
.modal-product-ul .mobile {
	display: none;
}
.modal-product-sku,
.modal-product-li .count {
	color: #999;
	font-size: .7rem;
}
.modal-product-wrap {
	border-top: 1px solid #f3f3f3;
	border-bottom: 1px solid #f3f3f3;
	margin: 10px 0 20px 0;
}
.modal-product-wrap .modal-product-li {
	padding-top: 15px;
	padding-bottom: 15px;
}
.modal-product-wrap .modal-product-li:first-child {
	padding-left: 0;
	padding-right: 15px;
}
.modal-product-wrap .modal-product-li:last-child {
	padding-left: 15px;
	padding-right: 0;
	border-left: 1px solid #f3f3f3;
}
.modal-product-img {
	border: 1px solid #f3f3f3;
	float: left;
	width: 100px;
	height: 100px;
	margin-right: 10px;
	padding: 5px;
}
.modal-product-title a {
	color: #333;
}
.modal-product-title a:hover {
	color: #FFA500;
}
.modal-product-sku {
	margin: 10px 0 5px;
}
.modal-product-price {
	color: #FFA500;
	font-size: 1.2rem;
	font-weight: 500;
}
.modal-product-total {
	margin: 10px 0;
}
.modal-product-sub-total span {
	font-weight: 500;
	color: #000;
	float: right;
}
.modal-product-total {
	margin: 10px 0;
	font-weight: 500;
	color: #000;
}
.modal-product-total span {
	color: #FFA500;
	font-size: 1.2rem;
	float: right;
}
.modal-product-vat {
	text-align: right;
	color: #666;
	margin-bottom: 10px;
	font-style: italic;
}
.modal-product-action {
	text-align: right;
}
.modal-product-action .btn-link {
	border: 1px solid #ddd;
}
.modal-product-action .btn-link:hover {
	text-decoration: none;
}

/*==================================*/
/* Merchant
/* =================================*/
.merchant-page .category-left {
	padding-top: 15px;
}

/*==================================*/
/* Menus
/* =================================*/
.menus {
	background: #fff;
	padding: 30px;
}
.menus-filter {
	max-width: 600px;
	margin: 0 auto 30px;
}
.menus-filter .form-control {
	font-size: .9rem;
	border-color: #FFA200;
	background-color: #f2f2f2;
}
.menus-item {
	font-size: .8rem;
}
.menus-item dt {
	text-transform: uppercase;
	font-size: .9rem;
}
.menus-item dd {
	padding-left: 20px;
	margin: 5px 0 0 0;
}
.menus-item dd a {
	color: #333;
}
.menus-item > dd > a {
	font-weight: 600;
}
.menus-item dd a:hover {
	color: #FFA200;
}

/*==================================*/
/* DIY
/* =================================*/
.diy {
	padding: 30px;
}
.diy .heading {
	text-align: center;
	font-size: 2.5rem;
}
.diy-filter {
	text-align: center;
	margin-bottom: 30px;
	overflow: auto;
}
.diy-filter a {
	background: #fff;
	border: 1px solid #E6E6E6;
	display: inline-block;
	padding: 6px 12px;
	border-radius: 3px;
	color: #808080;
	margin: 0 5px 10px 5px;
}
.diy-filter .active,
.diy-filter a:hover {
	background: #FFA200;
	color: #fff;
}
.diy-item {
	margin-bottom: 30px;
	background: #fff;
}
.diy-w {
	padding: 15px;
}
.diy-title {
	font-size: 1rem;
	margin: 0 0 10px;
	color: #000;
}
.diy-title:hover {
	color: #FFA200;
}
.diy-intro {
	color: #808080;
	margin: 0;
}

/*==================================*/
/* Cart
/* =================================*/
.cart-table {
	background: #fff;
}
.cart-table tr:first-child td {
	border-top: 0;
}
.cart-tr-img {
	border: 1px solid #ddd;
	display: inline-block;
	padding: 5px;
	width: 80px;
}
.cart-tr-title {
	margin: 0 0 8px;
	font-size: .9rem;
}
.cart-tr-title a {
	color: #000000;
}
.cart-tr-title a:hover {
	color: #FFA200;
}
.cart-tr-remove a,
.cart-tr-sku {
	color: #808080;
	font-size: .7rem;
}
.cart-tr-sku {
	margin-bottom: 2px;
}
.cart-tr-seller {
	color: #000000;
}
.cart-table .product-qty .qty {
	width: 100px;
}
.cart-tr-price {
	font-size: .9rem;
	color: #000000;
	margin-bottom: 10px;
}
.cart-tr-old {
	font-size: .7rem;
	color: #808080;
	margin-bottom: 10px;
	text-decoration: line-through;
}
.cart-tr-discount {
	font-size: .7rem;
	color: #C1272D;
}
.cart-tr-total {
	font-size: .9rem;
	color: #FFA200;
}
.cart-group {
	background: #fff;
	padding: 15px;
}
.cart-group-title {
	font-size: 1rem;
	color: #FFA200;
	margin: 0 0 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #F2F2F2;
}
.cart-group-meta label {
	font-size: .8rem;
	color: #808080;
	margin: 0;
}
.cart-group-meta span {
	float: right;
	font-size: .8rem;
	color: #000000;
}
.cart-group-total {
	margin-top: 10px;
	margin-bottom: 20px;
}
.cart-group-total label {
	font-size: .8rem;
	color: #000000;
}
.cart-group-total span {
	font-size: .9rem;
	color: #FFA200;
}
.cart-group-meta .button {
	display: block;
}
.cart-page {
	padding-top: 20px;
}
.cart-page .heading,
.cart-name-relate {
	text-transform: none;
	color: #808080;
	font-weight: normal;
}

.cart-ul {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	margin-top: 1px;
}
.cart-ul:first-child {
	margin-top: 0;
}
.cart-li-img {
	flex: 0 0 10%;
	padding: 10px;
}
.cart-li-title {
	flex: 0 0 45%;
	padding: 10px;
}
.cart-li-price {
	flex: 0 0 15%;
	padding: 10px;
}
.cart-li-qty {
	flex: 0 0 14%;
	padding: 10px;
}
.cart-li-total {
    flex: 0 0 15%;
    padding: 10px;
}

/*==================================*/
/* Register Success
/* =================================*/
.register-success {
	background: #fff;
	padding: 40px;
	max-width: 620px;
	margin: 30px auto;
	text-align: center;
}
.register-success h2 {
	font-size: 1.2rem;
	color: #000;
	margin-bottom: 20px;
}
.register-success .note {
	color: #B3B3B3;
}
.register-success .button {
	padding: 10px 50px;
}
.register-success p {
	margin: 0 0 10px;
}
.register-success .action {
	margin: 20px 0;
}
.register-success .img {
	margin-bottom: 20px;
}

/*==================================*/
/* Register
/* =================================*/
.register-page {
	padding-top: 30px;
	padding-bottom: 60px;
}
.register-page .heading {
	text-align: center;
}
.register {
	max-width: 500px;
	margin: auto;
	padding: 30px 20px 40px;
	background: #fff;
	font-size: .8rem;
}
.register .form-control {
	background: #F2F2F2;
	font-size: .8rem;
	border-radius: 0;
	border: 0;
}
.register .button {
	display: block;
	border-radius: 0;
	width: 100%;
}
.register-meta {
	text-align: center;
	margin-top: 20px;
	color: #B3B3B3;
}
.register .label {
	font-weight: 500;
}
.register .require {
	color: #ED1B2E;
	font-style: italic;
}

/*==================================*/
/* User
/* =================================*/
.user {
	padding-top: 30px;
	padding-bottom: 30px;
}
.user-avatar::after,
.user::after {
	clear: both;
	content: "";
	display: block;
}
.user-left {
	width: 280px;
	float: left;
}
.user-right {
	padding-left: 300px;
}
.user-avatar .img {
	float: left;
	margin-right: 15px;
	width: 50px;
}
.user-avatar .label {
	display: block;
	font-size: .8rem;
}
.user-avatar .name {
	font-size: 1.2rem;
}
.user-nav {
	margin-top: 20px;
}
.user-nav i {
	width: 30px;
	margin-right: 15px;
	color: #888888;
}
.user-nav a {
	color: #000000;
	padding: 15px 20px;
	display: block;
}
.user-nav .active a,
.user-nav a:hover {
	background: #CCCCCC;
}
.user-head {
	font-size: 1.2rem;
	text-transform: uppercase;
	margin: 0 0 15px;
}
.user-add-address {
	background: #fff;
	padding: 15px 20px;
	margin-bottom: 20px;
	text-align: center;
}
.user-add-address i {
	color: #B3B3B3;
	margin-right: 5px;
}
.user-item {
	background: #fff;
	padding: 15px 20px;
	margin-bottom: 20px;
	position: relative;
}
.user-item .default {
	color: #00A453;
	margin-left: 5px;
}
.user-item-meta {
	margin-top: 3px;
}
.user-item-meta .label {
	color: #B3B3B3;
}
.user-item-link {
	float: right;
	width: 250px;
	text-align: right;
	min-height: 70px;
}
.user-item-link a {
	margin-left: 20px;
}
.user-item-link .delete {
	color: #ED1B2E;
}
.user-item-link .def {
	color: #B3B3B3;
}
.user-item-link .def:hover {
	color: #FFA200;
}

/*==================================*/
/* User orders
/* =================================*/
.user-table {
	background: #fff;
}
.user-tr {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #eee;
}
.user-tr:first-child {
    color: #888;
    border-top: 0;
}
.user-td {
	padding: 15px;
}
.user-td-1 {
	flex: 0 0 13%;
}
.user-td-2 {
	flex: 0 0 13%;
}
.user-td-3 {
	flex: 0 0 41%;
}
.user-td-4 {
	flex: 0 0 15%;
}
.user-td-5 {
	flex: 0 0 18%;
}

/*==================================*/
/* User orders detail
/* =================================*/
.order-detail-name {
	font-size: 1rem;
	color: #888888;
	margin: 0 0 15px;
}
.order-detail-action {
	height: 32px;
	line-height: 32px;
}
.order-detail-action .btn {
	float: right;
}
.order-detail-box {
	background: #fff;
	padding: 15px;
	min-height: 120px;
}
.order-detail-box .label {
	color: #B3B3B3;
}
.order-detail-box .success {
	color: #00A453;
	float: right;
}
.order-detail-item {
	margin-bottom: 30px;
}
.order-detail {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #eee;
	background: #fff;
}
.order-detail.none {
	border-bottom: 0;
}
.order-detail-td {
	padding: 10px;
	font-size: .8rem;
}
.order-detail-1 {
	flex: 0 0 52%;
}
.order-detail-2 {
	flex: 0 0 12%;
}
.order-detail-3 {
	flex: 0 0 12%;
}
.order-detail-4 {
	flex: 0 0 12%;
}
.order-detail-5 {
	flex: 0 0 12%;
	text-align: right;
}
.order-detail-6 {
	flex: 0 0 80%;
	text-align: right;
}
.order-detail-7 {
	flex: 0 0 20%;
	text-align: right;
}
.order-detail .brand {
	color: #29ABE2;
}
.order-detail .sku {
	color: #999999;
}
.order-detail .comment {
	color: #808080;
}
.order-detail .price {
	color: #808080;
}
.order-detail .discount {
	color: #C1272D;
}
.order-detail .total {
	color: #FFA500;
	font-size: 1.3rem;
}
.order-detail .fa-star {
	color: #E1E1E1;
}
.order-detail .fa-star.active {
	color: #FFA500;
}
.order-detail .img {
	float: left;
	width: 85px;
}
.order-detail .group {
	padding-left: 95px;
}
.order-detail p {
	margin: 0 0 7px;
}
.order-detail a {
	color: #000;
}
.order-detail-tr {
	font-weight: 500;
}

/*==================================*/
/* User profile
/* =================================*/
.user-profile {
	background: #fff;
	padding: 30px;
}
.user-profile .form-control {
	border: 0;
	background: #f2f2f2;
	border-radius: 0;
	font-size: .8rem;
}
.user-profile .gender {
	margin-right: 20px;
}
.user-profile .col-form-label {
	font-size: .85rem;
	margin-bottom: 0;
}
.user-profile .note {
	color: #888;
	display: block;
	font-size: .7rem;
}
.user-profile .button {
	min-width: 150px;
}

/*==================================*/
/* Not found
/* =================================*/
.not-found {
	background: url(../images/404-bg.png) no-repeat center bottom;
	padding: 0 0 200px;
	margin-bottom: -11px;
}
.not-found-content {
	text-align: center;
	margin: 50px 0 0;
}

/*==================================*/
/* My favourite
/* =================================*/
.my-favourite {
	background: #fff;
	padding: 15px;
	margin-bottom: 1px;
	display: flex;
	flex-wrap: wrap;
}
.my-favourite-1 {
	flex: 0 0 80%;
}
.my-favourite-2 {
	flex: 0 0 20%;
	text-align: right;
}
.my-favourite .brand {
	color: #29ABE2;
}
.my-favourite .sku {
	color: #999999;
	margin-left: 50px;
}
.my-favourite .comment {
	color: #808080;
}
.my-favourite .price {
	color: #FFA500;
	font-size: 1rem;
	display: block;
}
.my-favourite .discount {
	color: #C1272D;
	font-size: .8rem;
}
.my-favourite .old-price {
	font-size: .8rem;
	color: #888;
	text-decoration: line-through;
}
.my-favourite .fa-star {
	color: #E1E1E1;
}
.my-favourite .fa-star.active {
	color: #FFA500;
}
.my-favourite .img {
	float: left;
	width: 85px;
}
.my-favourite .group {
	padding-left: 95px;
	font-size: .8rem;
}
.my-favourite p {
	margin: 0 0 7px;
}
.my-favourite a {
	color: #000;
}
.my-favourite .title {
	font-size: .9rem;
}

/*==================================*/
/* Merchants
/* =================================*/
.merchants-logo {
	display: none;
}
.merchants .category-merchant {
	display: block;
	padding: 20px 15px;
	border-bottom-color: #f2f2f2;
}
.merchants .certificate-ul {
	padding: 0;
	margin-left: -15px;
	margin-right: -15px;
}
.merchants .certificate-title {
	font-size: .9rem;
}
.merchants .certificate-intro {
	font-size: .8rem;
}
.merchants-item {
	padding: 20px 15px;
	border-bottom: 1px solid #f2f2f2;
}
.merchants-item .title {
	font-size: .9rem;
	margin: 0 0 10px;
}
.merchants-item .title a {
	color: #333;
}
.merchants-item .meta {
	margin-bottom: 3px;
	font-size: .8rem;
}
.merchants-item .meta span {
	color: #999;
}
.merchants-item .action {
	text-align: right;
	margin-top: 60px;
}
.merchants-item .action .btn {
	color: #FFA500;
	border: 1px solid #FFA500;
	font-size: .8rem;
}
.merchants-item .action .fas {
	margin-right: 5px;
}

/*==================================*/
/* Seller
/* =================================*/
.seller-page {
	padding-top: 30px;
	padding-bottom: 60px;
}
.seller-page .heading {
	text-align: center;
}
.seller {
	max-width: 800px;
	margin: auto;
	padding: 30px 20px 40px;
	background: #fff;
	font-size: .8rem;
}
.seller .form-control {
	background: #F2F2F2;
	font-size: .8rem;
	border-radius: 0;
	border: 0;
}
.seller .button {
	display: block;
	border-radius: 0;
	width: 100%;
}
.seller-meta {
	text-align: center;
	margin-top: 20px;
	color: #B3B3B3;
}
.seller .label {
	font-weight: 500;
}
.seller .require {
	color: #ED1B2E;
	font-style: italic;
}
.seller .headname {
	font-size: 1rem;
	margin: 0 0 15px;
}

/*==================================*/
/* category-home-ul
/* =================================*/
.category-home-ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.category-home-li {
	display: flex;
	flex: 0 0 20%;
	padding: 5px;
}
.category-home-item {
	background: #fff;
	border-radius: 5px;
}
.category-home-img {
	border-radius: 5px 5px 0 0;
	padding: 10px 15px;
	position: relative;
}
.category-home-name {
	line-height: 14px;
	font-size: .7rem;
	background: #e6e6e6;
	padding: 10px 15px;
	margin: 0;
	border-radius: 0 0 5px 5px;
}
.category-home-item:hover .category-home-name {
	background: #fea500;
}
.category-home-name a {
	color: #333;
}
.category-home-link {
	display: none;
	background: rgba(0, 0, 0, .7);
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 5px 5px 0 0;
	padding: 10px 10px 28px;
}
.category-home-item:hover .category-home-link {
	display: block;
}
.category-home-link ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.category-home-link li {
	padding: 0 5px;
}
.category-home-link li a {
	color: #fff;
	font-size: .7rem;
}
.category-home-link li a:hover {
	color: #ffa500;
}
.category-home-link .view-all {
	color: #fff;
	padding: 6px 10px;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	background: #525252;
	text-align: center;
	font-size: .7rem;
}
.category-home-mobile {
	display: none;
}








