/* ---------- header ---------- */
header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 80px;
	background: #fff;
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
	z-index: 10;
}
/* logo */
.logo {
	float: right;
	padding: 20px 0;
	margin-left: 30px;
}
.logo img {
	height: 40px;
}
/* main-nav */
#main-nav {
	float: right;
	margin: 0 30px;
	line-height: 40px;
}
#main-nav ul li {
	display: inline-block;
	padding: 20px;
	cursor: pointer;
	transition: all .3s;
}
#main-nav ul li:hover {
	color: var(--blue);
}
#main-nav ul li i {
	float: right;
	font-size: 24px;
	line-height: 40px;
	margin-left: 10px;
	color: var(--blue);
}
.categories {
	display: none;
	flex-wrap: wrap;
	position: absolute;
	top: 80px;
	right: 0;
	left: 0;
	background: #fff;
	padding: 25px;
	border-radius: 25px;
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
	z-index: 2;
	border-top: 1px solid var(--border-color);
}
#main-nav ul li:hover .categories {
	display: flex;
}
.categories li {
	width: 16.66%;
}
#main-nav ul li .categories li {
	display: flex;
	padding: 10px;
}
.categories li a {
	display: block;
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 20px 15px;
	color: var(--text-color);
	white-space: nowrap;
}
.categories li a:hover {
	border-color: var(--blue);
}
.categories li a img {
	width: 40%;
	min-width: 40%;
	max-width: 40%;
	margin-left: 5px;
}

/* header-search */
.header-search {
	position: relative;
	float: left;
	padding: 20px;
	margin-left: 30px;
}
.header-search input {
	height: 40px;
	width: 400px;
}
.header-search input:focus {
	border-color: var(--info);
}
.header-search button {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 30px;
	height: 30px;
	line-height: 35px;
	border-radius: 50%;
	background-color: var(--info);
	color: #fff;
	text-align: center;
	font-size: 18px;
}
/* header-action */
header .actions {
	float: left;
	padding: 20px 0;
}
header .actions .auth {
	float: left;
	margin-right: 10px;
}
header .actions .auth .auth-mobile {
	display: none;
}
header .actions .auth i,
header .actions .search {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	font-size: 18px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	color: var(--text-color);
	transition: all .3s;
	cursor: pointer;
}
header .actions .auth i:hover {
	border-color: var(--blue);
	color: var(--blue);
}
header .actions .search {
	display: none;
}
.mob-controls {
	display: none;
}

/* ---------- main ---------- */
main {
	margin-top: 80px;
}

/* slider */
#slider {
	position: relative;
}
#slider::after {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	height: 25px;
	background: url(../images/repeat-grid-1.svg) repeat-x top;
	z-index: 1;
}
#slider img {
	width: 100% !important;
	height: inherit !important;
}
.mobile-version {
	display: none;
}
.slider-next, .slider-prev {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background-color: #fff;
	z-index: 4;
	color: var(--blue);
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0 15px 30px rgba(35, 71, 251, 0.3);
	transition: all .3s;
}
.slider-next:hover, .slider-prev:hover {
	box-shadow: none;
}
.slider-next {
	left: 0;
	border-radius: 0 50% 50% 0;
}
.slider-next:before {
	font-family: 'icomoon' !important;
	content: "\e92d";
}
.slider-prev {
	right: 0;
	border-radius: 50% 0 0 50%;
}
.slider-prev:before {
	font-family: 'icomoon' !important;
	content: "\e92e";
}

/* home-search */
#home-search {
	background-color: #fff;
	box-shadow: 0 10px 25px 0 rgba(51, 65, 85, 0.1);
	padding: 25px;
	border-radius: 0 0 50px 50px;
}
.home-search {
	display: flex;
}
.empty-result-search {
	display: block;
}
.home-search > div:first-child {
	position: relative;
	width: 45%;
	padding-right: 30px;
	border-right: 4px solid var(--border-color);
}
.empty-result-search > div:first-child {
	margin: 0 auto;
	border-right: 0;
}
.empty-result-search > div:first-child::before {
	display: none;
}
.home-search > div:first-child::before {
	content: '';
	position: absolute;
	top: 0;
	right: -4px;
	width: 4px;
	height: 45px;
	background: var(--warning);
}
.home-search > div .top {
	height: 40px;
}
.home-search > div .top img {
	float: right;
	height: 40px;
	margin-left: 10px;
}
.home-search > div .top span {
	display: inline-block;
	line-height: 20px;
	margin-top: 20px;
	font-weight: 300;
	color: var(--placeholder-color);
}
.home-search > div .bottom {
	font-size: 16px;
	height: 40px;
	margin-top: 20px;
}
.home-search > div .bottom > span {
	display: inline-block;
	background-color: var(--warning);
	border-radius: 15px;
	padding: 0 10px;
	margin-right: 5px;
	box-shadow: 0 15px 30px rgba(255, 205, 2, 0.3);
}
.home-search > div:last-child {
	width: 55%;
	padding: 15px 0;
}
.home-search-input {
	position: relative;
	height: 60px;
}
.home-search-input input {
	padding: 14px 30px;
	border-radius: 30px;
	width: 100%;
}
.home-search-input input:focus {
	border-color: var(--info);
}
.home-search-input .btn {
	position: absolute;
	left: 10px;
	top: 10px;
}

/* home-categories */
#home-categories {
	margin: 50px 0;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 25px;
}
#home-categories .heading {
	position: relative;
}
#home-categories .heading::before, #home-categories .heading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	height: 4px;
	border-radius: 2px;
	transform: translate(0, -50%);
}
#home-categories .heading::before {
	right: 0;
	background-color: #fff;
	z-index: 2;
}
#home-categories .heading::after {
	width: 100px;
	background-color: var(--warning);
	z-index: 2;
}
#home-categories .heading h2 {
	display: inline-block;
	position: sticky;
	font-size: 18px;
	margin: 0;
	padding-left: 25px;
	z-index: 2;
	background-color: var(--bg-color);
}
#home-categories .heading h2::before {
	font-family: 'icomoon' !important;
	content: "\e942";
	float: right;
	line-height: 40px;
	color: var(--blue);
	margin-left: 10px;
	font-size: 20px;
}
#home-categories .body {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
#home-categories .body li {
	width: 16.66%;
	display: flex;
	padding: 10px;
}
#home-categories .body li a {
	display: block;
	width: 100%;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 15px;
	padding: 20px 15px;
	color: var(--text-color);
}
#home-categories .body li a:hover {
	border-color: var(--blue);
}
#home-categories .body li a img {
	width: 40%;
	margin-left: 10px;
}

.products {
	background-color: #fff;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
}
.products .heading {
	position: relative;
	padding: 25px 30px;
	height: 90px;
	line-height: 40px;
	border-bottom: 1px solid var(--border-color);
}
.products .heading::before {
	content: '';
	position: absolute;
	top: -5px;
	right: 30px;
	width: 60px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--warning);
	box-shadow: 0 0 15px rgba(255, 205, 2, 0.5);
}
.products .heading img {
	width: 40px;
	height: 40px !important;
	float: right;
	margin-left: 10px;
}
 .products .heading i {
 	float: right;
 	font-size: 20px;
 	color: var(--blue);
 	margin-left: 10px;
 	line-height: 30px;
 }
