/*
Template Name: E-SHOP HTML E-Commerce Template
Author: yaminncco

Colors:
	Body 		  : #4A4E5A
	Headers 	: #30323A
	Primary 	: #F8694A
	Dark 		  :	#30323A
	Grey 		  : #DADADA #F6F7F8

Fonts: Hind

Table OF Contents
------------------------------------
1 > GENERAL
------ typography
------ Buttons
------ Inputs
------ Lists
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search header
------ Account header
------ Cart header
3 > NAVIGATION
------ Category nav
------ Menu nav
------ Dropdowns
------ Mobile Nav
4 > BANNERS
5 > HOME SLIDER
6 > PRODUCT
------ Single product
------ Widget product
------ Product slick
7 > PRODUCTS PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > FOOTER
11 > SLICK
------ Arrows
------ Dots
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
  font-family: 'Roboto', sans-serif;
  color: #4A4E5A;
  overflow-x: hidden;
  background-color:#fff;
}

h1, h2, h3, h4, h5, h6 {
  color: #9a1a0f;
  margin: 0 0 10px;
  font-weight: 500;
  font-family:'rubik';
}
.h2, h2 {
  font-size: 20px;
}
.h3, h3 {
  font-size: 18px;
}
a {
  color: #444;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
  cursor: pointer;
}

a:hover, a:focus {
  color: #F8694A;
  text-decoration: none;
  outline: none;
}

.primary-color {
  color: #F8694A;
}

.white-color {
  color: #FFF;
}

.font-weak {
  font-weight: 400;
}

strong {
  color: #30323A;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-color: #DADADA;
}
.fa-icon{
  padding-right: 5px;
}
strong{
  font-weight: 500;
}
/*----------------------------*\
	Buttons
\*----------------------------*/

.main-btn, .primary-btn {
  display: inline-block;
  padding: 10px 7px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.icon-btn.main-btn, .icon-btn.primary-btn {
  width: 38px;
  height: 38px;
  line-height: 37px;
  text-align: center;
  padding: 0px;
  border: solid 1px red;
  border-radius:5px;
  margin:2.5px;
  background:#feb920;
 
}

.main-btn {
  color: #30323A;
  background-color: #f7f7f9;
  -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
  box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
  border-radius:5px;
  
}

.main-btn:hover, .main-btn:focus {
  color: #F8694A;
  -webkit-box-shadow: 0px 0px 0px 1px #F8694A inset, 0px 0px 0px 0px #F8694A;
  box-shadow: 0px 0px 0px 1px #F8694A inset, 0px 0px 0px 0px #F8694A;
}

.primary-btn {
  color: #FFF;
  background-color: #F8694A;
  border-radius:5px;
}

.primary-btn:hover, .primary-btn:focus {
  color: #FFF;
  background-color: #30323A;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

.input {
  width: 100%;
  height: 40px;
  padding: 0px 15px;
  border: none;
  background-color: transparent;
  -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
  box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.input:focus {
  -webkit-box-shadow: 0px 0px 0px 1px #F8694A inset, 0px 0px 0px 0px #F8694A;
  box-shadow: 0px 0px 0px 1px #F8694A inset, 0px 0px 0px 0px #F8694A;
}

textarea.input {
  padding: 15px;
}

.input-checkbox .caption {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-checkbox>label {
  color: #30323A;
}

.input-checkbox input[type="checkbox"]:checked+label+.caption, .input-checkbox input[type="radio"]:checked+label+.caption {
  max-height: 800px;
}

/*----------------------------*\
	Lists
\*----------------------------*/

.list-links .list-links-title {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 16px;
}

.list-links li>a {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  padding: 2px 0px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.list-links li>a:before {
  content: "\f105";
  position: absolute;
  left: 0px;
  font-family: FontAwesome;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.list-links li>a:hover, .list-links li>a:focus, .list-links li.active>a {
  color: #F8694A;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.list-links li>a:hover:before, .list-links li>a:focus:before, .list-links li.active>a:before {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Sections
\*----------------------------*/
.section-slider {
  padding-top: 0px;
  padding-bottom: 0px;
  
}

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-grey {
  background: rgb(56, 56, 56);
  margin-top: 30px;
}
.section-grey a{color:#fff;
  line-height: 26px;}

.section-title {
  position: relative;
  margin-bottom: 15px;
  height: 40px;
  border-bottom: 1px solid rgb(54, 156, 168);
  margin-top: 30px;
}

.section-title .title {
  display: inline-block;
 
}

.section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  height: 3px;
  width: 60px;
  background-color: #F8694A;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  -webkit-box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.175);
  box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.175);
}

.breadcrumb {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  padding: 15px 0px;
  margin: 0;
}

.breadcrumb>.active {
  color: #F8694A;
}

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

/*=========================================================
	02 -> HEADER
===========================================================*/

#header {
  padding-top: 5px;
  padding-bottom: 5px;
}

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 5px;
 /* padding-bottom: 5px;
  border-bottom: 1px solid #DADADA;*/
}

.header-top-links>li {
  display: inline-block;
}

.header-top-links>li+li {
  margin-left: 15px;
  text-transform: none;
}

.header-top-links>li>a {
  cursor: pointer;
  text-transform: none;
}

/*----------------------------*\
	logo
\*----------------------------*/

.header-logo {
  display: inline-block;
  margin-right: 15px;
}

.header-logo .logo>img {
  width: 100%;
  height: auto;
}

/*----------------------------*\
	Search header
\*----------------------------*/

.header-search {
  display: inline-block;
  padding: 15px 0px;
  max-width: 500px;
  width: 500px;
}

.header-search {
  position: relative;
  margin-left: 30px;
}

.header-search> .search-input {
  padding-left: 20px;
  padding-right: 45px;
}

.header-search>form .search-categories {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 135px;
}

.header-search>button.search-btn {
  position: absolute;
 
  right: 0px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  background-color:#f17700;
}

/*----------------------------*\
	Account header
\*----------------------------*/

.header-btns>li {
  display: inline-block;
  vertical-align: top;
  padding: 15px 0px;
}

.header-btns>li+li {
  margin-left: 15px;
}

.header-btns>li .header-btns-icon {
  position: relative;
  float: left;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #f17700;
  border: 1px solid #139908;
  border-radius: 2px;
}

.header-btns .dropdown-toggle {
  display: block;
  cursor: pointer;
}
 

.header-account.dropdown .custom-menu>li>a>i {
  margin-right: 8px;
  color: #F8694A;
}

/*----------------------------*\
	Cart header
\*----------------------------*/

.header-cart .header-btns-icon .qty {
  position: absolute;
  right: -9px;
  top: -9px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  background: #F8694A;
  color: #FFF;
  border-radius: 50%;
  
}

.header-cart.dropdown .custom-menu {
  width: 300px;
}

#shopping-cart .shopping-cart-list {
  max-height: 260px;
  margin-bottom: 15px;
  overflow-y: scroll;
}

#shopping-cart .shopping-cart-list .product.product-widget:first-child {
  margin-top: 0px;
}

#shopping-cart .shopping-cart-list .product.product-widget:last-child {
  margin-bottom: 0px;
}

