
/* newly added  start only fixed colors suggested by WM*/

body {
  color: #333333;   /* color will affect text and other content which has no classes. color is faint black */
  font-family: "Open Sans";
  font-size: 14px;
  line-height: inherit;
  margin: 0;
  padding: 0;
  font-weight: 400;
  background: #fff;  /* body color which is fixed as suggested */
} 
.smart-search17 .select-category {
  border-left: 1px solid #e5e5e5;   /* this border color will afect the border color for inpu search (Present in navbar, and searchbar) on page*/
  left: auto;
  right: 50px;
}
.smart-search-form input[type="text"] {
  border: medium none;
  color: #A9A9A9;    /* search input text color which is fixed as suggested */
  height: 40px;
  padding: 0 15px;
  width: 100%;
  background: #fff;   /* search input background color which is fixed as suggested */
}
.wrap {
  overflow: hidden;
  position: relative;
}
* {
  box-sizing: border-box;
  outline: none;
}
img {
  max-width: 100%;
}

.container {
  max-width: 1230px;
  width: 100%;
}
input,
input:focus,
input:hover {
  outline: none;
}
.main-header17 {
  padding-bottom: 15px;
  padding-top: 15px;
}
.main-nav.main-nav17 > ul > li > a {
  padding: 15px;
}
.product-thumb-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.product-thumb-link img {
  width: 100%;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}
.product-thumb-link::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.smart-search17 .select-category .category-toggle-link {
  height: 38px;
  line-height: 38px;
}
.smart-search17 .smart-search-form {
  border: medium none;
  /*padding-right: 230px;*/
}
.smart-search17 .smart-search-form input[type="text"] {
  height: 38px;
}
.smart-search17 .smart-search-form input[type="submit"] {
  right: -1px;
  top: -1px;
  width: 50px;
}
.search { position: relative; }

.content-top17 {
  padding-bottom: 50px;
  padding-top: 10px;
}
.wrap-cat-icon.wrap-cat-icon17 .title-cat-icon {
  padding: 12px 20px;
}
.wrap-cat-icon.wrap-cat-icon17 .title-cat-icon::after {
  display: none;
}
.wrap-cat-icon17 .list-cat-icon > li > a {
  margin: 0 20px;
  padding: 10px 40px 9px 0;
}
.wrap-cat-icon17 .list-cat-icon > li:last-child > a {
  border: medium none;
}
.smart-search-form { 
  padding-right: 44px;
  position: relative;
  width: 100%;
}
.smart-search-form input[type="submit"] {
  border: medium none;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  z-index: 9;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}
.smart-search.smart-search17 {
  border: 1px solid #ebebeb;  /* search input border color which is fixed as suggested */
  border-radius: 0;
  padding-left: 0;
  height:40px;
}
.smart-search {
  border-width: 2px;
  border-style: solid;
  padding-left: 180px;
  position: relative;
  border-radius: 4px;
}
.main-nav > ul {
  margin: 0;
  position: relative;
  padding: 0;
  list-style: none;
}
.list-cat-icon {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.list-cat-icon > li > a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}
.fa-search{
	cursor: pointer !Important;
}
/* newly added  End*/

/* css required for mobile responsive main nav/ menu bar start */
.main-nav .toggle-mobile-menu {
  display: none;
  height: 30px;
  width: 30px;
  position: relative;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  background: #fff !important;   /* color for toggle menu icon background color */
}
.main-nav .toggle-mobile-menu span {
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  top: 50%;
}
.main-nav .toggle-mobile-menu::before,
.main-nav .toggle-mobile-menu::after {
  content: '';
  position: absolute;
  top: 0;
  height: 4px;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.main-nav .toggle-mobile-menu::before {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
.main-nav .toggle-mobile-menu::after {
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}
.main-nav.active .toggle-mobile-menu::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.main-nav.active .toggle-mobile-menu::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.main-nav.active .toggle-mobile-menu span {
  display: none;
}
.main-nav .toggle-mobile-menu span, .main-nav .toggle-mobile-menu::after, .main-nav .toggle-mobile-menu::before {
    background: black;   /* color is for toggle megu icon three lines */
}
/* newly added  End only fixed colors suggested by WM*/

/* CSS for catalog page start  */
.border{
      border: 1px solid #e5e5e5;   /* border color for product div on catlog page */
}
.product-detail {
  margin-bottom: 20px;
  padding: 30px;
}
.title-detail {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
}
.product-price > span {
  font-size: 18px;
  margin: 0 5px;
  font-weight: 700;
}
.in-stock {	
  color: #0b7d19;   /* green color for detail text on catlog page below product price*/
  /* color: #7db342;   green color for detail text on catlog page below product price*/
  font-weight: Bold;
}
.available {
  margin-bottom: 17px;
}
.available > strong {
  margin-right: 5px;
}
.accordion-detail .available {
  margin-bottom: 7px;
}
.accordion-detail .detail-info .product-price {
  margin-bottom: 6px;
  margin-top: -4px;
}
.accordion-detail .detail-info .product-price ins {
  font-size: 30px;
}
.product-price ins, .quickview-link.plus:hover {
    color: #e21c22;  /* price color on catlog page */
    font-weight: Bold;
}
.detail-info .desc {
  border-bottom: 1px solid #e5e5e5;  /* border color below the product discription */
  padding-bottom: 20px;
}
/* CSS for catalog page End  */


/*Begin Product*/


.product-thumb-link::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);   /* color for product mouse over overlay on ProductListPage */
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}
.product-thumb:hover .product-thumb-link::before {
  opacity: 1;
}
.noPadding{
  padding: 0px !Important;
}
.product-title {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
}
.item-product {
  text-align: center;
}
.product-price ins {
  font-size: 18px;
  font-weight: 700;
  margin: 0 5px;
  text-decoration: none;
}
.product-price > del {
  color: #999;
  padding: 0 5px;
  position: relative;
  text-decoration: none;
}
.product-price > del::after {
  background: #999 none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 100%;
}
.title-box17 {
  color: #000000;     /* Product list panel header colour */
  padding: 10px 20px;
  padding-left:0px;
  padding-top:0px;
}
.product-box17 {
  margin-bottom: 50px;
}
.deal-pro17 {
  border: 1px solid #e5e5e5;     /* Border colour for each product div on product list page */
  padding: 20px;
  min-height:350px;
}