.products .heading h2 {
	display: inline-block;
	margin: 0;
	font-size: 16px;
}
.products .heading .more {
	float: left;
	color: var(--placeholder-color);
}
.products .heading .more:hover {
	color: var(--blue);
}
.products .body {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.products #loader {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 9;
	display: none;
}
.products #loader .loader {
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translate(-50%, 0);
}
.products::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background-color: #fff;
	z-index: 3;
}
.products .body .card {
	position: sticky;
	z-index: 1;
	width: 25%;
	border-left: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.products .body .card:nth-child(4n+0) {
	border-left: 0;
}
.products .body .card:hover {
	box-shadow: 0 0 50px rgba(0, 0, 0, .1);
	z-index: 2;
}
.products-slide .body {
	display: block;
}
.products-slide .body .card {
	width: 18.5%;
}
.products-slide .body .card:nth-child(4n+0) {
	border-left: 1px solid var(--border-color);
}
.products-slide-next, .products-slide-prev {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	background-color: var(--blue);
	z-index: 4;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0 15px 30px rgba(35, 71, 251, 0.3);
	transition: all .3s;
}
.products-slide-next:hover, .products-slide-prev:hover {
	box-shadow: none;
}
.products-slide-next {
	left: 10px;
}
.products-slide-next:before {
	font-family: 'icomoon' !important;
	content: "\e93b";
}
.products-slide-prev {
	right: 10px;
}
.products-slide-prev:before {
	font-family: 'icomoon' !important;
	content: "\e943";
}
.swiper-button-disabled {
	display: none;
}

.special {
	display: flex;
	padding: 15px 15px 15px 0;
	border-radius: 20px;
	overflow: hidden;
	background-color: var(--blue);
	border: 1px solid var(--blue);
	margin: 50px 0;
}
.special .heading {
	position: relative;
	width: 20%;
	padding: 25px 0;
	text-align: center;
	color: var(--warning);
}
.special .heading h2 {
	font-size: 24px;
	margin: 0;
	font-weight: 500;
}
.special .heading img {
	max-height: 270px;
}
.special .heading .btn {
	margin-top: 20px;
}
.special .heading::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 60px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--warning);
	box-shadow: 0 0 15px rgba(255, 205, 2, 0.5);
}
.special .body {
	display: flex;
	width: 80%;
}
.special .body .card {
	width: 25%;
	border-radius: 15px;
	margin: 0 7.5px;
}
.special .body .card:last-child {
	margin-left: 15px;
}

.suggest {
	background-color: var(--warning);
	border: 1px solid var(--warning);
}
.suggest .heading {
	color: var(--blue);
}
.suggest .heading::before {
	background-color: var(--blue);
	box-shadow: 0 0 15px 0 rgba(35, 71, 251, 0.5);
}

/* category-suggest */
.category-suggest {
	display: flex;
	margin: 50px 0;
	background-color: #fff;
	border-radius: 20px;
	border: 1px solid var(--border-color);
}
.category-suggest > div {
	width: 25%;
	border-left: 1px solid var(--border-color);
	padding: 20px 25px;
	text-align: center;
}
.category-suggest > div:last-child {
	border-left: 0;
}
.category-suggest > div h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	text-align: right;
}
.category-suggest > div ul {
	display: flex;
	flex-wrap: wrap;
}
.category-suggest > div ul li {
	width: 50%;
	padding: 20px;
}
.category-suggest > div .more {
	display: inline-block;
	margin-top: 20px;
}
.category-suggest > div .more i {
	float: left;
	margin-right: 5px;
	line-height: 30px;
	font-size: 18px;
}

/* banner */
.banner {
	margin: 50px 0;
	border-radius: 20px;
	overflow: hidden;
}
.banner-full img {
	width: 100%;
}
.banner-2col,
.banner-3col {
	display: flex;
	flex-wrap: nowrap;
}
.banner-2col a {
	width: 48%;
	margin-left: 4%;
}
.banner-2col a:last-child {
	margin-left: 0;
}
.banner-3col a {
	width: 31%;
	margin-left: 3.5%;
}
.banner-3col a:last-child {
	margin-left: 0;
}

/* breadcrumbs */
#breadcrumbs {
	padding: 20px 0 15px;
}
#breadcrumbs ul li {
	display: inline-block;
}
#breadcrumbs ul li::after {
	font-family: 'icomoon' !important;
	content: "\e93b";
	float: left;
	margin: 0 10px;
}
#breadcrumbs ul li:last-child::after {
	content: '';
}
#breadcrumbs ul li a {
	color: var(--placeholder-color);
}
#breadcrumbs ul li a:hover {
	color: var(--blue);
}
#breadcrumbs ul li a i {
	float: right;
	line-height: 26px;
	font-size: 20px;
	margin-left: 10px;
}

/* product */
#product {
	display: flex;
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
}
#product .pics {
	width: 35%;
}
#product .pics .large img {
	width: 100%;
	height: inherit !important;
	border: 1px solid var(--border-color);
	border-radius: 15px;
}
.thumbnails {
	margin-top: 15px;
}
.thumbnails .swiper-slide {
	width: 20%;
	margin-left: 15px;
}
.thumbnails .swiper-slide:last-child {
	margin-left: 0;
}
.thumbnails .swiper-slide img {
	width: 100%;
	height: inherit !important;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	cursor: pointer;
}
.thumbnails .swiper-slide .active {
	border-color: var(--blue);
}
.thumbnails-next, .thumbnails-prev {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background-color: #fff;
	z-index: 4;
	color: var(--blue);
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0 15px 30px rgba(35, 71, 251, 0.3);
	transition: all .3s;
}
.thumbnails-next:hover, .thumbnails-prev:hover {
	box-shadow: none;
}
.thumbnails-next {
	left: 0;
	border-radius: 0 50% 50% 0;
}
.thumbnails-next:before {
	font-family: 'icomoon' !important;
	content: "\e92d";
}
.thumbnails-prev {
	right: 0;
	border-radius: 50% 0 0 50%;
}
.thumbnails-prev:before {
	font-family: 'icomoon' !important;
	content: "\e92e";
}

.product {
	width: 65%;
	padding: 0 40px;
}
.product .title h1 {
	font-size: 24px;
	margin-top: 10px;
}
.product .options {
	width: 50%;
	margin-top: 20px;
}
.product .options > div {
	position: relative;
	margin: 10px 0;
	overflow: hidden;
}
.product .options > div::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	height: 1px;
	border-top: 1px dashed var(--border-color);
	z-index: 1;
}
.product .options > div i {
	float: right;
	line-height: 30px;
	color: var(--blue);
	font-size: 20px;
	margin-left: 10px;
}
.product .options > div span {
	display: inline-block;
	position: sticky;
	background-color: #fff;
	z-index: 2;
}
.product .options > div span:first-child {
	float: right;
	padding-left: 10px;
}
.product .options > div img {
	width: 30px;
	height: 30px;
	float: right;
	margin-left: 10px;
}
.product .options > div span:last-child {
	float: left;
	padding-right: 10px;
}

.product .actions {
	display: flex;
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid var(--border-color);
}
.product .actions .title {
	width: 50%;
}
.product .actions .title > span {
	display: block;
	font-size: 20px;
	font-weight: 600;
}
.product .actions .title > span::before {
	font-family: 'icomoon' !important;
	content: "\e934";
	font-size: 24px;
	float: right;
	color: var(--warning);
	margin-left: 10px;
	font-weight: 400;
	line-height: 26px;
}
.product .actions .title .shipping,
#cart-sidebar .shipping {
	display: inline-block;
	padding: 20px 25px;
	border: 1px solid var(--border-color);
	margin-top: 20px;
	border-radius: 15px;
	font-weight: 600;
	padding-left: 150px;
	background: url(../images/shipping.png) no-repeat left top;
	background-size: contain;
	background-color: #fff;
}
#cart-sidebar .shipping {
	display: block;
	padding-left: 25px;
	height: 100px;
}
.product .actions .title .shipping span,
#cart-sidebar .shipping span {
	display: block;
	font-weight: 400;
	color: var(--blue);
	cursor: pointer;
}
.product .actions .price {
	width: 50%;
	text-align: left;
}
.product .actions .price .discount {
	height: 30px;
	display: block;
}
.product .actions .price .discount > span:first-child {
	text-decoration: line-through;
}
.product .actions .price .discount > .percent {
	display: inline-block;
	background-color: var(--warning);
	line-height: 24px;
	border-radius: 11px;
	padding: 0 7px;
}
.product .actions .price .amount {
	font-size: 22px;
	font-weight: 700;
	margin-top: 10px;
}
.product .actions .price .amount small {
	font-weight: 400;
}
.product .add-to-cart {
	margin-top: 20px;
}
.product .add-to-cart .btn {
	padding: 9px 40px;
	height: 50px;
}

