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

.home {
	width: 100%;
	height: 80px;
	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(#FFFFFF, #cde4f1);
	opacity: 0.9;
}

.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_product_count {
	font-size: 14px;
	font-weight: 500;
	float: left;
}

.shop_product_count span {
	color: #0e8ce4;
}

.shop_sorting {
	float: right;
}

.shop_sorting span {
	display: inline-block;
	font-weight: 500;
}

.shop_sorting>ul {
	display: inline-block;
	position: relative;
	margin-left: 6px;
}

.shop_sorting ul li {
	color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.shop_sorting ul li:hover {
	color: rgba(0, 0, 0, 0.8);
}

.shop_sorting ul li i {
	display: inline-block;
	font-size: 10px;
	color: rgba(0, 0, 0, 0.5);
	margin-left: 4px;
	vertical-align: middle;
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	-o-transform: translateY(-1px);
	transform: translateY(-1px);
}

.shop_sorting ul li ul {
	display: block;
	position: absolute;
	top: calc(100% + 15px);
	right: 0;
	text-align: right;
	background: #FFFFFF;
	width: auto;
	padding-top: 15px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.shop_sorting ul li:hover ul {
	top: 100%;
	visibility: visible;
	opacity: 1;
}

.shop_sorting ul li ul li {
	white-space: nowrap;
	padding-right: 13px;
	padding-left: 20px;
	margin-bottom: 5px;
	border-bottom: solid 1px #f2f2f2;
	padding-top: 5px;
	padding-bottom: 9px;
}

.shop_sorting ul li ul li:last-child {
	border-bottom: none;
}

/*********************************
5.1 Shop Products
*********************************/

.product_grid {}

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

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

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

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

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

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

.product_content {
	width: 100%;
}

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

.product_item.discount {
	color: #df3b3b;
}

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

.product_price span::after {
	display: block;
	position: absolute;
	top: 6px;
	left: -2px;
	width: calc(100% + 4px);
	height: 1px;
	background: #8d8d8d;
	content: '';
}

.product_name {
	margin-top: 4px;
	overflow: hidden;
	padding: 0px 10px;
}

.product_name div {
	width: 100%;

}

.product_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;
	-webkit-box-orient: vertical; */
}

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

.product_fav {
	position: absolute;
	top: 33px;
	right: 12px;
	width: 36px;
	height: 36px;
	background: #FFFFFF;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.product_fav:hover {
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.product_fav i {
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	color: #cccccc;
	line-height: 36px;
	pointer-events: none;
	z-index: 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.product_fav.active i {
	color: red;
}

.product_item:hover .product_fav {
	visibility: visible;
	opacity: 1;
}

.product_marks {
	display: block;
	position: absolute;
	top: 33px;
	left: 24px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.product_mark {
	display: inline-block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #FFFFFF;
	text-align: center;
	line-height: 36px;
	font-size: 12px;
}

.product_new {
	display: none;
	background: #0e8ce4;
	visibility: hidden;
	opacity: 0;
}

.product_discount {
	display: none;
	background: #df3b3b;
	visibility: hidden;
	opacity: 0;
}

.product_item.is_new .product_new,
.product_item.discount .product_discount {
	display: inline-block;
	visibility: visible;
	opacity: 1;
}

/*********************************
5.2 Shop Page Navigation
*********************************/

.shop_page_nav {
	width: 100%;
	height: 50px;
	margin-top: 80px;
}

.page_prev,
.page_next {
	width: 50px;
	height: 100%;
	border: solid 1px #e5e5e5;
	border-radius: 5px;
	cursor: pointer;
}

.page_prev i,
.page_next i {
	font-size: 12px;
	color: #e5e5e5;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.page_prev:hover i,
.page_next:hover i {
	color: #636363;
}

.page_nav {
	border: solid 1px #e5e5e5;
	border-radius: 5px;
	margin-left: 15px;
	margin-right: 15px;
}

.page_nav li {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-right: solid 1px #e5e5e5;
	cursor: pointer;
}

.page_nav li a {
	font-weight: 500;
	color: rgba(0, 0, 0, 0.7);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.page_nav li:hover a {
	color: #0e8ce4;
}

.page_nav li:last-child {
	border-right: none;
}

/*********************************
6. Shop Sidebar
*********************************/

.shop_sidebar {
	width: 100%;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}

.sidebar_title {
	font-size: 18px;
	font-weight: 500;
}

.sidebar_categories {
	margin-top: 37px;
}

.sidebar_categories li {
	margin-bottom: 7px;
}

.sidebar_categories li a,
.sidebar_categories li label {
	color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	cursor: pointer;
	display: inline;
}

.sidebar_categories li a:hover {
	color: #0e8ce4;
}

.filter_by_section {
	margin-top: 45px;
}

.filter_price {
	margin-top: 28px;
}

.slider_range {
	max-width: 195px;
}

.filter_price p {
	display: inline-block;
	font-size: 12px;
	font-weight: 500 !important;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 0px;
}

.sidebar_subtitle {
	font-size: 14px;
	font-weight: 500;
	margin-top: 25px;
}

.filter_price p input {
	font-size: 12px;
	font-weight: 500 !important;
	color: rgba(0, 0, 0, 0.5)
}

.amount {
	margin-top: 18px;
}

.color_subtitle {
	margin-top: 27px;
}

.colors_list {
	margin-top: 14px;
}

.color {
	display: inline-block;
	margin-right: 6px;
}

.color a {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.brands_subtitle {
	margin-top: 27px;
}

.brands_list {
	margin-top: 12px;
}

.brand {
	margin-bottom: 7px;
}

.brand a {
	color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.brand a:hover {
	color: #0e8ce4;
}

/*********************************
7. Recently Viewed
*********************************/

.viewed {
	padding-top: 51px;
	padding-bottom: 60px;
	background: #eff6fa;
}

.viewed_title_container {
	border-bottom: solid 1px #dadada;
}

.viewed_title {
	margin-bottom: 14px;
}

.viewed_nav_container {
	position: absolute;
	right: -5px;
	bottom: 14px;
}

.viewed_nav {
	display: inline-block;
	cursor: pointer;
}

.viewed_nav i {
	color: #dadada;
	font-size: 18px;
	padding: 5px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.viewed_nav:hover i {
	color: #606264;
}

.viewed_prev {
	margin-right: 15px;
}

.viewed_slider_container {
	padding-top: 50px;
}

.viewed_item {
	width: 100%;
	background: #FFFFFF;
	border-radius: 8px;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 15px;
	padding-right: 15px;
}

.viewed_image {
	width: 115px;
	height: 115px;
}

.viewed_image img {
	display: block;
	max-width: 100%;
}

.viewed_content {
	width: 100%;
	margin-top: 25px;
}

.viewed_price {
	font-size: 16px;
	color: #000000;
	font-weight: 500;
}

.viewed_item.discount .viewed_price {
	color: #df3b3b;
}

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

.viewed_price span::after {
	display: block;
	position: absolute;
	top: 6px;
	left: -2px;
	width: calc(100% + 4px);
	height: 1px;
	background: #8d8d8d;
	content: '';
}

.viewed_name {
	margin-top: 3px;
}

.viewed_name a {
	font-size: 14px;
	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;
}

.viewed_name a:hover {
	color: #0e8ce4;
}

.item_marks {
	position: absolute;
	top: 18px;
	left: 18px;
}

.item_mark {
	display: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 500;
	line-height: 36px;
	text-align: center;
}

.item_discount {
	background: #df3b3b;
	margin-right: 5px;
}

.item_new {
	background: #0e8ce4;
}

.viewed_item.discount .item_discount {
	display: inline-block;
}

.viewed_item.is_new .item_new {
	display: inline-block;
}

/*********************************
8. Brands
*********************************/

.brands {
	width: 100%;
	padding-top: 90px;
	padding-bottom: 90px;
}

.brands_slider_container {
	height: 130px;
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
	padding-left: 97px;
	padding-right: 97px;
}

.brands_slider {
	height: 100%;
}

.brands_item {
	height: 100%;
}

.brands_item img {
	max-width: 130px;
}

.brands_nav {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 5px;
	cursor: pointer;
}

.brands_nav i {
	color: #e5e5e5;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.brands_nav:hover i {
	color: #676767;
}

.brands_prev {
	left: 40px;
}

.brands_next {
	right: 40px;
}

.filter-contain>.filter-item {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 5px;
	margin: 5px;
	user-select: none;
}

.filter-contain>.filter-item>.filter-label {
	padding-right: 5px;
}

.filter-contain>.filter-item>.filter-label.all {
	color: #ff7070;
	padding-right: 0px;
	cursor: pointer;
}

.filter-contain>.filter-item>.filter-times {
	border-left: 1px solid #ddd;
	padding-left: 5px;
	cursor: pointer;
}

.filter-price-custom-inputs {
	display: flex;
}

.filter-price-custom-inputs input {
	display: block;
	width: 100%;
	padding: 2px 5px;
	/* font-size: 1rem; */
	/* line-height: 1.5; */
	/* color: #495057; */
	/* background-color: #fff; */
	/* background-image: none; */
	/* background-clip: padding-box; */
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.filter-price-custom-inputs button {
	padding: 2px 4px;
}


#mobileFilterArea {
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: #fff;
	z-index: 15;
	top: 0px;
	display: none;
	overflow-y: scroll;
}

#mobileFilterArea #mobileFilterCloseBtn {
	border-radius: 0px;
	outline: none !important;
	height: 50px;
}

#mobileFilterArea .card {
	border-radius: 0px !important;
}

#mobileFilterArea .card .card-header {
	padding: 0;
	background-color: #fff;
	height: 50px;
}

#mobileFilterArea .card .card-header h5 {
	position: relative;
	cursor: pointer;
	padding: 10px 15px;
	line-height: 30px;
}

#mobileFilterArea .card .card-header h5::after {
	content: "\f078";
	color: #333;
	top: -2px;
	right: 0px;
	position: absolute;
	font-family: "Font Awesome 5 Free";
	top: 10px;
	right: 15px;
	font-weight: 900;
}

#mobileFilterArea .card .card-header h5[aria-expanded="true"]::after {
	content: "\f077";
}

.custom-checkbox-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


.custom-checkbox-container input[type="checkbox"],
.custom-checkbox-container input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.custom-checkbox-container input[type="checkbox"]~.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: #eee;
	display: block;
}

.custom-checkbox-container input[type="radio"]~.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: #eee;
	border-radius: 100px;
	display: block;
}

.custom-checkbox-container:hover input[type="checkbox"]~.checkmark,
.custom-checkbox-container:hover input[type="radio"]~.checkmark {
	background-color: #ccc;
}

.custom-checkbox-container input[type="checkbox"]:checked~.checkmark,
.custom-checkbox-container input[type="radio"]:checked~.checkmark {
	background-color: #2196F3;
}

.custom-checkbox-container input[type="radio"]:checked~.checkmark {
	border-radius: 100px;
}

.custom-checkbox-container .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.custom-checkbox-container input[type="checkbox"]:checked~.checkmark:after,
.custom-checkbox-container input[type="radio"]:checked~.checkmark:after {
	display: block;
}

.custom-checkbox-container input[type="checkbox"]+.checkmark:after {
	left: 10px;
	top: 7px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	font-size: 22px;
}

.custom-checkbox-container input[type="radio"]+.checkmark:after {
	left: 4px;
	top: 4px;
	width: 16px;
	height: 16px;
	border: solid white;
	font-size: 22px;
	border-radius: 100px;
	background: #fff;
}