#shopping-cart .shopping-cart-btns>button {
  width: calc(50% - 2px);
}

/*=========================================================
	03 -> NAVIGATION
===========================================================*/

#navigation {
  background-color:#a93d36;
  margin-bottom:15px;
}

#navigation .container {
  position: relative;
}

/*----------------------------*\
	Category nav
\*----------------------------*/

.category-nav {
  float: left;
  width: 270px;
}

.category-nav .category-header {
  padding: 15px;
  display: block;
  text-transform: uppercase;
  background: #f17700;
  color: #FFF;
  font-weight: 500;
  cursor: pointer;
}

.category-nav .category-header>i {
  float: right;
  line-height: 20px;
  cursor: pointer;
}

.category-nav .category-list {
  position: absolute;
   /*himangshu added*/
  width: 270px;
  /*width: 98%;*/

  background-color: #fff;
  border-left: 1px solid #DADADA;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  border-top: 0px solid #DADADA;
  z-index: 50;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.category-nav.show-on-click .category-list {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
}

.category-nav.show-on-click .category-list.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  z-index:99;
  box-shadow: 3px 4px#DADADA;
  padding: 10px!important;
}
 

.category-nav .category-list>li+li {
  border-top: 0px solid #DADADA;
  padding-top:0px;
}

.category-nav .category-list>li.dropdown>.dropdown-toggle>i {
  float: right;
  line-height: 20px;
  
}

.category-nav .category-list>li>a {
  /*himangshu added*/
  display: block;
  padding-left: 5px;
  padding-top:8px;
  padding-bottom:8px;
  /*float: left !important;
  width: 16.66%;*/
  background-color:#fff;
  border-bottom: solid 1px #ccc;
 
}

.category-nav .category-list>li>a:hover, .category-nav .category-list>li>a:focus, .category-nav .category-list>li.dropdown.open>a {
  color: #F8694A;
}

/*----------------------------*\
	Menu nav
\*----------------------------*/

.menu-nav .menu-header {
  display: none;
  padding: 15px;
  text-transform: uppercase;
  background: #30323A;
  color: #FFF;
  font-weight: 700;
}

.menu-nav .menu-header>i {
  float: right;
  line-height: 20px;
}

.menu-nav .menu-list>li {
  display: inline-block;
}

.menu-nav .menu-list>li>a {
  display: block;
  padding: 14px;
  color: #FFF;
  text-transform: uppercase;
}

.menu-nav .menu-list>li>a:hover, .menu-nav .menu-list>li>a:focus, .menu-nav .menu-list>li.dropdown.open>a {
  color: #fff;
}

/*----------------------------*\
	Dropdowns
\*----------------------------*/

.custom-menu {
  position: absolute;
  padding: 15px;
  background: #FFF;
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 100;
  top: 100%;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  left:-165% !important;
}

.dropdown.open>.custom-menu {
  opacity: 1;
  visibility: visible;
}

/*-- Default Dropdown --*/

.dropdown.default-dropdown>.custom-menu {
  border-top: 2px solid #F8694A;
  left: 99%;
  -webkit-transform: translateX(-50%) translateY(15px);
  -ms-transform: translateX(-50%) translateY(15px);
  transform: translateX(-50%) translateY(15px);
}

.dropdown.default-dropdown.open>.custom-menu {
  -webkit-transform: translateX(-50%) translateY(0px);
  -ms-transform: translateX(-50%) translateY(0px);
  transform: translateX(-50%) translateY(0px);
}

.dropdown.default-dropdown>.custom-menu>li>a {
  display: block;
  padding: 10px 0px;
 
}

/*-- Mega Dropdown --*/

.dropdown.mega-dropdown.full-width {
  position: static !important;
}

.dropdown.mega-dropdown>.custom-menu {
  border-top: 2px solid #F8694A;
  left: 0;
  -webkit-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
  width: auto;
  min-width: 750px;
  max-width: 100%;
}

.dropdown.mega-dropdown.full-width>.custom-menu {
  width: 100%;
}