.product .added {
	display: inline-block;
	position: relative;
	height: 50px;
	padding: 9px 100px;
	border: 1px solid var(--blue);
	border-radius: 25px;
	overflow: hidden;
}
.product .added .name {
	font-weight: 500;
	font-size: 18px;
}
.product .added .increase,
.product .added .decrease,
.product .added .remove {
	position: absolute;
	top: 0;
	width: 48px;
	height: 48px;
	padding: 9px 0;
	text-align: center;
	font-size: 24px;
	color: var(--blue);
	cursor: pointer;
	border-radius: 50%;
}
.product .added .increase:hover,
.product .added .decrease:hover,
.product .added .remove:hover {
	background-color: var(--info-bg);
}
.product .added .increase {
	left: 0;
}
.product .added .increase::before {
	font-family: 'icomoon' !important;
	content: "\e92c";
}
.product .added .decrease {
	right: 0;
}
.product .added .decrease::before {
	font-family: 'icomoon' !important;
	content: "\e940";
}
.product .added .remove {
	right: 0;
	color: var(--danger);
}
.product .added .remove::before {
	font-family: 'icomoon' !important;
	content: "\e94c";
}

/* multiple-price */
.multiple-price {
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}
.multiple-price > div {
	display: flex;
	height: 60px;
	padding: 15px 30px;
	margin: 15px 0;
	border: 1px solid var(--border-color);
	border-radius: 30px;
}
.multiple-price > div .name {
	margin-left: auto;
	font-weight: 600;
	font-size: 16px;
}
.multiple-price > div .discount {
	display: block;
	margin: 0;
}
.multiple-price > div .discount span:first-child {
	text-decoration: line-through;
}
.multiple-price > div .discount .percent {
	display: inline-block;
	margin-right: 5px;
	background-color: var(--warning);
	line-height: 22px;
	border-radius: 11px;
	padding: 0 7px;
}
.multiple-price > div .amount {
	margin: 0 25px;
	font-weight: 600;
	font-size: 16px;
}
.multiple-price > div .amount small {
	font-weight: 400;
	margin-right: 5px;
}
.multiple-price > div .amount span span {
	display: none;
}
.multiple-price > div .atc {
	margin: -6px 0 0 -20px;
}
.multiple-price > div .atc .icon-add {
	display: none;
}
.multiple-price .added {
	height: 40px;
	padding: 4px 50px;
	margin: -6px 0 0 -20px;
	border-radius: 20px;
}
.multiple-price .added .increase,
.multiple-price .added .decrease,
.multiple-price .added .remove {
	width: 38px;
	height: 38px;
	padding: 4px 0;
	font-size: 20px;
}
.multiple-price .added .increase:hover,
.multiple-price .added .decrease:hover,
.multiple-price .added .remove:hover {
	background-color: var(--info-bg);
}
.multiple-price .added .remove {
	right: 0;
	color: var(--danger);
	font-size: 18px;
}
.multiple-price .added .name {
	font-size: 16px;
}

/* content */
.content {
	margin: 30px 0;
	padding: 25px 40px;
	border-radius: 20px;
	background-color: #fff;
	overflow: hidden;
}
.content .heading {
	position: relative;
}
.content .heading::before {
	content: '';
	position: absolute;
	top: -30px;
	right: 0;
	width: 60px;
	height: 10px;
	background-color: var(--warning);
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(255, 205, 2, 0.5);
}
.content .heading h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.flex {
	display: flex;
}
.flex-nowarp {
	flex-wrap: nowrap;
}

/* comments */
#comments {
	float: right;
	width: 75%;
	margin: 30px 0;
	padding-left: 30px;
}
#comments > .heading, #contact .heading {
	position: relative;
	padding: 35px 25px;
	background-color: #e9ecef;
	border-radius: 15px;
}
#comments > .heading::before,
#contact .heading::before {
	font-family: 'icomoon' !important;
	content: "\e935";
	float: right;
	font-size: 48px;
	line-height: 48px;
	margin-left: 20px;
}
#contact .heading::before {
	content: "\e961";
}
#comments > .heading::after,
#contact .heading::after {
	content: '';
	position: absolute;
	right: 30px;
	bottom: 0;
	width: 60px;
	height: 5px;
	background-color: var(--blue);
	border-radius: 3px;
	box-shadow: 0 0 15px rgba(35, 71, 251, 0.35);
}
#comments > .heading h2,
#contact .heading h2 {
	display: block;
	margin: 0;
	font-size: 24px;
}
.comments-form {
	display: flex;
}
.comments-form .inputs {
	width: 80%;
}
.comments-form .inputs > div:first-child {
	display: flex;
}
.comments-form .inputs > div:first-child .input-box {
	width: 50%;
}
.comments-form .inputs .input-box {
	margin-left: 30px;
}
.rate {
	display: flex;
	height: 70px;
	border: 1px solid var(--border-color);
	border-radius: 35px;
	margin: 0 0 25px 30px;
	padding: 0 35px;
	line-height: 30px;
	align-items: center;
}
.rate > label {
	line-height: 30px;
	margin-left: auto;
}
.rate label small {
	color: var(--placeholder-color);
	font-weight: 400;
}
.rate div {
	margin-top: 10px;
}
.rate .rate-label {
	display: inline-block;
}
.rate input {
	display: none;
}
.rate i {
	font-size: 36px;
	margin: 5px 10px;
	transition: all .3s;
	cursor: pointer;
	padding: 10px;
	border-radius: 5px;
}
.rate .icon-score-1:hover,
.rate input:checked + label .icon-score-1 {
	color: #ef394e;
	background-color: #feebed;
}
.rate .icon-score-2:hover,
.rate input:checked + label .icon-score-2 {
	color: #ff6d00;
	background-color: #ffedcc;
}
.rate .icon-score-3:hover,
.rate input:checked + label .icon-score-3 {
	color: #ffbf00;
	background-color: #fff7cc;
}
.rate .icon-score-4:hover,
.rate input:checked + label .icon-score-4 {
	color: #49a7ff;
	background-color: #daf4ff;
}
.rate .icon-score-5:hover,
.rate input:checked + label .icon-score-5 {
	color: #54bf26;
	background-color: #eafbd3;
}
.comments-form .submit {
	width: 20%;
	align-self: flex-end;
	margin-bottom: 30px;
}
.comments-form .submit .btn {
	padding: 9px 30px;
	height: 50px;
}

.comments {
	margin: 30px 0;
	background-color: #fff;
	border-radius: 20px;
	padding: 25px 30px;
}
.comments .heading h2 {
	margin: 0;
	font-weight: 600;
}
.comments .heading h2::before {
	font-family: 'icomoon' !important;
	content: "\e93f";
	font-weight: 400;
	float: right;
	margin-left: 10px;
}
.comments .sort {
	margin-top: 20px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 20px;
}
.comments .sort::before {
	font-family: 'icomoon' !important;
	content: "\e932";
	float: right;
	line-height: 40px;
	margin-left: 10px;
	font-size: 16px;
}
.comments .sort ul::before {
	content: 'مرتب سازی بر اساس:';
}
.comments .sort ul li {
	display: inline-block;
	cursor: pointer;
	transition: all .3s;
	border-radius: 20px;
}
.comments .sort ul li:hover {
	background-color: var(--info-bg);
}
.comments .sort ul li:first-child {
	margin-right: 25px;
}
.comments .sort ul input:checked + label, .comments .sort ul input:checked + label:hover {
	background-color: var(--blue);
	color: #fff;
}
.comments .sort ul li input {
	display: none;
}
.comments .sort ul li label {
	padding: 5px 25px;
	line-height: 30px;
	border-radius: 20px;
	font-weight: normal;
	transition: all .3s;
	cursor: pointer;
}

