/*
Copyright (c) 2021 
------------------------------------------------------------------
Template Name: lighting store

table of content:-
1.main css/body
2.header css/.ls_header_wrapper
3.menu css/.ls_menu_wrapper
4.slider css/.ls_main_slider_wrapper
5.product css/.ls_product_wrapper
6.featured product css/.ls_featuredproduct_wrapper
7.banner1 css/.ls_banner1_wrapper
8.banner2 css/.ls_banner2_wrapper
9.banner3 css/.ls_banner3_wrapper
10.newslatter css/.ls_newslatter_wrapper
11.top footer css/.ls_top_footer_wrapper
12.footer css/.ls_footer_wrapper
13.about page css/.ls_about_wrapper
14.product page css/.ls_inner_banner
15.contact page css/.ls_contact_info_wrapper
16.shop single page css/.ls_sidebar
17.blog page css/.ls_blog_wrapper
18.blog single page css/.ls_blog_wrapper.blog_single
19.error page css/.ls_error_wrapper
20.coming soon page css/.ls_commingsoon_wrapper
21.faq page css/.ls_faq_wrapper
22.cart page css/.ls_cart_wrapper
23.checkout page css/.ls_checkout_wrapper
24.categories page css/.ls_categories_wrapper
25.media css
------------------------------------------------------------------- */
/**main css start**/
body {

	font-size: 14px;
	line-height: 30px;
	color: #c4c5cb;
	font-family: 'Open Sans', sans-serif;
	position: relative;
	background: #ffffff !important;
	-webkit-font-smoothing: antialiased;
}

.container:after {
	display: inherit;
}

a {
	color: inherit;

}

a:hover,
a:focus {
	color: #35bfcc;
	text-decoration: none;
}

a:focus {
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: inherit;
	line-height: 1.1;
	color: black;
	font-family: 'Merriweather', serif;
}

label {
	/* width: 100%; */
	/* float: left; */
	color: #333333;
	/* font-size: 14px; */
	font-weight: 500;
	text-transform: capitalize;
}

.modal {
	position: fixed;
	z-index: 9999;
	display: none;
	-webkit-overflow-scrolling: touch;
	outline: 0;
	top: 50%;
	transform: translateY(-50%);
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.ls_loader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #ffffff;
	z-index: 999999;
}

.ls_loader .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.ls_loader .loader span {
	width: 100px;
	height: 100px;
	display: inline-block;
}

.ls_menu_wrapper.fixed_header {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	right: 0;
	z-index: 9999;
	border-bottom: 1px solid rgb(53 191 204 / 19%);
}

.ls_main_wrapper {
	width: 100%;
	float: left;
}

.ls_btn {
	color: rgba(255, 255, 255, 1);
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
	background-color: #35bfcc;
	display: inline-block;
	z-index: 1;
	min-width: 150px;
	text-align: center;
	border-radius: 5px;
}

.ls_btn a {
	width: 100%;
	z-index: 1;
	height: 50px;
	float: left;
	cursor: pointer;
	line-height: 50px;
	text-transform: capitalize;
	color: #ffffff;
	padding: 0 50px;
	position: relative;
}