.dropdown.mega-dropdown.open>.custom-menu {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

/*-- Side Dropdown --*/

.dropdown.side-dropdown>.custom-menu {
  border-left: 2px solid #F8694A;
  left: 100%;
  top: 0;
  -webkit-transform: translate(15px, 0px);
  -ms-transform: translate(15px, 0px);
  transform: translate(15px, 0px);
}

.dropdown.side-dropdown.open>.custom-menu {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

/*----------------------------*\
	Mobile nav
\*----------------------------*/

#header .nav-toggle {
  display: none;
}

@media only screen and (max-width: 991px) {
  #header .nav-toggle {
    display: inline-block;
  }
  header .pull-left, header .pull-right {
    float: none !important;
  }
  header .pull-right {
    margin-top: 10px;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 270px;
    width: 0%;
    overflow: hidden;
    background-color: #FFF;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    z-index: 990;
  }
  #responsive-nav.open {
    width: 100%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  #responsive-nav .dropdown .custom-menu {
    display: none;
    position: static;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid #F8694A;
  }
  #responsive-nav .dropdown.open .custom-menu {
    display: block;
    min-width: auto;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  .category-nav .category-list, .menu-nav .menu-list {
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 100px);
  }
  .category-nav .category-list.open, .menu-nav .menu-list.open {
    display: block;
  }
  .menu-nav .menu-header, .category-nav .category-header {
    cursor: pointer;
  }
  .category-nav {
    float: none;
    width: 100%;
  }
  .category-nav .category-list {
    position: static;
  }
  .menu-nav .menu-header {
    display: block;
  }
  .menu-nav .menu-list {
    float: none;
    border-left: 1px solid #DADADA;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
  }
  .menu-nav .menu-list>li {
    display: block;
  }
  .menu-nav .menu-list>li+li {
    border-top: 1px solid #DADADA;
  }
  .menu-nav .menu-list>li>a {
    color: #30323A;
  }
  #navigation.shadow:after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    border-radius:10px;
  }
}

/*=========================================================
	04 -> BANNERS
===========================================================*/

.banner {
  display: block;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

.banner>img {
  width: 100%;
}
.banner a>img{
  width: 250px;
  height: 350px;
}
.banner.banner-1 .banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner.banner-2 .banner-caption {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  text-align: center;
}

.banner h1 {
  font-size: 46px;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOME SLIDER
===========================================================*/

#home .home-wrap {
  margin-left: 270px;
}

#home-slick .banner {
  margin: 0px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

.product .product-old-price {
  color: #F8694A;
  font-size: 80%;
  margin-left: 10px;
}

.product .product-rating {
  display: inline-block;
}

.product .product-rating>i {
  color: #FFB656;
}

.product .product-rating>i.empty {
  color: #DADADA;
}

.product .product-label>span {
  position: relative;
  display: none;
  padding: 5px 15px;
  font-weight: 500;
  color: #FFF;
  background-color: #30323A;
  z-index: 22;
  font-size: 13px;
}

.product .product-label>span.sale {
  background-color: #F8694A;
}

.product .product-countdown {
  z-index: 22;
}

.product .product-countdown>li {
  display: inline-block;
  margin-right: -4px;
}

.product .product-countdown>li+li:before {
  content: ":";
  color: #FFF;
  background: #30323A;
  padding: 2px;
}

.product .product-countdown>li>span {
  display: inline-block;
  color: #FFF;
  font-weight: 500;
  padding: 10px;
  background: #F8694A;
  font-size: 13px;
  text-transform: capitalize;
}

/*----------------------------*\
	Single product
\*----------------------------*/
.product-list.col-xs-12 {
  border: solid 1px silver;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 10px;
}
.related {
  border: solid 1px silver;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 10px;
}
.product.product-single {
  margin-top: 5px;
  margin-bottom: 12px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color:#fff;
  border-radius: 15px;
  border: solid 1px silver;
  padding: 10px;
  height:auto;
  
}

.search.product-grid {
  border: solid 1px silver !important;
  padding: 8px;
  border-radius: 15px;
  max-width: 23%!important;
  margin: 11px;
}
.category-search.product-grid {
  border: solid 1px silver !important;
  padding: 8px;
  border-radius: 15px;
  max-width: 30%;
  margin: 11px;
}
.product-grid1{
  border: solid 1px silver !important;
  padding: 8px;
  border-radius: 15px;
  max-width: 30%!important;
  margin: 11px;
  }
.product.product-single:hover {
  -webkit-box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175);
  box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175);
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}

.product.product-single .product-thumb {
  position: relative;
  margin-bottom: 0px;
}

/*.product.product-single .product-thumb>img {
  width: 100%;
}*/

.product.product-single .product-thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.product.product-single:hover .product-thumb:after {
  opacity: 0.7;
  visibility: visible;
}

.product.product-single .quick-view {
  position: absolute;
  top: 50%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 20;
  border-radius:10px;
}

.product.product-single:hover .quick-view {
  opacity: 1;
  visibility: visible;
}

.product.product-single .product-label {
  position: absolute;
  left: 0;
  top: 0;
}

.product.product-single .product-label>span {
  display: inline-block;
}

.product.product-single .product-countdown {
  
  text-align: center;
}

.product.product-single .product-body {
  margin-top: 0px;
  padding-left:10px;
}

.product.product-single .product-price {
  display: inline-block;
}

.product.product-single .product-rating {
  float: right;
  margin-top: 0px;
}

.product.product-single .product-name {
  font-size: 15px;
  height: 35px;
  overflow: hidden;
  font-weight:normal;
  
}

.product.product-single .product-btns {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.product.product-single:hover .product-btns {
  opacity: 1;
  visibility: visible;
}

/*-- hot product --*/

.product.product-single.product-hot {
  border: 2px solid #F8694A;
}

.product.product-single.product-hot .product-btns {
  opacity: 1;
  visibility: visible;
}
.product.product-special{
  border: 2px solid #F8694A;
}
/*----------------------------*\
	 Widget product
\*----------------------------*/

.product.product-widget {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

.product.product-widget .product-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
}

.product.product-widget .product-thumb>img {
  width: 100%;
}

.product.product-widget .product-body {
  padding-left: 75px;
  padding-top: 10px;
  min-height: 60px;
}

.product.product-widget .product-price {
  font-size: 18px;
  margin-bottom: 5px;
}

.product.product-widget .product-price .qty {
  font-size: 14px;
  font-weight: 400;
}

.product.product-widget .product-name {
  font-size: 14px;
}

.product.product-widget .cancel-btn {
  position: absolute;
  right: 0px;
  top: 10px;
  background-color: transparent;
  border: none;
  color: #DADADA;
}

.product.product-widget .cancel-btn:hover {
  color: #30323A;
}

/*----------------------------*\
	Product slick
\*----------------------------*/

.product-slick .slick-slide {
  margin-right: 15px;
  margin-left: 15px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

#aside .aside {
  margin-bottom: 30px;
}

#aside .aside:last-child {
  margin-bottom: 0px;
}

