html {
	padding: 0;
	margin: 0;
}
body {
	padding: 0;
	margin: 0;
	background-color: #fff;
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
	font-weight: 300;
	font-family: 'museo';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
textarea {
	resize: none;
}
a,
a:hover,
a:focus {
	outline: none;
	box-shadow: none;
	text-decoration: none;
	cursor: pointer;
}
img {
	border: 0;
	outline: none;
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}
.form-control:focus {
	outline: none;
	box-shadow: none;
}
ul,
ol {
	padding: 0;
	margin: 0;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	padding: 0;
	margin: 0;
	display: inline-block;
	font-weight: 700;
}
.container {
	max-width: 1200px;
	width: 100%;
	position: relative;
}
.section-title {
	display: block;
	width: 100%;
	margin-bottom: 40px;
}
.section-title.center {
	text-align: center;
}
.section-title .title {
	font-size: 30px;
	line-height: 1.2;
	color: #434343;
	display: block;
	width: 100%;
	text-transform: uppercase;
	font-weight: 700;
}
.section-title p {
	font-size: 15px;
	line-height: 1.5;
	color: #999;
	display: block;
}
.header-wrapper {
	padding: 28px 0px;
	width: 100%;
	background-color: #fff;
	position: sticky;
	top: 0;
/*	z-index: 1100;*/
	z-index: 1050;
}
.header-wrapper .row {
	width: 100%;
	margin: 0;
}
.logo {
	width: auto;
	padding: 0;
}
.header-right {
	width: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
}
.header-right .search-toggle,
.header-right .user-toggle,
.header-right .cart-toggle,
.header-right .menu-toggle {
	margin-left: 36px;
}
.header-right .search-toggle {
	margin-left: 0;
}
.dropdown-menu {
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
	border: 0;
}
.header-right .user-toggle .dropdown-menu {
	top: 100% !important;
}
.header-right .cart-toggle .dropdown-menu {
	width: 280px;
	top: 100% !important;
	padding: 15px;
}
.header-right .cart-toggle .number {
	position: absolute;
	font-style: inherit;
	top: -15px;
	left: 1px;
	font-weight: 700;
	width: 22px;
	text-align: center;
	font-size: 15px;
	color: #999;
}
.main-navigation {
	width: auto;
}
.main-navigation .menu-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.main-navigation .menu-wrap > ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
.main-navigation .menu-wrap > ul > li {
	list-style: none;
	font-size: 15px;
	line-height: 1;
	color: #666666;
	font-weight: 700;
	padding: 0 14px;
	position: relative;
}

.main-navigation .menu-wrap ul > li > a {
	text-decoration: none;
	color: #666666;
	position: relative;
}
/*.main-navigation .menu-wrap > ul > li > a {
text-decoration: none;
color: #666666;
position: relative;
}*/
.main-navigation .menu-wrap ul > li.active a:before {
	content: '';
	position: absolute;
	left: -8px;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #ff9022;
}
.main-navigation .menu-wrap > ul > li > ul {
	position: absolute;
	left: 0;
	top: 100%;
	width: 200px;
	display: none;
	border: 1px solid #eee;
	background-color: #fff;
	border-radius: 10px;
	z-index: 10;
}
.main-navigation .menu-wrap > ul > li:hover > ul {
	display: block;
}
.main-navigation .menu-wrap > ul > li > ul > li {
	list-style: none;
	position: relative;
	padding-bottom: 0px;
	margin-top:0px;
}
.main-navigation .menu-wrap > ul > li > ul > li > ul {
	left: 100%;
	top: 0;
	list-style: none;
	position: absolute;
	display: none;
	width: 200px;
	border: 1px solid #eee;
	background-color: #fff;
	border-radius: 10px;
	z-index: 10;
}
.main-navigation .menu-wrap > ul > li > ul > li:hover > ul {
	display: block;
}
.main-navigation .menu-wrap > ul > li ul li a {
	padding: 10px;
	display: block;
	line-height: 1.2;
}
.main-navigation .menu-wrap > ul > li ul li a:before {
	display: none;
}
.menu-toggle {
	width: 35px;
	height: 35px;
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
	padding: 0;
	cursor: pointer;
	display: none;
}
.menu-toggle span {
	width: 50%;
	height: 2px;
	background-color: #acacac;
	display: block;
	margin: 2px auto;
}
.header-search {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
	z-index: 10;
	display: flex;
	background-color: #fff;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.header-search.open {
	opacity: 1;
	visibility: visible;
}
.header-search .form-control {
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
.header-search .search-close {
	outline: none;
	box-shadow: none;
	border: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 40px;
	background-color: transparent;
}
.header-search form {
	height: 40px;
	width: 100%;
}
.home-banner {
	width: 100%;
	height: 860px;
	overflow: hidden;
	position: relative;
}
.home-banner .swiper-button-prev {
	position: absolute;
	right: 15px;
	top: 0;
	left: inherit;
	bottom: 0;
	margin: auto;
	width: 25px;
	height: 30px;
	color: #ffffff;
}
.home-banner .swiper-button-prev:hover {
	color: #ff7f00;
}
.home-banner .swiper-button-next {
	position: absolute;
	right: 15px;
	top: 70px;
	bottom: 0;
	margin: auto;
	width: 25px;
	height: 30px;
	color: #ffffff;
}
.home-banner .swiper-button-next:hover {
	color: #ff7f00;
}
.home-banner .swiper-button-next:after,
.home-banner .swiper-button-prev:after {
	font-size: 20px;
	display: none;
}
.home-banner .swiper-pagination {
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	width: 35px;
}
.home-banner .swiper-pagination .swiper-pagination-bullet {
	width: 25px;
	height: 3px;
	margin: 3px 0;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
.home-banner .swiper-pagination .swiper-pagination-bullet-active {
	width: 100%;
	background-color: #ff7f00;
}
.home-banner .swiper-slide {
	position: relative;
}
.home-banner .thumb {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.home-banner .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-banner .banner-overlay {
	width: 100%;
	height: 100%;
}
.home-banner .row {
	height: 100%;
}
.home-banner .banner-text {
	width: 100%;
	height: 100%;
	padding-left: 100px;
	padding-top: 30px;
	padding-bottom: 30px;
}
.home-banner .banner-caption {
	background-color: rgba(255, 255, 255, 0.75);
	padding: 42px 100px 52px 36px;
	max-width: 1055px;
	width: 100%;
}
.home-banner .banner-year {
	display: block;
	font-size: 16px;
	line-height: 1.4;
	width: 100%;
	color: #575757;
}
.home-banner .banner-title {
	font-size: 55px;
	line-height: 1.2;
	color: #575757;
	text-transform: uppercase;
	font-weight: 700;
	display: block;
	width: 100%;
}
.home-banner .banner-sub-title {
	display: block;
	width: 100%;
	font-size: 30px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #666666;
	margin-bottom: 16px;
}
.home-banner .banner-description {
	font-size: 16px;
	line-height: 1.5;
	color: #737373;
	display: block;
	width: 100%;
	margin-bottom: 30px;
}
.home-banner .banner-action {
	display: block;
	width: 100%;
}
.home-banner .banner-action a {
	width: 130px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	color: #fff;
	font-size: 15px;
	line-height: 1.5;
	transition: all 0.2s ease-in-out;
	text-transform: uppercase;
	background-color: #575757;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.home-banner .banner-action a:hover {
	background-color: #000;
}
.home-services {
	padding: 55px 0px 25px;
}
.home-services .items {
	margin-bottom: 30px;
}
.home-services .card {
	border: 0px;
	height: 100%;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
.home-services .card-header {
	background-color: transparent;
	border: 0;
	padding: 25px 40px;
	position: relative;
	background-color: #575757;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
.home-services .card-title {
	font-size: 20px;
	line-height: 1.5;
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
	position: relative;
	z-index: 1;
}
.home-services .card-body {
	padding: 30px 40px;
	font-size: 15px;
	line-height: 1.7;
	color: #999999;
	position: relative;
	background-color: #cccccc;
}
.home-services .card-body .top {
	position: absolute;
	left: 0;
	top: -40px;
	width: 100%;
}
.home-services .card-body .top svg {
	color: #cccccc;
}
.home-services .card-body .card-description {
	position: relative;
	z-index: 1;
}
.home-services .card-body ul {
	padding: 0;
	margin: 0;
}
.home-services .card-body p {
	margin-bottom: 30px;
}
.home-services .card-body p:last-child {
	margin-bottom: 0;
}
.home-services .card-body .card-action a {
	width: 148px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	font-size: 15px;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	background-color: #575757;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.home-services .card-body ul li {
	list-style: none;
	font-size: 15px;
	line-height: 1.7;
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
}
.home-services .card-body ul li:last-child {
	margin-bottom: 0;
}
.home-services .card-body ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23009B33' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
	width: 10px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: top center;
}
.home-services .card-action {
	display: flex;
	justify-content: flex-end;
}
.new-product {
	padding: 105px 0px;
	background-color: #f6f6f6;
	position: relative;
}
.new-product .top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	align-items: flex-start;
}
.new-product .bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.new-product .bottom svg {
	margin-bottom: -1px;
}
.new-product .container {
	z-index: 2;
}
.new-product .items {
	margin-bottom: 30px;
}
.new-product .card {
	border: 0;
	height: 100%;
	background-color: #ffffff;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.new-product .card:hover {
	box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.13), 0 1px 2px 0 rgba(0, 0, 0, 0.11);
}
.new-product .card-thumb {
	position: relative;
	width: 100%;
	border-bottom: 2px solid #f6f6f6;
	overflow: hidden;
	border-radius: 7px 7px 0 0;
	-webkit-border-radius: 7px 7px 0 0;
	-moz-border-radius: 7px 7px 0 0;
	-ms-border-radius: 7px 7px 0 0;
	-o-border-radius: 7px 7px 0 0;
}
.new-product .card-thumb img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.new-product .card-title {
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: #434343;
	display: block;
	font-weight: 700;
}
.new-product .card-title a {
	color: #434343;
}
.new-product .card-body {
	padding: 18px 30px;
}
.new-product .product-size {
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
	display: block;
	margin-bottom: 11px;
}
.new-product .product-price {
	display: block;
	width: 100%;
}
.new-product .regular-price {
	font-size: 18px;
	line-height: 1.5;
	color: #666666;
	font-weight: 700;
}
.product-of-week {
	padding: 55px 0px;
	position: relative;
	background-color: #fff;
}
.product-of-week .gray-bg {
	background-color: #f6f6f6;
}
.product-of-week img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-left: -5px;
}
.product-of-week .title {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.3;
	text-transform: uppercase;
	color: #575757;
}
.product-of-week .description {
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
	margin-bottom: 15px;
}
.product-of-week .description ul {
	padding: 0;
	margin: 0;
}
.product-of-week .description li {
	list-style: none;
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
}
.product-of-week .description li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23009B33' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
	width: 10px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: top center;
}
.product-of-week .right {
	padding-left: 70px;
}
.product-of-week .timer {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 15px;
}
.product-of-week .day,
.product-of-week .hrs,
.product-of-week .min,
.product-of-week .sec {
	width: 70px;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}
.product-of-week .timer .time {
	font-size: 26px;
	line-height: 1.4;
	color: #999999;
	display: inline-block;
	vertical-align: top;
	font-weight: 700;
	width: 100%;
}
.product-of-week .timer .time span {
	display: inline-block;
	vertical-align: top;
	border-bottom: 1px solid #999999;
	margin: 0 1px;
}
.product-of-week .timer .day-label {
	font-size: 15px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 700;
	color: #8a8888;
	margin-top: 10px;
	width: 100%;
}
.product-of-week .price-wrap {
	display: flex;
	flex-wrap: wrap;
	max-width: 135px;
	width: 100%;
	justify-content: space-between;
}
.product-of-week .price-wrap .has-price {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #575757;
	text-decoration: line-through;
}
.product-of-week .price-wrap .regular-price {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #575757;
}
.deals-selection {
	position: relative;
	padding: 95px 0 65px;
	background-color: #f6f6f6;
}
.deals-selection .top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	align-items: flex-start;
}
.deals-selection .bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.deals-selection .deals-filter {
	position: absolute;
	right: 15px;
	top: 30px;
}
.deals-selection .deals-filter a {
	font-size: 15px;
	line-height: 1;
	color: #999999;
	font-weight: 700;
	margin: 0 10px;
	padding-left: 5px;
	position: relative;
}
.deals-selection .deals-filter a:before {
	content: '';
	position: absolute;
	left: -5px;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
	display: none;
}
.deals-selection .deals-filter a.active:before {
	display: block;
}