.comment {
	padding: 25px 0;
	margin: 25px 0;
	border-bottom: 1px solid var(--border-color);
}
.comment:last-child {
	border: 0;
}
.comment .info {
	display: flex;
	color: var(--placeholder-color);
}
.comment .info span {
	display: inline-block;
	margin-left: 20px;
}
.comment .info span:last-child {
	margin-left: 0;
}
.comment .info .name::before, .comment .info .time::before {
	font-family: 'icomoon' !important;
	float: right;
	line-height: 30px;
	margin-left: 6px;
	font-size: 18px;
}
.comment .info .name::before {
	content: "\e94e";
}
.comment .info .time::before {
	content: "\e933";
}
.comment .info .rating {
	display: inline-block;
	margin-right: auto;
	padding: 5px 25px;
	border-radius: 20px;
	height: 40px;
}
.comment .info .rate-5 {
	color: #54bf26;
	background-color: #eafbd3;
}
.comment .info .rate-5::before {
	font-family: 'icomoon' !important;
	content: "\e949";
	font-size: 24px;
	float: right;
	margin-left: 10px;
}
.comment .info .rate-5::after {
	content: 'لذت بردم!';
}
.comment .info .rate-4 {
	color: #49a7ff;
	background-color: #daf4ff;
}
.comment .info .rate-4::before {
	font-family: 'icomoon' !important;
	content: "\e948";
	font-size: 24px;
	float: right;
	margin-left: 10px;
}
.comment .info .rate-4::after {
	content: 'خوب بود!';
}
.comment .info .rate-3 {
	color: #ffbf00;
	background-color: #fff7cc;
}
.comment .info .rate-3::before {
	font-family: 'icomoon' !important;
	content: "\e947";
	font-size: 24px;
	float: right;
	margin-left: 10px;
}
.comment .info .rate-3::after {
	content: 'هعی بد نبود!';
}
.comment .info .rate-2 {
	color: #ff6d00;
	background-color: #ffedcc;
}
.comment .info .rate-2::before {
	font-family: 'icomoon' !important;
	content: "\e946";
	font-size: 24px;
	float: right;
	margin-left: 10px;
}
.comment .info .rate-2::after {
	content: 'دوست نداشتم!';
}
.comment .info .rate-1 {
	color: #ef394e;
	background-color: #feebed;
}
.comment .info .rate-1::before {
	font-family: 'icomoon' !important;
	content: "\e945";
	font-size: 24px;
	float: right;
	margin-left: 10px;
}
.comment .info .rate-1::after {
	content: 'عصبانیم!';
}
.comment .body {
	margin: 15px 0;
}
.comment .actions {
	text-align: left;
}
.comment .actions span {
	display: inline-block;
	padding: 5px 25px;
	background-color: var(--bg-color);
	height: 40px;
	border-radius: 20px;
	cursor: pointer;
	transition: all .3s;
}
.comment .actions span:hover {
	background-color: var(--info-bg);
}
.comment .actions .like::before {
	font-family: 'icomoon' !important;
	content: "\e93c";
	float: left;
	font-size: 20px;
	color: var(--blue);
	margin-right: 5px;
	line-height: 30px;
}
.comment .actions .dislike::before {
	font-family: 'icomoon' !important;
	content: "\e936";
	float: right;
	font-size: 20px;
	color: var(--blue);
	margin-left: 5px;
	line-height: 30px;
}
.comment .reply {
	margin-top: 15px;
	padding-right: 25px;
	border-right: 5px solid var(--warning);
}
.comment .reply .name {
	font-weight: 600;
	color: var(--blue);
}
.comment-product {
	display: flex;
	margin-bottom: 25px;
}
.comment-product > div:first-child {
	background-color: #fff;
}
.comment-product > div:last-child {
	margin-right: auto;
	margin-top: 30px;
}
.comment-product > div .title {
	margin-top: 30px;
	font-weight: 600;
}
.comment-product > div .weight {
	position: relative;
	display: flex;
	width: 250px;
	color: var(--placeholder-color);
	font-size: 12px;
}
.comment-product > div .weight::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	border-bottom: 1px dashed var(--border-color);
}
.comment-product > div .weight span {
	display: inline-block;
	position: sticky;
	z-index: 1;
	background-color: #fff;
	padding-left: 10px;
}
.comment-product > div .weight span:last-child {
	margin-right: auto;
	padding-left: 0;
	padding-right: 10px;
}

.sticky-card {
	float: left;
	position: sticky;
	top: 105px;
	width: 25%;
	margin: 30px 0 60px;
	border-radius: 15px;
}

/* ---------- category ---------- */
#category > .heading {
	background-color: #fff;
	padding: 15px 25px;
	border-radius: 25px;
}
#category > .heading h1 {
	display: inline-block;
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}
#category > .heading h1::after {
	content: '|';
	margin: 0 35px;
	font-weight: 100;
	color: var(--placeholder-color);
}
#category .sort {
	display: inline-block;
}
#category .sort span {
	display: inline-block;
}
#category .sort span::before {
	font-family: 'icomoon' !important;
	content: '\e950';
	float: right;
	line-height: 30px;
	font-size: 18px;
	margin-left: 10px;
}
#category .sort div {
	display: inline-block;
	margin-right: 35px;
}
#category .sort div label {
	display: inline-block;
	padding: 0 25px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: normal;
}
#category .sort div label:hover {
	background-color: var(--info-bg);
	transition: all .3s;
}
#category .sort div input {
	display: none;
}
#category .sort div input:checked + label {
	background-color: var(--blue);
	color: #fff;
}
#category .all {
	float: left;
	margin-top: 15px;
	color: var(--placeholder-color);
}
#category .filters {
	padding-top: 30px;
}
#category .filters .lead {
	display: inline-block;
	font-weight: 600;
}
#category .filters .lead::before {
	font-family: 'icomoon' !important;
	content: "\e952";
	float: right;
	font-size: 20px;
	color: var(--blue);
	font-weight: 400;
	margin-left: 10px;
	line-height: 30px;
}
#category .filters ul {
	display: inline-block;
	padding: 0 25px;
}
#category .filters ul li {
	display: inline-block;
	padding: 0 2px;
}
#category .filters ul li .btn {
	padding: 0 15px;
	height: 32px;
	cursor: default;
}
#category .filters ul li .btn:hover {
	background-color: transparent;
	border-color: var(--blue);
	color: var(--blue);
	box-shadow: none;
}
#category .filters ul li .btn i {
	cursor: pointer;
}
#category .filters .btn-danger-o {
	float: left;
	padding: 0 15px;
	height: 32px;
}
.category {
	display: flex;
	margin-top: 30px;
}
.category aside {
	width: 25%;
	padding-left: 30px;
}
.closefilterProducts {
	display: none;
}
.category aside .sidebar {
	border-radius: 20px;
	background-color: #fff;
	padding: 15px 25px;
	margin-bottom: 30px;
}
.category aside .sidebar-close .body {
	display: none;
}
.category aside .sidebar .heading {
	font-weight: 500;
	cursor: pointer;
}
.category aside .sidebar .heading::after {
	font-family: 'icomoon' !important;
	content: "\e937";
	float: left;
	font-size: 18px;
	transition: all .3s;
}
.category aside .sidebar-close .heading::after {
	transform: rotate(90deg);
}
.category .sidebar .single-action .on-off {
	float: left;
}
#slider-range {
	margin-bottom: 20px;
}
.price-filter-from,
.price-filter-to {
	position: relative;
	margin: 10px 0;
}
.price-filter-from::before,
.price-filter-to::before {
	position: absolute;
	top: 4px;
	right: 0;
	color: var(--placeholder-color);
}
.price-filter-from::before {
	content: 'از';
}
.price-filter-to::before {
	content: 'تا';
}
.price-filter-from::after,
.price-filter-to::after {
	content: 'تومان';
	position: absolute;
	top: 4px;
	left: 0;
	color: var(--placeholder-color);
}
.price-filter-from input,
.price-filter-to input {
	width: 100%;
	border: 0;
	border-bottom: 1px solid var(--border-color);
	border-radius: 0;
	text-align: center;
	padding: 4px 25px;
	font-weight: bold;
}
.category aside .sidebar .body {
	border-top: 1px solid var(--border-color);
	padding-top: 20px;
	margin-top: 10px;
}
.category aside .sidebar .body ul li {
	margin: 5px 0;
	overflow: hidden;
}
.category aside .sidebar .body ul li img {
	float: left;
	height: 30px;
	width: 30px;
	margin-left: 10px;
}
.category aside .sidebar .body ul li ul {
	padding-right: 20px;
}
.category aside .sidebar .body ul .more-cats:hover {
	color: var(--blue);
}
.category .products {
	width: 75%;
}
.sidebar-limited-ul {
	max-height: 300px;
	overflow: auto;
}
.sidebar-limited-ul::-webkit-scrollbar {
	width: 5px;
}
.sidebar-limited-ul::-webkit-scrollbar-track {
	background: var(--bg-color); 
	border-radius: 4px;
}
.sidebar-limited-ul::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background: var(--border-color); 
}
.sidebar-limited-ul::-webkit-scrollbar-thumb:hover {
	background: var(--placeholder-color); 
}

