/*--------------------------------------------------

-----------------------------------------------------
    CSS INDEX
    ================
    
    1. Header CSS
        1.1 Header Top CSS
        1.2 Header Middle CSS
        1.3 Header Bottom CSS
    2. Slider CSS
    3. Offer Area CSS
    4. Corporate About CSS
    5. All Product Area CSS
        5.1 Left Side Product CSS
            5.1.1 Desktop & Television Product CSS
            5.1.2 Smartphone & Tablet Product Area CSS
        5.2 Right Side Product CSS
    6. Hot Categories Area CSS
    7. All Slide Product Area CSS
    8. Brand Area CSS
    9. Footer Area CSS
        9.1 Footer Top Area CSS
        9.2 Footer Middel Area CSS
        9.3 Footer Bottom Area CSS
    10. Modal Area CSS
    11. Home 2
    12. Home 3
    13. Home 4
    14. Home 5
    15. Home 6
    16. Home 7
    17. About Page CSS
    18. Protfolio Page CSS
    19. My Account Page CSS
    20. Wishlist Page CSS
    21. Shopping Cart Page CSS
    22. Checkout Page CSS
    23. Shop Page CSS
        23.1 Shop Left Sidebar CSS
    24. Single Product CSS
    25. Blog Page CSS
        25.1 Blog Right Sidebar CSS
        25.2 Blog Post Img CSS
        25.3 Catagorey Blog CSS
    26. Service Page CSS
        26.1 Our Service Area CSS
        26.2 Pricing Table CSS
    27. Contact Page CSS
    28. Frequently Questions Page CSS
    29. Error 404 Page CSS
---------------------------------------------------/
 
/*----------------------------------------*/

/*   Slider CSS
/*----------------------------------------*/

#snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #89c74a;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 999;
	right: 1%;
	top: 30px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {
	visibility: visible;
	/* Show the snackbar */
	/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
	However, delay the fade out process for 2.5 seconds */
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
	from {
		top: 0;
		opacity: 0;
	}

	to {
		top: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		top: 0;
		opacity: 0;
	}

	to {
		top: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		top: 30px;
		opacity: 1;
	}

	to {
		top: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		top: 30px;
		opacity: 1;
	}

	to {
		top: 0;
		opacity: 0;
	}
}

.slider-wrapper {
	position: relative
}

.nivo-caption {
	height: 100%;
	background: transparent;
	opacity: 1;
	padding: 0
}

.nivo-caption p {
	padding: 0;
	margin-bottom: 15px
}

.slider-caption {
	height: 100%
}

.slider-text {
	position: absolute;
	top: 0;
	left: 8%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	text-align: left;
	width: 92%
}

.slider-text>h1 {
	font-size: 48px;
	line-height: 1.2;
	text-transform: capitalize;
	font-weight: 700;
	color: #363f4d;
	margin-bottom: 4px;
	font-family: Rubik
}

.slider-text>h5 {
	color: #fda42c;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	font-family: Rubik;
	font-weight: 400
}

.slider-text>h4 {
	font-size: 16px;
	color: #333C49;
	margin: 40px 0;
	font-weight: 400;
	font-family: Rubik
}

.slider-text>h4>span {
	font-size: 30px;
	line-height: 30px;
	color: #fda42c;
	font-family: Rubik;
	font-weight: 500
}