.deals-selection .items {
	margin-bottom: 30px;
}
.deals-selection .card {
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	border: 0;
	position: relative;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.deals-selection .card-image {
	position: relative;
	border-bottom: 3px solid #f6f6f6;
	overflow: hidden;
	border-radius: 7px 7px 0 0;
	-webkit-border-radius: 7px 7px 0 0;
	-moz-border-radius: 7px 7px 0 0;
	-ms-border-radius: 7px 7px 0 0;
	-o-border-radius: 7px 7px 0 0;
}
.deals-selection .card-image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.deals-selection .card-body {
	padding: 18px 30px;
}
.deals-selection .product-title {
	font-size: 15px;
	line-height: 1.4;
	color: #434343;
	text-transform: uppercase;
	font-weight: 700;
	display: block;
	margin-bottom: 2px;
}
.deals-selection .product-title a {
	color: #434343;
}
.deals-selection .product-size {
	font-size: 15px;
	line-height: 1.2;
	color: #666;
	margin-bottom: 12px;
}
.deals-selection .product-price {
	display: block;
}
.deals-selection .product-price .regular-price {
	font-size: 18px;
	line-height: 1.2;
	color: #666;
	font-weight: 700;
}
.deals-selection .actions {
	display: none;
	align-items: center;
	padding: 12px 30px;
	position: absolute;
	left: 0;
	bottom: -20px;
	width: 100%;
	height: 38px;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
	border-radius: 0px 0px 7px 7px;
	-webkit-border-radius: 0px 0px 7px 7px;
	-moz-border-radius: 0px 0px 7px 7px;
	-ms-border-radius: 0px 0px 7px 7px;
	-o-border-radius: 0px 0px 7px 7px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.deals-selection .actions a {
	color: #999999;
	margin-right: 30px;
}
.deals-selection .actions a:hover {
	color: #ff7f00;
}
.deals-selection .actions a svg {
	width: 16px;
	height: auto;
}
.deals-selection .card:hover .actions {
	display: flex;
}
.customer-say {
	padding: 100px 0 80px;
	margin: 0;
	position: relative;
	background-color: #f6f6f6;
}
.customer-say .top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	align-items: flex-start;
}
.customer-say .bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.customer-say .wrapper {
	max-width: 825px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.customer-say-slider {
	width: 100%;
	max-width: 750px;
	margin-left: auto;
	position: relative;
	overflow: hidden;
}
.customer-say .customer-say-rating {
	margin-bottom: 12px;
	display: block;
}
.customer-say .sub-title {
	font-size: 20px;
	line-height: 1.2;
	display: block;
	margin-bottom: 20px;
	font-weight: 700;
}
.customer-say .description {
	font-size: 16px;
	line-height: 1.5;
	color: #434343;
	margin-bottom: 15px;
}

.customer-say .recommend {
	font-size: 16px;
	line-height: 1.5;
	color: #434343;
	margin-bottom: 15px;
}
.customer-say .date-location {
	font-size: 16px;
	line-height: 1.5;
	color: #434343;
	margin-bottom: 15px;
}
.customer-say .date-location strong {
	font-weight: 700;
}
.customer-say-action {
	height: 65px;
	width: 25px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.customer-say-action:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 20px;
	height: 1px;
	background-color: #ccc;
}
.customer-say .wrapper .swiper-button-prev {
	position: absolute;
	left: 0;
	top: 0;
	margin: auto;
	width: 25px;
	height: 30px;
	color: #ccc;
}
.customer-say .wrapper .swiper-button-prev:hover {
	color: #ff7f00;
}
.customer-say .wrapper .swiper-button-next {
	position: absolute;
	left: 0;
	right: inherit;
	bottom: 0;
	margin: auto;
	width: 25px;
	height: 30px;
	color: #ccc;
}
.customer-say .wrapper .swiper-button-next:hover {
	color: #ff7f00;
}
.customer-say .wrapper .swiper-button-prev:after,
.customer-say .wrapper .swiper-button-next:after {
	font-size: 20px;
	display: none;
}
.home-blog {
	padding: 55px 0 28px;
	margin: 0;
}
.home-blog .description {
	position: relative;
	text-align: center;
}
.home-blog .blog-title {
	font-size: 16px;
	line-height: 1.5;
	color: #666666;
	font-weight: 700;
	display: block;
	position: relative;
	padding-bottom: 8px;
	margin-bottom: 5px;
}
.home-blog .blog-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 150px;
	height: 1px;
	background-color: #666666;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.home-blog .text {
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
	height: 100px;
	overflow: hidden;
}
.home-blog .more {
	font-size: 15px;
	font-weight: 700;
	color: #ff9022;
	line-height: 1.2;
	margin-top: 15px;
	display: inline-block;
}
.home-blog .thumb {
	position: relative;
}
.home-blog .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.footer-wrapper {
	padding: 20px 0 0;
}
.footer-wrapper .wrapper {
	max-width: 1520px;
	width: 100%;
	margin: 0 auto;
	background-color: #f6f6f6;
	padding: 30px 0 35px;
}
.footer-wrapper .footer-logo {
	margin-bottom: 28px;
}
.footer-wrapper .address {
	font-size: 15px;
	line-height: 1.5;
	color: #838282;
}
.footer-wrapper .address strong {
	font-weight: 700;
}
.footer-wrapper .footer-title {
	display: block;
	width: 100%;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	color: #575757;
	margin-bottom: 40px;
	position: relative;
	padding-left: 5px;
}
.footer-wrapper .footer-title:before {
	content: '';
	position: absolute;
	left: -5px;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.footer-wrapper ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-wrapper li {
	position: relative;
	padding-left: 20px;
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
	margin-bottom: 10px;
}
.footer-wrapper li a {
	color: #666666;
}
.footer-wrapper li.active a {
	color: #ff7f00;
}
.footer-wrapper li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 5px;
	height: 5px;
	background-color: #666666;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}
.footer-wrapper .send-question {
	position: relative;
}

.footer-wrapper .send-question .form-group {
	position: relative;
	margin-bottom: 10px;
}
.footer-wrapper .send-question .form-group .form-control {
	background-color: #fff;
	border: 0;
	font-size: 15px;
	color: #999999;
	height: 40px;
	padding: 6px 20px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.footer-wrapper .send-question .form-group textarea.form-control {
	resize: none;
	height: 80px;
}
.footer-wrapper .send-question .form-group .error {
	font-size: 15px;
	line-height: 1.3;
	color: red;
	margin-top: 5px;
	display: none;
}
.footer-wrapper .send-question .submit {
	width: 177px;
	padding: 10px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background-color: #ff7f00;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.3;
	border: 0;
	border-radius: 10px; 
}
.footer-wrapper
	.send-question
	.form-group
	.form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #999999;
}
.footer-wrapper .send-question .form-group .form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: #999999;
}
.footer-wrapper .send-question .form-group .form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: #999999;
}
.footer-wrapper .send-question .form-group .form-control:-moz-placeholder {
	/* Firefox 18- */
	color: #999999;
}
.footer-wrapper .social-media {
	display: flex;
	align-items: center;
}
.footer-wrapper .social-media a {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
	color: #999999;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}
.footer-wrapper .social-media a svg {
	width: 12px;
}
.copyright {
	padding: 11px 0;
	background-color: #222222;
	color: #999999;
	font-size: 15px;
	line-height: 1.3;
}
.gallery-summary {
	margin-bottom: 74px;
}
.single-product {
	padding-bottom: 64px;
	padding-top: 20px;
}
.single-product .right .sticky {
	position: sticky;
	top: 140px;
}
.single-product-main {
	overflow: hidden;
	width: 100%;
	height: 412px;
	background-color: #ccc;
	margin-bottom: 30px;
}
.single-product-main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-thumb {
	padding: 0 30px;
	position: relative;
}
.single-product-thumb {
	overflow: hidden;
	width: 100%;
}
.single-product-thumb .swiper-slide {
	background-color: #ccc;
	cursor: pointer;
}
.single-product-thumb .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-thumb .swiper-button-next:after,
.gallery-thumb .swiper-button-prev:after {
	display: none;
}
.gallery-thumb .swiper-button-next svg,
.gallery-thumb .swiper-button-prev svg {
	width: 14px;
	height: auto;
	color: #000;
}
.gallery-thumb .swiper-button-prev {
	margin-left: -14px;
}
.gallery-thumb .swiper-button-next {
	margin-right: -14px;
}
.similar-product {
	position: relative;
}
.similar-product .items {
	margin-bottom: 30px;
}
.similar-product .card {
	background-color: #f6f6f6;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	border: 0;
}
.similar-product .card-thumb {
	position: relative;
	background-color: #ccc;
}
.similar-product .card-thumb:before {
	padding-top: 118%;
	display: block;
	content: '';
}
.similar-product .card-thumb img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.similar-product .card-body {
	padding: 18px 10px;
}
.similar-product .card-title {
	font-size: 15px;
	line-height: 1.3;
	color: #434343;
	text-transform: uppercase;
	display: block;
	text-align: center;
	margin-bottom: 10px;
	font-weight: 700;
}
.similar-product .card-title a {
	color: #434343;
}
.similar-product .card-rating {
	text-align: center;
	display: block;
	width: 100%;
	margin-bottom: 8px;
}
.similar-product .card-rating img {
	margin: 0 auto;
	display: block;
}
.similar-product .card-price {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 22px;
}
.similar-product .card-price .regular-price {
	font-size: 20px;
	line-height: 1.2;
	color: #666666;
}
.similar-product .card-action {
	display: flex;
	align-items: center;
	justify-content: center;
}
.similar-product .card-action a {
	width: 30px;
	height: 30px;
	display: flex;
	color: #999999;
	border: 1px solid;
	border-color: #cccccc;
	margin: 0 5px;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.similar-product .card-action a svg {
	width: 14px;
	height: auto;
}
.similar-product .card-action a:hover {
	color: #ff9022;
}
.single-product-categories {
	padding: 18px 30px;
	margin: 0 0 30px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.single-product-categories .title {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1.1;
	font-weight: 700;
	color: #666;
	text-transform: uppercase;
	padding-left: 8px;
}
.single-product-categories .title:before {
	content: '';
	width: 3px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #ff9022;
}
.single-product-categories ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.single-product-categories li {
	position: relative;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.2;
	color: #000;
}
.single-product-categories li a {
	color: #999;
}
.single-product-categories li.active a {
	color: #ff9022;
}
.single-product-search {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}
.single-product-search .input-group {
	border: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.single-product-search .form-control {
	border: 0;
	height: 50px;
	padding: 6px 20px;
}
.single-product-search .input-group-text {
	background-color: transparent;
	border: 0;
	color: #999;
}
.breadcrumb-wrapper {
	margin-bottom: 14px;
}
.breadcrumb {
	padding: 0;
	margin: 0;
}
.breadcrumb .breadcrumb-item {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: #999999;
}
.breadcrumb .breadcrumb-item a {
	color: #666666;
}
.single-product .product-summary {
	position: relative;
}
.product-summary .product-items {
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}
.product-summary .product-items:first-child {
	padding-top: 0;
}
.product-summary .product-next-prev {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 40px;
}
.product-summary .product-next-prev:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #ccc;
	margin: 0 auto;
}
.product-summary .product-next-prev .product-prev {
	width: 14px;
	height: 14px;
	color: #ccc;
	cursor: pointer;
}
.product-summary .product-next-prev .product-prev svg {
	width: 14px;
	height: auto;
	vertical-align: inherit;
}
.product-summary .product-next-prev .product-prev:hover svg {
	color: #ff7f00;
}
.product-summary .product-next-prev .product-next {
	width: 14px;
	height: 14px;
	color: #ccc;
	cursor: pointer;
}
.product-summary .product-next-prev .product-next svg {
	width: 14px;
	height: auto;
	vertical-align: inherit;
}
.product-summary .product-next-prev .product-next:hover svg {
	color: #ff7f00;
}
.product-summary .product-main-title {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #575757;
	display: block;
	padding-right: 50px;
	margin-bottom: 5px;
}
.product-summary .product-price .regular-price {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #999;
}
.product-summary .product-tabs ul {
	padding: 0;
	margin: 0 0 18px;
}
.product-summary .product-tabs li {
	margin-right: 15px;
}
.product-summary .product-tabs li button {
	background-color: transparent;
	border: 0;
	font-size: 15px;
	text-transform: uppercase;
	color: #666;
}
.product-summary .product-tabs li button.active {
	border-bottom: 1px solid #ff9022;
}
.product-tab .tab-content {
	min-height: 100px;
}
.product-summary .tab-pane {
	display: none;
}
.product-summary .tab-pane.active {
	display: block;
}
.product-summary .tab-pane {
	font-size: 15px;
	line-height: 1.5;
	color: #666;
}
.product-summary .choose-delivery {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.product-summary .choose-delivery label {
	font-size: 15px;
	color: #575757;
	font-weight: 700;
	line-height: 1.2;
	margin-right: 10px;
	text-transform: uppercase;
}
.product-summary .choose-delivery select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #7e7e7e;
	color: #575757;
	font-size: 15px;
	line-height: 1.3;
	text-transform: uppercase;
	padding: 3px 30px 3px 8px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 5px center;
	background-size: 20px auto;
	max-width: 235px;
	width: 100%;
	background-color: transparent;
}
.product-summary .choose-delivery select:focus {
	outline: none;
	box-shadow: none;
}
.product-summary .product-date {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.product-summary .delivery-date {
	height: 20px;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	background-color: #f39200;
	color: #fff;
	font-size: 15px;
	margin-right: 5px;
}
.product-summary .choose-date {
	display: flex;
	align-items: center;
	font-size: 11px;
	color: #575757;
	line-height: 1.2;
	text-transform: uppercase;
}
.product-summary .choose-date .icon {
	margin-right: 5px;
	width: 23px;
	height: 23px;
	color: #000;
}
.product-summary .choose-date .choose-date-picker {
	border: 0;
}
.product-summary .choose-date .choose-date-picker:focus {
	border: 0;
	outline: auto;
	box-shadow: none;
}
.product-summary .aditional-options {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 700;
	color: #575757;
	line-height: 1.4;
	width: 100%;
}
.product-summary .aditional-options a {
	color: #575757;
	display: flex;
	align-items: center;
}
.product-summary .aditional-options .collapse {
	width: 100%;
}
.product-summary .aditional-options .cms-content {
	padding: 10px 0;
}
.product-summary .aditional-options .icon {
	width: 14px;
	height: 14px;
	border: 1px solid #7e7e7e;
	margin-left: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-summary .add-to-cart {
	background-color: #f39200;
	padding: 5px 8px;
	font-size: 15px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.product-summary .left-btn {
	background-color: #f39200;
	padding: 10px 12px;
	font-size: 12px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}

.product-summary .left-btn-black {
	background-color: lightgray;
	padding: 10px 12px;
	font-size: 12px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 700;
	color: black;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.product-summary .add-to-cart a,
.product-summary .add-to-cart button {
	color: #fff;
	font-weight: 700;
}
.product-summary button {
	background-color: transparent;
	border: 0;
	padding: 0;
}
.dropdown .dropdown-menu li.active a {
	color: #ff7f00;
}
.dropdown-item.active,
.dropdown-item:active {
	background-color: #ff7f00;
}
.product-list-filter {
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
	padding: 18px 30px;
	margin-bottom: 30px;
	margin-top: 5px;
}
.product-list-filter .filter-head {
	width: 100%;
	display: block;
	margin-bottom: 24px;
}
.product-list-filter .filter-head .title {
	position: relative;
	font-size: 15px;
	line-height: 1.2;
	color: #666;
	font-weight: 700;
	padding-left: 10px;
	text-transform: uppercase;
}
.product-list-filter .filter-head .title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 2px;
	background-color: #ff7f00;
}
.product-list-filter .filter-body {
	padding: 0;
}
.product-list-filter .filter-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.product-list-filter .filter-links li {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.3;
	display: block;
	color: #999;
}
.product-list-filter .filter-links li a {
	color: #999;
}
.product-list-filter .filter-links li.active a,
.product-list-filter .filter-links li:hover a {
	color: #ff7f00;
}

.product-list-filter .filter-select {
	list-style: none;
	padding: 0;
	margin: 0;
}
.product-list-filter .filter-select li {
	margin-bottom: 5px;
	display: block;
	position: relative;
}
.product-list-filter .filter-select li input[type='radio'] {
	position: absolute;
	top: 0px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
}
.product-list-filter .filter-select li .disk_lable {
	font-size: 15px;
	line-height: 1.3;
	color: #999;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}
.product-list-filter .filter-select li .disk_lable:before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 12px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999999' class='bi bi-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3C/svg%3E");
	background-size: 12px 12px;
}

.product-list-filter .filter-select .size_label {
	font-size: 15px;
	line-height: 1.3;
	color: #999;
	position: relative;
	padding-left: 5px;
	cursor: pointer;
}
.product-list-filter .filter-select .size_li .size_label:before {
	/*content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 12px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999999' class='bi bi-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3C/svg%3E");
	background-size: 12px 12px;*/
}



.product-list-filter
.filter-select
li
input[type='radio']:checked
+ label:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff7f00' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
}
.product-list-filter .recent-products {
	padding: 0;
	margin: 0;
}
.product-list-filter .recent-products li {
	list-style: none;
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.product-list-filter .recent-products li:last-child {
	margin-bottom: 0;
}
.product-list-filter .recent-products li .thumb {
	width: 70px;
	height: 78px;
	background-color: #f6f6f6;
	border: 1px solid #e5e5e5;
}
.product-list-filter .recent-products li .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-list-filter .recent-products li .product-name-price {
	padding-left: 20px;
}
.product-list-filter .recent-products li .title {
	font-size: 15px;
	line-height: 1.2;
	color: #666;
	display: block;
	margin-bottom: 10px;
}
.product-list-filter .recent-products li .title a {
	color: #666;
}
.product-list-filter .recent-products li .product-price {
	font-size: 16px;
	line-height: 1.2;
	color: #666;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.product-list-filter .recent-products li .product-price .regular-price {
	color: #666;
	font-weight: 700;
}
.product-list-items {
	margin-bottom: 30px;
}
.product-list-items .thumb {
	background-color: #ccc;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.product-list-items .wrap {
	padding: 30px;
	background-color: #f6f6f6;
	height: 100%;
}
.product-list-items .name-rating {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 22px;
}
.product-list-items .name {
	display: block;
	padding-right: 15px;
}
.product-list-items .product-name {
	font-size: 15px;
	line-height: 1.3;
	display: block;
	color: #434343;
	font-weight: 700;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.product-list-items .product-name a {
	color: #434343;
}
.product-list-items .product-name:hover a {
	color: #ff7f00;
}
.product-list-items .brand-name {
	font-size: 15px;
	line-height: 1.3;
	display: block;
	color: #999;
	text-transform: capitalize;
	font-style: italic;
}
.product-list-items .rating {
	position: relative;
}
.product-list-items .price-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 25px;
}
.product-list-items .price-wrapper .regular-price {
	color: #666;
	font-size: 20px;
	line-height: 1.2;
}
.product-list-items .description {
	padding: 0;
	margin: 0 0 25px;
	font-size: 15px;
	line-height: 1.5;
	color: #666;
}
.product-list-items .product-action {
	display: flex;
	align-items: center;
}
.product-list-items .product-action a {
	width: 30px;
	height: 30px;
	border: 1px solid #cccccc;
	color: #999;
	margin-right: 10px;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}
.product-list-items .product-action a svg {
	width: 14px;
	height: auto;
}
.product-list-items .product-action a:hover {
	background-color: #ff7f00;
	color: #fff;
	border-color: #ff7f00;
}
.page-navigation {
	display: flex;
	justify-content: center;
	padding: 10px;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
}
.pagination {
	padding: 0;
	margin: 0;
}
.pagination .page-item {
	margin: 0 3px;
}
.pagination .page-item .page-link {
	padding: 8px 16px;
	line-height: 1;
	color: #999;
	font-size: 15px;
	border: 1px solid #eee;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.pagination .page-item .page-link:focus {
	outline: none;
	box-shadow: none;
}
.pagination .page-item .page-link svg {
	width: 12px;
	height: auto;
}
.pagination .page-item:hover .page-link {
	color: #ff7f00;
}
.pagination .page-item .page-link.page-prev {
	padding: 7px 14px;
}
.pagination .page-item .page-link.page-next {
	padding: 7px 14px;
}
.product-toolbar {
	margin-top: 5px;
	margin-bottom: 30px;
	padding: 10px;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-toolbar .grid-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #999;
	width: 57px;
}
.product-toolbar .list-view {
	color: #999;
	cursor: pointer;
}
.product-toolbar .list-view.active {
	color: #ff7f00;
}
.product-toolbar .grid-view {
	color: #999;
	cursor: pointer;
}
.product-toolbar .grid-view.active {
	color: #ff7f00;
}
.product-toolbar .sort-by {
	display: flex;
	align-items: center;
}
.product-toolbar .sort-by label {
	font-size: 15px;
	line-height: 1.2;
	color: #666;
	margin-right: 10px;
}
.product-toolbar .sort-by select {
	font-size: 15px;
	color: #999;
	border: 1px solid #eee;
	height: 30px;
	padding: 5px 40px 5px 20px;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23999999'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 5px center;
	background-size: 20px auto;
}
.product-toolbar .sort-by select:focus {
	outline: none;
	box-shadow: none;
}
.product-toolbar .showing {
	display: flex;
	align-items: center;
	font-size: 15px;
	line-height: 1.2;
	color: #999;
}
.product-toolbar .showing i {
	font-style: inherit;
	margin: 0 3px;
}
.product-toolbar .showing label {
	font-size: 15px;
	line-height: 1.2;
	color: #999;
	margin-right: 10px;
}
.filter-close-toggle {
	position: absolute;
	right: 15px;
	top: 5px;
	display: none;
}
.filter-open-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px;
	color: #fff;
	background-color: #ff7f00;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 1.2;
	margin-bottom: 30px;
}
.product-list.grid-list .product-list-items .items {
	width: 100%;
}
.product-list.grid-list .product-list-items .description {
	display: none;
}
.product-list.grid-list .product-list-items .brand-name {
	display: none;
}
.product-list.grid-list .product-list-items .name {
	padding-right: 0;
	text-align: center;
	width: 100%;
}
.product-list.grid-list .product-list-items .rating {
	width: 100%;
	text-align: center;
}
.product-list.grid-list .product-list-items .rating img {
	display: block;
	margin: 0 auto;
}
.product-list.grid-list .product-list-items .price-wrapper {
	width: 100%;
	justify-content: center;
}
.product-list.grid-list .product-list-items .product-action {
	width: 100%;
	justify-content: center;
}

.header-right .cart-toggle .dropdown-menu ul {
	padding: 0;
	margin: 0 0 20px;
	overflow: auto;
	height: 190px;
}
.header-right .cart-toggle .dropdown-menu li {
	list-style: none;
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.header-right .cart-toggle .dropdown-menu li:last-child {
	margin-bottom: 0;
}
.header-right .cart-toggle .dropdown-menu li .thumb {
	width: 70px;
	background-color: #f6f6f6;
	border: 1px solid #e5e5e5;
}
.header-right .cart-toggle .dropdown-menu li .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.header-right .cart-toggle .dropdown-menu li .product-name-price {
	padding-left: 20px;
	padding-right: 10px;
}
.header-right .cart-toggle .dropdown-menu li .title {
	font-size: 15px;
	line-height: 1.2;
	color: #666;
	display: block;
	margin-bottom: 5px;
}
.header-right .cart-toggle .dropdown-menu li .title a {
	color: #666;
}
.header-right .cart-toggle .dropdown-menu li .product-price {
	font-size: 16px;
	line-height: 1.2;
	color: #666;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.header-right .cart-toggle .dropdown-menu li .product-price .regular-price {
	color: #666;
	font-weight: 700;
}
.header-right .cart-toggle .dropdown-menu .grand-total {
	background-color: #eee;
}
.header-right .cart-toggle .dropdown-menu .grand-total .label,
.header-right .cart-toggle .dropdown-menu .grand-total .total {
	font-weight: 700;
}
.header-right .cart-toggle .dropdown-menu .action {
	display: flex;
	justify-content: space-between;
}
.header-right .cart-toggle .dropdown-menu .action .btn {
	width: 48%;
	height: 35px;
	background-color: #333333;
	color: #fff;
	font-size: 15px;
	border: 0;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.header-right .cart-toggle .product-remove {
	width: 15px;
	height: 15px;
	position: absolute;
	right: 0px;
	top: 10px;
	z-index: 1;
	color: #999;
	cursor: pointer;
}
.header-right .cart-toggle .mCSB_scrollTools {
	width: 8px;
}
.header-right .cart-toggle .mCSB_inside > .mCSB_container {
	margin-right: 10px;
}
.header-right .cart-toggle .product-remove svg {
	width: 15px;
	height: 15px;
	vertical-align: top;
}
#product-range.noUi-horizontal {
	height: 3px;
	margin-bottom: 15px;
	box-shadow: none;
	border: 0;
	background-color: #eeeeee;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
#product-range .noUi-connect {
	background-color: #ff7f00;
}
#product-range.noUi-horizontal .noUi-handle {
	width: 5px;
	height: 11px;
	box-shadow: none;
	border: 0;
	right: 0;
	top: -4px;
	cursor: pointer;
	background-color: #ff7f00;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
#product-range.noUi-horizontal .noUi-handle:after,
#product-range.noUi-horizontal .noUi-handle:before {
	display: none;
}
.cms-content h1 {
	margin-bottom: 15px;
}

.cms-content h2,
.cms-content h3,
.cms-content h4,
.cms-content h5,
.cms-content h6 {
	display: block;
	margin-bottom: 15px;
}
.cms-content p {
	margin-bottom: 20px;
}
.cms-content p:last-child {
	margin-bottom: 0;
}
.cms-content .blog-quote {
	position: relative;
	margin-left: 20px;
	padding-left: 20px;
	margin-bottom: 30px;
}
.cms-content .blog-quote:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #ff7f00;
}
.cms-content ul {
	padding: 0;
	margin: 0 0 10px;
	list-style: none;
}
.cms-content ul li {
	position: relative;
	padding: 5px 0 5px 15px;
	display: block;
	color: #666666;
	font-size: 16px;
	line-height: 1.875;
	font-weight: 400;
}
.cms-content ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 15px;
	width: 8px;
	height: 8px;
	display: block;
	background-color: #666666;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.cms-content ul li ul {
	margin-top: 10px;
	margin-bottom: 0;
}
.cms-content ol {
	padding: 0;
	margin: 0 0 20px;
	counter-reset: my-counter;
}
.cms-content ol li {
	position: relative;
	padding: 5px 0 5px 22px;
	display: block;
	color: #666666;
	list-style: decimal;
	counter-increment: my-counter;
	font-size: 16px;
	line-height: 1.875;
	font-weight: 400;
	font-family: 'Instrument Sans', sans-serif;
}
.cms-content ol li:before {
	content: counter(my-counter) ')';
	color: #666666;
	position: absolute;
	left: 0;
	top: 5px;
	font-weight: 700;
}
.cms-content ol li ol {
	margin-left: 20px;
	margin-top: 10px;
	margin-bottom: 0;
}
.cms-content a {
	color: #666;
	text-decoration: underline;
}
.cms-content b,
.cms-content strong {
	font-weight: 700;
	color: #666666;
}
.cms-content table {
	padding: 0;
	margin: 0 0 30px;
}
.cms-content table thead tr th {
	background-color: #f5f6f6;
}
.cms-content table tr {
	background-color: transparent;
	border: 0;
}
.cms-content table tr td {
	border: 1px solid #f1f1f1;
}
.cms-content .imgleft {
	float: left;
	width: 300px;
	margin-right: 30px;
}
.contact-information {
	margin-bottom: 50px;
}
.contact-information .items {
	height: 200px;
	margin-top: 5px;
	margin-bottom: 30px;
}
.contact-information .contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
	background-color: #fff;
	padding: 15px;
	text-align: center;
}
.contact-information .icon {
	width: 60px;
	height: 60px;
	display: flex;
	margin-bottom: 28px;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}
.contact-information .text {
	font-size: 15px;
	line-height: normal;
	color: #666;
}
.contact-information .text a {
	color: #666;
}
.map {
	width: 100%;
}
.map iframe {
	border: 0;
	box-shadow: none;
	width: 100%;
	height: 350px;
}
.contact-form {
	margin-bottom: 30px;
	margin-top: -50px;
}
.contact-form form {
	padding: 30px;
	background-color: #fff;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
}
.contact-form .form-control {
	width: 100%;
	height: 40px;
	background-color: #f6f6f6;
	padding: 6px 15px;
	font-size: 15px;
	color: #999;
	border: 0;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
.contact-form textarea.form-control {
	height: 120px;
	resize: none;
}
.contact-form .form-group {
	position: relative;
	margin-bottom: 30px;
}
.contact-form .form-group label {
	display: none;
}
.contact-form .submit {
	width: 200px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ff7f00;
	padding: 16px 15px;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	border: 0;
	font-weight: 700;
	border-radius: 10px; 
}
.contact-form .title {
	font-size: 18px;
	line-height: normal;
	color: #575757;
	font-weight: 700;
	padding-left: 10px;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 35px;
}
.contact-form .title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.contact-form .form-control:-webkit-input-placeholder {
	color: #999;
}
.contact-form .form-control::-moz-placeholder {
	color: #999;
}
.contact-form .form-control:-ms-input-placeholder {
	color: #999;
}
.contact-form .form-control:-moz-placeholder {
	color: #999;
}
.blog-dropdown-list {
	position: relative;
	padding: 18px 15px;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
	margin-bottom: 30px;
	margin-top: 5px;
}
.blog-dropdown-list .items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.blog-dropdown-list .dropdown {
	width: auto;
	margin-right: 30px;
	padding: 0;
	box-shadow: none;
	margin-bottom: 0;
}
.blog-dropdown-list .dropdown-toggle {
	color: #666;
	font-size: 15px;
	line-height: normal;
	margin-bottom: 0;
}
.blog-dropdown-list .blog-number {
	text-align: right;
	font-size: 15px;
	color: #999;
}
.blog-list .items {
	margin-bottom: 30px;
}
.blog-list .card {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border: 0;
	height: 100%;
	position: relative;
}
.blog-list .card-thumb {
	width: 100%;
	height: 300px;
}
.blog-list .card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-list .card-overlay {
	position: absolute;
	left: 0;
	top: 0;
	padding: 20px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
}
.blog-list .card:hover .card-overlay {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}
.blog-list .blog-title {
	display: block;
	width: 100%;
	font-size: 16px;
	line-height: normal;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.blog-list .blog-title a {
	color: #fff;
}
.blog-list .card-wrap {
	border: 1px solid #fff;
	width: 100%;
/*	height: 100%;*/
	height: auto;
	padding: 20px;
}
.blog-list .card-description p {
	font-size: 15px;
	line-height: 1.4;
	color: #fff;
}
.blog-list .blog-more {
	display: block;
	width: 100%;
	font-size: 15px;
	color: #fff;
	font-weight: 700;
}
.blog-list .blog-more a {
	color: #fff;
}
.blog-list .card-wrap {
	display: flex;
	flex-direction: column;
}
.blog-list .card-action {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: auto;
	margin-left: -10px;
	margin-right: -10px;
}
.blog-list .card-action .items {
	color: #fff;
	font-size: 12px;
	line-height: normal;
	padding: 0 10px;
	display: flex;
	align-items: center;
	margin: 0;
}
.blog-list .card-action .items .icon svg {
	width: 13px;
	margin-right: 10px;
	vertical-align: inherit;
	margin-top: 3px;
}
.blog-categories {
	padding: 18px 30px;
	margin: 0 0 30px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.blog-categories .title {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1.1;
	font-weight: 700;
	color: #666;
	text-transform: uppercase;
	padding-left: 8px;
}
.blog-categories .title:before {
	content: '';
	width: 3px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #ff9022;
}
.blog-categories ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.blog-categories li {
	position: relative;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.2;
	color: #000;
}
.blog-categories li a {
	color: #999;
}
.blog-categories li.active a {
	color: #ff9022;
}
.blog-search {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}
.blog-search .input-group {
	border: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.blog-search .form-control {
	border: 0;
	height: 50px;
	padding: 6px 20px;
}
.blog-search .input-group-text {
	background-color: transparent;
	border: 0;
	color: #999;
}
.leave-comment {
	margin-bottom: 30px;
}
.leave-comment .form-control {
	width: 100%;
	height: 40px;
	background-color: #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	padding: 6px 15px;
	font-size: 15px;
	color: #999;
	border: 0;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
.leave-comment textarea.form-control {
	height: 120px;
	resize: none;
}
.leave-comment .form-group {
	position: relative;
	margin-bottom: 30px;
}
.leave-comment .form-group label {
	display: none;
}
.leave-comment .submit {
	width: 200px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #333333;
	padding: 6px 15px;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	border: 0;
	font-weight: 700;
	text-align: center;
}
.leave-comment .title {
	font-size: 18px;
	line-height: normal;
	color: #575757;
	font-weight: 700;
	padding-left: 10px;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 35px;
}
.leave-comment .title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.leave-comment .form-control:-webkit-input-placeholder {
	color: #999;
}
.leave-comment .form-control::-moz-placeholder {
	color: #999;
}
.leave-comment .form-control:-ms-input-placeholder {
	color: #999;
}
.leave-comment .form-control:-moz-placeholder {
	color: #999;
}
.blog-detail .right {
	padding-top: 5px;
}
.blog-detail .right .sticky {
	position: sticky;
	top: 135px;
}
.blog-detail .blog-image {
	width: 100%;
	position: relative;
	padding: 20px;
	background-color: rgba(204, 204, 204, 0.15);
	margin-bottom: 28px;
}
.blog-detail .blog-image .thumb {
	height: 100%;
}
.blog-detail .blog-image .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-detail .blog-date {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 10px 15px;
}
.blog-detail .blog-date .date {
	font-size: 42px;
	line-height: 1;
	color: #434343;
	font-weight: 700;
}
.blog-detail .blog-date .month {
	font-size: 20px;
	line-height: 1;
	color: #434343;
	font-weight: 700;
}
.blog-detail .blog-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 15px;
}
.blog-detail .blog-meta .items {
	margin-right: 15px;
	display: flex;
	align-items: center;
	line-height: 1;
}
.blog-detail .blog-meta .icon {
	margin-right: 10px;
	height: 12px;
	width: 12px;
}
.blog-detail .blog-meta svg {
	width: 100%;
	height: 100%;
	color: #999;
	vertical-align: inherit;
}
.blog-share-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 15px 20px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.blog-share-tags .social-media {
	display: flex;
	align-items: center;
}
.blog-share-tags .social-media label {
	font-size: 15px;
	text-transform: uppercase;
	color: #666;
	margin-right: 10px;
}
.blog-share-tags .social-media a {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
	color: #999999;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}
.blog-share-tags .social-media a svg {
	width: 12px;
}
.blog-share-tags .blog-tags {
	font-size: 15px;
	line-height: normal;
	color: #999;
}
.blog-share-tags .blog-tags label {
	margin-right: 5px;
	color: #666;
	font-weight: 700;
	font-size: 15px;
}
.blog-share-tags .blog-tags a {
	color: #999;
	margin-left: 5px;
}
.blog-share-tags .blog-tags a.active {
	color: #ff7f00;
}
.blog-text {
	margin-bottom: 30px;
}
.blog-author {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin-bottom: 30px;
}
.blog-author .thumb {
	width: 80px;
	height: 80px;
	margin-right: 20px;
}
.blog-author .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-author .blog-auth-description {
	flex: 1;
}
.blog-author .title {
	font-size: 15px;
	margin-bottom: 10px;
	font-weight: 700;
	color: #666;
}
.blog-author p {
	font-size: 15px;
	line-height: 1.3;
	color: #666;
}
.blog-comments {
	padding: 0;
	margin: 0 0 30px;
}
.blog-comments .title {
	position: relative;
	padding-left: 10px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1;
	color: #575757;
	margin-bottom: 22px;
}
.blog-comments .title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.blog-comments ul {
	padding: 0;
	margin: 0;
}
.blog-comments li {
	margin-bottom: 30px;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.blog-comments .thumb {
	width: 75px;
	height: 80px;
	background-color: #ccc;
	margin-right: 20px;
}
.blog-comments .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-comments .comments-description {
	flex: 1;
}
.blog-comments .head {
	position: relative;
	padding-right: 100px;
	margin-bottom: 5px;
}
.blog-comments .head .action {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	z-index: 1;
	font-size: 15px;
	color: #666;
}
.blog-comments .head .action a {
	color: #666;
}
.blog-comments .head .action .seprator {
	padding: 0 10px;
}
.blog-comments .sub-title {
	display: block;
	width: 100%;
	font-size: 15px;
	line-height: 1.2;
	color: #666;
	font-weight: 700;
	text-transform: uppercase;
}
.blog-comments .sub-title a {
	color: #666;
}
.blog-comments h4 {
	font-size: 15px;
	font-weight: 400;
	color: #999;
}
.blog-comments p {
	margin: 0;
	color: #666;
	font-size: 15px;
	line-height: 1.4;
}
.cart {
	margin-top: 30px;
}
.cart-step-wrap {
	position: relative;
}
.cart-step-wrap .step {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 42px;
	background-color: transparent;
	border: 0;
}
.cart-step-wrap .step .circle {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	border-radius: 100%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}
.cart-step-wrap .step.step-border {
	width: 1px;
	height: 40px;
	background-color: #999;
	display: block;
	margin: 0 auto 42px;
}
.cart-step-wrap .step .text {
	font-size: 15px;
	text-transform: uppercase;
	color: #999;
	line-height: normal;
}
.cart-step-wrap .step.step-active .circle {
	border-color: #ff7f00;
	color: #ff7f00;
	font-weight: 700;
}
.cart-step-wrap .step.step-active .text {
	color: #ff7f00;
	font-weight: 700;
}
.cart-step-wrap .step.step-process .circle {
	border-color: #999999;
	color: #999999;
	font-weight: 700;
}
.cart-step-wrap .step.step-process .text {
	color: #999999;
	font-weight: 700;
}
.cart-step-wrap .step.step-finish .circle {
	border-color: #0e7b00;
	color: #0e7b00;
}
.cart-step-wrap .step.step-finish .text {
	color: #0e7b00;
}
.cart .left {
	width: 175px;
}
.cart .right {
	width: calc(100% - 175px);
}
.cart-table {
	margin-bottom: 30px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.cart-table table {
	border: 1px solid #eeeeee;
	border-collapse: collapse;
}
.cart-table table thead th {
	padding: 18px 15px;
	font-size: 15px;
	color: #666;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	border: 1px solid #eeeeee;
	text-align: center;
}
.cart-table table tbody td {
	padding: 10px 15px;
	border: 1px solid #eeeeee;
}
.cart-table table .thumb-detail {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.cart-table .thumb {
	width: 100px;
	height: 112px;
	background-color: #f6f6f6;
	border: 1px solid #eee;
}
.cart-table .thumb img {
	height: 110px;
	display: block;
}
.cart-table .detail {
	flex: 1;
	padding-left: 15px;
}
.cart-table .detail .name {
	font-size: 15px;
	font-weight: 700;
	color: #666;
	line-height: normal;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.cart-table .detail .name a {
	color: #666;
}
.cart-table .detail .items {
	display: flex;
	justify-content: space-between;
	line-height: 1.2;
	font-size: 15px;
	color: #999;
}
.cart-table .items .label {
	width: 72px;
}
.cart-table .items .size {
	width: 112px;
}
.cart-table table td.price {
	width: 100px;
	font-size: 16px;
	color: #999;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
}
.qty-plus-minus {
	width: 100px;
	display: flex;
	align-items: flex-start;
	border: 1px solid #f6f6f6;
	margin: 0 auto;
}
.qty-plus-minus .input-qty {
	width: 50px;
	height: 30px;
	border: 0;
	text-align: center;
	font-size: 15px;
	color: #666;
}
.qty-plus-minus .input-qty:focus {
	outline: none;
	box-shadow: none;
}
.qty-plus-minus button {
	background-color: #f6f6f6;
	border: 0;
	width: 25px;
	height: 30px;
}
.cart-table table td.total {
	font-size: 16px;
	color: #666;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
}
.cart-table table td.remove {
	text-align: center;
}
.cart-table table td.remove button {
	width: 25px;
	display: flex;
	height: 25px;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: 0;
	margin: 0 auto;
	background-color: #f6f6f6;
}
.shipping-costs {
	border: 1px solid #eee;
	padding: 25px 30px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.shipping-costs .title {
	padding-left: 8px;
	position: relative;
	font-size: 18px;
	color: #575757;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
}
.shipping-costs .title:before {
	content: '';
	position: absolute;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.shipping-costs .message {
	font-size: 15px;
	color: #999;
	line-height: 1.4;
	margin-bottom: 10px;
}
.shipping-costs .input-text {
	width: 100%;
	height: 40px;
	border: 0px solid rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
	font-size: 15px;
	line-height: 1.4;
	color: #999999;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.shipping-costs .input-text::-webkit-input-placeholder {
	color: #999999;
}
.shipping-costs .input-text::-moz-placeholder {
	color: #999999;
}
.shipping-costs .input-text:-ms-input-placeholder {
	color: #999999;
}
.shipping-costs .input-text:-moz-placeholder {
	color: #999999;
}
.shipping-costs .input-text:focus {
	outline: none;
}
.shipping-costs .items {
	margin-bottom: 30px;
}
.shipping-costs .submit {
	width: 143px;
	height: 35px;
	background-color: #333333;
	color: #fff;
	font-size: 15px;
	border: 0;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.discount-payment .items {
	margin-bottom: 30px;
}
.cart-discount {
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	height: 100%;
	padding: 25px 30px;
}
.cart-discount .title {
	padding-left: 8px;
	position: relative;
	font-size: 18px;
	color: #575757;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
}
.cart-discount .title:before {
	content: '';
	position: absolute;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.cart-discount .message {
	font-size: 15px;
	color: #999;
	line-height: 1.4;
	margin-bottom: 10px;
}
.cart-discount .input-text {
	width: 100%;
	height: 40px;
	border: 0px solid rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
	font-size: 15px;
	line-height: 1.4;
	color: #999999;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.cart-discount .input-text::-webkit-input-placeholder {
	color: #999999;
}
.cart-discount .input-text::-moz-placeholder {
	color: #999999;
}
.cart-discount .input-text:-ms-input-placeholder {
	color: #999999;
}
.cart-discount .input-text:-moz-placeholder {
	color: #999999;
}
.cart-discount .input-text:focus {
	outline: none;
}
.cart-discount .submit {
	width: 160px;
	height: 35px;
	background-color: #333333;
	color: #fff;
	font-size: 15px;
	border: 0;
	margin-top: 30px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 10px; 
}
.cart-payment-overview {
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	height: 100%;
	padding: 25px 30px;
}
.cart-payment-overview .title {
	padding-left: 8px;
	position: relative;
	font-size: 18px;
	color: #575757;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 12px;
}
.cart-payment-overview .title:before {
	content: '';
	position: absolute;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.cart-payment-overview .group {
	padding: 10px 5px;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
}
.cart-payment-overview .group .text {
	font-size: 15px;
	color: #999;
	line-height: normal;
}
.cart-payment-overview .group .price {
	font-size: 15px;
	color: #999;
	line-height: normal;
}
.cart-payment-overview .group.grand-total {
	border-bottom: 0;
	padding-bottom: 0;
	font-weight: 700;
}
.cart-payment-overview .group.grand-total .text,
.cart-payment-overview .group.grand-total .price {
	color: #ff7f00;
}
.data-order-method {
	padding: 30px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}
.detail-payment .title {
	padding-left: 8px;
	position: relative;
	font-size: 18px;
	color: #575757;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
	text-transform: uppercase;
}
.detail-payment .title:before {
	content: '';
	position: absolute;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.your-data .submit {
	background-color: #ff7f00;
	color: #fff;
	font-size: 15px;
	line-height: 1.2;
	text-transform: uppercase;
	padding: 10px;
	border: 0;
	font-weight: 700;
	border-radius: 10px; 
}
.detail-payment .input-text {
	width: 100%;
	height: 40px;
	border: 0px solid rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
	font-size: 15px;
	line-height: 1.4;
	color: #999999;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.detail-payment select.input-text {
	width: 100%;
	height: 40px;
	border: 0px solid rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
	font-size: 15px;
	line-height: 1.4;
	color: #999999;
	cursor: pointer;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23CCCCCC'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 5px center;
	background-size: 20px auto;
}
.detail-payment textarea.input-text {
	height: 100px;
}
.detail-payment .input-text::-webkit-input-placeholder {
	color: #999999;
}
.detail-payment .input-text::-moz-placeholder {
	color: #999999;
}
.detail-payment .input-text:-ms-input-placeholder {
	color: #999999;
}
.detail-payment .input-text:-moz-placeholder {
	color: #999999;
}
.detail-payment .input-text:focus {
	outline: none;
}
.detail-payment .items {
	margin-bottom: 30px;
}
.your-order {
	margin-bottom: 30px;
}
.your-order .group {
	padding: 10px 5px;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
}
.your-order .group .text {
	font-size: 15px;
	color: #999;
	line-height: normal;
}
.your-order .group .price {
	font-size: 15px;
	color: #999;
	line-height: normal;
}
.your-order .group.grand-total {
	border-bottom: 0;
	padding-bottom: 0;
	font-weight: 700;
}
.your-order .group.grand-total .text,
.your-order .group.grand-total .price {
	color: #ff7f00;
}
.payment-method .message {
	font-size: 15px;
	line-height: 1.4;
	color: #999;
	display: block;
	margin-top: 10px;
}
.payment-method .submit {
	background-color: #ff7f00;
	color: #fff;
	font-size: 15px;
	line-height: 1.2;
	text-transform: uppercase;
	padding: 10px;
	border: 0;
	font-weight: 700;
	 border-radius: 10px;
}
.order-confirmation {
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.order-confirmation .message {
	padding: 30px;
	font-size: 15px;
	line-height: 1.5;
	color: #666;
	display: block;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.receive-order {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 30px;
}
.receive-order-detail {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.receive-order-detail .items {
	height: 100%;
	position: relative;
	text-align: center;
	padding: 0 30px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.receive-order-detail .items:last-child {
	border-right: 0px;
}
.receive-order-detail .label {
	font-size: 15px;
	font-weight: 700;
	color: #666666;
	line-height: normal;
	display: block;
	margin-bottom: 5px;
}
.receive-order-detail .description {
	font-size: 15px;
	font-weight: 700;
	color: #999;
	line-height: normal;
}
.order-episode-data {
	padding: 30px;
}
.which-order {
	margin-bottom: 30px;
}
.which-order .title {
	padding-left: 8px;
	position: relative;
	font-size: 18px;
	color: #575757;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
	text-transform: uppercase;
}
.which-order .title:before {
	content: '';
	position: absolute;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.which-order .group {
	padding: 10px 5px;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
}
.which-order .group .text {
	font-size: 15px;
	color: #999;
	line-height: normal;
}
.which-order .group .price {
	font-size: 15px;
	color: #999;
	line-height: normal;
}
.which-order .group.grand-total {
	border-bottom: 0;
	padding-bottom: 0;
	font-weight: 700;
}
.which-order .group.grand-total .text,
.which-order .group.grand-total .price {
	color: #ff7f00;
}
.confirm-episode {
	margin-bottom: 30px;
}
.confirm-episode .title {
	padding-left: 8px;
	position: relative;
	font-size: 18px;
	color: #575757;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
	text-transform: uppercase;
}
.confirm-episode .title:before {
	content: '';
	position: absolute;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.confirm-episode .items {
	display: flex;
	margin-bottom: 3px;
}
.confirm-episode .items a {
	color: #999;
}
.confirm-episode .items .label {
	line-height: 1.2;
	font-size: 15px;
	color: #666;
	font-weight: 700;
	text-transform: uppercase;
}
.confirm-episode .items .deco {
	padding: 0 20px;
}
.confirm-episode .items .description {
	line-height: 1.2;
	font-size: 15px;
	color: #999;
}
.confirm-your-data {
	margin-bottom: 30px;
}
.confirm-your-data .title {
	padding-left: 8px;
	position: relative;
	font-size: 18px;
	color: #575757;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
	text-transform: uppercase;
}
.confirm-your-data .title:before {
	content: '';
	position: absolute;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #ff7f00;
}
.confirm-your-data .items {
	display: flex;
	margin-bottom: 3px;
}
.confirm-your-data .items .deco {
	padding: 0 0 0 20px;
}
.confirm-your-data .items a {
	color: #999;
}
.confirm-your-data .items .label {
	line-height: 1.2;
	font-size: 15px;
	color: #666;
	font-weight: 700;
	text-transform: uppercase;
}
.confirm-your-data .items .description {
	line-height: 1.2;
	font-size: 15px;
	color: #999;
}
.deals .title {
	font-size: 30px;
	line-height: 1;
	color: #434343;
	text-transform: uppercase;
	font-weight: 700;
	display: block;
}
.deals .sub-title {
	font-size: 15px;
	line-height: 1.5;
	color: #999;
	display: block;
}
.deals .thumb {
	width: 100%;
	background-color: #ccc;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.deals .thumb img {
	height: 320x;
	object-fit: cover;
	width: 100%;
}
.deals .items {
	margin-top: 30px;
}

.select2-container .select2-selection--single {
	width: 100%;
	height: 40px;
	border: 0px solid rgba(0, 0, 0, 0.1);
	padding: 0;
	font-size: 15px;
	line-height: 1.4;
	color: #999999;
	cursor: pointer;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23CCCCCC'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E"); */
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 20px auto;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow {
	height: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23CCCCCC'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E");
	background-position: right center;
	right: 10px;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	display: none;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__clear {
	height: 40px;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	line-height: 40px;
	padding: 0px 20px;
	color: #999999;
	margin-right: 20px;
}
.select2-container--default
	.select2-search--dropdown
	.select2-search__field:focus {
	outline: none;
	box-shadow: none;
}

.home-three-services {
	padding: 25px 0px 25px;
}
.home-three-services .items {
	margin-bottom: 30px;
}
.home-three-services .card {
	border: 0px;
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 0px 4px rgba(151, 147, 147, 0.4);
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
.home-three-services .card .card-thumb {
	position: relative;
}
.home-three-services .card-title {
	font-size: 16px;
	line-height: 1.5;
	display: block;
	color: #434343;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 10px;
	position: relative;
	z-index: 1;
}
.home-three-services .card-title a {
	color: #434343;
}
.home-three-services .card-body {
	padding: 15px;
	position: relative;
}
.home-three-services .card-description {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
}
.home-three-services .card-description ul {
	padding: 0;
	margin: 0 0 15px;
}
.home-three-services .card-description li {
	list-style: none;
	font-size: 15px;
	line-height: 1.7;
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
}
.home-three-services .card-description li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23009B33' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
	width: 10px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: top center;
}
.home-three-services .card-action {
	display: block;
	width: 100%;
}
.home-three-services .card-action a {
	width: 148px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	font-size: 15px;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	background-color: #575757;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.datepicker--cell-day.-weekend- {
	pointer-events: none;
	color: #dedede;
}