.products-list {
	margin-top: 30px;
}
.products-list .products .body .card {
	position: sticky;
	z-index: 1;
	width: 20%;
	border-left: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.products-list .products .body .card:nth-child(5n+0) {
	border-left: 0;
}
.products-list .products .body .card:hover {
	box-shadow: 0 0 50px rgba(0, 0, 0, .1);
	z-index: 2;
}

/* ---------- cart ---------- */
#cart {
	margin-bottom: 50px;
}
.cart-image {
	padding: 50px 0;
	text-align: center;
}
.cart-image img {
	width: 400px;
	max-width: 100%;
}
.cart-image div {
	font-size: 18px;
	font-weight: 600;
	margin-top: 25px;
}

.cart {
	width: 75%;
	float: right;
}
.cart-wrapper {
	background-color: #fff;
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 30px;
}
.cart-wrapper .heading {
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 10px;
}
.cart-wrapper .heading > i {
	float: right;
	line-height: 44px;
	font-size: 28px;
	margin-left: 10px;
}
.cart-wrapper .heading h1 {
	display: inline-block;
	font-size: 24px;
	margin: 0;
	font-weight: 600;
}
.cart-wrapper .heading .cart-products-count {
	display: inline-block;
	color: var(--placeholder-color);
}
.cart-wrapper .heading .cart-products-count::before {
	content: '|';
	margin: 0 25px;
	font-size: 20px;
	color: var(--border-color);
}
.cart-wrapper .heading .btn {
	float: left;
}
.cart-item {
	display: flex;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
}
.cart-item:last-child {
	border-bottom: 0;
}
.cart-item .img {
	position: relative;
	width: 100px;
}
.cart-item .img > span {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 22px;
	height: 22px;
	line-height: 24px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
	background-color: var(--warning);
}
.cart-item .title {
	padding: 15px;
}
.cart-item .title a {
	color: var(--text-color);
	font-weight: 500;
	font-size: 16px;
}
.cart-item .title a:hover {
	color: var(--blue);
}
.cart-item .title .weight {
	position: relative;
	min-width: 250px;
	color: var(--placeholder-color);
	font-weight: 200;
}
.cart-item .title .weight::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	border-top: 1px dashed var(--border-color);
	z-index: 1;
}
.cart-item .title .weight span {
	display: inline-block;
	position: sticky;
	z-index: 2;
	background-color: #fff;
}
.cart-item .title .weight span:first-child {
	padding-left: 10px;
}
.cart-item .title .weight span:last-child {
	float: left;
	padding-right: 10px;
}
.cart-item .price {
	margin-right: auto;
	min-width: 125px;
	text-align: left;
}
.cart-item .price .amount .discount span:first-child {
	text-decoration: line-through;
	font-size: 12px;
	color: var(--placeholder-color);
}
.cart-item .price .amount .discount span:last-child {
	margin-right: auto;
}
.cart-item .price .amount .discount .percent {
	background-color: var(--warning);
	padding: 0 7px;
	border-radius: 15px;
}
.cart-item .price .amount .final span {
	font-size: 18px;
	font-weight: 600;
}
.cart-item .price .actions {
	text-align: center;
	margin-top: 15px;
}
.cart-item .price .actions .name {
	font-weight: 700;
	line-height: 32px;
	color: var(--blue);
}
.cart-item .price .actions .name small {
	font-size: 12px;
	font-weight: 400;
}
.cart-item .price .actions .increase, .cart-item .price .actions .decrease {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid var(--blue);
	border-radius: 50%;
	line-height: 28px;
	font-size: 16px;
	padding-left: 1px;
	cursor: pointer;
	color: var(--blue);
}
.cart-item .price .actions .increase {
	float: left;
}
.cart-item .price .actions .increase::before {
	font-family: 'icomoon' !important;
	content: "\e92c";
}
.cart-item .price .actions .decrease {
	float: right;
}
.cart-item .price .actions .decrease::before {
	font-family: 'icomoon' !important;
	content: "\e940";
}
.cart-item .price .actions .remove {
	float: right;
	color: var(--danger);
	cursor: pointer;
	font-size: 16px;
	line-height: 30px;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border: 1px solid var(--border-color);
	border-radius: 50%;
}
.cart-item .price .actions .remove::before {
	font-family: 'icomoon' !important;
	content: "\e94c";
}

#cart-sidebar {
	float: left;
	position: sticky;
	top: 120px;
	width: 25%;
	padding-right: 30px;
	margin-bottom: 30px;
}
#cart-sidebar .steps {
	display: flex;
	color: var(--placeholder-color);
}
#cart-sidebar .steps > div {
	position: relative;
	width: 33.33%;
	text-align: center;
	font-size: 12px;
}
#cart-sidebar .steps > .active {
	color: var(--blue);
}
#cart-sidebar .steps > div::after {
	content: '';
	position: absolute;
	top: 15px;
	left: -15px;
	width: 30px;
	height: 4px;
	background-color: var(--placeholder-color);
	border-radius: 2px;
}
#cart-sidebar .steps > .active::after {
	background-color: var(--blue);
}
#cart-sidebar .steps > div:last-child::after {
	display: none;
}
#cart-sidebar .steps > div i {
	display: block;
	font-size: 28px;
	margin: 0 auto;
}
.cart-sidebar {
	background-color: #fff;
	border-radius: 20px;
	padding: 15px 25px 30px;
	margin-top: 15px;
}
.cart-sidebar .item {
	padding: 10px 0;
}
.cart-sidebar .item:first-child {
	border-bottom: 1px solid var(--border-color);
}
.cart-sidebar .name {
	margin-top: 10px;
}
.cart-sidebar .name i {
	float: right;
	line-height: 30px;
	font-size: 18px;
	margin-left: 10px;
}
.cart-sidebar .name .icon-badge-percent {
	font-size: 36px;
	margin: 0 -10px 0 -5px;
	color: var(--danger);
}
.cart-sidebar .name .icon-coins {
	color: var(--warning);
}
.cart-sidebar .item .amount {
	text-align: left;
	font-weight: 600;
	font-size: 16px;
}
.cart-sidebar .item .amount small {
	font-size: 12px;
	font-weight: 350;
}
.cart-sidebar .btn {
	margin-top: 15px;
	height: 50px;
	padding: 9px 35px;
}
.cart-sidebar .btn span {
	display: inline-block;
}