.aside .aside-title {
  position: relative;
  border-bottom: 1px solid #DADADA;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 30px;
  margin-top: 15px;
  line-height: 24px;
  font-size: 18px;
}

.aside .aside-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  height: 3px;
  width: 60px;
  background-color: #F8694A;
}

/*-- Filter list --*/

.filter-list {
  margin-bottom: 15px;
}

.filter-list>li {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 6px;
}

.filter-list>li:last-child {
  margin-right: 0px;
}

.filter-list li a {
  position: relative;
  padding: 0px 5px 0px 20px;
}

.filter-list li a:before {
  content: "\f00d";
  font-family: FontAwesome;
  position: absolute;
  left: 4px;
  top: 5px;
  line-height: 12px;
  font-size: 9px;
  color: #FFF;
  background: #30323A;
  width: 12px;
  text-align: center;
  border-radius: 50%;
  height: 12px;
}

/*-- Price Filter --*/

#price-slider {
  margin: 60px 0px 50px;
}

.noUi-target {
  background-color: #DADADA;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #F8694A;
}

.noUi-horizontal {
  height: 4px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #30323A;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0px;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.noUi-tooltip {
  border: none;
  color: #FFF;
  background: #30323A;
  border-radius: 0px;
}

/*----------------------------*\
	Store
\*----------------------------*/

#store {
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid #DADADA;
  margin-bottom: 15px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DADADA;
}
#store-search {
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid #DADADA;
  margin-bottom: 15px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DADADA;
}

/*-- store filter --*/

.row-filter {
  display: inline-block;
  vertical-align: top;
}

.row-filter>a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  background-color: #30323A;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.row-filter>a:hover {
  opacity: 0.9;
}

.row-filter>a.active {
  background-color: #F8694A;
}

.row-filter>button {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  color: #FFF;
  background-color: #30323A;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 0;
}
.row-filter>button:hover {
  opacity: 0.9;
}
.row-filter>button.active {
  background-color: #F8694A;
  color: #fff;
}
.sort-filter {
  display: inline-block;
  margin-left: 15px;
}

.sort-filter select.input {
  width: 120px;
}

.page-filter select.input {
  width: 90px;
}

.page-filter {
  display: inline-block;
}

.store-pages {
  display: inline-block;
  margin-left: 15px;
}

.store-pages li {
  display: inline-block;
  margin-right: 6px;
}

.store-pages li a {
  display: block;
  min-width: 10px;
  text-align: center;
}

.store-pages li.active {
  color: #F8694A;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-view .slick-arrow {
  opacity: 0;
}

#product-main-view:hover .slick-arrow {
  opacity: 1;
}

#product-view {
  margin-top: 10px;
  margin-bottom: 15px;
  height: 90px;
  width: 72px;
}

#product-view .product-view.slick-slide {
  opacity: 0.2;
}

#product-view .product-view.slick-slide.slick-current {
  opacity: 1;
  -webkit-box-shadow: 0px 0px 0px 2px #F8694A inset;
  box-shadow: 0px 0px 0px 2px #F8694A inset;
}

#product-view .product-view {
  padding: 7.5px;
}

.product-view>img {
  width: 100%;

  max-height: 350px;
  max-width: 300px;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product.product-details .product-name {
  margin-top: 15px;
}

.product.product-details .product-rating {
  margin-right: 15px;
  margin-bottom: 15px;
}

.product.product-details .product-options {
  padding-top: 30px;
  margin-bottom: 15px;
  border-top: 1px solid #DADADA;
  margin-top: 15px;
}

.product-options .size-option {
  margin-bottom: 15px;
}

.size-option>li {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 6px;
  vertical-align: top;
}

.size-option>li:last-child {
  margin-right: 0px;
}

.size-option>li>a {
  display: block;
  border: 1px solid #DADADA;
  font-weight: 700;
  padding: 2px 7px 0px 8px;
}

.size-option>li.active a {
  color: #F8694A;
  border-color: #F8694A;
}

.color-option>li {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 6px;
  vertical-align: top;
}

.color-option>li:last-child {
  margin-right: 0px;
}

.color-option>li>a {
  display: block;
  width: 20px;
  height: 20px;
}

.color-option>li.active a {
  -webkit-box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px #F8694A;
  box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px #F8694A;
}

.product.product-details .qty-input {
  display: inline-block;
}

.product.product-details .qty-input .input {
  width: 90px;
}

/*----------------------------*\
	Product tab
\*----------------------------*/

.product-tab {
  margin-top: 30px;
}

.product-tab .tab-nav {
  border-bottom: 1px solid #DADADA;
  margin-bottom: 30px;
}

.product-tab .tab-nav li {
  display: inline-block;
}

.product-tab .tab-nav li+li {
  margin-left: 30px;
}

.product-tab .tab-nav li a {
  display: block;
  padding: 15px 0px;
  text-transform: uppercase;
  font-weight: 700;
}

.product-tab .tab-nav li.active {
  position: relative;
}

.product-tab .tab-nav li.active a {
  color: #F8694A;
}

.product-tab .tab-nav li.active a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  height: 3px;
  width: 30px;
  background-color: #F8694A;
}

/*-- reviews --*/

