@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Regular.otf');
	font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 600;
    src: url('../font/Gilroy-Medium.otf');
	font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    font-weight: bold;
    src: url('../font/Gilroy-Bold.otf');
	font-display: swap;
}
:root {
	--blue: #73a400;
	--black: #171a1b;
	--red: #f1404a;
	--yellow: #fff067;
	--bg: #484848;
}
body {
    font-size: 17px;
    font-family: 'Gilroy', Arial, sans-serif;
	line-height: 1.5;
	background: #302e2c;
	color: #fff;
}
a {
	color: var(--blue);
}
a:hover {
	color: var(--red);
	text-decoration: none;	
}
a:focus {
    outline: none;
}
h1,
.h1 {
	font-size: 48px;
	margin: 0;
	font-weight: 600;
}
h2,
.h2 {
	font-size: 20px;
	margin: 10px 0;
}
p {
	margin-bottom: 10px;
	text-align: justify;
}
img {
	border: none;
	vertical-align: bottom;
}
.clear {
	clear: both;
}
@media (min-width: 1400px) {
	.container {
		max-width: 1140px;
	}
}
@media(max-width: 767px) {
	h1,
	.h1 {
		font-size: 24px;
	}
	body {
		font-size: 15px;
	}
}
.open-menu {
	overflow: hidden;
}
/* JavaScript */
.ui-widget {
    font-size: inherit;
    font-family: inherit;
}

/* Mobile */
@media(max-width: 767px) {
	.menu-burger a {
		position: relative;
		width: 20px;
		height: 20px;
		top: 3px;
		display: inline-block;
	}
	.menu-burger a span,
	.menu-burger a:after,
	.menu-burger a:before {
		height: 3px;
		width: 100%;
		position: absolute;
		background: var(--blue);
		left: 0;
		margin: 0 auto;
		transition: 0.4s;
	}
	.menu-burger a span {
		top: 12px;
	}
	.menu-burger a:after,
	.menu-burger a:before {
		content: '';
	}
	.menu-burger a:after {
		bottom: -2px;
	}
	.menu-burger a:before {
		top: 5px;
	}
	.menu-burger a:not(.collapsed) span {
		opacity: 0;
	}
	.menu-burger a:not(.collapsed):before {
		transform: rotate(38deg);
		top: 12px;
	}
	.menu-burger a:not(.collapsed):after {
		transform: rotate(-38deg);
		bottom: 5px;
	}
	.mobile {
		width: 100%;
		position: absolute;
		background: #fff;
		top: -100%;
		height: 100vh;
		z-index: 2;
		padding-top: 100px;
		transition: left .2s linear;
		overflow: scroll;
	}
	.mobile.collapse {
		top: 0;
	}
	.mobile .category-item {
		width: 100%;
		margin: 0;
		display: flex;
		max-width: none;
		align-items: center;
		padding: 10px 20px;
		flex-basis: auto;
		box-shadow: inset 0 1px 0 #dde2e3;
	}
	.mobile-categories > .d-flex {
		flex-direction: column;
	}
	.mobile .category-item path {
		fill: var(--blue);
	}
	.mobile .category-item .image {
		height: 35px;
		width: 50px;
	}
	.mobile .category-item .image svg {
		max-height: 100% !important;
		width: auto !important;
		margin: 0 !important;
	}
	.mobile .category-item .name {
		color: var(--black);
		margin-left: 10px;
	}
	.mobile .footer {
		padding: 0;
	}
	.mobile .footer .bottom {
		padding: 20px;
	}
	.mobile .footer .phone {
		text-align: left;
	}
	.mobile .footer .contact {
		text-align: left;
	}
}