.new-address {
	position: relative;
	margin: 50px 0 30px;
}
.new-address .icon-add-circle {
	position: absolute;
	left: 20px;
	bottom: 40px;
	font-size: 20px;
	cursor: pointer;
}

.address {
	position: relative;
	margin: 20px 0;
}
.address .radio {
	position: absolute;
	top: 10px;
	right: 20px;
}
.address label {
	font-weight: 350;
	border: 1px solid var(--border-color);
	padding: 10px 50px 10px 20px;
	border-radius: 25px;
	line-height: 30px;
	cursor: pointer;
}
.profile-address label {
	padding-right: 20px;
}
.address label span {
	display: inline-block;
}
.address label span::after {
	content: '|';
	margin: 0 15px;
	color: var(--placeholder-color);
}
.address label span:last-child::after {
	display: none;
}
.address .radio:checked + label {
	background-color: #f2f7ff;
	border-color: #f2f7ff;
}
.address .icon-edit {
	position: absolute;
	top: 10px;
	left: 50px;
	font-size: 18px;
	cursor: pointer;
	line-height: 30px;
}
.address .icon-edit:hover {
	color: var(--info);
}
.address .icon-trash {
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 18px;
	cursor: pointer;
	line-height: 30px;
}
.address .icon-trash:hover {
	color: var(--danger);
}

.shipping-type {
	display: flex;
	flex-wrap: nowrap;
}
.shipping-type > div {
	width: 50%;
	border-bottom: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
	padding: 35px 25px;
}
.shipping-type > div:last-child {
	border-left: 0;
}
.shipping-type > div label {
	display: flex;
	font-weight: 350;
	color: var(--placeholder-color);
	line-height: 30px;
	cursor: pointer;
}
.shipping-type > div i {
	font-size: 56px;
	margin-top: 15px;
	margin-left: 25px;
}
.shipping-type > div label span {
	display: block;
	font-weight: 600;
	color: var(--text-color);
}

.time-periods {
	padding: 50px 0;
}
.time-periods .days li {
	display: inline-block;
	cursor: pointer;
	padding: 4px 25px;
	line-height: 30px;
	border-radius: 20px;
	margin-left: 4px;
	border: 1px solid var(--info);
	color: var(--info);
}
.time-periods .days .active {
	color: #fff;
	background-color: var(--info);
}
.time-periods .periods {
	margin-top: 30px;
}
.time-periods .periods label {
	display: inline-block;
	border: 1px solid var(--border-color);
	font-weight: 350;
	padding: 5px 20px;
	border-radius: 20px;
	margin: 10px 0 10px 10px;
	line-height: 30px;
	cursor: pointer;
}
.time-periods .periods input[type="radio"] {
	display: none;
}
.time-periods .periods input[type="radio"]:checked + label {
	color: var(--text-color);
	background-color: var(--warning);
	border-color: var(--warning);
}
.time-periods .periods input[type="radio"]:disabled + label {
	opacity: .5;
	cursor: not-allowed;
}
.time-periods .periods label span {
	display: inline-block;
	margin: 0 5px;
}
.time-periods .tab {
	display: none;
}
.time-periods .tab-in {
	display: inherit;
}

.select-gateway {
	padding: 30px 0;
}
.select-gateway > label {
	color: var(--placeholder-color);
}
.gateways {
}
.gateways label {
	display: inline-block;
	position: relative;
	border: 1px solid var(--border-color);
	border-radius: 15px;
	margin: 20px 0 20px 20px;
	cursor: pointer;
}
.gateways label img {
	width: 125px;
	border-radius: 15px;
}
.gateways input[type="radio"] {
	display: none;
}
.gateways input[type="radio"]:checked + label {
	border-color: var(--info);
}
.gateways input[type="radio"]:checked + label::before {
	content: '';
	position: absolute;
	bottom: -2px;
	width: 50px;
	height: 4px;
	border-radius: 2px;
	background-color: var(--info);
	left: 50%;
	transform: translate(-50%, 0);
	box-shadow: 0 5px 20px rgba(35, 71, 251, 0.7);
}

.order-summary {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.order-summary > div {

}
.order-summary > div:first-child > span {
	font-weight: 700;
	font-size: 16px;
}
.order-summary > div:first-child > span i {
	float: right;
	line-height: 30px;
	font-size: 20px;
	margin-left: 10px;
}
.order-summary > div:last-child {
	margin-right: auto;
}
.table-responsive {
}
.table {
	width: 100%;
}
.table tr {
}
.table tr th, .table tr td {
	border: 1px solid var(--border-color);
	padding: 20px;
	vertical-align: middle;
	text-align: center;
}
.table tr th {
	background-color: #fff;
	font-weight: 600;
}
.table tr th i, .table tr td i {
	float: right;
	line-height: 30px;
	font-size: 18px;
	margin-left: 5px;
}
.table tr th span, .table tr td span {
	display: inline-block;
}
.table tr td big {
	font-weight: 700;
}
.table tr td small {
	font-weight: 400;
}

/* faq */
.faq-item {
	background-color: #fff;
	padding: 15px 20px;
	border-radius: 10px;
	margin: 20px 0;
}
.faq-item .question {
	font-weight: 600;
	cursor: pointer;
	padding-left: 50px;
}
.faq-item .question::before {
	font-family: 'icomoon' !important;
	content: "\e960";
	float: right;
	font-size: 20px;
	line-height: 30px;
	margin-left: 10px;
	color: var(--warning);
}
.faq-item .question::after {
	font-family: 'icomoon' !important;
	content: "\e937";
	float: left;
	margin-top: 2px;
	margin-left: -60px;
	line-height: 25px;
	width: 26px;
	height: 26px;
	border: 1px solid var(--info);
	border-radius: 50%;
	text-align: center;
	color: var(--info);
	font-size: 16px;
	transition: all .3s;
}
.faq-item-open .question::after {
	transform: rotate(180deg);
	border-color: var(--danger);
	color: var(--danger);
}
.faq-item .answer {
	display: none;
	color: var(--placeholder-color);
	padding-top: 20px;
}
.faq-item-open .answer {
	display: block;
}
/* /faq */

/* popup */
#popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(51, 65, 85, .3);
	z-index: 9;
	display: none;
}
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 486px;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 30px;
	z-index: 12;
}
.popup .heading {
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}
.popup .heading i {
	float: right;
	line-height: 30px;
	font-size: 18px;
	margin-left: 10px;
}
.popup .close-popup {
	position: absolute;
	top: 20px;
	left: 20px;
	cursor: pointer;
	font-size: 20px;
}
.popup .body {
	padding: 10px 0 0;
}
.popup .body .btn-info {
	height: 50px;
	padding: 9px 35px;
	margin-top: 20px;
}
.auth-counter {
	display: flex;
	margin-top: 20px;
	color: var(--placeholder-color);
}
.auth-counter > div:last-child {
	margin-right: auto;
}
.auth-counter > div:last-child span {
	cursor: pointer;
}
/* /popup */