.single-review {
  margin-bottom: 30px;
}

.single-review .review-heading>div {
  display: inline-block;
}

.single-review .review-heading>div+div {
  margin-left: 10px;
}

.single-review .review-rating {
  display: inline-block;
}

.single-review .review-rating>i {
  color: #FFB656;
}

.single-review .review-rating>i.empty {
  color: #DADADA;
}

.single-review .review-body {
  margin-top: 10px;
}

.reviews-pages li {
  display: inline-block;
  margin-right: 6px;
}

.reviews-pages li a {
  display: block;
  min-width: 10px;
  text-align: center;
}

.reviews-pages li.active {
  color: #F8694A;
}

/*-- review form --*/

.review-form textarea.input {
  height: 90px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.review-form .input-rating .stars>label:hover, .review-form .input-rating .stars>label:hover~label {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  color: #DADADA;
  font-size: 14px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  content: "\f005";
  color: #FFB656;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #FFB656;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.shiping-methods {
  margin-bottom: 30px;
}

/*-- shopping cart table --*/

.shopping-cart-table>tbody>tr>td, .shopping-cart-table>tbody>tr>th, .shopping-cart-table>tfoot>tr>td, .shopping-cart-table>tfoot>tr>th, .shopping-cart-table>thead>tr>td, .shopping-cart-table>thead>tr>th {
  padding: 15px 0px;
  vertical-align: middle;
  border-top: 1px solid #DADADA;
}

.shopping-cart-table>thead>tr>th {
  color: #30323A;
  text-transform: uppercase;
  border-bottom: 1px solid #DADADA;
}

.shopping-cart-table>tbody>tr:last-child>td {
  border-bottom: 1px solid #DADADA;
}

.shopping-cart-table>tfoot>tr>td, .shopping-cart-table>tfoot>tr>th {
  color: #30323A;
  border-top: 0px
}

.shopping-cart-table>tfoot>tr>td:not(.empty), .shopping-cart-table>tfoot>tr>th:not(.empty) {
  padding: 15px;
  background-color: #F6F7F8;
  border: 1px solid #DADADA;
}

.shopping-cart-table>tbody>tr>.details>a {
  font-size: 18px;
  font-weight: 700;
}

.shopping-cart-table>tbody>tr>.thumb>img {
  width: 60px;
}

.shopping-cart-table>tbody>tr>.qty .input {
  width: 90px;
}

.shopping-cart-table>tbody>tr>.price {
  font-size: 18px;
}

.shopping-cart-table>tbody>tr>.total {
  font-size: 18px;
}

.shopping-cart-table>tfoot>tr>.sub-total {
  font-size: 18px;
}

.shopping-cart-table>tfoot>tr>.total {
  font-size: 24px;
  color: #F8694A;
}

/*=========================================================
	10 -> FOOTER
===========================================================*/

.footer {
  margin: 15px 0px;
  color:#fff;
}

.footer p {
  text-align: justify;
  color:#fff;
}
.footer .footer-header {
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
  /*border-bottom: solid 1px silver;
  padding-bottom: 10px;*/
}
 

.faa {

  color: red;
}

.footer-logo {
  margin-bottom: 10px;
  margin-top: -18px;
}

.footer-logo .logo {
  display: inline-block;
}

.footer-logo .logo>img {
  width: 100%;
  max-height: 70px;
}

.footer-social>li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 6px;
}

.footer-social>li:last-child {
  margin-right: 0px;
}

.footer-copyright {
  margin-top: 15px;
  color:#fff;
  font-size: 14px;
}

/*=========================================================
	11 -> SLICK
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  background: #E66942;
  z-index: 22;
  margin-right: -6px;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background: #F8694A;
}

.slick-prev:before, .slick-next:before {
  color: #FFF;
}

.slick-prev {
  left: 11px;
}

.slick-next {
  right: 10px;
}

.custom-nav .slick-prev, .custom-nav .slick-next {
  display: inline-block;
  position: static;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #DADADA;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #F8694A;
}

.custom-dots .slick-dots {
  position: static;
  margin: 0px 0px;
}
/*=========================================================
  12 -> CUSTOM
===========================================================*/

.btn-link{
  color: #30323A;
}
.btn-link:hover{
  color: #F8694A;
  text-decoration: none;
}
#cart>button{
  background: transparent;
  border: 0;
}

#support-area {
  padding: 5px 0 25px 15px;
  background: #fff;
}
.sigle-support-icon {
  float: left;
  margin-right: 15px;
}
.sigle-support-icon p {
  background: #ffa726 none repeat scroll 0 0;
  color: #fff;
  height: 48px;
  line-height: 48px;
  text-align: center;
  width: 48px;
}
.sigle-support-content h2 {
  font-size: 16px;
  color: #ffa726;
  margin-bottom: 10px;
}
#common-home .alert{
  margin-top: 20px
}
.add-to-cart{
  text-transform: capitalize;
  font-weight: 500;
}
.sigle-support-icon p i {font-size:20px}

.product-rating .fa-star + .fa-star-o {
  color: #FFB656;
}
.product-rating .fa-star {
  color: #FFB656;  
}
.product-rating .fa-stack {
  font-size: 7px;
}
.product-rating .fa-star-o {
  color: #DADADA;
}
.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}
.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}
.products-slick-nav .slick-prev::before, .products-slick-nav .slick-next::before {
  font-family: FontAwesome;
  color: #fff;
}
.products-slick-nav .slick-next::before {
  content: "\f105";
}
.products-slick-nav .slick-prev::before {
  content: "\f104";
}
#product-main-view1{
  
  padding: 15px;
 
  height: 430px;
  
  border-radius: 15px;
 /*text-align: center;*/
  border:solid 1px #c0bdbd;
  box-shadow:  10px 10px lightblue;
}
#product-main-view1 .thumb {
  max-width: 400px;
  max-height: 390px;
}
.review-rating .fa-star + .fa-star-o {
  color: #FFB656;
}
.review-rating .fa-star {
  color: #FFB656;  
}
.review-rating .fa-stack {
  font-size: 7px;
}
.review-rating .fa-star-o {
  color: #DADADA;
}