/* Header
-----------------------------------------------------------------------------*/
.header {
	padding: 20px 0;
	z-index: 3;
	position: relative;
}
.header .logo {
	margin-right: 20px;
}
@media(max-width: 767px) {
	.header .logo {
		width: 60px;
	}
	.header .logo img {
		max-width: 100%;
	}
}
.header .link {
	font-size: 22px;
	font-weight: 600;
	text-decoration: none;
	margin: 0 17px;
	color: #fff;
}
.header .link:hover {
	color: var(--red);
}
.header .select-city {
	margin: 0 20px;
}
.select-city {
	border: 1px solid #ffffff4d;
	border-radius: 40px;
	padding: 5px 60px 6px 20px;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	background: url('../image/map.png') no-repeat 90% 50%;
	min-width: 150px;
}
.header .social {
	margin: 0 20px 0;
}
.social {
	display: flex;
}
.social.social-big a {
	width: 50px;
	height: 50px;
	line-height: 46px;
}
.social a {
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border: 1px solid #ffffff4d;
	text-align: center;
	line-height: 35px;
	border-radius: 100%;
}
.social a svg path {
	fill: #fff !important;
}
.social a:hover {
	background-color: var(--blue);
}
.social a:hover svg path {
	fill: #fff !important;
}
@media(max-width: 1199px) {
	.header .link {
		font-size: 17px;
		margin: 0 10px;
	}
	.header .social {
		margin: 0 10px;
	}
	.header .select-city {
		margin: 0 10px;
	}
}