/* contact */
#contact {
	margin: 120px 0 50px;
}
.contact {
	float: right;
	width: 75%;
}
.contact-info {
	background-color: #fff;
	border-radius: 20px;
	margin: 30px 0;
}
.contact-info .item {
	display: flex;
	padding: 15px 25px;
	border-bottom: 1px solid var(--border-color);
	align-items: baseline;
}
.contact-info .item:last-child {
	border-bottom: 0;
}
.contact-info .item .name {
	font-weight: 700;
	width: 150px;
}
.contact-info .item .name::after {
	content: '|';
	float: left;
	margin: 0 15px 0 25px;
	font-weight: 400;
	color: var(--border-color);
}
.contact-info .item .name i {
	float: right;
	font-size: 20px;
	line-height: 30px;
	margin-left: 15px;
	color: var(--placeholder-color);
}
.contact-info .item .value {
	font-size: 16px;
}
.contact-info .item .copy {
	margin-right: auto;
}
.contact-info .item .copy i {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	background-color: var(--info-bg);
	color: var(--info);
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	cursor: pointer;
}
.contact-form {
	flex-wrap: wrap;
}
.contact-form-heading {
	position: relative;
	width: 100%;
	display: flex;
	padding-bottom: 30px;
	margin-bottom: 40px;
}
.contact-form-heading i {
	font-size: 56px;
	margin-left: 30px;
}
.contact-form-heading h2 {
	margin: 0;
	font-size: 24px;
}
.contact-form-heading::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 60px;
	height: 5px;
	background-color: var(--blue);
	border-radius: 3px;
	box-shadow: 0 0 15px rgba(35, 71, 251, 0.35);
}
.contact-sidebar {
	float: left;
	width: 25%;
	padding-right: 30px;
}
.contact-sidebar aside {
	position: sticky;
	top: 120px;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	color: var(--placeholder-color);
}
.contact-sidebar aside .btn {
	height: 50px;
	padding: 9px 25px;
	margin-top: 25px;
}
/* /contact */


/* ---------- profile ---------- */
#profile {
	padding: 50px 0;
}
.profile-sidebar {
	float: right;
	width: 25%;
	padding-left: 30px;
	position: sticky;
	top: 100px;
}
.profile-sidebar aside {
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 30px;
}
.profile-sidebar aside .heading {
	padding: 15px 25px 10px;
	font-weight: 600;
	border-bottom: 1px solid var(--border-color);
}
.profile-sidebar aside ul {
	padding: 15px 0;
}
.profile-sidebar aside ul li {
	margin: 10px 0;
	padding: 0 15px;
}
.profile-sidebar aside ul li a {
	display: block;
	padding: 10px 25px;
	color: var(--text-color);
	border-radius: 25px;
}
.profile-sidebar aside ul li a:hover {
	background-color: var(--info-bg);
}
.profile-sidebar aside ul .active a {
	background-color: var(--info-pink);
	color: #fff;
}
.profile-sidebar aside ul .active a:hover {
	background-color: var(--info-pink-light);
}
.profile-sidebar aside ul li a i {
	float: right;
	line-height: 30px;
	font-size: 20px;
	margin-left: 10px;
}
.profile-sidebar aside ul .active i {
	color: #fff;
}
.profile-sidebar .logout {
	height: 50px;
	border-radius: 25px;
	background-color: #fff;
}
.profile-sidebar .logout a {
	display: block;
	padding: 10px 25px;
	color: var(--danger);
}
.profile-sidebar .logout a i {
	float: right;
	line-height: 30px;
	font-size: 20px;
	margin-left: 10px;
}
.profile {
	float: left;
	width: 75%;
}
.panel {
	background-color: #fff;
	border-radius: 20px;
}
.panel .heading {
	padding: 20px 30px;
	font-weight: 600;
	color: var(--info);
	border-bottom: 1px solid var(--border-color);
}
.panel .heading i {
	float: right;
	line-height: 30px;
	margin-left: 10px;
	font-size: 20px;
}
.panel .heading-center {
	text-align: center;
	font-size: 20px;
}
.panel .heading-center i {
	float: none;
	display: block;
	margin: 0 auto;
	line-height: 50px;
	margin-left: 0;
	font-size: 32px;
}
.panel .heading-order {
	padding: 30px;
	display: flex;
	color: var(--text-color);
	align-items: center;
}
.panel .heading-order .title {
	font-size: 20px;
	font-weight: 600;
}
.panel .heading-order .title i {
	float: right;
	line-height: 30px;
	font-size: 24px;
	margin-left: 10px;
}
.panel .heading-order .date {
	padding-right: 30px;
	color: var(--placeholder-color);
	font-weight: 300;
}
.panel .heading-order > div:last-child {
	margin-right: auto;
}
.panel .heading-order > div:last-child .btn {
	margin-right: 10px;
}
.panel .body {
	padding: 30px;
}
.panel .comment .body {
	padding: 0;
}
.no-comments {
	padding: 50px;
	text-align: center;
	font-weight: 600;
}
.no-comments img {
	margin-left: 20px;
	display: block;
	margin: 10px auto;
}

.orders-tabs {
	text-align: center;
	padding: 50px 0;
}
.orders-tabs ul {
	display: flex;
	justify-content: center;
}
.orders-tabs ul li {
	width: 175px;
	padding: 10px;
}
.orders-tabs ul li a {
	display: block;
	position: relative;
	border: 1px solid var(--border-color);
	padding: 20px 0;
	border-radius: 30px;
	color: var(--text-color);
}
.orders-tabs ul li:hover a,
.orders-tabs ul .active a {
	border-color: var(--info);
}
.orders-tabs ul .active a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -2px;
	transform: translate(-50%, 0);
	width: 60px;
	height: 4px;
	border-radius: 2px;
	background-color: var(--info);
	box-shadow: 0 5px 20px rgba(35, 71, 251, 0.5);
}
.orders-tabs ul li a i {
	display: block;
	margin: 0 auto 10px;
	font-size: 42px;
}
.orders-tabs ul li a span {
	position: absolute;
	top: 44px;
	left: 48px;
	width: 22px;
	height: 22px;
	text-align: center;
	line-height: 24px;
	border-radius: 50%;
	background-color: var(--warning);
	font-size: 12px;
}

.orders-empty {
	padding: 75px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	border-top: 1px solid var(--border-color);
}
.orders-empty > div {
	padding: 0 10px;
}
.order-item {
	display: flex;
	border-top: 1px solid var(--border-color);
	padding: 30px 0;
	align-items: center;
}
.order-item > div:last-child {
	margin-right: auto;
	min-width: 150px;
}
.order-item > div:last-child .btn {
	margin-bottom: 10px;
}
.order-item > div:last-child .btn-o {
	border-color: var(--border-color);
}
.order-item .info {
	display: flex;
}
.order-item .info span {
	display: inline-block;
}
.order-item .info span::after {
	content: '|';
	margin: 0 15px;
	color: var(--border-color);
}
.order-item .info span:last-child::after {
	content: '';
}
.order-item .info span i {
	float: right;
	line-height: 30px;
	font-size: 18px;
	margin-left: 5px;
}
.order-item .order-products {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 0 20px;
}
.order-item .order-products img {
	width: 75px;
	margin: 10px;
}

.order-items {
	margin-top: 40px;
}

.order-detail {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	border: 1px solid var(--border-color);
	border-radius: 15px;
	overflow: hidden;
}
.order-detail > div {
	border-left: 1px solid var(--border-color);
}
.order-detail > div:first-child {
	min-width: 20%;
}
.order-detail > div:nth-child(2) {
	min-width: 15%;
}
.order-detail > div:nth-child(3) {
	min-width: 15%;
}
.order-detail > div:nth-child(4) {
	min-width: 15%;
}
.order-detail > div:last-child {
	border-left: 0;
	flex: 1;
}
.order-detail > div > div:first-child {
	border-bottom: 1px solid var(--border-color);
	background-color: #fff;
	font-weight: 600;
}
.order-detail > div > div {
	padding: 20px;
	vertical-align: middle;
	text-align: center;
}
.order-detail > div > div i {
	float: right;
	line-height: 30px;
	font-size: 18px;
	margin-left: 5px;
}
.order-detail > div > div span {
	display: inline-block;
}
.order-detail > div > div big {
	font-weight: 700;
}
.order-detail > div > div small {
	font-weight: 400;
}
	