.product-list .product-thumb{
  float: left;
  margin-right: 25px;
}
.product-list .product-body{
   padding-top: 25px !important;
}
.product-grid .product-desc{
  display: none;
}

td.rating .fa-star + .fa-star-o {
  color: #FFB656;
}
td.rating .fa-star {
  color: #FFB656;  
}
td.rating .fa-stack {
  font-size: 7px;
}
td.rating .fa-star-o {
  color: #DADADA;
}
.well-form {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 0px;
  height: 320px;
}
.btn-primary{
  display: inline-block;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn-danger{
  display: inline-block;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 991px) {
  #home .home-wrap {
    margin-left: 0px;
  }
  #aside {
    margin-bottom: 60px;
  }
  .product-reviews {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .banner h1 {
    font-size: 36px;
  }
  .store-filter .pull-right, .store-filter .pull-left {
    /*float: none !important;*/
  }
  .store-filter .pull-right {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
  .zoomWrapper {
  text-align: left !important;
}
.section-title h2 {
  font-size: 21px!important;
}
.mob-whatsapp{
  display: block!important;
}

.ft-whatsapp{
  display: none!important;
}

.product-grid.col-sm-6 {
  width: 50%;
}
.main-btn.faa {
  font-size: 13px!important;
}

    .header-top-links .hidden-xs 
  {
  display: block !important;
  }

  #top-header {
  background: #F8694A;
}
  #top-header .pull-left {
  text-align: center;
  font-size: 18px;
  margin-top: 3px;
  color: #fff;
  font-weight: 600;
}
.header-top-links li {
  display: block !important;
    color: #fff;
    text-align: center !important;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
}

#wishlist-total {
  display: none;
}


.header-top-links li span i {
  margin-right: 5px;
}

#header {
  background: #fff;
}

 #header .pull-left, header .pull-right {
    text-align: center;
    display: block !important;
  }

  #header .pull-right {
    margin-top: 0px;
  }


  .header-btns > li {
  display: inline-block;
  vertical-align: top;
  padding: 10px 0px;
  text-align: center;  
}




.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
 
  position: relative;
 
  height: auto;
  object-fit: cover;
  object-position: center;
}



.slideshow.swiper-viewport {
  height: 170px;
}

.swiper-viewport {
  height: 125px;
  margin: 29px 0 10px!important;
}

.swiper-pagination {
  bottom: -11px;
  left: 0;
  top: 100%!important; 
  width: 100%;
  margin-top: 6px;
  text-align: center!important;
}


.header-search {
    margin-left: 18px;
    width: 315px;    
  }


  #slick-nav-latest .swiper-pagination-bullet 
  {
  margin-top: 82%!important;
}


  /*.header-search{
    margin-left: 5px;
    width: 380px;
  }*/
}

@media only screen and (max-width: 400px) 
{
  .header-top-links .hidden-xs 
  {
  display: block !important;
  }
  .zoomWrapper {
  text-align: left !important;
}

.product.product-details .qty-input .input {
  width: 66px!important;
  height: 30px!important;
}

.main-btn, .primary-btn {  
  padding: 7px 7px!important;
 font-size: 12px!important;
}

.section-title h2 {
  font-size: 19px;
}
.main-btn.quick-view {
  width: 70px!important;
}
.product-grid.col-sm-6 {
  width: 50%;
}
  #top-header {
  background: #F8694A;
}
  #top-header .pull-left {
  text-align: center;
  font-size: 18px;
  margin-top: 3px;
  color: #fff;
  font-weight: 600;
}
.header-top-links li {
  display: block !important;
    color: #fff;
    text-align: center !important;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
}

#wishlist-total {
  display: none;
}


.header-top-links li span i {
  margin-right: 5px;
}

#header {
  background: #fff;
}

 #header .pull-left, header .pull-right {
    text-align: center;
    display: block !important;
  }

  #header .pull-right {
    margin-top: 0px;
  }


  .header-btns > li {
  display: inline-block;
  vertical-align: top;
  padding: 10px 0px;
  text-align: center;  
}




 


.slideshow.swiper-viewport {
  height: 144px;
}

.swiper-viewport {
  height: 108px;
  margin: 29px 0 10px!important;
}


.swiper-pagination {
  bottom: -11px;
  left: 0;
  top: 100% !important;
  width: 100%;
  margin-top: 0px;
  text-align: right !important;
}


.header-search {
    margin-left: 18px;
    width: 315px;    
  }


 #slick-nav-latest .swiper-pagination-bullet {
  margin-top: 100%!important;
}


  .icon-btn.main-btn{display:none;}



  /*.main-btn, .primary-btn {  
  width: 108px;
}*/


}


@media only screen and (max-width: 400px) {
  .category-nav .category-list > li > a {
    display: inline-block;
    padding: 8px;
    
    width: 100%;
    background-color: #fff;
    border-bottom: solid 1px silver;
  }
  .main-btn.faa{
    margin-top: -4px!important;
    margin-bottom: 2px!important;
  }
  .section-title{
    height: 44px!important;
  }
  .zoomWrapper {
  text-align: left !important;
}
  .product-grid.col-sm-6 {
  width: 50%;
}
  .mobile-screen{display:none;}
.right_banner{display:none;}
.thumb-list-col{display:none;}
.zoomWindowContainer{display:none;}
.main_thumb{text-align:center;float:left!important}
.full-right{text-align:center;float:left!important}
#product-main-view1 {
  border: solid 0px silver;
 
}
  .icon-btn.main-btn{display:none;}
}