/* Cart */
.cart {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.header .icon,
.cart .icon {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 35px;
	border: 1px solid #ffffff4d;
	border-radius: 16px;
	text-align: center;
	margin-left: 10px;
}
.cart .icon span {
	background: var(--red);
	position: absolute;
	top: -8px;
	right: -7px;
	font-size: 12px;
	display: block;
	color: #fff;
	min-width: 20px;
	height: 20px;
	line-height: 20px;
	border-radius: 100%;
	text-align: center;
	font-weight: 700;
}

/* Breadcrumb
-----------------------------------------------------------------------------*/
.breadcrumb {
    background: #ffffff;
}
.breadcrumb-item + .breadcrumb-item::before {
	font-family: FontAwesome, sans-serif;
	content: "\f105";
	vertical-align: bottom;
}
/* Box
-----------------------------------------------------------------------------*/
.main-box {
	background: var(--bg);
	box-shadow: 0px 1px 1px rgba(23, 27, 24, 0.1);
	border-radius: 24px;
	padding: 30px;
	margin-bottom: 30px;
}
.box {}
.box-header {
	font-size: 48px;
	font-weight: 600;
	margin: 40px 0;
}
@media(max-width: 767px) {
	.box-header {
		font-size: 32px;
		margin: 20px 0;
	}
}
.slideshow-products .owl-stage-outer {
	padding: 0 1px 20px;
}
.slideshow-products .product-item {
	box-shadow: 0 1px 7px rgb(23 27 24 / 10%);
}
.slideshow-products .owl-stage {
	display: flex;
}
.slideshow-products .owl-item {
	display: flex;
}
.slider-nav {
	display: flex;
}
.slider-nav a {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 1px solid var(--blue);
	text-align: center;
	line-height: 44px;
	margin: 2px 5px 0;
}
.slider-nav a path {
	fill: var(--blue) !important;
}
.slider-nav a:hover {
	background: var(--blue);
}
.slider-nav a:hover path {
	fill: #fff !important;
}

/* Category
-----------------------------------------------------------------------------*/
.category > ul {
	border-radius: 4px;
	list-style: none;
	padding: 15px;
	background: #ffffff;
	border: 1px solid #dfdfdf;
	box-shadow: 0 1px 1px #e2e2e2;
}
.category li {
	position: relative;
}
.category a {
	display: block;
	position: relative;
	color: #222;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid #f3f3f3;
}
.category li:hover > a,
.category li.sfHover > a {
	color: #6a9536;
}
.category ul ul a {
	color: #444;
	border: none;
	padding: 3px 0;
	font-size: 14px;
	font-weight: 500;
}
.category ul ul {
	list-style: none;
	display: none;
	padding: 0 0 0 15px;
}
.category .active > ul {
	display: block;
}
.category .active > a {
	font-weight: bold;
	color: #1a89e7;
}
.category-info {
	overflow: hidden;
}
.category-info .image {
	padding-right: 10px;
	float: left;
}
.sort {
	display: flex;
}
.sort a {
	padding: 12px 20px 10px;
	font-size: 12px;
	color: #000;
	border-radius: 40px;
	text-transform: uppercase;
	text-decoration: none;
	background: #b2babd;
	margin-left: 10px;
}
.sort a.selected {
	background: var(--red);
}
@media (max-width: 991px) {
	.sort {
		margin-top: 15px;
	}
}

/* Category list
-----------------------------------------------------------------------------*/
.categories {
	background: url("../image/header.jpg") 50% 50% #201b1c;
	padding: 35px 0 10px;
	margin-bottom: 20px;
}
.category-item {
	cursor: pointer;
	text-align: center;
	padding: 5px;
	flex-basis: 80px;
	line-height: 1.2;
    margin-bottom: 15px;
}
.category-item .image {
	height: 75px;
	display: block;
}
.category-item .name {
	font-weight: 600;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
.category-item.active .name,
.category-item:hover .name {
	color: var(--yellow);
}
.category-item.active path,
.category-item:hover path {
	fill: var(--yellow) !important;
}
@media (max-width: 991px) {
	.category-item {
		max-width: 120px;
	}
}

/* Filter
-----------------------------------------------------------------------------*/
.filter .slider {
	margin: 12px;
}
.filter .min {
	float: left;
	font-weight: bold;
	margin-top: -30px;
}
.filter .max {
	float: right;
	font-weight: bold;
	margin-top: -30px;
}
.filter .btn-group {
	border-top: 1px solid #e2e2e2;
}
.filter-body {
	padding: 0 15px 15px;
}
.filter-title {
	margin: 0 -15px;
	padding: 10px 30px 12px 15px;
	font-size: 18px;
	border-top: 1px solid #e2e2e2;
	cursor: pointer;
	position: relative;
}
.filter-title:first-child {
	border: none;
}
.filter-title:after {
	font-family: FontAwesome, sans-serif;
	content: "\f106";
	position: absolute;
	right: 15px;
	top: 0.8rem;
}
.filter-title:first-child:after {
	display: none;
}
.filter-title.collapsed:after {
	content: "\f107";
}
.filter-box > div {
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* Box products
-----------------------------------------------------------------------------*/
.product-list {

}
.product-list > div {
	--bs-gutter-x: 20px;
	padding-bottom: 30px;
}
.product-item {
	padding: 30px;
	background: var(--bg);
	box-shadow: 0 15px 20px rgba(23, 27, 24, 0.1);
	border-radius: 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}
.product-item .icons {
	position: absolute;
}
.product-item .icons img {
	display: block;
	margin-bottom: 5px;	
}
.product-item .wishlist {
	display: block;
	position: absolute;
	right: 17px;
    font-size: 20px;
	cursor: pointer;
}
.product-item .image img {
	margin-left: auto;
    margin-right: auto;
}
.product-item .info {
	display: flex;
	height: 100%;
}
.product-item .name {
    font-weight: 600;
	font-size: 22px;
	margin: 15px 0;
	line-height: 1.2;
}
.product-item .price {
	font-size: 24px;
	font-weight: 600;
}
.product-item .price .price-old {
	text-decoration: line-through;
	font-weight: normal;
	display: block;
	height: 15px;
	font-size: 15px;
	color: #9e9e9e;
}
.product-item .price .price-new {
	color: #ff0000;	
}
.product-item .weight {
	color: #B2BABD;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
}
.product-item .weight i {
	margin-right: 5px;
}
.product-item .attributes {
    text-align: center;
    font-size: 12px;
    color: #454;
    margin-bottom: 20px;
}
.product-item .stock.in-stock {
	color: #31a743;
}
.product-item .stock.not-in-stock {
	color: #e34c5d;
}

/* Product info 
-----------------------------------------------------------------------------*/
.product-info {
	overflow: hidden;
    margin-bottom: 15px;
}
.product-info .icon {
    position: absolute;
    right: 0;
}
.product-info .icon img {
    display: block;
    margin-bottom: 5px;
}
.product-info .image {
	background: #fff;
}
.product-info .slider-for img {
	margin: 20px auto;
}
.product-info .slider-nav {
	padding: 20px 50px;
}
.product-info .slider-nav .slick-slide {
	border: 2px solid #dfdfdf;
	border-radius: 4px;
	margin: 0 20px;
	padding: 5px;
	text-align: center;
}
.product-info .slider-nav .slick-slide.slick-current {
	border-color: #1a89e7;
}
.product-info .slider-nav .slick-prev,
.product-info .slider-nav .slick-next {
	font-size: 0;
	position: absolute;
	overflow: hidden;
	top: 50%;
	border: none;
	left: 15px;
	cursor: pointer;
	background: transparent;
	margin-top: -12px;
	width: 30px;
	height: 30px;
	-webkit-appearance: none;
	outline: none;
}
.product-info .slider-nav .slick-next {
	left: auto;
	right: 15px;
}
.product-info .slider-nav .slick-prev:before,
.product-info .slider-nav .slick-next:before {
	color: #000;
	cursor: pointer;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 20px;
}
.product-info .slider-nav .slick-prev:before {
	content: "\f053";
}.product-info .slider-nav .slick-next:before {
	content: "\f054";
}
.product-info .slider-nav .slick-slide img {
	display: inline-block;
	max-width: 100%;
}
.product-info .info {
    margin-top: 15px;
}
.product-info .info > div {
    margin-bottom: 15px;
}
.product-info .info > div:last-child {
    margin-bottom: 0;
}
.product-info .info > div > span:first-child {
    color: #737973;
}
.product-info .input-group {
    float: left;
    margin-right: 4px;
}
.product-info .price-old {
	color: #ff0000;
	text-decoration: line-through;
}
.table-attribute {}
.table-compare {}
.table-compare th {
	font-weight: bold;
	background: #eeeeee;
	text-align: left;
}
.table-compare td {
    text-align: center;
}
.table-compare tr td:first-child {
	font-weight: bold;
	text-align: right;
}
.table-compare .price-old {
	font-weight: bold;
	color: #ff0000;
	text-decoration: line-through;
}
.table-compare .price-new {
	font-weight: bold;
}

/* Tabs
-----------------------------------------------------------------------------*/
.nav-tabs {
    margin-bottom: 15px;
}

/* Pagination 
-----------------------------------------------------------------------------*/
.paginate {
	margin-bottom: 20px;
}
.paginate .results {
	margin-top: 7px;
}
.paginate .pagination {
    margin: 0;
}
@media (max-width: 767px) {
    .paginate > div {
        text-align: center;
        margin: 0 0 15px;
    }
}

/* Buttons & Errors & Information
-----------------------------------------------------------------------------*/
a:not([href]):not([tabindex]) {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.counter {
	width: 85px;
	background: #b2babd;
	border-radius: 50px;
	flex-wrap: nowrap;
}
.counter .btn {
	border: none;
	background: transparent;
	padding: 0;
	box-shadow: none;
	color: #000;
	width: 25px;
}
.counter .input-group-prepend,
.counter .input-group-append {
	width: 30%;
}
.counter .input-group-prepend .btn,
.counter .input-group-append .btn {
	width: 100%;
	font-size: 17px;
	font-weight: bold;
	line-height: 0;
}
.counter .input-group-prepend .btn:hover,
.counter .input-group-append .btn:hover {

}
.counter .form-control {
	border: none;
	padding: 0;
	background: #b2babd !important;
	box-shadow: none;
	color: #000 !important;
}
.counter .form-control:focus {
	box-shadow: none;
	border-color: transparent;
}
.btn-danger {
	border-radius: 100%;
	width: 30px;
	height: 30px;
	padding: 1px;
}
.checkout .name {
	font-size: 22px;
	font-weight: 600;
}
.checkout .option {
	color: #899093;
	font-weight: 400;
	font-size: 15px;
}
.radio,
.checkbox {
	padding-left: 35px;
	position: relative;
}
.radio label,
.checkbox label {
	cursor: pointer;
	margin: 0;
}
.radio label span,
.checkbox label span {
	position: relative;
	top: -0.1rem;
}
.radio input[type='radio'],
.checkbox input[type='checkbox'] {
	cursor: pointer;
	-webkit-appearance: none;
	width: 25px;
	height: 25px;
	background: #fff;
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	left: 0;
	border: 1px solid #ced4da;
	border-radius: 100%;
	outline: none;
}
.radio input[type='radio']:checked,
.checkbox input[type='checkbox']:checked {
	border-color: var(--red);
}
.radio input[type='radio']:checked:after,
.checkbox input[type='checkbox']:checked:after {
	content: '\f00c';
	font-family: FontAwesome, sans-serif;
	display: block;
	color: var(--red);
	position: absolute;
	left: 4px;
	top: 1px;
}
span.error {
	margin-top: 10px;
	color: #ff0000;
}
span.stock {
	color: #ff0000;
}
span.wait {
	display: block;
	float: left;
	margin: 8px 10px;
}
.btn-cart {
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 36px;
	border-radius: 16px;
	background: var(--blue);
}
.btn-cart:hover {
	background: #476604;
}
.btn-cart:active {
	background: #476604;
}
.fancybox-content {
	background: var(--bg) !important;
}
.radio-box {
	min-height: 35px;
	margin: 15px 0;
}
.radio-box > div {
	border: 1px solid var(--red);
	color: var(--red);
	font-size: 13px;
	padding: 7px 12px;
	text-align: center;
	border-radius: 35px;
	cursor: pointer;
	display: inline-block;
}
.radio-box.radio-box-big {
	display: flex;
	justify-content: space-between;
}
.radio-box.radio-box-big > div {
	padding: 11px 25px 12px;
	text-transform: uppercase;
	flex-basis: 49%;
}
.radio-box > div.checked {
	color: #fff;
	background: var(--red);
}
.radio-box input {
	display: none;
}
/* Fancybox */
.fancybox-content {
	max-width: 660px;
}
@media (max-width: 767px) {
	.fancybox-content {
		padding: 15px;
	}
}

/* Form elements
-----------------------------------------------------------------------------*/
.btn.btn-primary {
	background: var(--red);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	border-radius: 60px;
	padding: 21px 40px;
	border: none;
}
.btn.btn-success {
	background: var(--blue);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	border-radius: 60px;
	padding: 21px 40px;
	border: none;
}
.form {

}
label {
    text-align: left;
    font-weight: normal;
	color: #899093;
	font-size: 15px;
	margin-bottom: 10px;
}
.form-select {
	border: none;
	border-radius: 25px;
	padding: 5px 20px;
	font-weight: 600;
	font-size: 17px;
	height: 51px;
	background: #302e2c;
	box-shadow: 0 3px 3px #00000059 inset;
	color: #fff;
}
.form-control {
	border: none;
	border-radius: 25px;
	padding: 12px 20px;
	font-weight: 600;
	font-size: 17px;
	background: #302e2c;
	box-shadow: 0 3px 3px #00000059 inset;
	color: #fff;
}
.form-control:focus {
	background: #302e2c;
	outline: none;
	color: #fff;
	box-shadow: none;
}
.form-control.error {
	border-color: var(--red);
}
.error-icon {
	display: none;
	position: absolute;
	bottom: 15px;
	right: 15px;
}
.form-control.error + .error-icon {
	display: block;
}
input[type="checkbox"] {
	vertical-align: middle;	
}

/* Customer
-----------------------------------------------------------------------------*/
.order-list {
	padding: 10px;
	background: #fff;
	margin-bottom: 10px;
	border: 1px solid #dedede;
}
.list {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 10px;
}
.list td {
	padding: 10px;
	border: 1px solid #e9e9e9;	
}
.list thead td {
	font-weight: bold;
	background: #eeeeee;
}
/* Footer
-----------------------------------------------------------------------------*/
.footer {
	background: #201b1c;
	padding-top: 50px;
}
.footer .phone {
	font-size: 72px;
	font-weight: 600;
	text-align: center;
}
.footer .contact {
	text-align: center;
	margin-bottom: 30px;
}
.footer .title {
	font-size: 24px;
	margin: 25px 0;
	font-weight: 600;
}
.footer .nav {
	margin-bottom: 30px;
}
.footer .nav-link {
	padding: 5px 0;
}
.footer .bottom {
	box-shadow: inset 0px 1px 0px #545454;
	padding: 35px 0;
}
.footer .bottom a {
	text-decoration: none;
}
@media(max-width: 767px) {
	.footer .bottom {
		padding: 10px 0;
	}
	.footer .phone {
		font-size: 32px;
	}
	.footer .title {
		font-size: 20px;
		margin: 15px 0;
	}
}