/* ---------- footer ---------- */
footer {
	position: relative;
	margin-top: 300px;
	background-color: #fff;
	padding-top: 25px;
}
footer::before {
	content: '';
	position: absolute;
	top: -250px;
	right: 0;
	left: 0;
	height: 250px;
	background: url(../images/city-pink.svg) repeat-x top;
	background-size: 75%;
}

/* footer-nav */
.footer-nav {
	display: flex;
	flex-wrap: nowrap;
}
.footer-nav > div:first-child {
	width: 25%;
	font-size: 20px;
	font-weight: 200;
	color: var(--placeholder-color);
}
.footer-nav > div:first-child img {
	display: block;
	margin-bottom: 10px;
	height: 40px;
}
.footer-nav > div:last-child {
	width: 75%;
	background-color: var(--bg-color);
	height: 60px;
	border-radius: 30px;
	padding: 15px 30px;
	margin-top: 10px;
}
.footer-nav > div:last-child > span {
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-size: 15px;
	padding-right: 20px;
}
.footer-nav > div:last-child > span::before {
	content: '';
	position: absolute;
	top: 11px;
	right: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--blue);
}
.footer-nav ul {
	display: inline-block;
	padding-right: 30px;
}
.footer-nav ul li {
	display: inline-block;
}
.footer-nav ul li a {
	display: block;
	padding: 0 20px;
	color: var(--text-color);
}
.footer-nav ul li a:hover {
	color: var(--blue);
}
.footer-nav > div:last-child > a {
	float: left;
	margin: -5px 0 0 -20px;
}
.footer-nav > div:last-child > a i {
	float: left;
	line-height: 30px;
	margin-right: 8px;
	margin-left: -8px;
}

/* footer-features */
.footer-features {
	display: flex;
	flex-wrap: nowrap;
	padding: 25px 0;
}
.footer-features > div {
	position: relative;
	width: 23%;
	margin: 30px 0 30px 2.66%;
	padding: 30px;
	text-align: center;
	border: 1px solid var(--border-color);
	border-radius: 30px;
	background-color: #fff;
	box-shadow: 5px 5px 0 0 var(--border-color);
	transition: box-shadow .3s;
}
.footer-features > div:last-child {
	margin-left: 0;
}
.footer-features > div:hover {
	box-shadow: none;
}
.footer-features > div > .icon {
	display: block;
	font-size: 72px;
	margin: 0 auto 20px;
}
.footer-features > div > .title {
	display: block;
	font-weight: 600;
	font-size: 16px;
}
.footer-features > div > .description {
	font-size: 12px;
	color: var(--placeholder-color);
	line-height: 20px;
	display: block;
	margin-top: 10px;
}

/* footer-info */
.footer-info {
	display: flex;
}
.footer-info > div {
	width: 50%;
}
.footer-about > div:first-child > span {
	display: inline-block;
}
.footer-about > div:first-child > span:first-child {
	font-size: 18px;
}
.footer-about > div:first-child > span:first-child::after {
	content: '|';
	margin: 0 10px;
}
.footer-about > div:first-child > span:first-child i {
	float: right;
	font-size: 20px;
	line-height: 30px;
	color: var(--blue);
	margin-left: 10px;
}
.footer-about > div:first-child > span:first-child .phone-number {
	display: inline-block;
	direction: ltr;
}
.footer-about > div:last-child {
	line-height: 24px;
	margin-top: 10px;
	color: var(--placeholder-color);
}
.footer-logoes {
	text-align: left;
}
.footer-logoes img {
	width: 120px;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	margin-right: 10px;
}

.mobile-insta {
	display: none;
}
/* copyright */
.copyright {
	direction: ltr;
	font-family: sans-serif;
	background-color: var(--bg-color);
	margin-top: 40px;
	color: var(--placeholder-color);
	text-align: center;
	padding: 10px;
}

.cart-loader {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.6);
	z-index: 100;
}
.cart-loader .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.discount {
	display: flex;
	margin: 20px 0;
}
.discount input {
	margin: 0;
	height: 44px;
	border-radius: 0 22px 22px 0;
	border-left: 0;
	transition: all .3s;
}
.discount input:focus {
	border-color: var(--border-color);
}
.discount .btn-warning {
	margin: 0;
	padding: 6px 20px;
	height: 44px;
	border-radius: 22px;
	border-right: 0;
	margin-right: -22px;
}
.not-found {
	display: flex;
}
.not-found img {
	width: 50%;
	max-width: 50%;
}
.not-found > div {
	position: relative;
	width: 50%;
	max-width: 50%;
	text-align: center;
}
.not-found > div > div {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translate(0, -50%);
}
.not-found > div > div > div {
	display: block;
	font-size: 72px;
	font-weight: bold;
	color: var(--blue);
}
.not-found > div > div > h1 {
	margin: 30px 0;
}

.about-heading {
	height: 400px;
	background: url(../images/city2.svg) repeat-x bottom;
	background-size: 110%;
	background-color: #fed24b;
}
.about-heading .container {
	position: relative;
	height: 100%;
}
.about-heading .container::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 400px;
	height: 400px;
	background: url(../images/cook.webp) bottom;
	background-size: cover;
}
.about-heading .container > div {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	padding-right: 50px;
}
.about-heading .container > div::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 6px;
	border-radius: 3px;
	background-color: #fff;
}
.about-heading .container > div::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 50%;
	width: 6px;
	border-radius: 3px;
	background-color: var(--blue);
}
.about-heading .container > div > div:first-child {
	display: flex;
	align-items: center;
}
.about-heading .container > div > div:first-child .about-fabito img {
	width: 130px;
}
.about-heading .container > div > div:first-child .about-your-friend {
	margin-right: 25px;
	color: #fff;
	font-size: 32px;
	font-weight: 200;
}
.about-heading .container > div > div:last-child h1 {
	font-size: 22px;
	margin-top: 10px;
	font-weight: normal;
	line-height: 30px;
}
.about-heading .container > div > div:last-child span {
	display: inline-block;
	padding: 6px 20px;
	border-radius: 25px;
	background-color: var(--blue);
	color: #fff;
	margin-right: 5px;
}
#page .about-heading .container::before {
	display: none;
}
#page .about-heading h1 {
	margin: 15px 0;
}
.about-body {
	background-color: #fff;
	border-radius: 20px;
	position: sticky;
	z-index: 2;
	margin-top: -53px;
	padding: 40px 70px;
}

.free-shipping {
	margin: 10px 0 20px;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	overflow: hidden;
}
.free-shipping-heading {
	display: flex;
	padding: 15px 30px;
	background-color: var(--info-bg);
	color: var(--blue);
	font-weight: bold;
	border-bottom: 1px solid var(--border-color);
}
.free-shipping-heading > div:last-child {
	margin-right: auto;
}
.free-shipping-body {
	height: 300px;
	overflow: auto;
}
.free-shipping-body::-webkit-scrollbar {
	width: 5px;
}
.free-shipping-body::-webkit-scrollbar-track {
	background: var(--bg-color); 
	border-radius: 4px;
	margin-bottom: 25px;
}
.free-shipping-body::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background: var(--border-color); 
}
.free-shipping-body::-webkit-scrollbar-thumb:hover {
	background: var(--placeholder-color); 
}
.free-shipping-body > div {
	display: flex;
	padding: 15px 30px;
	border-bottom: 1px solid var(--border-color);
}
.free-shipping-body > div:last-child {
	border-bottom: 0;
}
.free-shipping-body > div > div:last-child {
	margin-right: auto;
}

#goToTop {
	position: fixed;
	left: 30px;
	bottom: 30px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 25px 30px -10px rgba(35, 71, 251, 0.25);
	background-color: #fc036b;
	color: #fff;
	text-align: center;
	line-height: 56px;
	font-size: 24px;
	rotate: 90deg;
	z-index: 7;
}
.mob-shipping {
	display: none;
}
.profile-back {
	display: none;
}
#mob-cart-action {
	display: none;
}
.mob-filters {
	display: none;
}