@media only screen and (max-width: 320px) {
    .icon-btn.main-btn{display:none;}
  .category-nav .category-list > li > a {
    display: inline-block!important;
    padding: 8px;
    
    width: 100%!important;
    background-color: #fff;
    border-bottom: solid 1px silver;
  }
  .zoomWrapper {
  text-align: left !important;
}
  .product-grid.col-sm-6 {
  width: 50%;
}
  .mobile-screen{display:none;}
  .right_banner{display:none;}
}

@media only screen and (max-width: 375px) {
  .header-search{
    margin-left: 5px;
    width: 300px;
  }
    .icon-btn.main-btn{display:none;}
    .product-grid.col-sm-6 {
  width: 50%;
}
  .zoomWrapper {
  text-align: left !important;
}
  .category-nav .category-list > li > a {
    display: inline-block!important;
    padding: 8px;
    
    width: 100%!important;
    background-color: #fff;
    border-bottom: solid 1px silver;
  }
  .mobile-screen{display:none;}
  .right_banner{display:none;}
  .thumb-list-col{display:none;}
  .main_thumb{text-align:center;float:left!important;}
  .zoomWrapper { }
  #product-main-view1 {
    border: solid 0px silver;
   
  }
 
}
@media only screen and (max-width: 428px) {
    .icon-btn.main-btn{display:none;}
  .header-search{
    margin-left: 5px;
    width: 300px;
  }
    .product-grid.col-sm-6 {
  width: 50%;
}
  .zoomWrapper {
  text-align: left !important;
}
  .category-nav .category-list > li > a {
    display: inline-block!important;
    padding: 8px;
    
    width: 100%!important;
    background-color: #fff;
    border-bottom: solid 1px silver;
  }
  .mobile-screen{display:none;}
  .right_banner{display:none;}
  .thumb-list-col{display:none;}
  .zoomWindowContainer{display:none;}
  #main_img-zoomContainer{display:none;}
  .main_thumb{text-align:center;float:left!important}
  .full-right{float:left!important}
  .zoomWrapper {  }
  #product-main-view1 {
    border: solid 0px silver;
   
  }
  .main-btn .icon-btn{display:none;}
}

 

@media only screen and (max-width: 360px) 
{
    .icon-btn.main-btn{display:none;}
  .mobile-screen{display:none;}
  .header-top-links .hidden-xs 
  {
  display: block !important;
  }

  .main-btn, .primary-btn {  
  padding: 6px 6px!important;
 font-size: 11px!important;
}

  .category-nav .category-list > li > a {
    display: inline-block!important;
    padding: 8px;
    
    width: 100%!important;
    background-color: #fff;
    border-bottom: solid 1px silver;
  }

  #top-header {
  background: #F8694A;
}
  #top-header .pull-left {
  text-align: center;
  font-size: 18px;
  margin-top: 3px;
  color: #fff;
  font-weight: 600;
}
.header-top-links li {
  display: block !important;
    color: #fff;
    text-align: center !important;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
}

#wishlist-total {
  display: none;
}


.header-top-links li span i {
  margin-right: 5px;
}

#header {
  background: #fff;
}

 #header .pull-left, header .pull-right {
    text-align: center;
    display: block !important;
  }

  #header .pull-right {
    margin-top: 0px;
  }


  .header-btns > li {
  display: inline-block;
  vertical-align: top;
  padding: 10px 0px;
  text-align: center;  
}


.main-btn.faa {
  width: 100px!important;
}
.section-title h2 {
  font-size: 18px;
}
.main-btn.faa{
  margin-top: -4px!important;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: auto !important;
}



.slideshow.swiper-viewport {
  height: 134px;
}

.swiper-viewport {
  height: 100px;
  margin: 29px 0 10px!important;
}


.swiper-pagination {
  bottom: -11px;
  left: 0;
  top: 100% !important;
  width: 60% !important;
  margin-top: 0px;
  text-align: right !important;
}

#slick-nav-latest .swiper-pagination-bullet {
  margin-top: 65%!important;
}
.mobile-screen{display:none;}
.right_banner{display:none;}
.thumb-list-col{display:none;}
.main_thumb{text-align:center;float:left!important}
.full-right{text-align:center;float:left!important}
#product-main-view1 {
  border: solid 0px silver;
 
}
.zoomWindowContainer{display:none;}
#main_img-zoomContainer{display:none;}
}

/*end responsive*/


.prodname {padding-top:10px;
  height: 50px!important;
  overflow: hidden;
}
.price{padding-top:4px;}
 .product-thumb.transition {
  border: solid 1px #eae6e6;
  border-radius: 10px;
  padding: 10px;
  margin: 5px;background-color:#fff;
}

.product-thumb.transition:hover {
  border: solid 2px rgb(230, 222, 222);
  border-radius: 10px;
  padding: 10px;
  margin: 5px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
  margin-top: -5px;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
 
}
#carousel-674{margin-bottom:30px!important;}
.fa-shopping-cart:hover {color:green;}
.fa-user-o{background-color: #ccc;}

.form-horizontal .control-label {
  padding-top: 7px;
  margin-bottom: 0;
  text-align: left;
}

.sidebar {
  border:solid 1px silver;
  border-radius: 15px;
 
 
}

.text-uppercase {
  text-transform: uppercase;
  display:none;
}
.fa-unlock-alt{width:21px!important;}

#banner0 {
  height: 264px;
}
.fw{color:'';}
.socail-icon {
  max-width: 45px!important;
}
.ft-whatsapp {
  width: 70px;
  position: fixed;
  bottom: 20px;
  z-index: 99;
  left: 24px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.ft-whatsapp img {
  width:70px;
}

.mob-whatsapp {
  width: 70px;
  position: fixed;
  bottom: 20px;
  z-index: 99;
  left: 24px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.mob-whatsapp img {
  width:70px;
}
.page {
  background-color: #fff;
  border-radius: 15px;
  padding-top: 20px;
  border:solid 2px rgb(244, 240, 240);
  text-align:justify;
}
/* BackToTop button css */
#scroll {
  position:fixed;
  right:10px;
  bottom:10px;
  cursor:pointer;
  width:50px;
  height:50px;
  background-color:#3498db;
  text-indent:-9999px;
  display:none;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
  border-radius:5px;
}
#scroll span {
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-8px;
  margin-top:-12px;
  height:0;
  width:0;
  border:8px solid transparent;
  border-bottom-color:#ffffff
}
#scroll:hover {
  background-color:#e74c3c;
  opacity:1;
  filter:"alpha(opacity=100)";
  -ms-filter:"alpha(opacity=100)";
}