.nivo-controlNav {
	position: absolute;
	z-index: 9;
	bottom: 20px;
	left: 8%;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.slider-wrapper:hover .nivo-controlNav {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible
}

.nivo-controlNav a {
	width: 10px;
	height: 10px;
	background: #CCCCCC;
	text-indent: -9999px;
	display: inline-block;
	margin-right: 8px;
	line-height: 10px;
	border-radius: 100%;
	z-index: 999;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.nivo-controlNav a:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	background: #fda42c;
}

.nivo-controlNav a.active {
	background: #fda42c;
	-webkit-transform: scale(1.5);
	transform: scale(1.5)
}

/*----------------------------------------*/

/*   3. Offer Area CSS
/*----------------------------------------*/

.offer-img>a,
.offer-img2>a,
.categories-img>a {
	display: block;
	overflow: hidden;
	border-radius: 4px;
	position: relative
}

.categories-img>a {
	border-radius: 0;
}

.offer-img>a:before,
.categories-img>a:before {
	background: rgba(0, 0, 0, 0.1);
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
	filter: alpha(opacity=0);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	z-index: 1
}

.offer-img>a>img,
.categories-img>a>img {
	-webkit-transition: all 300ms ease-in;
	transition: all 300ms ease-in
}

.offer-img>a>img:hover,
.categories-img>a>img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.offer-img>a:hover:before,
.categories-img>a:hover:before {
	filter: alpha(opacity=100);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

/*------------------------------------------------*/

/*   Desktop & Television Product CSS
/*------------------------------------------------*/

.tab-content .tab-pane {
	display: block;
	height: 0;
	width: 100%;
	visibility: hidden;
	opacity: 0
}

.tab-content .tab-pane.active {
	height: auto;
	visibility: visible;
	opacity: 1
}

.all-product,
.product-container {
	padding: 0 15px
}

.item-col2 {
	padding: 0
}

.item-col2 {
	margin-top: 25px
}

.item-col .single-product,
.single-item,
.single-product3 {
	position: relative;
	display: block;
	overflow: hidden
}

.single-item {
	/* padding: 0px 0 */
}

.single-product:after,
.item-col2 .single-product:after {
	position: absolute;
	content: "";
	border-right: 1px solid #ebebeb;
	top: 15px;
	right: 0px;
	bottom: 15px;
	z-index: 999
}

.product-container .col-md-3:last-child .single-product:after {
	border-right: 0
}

.owl-item.last.active .col-md-12:last-child .single-product:after {
	border-right: 0
}

.all-list-product .owl-item.active:after,
.hot-deal-of-product .owl-item.active:after,
.new-arrival-list-product .owl-item.active:after,
.electronic-product3 .owl-item.active:after {
	content: "";
	border-right: 1px solid #ebebeb;
	display: block;
	position: absolute;
	top: 15px;
	right: 0;
	bottom: 15px;
	z-index: 1
}

.all-list-product:last-child .owl-item.active.last:after,
.hot-deal-of-product:last-child .owl-item.active.last:after,
.new-arrival-list-product:last-child .owl-item.active.last:after,
.electronic-product3:last-child .owl-item.active.last:after {
	border-right: 0
}

.product-img {
	position: relative;
	overflow: hidden
}

.product-img a {
	display: block;
	position: relative
}

.product-img a img {
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width: 100%
}

.product-img a img.hover-img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}

.single-product:hover .product-img a img.hover-img,
.single-item:hover .product-img a img.hover-img,
.single-product3:hover .product-img a img.hover-img {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

.sicker {
	position: absolute;
	top: 25px;
	right: 15px;
	width: 35px;
	height: 20px;
	background: #fda42c;
	color: #fff;
	line-height: 20px;
	border-radius: 2px;
	text-align: center;
	font-size: 12px;
	z-index: 991
}

.product-content {
	text-align: center;
	padding: 10px 0;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.product-action {
	text-align: center;
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	z-index: 992;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.single-product:hover .product-action,
.single-product3:hover .product-action {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible
}

.product-action>li {
	display: inline-block;
	margin-right: 5px
}

.product-action>li {
	display: inline-block;
	margin-right: 5px
}

.product-action>li>a {
	display: block;
	width: 35px;
	height: 35px;
	background: #363F4D;
	color: #fff;
	border-radius: 3px;
	line-height: 35px;
	text-align: center;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.product__heart {
    cursor: pointer;
    position: absolute;
    top: 0px;
    padding-top: 5px;
    right: 20px;
    padding-right: 7px;
    font-size: 22px;
    color: #fda42c;
}

.product__heart-active {
	color: #fda42c !important;
}

.product__box:hover .product__heart {
	font-size: 21px;
}

.product-gallery-box {
	position: relative;
}

.detail-product__heart .icon-heart {
	position: absolute;
	right: 21px;
	top: 0px;
	z-index: 1;
	font-size: 19px;
	border: 1px solid #e6e6e6;
	padding: 5px;
	color: #6dbe14;
}

.tooltip-inner {
	padding: 5px 8px;
	border-radius: 0;
	background: #363f4d
}

.tooltip.top .tooltip-arrow {
	border-top-color: #363f4d
}

.product-action>li>a:hover {
	background: #fda42c;
	color: #fff
}

.product-content>h2 {
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	text-align: center;
	margin-bottom: 10px
}

.rating i.fa:not(:last-child) {
	color: #F9BA48
}

.product-price>span.old-price {
	color: #a4a4a4;
	text-decoration: line-through;
	margin-right: 5px;
	font-size: 14px;
	font-weight: 400
}

.product-price>span.new-price {
	font-size: 16px;
	font-weight: 500;
	color: #fda42c
}

.single-product:hover a.button.add-btn,
.single-product3:hover a.button.add-btn {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible;
}

/*----------------------------------------------*/

/*   5.1.2 Smartphone & Tablet Product Area CSS
/*-----------------------------------------------*/

.slide-active2 .slick-slide>div:last-child .single-product {
	border-bottom: 0
}

.single-product.style-2,
.single-product3 {
	border-bottom: 1px solid #ebebeb;
	padding: 17px 0;
	overflow: hidden
}

.single-product.style-2:after {
	border-right: 0
}

.all-list-product .col-md-12:last-child .single-product,
.new-arrival-list-product .col-md-12:last-child .single-product,
.electronic-product3 .col-md-12:last-child .single-product3 {
	border: none
}

.single-product.style-2>.product-img {
	padding-right: 4%
}

.single-product.style-2>.col-6>.product-content {
	text-align: left;
	padding: 0;
	padding-left: 4%
}

.single-product.style-2>.col-6>.product-content>h2 {
	text-align: left
}

.single-product.style-2>.col-4>.product-img>a {
	display: block
}

/*----------------------------------------------*/

/*   5.2 Right Side Product CSS
/*-----------------------------------------------*/

.hot-deal-product,
.new-arrivals-product,
.our-blog {
	border: 1px solid #ebebeb;
	border-radius: 3px
}

.owl-nav>div {
	position: absolute;
	top: -65px;
	right: 36px;
	width: 28px;
	height: 14px;
	font-size: 18px;
	color: #b2b2b2;
	text-align: center
}

.owl-nav>div.owl-prev:after {
	position: absolute;
	content: "";
	top: 6px;
	right: 1px;
	width: 1px;
	height: 12px;
	background: #b2b2b2
}

.owl-nav>div.owl-next {
	right: 12px
}

.count-down-box {
	margin-bottom: 25px
}

.count-box {
	display: block;
	width: 100%;
	overflow: hidden
}

.single-count {
	width: 55px;
	height: 70px;
	display: inline-block;
	text-align: center;
	margin-right: 3px;
	font-size: 14px;
	text-transform: capitalize;
	line-height: 18px;
	background: #f4f6f7;
	padding-top: 17px;
	border-radius: 3px
}

.single-count span {
	font-size: 14px;
	color: #232f3e;
	display: block;
	font-weight: 700
}

.hot-del-single-product .slick-arrow {
	position: absolute;
	top: -45px;
	right: 40px;
	width: 28px;
	height: 14px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.slick-arrow:hover {
	color: #fff
}

.slick-next-btn.slick-arrow:after {
	position: absolute;
	content: "";
	top: 4px;
	right: 28px;
	width: 1px;
	height: 12px;
	background: #fff
}

.slick-next-btn.slick-arrow {
	right: 12px
}

/*----------------------------------------------*/

/*   6. Hot Categories Area CSS
/*-----------------------------------------------*/

.single-categories {
	position: relative
}

.single-categories:after {
	position: absolute;
	content: "";
	border-right: 1px solid #ebebeb;
	top: 15px;
	right: -15px;
	bottom: 15px
}

.hot-categories .col-lg-3:last-child .single-categories:after {
	border-right: 0
}

.categories-content>h3 {
	font-family: Rubik;
	font-size: 16px;
	color: #363f4d;
	font-weight: 500;
	line-height: 46px;
	text-transform: capitalize
}

.catgories-list>li {
	line-height: 26px;
	margin: 0;
	display: block
}

/*----------------------------------------------*/

/*   7. All Slide Product Area CSS
/*-----------------------------------------------*/

.slide-active3 .slick-current {
	border-top: 0
}

.hot-del-single-product {
	background: #fff;
	padding: 10px;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 1px 0 #ebebeb
}

.single-product.hot-deal {
	border-bottom: 1px solid #ebebeb
}

.single-product.hot-deal:after {
	border-right: 0
}

/*----------------------------------------------*/

/*   8. Brand Area CSS
/*-----------------------------------------------*/

.brand-area {
	border-bottom: 1px solid #ebebeb
}

.single-brand.img-full {
	padding: 30px
}

.brand-active.owl-carousel .single-brand img {
	width: auto
}

/*----------------------------------------*/

/*  10. Modal Area CSS
/*----------------------------------------*/
@media (min-width:768px) {
	.modal-dialog.modal-dialog-centered.login-signup-modal-dialog {
		min-width: 750px !important;
		max-width: 750px !important;
	}
}

.popup-content-wrapper {
	border-radius: 0 !important;
}

.close.popup-close-btn {
	position: absolute;
	right: 5px;
	display: block;
	z-index: 9;
	font-size: 26px;
}

.popup-body {
	padding: 0;
}

.login-sign-info {
	background: #fda42c;
	position: relative;
	left: -3px;
	padding: 50px;
}

.popup-detail-wrap h3 {
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	text-transform: uppercase;
	padding-bottom: 20px;
}

.popup-detail-wrap p {
	color: #fff;
	font-size: 18px;
}

.image-blog {
	position: relative;
	bottom: -60px;
}

.form-fild-row {
	padding: 45px 25px 0;
	position: relative;
}

.form-element {
	position: relative;
	margin: 0 auto;
	padding-bottom: 25px;
}

.form-element input {
	box-sizing: border-box;
	width: 100%;
	padding: 7px 20px 0 20px;
	height: 50px;
	font-size: 15px;
	border: 1px solid #f0eeee;
	outline: none;
	background-color: #f7f7f7;
	color: #373737;
}

.floating-label {
	box-sizing: border-box;
	width: 100%;
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 15px;
	cursor: text;
	color: #8c8c8c;
	transition: font 0.1s ease, top 0.1s ease, transform 0.1s ease;
	transition: font 0.1s ease, top 0.1s ease, transform 0.1s ease, -webkit-transform 0.1s ease, -moz-transform 0.1s ease, -o-transform 0.1s ease;
}

input:focus~.floating-label {
	font-size: 11px;
	top: -4px;
}

.floating-label.active {
	font-size: 11px;
	top: -4px;
}

.form-element input:focus,
.form-element input:focus:hover {
	background: #fff;
}

.forgot-pass {
	position: relative;
}

.forgot-pass a {
	position: absolute;
	right: 14px;
	top: -62px;
	color: #2874f0;
	font-weight: 600;
}

.btn-fild {
	text-align: center;
}

.login-btn {
	margin-bottom: 20px;
}

.login-btn .submit-btn {
	background: #fda42c;
	color: #fff;
	padding: 10px 20px;
	width: 100%;
	font-weight: 600;
	transition: 0.5s;
}

.or-title p {
	color: #3c3c3c;
	font-weight: 600;
}

.otp-btn {
	padding-bottom: 25px;
}

.loginCont__btn {
	background: #f7f7f7;
	display: block;
	padding: 10px 10px;
	border: 1px solid #d0d0d0;
	color: #4a4a4a !important;
	font-weight: 600;
}

.loginCont__btn:hover {
	background: #fff;
	color: #2874f0 !important;
	border: 1px solid #fff;
	box-shadow: 0px 4px 8px -4px rgba(145, 144, 144, 0.8);
}

.links__title {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	margin-top: 34px;
	font-weight: 600;
}

.links__btn {
	color: #fda42c !important;
	transition: 0.5s;
}

.links__btn:hover {
	color: #2874f0 !important;
}

@media (min-width: 768px) {
	#formHolder {
		overflow: hidden;
		height: 516px;
	}

	.login-sign-info {
		height: 100vh;
	}

	.form-fild-row {
		padding: 25px 25px 0;
		position: relative;
	}
}

/*----------------------------------------*/

/*  23. Shop Page CSS
/*----------------------------------------*/

/*----------------------------------------*/

/*  23.1 Shop Left Sidebar CSS
/*----------------------------------------*/

.shop-product-area .tab-content .tab-pane {
	display: none;
	height: auto;
}

.shop-product-area .tab-content .tab-pane.active {
	display: block;
}

.widget.widget-shop-categories {
	margin: 0;
	border-radius: 4px 4px 0 0;
}

.widget.widget-compare {
	margin-top: 30px;
}

.product-categories>li>a {
	font-size: 14px;
	text-transform: capitalize;
	color: #363f4d;
	display: inline-block;
}

.widget.widget-price-slider,
.widget.widget-brand,
.widget.widget-manufacture,
.widget.widget-color {
	border-top: 0;
	border-radius: 0;
	background: #f6f6f6;
	margin: 0;
}

.widget.widget-brand,
.widget.widget-manufacture,
.widget.widget-color {
	background: #fff;
}

.widget.widget-color {
	margin: 0 0 30px 0;
}

.widget.widget-price-slider h3.widget-title,
.widget.widget-brand h3.widget-title,
.widget.widget-manufacture h3.widget-title,
.widget.widget-color h3.widget-title {
	font-size: 12px;
	margin: 0;
	border-bottom: 0;
	font-weight: 500;
}

.price-filter {
	margin-top: 30px;
	font-size: 12px;
}

#slider-range {
	margin-bottom: 25px;
}

.ui-widget.ui-widget-content {
	border: 0;
	background: #E5E5E5;
	height: 5px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	background: #fda42c;
	height: 15px;
	border: 0;
	width: 15px;
	border-radius: 100%;
}

.ui-widget-header {
	border: 0;
	background: #fda42c;
	color: #fff;
	font-weight: bold;
}

.price-filter input.amount {
	width: 100px;
	border-radius: 0;
	height: 30px;
	background: #f6f6f6;
	color: #363f4d;
}

.compare-menu {
	margin-bottom: 10px;
}

.clear-all {
	font-size: 12px;
	line-height: 35px;
	float: left;
	text-transform: none;
}

.shop-tab-menu {
	border: 1px solid #ebebeb;
	padding: 13px 15px;
	border-radius: 4px;
}

.shop-tab>ul>li {
	display: inline-block;
	margin-right: 25px;
	margin-top: 5px;
}

.shop-tab>ul>li>a {
	font-size: 21px;
	color: #363f4d;
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.shop-tab>ul>li>a.active,
.shop-tab>ul>li:hover>a {
	color: #fda42c;
}

.toolbar-form {
	float: left;
	width: 52%;
}

.toolbar-select span {
	color: #363f4d;
}

.order-by {
	width: 69%;
	height: 30px;
	border: 1px solid #ebebeb;
	text-align: left;
	font-size: 14px;
	padding: 0 10px;
}

.show-result {
	float: right;
	height: 32px;
	line-height: 30px;
	margin: 0 0 0 15px;
}

.show-result p {
	font-size: 14px;
	color: #363f4d;
}

.product-container {
	overflow: hidden;
	padding-bottom: 25px;
	position: relative;
}

.product-container:after {
	position: absolute;
	content: "";
	border-bottom: 1px solid #ebebeb;
	display: block;
	bottom: 0;
	left: 15px;
	right: 15px;
	z-index: 99;
}

.product-container:last-child:after {
	border-bottom: 0;
}

.product-content-2>h2 {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 400;
	margin-bottom: 15px;
}

.product-discription>p {
	font-size: 14px;
	margin-bottom: 25px;
}

.product-cart-area-list>li {
	display: inline-block;
}

/*----------------------------------------*/

/*  24. Single Product CSS
/*----------------------------------------*/

.single-product-info {
	overflow: hidden;
	margin-bottom: 50px;
}

.single-product-tab {
	margin-top: 15px;
}

.discription-tab-content {
	overflow: hidden;
}

.discription-tab-content .tab-pane {
	overflow: hidden;
}

.easyzoom-flyout img {
	width: auto !important;
	max-width: none !important;
}

.single-product-content {
	position: relative;
}

.product-nav {
	position: absolute;
	top: 0;
	right: 0;
}

.product-nav>a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #d1d1d1;
	line-height: 28px;
	text-align: center;
	border-radius: 3px;
	color: #d1d1d1;
	position: relative;
	margin-right: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-nav>a:hover {
	background: #fda42c;
	border-color: #fda42c;
	color: #fff;
}

.product-title {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 16px;
	color: #363f4d;
}

.product-rating {
	margin-bottom: 20px;
}

.product-rating i.fa {
	color: #F9BA48;
}

.product-rating i.fa.on-color {
	color: #e1e1e1;
}

.review-link {
	color: #fda42c;
	margin-left: 10px;
}

.single-product-price {
	margin-bottom: 25px;
}

.single-product-price>.old-price {
	color: #a4a4a4;
	font-size: 16px;
	font-weight: 400;
	margin-right: 5px;
	text-decoration: line-through;
}

.single-product-price>.new-price {
	color: #fda42c;
	font-weight: 700;
	font-size: 20px;
}

.product-description>p {
	margin-bottom: 25px;
	color: #7a7a7a;
	font-size: 14px;
}

.single-product-quantity {
	border-bottom: 1px solid #ebebeb;
	margin: 0 0 20px;
	padding-bottom: 20px;
}

.quantity label {
	margin-right: 5px;
}

.wislist-compare-btn ul>li {
	display: inline-block;
	margin-right: 15px;
}

.wislist-compare-btn ul>li>a.wishlist,
.wislist-compare-btn ul>li>a.compare {
	position: relative;
	font-size: 12px;
	display: block;
	text-align: center;
	line-height: 30px;
	font-weight: 400;
	text-transform: capitalize;
}

.wislist-compare-btn ul>li>a.wishlist:before,
.wislist-compare-btn ul>li>a.compare:before {
	content: '\f08a';
	font-family: FontAwesome;
	color: #fda42c;
	display: inline-block;
	font-size: 16px;
	width: 30px;
	height: 30px;
	line-height: 28px;
	border: 1px solid #fda42c;
	border-radius: 100%;
	text-align: center;
	margin-right: 5px;
	vertical-align: middle;
}

.wislist-compare-btn ul>li>a.compare:before {
	content: "\f079"
}

.product-meta {
	margin: 20px 0 10px;
	border-top: 1px solid #ebebeb;
	padding-top: 15px;
	text-transform: capitalize;
}

.single-product-sharing>ul>li {
	display: inline-block;
	margin-right: 10px;
}

.single-product-sharing>ul>li>a {
	color: #fff;
	width: 16px;
	height: 16px;
	background: #7a7a7a;
	font-size: 10px;
	display: block;
	line-height: 17px;
	text-align: center;
	border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-product-sharing>ul>li>a:hover {
	background: #fda42c;
	color: #fff;
}

/*----------------------------------------*/

/*  Top Savers Today Section
/*----------------------------------------*/

.top-savers-section {
	padding-bottom: 70px
}

.top-savers-container {
	background: #fbfbfb;
	border-width: 1px;
	border-style: solid;
	border-color: #f5f5f5 #eee #d5d5d5 #eee;
	box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
	padding: 15px;
}

.section-heading-title {
	margin-bottom: 22px;
	margin-left: -5px;
	border-bottom: 1px solid #e6e6e6
}

.product-title {
	line-height: 36px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0px;
	padding: 10px 20px 10px 20px;
	position: relative;
	display: inline-block;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-top: 0px;
	margin-left: -21px
}

.product-title::after {
	content: "";
	height: 1px;
	width: 1px;
	border-style: solid;
	border-width: 5px;
	position: absolute;
	bottom: -10px;
	left: 0
}

.red-title .product-title {
	background: #fda42c
}

.red-title .product-title::after {
	border-color: #fda42c #fda42c transparent transparent;
}

.top-savers-crousel .product__box {
	margin: 0 7.5px;
	background: #fff;
	overflow: hidden;
	padding-bottom: 20px;
}

.top-savers-crousel .product__content .product__link {
	font-size: 15px
}

.product-cart-btn-wrap {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 5;
	padding: 10px 0 0;
	-webkit-transform: translate(0, 20px);
	-ms-transform: translate(0, 20px);
	transform: translate(0, 20px);
	opacity: 0;
	background: #fff;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear
}

.add-to-cart-btn {
	display: block;
	width: 96%;
	padding: 13px 10px;
	background: #fda42c;
	color: #fff;
	border-radius: 5px;
	margin: 0 auto;
	transition: 0.5s
}

.add-to-cart-btn:hover {
	background: #fff;
	color: #89c74a;
	border: 1px solid #89c74a
}

.top-savers-crousel .product__box:hover .product-cart-btn-wrap {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0px, -67px)
}

/*----------------------------------------*/

/*  Shop By Category Section
/*----------------------------------------*/

.shop-category {
	background: #fbfbfb;
	padding: 30px 0
}

.shop-category-container {
	background: #fff;
	padding-bottom: 20px
}

.green-title .product-title {
	background: #fda42c
}

.green-title .product-title::after {
	border-color: #183e7c #fda42c transparent transparent
}

.shop-category-container .product__catagory {
	margin: 0
}

.shop-category .product__img-box--catagory .product__img {
	-webkit-transition: opacity 0.5s, -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
	transition: opacity 0.5s, transform 2s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18)
}

.shop-category .product__catagory--single:hover .product__img {
	transform: scale(1.09);
	-webkit-transform: scale(1.2)
}

/*----------------------------------------*/

/*  Best Everyday Staples
/*----------------------------------------*/

.staples-box {
	border-right: 1px solid #ebebeb;
	border-left: 0;
	border-top: 0;
	border-bottom: 0;
}

.staples-box:last-child {
	border-right: 0
}

/*----------------------------------------*/

/*  Cleaning, Beauty & House Colomn Section
/*----------------------------------------*/

.threecolomn-box {
	display: flex;
	align-items: center
}

.products-upto-title span {
	color: #7ec438;
	font-weight: 600
}

.threecolomn-box:hover .threecolomn-link {
	color: #fda42c
}

.divider-line {
	background: #7f8ea8;
	width: 60px;
	height: 2px;
	transition: 0.5s;
	position: absolute;
	margin-top: -5px
}

.threecolomn-box:hover .divider-line {
	width: 100px;
	background: #fda42c
}

/* ===============================================
    16. Banner-image
-------------------------------------------*/

.banner-image-effect {
	position: relative;
	overflow: hidden;
}

.banner-image-effect {
	position: relative;
	z-index: 1;
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	background: #fff;
}

.banner-image-effect:before,
.banner-image-effect:after {
	background: rgba(255, 255, 255, .4) none repeat scroll 0 0;
	content: " ";
	height: 0;
	padding: 0;
	position: absolute;
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	width: 0;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	z-index: 1;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
}

.banner-image-effect:before {
	left: 0;
	top: 0;
}

.banner-image-effect:after {
	bottom: 0;
	right: 0;
}

.banner-image-effect:hover:before,
.banner-image-effect:hover:after {
	height: 100%;
	width: 100%;
	transform: rotatex(-180deg);
	-webkit-transform: rotatex(-180deg);
	-moz-transform: rotatex(-180deg);
	-ms-transform: rotatex(-180deg);
	-o-transform: rotatex(-180deg);
	opacity: 0;
}

/* ===============================================
    176.  Success Page
-------------------------------------------*/

.success-wrapper {
	text-align: center;
	width: 350px;
	box-shadow: 0px 7px 23px -6px rgba(100, 100, 100, 0.2);
	margin: 0 auto;
	border-radius: 5px;
	position: relative;
	transition: 0.5s;
}

.success-wrapper::after {
	width: 391px;
	height: 88.5%;
	position: absolute;
	bottom: 71px;
	left: -19px;
	right: 0;
	content: "";
	z-index: -1;
	opacity: 1;
	/* background-image: linear-gradient(to left top, #8cdb77, #6fda52, #27ae01); */
	border-radius: 5px;
	transition: 0.5s;
}



.innner-content {
	padding: 49px 40px 57px;
}

.green-img {
	display: none;
}

.success-wrapper .blue-lagoon-img {
	display: none;
	text-align: center;
}

.success-wrapper .green-img {
	display: block;
	margin: 0 auto;
}

.success-content h1 {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	padding: 31px 0 0;
	transition: 0.5s;
}

.success-wrapper h1 {
	color: #27ae01;
}

.success-content p,
.error-content p,
.success-content h5 {
	font-size: 19px;
	font-weight: 400;
	color: #fff;
	transition: 0.5s;
}

.success-wrapper p,
.success-wrapper h5 {
	color: #fda42c;
}

.btn-filds .submit-button {
	background: #fff;
	width: 100%;
	padding: 23px 0;
	color: #686868;
	font-size: 20px;
	font-weight: 600;
	transition: 0.5s;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.success-wrapper .submit-button {
	background: #48b206;
	color: #fefffe;
	border-radius: 8px;
	padding: 15px 10px;
}

/* ===============================================
    176.  Error Page
-------------------------------------------*/

.error-wrapper {
	text-align: center;
	width: 350px;
	box-shadow: 0px 7px 23px -6px rgba(100, 100, 100, 0.2);
	margin: 0 auto;
	border-radius: 5px;
	position: relative;
	transition: 0.5s;
}

.error-wrapper::after {
	width: 391px;
	height: 88.5%;
	position: absolute;
	bottom: 71px;
	left: -19px;
	right: 0;
	content: "";
	z-index: -1;
	opacity: 1;
	/* background-image: linear-gradient(to left top, #fc3111, #fc4718, #f98c27); */
	border-radius: 5px;
	transition: 0.5s;
}



.innner-content {
	padding: 49px 40px 57px;
}

.red-img {
	display: none;
}

.error-wrapper .RedYellow-img {
	display: none;
	text-align: center;
}

.error-wrapper .red-img {
	display: block;
	margin: 0 auto;
}

.error-content h1 {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	padding: 31px 0 0;
	transition: 0.5s;
}

.error-wrapper h1 {
	color: #e1192a;
}

.error-wrapper p {
	color: #000;
}

.error-wrapper .submit-button {
	background: #e1192a;
	color: #fff;
	border-radius: 8px;
	padding: 15px 10px;
}

span {
	transition: all .3s ease 0s;
	outline: 0;
	border: none
}

dl,
ol,
ul {
	list-style: outside none none;
	margin: 0;
	padding: 0
}

.sidebar {
	margin-top: 60px
}

@media (min-width:768px) {
	.sidebar {
		margin-top: 80px
	}
}

@media (min-width:992px) {
	.sidebar {
		margin-top: 0
	}
}

.sidebar__widget {
	margin-bottom: 40px
}

.sidebar__widget:last-child {
	margin-bottom: 0
}

.sidebar__box {
	position: relative
}

.sidebar__box::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ebebeb;
	bottom: -20px;
	left: 0
}

.sidebar__title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 40px;
	text-transform: uppercase
}

.sidebar__menu>li {
	margin-bottom: 10px
}

.sidebar__menu>li:last-child {
	margin-bottom: 0
}

.sidebar__menu>li a:hover {
	color: #89c74a
}

.sidebar__menu-collapse-list:last-child .accordion__title {
	margin-bottom: 0
}

.sidebar__size li,
.sidebar__tag li {
	display: inline-block;
	margin-right: 2.5px
}

.sidebar__size li:last-child,
.sidebar__tag li:last-child {
	margin-right: 0
}

.sidebar__menu-filter-list {
	margin-bottom: 10px
}

.sidebar__menu-filter-list:last-child {
	margin-bottom: 0
}

.sidebar__banner img {
	height: auto !important
}

.accordion__title {
	display: flex;
	font-weight: 700;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px
}

.accordion__category-list {
	border-top: 1px solid #ebebeb
}

.accordion__category-list li {
	padding-left: 5px;
	padding: 5px;
	display: block
}

.accordion a {
	text-decoration: none !important;
	color: #222
}

.accordion a:hover {
	color: #fda42c;
}

.sidebar__post-blog .sidebar__post-img {
	max-width: 30%;
	overflow: hidden
}

.sidebar__post-blog .sidebar__post-content {
	margin-left: 10px
}

.sidebar__post-blog .sidebar__post-content a {
	font-size: 14px;
	word-wrap: break-word;
	font-weight: 500
}

.sidebar__post-blog .sidebar__post-content span {
	font-size: 13px
}

.sidebar__post-product .sidebar__product-img {
	max-width: 30%;
	overflow: hidden
}

.sidebar__post-product .product__content {
	margin-left: 10px
}

.sidebar__post-product .product__content a {
	font-size: 14px;
	word-wrap: break-word;
	font-weight: 500
}

.sidebar__menu-filter-list input {
	padding: 10px;
	position: relative;
	top: 7px;
}

.sidebar__menu-filter-list input {
	padding: 10px;
	position: relative;
	top: 7px;
}

.sidebar__menu-filter-list input[type="checkbox"]::after {
	border: 1px solid #fda42c40;
	top: 0px;
	left: 0;
}


/* new css  */
.main-banner{
	background-color: #fff3f4;
	padding: 10px 0 30px;
}
.banner-box{
	position: relative;
	padding: 70px 30px;
	color: #fff;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
}
.banner-box::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #1e1202;
    opacity: 0.7;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.banner-box1{
	background-image: url("../image/slider/1.jpg");
	background-position: right;
}
.banner-box2{
	background-image: url("../image/slider/footer2.webp");
}
.banner-box3{
	background-image: url("../image/slider/footer3.jpg");
}
.banner-box4{
	background-image: url("../image/banner/banner-4.jpg");
}
.newsletter-box{
	background-color: #183e7c;
	border-radius: 10px;
	padding: 25px;
}
.newsletter-box .section-content__inner h2::after{
	display: none;
}


/* ecommerce 7 css  */
@media only screen and (max-width: 575px) {
	.menubar {
		top: 64% !important;
		right: 5% !important;
	}
}
div#large_filter {
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
	padding-bottom: 20px;
}
.site-header-menu-inner.stickable-header {
    height: auto !important;
    box-shadow: 0 1px 10px #e3e3e3;
}