.ls_btn::before {
	content: '';
	position: absolute;
	top: 50px;
	left: -5px;
	width: 100%;
	height: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-bottom: 190px solid rgba(255, 255, 255, 0.25);
	z-index: -1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.ls_btn::after {
	content: '';
	position: absolute;
	top: 50px;
	left: -5px;
	width: 100%;
	height: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-bottom: 190px solid rgba(255, 255, 255, 0.25);
	z-index: -1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.ls_btn::after {
	-webkit-transition-delay: 0.2s;
	/* Safari */
	transition-delay: 0.2s;
}

.ls_btn:hover::before {
	opacity: 1;
	-webkit-transform: translate(0px, -190px);
	transform: translate(0px, -190px);
}

.ls_btn:hover::after {
	opacity: 1;
	-webkit-transform: translate(0px, -150px);
	transform: translate(0px, -150px);
}

.ls_hover {
	width: 100%;
	position: relative;
	float: left;
	overflow: hidden;
	border-radius: 5px;
}

.ls_hover:hover .ls_hover_wrapper {
	opacity: 1;
}

.ls_hover:hover .ls_hover_wrapper .overlay_center {
	bottom: 35%;
}

.ls_hover img {
	border-radius: 5px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.ls_hover:hover img {
	transform: scale(1.2) rotate(5deg);
	-webkit-transform: scale(1.2) rotate(5deg);
	-moz-transform: scale(1.2) rotate(5deg);
	-ms-transform: scale(1.2) rotate(5deg);
	-o-transform: scale(1.2) rotate(5deg);
}

.ls_hover_wrapper {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	border-radius: 5px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.overlay_center {
	position: inherit;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.overlay_center a {
	width: 150px;
	display: inline-block;
	height: 55px;
	line-height: 55px;
	background-color: #ffffff;
	border-radius: 60px;
	color: #35bfcc;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	text-align: center;
}

.modal-content {
	width: 100%;
	float: left;
	position: relative;
}

.modal-content .modal-footer {
	position: absolute;
	left: 0;
	top: 0;
	border: none;
	z-index: 999;
}

.modal-body {
	width: 100%;
	float: left;
	max-height: calc(100vh - 200px);
	overflow-y: auto;
}

.modal-body .single_product.feature_product .fp_hover,
.modal-body .single_product.feature_product:hover .fp_hover {
	right: -5%;
	opacity: 1;
	visibility: visible;
	top: 0%;
}

.show-submenu {
	display: none;
}

/**main css end**/
/**header css start**/
.ls_header_wrapper {
	width: 100%;
	float: left;
	/*padding:20px 0 10px;*/
	padding: 5px 0 0px;
	background-color: #d9f3f5;
	border-bottom: 1px solid #f0f0f0;
}

.ls_header_wrapper,
.ls_socialicon_wrapper {
	/*width:100%;*/
	float: left;
	margin-top: 0px;
}

.ls_header_detail {
	width: 100%;
	float: left;
	margin-top: 40px;
}

.ls_socialicon_wrapper {
	padding: 14px 0;
}

.ls_header_detail .ls_header_ico,
.ls_header_detail .ls_header_pera {
	width: 100%;
	float: left;
}

.ls_header_ico span {
	width: 30px;
	height: 30px;
	float: left;
	text-align: center;
	line-height: 30px;
	background: #35bfcc;
	color: #ffffff;
	border-radius: 3px;
}

.ls_header_ico p {
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	color: #333333;
	margin: 0px;
}

.ls_header_pera p {
	text-transform: capitalize;
	margin: 0px;
	padding-top: 5px;
}

.ls_socialicon_wrapper ul {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}

.ls_socialicon_wrapper ul li {
	float: left;
	margin-right: 20px;
}

.ls_socialicon_wrapper ul li:last-child {
	margin-right: 0px;
}

.ls_socialicon_wrapper ul li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: #35bfcc;
	display: inline-block;
	color: #ffffff;
	text-align: center;
	font-size: 18px;
	border-radius: 3px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.ls_socialicon_wrapper ul li a:hover {
	color: #35bfcc;
	background: #e0fdff;
}

/**header css end**/
/**menu css start**/
.ls_menu_wrapper {
	width: 100%;
	float: left;
}

.ls_menu_wrapper .ls_menu {
	width: 100%;
	float: left;
	margin-top: 15px;
	;
}

.ls_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ls_menu ul li {
	float: left;
	margin-right: 40px;
	position: relative;
}

.ls_menu ul li a {
	font-size: 16px;
	display: inline-block;
	text-transform: capitalize;
	padding: 23px 0 23px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	position: relative;
	color: #333333;
}

.ls_menu ul li a:hover:after {
	right: 0;
}

.ls_menu ul li:last-child {
	margin-right: 0px;
}

.rev-btn.ls_btn:hover {
	color: #000000 !important;
}

.ls_menu ul li>.submenu {
	position: absolute;
	top: 75px;
	left: -15px;
	width: 250px;
	background-color: #35bfcc;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.ls_menu ul li:hover>.submenu {
	left: 0;
	opacity: 1;
	visibility: visible;
}

.ls_menu ul li>.submenu>li {
	width: 100%;
	float: left;
	margin: 0px;
	text-align: left;
	border-bottom: solid 1px rgb(255 255 255 / 16%);
}

.ls_menu ul li>.submenu>li>a {
	color: #fff;
	width: 100%;
	float: left;
	padding: 15px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.ls_menu ul li>.submenu>li>a:after {
	display: none;
}

.ls_menu ul li>.submenu>li>a:hover {
	background-color: #fff;
	color: #35bfcc;
}

.cart_wrapper {
	width: 100%;
	float: left;
}

.cart_wrapper ul {
	padding: 0;
	margin: 0;
	list-style: none;
	float: right;
}

.cart_wrapper ul li {
	float: left;
	margin-right: 20px;
	text-align: center;
}

.cart_wrapper ul li>a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	border: 2px solid #d9f3f5;
	display: inline-block;
	text-align: center;
	color: #555;
	font-size: 14px;
	position: relative;
	margin: 20px 0;
	border-radius: 3px;
}

.cart_wrapper ul li>a>span {
	position: absolute;
	top: -7px;
	right: -8px;
	width: 15px;
	height: 15px;
	border-radius: 15px;
	background-color: #35bfcc;
	color: #ffffff;
	font-size: 10px;
	line-height: 15px;
}

.cart_wrapper ul li:last-child {
	margin-right: 0px;
	border-bottom: none;
}

.search_wrapper {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999;
	display: none;
	animation: zoomIn 0.7s ease forwards;
	-webkit-animation: zoomIn 0.7s ease forwards;
	-moz-animation: zoomIn 0.7s ease forwards;
	-ms-animation: zoomIn 0.7s ease forwards;
	-o-animation: zoomIn 0.7s ease forwards;
}

.search_wrapper .search {
	position: absolute;
	left: 20%;
	top: 50%;
	right: 20%;
	transform: translatey(-50%);
	-webkit-transform: translatey(-50%);
	-moz-transform: translatey(-50%);
	-o-transform: translatey(-50%);
	-ms-transform: translatey(-50%);
}

.search .form-control {
	width: 100%;
	position: relative;
	padding: 15px;
}

.search .ls_btn {
	position: absolute;
	right: 0;
}

.search_wrapper .close_search {
	top: 5%;
	right: 5%;
	left: auto;
	position: absolute;
	color: #ffffff;
	width: 30px;
	font-size: 16px;
	text-align: center;
	height: 30px;
	line-height: 25px;
	border: 2px solid #35bfcc;
	border-radius: 30px;
	animation: zoomIn 0.7s ease forwards;
	-webkit-animation: zoomIn 0.7s ease forwards;
	-moz-animation: zoomIn 0.7s ease forwards;
	-ms-animation: zoomIn 0.7s ease forwards;
	-o-animation: zoomIn 0.7s ease forwards;
}

.cart_section {
	position: absolute;
	top: 100;
	right: 0;
	background-color: #ffffff;
	min-width: 300px;
	z-index: 999;
	animation: flipInY 0.7s ease forwards;
	-webkit-animation: flipInY 0.7s ease forwards;
	-moz-animation: flipInY 0.7s ease forwards;
	-ms-animation: flipInY 0.7s ease forwards;
	-o-animation: flipInY 0.7s ease forwards;
	display: none;
}

.cart_section ul {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 100%;
	border: 1px solid rgb(53 191 204 / 19%);
}

.cart_section ul li {
	float: left;
	width: 100%;
	border-bottom: 1px solid rgb(53 191 204 / 19%);
}

.cart_section ul li>.item {
	width: 100%;
	float: left;
	padding: 15px;
}

.cart_section ul li>.item .item_img {
	width: 30%;
	float: left;
	border: 1px solid rgb(53 191 204 / 19%);
}

.cart_section ul li>.item .item_detail {
	width: 70%;
	float: left;
	padding: 8px 15px;
	text-align: left;
}

.item_detail h4 {
	width: 100%;
	float: left;
	margin: 0px;
	color: #333;
	padding-bottom: 5px;
}

.item_detail h5 {
	width: 100%;
	float: left;
	font-size: 14px;
	margin: 0px;
	padding-bottom: 10px;
}

.item_detail h5 span {
	margin-right: 15px;
	position: relative;
}

.item_detail h5 span:after {
	content: ':';
	position: absolute;
	right: -10px;
}

.item_detail h3 {
	font-size: 18px;
	color: #35bfcc;
	margin: 0px;
}

.cart_section ul li p {
	width: 100%;
	float: left;
	padding: 15px;
}

.cart_section ul li p span {
	text-transform: capitalize;
	color: #333;
	font-size: 18px;
	font-weight: 400;
}

.cart_section ul li p>span.price {
	color: #35bfcc;
}

.cart_section .ls_btn {
	margin-bottom: 10px;
}

/**menu css end**/

/**slider start**/
.ls_main_slider_wrapper {
	width: 100%;
	float: left;
}

.tparrows.tp-leftarrow:before {
	content: "\f104";
}

.tparrows.tp-rightarrow:before {
	content: "\f105";
}

.tparrows:before {
	font-family: FontAwesome;
	font-size: 20px;
}

/**slider end**/
/**product start**/
.ls_product_wrapper {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 10px;
	float: left;
}

.ls_heading_wrapper {
	width: 100%;
	float: left;
	margin-bottom: 30px;
}

.ls_heading_wrapper h2 {
	width: 100%;
	float: left;
	font-weight: bold;
	font-size: 30px;
	color: #333333;
	padding-bottom: 20px;
	text-transform: capitalize;
	margin: 0px;
	text-align: center;
}

.ls_product_wrapper .ls_products {
	width: 100%;
	float: left;
}

.ls_products .ls_product {
	width: 100%;
	float: left;
	margin-bottom: 40px;
	height: 400px;
}

.product_height {
	height: 320px !important;
}

.ls_product .product_img {
	width: 100%;
	float: left;
	border-radius: 5px;
}

.ls_product h3 {
	width: 100%;
	float: left;
	font-size: 20px;
	font-weight: bold;
	line-height: 30px;
	color: #333333;
	padding-top: 20px;
	margin: 0px;
}

.ls_product h3 a {
	transition: 0.3s;
}

.ls_product span {
	color: #35bfcc;
	font-size: 16px;
	font-weight: 600;
	display: block;
}

/**product end**/
/**featured product start**/
.ls_featuredproduct_wrapper {
	background-color: #f8f8f8;
	width: 100%;
	float: left;
	padding-top: 40px;
	padding-bottom: 50px;
}

.ls_featured_products {
	width: 100%;
	float: left;
}

.ls_featured_products .feature_product {
	width: 100%;
	float: left;
	margin-bottom: 30px;
	background-color: #ffffff;
	padding: 0 0 25px;
	border: 5px solid #e4fdff;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.ls_featured_products .feature_product:hover {
	background-color: rgb(53 191 204 / 20%);
}

.feature_product .fp_img {
	width: 100%;
	float: left;
	padding-bottom: 15px;
}

.feature_product h3 {
	text-transform: capitalize;
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	margin: 0;
	color: #333333;
	width: 100%;
	padding-bottom: 10px;
	float: left;
}

.feature_product p {
	color: #555555;
	padding: 0 30px;
	float: left;
	margin-bottom: 18px;
}

.feature_product h2 {
	font-size: 22px;
	float: left;
	color: #35bfcc;
	font-weight: bold;
	width: 100%;
	margin: 0px;
	padding-bottom: 5px;
}

/**start rating**/
.stars {
	direction: rtl;
	margin: 0 auto;
	display: inline-block;
}

.stars label {
	cursor: pointer;
	color: #35bfcc;
	font-size: 15px;
	width: auto;
	margin: 0;
	margin-right: 4px;
	min-width: auto;
	float: inherit;
}

.stars label:last-child {
	margin-right: 0px;
}

label>.fa-star {
	display: none;
}

label:hover>.fa-star-o,
label:hover~label>.fa-star-o {
	display: none;
}

label:hover>.fa-star,
label:hover~label>.fa-star {
	display: inline-block !important;
}

/**start rating**/
.social_activity {
	width: 100%;
	float: left;
	padding-top: 20px;
}

.social_activity ul,
.fp_hover ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.social_activity ul li {
	display: inline-block;
	margin-right: 10px;
}

.social_activity ul li:last-child {
	margin-right: 0px;
}

.social_activity ul li>a {
	width: 40px;
	height: 40px;
	line-height: 36px;
	background-color: #fff;
	text-align: center;
	display: inline-block;
	color: #35bfcc;
	border: 2px solid #e4fdff;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.social_activity ul li a:hover {
	border-color: #35bfcc;
}

.fp_tag {
	position: absolute;
	top: 20px;
	left: 0;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #35bfcc;
	text-transform: uppercase;
	border-radius: 0px 100px 100px 0px;
}

.fp_hover {
	position: absolute;
	top: 20px;
	right: -20px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	opacity: 0;
	visibility: hidden;
}

.feature_product:hover .fp_hover {
	right: 20px;
	opacity: 1;
	visibility: visible;
}

.fp_hover ul>li {
	width: 100%;
	float: left;
}

.fp_hover ul>li>a {
	color: #a2a1a1;
	font-size: 15px;
}

.fp_hover ul>li>a:hover {
	color: #35bfcc;
}

/**featured product end**/
/**banner1 start**/
.ls_banner1_wrapper {
	width: 100%;
	float: left;
}

.ls_banner_img {
	width: 100%;
	float: left;
	position: relative;
	overflow: hidden;
}

.ls_banner_img>img {
	width: 100%;
	transition: 0.3s;
	height: fit-content;
	filter: blur(1px);
	-webkit-filter: blur(1px);
}

.ls_banner_img:hover img {
	filter: blur(0px);
	-webkit-filter: blur(0px);
	transform: scale(1.1);
}

.ls_banner_img .ls_banner1_detail {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgb(0 0 0 / 50%);
}

.ls_banner_img .ls_banner1_detail.without_overlay {
	background-color: rgb(255 255 255 / 10%);
}

.ls_banner1_detail .ls_detail_center {
	position: inherit;
	top: 50%;
	left: 0;
	text-align: center;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.ls_detail_center h1 {
	font-size: 30px;
	line-height: 30px;
	color: #fff;
	font-weight: bold;
	padding-bottom: 30px;
	margin: 0px;
}

.without_overlay .ls_detail_center h1 {
	color: #333333;
}

/**banner1 end**/
/**banner2 start**/
.ls_banner2_wrapper {
	width: 100%;
	float: left;
}

.ls_banner2_wrapper .banner2_detail {
	padding: 80px 0;
}

.ls_banner2_wrapper .banner2_detail,
.ls_banner2_wrapper .banner2_img {
	width: 100%;
	float: left;
}

.ls_banner2_wrapper .banner2_img img {
	padding: 80px 0;
}

.banner2_detail p {
	font-size: 24px;
	line-height: 40px;
	color: #333333;
	text-transform: capitalize;
	margin: 0px;
}

.banner2_detail h1 {
	width: 100%;
	float: left;
	margin: 0px;
	font-size: 48px;
	line-height: 70px;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 20px;
	color: #333333;
}

.banner2_detail h1 span {
	color: #35bfcc;
}

/**banner2 end**/
/**banner3 start**/
.ls_banner3_wrapper {
	width: 100%;
	float: left;
	background-image: url('../images/rynaled.webp');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.ls_banner3_wrapper .b3_overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: transparent;
	z-index: -1;
}

.ls_banner3_wrapper .b3_detail {
	width: 100%;
	float: left;
	padding: 180px 0;
	background: rgb(0 0 0 / 50%);
}

.b3_detail h2,
.b3_detail h1 {
	width: 100%;
	float: left;
	color: #ffffff;
	margin: 0;
	font-size: 30px;
	font-weight: bold;
	line-height: 30px;
	padding-bottom: 20px;
}

.b3_detail h1 {
	font-size: 48px;
	line-height: 48px;
	padding-bottom: 30px;
}

/**banner3 end**/
/**newslatter start**/
.ls_newslatter_wrapper {
	width: 100%;
	float: left;
	background-color: #eaf8f9;
	padding: 80px 0;
}

.ls_newslatter {
	width: 100%;
	float: left;
}

.ls_newslatter .ls_newslatter {
	width: 100%;
	float: left;
}

.ls_newslatter h1 {
	width: 100%;
	float: left;
	color: #333333;
	text-transform: capitalize;
	font-weight: bold;
	line-height: 35px;
	font-size: 30px;
	margin: 0px;
	padding-bottom: 10px;
}

.ls_newslatter p {
	margin: 0px;
	color: #555555;
	width: 100%;
	text-transform: capitalize;
	padding-bottom: 30px;
	float: left;
}

.ls_newslatter .newslatter_form {
	max-width: 70%;
	text-align: center;
	margin: auto;
}

.newslatter_form .ls_btn {
	border-radius: 0px 5px 5px 0;
}

.form p {
	padding: 0;
	position: relative;
}

.form p span {
	position: absolute;
	left: 18px;
	top: 12px;
	bottom: 18px;
	color: #35bfcc;
	font-size: 15px;
}

.form-control {
	width: 100%;
	float: left;
	border: 2px solid #d9f3f5;
	height: 50px;
	line-height: 50px;
	font-size: 15px;
	color: #555555;
	background-color: transparent;
	border-radius: 5px;
	padding-left: 40px;
	box-shadow: none;
}

.form-control:focus {
	box-shadow: none;
	outline: none;
	border-color: #35bfcc;
	border: 2px solid #d9f3f5;
}

.form-control::-moz-placeholder {
	color: #555;
	opacity: 1
}

.form-control:-ms-input-placeholder {
	color: #555
}

.form-control::-webkit-input-placeholder {
	color: #555
}

.newslatter_form.form p {
	width: 75%;
	margin-right: -8px;
}

/**newslatter end**/
/**top footer start**/
.ls_top_footer_wrapper {
	width: 100%;
	float: left;
	padding-top: 80px;
	padding-bottom: 30px;
	background-image: url(../images/footer.webp);
}

.widget {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

.widget-title,
.comments-title,
.comment-reply-title {
	font-size: 22px;
	text-transform: capitalize;
	font-weight: 700;
	color: #35bfcc;
	margin: 0px;
	padding-bottom: 10px;
	border-bottom: double rgb(53 191 204 / 45%);
	margin-bottom: 20px;
	display: inline-block;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget ul li {
	width: 100%;
	float: left;
}

.widget ul li a,
.widget.widget_contact ul li span {
	width: 100%;
	font-size: 14px;
	float: left;
	padding: 10px 0 0;
	color: #8c8c8c;
	text-transform: capitalize;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	position: relative;
}

.ls_top_footer_wrapper .widget ul li a:hover {
	padding-left: 25px;
	color: #35bfcc;
}

.ls_top_footer_wrapper .widget ul li a:after {
	position: absolute;
	content: "\f101";
	left: 0;
	top: 10px;
	color: #35bfcc;
	opacity: 0;
	font-family: FontAwesome;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.widget.widget_contact ul li a:hover {
	padding-left: 0px;
}

.widget.widget_contact ul li a i,
.widget.widget_contact ul li span i {
	margin-right: 12px;
	color: #35bfcc;
}

.ls_top_footer_wrapper .widget.widget_contact ul li a:after {
	display: none;
}

.ls_top_footer_wrapper .widget ul li a:hover:after {
	left: 10px;
	opacity: 1;
}

.widget ul li:last-child a {
	border: none;
	padding-bottom: 0px;
}

/**top footer end**/
/**footer start**/
.ls_footer_wrapper {
	width: 100%;
	float: left;
	background-color: #eaf8f9;
	padding: 20px 0;
}

.ls_copyright {
	width: 100%;
	text-align: center;
	float: left;
}

.ls_copyright p {
	margin-bottom: 0px;
	color: #35bfcc;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.ls_copyright p:hover {
	color: #35bfcc;
}

/**footer end**/
/** inner page css start**/
/** about page start**/
.ls_about_wrapper {
	width: 100%;
	float: left;
	padding: 80px 0;
	background-color: #ffffff;
}

.ls_about_wrapper .ls_about_detail {
	width: 100%;
	float: left;
}

.ls_about_detail h1 {
	width: 100%;
	float: left;
	color: #333333;
	font-weight: bold;
	line-height: 35px;
	font-size: 30px;
	margin: 0px;
	text-transform: capitalize;
	padding-bottom: 20px;
}

.ls_about_detail p {
	width: 100%;
	float: left;
	color: #555555;
	margin: 0px;
	line-height: 25px;
	padding-bottom: 25px;
}

.ls_about_wrapper .ls_about_img {
	width: 100%;
	float: left;
}

.ls_about_img img {
	box-shadow: 20px 20px 0px 0 #35bfcc;
}

.ls_staff_wrapper {
	width: 100%;
	float: left;
	background-color: #f8f8f8;
	padding-top: 80px;
	padding-bottom: 50px;
}

.ls_staff_wrapper .staff_wrapper {
	width: 100%;
	float: left;
}

.staff_wrapper .ls_staff {
	width: 100%;
	float: left;
	margin-bottom: 30px;
	text-align: left;
}

.ls_staff .staff_img {
	width: 100%;
	float: left;
	margin-bottom: 20px;
	border-radius: 5px;
}

.ls_staff h2 {
	margin: 0px;
	font-size: 20px;
	line-height: 30px;
	text-transform: capitalize;
	font-weight: bold;
	color: #35bfcc;
	padding-bottom: 0;
	border-bottom: double;
	margin-bottom: 15px;
	display: inline-block;
}

.ls_staff p {
	margin: 0px;
	color: #555555;
	line-height: 25px;
	width: 100%;
	float: left;
}

.ls_testimonial_wrapper {
	width: 100%;
	float: left;
	padding: 80px 0;
}

.ls_testimonial_wrapper .ls_testimonial_slider {
	width: 100%;
	float: left;
}

.testimonial_slide {
	width: 100%;
	float: left;
	padding: 30px;
	border: 2px solid #f5f5f5;
	background-color: #f5f5f5;
	transition: all 0.25s ease;
	border-radius: 30px 0;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.testimonial_slide:hover {
	border-color: #35bfcc;
}

.testimonial_slide .test_img {
	width: 27%;
	float: left;
	text-align: center;
}

.test_img img {
	border-radius: 8px 0;
}

.test_img h2 {
	font-size: 18px;
	line-height: 30px;
	width: 100%;
	float: left;
	padding-top: 10px;
	color: #333333;
	text-transform: capitalize;
	font-weight: 400;
	margin: 0px;
	border-bottom: double 3px #35bfcc;
}

.testimonial_slide .test_detail {
	width: 73%;
	float: left;
	padding-left: 30px;
}

.test_detail p,
.customer_service p {
	color: #555555;
	line-height: 22px;
	width: 100%;
	margin: 0px;
	float: left;
}

.ls_customer_service_wrapper {
	width: 100%;
	float: left;
	padding-top: 80px;
	padding-bottom: 50px;
	background-color: #f8f8f8;
}

.ls_customer_service_wrapper .customer_service {
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 30px;
}

.customer_service .service_icon {
	width: 100%;
	float: left;
}

.service_icon span {
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 80px;
	background: #eaf8f9;
	border: 1px solid #35bfcc;
	border-radius: 70px;
	position: relative;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.customer_service:hover .service_icon span {
	background-color: #35bfcc;
}

.customer_service:hover .service_icon span svg path {
	fill: #fff;
}

.service_icon span:after {
	position: absolute;
	content: '';
	left: -6px;
	right: -6px;
	top: -6px;
	bottom: -6px;
	border: 1px solid #35bfcc;
	border-radius: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.customer_service:hover .service_icon span:after {
	opacity: 1;
}

.service_icon span svg path {
	fill: #35bfcc;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.customer_service h2 {
	font-size: 18px;
	line-height: 30px;
	width: 100%;
	float: left;
	padding-top: 20px;
	padding-bottom: 10px;
	color: #333333;
	text-transform: capitalize;
	font-weight: bold;
	margin: 0px;
}

/** about page end**/
/** product page start**/
.ls_inner_banner {
	width: 100%;
	float: left;
	background-image: url('../images/breadcrumb.webp');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 40px 0;
}

.ls_inner_banner .ls_inner_detail {
	width: 100%;
	float: left;
}

.ls_inner_detail h1 {
	width: 100%;
	float: left;
	margin: 0px;
	line-height: 40px;
	padding-bottom: 15px;
	text-transform: capitalize;
	font-size: 40px;
	font-weight: bold;
	color: #ffffff;
}

.ls_inner_detail .breadcrumb {
	background-color: transparent;
	float: left;
	width: 100%;
	padding: 0px;
	margin: 0px;
	font-family: 'Merriweather', serif;
	font-weight: 400;
}

.ls_inner_detail .breadcrumb li {
	color: #fff;
	text-transform: capitalize;
	font-size: 20px;
}

li.breadcrumb-item.active {
	color: #35bfcc;
}

.ls_inner_detail .breadcrumb>li+li:before {
	color: #ffffff;
}

/** product page end**/
/** contact page start**/
.ls_contact_info_wrapper {
	width: 100%;
	float: left;
	padding: 80px 0;
	background-color: #ffffff;
}

.contact_info {
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 40px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.contact_info:hover {
	background-color: #ffffff;
}

.contact_info .contact_icon {
	width: 100%;
	float: left;
	padding-bottom: 20px;
}

.contact_icon span {
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 70px;
	line-height: 70px;
	background-color: #35bfcc;
	color: #ffffff;
	font-size: 25px;
	position: relative;
	transition: 0.3s;
}

.contact_info:hover .contact_icon span {
	background-color: #ffffff;
	color: #35bfcc;
}

.contact_icon span:after {
	content: '';
	position: absolute;
	left: -6px;
	right: -6px;
	top: -6px;
	bottom: -6px;
	border-radius: 100%;
	border: 1px solid #35bfcc;
}

.contact_info p {
	margin: 0px;
	width: 100%;
	float: left;
	padding: 0 32px;
}

.contact_info:hover p {
	color: #35bfcc;
}

.ls_contact_form {
	width: 100%;
	/* float: left; */
	padding: 66px 80px 40px;
	background: whitesmoke;
	position: relative;
	z-index: 1;
	margin-bottom: -350px;
	border-radius: 10px;
	border: solid 1px #d9f3f5;
}

.ls_contact_form h1 {
	width: 100%;
	float: left;
	margin: 0px;
	line-height: 30px;
	padding-bottom: 10px;
	text-transform: capitalize;
	font-size: 30px;
	font-weight: bold;
	color: #333333;
}

.ls_contact_form p {
	margin: 0;
	width: 100%;
	float: left;
	line-height: 22px;
	color: #555555;
	padding-bottom: 20px;
}

.ls_contact_form .form-group .form-control {
	width: 100%;
	padding: 10px 20px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.ls_contact_form .form-group textarea.form-control {
	resize: none;
	margin-bottom: 30px;
}

.ls_contact_form .ls_btn {
	padding: 0 30px;
}

.ls_map_wrapper iframe {
	width: 100%;
	margin-bottom: -10px;
	border: none;
}

.ls_map {
	width: 100%;
	float: left;
	height: 650px;
}

/** contact page end**/
/** shop single page start**/
.ls_sidebar {
	width: 100%;
	float: left;
}

.ls_sidebar .widget {
	background-color: #ffffff;
	padding: 30px;
	border: 2px solid #e4fdff;
	border-radius: 5px;
}

.sidebar_btn {
	width: 100%;
	float: left;
	background-color: #ffffff;
	text-align: center;
}

.sidebar_btn .ls_btn {
	width: 75%;
	display: inline-block;
}

.sidebar_btn .ls_btn a {
	width: 100%;
}

.ls_sidebar .widget-title {
	font-size: 20px;
	padding-bottom: 20px;
}

.sidebar_share {
	width: 100%;
	float: left;
}

.sidebar_share ul li {
	display: inline-block;
	width: auto;
	margin-right: 20px;
}

.sidebar_share ul li:last-child {
	margin-right: 0px;
}

.sidebar_share ul li a {
	border: none;
	font-size: 50px;
	color: #333333;
}

.sidebar_share ul li:hover a.facebook {
	color: #3a5795 !important;
}

.sidebar_share ul li:hover a.twitter {
	color: #55acee !important;
}

.sidebar_share ul li:hover a.dribbble {
	color: #333333 !important;
}

.sidebar_share ul li:hover a.pinterest {
	color: #ab171e !important;
}

.sidebar_share ul li:hover a.googleplus {
	color: #d73d32 !important;
}

.product_info {
	width: 100%;
	float: left;
}

.product_info p span {
	color: #555555;
	font-weight: 400;
}

.product_info p {
	margin: 0;
	padding-bottom: 10px;
	position: relative;
	text-transform: capitalize;
}

.product_info p:after {
	position: absolute;
	content: '';
	width: 5px;
	height: 1px;
	left: 50%;
	top: 40%;
	background-color: #555;
}

.widget_technical_info ul li p {
	padding-left: 30px;
	color: #555555;
	font-weight: 400;
	position: relative;
	padding-bottom: 10px;
}

.widget_technical_info ul li p:after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 6px;
	left: 0;
	top: 10px;
	background-color: #35bfcc;
}

.widget_gallery ul li {
	width: 31%;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.widget_gallery ul li img {
	border-radius: 5px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.widget_gallery ul li img:hover {
	opacity: 0.8;
}

.widget_gallery ul li:nth-child(3n) {
	margin-right: 0px;
}

.single_product.feature_product {
	text-align: left;
}

.lt_roof_light {
	padding-top: 30px;
}

.single_product.feature_product p {
	padding: 0px;
}

.pad_par {
	padding: 15px !important;
}

.single_product.feature_product .fp_hover {
	top: -20px;
}

.single_product.feature_product:hover .fp_hover {
	right: -5px;
}

.ls_tag {
	width: 100%;
	float: left;
}

.ls_tag a {
	float: left;
	color: #333;
	border: 1px solid #35bfcc;
	padding: 0 10px;
	margin-right: 8px;
	margin-bottom: 8px;
	border-radius: 5px;
	text-transform: capitalize;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.ls_tag a:hover {
	background-color: #35bfcc;
	color: #fff;
}


#sync1 {
	position: relative;
}

#sync1 .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	font-size: 18px;
	color: #fff;
}

#sync1 .owl-nav .owl-prev,
#sync1 .owl-nav .owl-next {
	float: left;
	width: 30px;
	height: 30px;
	text-align: center;
	background-color: #35bfcc;
	line-height: 30px;
}

#sync1 .owl-nav .owl-next {
	float: right;
}

#sync2 .item {
	cursor: pointer;
}


.comments-area {
	width: 100%;
	float: left;
	padding-top: 30px;
	padding-bottom: 30px;
}

.comment-list,
.comments-area ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list li {
	width: 100%;
	float: left;
}

.comment_wrapper {
	float: left;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #e6e6e6;
}

.comments {
	width: 100%;
	float: left;
}

.comments .authore_img {
	width: 80px;
	height: 80px;
	float: left;
}

.comments .authore_img img {
	border-radius: 5px;
}

.comments .content {
	width: calc(100% - 80px);
	float: left;
	padding-left: 15px;
}

.comments .content .heading3 {
	line-height: 30px;
	margin-bottom: 5px;
}

.comments .content .date {
	width: 100%;
	float: left;
	margin-bottom: 5px;
}

.comments .content .date span,
.comments .content .date .reply>a {
	color: #bbbbbb;
	font-size: 14px;
	text-transform: capitalize;
	font-weight: 400;
	display: inline-block;
}

.comments .content .date .reply>a:hover {
	color: #35bfcc;
}

.comments .content .date .reply {
	float: right;
}

.comments-area .children .comment_wrapper {
	padding-left: 30px;
}

.content p {
	width: 100%;
	float: left;
}

.comments h5 {
	width: 100%;
	float: left;
	color: #35bfcc;
	text-transform: capitalize;
	font-weight: 400;
}

.ls_related_product {
	width: 100%;
	float: left;
	padding: 50px 0;
}

/** shop single page end**/
/** blog page start**/
.ls_blog_wrapper {
	width: 100%;
	float: left;
	background-color: #f5f5f5;
	padding-top: 80px;
	padding-bottom: 50px;
}

.ls_blog_wrapper .ls_blogs {
	width: 100%;
	float: left;
}

.ls_blogs .ls_blog {
	width: 100%;
	float: left;
	background-color: #ffffff;
	margin-bottom: 30px;
}

.ls_blog .ls_blog_detail {
	width: 100%;
	float: left;
	padding: 20px;
}

.ls_blog_detail h5 {
	width: 100%;
	float: left;
	font-size: 18px;
	line-height: 18px;
	margin: 0px;
	color: #555;
	padding-bottom: 10px;
	text-transform: capitalize;
}

.ls_blog_detail h1 {
	width: 100%;
	float: left;
	font-size: 25px;
	line-height: 30px;
	margin: 0px;
	color: #35bfcc;
	padding-bottom: 10px;
	text-transform: capitalize;
}

.ls_blog_detail p {
	width: 100%;
	float: left;
	margin: 0px;
	padding-bottom: 20px;
}

.ls_blog_detail .ls_btn a {
	padding: 0 20px;
}

.ls_blog_detail .ls_btn:after,
.ls_blog_detail .ls_btn:before {
	border-left: 65px solid transparent;
	border-right: 65px solid transparent;
}

/** blog page end**/
/** blog single page start**/
.ls_blog_wrapper.blog_single {
	background-color: #ffffff;
}

.blockquote {
	color: #333333;
	text-transform: capitalize;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	padding: 20px 0;
	text-align: center;
	font-style: italic;
	background-color: #ffffff;
	font-family: 'Merriweather', serif;
	border-left: 4px solid #35bfcc;
	margin-bottom: 20px !important;
	border-right: 4px solid #35bfcc;
	border-radius: 12px;
}

.ls_blog_detail .ls_socialicon_wrapper ul {
	float: left;
}

.ls_blog_detail .ls_socialicon_wrapper ul li a {
	font-size: 15px;
}

.ls_blog_detail .ls_socialicon_wrapper ul li {
	margin-right: 10px;
}

.ls_blog_detail .ls_socialicon_wrapper span {
	float: left;
	font-size: 16px;
	text-transform: capitalize;
	color: #333;
	padding-right: 20px;
	position: relative;
}

.ls_blog_detail .ls_socialicon_wrapper span:after {
	position: absolute;
	content: ':';
	right: 9px;
}

.ls_blog_detail .ls_socialicon_wrapper {
	padding: 0px;
}

.ls_about_author {
	width: 100%;
	float: left;
}

.ls_about_author .ls_author {
	width: 100%;
	float: left;
	background-color: #f5f5f5;
	padding: 20px;
	margin-top: 20px;
}

.author_img {
	width: 20%;
	float: left;
}

.author_img img {
	border-radius: 5px;
}

.author_info {
	width: 80%;
	float: left;
	padding-left: 20px;
}

.author_info h2 {
	width: 100%;
	float: left;
	font-size: 16px;
	line-height: 25px;
	color: #333333;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 0;
}

.author_info p {
	width: 100%;
	float: left;
}

.comment-respond {
	width: 100%;
	float: left;
}

.comment-respond .form-control {
	padding: 0 15px;
	margin-bottom: 10px;
}

.comment-respond textarea.form-control {
	resize: none;
	height: 100px;
}

.comment-respond .ls_btn {
	margin-top: 20px;
}

.comment-respond .ls_btn:after,
.comment-respond .ls_btn:before {
	border-left: 65px solid transparent;
	border-right: 65px solid transparent;
}

/** blog single page end**/
/**error page start**/
.ls_error_wrapper {
	width: 100%;
	float: left;
	padding: 80px 0;
	background-color: #ffffff;
}

.ls_error_wrapper .error_detail {
	width: 100%;
	float: left;
	text-align: center;
	padding: 86px 0;
}

.ls_error_wrapper .error_img {
	width: 100%;
	float: left;
}

.error_detail h1 {
	font-size: 200px;
	color: #333;
	width: 100%;
	float: left;
	margin: 0px;
	line-height: 200px;
	padding-bottom: 30px;
}

.error_detail h5 {
	width: 100%;
	float: left;
	text-transform: capitalize;
	font-size: 20px;
	color: #555555;
	margin: 0px;
	padding-bottom: 20px;
}

.error_detail p {
	width: 100%;
	float: left;
	margin: 0;
}

/**error page end**/
/**coming soon start**/
.ls_commingsoon_wrapper {
	width: 100%;
	float: left;
	background-image: url('../images/coming_soon.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.coming_soon {
	width: 100%;
	float: left;
	position: relative;
}

.coming_soon_detail {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.coming_soon_detail h1 {
	margin: 0px;
	width: 100%;
	float: left;
	color: #ffffff;
	font-size: 60px;
	text-transform: capitalize;
	line-height: 60px;
	padding: 30px 0 50px;
}

.countdown {
	width: 100%;
	float: left;
}

.countdown .count_time {
	width: 100%;
	float: left;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.count_time span {
	width: 100px;
	height: 100px;
	display: inline-block;
	background-color: #fff;
	margin-right: 20px;
	text-align: center;
	color: #333333;
	border-radius: 100px;
	border-top-right-radius: 0;
	font-size: 25px;
	font-weight: 600;
	line-height: 100px;
	position: relative;
}

.count_time span:last-child {
	margin-right: 0px;
}

.count_time:after {
	content: "";
	display: block;
	clear: both;
}

.count_time span:after {
	content: '';
	color: #ddd;
	text-transform: uppercase;
	font-size: 13px;
	position: absolute;
	line-height: 13px;
	left: 0;
	right: 0;
	bottom: -40px;
	text-align: center;
	letter-spacing: 2px;
	text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.7);
}

.count_time span:first-child:after {
	content: 'days';
}

.count_time span:nth-child(2):after {
	content: 'hours';
}

.count_time span:nth-child(3):after {
	content: 'minutes';
}

.count_time span:last-child:after {
	content: 'second';
}

span.turn {
	animation: zoomIn 0.7s ease forwards;
	-webkit-animation: zoomIn 0.7s ease forwards;
	-moz-animation: zoomIn 0.7s ease forwards;
	-ms-animation: zoomIn 0.7s ease forwards;
	-o-animation: zoomIn 0.7s ease forwards;
}

.coming_soon_detail .form-control {
	padding: 0 15px;
	position: relative;
}

.coming_soon_detail .ls_btn {
	position: absolute;
	right: 0;
}

/**coming soon end**/
/**faq page start**/
.ls_faq_wrapper {
	width: 100%;
	float: left;
	padding: 80px 0;
	background-color: #ffffff;
}

.ls_faq_wrapper .ls_faq {
	width: 100%;
	float: left;
}

.ls_faq .nav-tabs {
	text-align: left;
	border: none;
	margin-bottom: 20px;
	position: relative;
}

.ls_faq .nav-tabs:after {
	position: absolute;
	content: '';
	bottom: -2px;
	width: 750px;
	height: 1px;
	background-color: #e1e1e1;
	left: 50%;
	transform: translateX(-50%);
}

.ls_faq .nav-tabs>li {
	display: inline-block;
	float: none;
	margin-right: 20px;
}

.ls_faq .nav-tabs>li:last-child {
	margin-right: 0px;
}

.ls_faq .nav-tabs>li>a {
	border: none;
	text-transform: capitalize;
	font-size: 20px;
	font-weight: 600;
	color: #333333;
	font-family: 'Merriweather', serif;
	position: relative;
}

.ls_faq .nav-tabs>li>a:hover,
.ls_faq .nav-tabs>li>a:focus {
	border: none;
	background: transparent;
}

.ls_faq .nav-tabs>li>a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 100%;
	border-bottom: 3px solid #35bfcc;
	content: '';
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.ls_faq .nav-tabs>li.active>a {
	color: #35bfcc;
	border: none;
}

.ls_faq .nav-tabs>li.active>a:after {
	right: 0;
}

.ls_faq .panel-heading {
	background-color: #fff;
	padding: 15px 0 20px;
	color: #333;
	font-family: 'Merriweather', serif;
}

.ls_faq .panel-heading .panel-title {
	font-size: 18px;
}

.ls_faq .panel {
	border: none;
}

.ls_faq .panel-body {
	padding: 20px 0;
}

/**faq page end**/
/**cart page start**/
.ls_cart_wrapper {
	width: 100%;
	float: left;
	padding: 80px 0;
}

.ls_cart_wrapper .ls_msg_wrapper {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

.ls_msg_wrapper .ls_top_msg {
	width: 100%;
	float: left;
	background-color: #35bfcc;
	padding: 30px;
	margin-bottom: 40px;
}

.ls_msg_wrapper .ls_top_msg p {
	margin: 0px;
	color: #ffffff;
	text-transform: capitalize;
	font-weight: 400;
	font-size: 18px;
}

.ls_msg_wrapper .alert {
	float: left;
	width: 100%;
	margin-bottom: 50px;
	color: #333333;
	font-size: 15px;
	background-color: #b8f4d0;
	border-radius: 0px;
	border: none;
	-webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.24);
	-ms-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.24);
	-o-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.24);
}

.ls_msg_wrapper .alert p {
	float: left;
	margin: 0;
	color: #000;
	padding: 5px 0;
}

.ls_msg_wrapper .alert p i {
	color: #28b863;
	padding-right: 5px;
}

.ls_msg_wrapper .alert .ls_btn {
	background-color: #28b863;
}

.ls_msg_wrapper .alert .ls_btn a,
.ls_checkout_wrapper .alert .ls_btn a {
	height: 35px;
	line-height: 35px;
}

.ls_cart_wrapper .woo-cart-table {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

.woo-cart-table table {
	width: 100%;
	float: left;
}

.woo-cart-table table tr th {
	font-size: 18px;
	text-transform: capitalize;
	color: #333;
}

.woo-cart-table table td,
th {
	border: 1px solid #d9f3f5;
}

.woo-cart-table table tr th {
	padding: 10px 15px;
}

.woo-cart-table table tr td {
	padding: 10px 15px;
	color: #333333;
	border-top: none;
	vertical-align: middle;
}

.woo-cart-table table td img {
	float: left;
	width: 100px;
	height: 100px;
	margin-right: 30px;
}

.woo-cart-table table td h3 {
	color: #35bfcc;
	font-size: 16px;
	float: left;
	width: 55%;
	margin: 0px;
	font-weight: 600;
	padding: 38px 0;
}

.woo-cart-table table td h2 {
	color: #35bfcc;
	font-size: 16px;
	text-transform: capitalize;
}

.woo-cart-table table tr td a {
	display: inline-block;
	width: 30px;
	height: 30px;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	border-radius: 100%;
	background-color: #35bfcc;
	text-decoration: none;
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.24);
	-ms-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.24);
	-o-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.24);
}

.coupon_wrapper {
	width: 100%;
	float: left;
	position: relative;
}

.coupon_wrapper .form-control {
	padding: 0 15px;
}

.coupon_wrapper .ls_btn {
	position: absolute;
	right: 0;
	top: 0;
}

.cart_total_wrapper {
	width: 100%;
	float: left;
	background-color: #35bfcc;
	padding: 30px 60px;
}

.cart_total_wrapper h2 {
	width: 100%;
	float: left;
	color: #ffffff;
	font-size: 30px;
	margin: 0px;
	text-transform: capitalize;
	font-weight: 700;
	padding-bottom: 20px;
}

.cart_total_wrapper p {
	width: 100%;
	float: left;
}

.cart_total_wrapper p span {
	color: #ffffff;
	text-transform: capitalize;
	font-weight: 400;
}

.cart_total_wrapper p.grand_total {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #ffffff;
}

.cart_btns {
	width: 100%;
	float: left;
	margin-top: 50px;
}

/**cart page end**/
/**checkout page start**/
.ls_checkout_wrapper {
	width: 100%;
	float: left;
	padding: 80px 0;
	background-color: #fff;
}

.ls_checkout_wrapper .alert {
	float: left;
	width: 100%;
	margin-bottom: 50px;
	color: #333333;
	font-size: 15px;
	background-color: #d9f3f5;
	border: none;
}

.ls_checkout_wrapper .alert p {
	padding: 5px 0;
	margin: 0;
}

.ls_checkout_wrapper .alert p i {
	margin-right: 5px;
}

.ls_checkout_wrapper .alert p i,
.ls_checkout_wrapper .alert p a {
	color: #35bfcc;
}

.ls_checkout_wrapper .alert p a {
	margin-left: 5px;
}

.ls_checkout_wrapper .alert .ls_btn {
	background-color: #35bfcc;
}

.ls_checkout_wrapper .ls_checkout_form {
	width: 100%;
	float: left;
}

.ls_checkout_form h2 {
	width: 100%;
	float: left;
	margin: 0;
	padding-bottom: 10px;
	font-size: 22px;
	text-transform: capitalize;
	color: #333333;
	font-weight: 700;
}

.ls_checkout_form .form-control {
	padding: 0 15px;
	cursor: pointer;
}

.ls_checkout_form .form-group {
	width: 100%;
	float: left;
	margin-bottom: 10px;
}

.ls_checkout_form textarea.form-control {
	resize: none;
	line-height: 40px;
	height: 100px;
}

.ls_checkbox_wrapper {
	width: 100%;
	float: left;
	padding-top: 20px;
}

.ls_checkbox_wrapper .ls_checkbox {
	width: 20px;
	height: 20px;
	position: relative;
	float: left;
	margin-right: 10px;
}

.ls_checkbox input[type=checkbox] {
	visibility: hidden;
}

.ls_checkbox label {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 5px;
	min-width: inherit;
	left: 0;
	background: #fff;
	border: none;
	margin: 0px;
	-webkit-box-shadow: 0px 0px 3px rgba(53, 191, 204, 0.68);
	-moz-box-shadow: 0px 0px 3px rgba(53, 191, 204, 0.68);
	-ms-box-shadow: 0px 0px 3px rgba(53, 191, 204, 0.68);
	-o-box-shadow: 0px 0px 3px rgba(53, 191, 204, 0.68);
	box-shadow: 0px 0px 3px rgba(53, 191, 204, 0.68);
}

.ls_checkbox label:after {
	opacity: 0;
	content: '';
	position: absolute;
	width: 10px;
	height: 5px;
	background: transparent;
	top: 7px;
	left: 5px;
	border: 2px solid #35bfcc;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.ls_checkbox input[type=checkbox]:checked+label:after {
	opacity: 1;
}

.ls_checkbox_wrapper span {
	color: #35bfcc;
	float: left;
	text-transform: capitalize;
}

.ls_order_wrapper,
.ls_payment_wrapper {
	width: 100%;
	float: left;
	padding-top: 50px;
}

.ls_order_wrapper h1,
.ls_payment_wrapper h1 {
	width: 100%;
	float: left;
	font-size: 30px;
	line-height: 30px;
	text-transform: capitalize;
	color: #333333;
	font-weight: bold;
	padding-bottom: 30px;
}

.ls_woo_total_table {
	width: 100%;
	float: left;
}

.ls_order_wrapper table {
	background-color: #ffffff;
}

.ls_order_wrapper table tr td .ls_checkbox_wrapper {
	padding: 0px;
	width: auto;
}

.ls_order_wrapper table tr td h3 {
	padding: 7px 12px;
}

.ls_order_wrapper table tr td h3.discount {
	padding: 3px 40px;
}

.ls_payment {
	width: 100%;
	float: left;
}

.ls_payment ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ls_payment ul li {
	width: 100%;
	float: left;
	padding: 10px 0 0;
}

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

.ls_payment ul li span {
	float: left;
	text-transform: capitalize;
	color: #333;
}

.ls_payment ul li .ls_radiobtn {
	float: left;
	margin-top: 3px;
}

.ls_radiobtn {
	width: 20px;
	height: 20px;
	position: relative;
	float: left;
	margin-right: 10px;
}

.ls_radiobtn input[type=radio] {
	visibility: hidden;
}

.ls_radiobtn input[type=radio]:checked+label:after {
	opacity: 1;
}

.ls_radiobtn label {
	cursor: pointer;
	position: absolute;
	width: 16px;
	height: 16px;
	min-width: auto;
	top: 4px;
	left: 0;
	background: #fff;
	border: none;
	border-radius: 100%;
	margin: 0px;
	border: 1px solid #35bfcc;
	-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.24);
	-ms-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.24);
	-o-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.24);
	box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.24);
}

.ls_radiobtn label:after {
	opacity: 0;
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: #35bfcc;
	top: 3px;
	left: 3px;
	border-radius: 100%;
}

.ls_orderbtn_wrapper {
	width: 100%;
	float: left;
	padding: 50px 0;
}

/**checkout page end**/
/**categories start**/
.ls_categories_wrapper {
	width: 100%;
	float: left;
	background-color: #ffffff;
	padding: 80px;
}

.categories_sorting {
	width: 100%;
	float: left;
}

.ls_categories {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

.categories {
	width: 100%;
	float: left;
}

.categories_sorting .controls {
	width: 100%;
	float: left;
	background-color: #ffffff;
	padding: 0px;
	margin-bottom: 30px;
}

.categories_sorting .controls ul {
	padding: 0;
	margin: 0;
	width: auto;
	float: inherit;
	list-style: none;
}

.categories_sorting .controls ul li {
	float: left;
	margin-right: 20px;
}

.categories_sorting .controls ul li:last-child {
	margin-right: 0px;
}

.categories_sorting .controls ul li a {
	display: inline-block;
	color: #333333;
	font-size: 18px;
	cursor: pointer;
	text-transform: capitalize;
	padding-bottom: 10px;
	position: relative;
}

.categories .feature_product {
	border: 2px solid #35bfcc;
	width: 100%;
	float: left;
	margin-bottom: 50px;
	padding-bottom: 30px;
	text-align: center;
}

.categories .feature_product .fp_tag {
	left: 17px;
}

.categories .feature_product .fp_img {
	margin-bottom: 15px;
}

.categories .mix {
	width: 50%;
	float: left;
	border-top: none;
}

.categories .feature_product .fp_hover ul>li>a,
.categories .feature_product .fp_hover ul>li>a:hover {
	color: #fff;
	width: 30px;
	height: 30px;
	margin-bottom: 5px;
	line-height: 30px;
	display: inline-block;
	background-color: #35bfcc;
}

.categories_sorting .controls ul li a:after {
	position: absolute;
	content: '';
	border-bottom: 2px solid #35bfcc;
	left: 0;
	right: 100%;
	bottom: -2px;
	z-index: 1;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
}

.categories_sorting .controls ul li:hover a:after,
.categories_sorting .controls ul li a.mixitup-control-active:after {
	right: 0;
}

/**categories end**/

/**media css start**/
@media (max-width: 1200px) {
	.newslatter_form.form p {
		width: 34%;
		margin-right: 19px;
	}

	.product_height {
		height: 400px !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (max-width: 991px) {
	.newslatter_form.form p {
		width: 100%;
		margin-bottom: 20px;
	}

	.product_height {
		height: 420px !important;
	}

	.ls_menu_wrapper .ls_menu {
		display: none;
	}

	.ls_menu.responsive_menu {
		position: fixed;
		left: 0;
		background-color: #35bfcc;
		top: 0;
		bottom: 0;
		z-index: 9999;
		max-width: 250px;
		padding-top: 50px;
		overflow-y: auto;
	}

	.ls_menu.responsive_menu li {
		width: 100%;
		float: left;
		margin: 0px;
		border-bottom: solid 1px rgb(255 255 255 / 16%);
	}

	.ls_menu.responsive_menu li a {
		width: 100%;
		float: left;
		padding: 20px;
		color: #ffffff!important;
	}

	.toggle-wrap {
		padding: 10px 0;
		position: fixed;
		background: #35bfcc;
		z-index: 99999;
		top: 0;
		float: right;
		margin-top: 27px;
		margin-right: 10px;
		right: 0;
		/*disable selection*/
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	.toggle-wrap.active {
		padding: 10px 0;
		margin-left: 190px;
	}

	.toggle-bar,
	.toggle-bar::before,
	.toggle-bar::after,
	.toggle-wrap.active .toggle-bar,
	.toggle-wrap.active .toggle-bar::before,
	.toggle-wrap.active .toggle-bar::after {
		-webkit-transition: all .25s ease-in-out;
		-moz-transition: all .25s ease-in-out;
		-o-transition: all .25s ease-in-out;
		transition: all .25s ease-in-out;
	}

	.toggle-bar {
		width: 30px;
		margin: 10px;
		position: relative;
		border-top: 4px solid #ffffff;
		display: block;
	}

	.toggle-bar::before,
	.toggle-bar::after {
		content: "";
		display: block;
		background: #ffffff;
		height: 4px;
		width: 30px;
		position: absolute;
		top: -13px;
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		-ms-transform-origin: 10%;
		-webkit-transform-origin: 10%;
		transform-origin: 10%;
	}

	.toggle-bar::after {
		top: 4px;
	}

	.toggle-wrap.active .toggle-bar {
		border-top: 6px solid transparent;
	}

	.toggle-wrap.active .toggle-bar::before {
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.toggle-wrap.active .toggle-bar::after {
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.cart_wrapper ul,
	.ls_socialicon_wrapper ul {
		text-align: center;
		float: left;
		width: 100%;
	}

	.cart_wrapper ul li,
	.ls_socialicon_wrapper ul li {
		display: inline-block;
		float: none;
	}

	.cart_section ul li {
		margin-right: 0px;
	}

	.ls_banner2_wrapper .banner2_detail,
	.ls_banner2_wrapper .banner2_img,
	.ls_header_wrapper {
		text-align: center;
	}

	.feature_product .fp_img .img-responsive,
	.ls_banner2_wrapper .banner2_img .img-responsive,
	.ls_product .product_img,
	.ls_header_detail .ls_header_ico,
	.ls_staff .staff_img {
		display: table;
		float: none;
		width: auto;
		margin: auto;
	}

	.b3_detail h2 {
		font-size: 25px;
	}

	.ls_header_detail .ls_header_pera {
		padding-bottom: 20px;
	}

	.single_product.feature_product {
		text-align: center;
	}

	.blog_img img {
		width: 100%;
	}

	.ls_faq .nav-tabs>li>a {
		font-size: 18px;
	}

	.ls_faq .nav-tabs:after {
		width: 100%;
	}

	.ls_error_wrapper {
		padding: 30px;
	}

	.cart_total_wrapper {
		margin-top: 30px;
	}

	.alert {
		text-align: center;
	}

	.alert p,
	.alert .ls_btn {
		display: inline-block;
		float: none !important;
	}

	.ls_checkout_wrapper {
		padding-top: 30px;
		padding-bottom: 0px;
	}

	.show-submenu {
		display: block;
		position: absolute;
		right: 20px;
		color: #ffffff;
		width: 20px;
		font-size: 14px;
		top: 25px;
		text-align: center;
		height: 20px;
		line-height: 20px;
		border: 1px solid #ffffff;
	}

	.ls_menu ul li>.submenu {
		position: relative;
		top: auto;
		left: auto;
		opacity: 1;
		visibility: visible;
		display: none;
	}

	.ls_menu ul li>.submenu li:last-child {
		border-bottom: none;
	}

	.ls_about_wrapper .ls_about_detail {
		margin-bottom: 40px;
	}

	.staff_wrapper .ls_staff {
		text-align: center;
	}

	.ls_blog_detail .ls_socialicon_wrapper ul {
		text-align: left;
	}
}

@media (min-width: 768px) and (max-width: 991px) {}

@media (max-width: 767px) {
	.search .ls_btn {
		position: relative;
		right: auto;
		margin-top: 20px;
	}

	.ls_faq .nav-tabs>li>a {
		font-size: 14px;
	}

	.feature_product .fp_img .img-responsive,
	.ls_banner2_wrapper .banner2_img .img-responsive,
	.ls_product .product_img,
	.ls_header_detail .ls_header_ico,
	.ls_staff .staff_img {
		display: inline-block;
		float: none;
		width: auto;
	}

	.ls_staff h2 {
		display: block;
		border: none;
	}

	.test_img h2 {
		border-bottom: none;
	}
}

@media (min-width: 480px) and (max-width: 767px) {}

@media (max-width: 568px) {

	.count_time span {
		width: 80px;
		height: 80px;
		line-height: 80px;
	}
}

@media (max-width: 479px) {

	.testimonial_slide .test_img,
	.testimonial_slide .test_detail {
		width: 100%;
		padding: 0px;
		text-align: center;
	}

	.coming_soon_detail {
		text-align: center;
	}

	.woo-cart-table table td h3 {
		font-size: 14px;
	}

	.ls_orderbtn_wrapper .ls_btn {
		margin-top: 20px;
	}

	.pull-left,
	.pull-right {
		width: 100%;
		float: left;
	}

	.product_info .pull-left,
	.product_info .pull-right {
		width: auto;
	}

	.rev-btn.ls_btn {
		padding: 10px !important;
		font-size: 10px !important;
	}
}

@media (max-width: 440px) {}

@media (max-width: 380px) {
	.coming_soon_detail h1 {
		font-size: 35px;
		padding: 20px 0;
	}

	.coming_soon_detail {
		position: relative;
		top: auto;
		left: auto;
		text-align: center;
		padding: 20px;
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		-ms-transform: none;
	}

	.countdown .count_time {
		width: 250px;
		float: none;
		padding-bottom: 40px;
		display: inline-block;
		margin-bottom: 50px;
	}

	.count_time span:nth-child(1),
	.count_time span:nth-child(2) {
		margin-bottom: 50px;
	}

	.count_time span:nth-child(even) {
		margin-right: 0px;
	}

	.coming_soon_detail .ls_btn,
	.coupon_wrapper .ls_btn {
		position: relative;
		right: auto;
		margin-top: 20px;
	}

	.count_time span:after {
		bottom: -30px;
	}

	.error_detail>h1 {
		font-size: 100px;
		line-height: 100px;
	}

	.ls_inner_detail h1 {
		font-size: 30px;
	}

	th,
	td {
		width: 100%;
		float: left;
	}
}

@media (max-width: 320px) {}

@media (max-width: 240px) {}

.productlink {
	padding: 0px !important;
	font-weight: 0 !important;
	color: #555555 !important;
	font-weight: 400 !important;
	position: relative !important;
	padding-bottom: 10px !important;
	font-family: Roboto, sans-serif;
}

.pro_cat_list {
	border: 1px solid #ea501d;
	height: 400px;
	border-radius: 5px;
}

.pro_cat_label {
	padding-left: 30px;
	color: #555555;
	font-weight: 600;
	position: relative;
	padding-bottom: 0px;
}

.footer-threadbit-color {
	color: #35bfcc;
}

.header-logo-clr {
	height: 100px;
	/*width: 150px;*/
}

.blog-detail-img {
	width: 100%;
	height: 100%;
}

.brochure-h3,
.gallery-h3 {
	text-align: center;
	margin-bottom: 25px;
}

.header-menu-pos {
	margin-top: 30px;
}

.two_menu_brochure {
	color: #ffffff !important;
	font-size: 16px !important;
	background-color: #e8511b;
	border-radius: 5px;
	padding: 5px !important;
	margin-top: 16px;
}

.sticky-icon {
	z-index: 999;
	position: fixed;
	top: 60%;
	right: 0%;
	width: 210px;
	display: flex;
	flex-direction: column;
}

.sticky-icon a {
	transform: translate(160px, 0px);
	border-radius: 50px 0px 0px 50px;
	text-align: left;
	margin: 2px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 5px;
	font-size: 15px;
	font-family: 'Oswald', sans-serif;
	transition: all 0.8s;
}

.sticky-icon a:hover {
	color: #FFF;
	transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
	transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook {
	background-color: #2C80D3;
	color: #FFF;
}

.Youtube {
	background-color: #fa0910;
	color: #FFF;
}

.Twitter {
	background-color: #25D366;
	color: #FFF;
}

.Instagram {
	background-color: #FD1D1D;
	color: #FFF;
}

.Google {
	background-color: #d34836;
	color: #FFF;
}

.sticky-icon a i {
	background-color: #FFF;
	height: 40px;
	width: 40px;
	color: #000;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	margin-right: 20px;
	transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
	background-color: #FFF;
	color: #2C80D3;
}

.sticky-icon a i.fa-google-plus-g {
	background-color: #FFF;
	color: #d34836;
}

.sticky-icon a i.fa-instagram {
	background-color: #FFF;
	color: #FD1D1D;
}

.sticky-icon a i.fa-youtube {
	background-color: #FFF;
	color: #fa0910;
}

.sticky-icon a i.fa-twitter {
	background-color: #25D366;
	color: #53c5ff;
}

.fas fa-shopping-cart {
	background-color: #FFF;
}

.btn:focus,
.btn:active,
button:focus,
button:active {
	outline: none !important;
	box-shadow: none !important;
}

#image-gallery .modal-footer {
	display: block;
}

.thumb {
	margin-top: 15px;
	margin-bottom: 15px;
}

.newsltr {
	font-size: 36px;
	padding-bottom: 25px;
	width: 100%;
	float: left;
	color: #333333;
	text-transform: capitalize;
	font-weight: bold;
	line-height: 35px;
	font-size: 30px;
	margin: 0px;
	padding-bottom: 10px;
	text-align: center;
	font-family: 'Merriweather', serif;
}

.product_head {
	width: 100%;
	float: left;
	text-align: center !important;
	margin: 0px;
	line-height: 40px;
	padding-bottom: 15px;
	text-transform: capitalize;
	font-size: 40px;
	font-weight: bold;
	color: #ffffff;
}

.wsel {
  float: left;
  color: #333;
  border: 1px solid #35bfcc;
  padding: 0 10px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 5px;
  text-transform: capitalize;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.wsel:hover {
  background-color: #35bfcc;
  color: #fff;
}
.ls_tag {
	width: 100%;
	float: left;
}

.ls_tag label {
	float: left;
	color: #333;
	border: 1px solid #35bfcc;
	padding: 0 10px;
	margin-right: 8px;
	margin-bottom: 8px;
	border-radius: 5px;
	text-transform: capitalize;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.ls_tag label:hover {
	background-color: #35bfcc;
	color: #fff;
}
@media (min-width: 1024px) {
    .hide-on-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
  .ls_product.ls_products22 {
    height: 300px!important; /* Adjusted height for mobile screens */
  }
}
/*telephone with flag and country code*/

.intl-tel-input .flag-dropdown .selected-flag {
  padding: 11px 16px 11px 6px;
}
.intl-tel-input {
  z-index: 99;
  width: 100%;
}
.iti-flag {
  box-shadow: none;
}
.intl-tel-input .selected-flag:focus {
  outline: none;
}
#phone {
    width: 100%;
}
.success {
    color: green !important;
    font-size: 14px;
}

.error {
    color: red !important;
    font-size: 14px;
}

/* telephone with flag and country code*/

/*inqury button start*/
  .btn-request-price {
    background-color: #e8511b;
    border: 2px solid #e8511b;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
  }

  .btn-request-price:hover {
    background-color: #fff;
    color: #e8511b;
    border-color: #e8511b;
    box-shadow: 0 4px 15px rgba(232, 81, 27, 0.5);
  }

  .btn-request-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    transform: skewX(-45deg);
    transition: left 0.5s;
  }

  .btn-request-price:hover::before {
    left: 100%;
  }

  .btn-request-price:active {
    transform: scale(0.95);
  }
/*inqury button end*/