#list-view{display:none;}
@media (min-width: 1200px) {
  .container {
    width:100% ;
  }
}
@media (min-width: 992px) {
  .container {
    width:100% ;
  }
}
@media (min-width: 768px) {
  .container {
    width:100% ;
  }
}
.grid{padding-left:10px;padding-right:10px;}

.product-thumb img{height: 100%;width: 100%;}

.main-btn.faa {
  text-transform: none;
  color: red;
  border: solid 1px red;
  border-radius: 5px;
  margin-top:-15px;
}
.fa-search::before {
  content: "\f002";
  color: #fff;
}

.menu-nav .menu-list > li > a :hover {
  display: block;
  padding: 15px;
  color: #111;
  text-transform: uppercase;
}
 
#wowslider-container1 a {
  text-decoration: none;
  outline: none;
  border: none;
  margin-top: 0px;
}
.ws_images{height:auto!important;}
.ws_images img{border-radius:10px}
 

#slideshow_250 {
  max-height: 108px;
}

.menu-nav .menu-list > li:hover {
  background-color: #f17700;
  color: #fff !important;
}
.menu-nav .menu-list > li > a:hover {
 
  color: #FFF;
 
}

.primary-btn:hover {
  color: #FFF;
  background-color: #f17700;
  border-radius: 5px;
}

.highlight li {
  list-style-type: square;
  margin-left: 15px;
}
.highlight {
  border: solid 1px #f8694a;
  padding: 15px;
  font-size: 15px;
  line-height: 26px;
  background: #ebf2e0;
  border-radius: 15px;
}

.fimg{background-color:white;border-radius:10px;width:98%;margin-bottom:20px;padding:10px}

.h1, h1 {
  font-size: 20px;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 5px 10px;
}

.fbig{font-size:16px!important}

 
.dropdown-menu > li > a {
  display: block;
  padding: 5px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

 
.dropdown-menu > li > a:hover {
 
  color: #fff;
  
  background-color:#f17700;

}

.manufacturer{color:#fff;margin-bottom:20px;background-color:#f17700;border-radius:15px;padding:18px;}
.manufacturer_link{padding:10px;}

.manufacturer_title{color:#fff;font-size:24px;}
.manufacturer_subtitle{color:#fff;font-size:18px;}

.lcheader{
  padding: 8px;
  background-color: #f17700;
   
}
.lcheader .header_title{padding-left:10px;font-size:20px;color:#fff;}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  z-index: 2;
  color: #111;
  background-color: #e4deda;
  border:"0";
}
#d_quickcheckout .carousel-inner > .item > a > img, 
#d_quickcheckout .carousel-inner > .item > img, 
#d_quickcheckout .img-responsive, 
#d_quickcheckout .thumbnail a > img, 
#d_quickcheckout .thumbnail > img {
  display: block;
  max-width: 100%;
  height: 60px!important;
}
.qc-image{max-width: 100%;
  height: 60px;}
#payment_address_fax_input{display:none;}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: 90px;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset,50%);
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color,var(--swiper-theme-color));
  display: none;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  display: none;
}
.item.slick-slide.slick-current.slick-active {
  /*padding-left: 0px !important;*/
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0!important;
}


.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.thumbnails .image-additional {
  float: left;
  margin-left: 20px;
  margin-top: 20px;
}
.image-additional img {
  max-width: 74px;
}
.thumbnails {
  list-style: none;
}
.image-additional a {
  margin-bottom: 10px;
  /*padding: 5px;*/
  display: block;
  border: 1px solid #ddd;
  width: 70px;
  text-align: center;
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 0px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;

}
 
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.thumb_list{padding-top:10px;max-height:420px;width:100%;overflow-y:auto;overflow-x:hidden;}
.full-right{float:right}
.zoomWrapper {
  padding-left: 0px;
}


.product-main-view-h{
 
  border: solid 1px silver;
 
  border-radius: 15px;
  margin-left:0px;
background: #f7f7f7;
}

.right_banner{ margin-right:0px;}
.product-price {
  color: #111;
  padding-top:5px;
}
 div#suggesstion-box {
  position: absolute;
  z-index: 10000;
  width: 300px;
  background: #fff;
  padding: 5px;
  
}
#suggesstion-box ul> li
{
list-style-type:none;
border-bottom:solid 1px silver;
}
div#suggesstion-box {
  position: absolute;
  z-index: 10000;
  padding: 5px;
  width: 458px;
  background: #fff;
 
  
}
li.footer_li {
    display: inline-block;
    margin-right: 20px;
}
.mob-whatsapp{
  display: none;
}

#suggesstion-box ul> li
{
list-style-type:none;
border-bottom:solid 1px silver;
padding:5px;
}
.nopadding
{
padding-left:0!important;
padding-right:0!important;
margin-left:0!important;
margin-right:0!important;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 96% !important;
}

textarea#input-enquiry {
    height: 132px;
}

li.footer_li.border {
    display: inline-block;
    margin-right: 10px !important;
    border: solid 1px silver;
    border-radius: 9px;
    padding: 4px;
    margin-bottom: 7px;
}

.footer_li.border:hover {
    background-color: red;
}
