/* Grouped product items fixes */ 

.product-variant-list .product-variant-line {
  .product-price-wrap .variant-buttons-wrapper {
    display: flex;

    @media (max-width: 1024px) {
      flex-direction: column;
    }
    .add-to-cart-panel {
      display: flex;
      width: min-content;
    }

    .add-to-cart-qty-wrapper {
      min-width: 150px;
    }

    .add-to-cart-button {
      height: 40px;

      @media (max-width: 1280px) {
        height: 45px;
      }
    }
  }
  .delivery-date {
    color: gray;
  }
  .afterpay-paragraph {
    font-size: 0.5em;
  }

}


.product-variant-list .variant-buttons-wrapper .add-to-cart-panel {
  display: flex;
}

/* Make blog images taller */ 
.blog-page .page-body .rich-blog-image img {
  max-height: 300px;
}


/* Fix width of address finder in create new address page of checkout */ 
.edit-address .inputs-group .inputs {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}


/* Fix headers in spec page */ 
.spec-header .spec-group-name {
  background: rgb(152, 198, 63) ;
  font-size: 1.4em ;
  font-weight: 600 ;
  color: white;
}


/* Fix wide products on blog pages */ 
.related-products-grid {
  max-width: 900px;
}
.related-products-grid .item-grid {
  display: grid;
  grid-template-columns: 1fr;
 @media(min-width: 761px) {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;
  }
}

/* Hide after pay in product grids */ 
.product-item #afterpay-product-widget {
  display: none;
}

/* Hack blog posts to override layout script */
.blog-page .post {
  height: unset !important;
  width: unset !important;
}

.blog-posts {
  display: grid;
  align-content: stretch;
  justify-content: stretch;

  grid-template-columns: 1fr;

  @media(max-width: 1024px) {
    padding-left: 15px;
    padding-right: 15px;
  }

  @media(min-width: 761px) {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-posts .post {
  display: flex;
  flex-direction: column;
}

.blog-posts .post .post-details {
  flex: 1; 
  display: flex;
  flex-direction: column; 
}

.blog-posts .post .post-details .post-footer {
  flex: 1;
  align-content: end;
}

/* Remove uneeded headers from product page */ 
.product-price-heading {
}

/* Hack checkout */
#checkout-step-confirm-order .terms-of-service a,
.terms-of-service input[type="checkbox"]+label {
  font-size: 24px;
  font-weight: 600;
}

.terms-of-service input[type="checkbox"]+label:before,
.terms-of-service input[type="checkbox"]+label:after {
	display: none !important;
}
.terms-of-service input#termsofservice {
	left: unset !important;
	zoom: 1.5; 
}

div.terms-of-service {
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 2em;
}
div.terms-of-service label {
  margin-bottom: 0px;
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}
div.terms-of-service input {
  padding-right: 1em !important;
}

.next-prev-container .previous-product-label, 
.next-prev-container .next-product-label {
    display: inline;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

/* Hide title of home-intro block on the main home page */
.home-page .topic-block-title {
  display: none;
}
.home-page .intro-text1 {
  margin-top: 0px;
  padding: 50px;
}

.home-page .home-intro-container {
  background: none;
}

/* Stop news section on home page taking the full width */
.news-list-homepage {
  max-width: 1354px;
  width: 88%;
}

.header {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px #0002;
  padding: 14px 0px;
}
.header-lower {
  background-color: #ffffff;
}
.header-links a::before {
  color: #000000 !important;
}

.header-links-wrapper {
  display: grid !important;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 25px;
  padding-top: 14px;
  grid-template-columns: 1fr max-content;
}
.header-lower .search-box form {
  display: grid;
  grid-template-columns: 250px 1fr;
}
.header-lower .search-box .search-box-button {
  height: 100%;
}

.header-lower .search-box-text {
  width: 100% !important;
  margin: 0px !important;
  display: block;
  grid-column: 2;
  grid-row: 1;
  border-radius: 0px !important;
  border: 2px solid #95c539;
  border-right: none;
  color: #333333;
}
.header-lower .search-box-select {
  grid-row: 1;
  grid-column: 1;
  width: 100% !important;
  margin: 0px !important;
  height: 100%;
  position: relative;
  left: 0px;
  border: 2px solid #95c539;
  border-right: none;
  border-radius: 3px 0 0 3px !important;
  color: #333333;
}
.header-lower .search-box-text > input {
  color: #333333;
}

/*.header-upper select,
.header-lower input {
	background: #222222 !important;
	color: #ffffff !important;
	border: 1px solid #888888 !important;
}*/

.footer-upper {
  background-color: #222222;
}
.footer-lower {
  background-color: #111111 !important;
  color: #aaaaaa;
}
.lower-footer {
  background-color: #222222;
  padding: 25px 0px !important;
}

.lower-footer > .foot-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
}
@media all and (max-width: 768px) {
  .lower-footer > .foot-container {
    grid-template-columns: 1fr 1fr;
  }
  .lower-footer > .foot-container > * {
    grid-row: 2;
    padding: 12px 0px;
  }
  .lower-footer > .foot-container > .contact-col {
    grid-row: 1;
  }
}
@media all and (max-width: 480px) {
  .lower-footer > .foot-container {
    display: flex;
    flex-direction: column;

  }
  .lower-footer > .foot-container > * {
    grid-row: 2;
    padding: 24px 0px;
    width: 100%;
  }
  .lower-footer > .foot-container > .contact-col {
    grid-row: 1;
  }
}

.brand-col > img {
  margin-top: 15px;
  max-width: 85%;
}

.contact-col {
  font-size: 22px;
  color: #d9d9d9;
  display: flex;
  flex-direction: column;
}
.contact-col > h3 {
  font-size: 28px;
  color: #8bc34a;
}
.contact-col > strong > a {
  text-decoration: none;
}
.nz-col > a > img {
  width: 85%;
}

.follow {
  grid-column: 1;
  grid-row: 2;
}
.service {
  grid-column: 1;
  grid-row: 1;
}
.account {
  grid-column: 2;
  grid-row: 1;
}
.payment {
  grid-column: 2;
  grid-row: 2;
}
.footer-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 48px;
  grid-column-gap: 48px;
  padding: 0px 48px;
}
.footer-social-grid > * {
  width: 48px;
  height: 48px;
}
.footer-social-grid img {
  filter: brightness(0.85);
}

.upper-footer > .foot-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

@media all and (max-width: 768px) {
  .upper-footer > .foot-container > .account,
  .upper-footer > .foot-container > .service {
    width: 50%;
  }
}
@media all and (min-width: 1281px) {
  .upper-footer > .foot-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .follow {
    grid-column: 1;
    grid-row: 1;
  }
  .service {
    grid-column: 2;
    grid-row: 1;
  }
  .account {
    grid-column: 3;
    grid-row: 1;
  }
  .payment {
    grid-column: 4;
    grid-row: 1;
  }
}

@media all and (max-width: 768px) {
  .upper-footer > .foot-container {
    display: block;
  }
}

.foot-container > .brand-col,
.foot-container > .contact-col,
.foot-container > .nz-col {
  width: 100% !important;
  padding-left: unset !important;
}
.foot-container > .about-col {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
.foot-container > .nz-col {
  text-align: unset !important;
}
.nz-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nz-col img {
  width: 80%;
}
.nz-col p {
  font-size: 11px;
}

.foot-container > .brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* input(4,41): run-time error CSS1031: Expected selector, found '/'
input(4,41): run-time error CSS1025: Expected comma or open brace, found '/' */

/* input(1,41): run-time error CSS1031: Expected selector, found '/'
input(1,41): run-time error CSS1025: Expected comma or open brace, found '/' */

@-ms-viewport {
  width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

.visible-print {
  display: none !important;
}

.visible-print-inline {
  display: none !important;
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

/*@font-face {
  font-family: 'helvetica';
  src: url('HelveticaNeueLTPro-Lt.woff2') format('woff2'), url('HelveticaNeueLTPro-Lt.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'helvetica';
  src: url('HelveticaNeueLTPro-Bd.woff2') format('woff2'), url('HelveticaNeueLTPro-Bd.woff') format('woff');
  font-weight: 400;
  }*/

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.html-checkout-page body {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px !important;
}

/* * * * * * * * * * * * * *\
|       General styles      |
\* * * * * * * * * * * * * */

.required {
  color: #f00;
  float: none !important;
  left: 0px;
  margin-top: -10px !important;
  display: inline-block;
  margin-left: 0;
  position: relative !important;
}

.inputs > .required {
  right: auto;
}

/* * * * * * * * * * * * * *\
|      Checkbox styles      |
\* * * * * * * * * * * * * */

input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

input[type="checkbox"]:checked + label:before {
  top: 0 !important;
  left: 1px !important;
  width: 12px !important;
  height: 18px !important;
  border-top: 2px solid transparent !important;
  border-left: 2px solid transparent !important;
  border-right: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  -webkit-transform: rotateZ(37deg) !important;
  transform: rotateZ(37deg) !important;
  -webkit-transform-origin: 100% 100% !important;
  transform-origin: 100% 100% !important;
}

input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a !important;
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}

input[type="checkbox"]:checked + label:after {
  top: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid #038b49;
  background-color: #038b49;
  z-index: 0;
}

input[type="checkbox"] + label:before,
[type="checkbox"] + label:after {
  content: "";
  left: 0;
  position: absolute;
  z-index: 1;
}

input[type="checkbox"] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: inherit;
  line-height: 25px;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"]:checked + label:before {
  margin-left: 0px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  box-shadow: none !important;
  border: 3px solid #fff;
  background-color: transparent !important;
}

input[type="checkbox"]:checked ~ label:before {
  top: 0px !important;
  left: 1px !important;
  width: 8px !important;
  height: 13px !important;
  border-top: 2px solid transparent !important;
  border-left: 2px solid transparent !important;
  border-right: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  -webkit-transform: rotateZ(37deg) !important;
  transform: rotateZ(37deg) !important;
  -webkit-transform-origin: 100% 100% !important;
  transform-origin: 100% 100% !important;
}

input[type="checkbox"] ~ label:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a !important;
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}

input[type="checkbox"]:checked ~ label:after {
  top: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid #038b49;
  background-color: #038b49;
  z-index: 0;
}

input[type="checkbox"] ~ label:before,
[type="checkbox"] ~ label:after {
  content: "";
  left: 0;
  position: absolute;
  z-index: 1;
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: inherit;
  line-height: 25px;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  color: #000;
  font-weight: 400;
}

input[type="checkbox"]:checked ~ label:before {
  margin-left: 0px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  box-shadow: none !important;
  border: 3px solid #fff;
  background-color: transparent !important;
}

.bg-green {
  background-color: #95c539;
  color: white;
}

.block.filter-block
  .checkbox-list
  .checkbox-item
  input[type="checkbox"]:checked
  ~ label:before {
  top: 10px !important;
}

.block.filter-block
  .checkbox-list
  .checkbox-item
  input[type="checkbox"]
  ~ label:before {
  top: 10px;
}

.block.filter-block
  .checkbox-list
  .checkbox-item
  input[type="checkbox"]:checked
  ~ label:after {
  top: 10px;
}

/* Nav and header menu styles*/

#billing-buttons-container,
#shipping-buttons-container,
#shipping-method-buttons-container,
#payment-method-buttons-container,
#payment-info-buttons-container,
#confirm-order-buttons-container {
  align-items: center;
  justify-content: space-between;
}

#billing-buttons-container .please-wait-button,
#shipping-buttons-container .please-wait-button,
#shipping-method-buttons-container .please-wait-button,
#payment-method-buttons-container .please-wait-button,
#payment-info-buttons-container .please-wait-button,
#confirm-order-buttons-container .please-wait-button {
  align-items: center;
  justify-content: center;
  margin: 0;
}

#billing-buttons-container .please-wait-button span,
#shipping-buttons-container .please-wait-button span,
#shipping-method-buttons-container .please-wait-button span,
#payment-method-buttons-container .please-wait-button span,
#payment-info-buttons-container .please-wait-button span,
#confirm-order-buttons-container .please-wait-button span {
  flex-grow: 1;
}

#billing-buttons-container .please-wait-button .please-wait-spinner,
#shipping-buttons-container .please-wait-button .please-wait-spinner,
#shipping-method-buttons-container .please-wait-button .please-wait-spinner,
#payment-method-buttons-container .please-wait-button .please-wait-spinner,
#payment-info-buttons-container .please-wait-button .please-wait-spinner,
#confirm-order-buttons-container .please-wait-button .please-wait-spinner {
  flex-grow: 0;
  margin-right: 10px;
}

/*#co-shipping-form {
  min-height: 220px;
  }*/

#checkout-steps .buttons ::before,
#checkout-steps .buttons ::after {
  font-family: inherit;
}

#eway-payment-info-container {
  max-width: 70%;
  margin: 0 auto;
}

#eway-payment-info-container .sp-flex .inner {
  flex: 0 0 50%;
}

#eway-payment-info-container .container-fluid .row {
  margin-bottom: 15px;
}

#eway-payment-info-container select,
#eway-payment-info-container option,
#eway-payment-info-container input {
  font-size: 15px;
  letter-spacing: 2px;
  text-align: center;
}

.newsletter-subscribe-block .options {
  margin-top: 10px;
}

.inputs {
  font-size: 15px;
}

#instructions {
  width: 100%;
  max-width: 100%;
  min-height: 100px;
}

#char-limit-display {
  font-size: 12px;
}

.page.order-details-page {
  padding-top: 50px;
}

/* Homepage */

.slick-track {
  margin: 0 auto;
}

.sub-category-item > .item-box .picture > a img {
  height: auto !important;
  width: 190% !important;
}

.product-grid > .item-box .picture > a img {
  height: auto !important;
  width: 100% !important;
}

.page-title {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.page-title h1 {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}

.user-testimonials-demo-2 .two-boxes {
  background: #f4f4f4;
  box-shadow: 2px 2px 7px 4px rgba(0, 0, 0, 0.03);
  padding: 10px;
}

.user-testimonials-demo-2 .testimonial .testimonial-name .name {
  background: #f4f4f4;
}

.product-review-box {
  display: block;
}

.button-2 {
  background-color: #95c539;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

.item-box .btn-wrapper button::before {
  /* Fix icons not properly aligning in catalog when product is hovered on*/
  padding-left: 0;
}

/*Home page style migration from 4.0*/

/*todo: clear unnecessary styling*/

.center-1 .nop-jcarousel.manufacturer-grid {
  margin: 0 !important;
}

.home-special-product.markasnew h2:after {
  display: none;
}

.markasnew-wrapper
  .home-special-product.markasnew
  .spc-header
  ul
  li.tab.loaded.active {
  background-color: transparent;
  color: #000;
  font-size: 32px;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

.header-links a {
  text-decoration: none !important;
}

/* Product pages*/

.category-description p,
.manufacturer-description,
.vendor-description,
.manufacturer-description p,
.vendor-description p,
.full-description p,
.topic-html-content p,
.topic-page p,
.post-body p,
.news-body p,
.custom-tab p,
.ui-dialog-content p {
  font-weight: 600;
  color: #000;
}

/*Home page style migration from 4.0*/

/*todo: clear unnecessary styling*/

/*Home page image*/

.button {
  display: inline-block;
  background: #e41327;
  padding: 16px 50px;
  border-radius: 80px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  /* letter-spacing: 2px; */
  margin: 15px 15px 15px 0px !important;
  width: auto;
  text-align: left;
}

.button:hover {
  background: #bb091a;
}

.cck p {
  display: block;
}

.hero .cck h1 {
  text-align: left;
  font-size: 96px;
  color: #fff;
  font-weight: 900;
  text-transform: none;
  max-width: 1000px;
}

.hero .cck h4 {
  font-size: 33px;
  color: #fff;
  font-weight: 500;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: 1;
}

.hero > * {
  z-index: 100 !important;
  position: relative;
}

.hero .in {
  display: table;
  vertical-align: middle;
  max-width: 1354px;
  width: 100%;
  height: 100%;
}

.hero .cck {
  display: table-cell;
  vertical-align: middle;
}

.hero .half {
  margin: 0 auto;
}

.hero .cck p {
  font-size: 28px;
  color: #fff;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0px;
  margin-bottom: 40px;
}

.cck:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.half {
  width: 50%;
  float: left;
  padding: 10px;
}

h1 {
  color: #444;
  font-weight: 400;
}

h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.txtc {
  text-align: center;
  margin: 0 auto;
}

.txtc h2,
.txtc p {
  text-align: center;
  margin: 0 auto;
}

.grey-section {
  background-color: #eaeaea;
  text-align: center;
}

/***HOME PAGE DOMESTIC & CORPORATE ***/

.cck-left {
  background-color: #fff;
  /*background-image: url(/images/domestic-bg.jpg);*/
  background-position: center center;
  background-size: cover;
  position: relative;
  flex: 1;
}

.cck-left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.cck-left img.category-icon {
  border: #44b8af solid 1px;
  border-radius: 100%;
}

.cck-right img.category-icon {
  border: #afd862 solid 1px;
  border-radius: 100%;
}

.cck-right {
  background-color: #f9f9f7;
  /*background-image: url(/images/commercial-bg.jpg);*/
  background-position: center center;
  background-size: cover;
  position: relative;
  flex: 1;
}

.cck-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #f9f9f7;
}

.home-n-business-content .cck-inner {
  position: relative;
  padding: 42px 0;
}

.home-n-business-content .cck-inner h2 {
  font-size: 35px;
  color: #197f8b;
  font-weight: 900;
  text-transform: none;
  padding-bottom: 32px;
}

.home-n-business-content .cck-right .cck-inner h2 {
  font-size: 35px;
  color: #9fc352;
  font-weight: 900;
  text-transform: none;
  padding-bottom: 32px;
}

.home-n-business-content .cck-inner .overview-business {
  font-size: 20px;
  color: #030303;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.home-n-business-content .cck-inner .small-desc {
  font-size: 16px;
  font-weight: 400;
  color: #030303;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.wctnz-home-description {
  padding-bottom: 32px;
}

.home-n-business-content .toilet-options {
  padding: 0;
  margin: 0;
}

.home-n-business-content .toilet-options li {
  display: block;
  width: 100%;
  /*background-image: url(/images/arrow-02.svg);*/
  background-position: center right;
  background-repeat: no-repeat;
  padding-bottom: 16px;
  padding-top: 16px;
  padding-left: 16px;
}

.home-n-business-content .toilet-options li:not(:last-child) {
  border-bottom: 1px solid #ffffff38;
}

.home-n-business-content .toilet-options li a .option-right h3 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.home-n-business-content .toilet-options li a .option-right span {
  font-size: 16px;
  color: #030303;
}

ul.toilet-options li:hover {
  background: rgba(255, 255, 255, 0.2);
  /*background-image: url(/images/arrow-02.svg);*/
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
  transition: 0.4s;
}

ul.toilet-options li a {
  max-width: 450px;
  display: block;
}

.category-icon {
  width: 80px;
  height: 80px;
}

img.category-icon {
  max-width: 80px;
  margin-left: 0;
}

.toilet-options span {
  display: block;
}

/*** SIGNATURE MANUFACTURER ***/

.signature-product-grid .sign-item .sp-description h4 {
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 16px;
}

.signature-product-grid .sign-item {
  border: 1px solid #dcdcdc;
  padding: 24px;
  text-align: center;
}

.signature-product-content .signature-products h2 {
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  font-size: 32px;
  text-align: center;
  padding-bottom: 48px;
}

.signature-product-content .signature-products h2:after,
.markasnew-wrapper
  .home-special-product.markasnew
  .spc-header
  ul
  li.tab.loaded.active:after {
  content: "";
  height: 5px;
  background-color: #95c539;
  display: block;
  width: 75px;
  margin: 0 auto;
  margin-top: 10px;
}

.overlay {
  position: absolute;
  bottom: 0;
  background-color: #47b7b2;
  background-image: url(/images/arrow-02.svg);
  background-repeat: no-repeat;
  background-position: 0px -60px;
  overflow: hidden;
  width: 0;
  height: 100%;
  opacity: 0;
  background-blend-mode: screen;
  transition: 0.3s ease;
  z-index: 0;
}

.overlay-text {
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.one-third:hover {
  cursor: pointer;
}

.cck h2 {
  margin: 0 0 25px;
  text-align: center;
  font-size: 32px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

.cck p {
  display: block;
}

.cck:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.two-thirds {
  float: left;
}

h2 {
  font-size: 1.5em;
  line-height: 1.7em;
}

h2 {
  color: #000;
  font-weight: 600;
}

h3 {
  font-size: 1.2em;
  line-height: 1.5em;
}

h3 {
  color: #000;
  font-weight: 600;
  margin-top: 15px;
}

.sp-image img {
  max-width: 100%;
  height: auto;
}

.sp-description {
  padding: 0px;
}

.sp-description h4 {
  color: #1b4e5d;
  font-weight: 400;
  margin-bottom: 12px;
}

.sp-description p {
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.21px;
}

/*** TESTIMONIALS HOME PAGE ***/

.btn {
  margin: 0 auto;
  text-align: center;
  min-width: 100%;
  max-width: 100%;
  display: table;
  min-width: 250px;
  color: #fff;
}

.testimonial {
  display: table;
  box-shadow: 1px 1px 1px #ccc;
  border-top: 1px solid #eee;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.03);
}

.testimonials {
  background-color: #95c539;
  padding: 60px 0px;
}

.testimonial-wrapper p {
  color: #000;
  font-size: 16px !important;
  line-height: 1.5em;
  letter-spacing: 0.22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.testimonial-wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 909px;
}

.testimonial-wrapper {
  max-width: 1060px;
  padding-top: 20px;
}

.testimonial-wrapper img {
  width: 100px;
  height: 100px;
  background-size: cover;
  border-radius: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.user-testimonials-demo-2 {
  margin: 30px auto;
}

.user-testimonials-demo-2 .testimonial {
  position: relative;
  border-bottom: 1px solid #d3d2d2;
  margin-bottom: 60px;
  margin-top: 20px;
}

.user-testimonials-demo-2 .two-boxes {
  float: left;
  margin-right: 3%;
  width: 46.5%;
  height: 207px;
}

.user-testimonials-demo-2 .testimonial .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0;
}

.user-testimonials-demo-2 .testimonial .thumbnail img {
  width: 94px;
  height: 94px;
  padding: 11px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  position: relative;
  top: 2px;
}

.user-testimonials-demo-2 .testimonial .testimonial-text {
  margin-left: 136px;
  min-height: 130px;
}

.user-testimonials-demo-2 .testimonial .testimonial-text p {
  margin: 6px 0 0;
}

.user-testimonials-demo-2 .testimonial .testimonial-name {
  float: right;
  height: 20px;
  text-align: right;
}

.user-testimonials-demo-2 .testimonial .testimonial-name .name {
  font-family: "Shadows Into Light Two", sans-serif !important;
  background: #fff;
  padding-left: 10px;
  font-size: 1.4em;
  float: right;
  margin: 0;
}

.user-testimonials-demo-2 .testimonials-show-all-button {
  clear: both;
}

.user-testimonials-demo-2 .testimonials-show-all-button a {
  border: 2px solid;
  padding: 10px 40px;
  font-size: 20px;
  width: 100%;
}

.hpc-wrapper {
  text-align: left;
}

.hpc {
  padding: 60px 0px;
  background-size: cover;
}

.hpc > * {
  z-index: 100 !important;
  position: relative;
}

.hpc h4 {
  color: #fff;
  max-width: 750px;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 19px;
  text-transform: none;
}

.hpc p {
  color: #fff;
  max-width: 620px;
  margin-bottom: 25px;
  font-weight: 300;
  font-size: 24px;
  line-height: normal;
}

.hpc .tellus {
  font-size: 18px;
  max-width: 360px;
  margin-top: 25px;
}

.hpc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.html-home-page h3 {
  line-height: 28px;
  margin-bottom: 8px;
}

.full-width {
  padding-top: 62px;
  padding-bottom: 62px;
}

.full-width .in {
  margin: 0 auto;
}

.full-width .in {
  box-sizing: content-box;
}

.fw {
  width: 100%;
  display: table;
}

.full-width .in {
  padding-top: 0;
  padding-bottom: 40px !important;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.no-padding {
  padding: 0px !important;
}

.no-padding .in {
  padding: 0px !important;
}

.full-width .in,
.full-width .cck {
  margin: 0 auto;
}

.full-width .in {
  box-sizing: content-box;
}

/*.jCarouselMainWrapper .slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  height: auto;
  width: 40px;
  margin: auto;
  color: #576750 !important;
  font-size: 40px !important;
  }*/

.center-1 .jCarouselMainWrapper .slick-next,
.center-1 .jCarouselMainWrapper .slick-prev {
  background: none !important;
  border: none !important;
  background-color: inherit;
}

/*.jCarouselMainWrapper .slick-prev:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0 !important;
  left: 0px;
  height: auto;
  width: 40px;
  margin: auto;
  color: #576750 !important;
  font-size: 40px !important;
  }*/

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #95c539 !important;
}

.nop-jcarousel.manufacturer-grid .item-box .picture img,
.nop-jcarousel.vendor-grid .item-box .picture img {
  opacity: 1 !important;
}

/*.jCarouselMainWrapper .slick-prev {
  left: 20px !important;
}
.jCarouselMainWrapper .slick-next {
  right: 20px !important;
  }*/

.overview .prices {
  margin: 0;
  padding: 14px 0;
}

.compare-products .add-to-compare-list-button:before {
  display: none;
}

.dropdown categories fullWidth boxes-5 {
  text-align: left;
}

.overview .add-to-wishlist {
  margin-left: 0px;
  width: 100%;
}

.overview .add-to-wishlist button {
  font-size: 15px;
  width: 100%;
}

.compare-products .add-to-compare-list-button {
  margin-bottom: 5px;
  background-color: #f1f1f1;
  padding: 0 15px;
  font-size: 15px;
  width: 100%;
  float: left;
  height: 45px;
}

.compare-products .add-to-compare-list-button:hover {
  background-color: #eaeaea;
  color: #8c8c8c !important;
}

.compare-products .add-to-compare-list-button:before {
  content: "\59";
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
  font-size: 20px;
  color: #8c8c8c;
  font-weight: normal;
  text-transform: none;
  transition: all 0.2s ease !important;
  z-index: 1;
}

.attributes-wrapper > div {
  max-width: inherit;
}

.width-twenty {
  width: 20% !important;
  text-align: left !important;
}

.overview .add-to-wishlist button {
  font-size: 15px;
  width: 100%;
}

.compare-products .add-to-compare-list-button {
  margin-bottom: 8px;
  background-color: #dedede;
  padding: 12px 20px 12px 20px;
  font-size: 14px;
  width: 100%;
  float: left;
  height: 48px;
}

.compare-products .add-to-compare-list-button:hover {
  background-color: #bcf058;
  color: #fff !important;
}

.fns-rfq-block .discount {
  border-radius: 3px;
  margin-top: 0;
}

.compare-products .add-to-compare-list-button:before {
  content: "\59";
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  text-transform: none;
  transition: all 0.2s ease !important;
  z-index: 1;
}

.attributes-wrapper > div {
  max-width: inherit;
}

.item-box .product-title,
.item-box .title {
  max-height: 55px;
  height: 55px;
}

.full-width.hero {
  background-repeat: no-repeat;
  background-size: cover;
}

.overview .prices > div,
.variant-overview .prices > div {
  padding: 0;
}

.tax-shipping-info a {
  color: #000000 !important;
  display: inline-block;
  margin-top: 5px;
}

.tax-shipping-info a:hover {
  color: #576750;
  text-decoration: underline;
}

/*.product-review-box .rating {
  float: right;
  }*/

.product-name h1 {
  margin-top: 0px;
}

.attributes dt,
.attributes .attribute-label,
.giftcard label {
  white-space: normal;
}

.attribute-description {
  font-weight: 400;
  color: #000;
}

.types-available-button {
  max-width: 100%;
  margin-bottom: 5px;
  font-size: 15px;
}

/*div#payment-info-buttons-container {
  float: right;
  text-align: right;
  }*/

#newsletter-subscribe-block .newsletter-email > * {
  margin-top: 10px;
}

.newsletter-email .options label {
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}

.product-prices-box-content {
  margin-bottom: 16px;
}

.ui-tabs .ui-state-active.ui-tabs-active a {
  border-color: transparent !important;
  background-color: #98c63f;
  color: #fff !important;
}

.full-description h2 {
  /*font-size: 14px;*/
  font-weight: 600;
  color: #000;
  text-align: left;
}

.productTabs-body .full-description h2 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-align: left;
}

.half {
  width: 50%;
  float: left;
  padding: 10px;
}

/*** _PRODUCTBOX ***/

.ajax-cart-button-wrapper .product-box-add-to-cart-button {
  width: 64%;
}

.product-grid .ajax-cart-button-wrapper .add-to-cart-qty-wrapper {
  width: 36%;
}

.productbox-buttons .buttons {
  min-height: 50px;
}

/*** MAIN FOOTER ***/

.top-footer {
  background: #95c539;
  padding: 16px 0;
}

.top-footer .footer-row {
  align-items: flex-start;
}

.top-footer .footer-row .footer-block:first-child span {
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding-bottom: 16px;
}

.top-footer .footer-row .footer-block:first-child img {
  height: 55px;
  width: 200px;
}

.top-footer .footer-row .footer-block:nth-child(2) span.talktous {
  font-size: 14px;
  display: block;
  margin-bottom: 14px;
}

.top-footer .footer-row .footer-block:nth-child(2) span {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.top-footer .footer-row .footer-block:nth-child(2) p {
  font-size: 14px;
  font-weight: 600;
  padding: 0 14%;
  margin-bottom: 16px;
}

.top-footer .footer-row .footer-block:last-child span {
  display: block;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.main-footer {
  background: #576750;
  width: 100%;
  padding: 32px 0;
}

.main-footer .footer-item .title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.main-footer .footer-item ul li {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
}

.html-checkout-page .main-footer .footer-item ul li a {
  color: #fff;
  text-decoration: none;
}

.html-checkout-page .main-footer .footer-item ul li:hover a {
  text-decoration: none;
  color: #47b7b2;
}

.socials-and-payments.footer-item .title {
  text-align: center;
}

.follow-us.footer-item .title {
  text-align: center;
}

.follow > .newsletter-subscribe-button,
.follow > .newsletter-subscribe-text {
  height: 32px;
  max-width: 380px;
}
.follow > p {
  font-size: 12px;
}


.footer-block a:hover {
  color: #cc8a97;
}

.main-footer .newsletter {
  text-align: center;
}

.main-footer .social-sharing {
  text-align: center;
}

.footer-lower {
  background-color: #fff;
  padding: 25px 20px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.footer-disclaimer,
.footer-tax-shipping {
  display: inline-block;
}

.footer-block a:hover {
  color: #47b7b2;
}

.required-label label {
  margin-bottom: 10px !important;
  margin-right: 0px !important;
}

.newsletter .title strong {
  font-weight: normal;
}

.newsletter-email {
  display: block;
  overflow: hidden;
  max-width: 100%;
}

.newsletter-email .newsletter-subscribe-text {
  width: calc(100% - 47px);
  height: 47px;
  border-radius: 3px 0 0 3px;
  border-right: 0;
  padding: 0 16px;
}

.newsletter-email .newsletter-subscribe-text:focus {
  border-color: #e7e7e7;
}

.newsletter-email .newsletter-subscribe-text::-webkit-input-placeholder {
  color: #959595;
}

.newsletter-email .newsletter-subscribe-text::-moz-placeholder {
  color: #959595;
}

.newsletter-email .newsletter-subscribe-text:-ms-input-placeholder {
  color: #959595;
}

.newsletter-email .newsletter-subscribe-text:-moz-placeholder {
  color: #959595;
}

.newsletter-email .newsletter-subscribe-button {
  width: calc(100% - 47px);
  margin: auto;
  border: none;
  background: #cc8a97 url(/Themes/Emporium/Content/img/subscribe-button.png)
    center center no-repeat;
  background-position-x: 30%;
  padding-left: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.newsletter-email .newsletter-subscribe-button:hover {
  background-color: #e8af00;
}

.newsletter-validation,
.newsletter-result {
  margin: 10px 0;
  line-height: 20px;
  font-size: 13px;
  color: #fff;
}

.newsletter-validation .please-wait {
  display: none !important;
}

.footer-middle .social-icons,
.footer-middle .pay-options {
  margin-top: 40px;
}

.footer-social-grid img {
    transition: scale 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-social-grid img:hover {
    scale: 1.25;   
    filter: brightness(0%) invert(69%) sepia(58%) saturate(497%) hue-rotate(36deg) brightness(94%) contrast(87%);
}

.pay-options img {
  margin: 0 2px;
}

.social-sharing li {
  display: inline-block;
  margin: 0 3px;
}

.social-sharing a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
}

.social-sharing a:before {
  display: block;
  font-size: 22px;
  color: #fff;
  transition: color 0.2s ease;
}

.social-sharing a:hover:before {
  color: #fff !important;
}

.social-sharing .facebook:before {
  content: "n";
}

.social-sharing .twitter:before {
  content: "o";
}

.social-sharing .youtube:before {
  content: "r";
}

.social-sharing .rss:before {
  content: "s";
}

.field-validation-valid,
.footer-block a:hover,
.social-sharing a:hover:before,
.footer-block .title:before,
.footer-block .title:after,
.manufacturer-item:hover .title a {
  color: #97c300;
}

.button-1,
.newsletter-email .newsletter-subscribe-button {
  background-color: #eebe00;
}

.button-1:hover,
.newsletter-email .newsletter-subscribe-button:hover {
  background-color: #c59d00;
}

.footer-powered-by a,
.footer-designed-by a {
  color: #cc8a97;
}

.footer-powered-by a:hover {
  text-decoration: underline;
}

.footer-lower > div > div.footer-store-theme {
  display: block;
  margin: 15px 0 0;
}

.footer-powered-by a,
.footer-designed-by a {
  color: #47b7b2;
}

.opc {
  margin: 20px auto;
}

/*** QUICK VIEW ***/

.quickViewWindow .add-to-cart-qty-wrapper {
  margin-right: 0;
  margin-bottom: 16px;
}

.add-to-cart-qty-wrapper span.plus {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: auto;
  right: 29px;
  /* opacity: 0; */
  color: #95c639;
  font-size: 18px;
  border-left: 1px solid #9b9b9b;
  width: 30px;
  height: 100% !important;
  line-height: 43px !important;
  text-align: center;
}

.add-to-cart-qty-wrapper span.plus:hover,
.add-to-cart-qty-wrapper span.minus:hover {
  background: transparent;
}

.overview .qty-input,
.variant-overview .qty-input {
  padding-right: 60px;
  padding-left: 3px;
  color: #000;
  font-weight: bold;
  font-size: 20px;
}

.add-to-cart-qty-wrapper .qty-input {
  width: 100%;
  height: 40px;
}

.add-to-cart-qty-wrapper span.minus {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0px, -50%);
  /* opacity: 0; */
  color: red;
  width: 30px;
  font-size: 18px;
  border-left: 1px solid #9b9b9b;
  height: 100% !important;
  line-height: 43px !important;
}

/*.item-box input[type="button"] {
    background-image: url(../img/cart-ico.png);
 
    background-repeat: no-repeat;
    background-position: 8px center;
    }*/

/*** PRODUCT DETAILS PAGE   ***/

.html-product-details-page .master-column-wrapper {
  padding-top: 0;
}

.next-prev-wrapper {
  width: 100%;
}

.prev-next-holder {
  box-shadow: none;
}

.next-prev-wrapper {
  width: 100%;
  background-color: #ececec;
  padding: 16px 15px;
}

.previous-product a,
.next-product a {
  background-color: transparent;
}

.previous-product a,
.next-product a {
  padding: 10px 5px;
  background-color: transparent !important;
}

.next-prev-wrapper .breadcrumb li > * {
  height: auto;
  padding: 0;
}

.next-prev-wrapper .previous-product a,
.next-prev-wrapper .next-product a {
  height: auto;
  padding: 0;
  line-height: normal;
}

.next-prev-wrapper .previous-product a:before {
  position: static;
}
.next-product a:before 
{display: none !important;}
.next-prev-wrapper .next-prev-container {
  display: block;
  justify-content: inherit;
  max-width: 1354px;
  margin: 0 auto;
}

.next-prev-wrapper .next-prev-container .previous-product {
  order: 1;
}

.next-prev-wrapper .breadcrumb {
  padding: 0;
  order: 2;
}

.next-prev-wrapper .next-prev-container .next-product {
  order: 3;
}

.next-prev-wrapper .next-product a {
  padding-right: 0;
}

.next-prev-wrapper .next-product a:after {
  content: "\57";
  font-size: 10px;
}

.acc {
  margin: 0 auto;
  max-width: 100%;
}

.acc__card {
  margin: 0;
  position: relative;
}

.acc__title {
  background: #fff;
  box-shadow: 0 0 0px #00000059;
  color: #212121;
  cursor: pointer;
  display: block;
  padding: 1em 0em;
  position: relative;
  text-align: left;
  font-weight: 600;
  border-bottom: #ccc solid 1px;
}

.acc__title::after {
  width: 12px;
  height: 12px;
  border-right: 1px solid #95c539;
  border-bottom: 1px solid #95c539;
  position: absolute;
  right: 10px;
  content: " ";
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.acc__title.active::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.acc__title.active {
  border: none;
}

.acc__panel {
  background: #f1f1f1;
  color: #212121;
  display: none;
  margin: 0;
  padding: 10px 15px;
  text-align: left;
  border: 0px solid #c7c7c7;
  border-top: 0;
  border-bottom: 0;
}

.overview .reviews-and-compare {
  width: auto;
  text-align: left;
  float: left;
}

.product-reviews-overview {
  margin-bottom: 0px;
  text-align: left;
  float: left;
  margin-right: 10px;
}

.product-price-wrap {
  padding: 0 0px;
}

.html-product-details-page .jCarouselMainWrapper {
  margin-bottom: 45px;
}

/*.related-products-grid .item-box {
    margin-left: -1px;
    }*/

/*---*/

.bg-color {
  background-color: #333;
}

.signup-step-container {
  padding: 150px 0px;
  padding-bottom: 60px;
}

.wizard {
  width: 80%;
  margin: 0 auto;
}

.wizard .nav-tabs {
  position: relative;
  margin-bottom: 0;
  border-bottom-color: transparent;
}

.wizard > div.wizard-inner {
  position: relative;
  text-align: center;
}

.connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 24px;
  z-index: 1;
}

.wizard .nav-tabs > li.active > a,
.wizard .nav-tabs > li.active > a:hover,
.wizard .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}

span.round-tab {
  width: 48px;
  height: 48px;
  line-height: 45px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  position: absolute;
  left: 50%;
  text-align: center;
  font-size: 22px;
  color: #0e214b;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 22px;
  color: #0e214b;
  font-weight: 600;
  border: 1px solid #ddd;
}

span.round-tab i {
  color: #555555;
}

.wizard li.active span.round-tab {
  background: #9cc744;
  color: #000;
  border-color: #679012;
}

.wizard li.active span.round-tab i {
  color: #5bc0de;
}

.wizard .nav-tabs > li.active > a i {
  color: #9cc744;
}

.wizard .nav-tabs > li {
  width: 14.28%;
}

.wizard li:after {
  content: " ";
  position: absolute;
  left: 46%;
  opacity: 0;
  margin: 0 auto;
  bottom: 0px;
  border: 5px solid transparent;
  border-bottom-color: red;
  transition: 0.1s ease-in-out;
}

.wizard .nav-tabs > li a {
  /*  width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
      top: 0;
      */
  position: relative;
  text-decoration: none;
}

/*.wizard .nav-tabs > li a i{
	position: absolute;
    top: -15px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #000;
    }*/

.wizard .nav-tabs > li a:hover {
  background: transparent;
}

.wizard .nav-tabs > li a i {
  margin-top: 55px;
  display: inline-flex;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  font-style: normal;
}

.wizard .tab-pane {
  position: relative;
  padding-top: 20px;
}

.wizard h3 {
  margin-top: 0;
}

.prev-step,
.next-step {
  font-size: 13px;
  padding: 8px 24px;
  border: none;
  border-radius: 4px;
  margin-top: 30px;
}

.next-step {
  background-color: #0db02b;
}

.skip-btn {
  background-color: #cec12d;
}

.step-head {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

.term-check {
  font-size: 14px;
  font-weight: 400;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 40px;
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 40px;
  margin: 0;
  opacity: 0;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 40px;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 2;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 38px;
  padding: 0.375rem 0.75rem;
  line-height: 2;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.footer-link {
  margin-top: 30px;
}

.all-info-container {
}

.list-content {
  margin-bottom: 10px;
}

.list-content a {
  padding: 10px 15px;
  width: 100%;
  display: inline-block;
  background-color: #f5f5f5;
  position: relative;
  color: #565656;
  font-weight: 400;
  border-radius: 4px;
}

.list-content a[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.list-content a i {
  text-align: right;
  position: absolute;
  top: 15px;
  right: 10px;
  transition: 0.5s;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #fdfdfd;
}

.list-box {
  padding: 10px;
}

.signup-logo-header .logo_area {
  width: 200px;
}

.signup-logo-header .nav > li {
  padding: 0;
}

.signup-logo-header .header-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-inline li {
  display: inline-block;
}

.pull-right {
  float: right;
}

/*-----------custom-checkbox-----------*/

/*----------Custom-Checkbox---------*/

input[type="checkbox"] {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
  position: absolute;
  content: "";
  display: inline-block;
}

input[type="checkbox"]::before {
  height: 16px;
  width: 16px;
  border: 1px solid #999;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border-radius: 2px;
}

input[type="checkbox"]::after {
  height: 5px;
  width: 9px;
  left: 4px;
  top: 4px;
}

input[type="checkbox"]:checked::after {
  content: "";
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

input[type="checkbox"]:checked::before {
  background-color: #18ba60;
  border-color: #18ba60;
}

.contact-page .contact-wrapper,
.contact-map {
  width: 100%;
}

.html-category-page .master-wrapper-content,
.html-product-details-page .master-wrapper-content {
  padding: 0;
}

.sub-category-grid .item-grid .sub-category-item .title {
  text-align: center;
}

.html-product-details-page .master-column-wrapper .product-details-page {
  padding-top: 0 !important;
}

.checkout-page .page-title {
  border: 0;
  text-align: center;
}

.checkout-page .page-title h1 {
  text-align: center;
}

.checkout-page .select-billing-address label {
  display: block;
  width: 100%;
}

.checkout-page .select-billing-address select,
.checkout-page .shipping-addresses select {
  width: 100%;
  border: 1px solid #bfbfbf;
  height: 48px;
}

.checkout-page .select-billing-address,
.checkout-page .select-shipping-address {
  border: 1px solid #d4d4d4;
  padding: 24px;
}

.checkout-page .new-billing-address,
.checkout-page .new-shipping-address {
  border: 1px solid #d4d4d4;
  /*border-top: 0;*/
  padding: 24px;
}

.shipping-instructions {
  padding: 24px;
  border: 1px solid #d8d8d8;
}

.shipping-instructions h3 {
  font-size: 18px;
  font-weight: 600;
}

p.back-link a {
  background: #f44336;
  color: #fff;
  height: 45px;
  padding: 0 25px;
  display: inline-block;
  line-height: 42px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 3px;
}

p.back-link a small {
  font-size: 20px;
}

/*#co-payment-method-form {
    border: 1px solid #d63e3ea8;
    background-color: #fdeaea;
    padding: 15px;
    text-align: center;
    color: #d61616;
    font-weight: 600;
    font-size: 16px;
    }*/

.new-billing-address .inputs select {
  height: 48px;
  border: 1px solid #969696;
}

.inputs.custom-attributes {
  margin: 0;
  margin-bottom: 10px;
}

#billing-buttons-container {
  margin-bottom: 32px;
  margin-top: 32px;
}

.shipping-method .method-description,
.payment-method .payment-description {
  color: #000;
}

#checkout-step-confirm-order .checkout-data {
  width: 100%;
}

.billing-info {
  text-align: left;
}

.billing-info-wrap {
  padding: 0 !important;
  margin: 0 !important;
  width: 48%;
}

.billing-info .title {
  padding: 16px 24px;
  border-bottom: 1px solid #ddd;
  text-align: left !important;
}

.billing-info .info-list {
  padding: 24px;
}

.next-btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 16px 0;
}

#CardCode {
  width: 60px !important;
}

.shipping-info-wrap {
  padding: 0 !important;
  width: 48%;
}

.shipping-info-wrap .shipping-info .title {
  border-bottom: 1px solid #ddd;
  padding: 16px 24px;
  text-align: left;
}

.payment-method-info {
  text-align: left;
  padding: 24px;
}

.payment-method-info .title {
  text-align: left !important;
}

.shipping-method-info {
  text-align: left;
  padding: 24px;
}

.shipping-method-info .title {
  text-align: left !important;
}

.shipping-info ul.info-list {
  text-align: left;
  padding: 24px;
}

#checkout-step-confirm-order .buttons.next-btn-wrapper {
  width: 100%;
}

#checkout-step-confirm-order .terms-of-service {
  margin: 10px 0 0 !important;
  clear: left;
  position: relative;
}

.product-list .item-box .prices {
  height: auto;
}

.variant-overview .attributes-wrapper .attributes .acc {
  margin: 0;
}

.product-list .item-box .description {
  border-top: #000 solid 1px;
  padding-top: 20px;
}

.testimonial-content {
  padding: 20px 20px;
}

.testimonial-content img {
  float: left;
  margin-right: 25px;
  margin-bottom: 20px;
  width: 270px;
  max-width: 300px;
}

.home-cat-list .container {
  max-width: 1310px;
  margin: 40px auto;
}

.home-cat-list .container .slick-initialized .slick-slide {
  margin: 10px;
}

/* Slider */

.home-cat-list .container .slick-loading .slick-list {
  background: #fff url("ajax-loader.gif") center center no-repeat;
}

/* Arrows */

.home-cat-list .container .slick-prev,
.home-cat-list .container .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.home-cat-list .container .slick-prev:hover,
.home-cat-list .container .slick-prev:focus,
.home-cat-list .container .slick-next:hover,
.home-cat-list .container .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.home-cat-list .container .slick-prev:hover:before,
.home-cat-list .container .slick-prev:focus:before,
.home-cat-list .container .slick-next:hover:before,
.home-cat-list .container .slick-next:focus:before {
  opacity: 1;
}

.home-cat-list .container .slick-prev.slick-disabled:before,
.home-cat-list .container .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.home-cat-list .container .slick-prev:before,
.home-cat-list .container .slick-next:before {
  font-family: "slick";
  font-size: 28px;
  line-height: 1;
  opacity: 1;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-cat-list .container .slick-prev {
  left: -25px;
}

.home-cat-list .container [dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.home-cat-list .container .slick-prev:before {
  content: "←";
}

.home-cat-list .container [dir="rtl"] .slick-prev:before {
  content: "→";
}

.home-cat-list .container .slick-next {
  right: -25px;
}

.home-cat-list .container [dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.home-cat-list .container .slick-next:before {
  content: "→";
}

.home-cat-list .container [dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */

.home-cat-list .container .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.home-cat-list .container .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.home-cat-list .container .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.home-cat-list .container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.home-cat-list .container .slick-dots li button:hover,
.home-cat-list .container .slick-dots li button:focus {
  outline: none;
}

.home-cat-list .container .slick-dots li button:hover:before,
.home-cat-list .container .slick-dots li button:focus:before {
  opacity: 1;
}

.home-cat-list .container .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-cat-list .container .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.priceRangeMaxPanel {
  color: #576750;
  font-weight: 700;
}

span.priceRangeMinPanel {
  color: #576750;
  font-weight: 700;
}

.account-page .section > .title,
.reward-points-overview,
.forum-subscriptions-page .description {
  text-align: center;
}

.shopping-cart-page .cart-collaterals .button-2 {
  width: 100%;
  overflow: visible;
  text-overflow: unset !important;
}

@media (max-width: 767px) {
  .shopping-cart-page .product-grid {
    padding: 0 15px;
  }
  .variant-overview .compare-products .add-to-compare-list-button {
    margin-bottom: 16px;
  }
  .product-details-page
    .add-to-cart-qty-wrapper
    + .ajax-cart-button-wrapper
    input {
    height: 45px !important;
  }
  .category-page .item-box .prices {
    height: 60px;
  }
  .category-page .item-box .btn-wrapper {
    margin-top: 0 !important;
  }
  .breadcrumb ul {
    line-height: 22px !important;
  }
  .registration-page .inputs .option-list label {
    display: flex;
    align-items: center;
    margin-top: 3px !important;
  }
  .login-page .customer-blocks {
    margin: 0 0 0;
  }
  .tax-shipping-info {
    text-align: center !important;
  }
  .checkout-page .edit-address {
    padding-top: 0 !important;
  }
  .sign-content h3 {
    font-size: 40px;
  }
  .html-product-details-page .add-to-cart-qty-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
  .overview .add-to-cart-panel {
    width: 100%;
  }
  .overview .compare-products {
    padding-left: 0px;
  }
  /*.wizard .nav-tabs > li a i{
		display: none;
   }*/
  .signup-logo-header .navbar-toggle {
    margin: 0;
    margin-top: 8px;
  }
  .signup-logo-header .logo_area {
    margin-top: 0;
  }
  .signup-logo-header .header-flex {
    display: block;
  }
  .nop-jcarousel {
    padding: 0 30px;
  }
}

@media all and (min-width: 360px) {
  .html-home-page .nop-jcarousel .carousel-title {
    padding: 0;
    display: none !important;
  }
  .html-home-page .nop-jcarousel {
    margin: 0;
  }
  .html-home-page .jCarouselMainWrapper .slick-prev,
  .html-home-page .jCarouselMainWrapper .slick-next {
    top: 40%;
    transform: translateY(-40%);
    border: none;
  }
  .html-home-page .manufacturer-grid .title {
    display: none !important;
  }
  .html-home-page .manufacturer-grid .picture {
    border: none;
  }
}

@media all and (min-width: 481px) {
  .cart-collaterals > div > .list {
    padding: 20px !important;
  }
  .home-n-business-content .toilet-options li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
  .home-n-business-content .toilet-options li a .option-left {
    padding-right: 16px;
  }
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  /* .center-2 .product-grid .item-grid, .sub-category-grid .item-grid, .related-products-grid .item-grid, .shopping-cart-page .product-grid .item-grid {
        width: 100%;
        position: relative;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        }*/
  .html-category-page .breadcrumb ul {
    padding: 0 2vw;
  }
}

@media all and (min-width: 769px) {
  #eway-payment-info-container {
    max-width: 50%;
  }
  .html-home-page .master-wrapper-content,
  .html-account-page .master-wrapper-content {
    padding: 0px 0 !important;
  }
  .sp-flex.responsive {
    display: none !important;
  }
  .footer-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .top-footer .footer-row .footer-block:first-child {
    width: 20%;
    text-align: center;
  }
  .top-footer .footer-row .footer-block:nth-child(2) {
    width: 60%;
    text-align: center;
  }
  .top-footer .footer-row .footer-block:last-child {
    width: 20%;
    text-align: center;
  }
  .home-n-business-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1354px;
    margin: 0 auto;
  }
  .signature-product-content .signature-products {
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
  }
  .signature-product-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  /*.center-2 .product-grid .item-grid, .sub-category-grid .item-grid, .related-products-grid .item-grid {
        width: 100%;
        position: relative;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        }*/
  .category-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .shopping-cart-page .product-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .contact-page .page-body .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .featured-product-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .order-review-data {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 42px;
    grid-row-gap: 42px;
  }
  .checkout-data {
    width: 800px;
    margin: 0 auto;
  }
  .wizard > div.wizard-inner {
    margin-bottom: 50px;
  }
  .next-btn-wrapper {
    width: 800px;
  }
}

@media all and (min-width: 1025px) {
  .inputs-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .variant-overview .group-btn .add-to-cart-qty-wrapper {
    width: 17%;
  }
  .login-page .inputs.reversed span {
    font-size: 15px !important;
  }
  .login-page input[type="checkbox"] ~ label:before {
    top: -2px;
  }
  .page.login-page {
    margin-bottom: 20px;
  }
  .p-10 {
    padding: 0 11% !important;
  }
  .inputs-group .inputs {
    width: 48%;
    margin: 0;
  }
  .master-column-wrapper {
    padding-top: 35px;
  }
  .html-manufacturer-page .master-column-wrapper,
  .html-topic-page .master-column-wrapper,
  .html-login-page .master-column-wrapper,
  .html-contact-page .master-column-wrapper {
    max-width: 1354px;
    margin: 0 auto;
    width: 88%;
  }
  .home-page-body .master-column-wrapper {
    padding-top: 0;
  }
  .page.topic-page,
  .page.contact-page {
    padding-bottom: 50px;
  }
  .topic-page .page-body {
    line-height: normal;
  }
  .header-menu-parent {
    background-color: transparent;
    width: 80%;
  }
  .desktop {
    display: block;
  }
  .spc-products {
    width: 0 auto;
    width: 100%;
  }
  /* Header */
  .admin-header-links {
    background-color: #fff;
    text-align: center;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
  }
  .header-logo a img {
    max-height: 100px;
  }
  .header-upper {
    display: flex;
    align-items: start;
    justify-content: space-between;
  }
  .header-menu {
    margin: 0;
    padding: 0 6vw;
    color: #fff;
    background-color: transparent;
    float: left;
    width: 100%;
  }
  .header-menu a {
    color: #fff;
  }
  .header-menu a:hover {
    text-decoration: none;
  }
  .header-menu > ul {
    background-color: transparent;
    margin: 0 auto;
  }
  .header-menu > ul > li > a,
  .header-menu > ul > li > span {
    display: block;
    padding: 0 10px;
    height: auto;
    /* line-height: 45px;*/
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    color: #586752;
    font-family: "Roboto", sans-serif;
    letter-spacing: normal;
    border-top: 2px transparent solid;
    font-weight: 700;
  }
  .header-menu > ul > li > a:hover,
  .header-menu > ul > li > span:hover {
    color: #95c539;
    background: none;
  }
  .header-menu .category-navigation-list-wrapper {
    height: auto;
    border-right: none;
    float: left;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }
  .home-page .topic-block-title h2 {
    font-size: 35px;
    font-weight: 400;
  }
  .category-navigation-title {
    color: #586752;
    font-size: 16px;
    font-weight: 700;
    line-height: 55px;
  }
  .category-navigation-title ::before {
    color: #000;
    font-size: 16px;
  }
  .category-navigation-list-wrapper {
    color: #000;
    float: right;
  }
  .category-navigation-list-wrapper:hover {
    /*background-color: #95c539;*/
    /* border-bottom: 1px solid #95c539;*/
  }
  .cck-inner .top-part {
    height: 150px;
  }
  .spc.spc-products .tab {
    background-color: transparent;
    color: #000;
    padding: 10px 0px;
    border-radius: 0px;
    font-size: 28px;
    font-weight: 300;
    border-bottom: transparent solid 1px;
  }
  .spc-products .spc-header li {
    letter-spacing: 0px !important;
    text-transform: none;
    margin-left: 30px !important;
  }
  .spc.spc-products .tab.active,
  .spc.spc-products .tab.active:hover {
    background-color: transparent;
    color: #000;
    border-bottom: #95c539 solid 1px;
  }
  /* Shopping Cart */
  #shopping-cart-form .shipping-collaterals + .title:hover {
    background-color: #95c539;
    color: #fff;
  }
  #shopping-cart-form .deals + .title:hover {
    background-color: #95c539;
    color: #fff;
  }
  #shopping-cart-form .option-name,
  #shopping-cart-form .option-description {
    display: block;
  }
  /* Login Page */
  .login-page .customer-blocks {
    max-width: 75%;
    margin: 50px auto;
  }
  .login-page .topic-block {
    width: 90%;
  }
  .login-page .topic-block table {
    text-align: left;
  }
  .center-1 .jCarouselMainWrapper .slick-next,
  .center-1 .jCarouselMainWrapper .slick-prev {
    background: none;
  }
  .section-four {
    padding-bottom: 30px !important;
    height: 800px;
  }
  /*** CONTAINER SECTION ***/
  .master-wrapper-content {
    padding: 0px 3vw;
  }
  .main-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .footer-block.Information.footer-item {
    padding-right: 60px;
  }
  .home-n-business-content .cck-left {
    padding-left: 3vw;
    padding-right: 0;
  }
  .home-n-business-content .cck-right {
    padding-right: 3vw;
    padding-left: 0;
  }
  .nop-jcarousel.manufacturer-grid,
  .hpc-wrapper {
    padding: 32px 3vw;
  }
  .html-category-page .breadcrumb ul {
    padding: 0 3vw;
  }
  .bestseller-featured-content .slick-track {
    width: 100% !important;
  }
  .bestseller-featured-content .slick-track .slick-slide {
    width: 25% !important;
  }
  .signature-product-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }
  .ajax-cart-button-wrapper .product-box-add-to-cart-button {
    width: 60%;
  }
  .search-box-select {
    top: 85px;
  }
  .product-grid .buttons .ajax-cart-button-wrapper {
    display: inline-block;
  }
  .product-grid .ajax-cart-button-wrapper .add-to-cart-qty-wrapper {
    width: 100%;
    display: inline-block;
  }
  .product-list .item-box input,
  .product-list .item-box .btn-wrapper .button-2 {
    width: 45px;
    height: 45px;
  }
  .contact-left {
    text-align: left;
    flex: 1;
  }
  .contact-right {
    flex: 1;
    padding: 0 30px;
  }
  .home-n-business-content .cck-inner {
    padding: 42px 20px;
  }
  .markasnew-wrapper,
  .best-feature-section .bestseller-featured-content {
    padding: 0 3vw;
  }
  .category-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .product-selectors {
    margin: 0 0 20px;
    text-align: center;
    font-size: 0;
    border-top: 0;
    padding-top: 16px;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}

@media all and (min-width: 1281px) {
  .master-wrapper-content {
    padding: 0px 6vw;
  }
  .html-blog-page .master-wrapper-content {
    padding: 0px 0vw;
    max-width: 1354px;
    margin: 0 auto;
    width: 88%;
  }
  .html-category-page .breadcrumb ul,
  .html-product-details-page .breadcrumb ul {
    padding: 0 0vw;
  }
  .html-account-page .master-wrapper-content,
  .html-category-page .master-column-wrapper,
  .html-product-details-page .master-column-wrapper .product-details-page {
    padding: 24px 0vw;
    width: 88%;
    margin: 0 auto;
    max-width: 1354px;
  }
  .page.checkout-page {
    width: 88%;
    margin: 0 auto;
    max-width: 1354px;
  }
  .overview-business {
    white-space: nowrap;
  }
  .nop-jcarousel.manufacturer-grid,
  .hpc-wrapper {
    padding: 140px 0px !important;
  }
  .hpc-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .bestseller-featured-content .slick-track {
    width: 100% !important;
  }
  .bestseller-featured-content .slick-track .slick-slide {
    width: 25% !important;
  }
  .bestseller-featured-content .spc-products .slick-slide {
    padding-right: 30px;
  }
  .bestseller-featured-content .item-box .details-rtl .buttons {
    height: 48px;
  }
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
  .topic-page .page-body {
    max-width: 100%;
  }
  .home-n-business-content .cck-left {
    padding-left: 0vw;
    padding-right: 42px;
  }
  .home-n-business-content .cck-right {
    padding-right: 0vw;
    padding-left: 42px;
  }
  .newsletter-email {
    margin: 0;
  }
  .best-feature-section .bestseller-featured-content,
  .footer-container,
  .markasnew-wrapper {
    padding: 0px 6vw;
  }
  .signature-product-content .signature-products {
    width: 100%;
    max-width: 1672px;
    margin: 0 auto;
    padding: 0 10%;
  }
  .signature-product-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }
  .sale-of-the-day-offer .item-gallery .ribbon-position.top-left {
    top: 5px;
    left: 106px;
  }
  .shopping-cart-page .product-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  .featured-product-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  /*.productbox-buttons {
        display: inline-block;
        align-items: center;
        justify-content: center;
        }*/
  .buttons .ajax-cart-button-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .product-grid .ajax-cart-button-wrapper .add-to-cart-qty-wrapper,
  .product-grid .item-box .productQuantityDropdown {
    margin-right: 10px !important;
  }
  .productbox-buttons .buttons {
    order: 2;
  }
  .product-list .productbox-buttons {
    display: block;
  }
  .home-n-business-content .cck-inner {
    position: relative;
    padding: 42px 0;
  }
  .wctnz-home-description {
    min-height: 120px;
  }
  .item-box .details {
    padding: 7px;
  }
  .wctnz-home-description {
    min-height: 120px;
  }
  .overview .add-to-cart-qty-wrapper + .add-to-cart-button {
    margin-bottom: 14px;
  }
  .owl-theme .owl-nav button.owl-prev {
    left: -48px;
    position: absolute;
    top: 50%;
    margin: 0;
    height: 48px;
    display: block;
    width: 48px;
    padding: 0;
    line-height: 48px;
  }
  .owl-theme .owl-nav button.owl-next {
    right: -48px;
    position: absolute;
    top: 50%;
    font-size: 50px;
    background-color: transparent;
    margin: 0;
    height: 48px;
    display: block;
    width: 48px;
    padding: 0;
    line-height: 48px;
  }
  .owl-theme .owl-nav button.owl-prev span,
  .owl-theme .owl-nav button.owl-next span {
    font-size: 0;
  }
  .owl-theme .owl-nav button.owl-next:before {
    font-family: "emporium-icons";
    display: block;
    color: #000;
    font-size: 28px;
    transition: all 0.2s ease;
    text-transform: none;
    content: "\6a";
    width: 48px;
    line-height: 48px;
  }
  .owl-theme .owl-nav button.owl-prev:before {
    font-family: "emporium-icons";
    display: block;
    color: #000;
    font-size: 28px;
    line-height: 0;
    transition: all 0.2s ease;
    text-transform: none;
    content: "\6b";
    height: 48px;
    line-height: 48px;
  }
  .owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
  }
}

@media all and (min-width: 1366px) {
  .ajax-cart-button-wrapper .product-box-add-to-cart-button {
    width: 60% !important;
  }
  .product-grid .ajax-cart-button-wrapper .add-to-cart-qty-wrapper {
    width: 40% !important;
  }
  .productbox-buttons .ajax-cart-button-wrapper select {
    width: 40%;
    height: 48px !important;
  }
}

@media all and (min-width: 1601px) {
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  /*   .center-2 .product-grid .item-grid, .sub-category-grid .item-grid, .related-products-grid .item-grid {
        width: 100%;
        position: relative;
        display: grid;
        grid-template-columns: repeat(4,1fr);
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        }*/
  .shopping-cart-page .product-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .item-box .details {
    padding: 24px;
  }
}

@media all and (max-width: 1280px) {
  .variant-overview .compare-products .add-to-compare-list-button {
    display: block;
    width: 100%;
    background-color: #95c539 !important;
    color: #fff !important;
    border-radius: 4px;
    font-weight: bold !important;
    font-size: 15px;
  }
  .product-details-page-body .no-shipping-options {
    text-align: center;
    float: left;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .product-details-page-body .choose-shipping-title {
    margin-top: 15px;
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }
  .product-details-page-body .estimate-shipping-row.row-items {
    margin-top: 13px;
  }
  .product-details-page-body .row-items .estimate-shipping-row-item {
    float: left;
    width: 30%;
    font-size: 14px;
  }
  .product-details-page-body
    .shipping-options-body
    .estimate-shipping-row-item {
    float: left;
    width: 30%;
  }
  .product-details-page-body .estimate-shipping-row-item-radio {
    float: left;
    width: 10%;
  }
  .product-details-page-body .shipping-options-body .estimate-shipping-row {
    margin-top: 10px;
    float: left;
    width: 100%;
  }
  .product-details-page-body .estimate-shipping-row-item input {
    padding-left: 10px;
  }
  .product-details-page-body .estimate-shipping-row-item {
    margin-bottom: 10px;
    float: left;
    width: 31%;
  }
  .product-details-page-body .estimate-shipping-row-item select,
  .product-details-page-body .estimate-shipping-row-item input {
    width: 94%;
  }
  .product-details-page-body .ship-to-title {
    margin-bottom: 15px;
    font-size: 15px;
  }
  .product-details-page-body .estimate-shipping-popup {
    background: #fff;
    padding: 45px;
    float: left;
    width: 100%;
  }
  .product-details-page-body .estimate-shipping-row.shipping-address {
    width: 100%;
    float: left;
  }
  .product-details-page-body .shipping-address .estimate-shipping-row-item {
    margin-right: 15px;
  }
  .product-details-page-body .shipping-options {
    float: left;
    margin-bottom: 15px;
    width: 100%;
  }
  .product-details-page-body .button-2.apply-shipping-button {
    background-color: #95c539 !important;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    height: 40px;
    width: 145px;
    margin: 0 auto;
    border: 0;
    font-size: 15px;
    font-weight: bold;
    border-radius: 2px;
    margin-top: 20px;
    display: block;
    text-transform: uppercase;
  }
  .overview .prices,
  .variant-overview .prices {
    overflow: visible !important;
  }
  .variant-overview .attributes-wrapper {
    padding: 0;
    display: block !important;
  }
  .variant-overview .product-estimate-shipping {
    margin-top: 10px;
    display: block;
    float: left;
  }
  .variant-overview .product-price-wrap {
    padding: 0 0;
  }
  .item-box .details {
    min-height: 170px;
  }
  .gallery.sevenspikes-cloudzoom-gallery {
    display: block;
    overflow: hidden;
    clear: left;
  }
  .product-name {
    border-bottom: #000 solid 1px;
    float: left;
    width: 100%;
    text-align: left;
  }
  .nop-jcarousel.manufacturer-grid,
  .hpc-wrapper {
    padding: 32px 4vw;
  }
  .overview .add-to-cart-qty-wrapper + .add-to-cart-button {
    margin-bottom: 0;
  }
  .full-width {
    padding: 0;
  }
  .product-price-wrap {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    margin: 0 auto;
  }
  .overview .compare-products,
  .overview .add-to-wishlist,
  .compare-products .add-to-compare-list-button,
  .overview .add-to-wishlist button {
    display: block;
    width: 100%;
  }
  .overview .add-to-cart {
    max-width: 100%;
    display: block;
  }
  .overview .compare-products {
    margin-bottom: 0;
  }
  .hero {
    background-position: center !important;
  }
  .hero::after {
    opacity: 0.5;
  }
  .quick-view-button a,
  .item-box .btn-wrapper .button-2 {
    width: 42px !important;
  }
  /* .item-box .btn-wrapper {
        margin-top: 16px;
    } */
  .wctnz-home-description {
    min-height: 140px;
  }
  .home-n-business-content .cck-inner .overview-business {
    font-size: 16px;
  }
  .item-box .btn-wrapper {
    justify-content: center;
  }
  .item-box .details {
    min-height: 290px;
  }
  .also-purchased-products-grid,
  .related-products-grid {
    width: 90%;
  }
  .owl-theme .owl-nav button.owl-prev {
    left: -48px;
    position: absolute;
    top: 50%;
    margin: 0;
    height: 48px;
    display: block;
    width: 48px;
    padding: 0;
    line-height: 48px;
  }
  .owl-theme .owl-nav button.owl-next {
    right: -40px;
    position: absolute;
    top: 50%;
    font-size: 50px;
    background-color: transparent;
    margin: 0;
    height: 40px;
    display: block;
    width: 40px;
    padding: 0;
    line-height: 40px;
  }
  .owl-theme .owl-nav button.owl-prev span,
  .owl-theme .owl-nav button.owl-next span {
    font-size: 0;
  }
  .owl-theme .owl-nav button.owl-next:before {
    font-family: "emporium-icons";
    display: block;
    color: #000;
    font-size: 40px;
    transition: all 0.2s ease;
    text-transform: none;
    content: "\6a";
    width: 48px;
    line-height: 48px;
  }
  .owl-theme .owl-nav button.owl-prev:before {
    font-family: "emporium-icons";
    display: block;
    color: #000;
    font-size: 33px;
    line-height: 0;
    transition: all 0.2s ease;
    text-transform: none;
    content: "\6b";
    height: 48px;
    line-height: 48px;
  }
  .owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
  }
  .product-social-buttons {
    display: flex;
    justify-content: center;
  }
  .product-review-box {
    text-align: center;
    display: block;
  }
  .product-details-page .product-review-box {
    text-align: center;
    display: block;
  }
  .attributes-wrapper .attributes select {
    width: 100%;
  }
  .header-menu > ul > li > a,
  .header-menu > ul > li > span {
    padding: 0 10px;
  }
  .attributes-wrapper {
    max-width: 100%;
    margin: 0 auto 10px;
    float: left;
    width: 100%;
    border: none;
  }
  .product-price-heading {
    float: left;
    width: 100%;
  }
  .product-price-heading {
    margin: 15px auto 15px;
  }
  .overview .add-to-wishlist {
    margin-left: 0;
    width: 100%;
    float: left;
  }
  .variant-overview .attributes-wrapper .attributes .acc {
    margin: 0;
    max-width: 100%;
  }
  .variant-overview .product-prices-box .product-price-wrap {
    padding: 0;
  }
  .productTabs-body .custom-tab {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
  }
  .productTabs-body .custom-tab iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .variant-overview .add-to-cart-panel {
    display: block;
  }
  .variant-overview .add-to-cart-button {
    padding: 0 14px;
    margin: 16px 0px 16px 10px;
    height: 45px;
  }
  .variant-overview .attributes-wrapper {
    padding: 0;
  }
  .shipping-options label {
    margin-bottom: 14px;
  }
}

@media all and (max-width: 1024px) {
  .new-address-content {
    position: relative;
    top: 100%;
    left: 0;
    transform: none;
  }
  .filtersGroupPanel .checkbox-list label {
    line-height: 20px;
    padding: 0px 0 6px 30px;
  }
  li.checkbox-item {
    margin-bottom: 10px;
  }
  .variant-overview .add-to-wishlist button {
    margin-left: 0 !important;
    margin-top: 10px;
  }
  .page.topic-page {
    padding: 0 15px 10px;
  }
  .page.topic-page h1 span {
    font-size: 30px !important;
  }
  .ui-dialog {
    top: 1300px !important;
  }
  .inputs.accept-consent .read {
    margin-top: 3px;
  }
  .product-selectors > div.filters-button-wrapper {
    margin: 0 0 10px !important;
  }
  .search-box.store-search-box label {
    margin-bottom: 10px;
    display: block;
  }
  .search-box-select {
    top: 100px !important;
  }
  .p-10 {
    padding: 0 10px !important;
  }
  .html-account-page .edit-address .required-label {
    margin-bottom: 10px !important;
  }
  #billing-buttons-container {
    margin-top: 10px !important;
  }
  .coupon-box,
  .giftcard-box {
    text-align: left;
  }
  .advantages-item .info {
    text-align: center !important;
  }
  .shopping-cart-page .common-buttons {
    margin-bottom: 20px;
  }
  .checkout-page .cart-item-row label,
  .checkout-page .cart-total label,
  .checkout-page .order-review-data {
    margin-bottom: 0;
  }
  .checkout-page .inputs-group .inputs {
    margin-bottom: 15px;
  }
  .shopping-cart-page .tax-shipping-info {
    text-align: center !important;
  }
  .advantages-item .description {
    display: block;
  }
  .advantages-item .description p {
    font-size: 12px;
  }
  .wctnz-home-description {
    min-height: 160px;
  }
  .home-n-business-content .toilet-options li a .option-right span {
    font-size: 14px;
  }
  .home-n-business-content .toilet-options li a .option-right h3 {
    font-size: 16px;
    font-weight: 600;
  }
  .home-n-business-content .cck-inner .small-desc {
    font-size: 14px;
  }
  .home-n-business-content .cck-inner .overview-business {
    font-size: 14px;
  }
  .home-n-business-content .cck-inner h2 {
    font-size: 24px;
  }
  .home-n-business-content .toilet-options li {
    padding-bottom: 8px;
    padding-top: 8px;
  }
  .sp-description p {
    font-size: 14px;
  }
  .signature-product-content .signature-products h2 {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .html-home-page .half {
    width: 100%;
    float: none;
    padding-right: 10px !important;
    text-align: center;
  }
  .user-testimonials-demo-2 .two-boxes {
    width: 100%;
    clear: both;
  }
  .half {
    float: none;
    width: 100%;
  }
  .cck p {
    text-align: center;
  }
  .one-third {
    float: none;
    width: 100%;
    text-align: left;
    margin: 0 auto;
  }
  #ph-topic .page-title {
    margin-top: 15px;
  }
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
  .follow-us.footer-item {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #ffffff5e;
    padding: 0 30%;
    padding-bottom: 30px;
  }
  .follow-us.footer-item {
    padding: 0 0 16px 0;
  }
  .main-footer .Information .title {
    padding: 0;
    margin-bottom: 0;
  }
  .main-footer .footer-block .list {
    display: none;
  }
  .main-footer .footer-block {
    border-bottom: 1px solid #ffffff45;
    padding: 0 30px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .newsletter-email .newsletter-subscribe-text,
  #newsletter-subscribe-block .newsletter-email > * {
    width: 100%;
  }
  .socials-and-payments.footer-item {
    text-align: center;
    padding-top: 16px;
  }
  .main-footer .footer-item .title {
    margin-bottom: 0;
  }
  .socials-and-payments.footer-item .title {
    margin-bottom: 16px;
  }
  .newsletter-email .options {
    padding-bottom: 10px;
  }
  .main-footer .footer-item .title.open {
    margin-bottom: 16px;
  }
  .footer-container {
    padding: 0 2vw;
  }
  .top-footer .footer-row {
    align-items: flex-start;
  }
  .home-n-business-content .toilet-options li .option-right {
    padding-right: 50px;
  }
  .home-n-business-content .cck-inner h2 {
    padding: 0 32px 32px 32px;
  }
  .category-icon {
    width: 60px;
    height: 60px;
  }
  .wctnz-home-description {
    /* padding-bottom: 32px; */
    padding: 0 30px 30px 30px;
  }
  .home-n-business-content .cck-inner .overview-business {
    margin-bottom: 16px;
  }
  .product-list .item-box input .button-2.product-box-add-to-cart-button {
    width: 100% !important;
  }
  .product-list .details-rtl .buttons {
    min-height: 48px;
  }
  .block-wrapper .block {
    width: 100%;
  }
  .newsletter-email .newsletter-subscribe-button {
    background-position-x: 44%;
  }
  .wctnz-home-description {
    min-height: 100px;
  }
  .nop-jcarousel.product-grid {
    width: 90%;
    margin: 0 auto !important;
  }
  .also-purchased-products-grid.product-grid,
  .related-products-grid.product-grid {
    width: 90%;
  }
  .jCarouselMainWrapper:last-child .nop-jcarousel {
    margin: 0 auto;
  }
  .nop-jcarousel.manufacturer-grid,
  .hpc-wrapper {
    padding: 32px 4vw;
  }
  .markasnew-wrapper,
  .best-feature-section .bestseller-featured-content {
    padding: 0 4vw;
  }
  .product-list .item-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 0;
  }
  .product-selectors {
    display: flex;
    justify-content: center;
  }
  .filters-button-wrapper {
    margin: 0 !important;
  }
  .product-grid.featured-product-grid {
    width: 95%;
  }
  .product-list {
    width: 95%;
    margin: 0 auto;
  }
  .fns-reviewrewards-simple img {
    max-width: 100%;
    width: inherit !important;
    height: auto;
  }
  .fns-reviewrewards-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  .fns-reviewrewards-simple p {
    margin: 0 20px;
  }
  .block-wrapper .block {
    width: 98%;
  }
  .admin-header-links a {
    color: #fff;
  }
  .product-selectors.infinite-scroll-enabled .product-sorting {
    margin-left: 0;
    width: 100%;
  }
  .product-list .item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 0;
  }
  .inputs-group .inputs {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  .inputs.custom-attributes {
    text-align: left;
  }
}

@media all and (max-width: 768px) {
  .product-price-wrap {
    padding: 0 30px;
    display: block;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  .sp-one,
  .sp-two,
  .sp-three {
    text-align: center !important;
    margin: 0 auto !important;
    margin-top: 30px !important;
    max-width: 450px;
  }
  .category-icon {
    width: 60px;
    height: 60px;
  }
  .hpc {
    padding: 70px 20px !important;
  }
  .in {
    max-width: 100%;
  }
  .sp-flex.desktop {
    display: none !important;
  }
  .testimonial-wrapper p {
    font-size: 16px !important;
    line-height: 1.4em;
  }
  .testimonials {
    padding: 70px 20px;
  }
  .in {
    max-width: 100%;
  }
  .hero {
    background-position: center center !important;
    background-size: cover;
  }
  .hero .in {
    width: 100%;
    max-width: 100%;
  }
  .in {
    max-width: 100%;
  }
  .half {
    width: 100%;
    float: none;
    padding-right: 10px !important;
  }
  .hero .cck h1 {
    text-align: center;
    width: 100%;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1em;
  }
  .hero .cck p {
    text-align: center;
  }
  .hero::after {
    opacity: 0.5;
  }
  div.lpad {
    padding: 70px 20px;
  }
  .in {
    max-width: 100%;
  }
  .hpc {
    padding: 70px 20px !important;
  }
  .testimonial-wrapper h4 {
    color: #000;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2em !important;
    letter-spacing: 0.22px;
  }
  .testimonial-wrapper p {
    font-size: 16px !important;
    line-height: 1.4em;
  }
  .sp-flex {
    display: block !important;
  }
  .cck-inner h3,
  .cck-inner span {
    text-align: left;
    padding-left: 20px;
    padding-right: 60px;
  }
  .cck-inner span {
    font-size: 14px;
    line-height: 1.1em;
  }
  div.lpad {
    padding: 70px 20px;
  }
  .testimonials {
    padding: 70px 20px;
  }
  .hero {
    background-position: center center !important;
    background-size: cover;
  }
  .hero .in {
    width: 100%;
    max-width: 100%;
  }
  .in {
    max-width: 100%;
  }
  .half {
    width: 100%;
    float: none;
    padding-right: 10px !important;
  }
  .hero .cck h1 {
    text-align: center;
    width: 100%;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1em;
  }
  .hero .cck p {
    text-align: center;
  }
  .hero::after {
    opacity: 0.5;
  }
  .html-home-page .item-box .picture a:before {
    padding-top: 100%;
  }
  .center-1 .slick-carousel {
    max-width: 100%;
    /* margin-left: 30px;*/
  }
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .main-footer .footer-block,
  .follow-us.footer-item {
    width: 100%;
  }
  .follow-us.footer-item {
    padding: 0;
  }
  .top-footer .footer-row .footer-block:first-child,
  .top-footer .footer-row .footer-block:nth-child(2),
  .top-footer .footer-row .footer-block:last-child {
    width: 100%;
    text-align: center;
  }
  .top-footer .footer-row .footer-block {
    margin-bottom: 24px;
  }
  .nop-jcarousel.manufacturer-grid,
  .hpc-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .signature-product-content .signature-products {
    width: 100%;
    margin: 0 auto;
    padding: 5% 5%;
  }
  .signature-product-grid {
    display: none;
  }
  .selector.checkbox-wrapper {
    text-align: left;
  }
  .home-intro .topic-block-body h2 {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 24px;
  }
  .wrapper {
    overflow: hidden;
  }
  .home-page .topic-block-title h2 {
    font-size: 26px;
    color: #000;
  }
  .home-intro {
    padding: 32px 0;
  }
  .best-feature-section {
    margin-top: 30px;
  }
  .overview .add-to-cart {
    width: 100%;
    max-width: 100%;
  }
  button.slick-prev.slick-arrow {
    left: -42px;
    top: 34%;
  }
  button.slick-next.slick-arrow {
    right: -42px;
    top: 34%;
  }
  .owl-theme .owl-nav button.owl-next:before {
    font-size: 20px;
    width: 40px;
    line-height: 40px;
  }
  .owl-theme .owl-nav button.owl-prev:before {
    font-size: 20px;
    height: 40px;
    line-height: 40px;
  }
  /* .nop-jcarousel {
        padding: 0 30px 0 38px !important;
        }*/
  .owl-theme .owl-nav button.owl-next {
    right: -42px;
  }
  .owl-theme .owl-nav button.owl-prev {
    left: -42px;
  }
  .variant-overview .add-to-cart-panel {
    display: block;
  }
  .variant-overview .add-to-cart-button {
    padding: 0 14px;
    /*width: 100%; */
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .variant-overview .add-to-wishlist {
    margin-bottom: 16px;
    float: none !important;
  }
  .variant-overview .attributes {
    padding: 0;
  }
  .wizard .nav-tabs > li {
    width: 14%;
    margin-bottom: 14px;
  }
  .wizard .nav-tabs > li a i {
    font-size: 12px;
    margin-top: 36px;
  }
  span.round-tab {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
  }
  .connecting-line {
    top: 16px;
  }
  .billing-info-wrap,
  .shipping-info-wrap {
    width: 100%;
  }
  .section.order-completed {
    width: 90%;
    margin: 0 auto;
  }
  .section.order-completed .title {
    margin-bottom: 16px;
  }
  .order-completed .buttons {
    margin-bottom: 30px;
  }
  .order-completed-page .page-title h1 {
    text-align: center;
  }
  .admin-header-links a,
  .admin-header-links span {
    color: #fff;
  }
  .required-label label {
    margin-right: 0;
  }
}

@media all and (max-width: 480px) {
  .item-box .picture {
    min-height: 262px;
    height: auto;
  }
  .item-box .details {
    min-height: 170px;
    padding: 6px;
  }
  .product-social-buttons {
    display: flex;
    justify-content: center;
  }
  .product-selectors {
    display: block;
  }
  .newsletter-email .newsletter-subscribe-button {
    background-position-x: 40%;
  }
  .home-n-business-content .toilet-options li {
    background-image: none;
  }
  .category-icon {
    width: 80px;
    height: 80px;
  }
  .home-n-business-content .toilet-options li .option-right {
    padding-right: 15px;
    padding-left: 15px;
  }
  .cck-inner h3,
  .cck-inner span {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 10px;
  }
  /* .center-2 .product-grid .item-grid, .sub-category-grid .item-grid, .related-products-grid .item-grid {
        width: 100%;
        position: relative;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-column-gap: 0;
        grid-row-gap: 24px;
        }*/
  .checkout-page .page-title {
    padding-top: 16px;
  }
  .hero .cck p {
    font-size: 18px;
  }
  .jCarouselMainWrapper .slick-next:before,
  .jCarouselMainWrapper .slick-prev:before {
    font-size: 20px !important;
  }
  .spc-products .slick-slide {
    padding-right: 0;
  }
  ul.toilet-options li:hover {
    background-image: none;
  }
  .home-n-business-content .toilet-options li {
    padding-left: 0;
  }
  .product-review-box {
    text-align: center;
  }
  .attributes-wrapper .attributes select {
    width: 100%;
  }
  .next-prev-wrapper .next-prev-container {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding-top: 0px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .next-prev-wrapper .breadcrumb {
    display: block;
    /* border-top: 1px solid #ddd;*/
    padding: 10px 0;
  }
  .next-prev-wrapper {
    padding: 0;
  }
  /* .item-box .picture{
        height:auto;
        }*/
  .also-purchased-products-grid.product-grid,
  .related-products-grid.product-grid {
    width: 80%;
  }
  .fns-reviewrewards-simple {
    display: block;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  .product-list .item-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .product-list .item-box .prices {
    margin-bottom: 20px;
  }
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .item-box .picture {
    min-height: 160px;
    height: auto;
  }
  .product-grid .item-box {
    margin-bottom: 14px;
  }
  .manufacturer-description {
    padding: 0 14px;
  }
  .manufacturer-description h3 {
    display: inline-block;
  }
  .manufacturer-description h2 {
    color: #000;
    font-weight: 600;
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .productTabs-header ul li a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #e0e0e0 !important;
  }
  .productTabs.ui-tabs .ui-tabs-nav li.active a {
    color: #97c300;
    border-bottom: 2px solid #576750 !important;
  }
  .contact-map {
    padding: 0 14px;
  }
  .wizard .nav-tabs > li {
    width: 33%;
    margin-bottom: 14px;
  }
  .connecting-line {
    display: none;
  }
  .payment-info .info td input[type="text"] {
    width: 100% !important;
    max-width: 100%;
  }
  .payment-info .info td {
    padding: 0;
    display: block;
    text-align: left !important;
  }
  .payment-info .info td select.dropdownlists {
    width: 100%;
    max-width: 100% !important;
  }
  .payment-info .info table {
    border: 0;
  }
  .payment-info .info tr:last-child td {
    padding-bottom: 0;
  }
  .payment-info .info tr:first-child td {
    padding-top: 0;
  }
}

@media all and (max-width: 360px) {
  .product-list .item-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 30px;
  }
  .center-2 .product-grid .item-grid,
  .sub-category-grid .item-grid {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}

/* products.less */

.product-prices-box-content {
  box-shadow: 0px 0px 0px 0px #aaa;
}

/*
 Submit a ticket button
 */

.item-box .btn-wrapper .submit-ticket:before {
  content: "\58";
}

.variant-overview .submit-ticket {
  display: block;
  vertical-align: top;
  font-size: 0;
  margin-left: 0;
  width: 100%;
}

.variant-overview .submit-ticket button {
  width: 100%;
  font-size: 14px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.variant-overview .submit-ticket button span {
  margin-left: 15px;
}

.variant-overview .submit-ticket-button {
  display: block;
  float: none;
  clear: both;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  font-size: 0;
  border: none;
  background-color: #f2f2f2;
  border-radius: 3px;
  transition: all 0.1s ease;
}

.variant-overview .submit-ticket-button:before {
  display: block;
  content: "\63";
  font-size: 20px;
  color: #8e8e8e;
  transition: all 0.2s ease;
}

.variant-overview .submit-ticket-button:hover {
  background-color: #eaeaea;
}

.overview button {
  background-color: #f1f1f1;
}

.overview .add-to-wishlist button:hover {
  background-color: #7da530;
  color: #fff;
}

.overview .compare-products button {
  background-color: #95c539;
  color: #fff;
  border-radius: 4px;
}

.overview .compare-products button:hover {
  background-color: #03a9f4;
}

.overview .submit-ticket {
  display: inline-block;
  margin-left: 5px;
  margin-left: 0px;
  width: 100%;
}

.overview .submit-ticket button {
  display: block;
  width: 45px;
  height: 48px;
  line-height: 45px;
  border: none;
  border-radius: 3px;
  font-weight: bold;
  color: #fff;
  font-size: 0;
  text-transform: uppercase;
  text-align: center;
  background-color: #95c539;
  transition: all 0.1s ease;
}

.overview .submit-ticket button:hover {
  background-color: #7da530;
  color: #fff;
}

.overview .submit-ticket button:before {
  content: "\58";
  display: inline-block;
  vertical-align: bottom;
  color: #fff;
  font-size: 17px;
  text-transform: none;
  font-weight: normal;
}

.overview .submit-ticket button:hover:before {
  color: #fff;
}

.quickViewWindow .overview .submit-ticket {
  display: inline-block;
  margin-left: 5px;
  width: auto;
}

.quickViewWindow .overview .submit-ticket button {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: none;
  border-radius: 3px;
  font-weight: bold;
  color: #8c8c8c;
  font-size: 0;
  text-transform: uppercase;
  text-align: center;
  background-color: #f1f1f1;
  transition: all 0.1s ease;
}

.quickViewWindow .overview .submit-ticket button:hover {
  background-color: #eaeaea;
}

.quickViewWindow .overview .submit-ticket button:before {
  margin: 0;
}

.quickViewWindow .product-prices-box {
  color: #576750;
}

.overview .submit-ticket button {
  font-size: 15px;
  width: 100%;
}

.compare-products .add-to-compare-list-button {
  background-color: inherit;
}

/*
 Product price box
 */

.page.product-details-page .product-price {
  color: black !important;
  font-size: 24px;
}

.product-modular-line select {
  max-width: 450px !important;
}

.product-modular-list .qty-input.ui-spinner-input {
  width: 100px !important;
}

.product-price-heading {
  margin: 15px auto 15px;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  clear: left;
  float: left;
  width: 100%;
}

.free-shipping {
  background-color: transparent;
  border: none;
  margin: 3px;
  padding: 0;
}

.product-prices-box {
  color: white;
}

.product-prices-box .free-shipping {
  color: white;
  text-transform: uppercase;
  margin: 10px auto 5px;
  font-size: 14px;
  font-weight: bold;
}

.product-prices-box .not-returnable {
  color: black;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.product-prices-box > div:first-child {
  padding: 0;
}

.product-prices-box-content {
  padding: 0;
}

.product-price-wrap {
  float: left;
  clear: none;
  width: 100%;
  padding-bottom: 15px;
}

.product-price-wrap .tax-shipping-info {
  color: black;
  text-align: left;
}

.overview .delivery-date {
  color: #000 !important;
}

.overview .pre-order-availability-date {
  color: green !important;
}

.product-price-wrap.green {
  background: linear-gradient(#37ae08, rgba(55, 174, 8, 0.5));
}

.product-price-wrap.red {
  background: linear-gradient(rgba(174, 8, 8, 0.9), rgba(174, 8, 8, 0.5));
}

.product-price-wrap.blue {
  background: linear-gradient(rgba(12, 123, 160, 0.9), rgba(12, 123, 160, 0.5));
}

.email-a-friend .email-a-friend-button {
  display: block;
  width: auto;
  height: 48px;
  line-height: 48px;
  border: none;
  border-radius: 3px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  background-color: #95c539;
  transition: all 0.1s ease;
  padding: 0px 20px 0px 20px;
}

.email-a-friend .email-a-friend-button:hover {
  background-color: #7da530 !important;
  color: #fff;
}

.product-details-page .overview .product-name .email-a-friend-button:hover {
  background-color: transparent !important;
}

.product-modular-page .submit-ticket {
  margin-left: 5px !important;
}

.add-to-compare-list-button:hover {
  background-color: #7da530 !important;
}

.add-to-wishlist button:hover,
.add-to-wishlist input:hover {
  background-color: #7da530 !important;
  color: #fff !important;
}

.submit-ticket button:hover,
.submit-ticket input:hover {
  background-color: #7da530 !important;
}

.add-to-cart-button {
  background-color: #95c539 !important;
  max-width: 200px;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
  margin-left: 5px;
}

.add-to-cart-button:hover {
  background-color: #7da530 !important;
}

.product-price-wrap .add-to-cart-button:hover {
  background-color: #7da530 !important;
}

.product-price-wrap .fns-rfq-button {
  background-color: #95c539 !important;
  color: #8c8c8c !important;
  font-size: 15px !important;
  padding: 12px 25px 12px 25px !important;
}

.product-price-wrap .fns-rfq-button:hover {
  background-color: #7da530 !important;
  color: white !important;
}

.home-how-it-work {
  background: url(../img/how-it-work-bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 170px 0;
}

.home-how-it-work h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.home-how-it-work p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.home-how-it-work a {
  color: #fff;
  font-size: 18px;
  border: #fff solid 0px;
  padding: 15px 30px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  margin-top: 40px;
  background: #95c539;
}

.home-how-it-work a:hover {
  background: #7da530;
}

.home-page .rich-blog-homepage {
  margin: 90px 0 70px;
  text-align: center;
}

.home-page .product-grid {
  margin: 90px 0 70px;
}

.home-page .rich-blog-homepage .title {
  margin: 0 0 70px;
  font-size: 48px;
  color: #000;
}

.home-page .rich-blog-homepage .view-all a {
  font-size: 16px;
  margin-top: 40px;
}

.full-width.hpc .cck .hpc-wrapper {
  max-width: 1354px;
  margin: 0 auto;
  padding: 0 !important;
}

.home-link-btn {
  color: #fff;
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 2.8em;
  display: inline-block;
  text-decoration: none;
  text-shadow: 2px 2px 10px black;
  color: #95c539;
}

.home-link-btn::after {
  font-size: 0.8em;
  content: '\57';
  margin-left: 0.5em;
}

.hero .cck h1 {
  text-shadow: 4px 4px 10px #0005;
}

.hero .cck p {
  text-shadow: 2px 2px 6px black;
}

.home-link-btn:hover {
  color: #fff;
}

.outline-btn {
  color: #fff;
  font-size: 18px;
  border: #fff solid 0px;
  padding: 15px 30px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  background: #95c539;
}

.outline-btn:hover {
  background: #7da530;
}

.footer .topic-block {
  max-width: 100%;
}
.footer {
  background: #222222;
  padding: 25px 0px;
}
.footer .upper-footer {
  color: #fff;
  padding: 0px;
}
.footer .upper-footer input {
  background: #222222;
  color: #ffffff;
}

.footer .lower-footer {
  padding: 0px;
}

.footer .foot-container {
  max-width: 1920px;
  margin: 0 auto;
}

.footer .upper-footer .foot-col {
  display: inline-block;
  /* width: 100%; */
  vertical-align: top;
}

.footer .lower-footer .about-col {
  display: inline-block;
  /* width: 33% */
  vertical-align: top;
  text-align: left;
}

.footer .lower-footer .about-col a {
  text-decoration: none;
  color: #fff;
}

.footer .foot-col.payment li {
  display: inline-block;
  width: 27.333%;
  margin-bottom: 10px;
}

.footer .upper-footer h3 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #8bc34a;
}

.footer .upper-footer li {
  color: #fff;
}

.footer .upper-footer li a {
  color: #fff;
  text-decoration: none;
}

.footer .upper-footer .foot-col.follow a:before {
  color: #fff;
}

.footer .upper-footer .foot-col.follow .product-social-sharing {
  clear: left;
  display: block;
}

.footer .upper-footer li a:hover {
  color: #8bc34a;
}

.footer .upper-footer .foot-col.account ul,
.footer .upper-footer .foot-col.service ul {
  margin-top: -10px;
}

.footer .upper-footer .foot-col.follow ul li {
  display: inline-block;
  margin-right: 20px;
}

.footer .lower-footer p {
  color: #c3c3c3;
}

.footer .lower-footer .about-col p {
  max-width: 330px;
  margin-left: 50px;
}

.footer .lower-footer .about-col p:first-child {
  margin-bottom: 30px;
}

.footer .lower-footer p strong {
  color: #fff;
}

.home-page ul.slick-dots {
  display: none !important;
}

.footer .foot-col.payment li {
  padding-right: 10px;
}

.product-name {
  border-bottom: #000 solid 1px;
  float: left;
}

.product-details-page .ajax-cart-button-wrapper {
  float: left;
  margin: 0 0 0 10px;
}

.product-details-page .productbox-buttons .ajax-cart-button-wrapper {
  margin: 0 0 0 0px;
}

.product-details-page
  .add-to-cart-qty-wrapper
  + .ajax-cart-button-wrapper
  input {
  width: 100%;
  margin-top: 0px;
  border-radius: 2px;
  margin-bottom: 16px;
  height: 40px;
}

.html-product-details-page .add-to-cart-qty-wrapper {
  width: 40%;
}

.product-details-page .product-price-wrap .add-to-wishlist {
  margin-left: 0;
}

.hide {
  display: none;
}

.overview .compare-products {
  float: left;
}

.overview .add-to-wishlist {
  margin-left: 10px;
  width: auto;
  float: left;
}

.overview .fns-rfq-block {
  display: inline-block;
  float: left;
  margin-left: 10px;
}

.overview .add-to-wishlist button {
  font-size: 15px;
  width: 100%;
  padding: 1px 20px 12px 20px;
  height: 48px !important;
}

.overview .fns-rfq-block .discount {
  margin-top: 0px;
}

.overview .fns-rfq-block .discount {
  background: #95c539 !important;
  color: #fff !important;
}

.overview .fns-rfq-block .discount:hover {
  background: #7da530 !important;
  color: #fff !important;
}

.overview .add-to-wishlist button:hover:before {
  color: #fff;
}

.overview .compare-products button:hover:before {
  color: #fff;
}

.next-prev-wrapper .next-prev-container .previous-product {
  display: inline-block;
  float: unset;
  width: 50%;
}
.next-prev-wrapper .next-prev-container .previous-product a span {
  color: #95c539;
} 
.next-prev-wrapper .next-prev-container .previous-product ::before {
  color: #959595;
}
.next-prev-wrapper .next-prev-container .next-product {
  display: inline-block;
  float: unset;
  width: 50%;
}
.next-prev-wrapper .next-prev-container .next-product a span {
  color: #95c539;
}
.next-prev-wrapper .next-prev-container .next-product ::after {
  padding-left: 0.5em;
  color: #959595
}
.next-prev-wrapper .next-prev-container .breadcrumb {
  padding-top: 1em;
}


.gallery .picture-wrapper {
  border: #ccc solid 1px;
  position: relative;
  overflow: hidden;
  font-size: 0px;
}

.modal-footer {
  justify-content: space-around !important;
}

.footer .upper-footer .foot-col.follow {
  /*    padding-right: 60px; */
}

.footer .upper-footer .foot-col.follow p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer .upper-footer .foot-col input[type="text"] {
  width: 100%;
  padding: 0 10px;
  border-radius: 4px;
}

.footer .upper-footer .foot-col.follow input[type="button"] {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #95c639;
  border: #95c739 solid 2px;
  color: #ffffff;
  width: 100%;
}

.footer .upper-footer .foot-col.follow input[type="button"]:hover {
  background-color: #7da530;
  border: #7da530 solid 2px;
}

body.open-overlay {
  overflow: hidden;
  padding-right: 20px;
}

.custom-overlay {
  position: fixed;
  /* Sit on top of the page content */
  /*display: none;*/
  /* Hidden by default */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 9999;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
  opacity: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}

.open-overlay .custom-overlay {
  visibility: visible;
  opacity: 1;
}

.searchbox .search-icon {
  display: block;
  transition: all 0.8s ease;
}

.searchbox .close-icon {
  display: none;
  transition: all 0.8s ease;
}

.open-overlay .searchbox .search-icon {
  display: none;
  transition: all 0.8s ease;
}

.open-overlay .searchbox .close-icon {
  display: block;
  transition: all 0.8s ease;
}

.push {
  margin-left: auto;
}

.prev-next-holder {
  box-shadow: 0px 0px 0px 0px #eee !important;
}

.previous-product,
.next-product {
  display: none;
}

.attributes {
  max-width: 100%;
  padding: 0px;
}

.button-1.add-to-cart-button.grey {
  background-color: #eaeaea !important;
  color: #8c8c8c;
}

.tax-shipping-info {
  color: green;
  text-align: left;
  margin-top: 10px;
}

.product-modular-line .attributes ul.option-list {
  margin: 0;
  padding: 0;
  position: relative;
}

.product-modular-line .attributes ul.option-list li {
  position: relative;
}

.product-modular-line .attributes ul.option-list label {
  padding-left: 25px;
}

.product-modular-line input[type="radio"] + label:before,
.product-modular-line input[type="checkbox"] + label:before {
  position: absolute;
  left: 0;
}

.product-modular-line .attributes dl dt {
  text-align: left;
}

.product-modular-info .variant-name {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.product-modular-line .variant-description {
  clear: none;
  font-size: 14px !important;
  line-height: 24px;
}

.product-modular-line .attributes .attribute-description {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #000;
  margin-bottom: 15px;
  line-height: 24px;
}

.product-modular-line .attributes ul.option-list label {
  padding-left: 25px;
  color: #000;
  font-weight: 400;
}

.product-modular-line .attributes .text-prompt {
  font-weight: 500 !important;
  font-size: 18px !important;
  margin-bottom: 10px !important;
  display: inline-block;
  width: 100%;
  color: #000;
}

.product-modular-list .sku {
  margin-top: 1em;
  font-size: 16px;
  margin-bottom: 15px;
}

.product-modular-list .sku span.value {
  color: green;
}

.gallery .picture-thumbs {
  float: left;
  width: 100%;
  max-width: 100%;
  margin: 0;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* width */

.gallery .picture-thumbs::-webkit-scrollbar {
  height: 10px !important;
}

/* Track */

.gallery .picture-thumbs::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
}

/* Handle */

.gallery .picture-thumbs::-webkit-scrollbar-thumb {
  background: #95c539 !important;
}

/* Handle on hover */

.gallery .picture-thumbs::-webkit-scrollbar-thumb:hover {
  background: #7da530 !important;
}

.html-blog-page .blog-search-box .search-box-button {
  float: left;
  width: 45px;
  height: 47px;
  border: none;
  background: #969696 url(../img/search-button.png) center no-repeat;
  font-size: 0;
  border: 1px solid #969696;
  border-left: 0;
  border-radius: 0 0px 0px 0;
  transition: all 0.2s ease;
}

.html-blog-page .blog-search-box input[type="text"] {
  height: 47px;
  padding-left: 15px;
}

.html-blog-page .block .tags li a,
.html-blog-page .product-tags-all-page li a {
  float: left;
  line-height: normal;
  color: #fff;
  transition: all 0.2s ease;
  font-size: 12px !important;
  padding: 8px 5px;
  background: #3985c6;
  width: 100%;
  display: inline-block;
  border-radius: 4px;
}

.html-blog-page .block .title {
  position: relative;
  padding: 14px 20px 14px 15px;
  font-size: 17px;
  color: #fff;
  background-color: #95c539;
  cursor: pointer;
  text-align: left;
  font-weight: 600 !important;
}

.shopping-cart-page .tax-shipping-info {
  /* color: #03a9f4;*/
  text-align: right;
  margin-top: 10px;
  margin-bottom: 20px;
}

.shopping-cart-page .common-buttons button {
  overflow: visible;
}

.cart .product a {
  margin-bottom: 10px;
  clear: left;
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.cart-collaterals > div > .title strong {
  font-weight: 500;
}

ul.toilet-options li a {
  max-width: 100%;
  padding: 10px;
}

.home-n-business-content .cck-left .toilet-options li a:hover {
  background: #49b8b3;
  color: #fff;
}

.home-n-business-content .cck-right .toilet-options li a:hover {
  background: #aed862;
  color: #fff;
}

.home-n-business-content .toilet-options li a .option-right h3 {
  margin-top: 0px;
}

.home-n-business-content .toilet-options li a:hover .option-right h3 {
  color: #fff;
}

.home-n-business-content .toilet-options li a:hover .option-right span {
  color: #fff;
}

.item-box .productbox-buttons .btn-wrapper .button-2:hover {
  background-color: transparent !important;
}

.jCarouselMainWrapper .slick-next:before,
.jCarouselMainWrapper .slick-prev:before {
  font-size: 20px !important;
}

.jCarouselMainWrapper .slick-next,
.jCarouselMainWrapper .slick-prev {
  top: 35% !important;
}

.ajaxCart .quickViewWindow .overview .compare-products + .delivery {
  clear: left;
}

.ajaxCart .miniProductDetailsView .product-essential {
  clear: left;
}

.ajaxCart .overview .ajax-cart-button-wrapper input {
  max-width: inherit !important;
  margin: 0 !important;
}

.ajaxCart .overview .ajax-cart-button-wrapper {
  float: left;
  margin: 10px 0 0 0;
  clear: left;
  width: 100%;
}

.ajaxCart .overview .add-to-cart-qty-wrapper {
  margin-right: 0 !important;
}

.ajaxCart .overview .add-to-cart .add-to-cart-button {
  background-color: #95c539 !important;
  max-width: 100%;
  margin-bottom: 0px !important;
  margin-top: 10px !important;
  margin-left: 0px !important;
}

.block.block-recently-viewed-products li {
  position: relative;
  padding-bottom: 40px !important;
}

.product-social-buttons.SocialCustom {
  float: left;
  clear: left;
  position: absolute;
  bottom: 10px;
  margin: 0px;
  width: 100%;
  padding-left: 100px;
}

.product-social-buttons.SocialCustom .product-social-sharing {
  width: 100%;
}

.product-social-buttons.SocialCustom a.product-name {
  display: none;
}

.product-social-buttons.SocialCustom .email-a-friend {
  width: auto !important;
  display: inline-block;
  vertical-align: top;
  margin-top: -5px;
  margin-left: 5px;
  transition: inherit !important;
}

.product-social-buttons.SocialCustom .email-a-friend input {
  background: none !important;
  transition: inherit !important;
}

.product-social-buttons.SocialCustom .email-a-friend:hover:before {
  transform: inherit !important;
}

.block.block-recently-viewed-products .product-picture {
  max-height: 80px;
}

.product-social-buttons.SocialCustom a {
  padding: 0px;
}

.footer-tax-shipping a {
  color: #95c539 !important;
}

/* .shipping-instructions .required {
    position: relative !important;
    display: inline-block !important;
    right: auto !important;
    float: none;
    margin: 0 0 0 10px !important;
} */

#liability-modal button.button-2 {
  background: #f44336;
  color: #fff;
  height: 45px;
  padding: 0 25px;
  display: inline-block;
  line-height: 42px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .checkout-page .wizard {
    width: 92%;
  }
  .blog-search-box .title:before {
    color: #fff !important;
    left: auto !important;
    right: 12px;
    top: 25px;
  }
  .mobile-name-holder .breadcrumb {
    padding: 3px 10px;
  }
  .product-details-page-body .estimate-shipping-popup {
    padding: 15px;
  }
  .product-details-page-body .estimate-shipping-row-item {
    float: none;
    width: 100%;
  }
  .product-details-page-body .estimate-shipping-row-item select,
  .product-details-page-body .estimate-shipping-row-item input {
    width: 96% !important;
  }
  .variant-overview .product-estimate-shipping {
    float: none !important;
    line-height: 22px;
  }
  .block.block-recently-viewed-products .product-social-buttons.SocialCustom {
    padding-left: 0 !important;
  }
  .add-to-cart-qty-wrapper,
  .add-to-cart-qty-wrapper .qty-input {
    height: 45px !important;
  }
  .add-to-cart-qty-wrapper span.plus,
  .add-to-cart-qty-wrapper span.minus {
    line-height: 47px !important;
  }
  .acc__card label.text-prompt {
    width: 90%;
    display: block;
  }
  span.i-icon {
    height: 15px !important;
    width: 15px !important;
    line-height: 15px !important;
  }
  .tooltip .tooltiptext {
    top: -4px !important;
    left: auto;
    right: 21px !important;
  }
  .page.order-details-page {
    padding-top: 0;
  }
  .order-details-area {
    margin-bottom: 20px;
  }
  .order-details-page .page-title {
    padding: 10px 0;
  }
  .inputs .option-list,
  .account-page .button-2 {
    margin-top: 10px;
  }
  .attribute-description {
    width: 90%;
  }
  .product-details-page .option-list li label {
    line-height: 24px;
  }
  .checkout-page .terms-of-service input[type="checkbox"] + label:before,
  .checkout-page .terms-of-service input[type="checkbox"] + label:after {
    right: auto;
    left: -40px !important;
  }
  .advantages-item .description {
    display: block;
    text-align: center !important;
  }
  .advantages-item .description p {
    font-size: 12px;
  }
  .product-list .item-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .category-page .productQuantityTextBox {
    float: left;
    width: 95%;
    text-align: center;
    font-size: 16px;
  }
  .category-page .add-to-cart-qty-wrapper span.plus {
    left: 0;
  }
  .category-page .add-to-cart-qty-wrapper span.minus {
    right: 7px;
  }
  .category-page .product-list .details-rtl .buttons {
    margin-top: 10px;
  }
  .footer .upper-footer .foot-col.follow {
    padding-right: 0;
  }
  .footer .upper-footer .foot-col input[type="text"] {
    width: 100%;
    padding: 0 10px;
    border-radius: 4px;
  }
  .footer .upper-footer .foot-col.follow input[type="button"] {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #ffffff;
  }
  .email-a-friend .email-a-friend-button {
    width: 100%;
  }
  .email-a-friend {
    width: 100%;
  }
  .product-modular-page .submit-ticket {
    margin-left: 0px !important;
  }
  .overview-buttons div {
    display: inline-block;
    margin: 0 0px 8px;
  }
  .prices-modularproducts {
    width: 100%;
  }
  .page.product-modular-page .product-price {
    font-size: 20px;
  }
  .add-to-cart-modularproduct {
    text-align: center !important;
  }
  .product-modular-list .variant-picture {
    width: 100% !important;
    text-align: center !important;
  }
  .product-modular-info {
    margin-left: 0 !important;
  }
  .product-details-page .product-price-heading {
    float: left;
    width: 100%;
    margin: 15px auto 15px;
  }
  .product-details-page .nop-jcarousel {
    padding: 0 0px 0 0px !important;
    max-width: 100%;
  }
  .product-details-page .nop-jcarousel.product-grid {
    width: 80% !important;
    margin: 0 auto !important;
  }
  .product-details-page .product-tags-box {
    margin: 30px 0 35px;
  }
  .also-purchased-products-grid.product-grid,
  .related-products-grid.product-grid {
    margin-top: 0px !important;
  }
  .product-details-page .productTabs-header {
    margin: 0 -10px;
  }
  .product-details-page .productTabs.ui-tabs .ui-tabs-nav li {
    display: inline-block;
    margin: 0 0.333%;
    text-align: center;
    vertical-align: top;
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .product-details-page .productTabs.ui-tabs .ui-tabs-nav li:last-child a {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 90px;
  }
  .product-details-page .ui-tabs .ui-tabs-nav li a {
    padding: 10px 5px;
    font-size: 10px;
    letter-spacing: 0px;
    font-weight: 300;
    color: #8c8c8c;
    border: 1px solid #8c8c8c;
    text-transform: uppercase;
    transition: all 0.1s ease;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: 0px;
  }
  .product-details-page .productTabs-body {
    border-top: 0px solid #5767507d;
    margin-top: -5px;
  }
  .product-details-page .attributes-wrapper {
    padding: 0px;
  }
  .product-details-page .attributes-wrapper {
    display: flex;
    flex-direction: column;
  }
  .product-details-page .attributes {
    order: 2;
    padding: 0;
  }
  .product-details-page .attributes-wrapper {
    border: 0px solid #eeeeee;
    margin-bottom: 0px;
  }
  .product-details-page .product-price-wrap .add-to-cart-button {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
  .product-details-page .overview .pre-order-availability-date {
    color: green !important;
    margin-bottom: 15px;
  }
  .product-details-page .product-price-wrap .tax-shipping-info {
    text-align: center;
  }
  .product-details-page .product-price-wrap {
    padding: 0 0px;
  }
  .product-details-page .overview .add-to-cart {
    max-width: 260px;
    display: block;
    margin: 0 auto;
    width: calc(100% - 15px);
  }
  .product-details-page .delivery {
    margin-bottom: 15px;
  }
  .product-details-page .overview .add-to-wishlist {
    margin-left: 0;
    width: 100%;
    float: left;
  }
  .product-details-page .overview .fns-rfq-block {
    display: inline-block;
    float: left;
    margin-left: 0px;
    width: 100%;
    margin-top: 8px;
  }
  .gallery {
    margin: 0 auto 15px;
  }
  .mobile-name-holder {
    margin-bottom: 15px;
  }
  .gallery .thumb-item {
    width: 45px;
  }
  .product-name {
    border-bottom: #000 solid 0px;
  }
  .product-social-buttons {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .product-name .manufacturers,
  .overview .manufacturers {
    width: 100%;
  }
  .hero {
    background-position: right top !important;
  }
  .full-width.hero {
    height: 570px !important;
    padding: 0 20px;
  }
  .hero .cck h4 {
    font-size: 23px;
  }
  .hero .cck p {
    max-width: 100%;
  }
  .home-intro-left-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .home-intro-right-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .home-intro-container h1 {
    font-size: 36px;
  }
  .intro-text1 {
    margin-top: 15px;
    padding: 0 15px;
    text-align: left;
    display: block;
  }
  .home-page .topic-block {
    width: 100%;
  }
  .home-intro .topic-block-body p {
    font-size: 18px;
    line-height: normal;
  }
  .home-intro-left-col.second-img {
    order: 1;
  }
  .intro-text2 {
    margin-top: 15px;
    padding: 0 15px;
    text-align: left;
  }
  .best-feature-section .item-box .picture {
    height: 100px;
    min-height: 100px;
  }
  .best-feature-section .jCarouselMainWrapper .slick-dots {
    display: none !important;
  }
  .home-intro-container img {
    height: auto;
    width: 100%;
    padding: 15px;
  }
  .topic-block {
    padding: 0 15px;
  }
  .home-page .topic-block-body {
    padding: 0 0px;
  }
  .best-feature-section {
    margin-top: 10px;
  }
  .products-mobile-navigation select {
    background: #ffffff url(../img/select-arrow-dark.svg) no-repeat right 15px
      center !important;
    margin-bottom: 10px !important;
  }
  .best-feature-section .bestseller-featured-content {
    padding-bottom: 10px !important;
    padding-top: 20px !important;
  }
  .spc-header .title {
    line-height: normal;
  }
  .home-n-business-content .toilet-options li .option-right {
    padding-right: 15px;
    padding-left: 15px;
  }
  .home-how-it-work h2 {
    font-size: 28px;
    line-height: normal;
  }
  .home-how-it-work {
    padding: 30px 0;
  }
  .home-how-it-work p {
    font-size: 16px;
    line-height: normal;
  }
  .home-how-it-work a {
    margin-top: 10px;
  }
  .home-page .rich-blog-homepage .title {
    margin: 0 0 20px;
    font-size: 28px;
  }
  .home-page .rich-blog-homepage {
    margin: 30px 0 30px;
    text-align: center;
  }
  .home-page .product-grid {
    margin: 30px 0 30px;
  }
  .blog-container {
    margin: 0 auto;
    padding: 0 15px;
  }
  .home-page .rich-blog-homepage .view-all a {
    margin-top: 20px;
  }
  .home-page .rich-blog-homepage .post-description,
  .home-page .rich-blog-homepage .read-more {
    display: block !important;
  }
  .rich-blog-homepage .post-description h3 {
    font-weight: normal;
    margin-top: 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .hpc h4 {
    max-width: 100%;
    font-size: 28px;
    text-align: center;
  }
  .hpc p {
    max-width: 100%;
    margin-bottom: 25px;
    font-size: 16px;
  }
  .outline-btn {
    display: block;
    text-align: center;
  }
  .hpc .tellus {
    font-size: 16px;
    max-width: 100%;
    margin-top: 25px;
  }
  .home-page .full-width.hpc {
    padding: 30px 20px 0px 20px !important;
  }
  .footer .upper-footer {
    padding: 20px 0;
  }
  .footer .topic-block {
    max-width: 100%;
    padding: 0 0;
  }
  .footer .foot-container {
    padding: 0 15px;
  }
  .footer .upper-footer .foot-col.follow ul li {
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
  }
  .footer .upper-footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .footer .upper-footer .foot-col.follow {
    width: 100%;
    text-align: center;
    border-bottom: #fff solid 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .footer .upper-footer .foot-col.follow img {
    max-width: 28px;
  }
  .footer .upper-footer .foot-col.payment {
    border-top: #fff solid 1px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-top: 10px;
  }
  .footer .foot-col.payment li {
    display: inline-block;
    width: 16%;
    margin-bottom: 0px;
  }
  .footer .foot-col.payment li img {
    max-width: 40px;
  }
  .footer .upper-footer li {
    font-size: 12px;
    line-height: 22px;
  }
  .footer .lower-footer .brand-col,
  .footer .lower-footer .about-col,
  .footer .lower-footer .brand-col img {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 180px;
  }
  .footer .lower-footer .about-col p {
    max-width: 100%;
    margin-left: 0;
    font-size: 14px;
  }
  .footer .lower-footer .about-col p:first-child {
    margin-bottom: 10px;
  }
  .footer .lower-footer p {
    font-size: 14px;
  }
  .footer .lower-footer {
    padding: 20px 0;
  }
  .home-n-business-content .cck-right .cck-inner h2 {
    font-size: 28px;
    padding-bottom: 10px;
  }
  .home-n-business-content .cck-inner {
    padding: 20px 0;
  }
  .home-n-business-content .cck-inner h2 {
    padding: 0 32px 10px 32px;
  }
}

@media (min-width: 992px) {
  .contact-left {
    width: 50%;
  }
  .contact-right {
    width: 48%;
  }
}

@media (max-width: 1199px) {
  .overview .compare-products {
    padding-left: 0 !important;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .variant-picture + .variant-overview {
    margin: 0 0 0 350px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    float: none;
    margin-bottom: 0;
    width: calc(100% - 350px);
    margin-left: 20px;
    text-align: left;
  }
  /*Search header css*/
  /*.search-box {
    display: inline-block;
    font-size: 0;
    position: absolute;
    top: 9px;
    left: 0px;
    background: none !important;
    border-radius: 4px;
    width: 73% !important;
  }*/
  #small-search-box-form label {
    left: 20px;
    font-size: 16px;
    color: white;
    float: left;
    top: 13px;
    position: absolute;
  }
  .header-selectors-wrapper select {
    left: 22%;
  }
  /*.store-search-box span.search-box-text.narrow {
        width: calc(90% - 247px) !important;
        margin: 0 0 0 40% !important;
    }*/
  .store-search-box .instantSearch {
    width: calc(100% - 250px) !important;
    margin: 0 0 0 250px !important;
  }
  /* #small-search-box-form span.search-box-text .k-input {
        width: 90% !important;
        float: right;
        margin-right: 10px;
    } */
  .search-box-select {
    width: 20% !important;
    border-radius: 3px 3px 3px 3px !important;
  }
  .search-box .search-box-button {
    position: absolute;
    right: 0;
  }
  /*End*/
  .header-menu {
    padding: 0 0vw !important;
  }
  .header-menu > ul > li > a,
  .header-menu > ul > li > span {
    font-size: 13px;
  }
  .category-navigation-title {
    font-size: 13px;
    width: 170px;
    padding: 0 5px;
  }
  .header-selectors-wrapper,
  .header-lower {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .email-a-friend .email-a-friend-button {
    width: 100%;
  }
  .email-a-friend {
    width: 100%;
  }
  .product-modular-page .submit-ticket {
    margin-left: 0px !important;
  }
  .overview-buttons div {
    display: inline-block;
    margin: 0 0px 8px;
  }
  .prices-modularproducts {
    width: 100%;
  }
  .page.product-modular-page .product-price {
    font-size: 20px;
  }
  .add-to-cart-modularproduct {
    text-align: center !important;
  }
  .product-modular-list .variant-picture {
    width: 30% !important;
    text-align: center !important;
  }
  .product-modular-info {
    margin-left: 31% !important;
  }
  .product-details-page .product-price-heading {
    float: left;
    width: 100%;
    margin: 15px auto 15px;
  }
  .next-prev-wrapper {
    padding: 16px 0px;
  }
  .next-prev-wrapper .next-prev-container {
    margin: 0 auto;
    width: 88%;
  }
  .product-details-page .attributes-wrapper {
    display: flex;
    flex-direction: column;
  }
  .overview .add-to-wishlist {
    margin-left: 0px !important;
  }
  .product-price-wrap .add-to-cart-button {
    margin-top: 0px !important;
  }
  .product-name {
    margin-bottom: 15px !important;
  }
  .product-details-page .attributes {
    order: 2;
    padding: 0;
  }
  .gallery .thumb-item {
    width: 50px;
  }
  .productTabs.ui-tabs .ui-tabs-panel {
    margin: 0 0px !important;
  }
  .product-price-heading {
    margin: 15px auto 15px;
  }
  .overview .add-to-cart-panel {
    display: inline-block;
    margin: 15px 0;
    width: 250px;
  }
  .product-price-wrap .tax-shipping-info {
    color: black;
    text-align: center;
  }
  .overview .fns-rfq-block {
    display: inline-block;
    float: left;
    margin-left: 0;
    margin-top: 10px;
  }
  .intro-text1 {
    margin-top: 50px;
    padding: 0 20px;
  }
  .home-intro-container h1 {
    font-size: 36px;
  }
  .intro-text2 {
    margin-top: 20px;
    padding: 0 20px;
    text-align: left;
  }
  .home-intro .topic-block-body p {
    font-size: 16px;
    line-height: 24px;
  }
  .product-grid .ajax-cart-button-wrapper .add-to-cart-qty-wrapper,
  .product-grid .item-box .productQuantityDropdown {
    margin-right: 0px !important;
  }
  .item-box .button-2 {
    font-size: 12px;
  }
  .home-n-business-content .cck-left {
    padding-left: 0 !important;
    padding-right: 0;
  }
  .home-how-it-work {
    padding: 90px 0;
  }
  .full-width.hpc .in {
    padding-top: 50px !important;
  }
}
@media all and (max-width: 1024px) {
  .header-upper {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .email-a-friend .email-a-friend-button {
    width: 100%;
  }
  .email-a-friend {
    width: 100%;
  }
  .product-modular-page .submit-ticket {
    margin-left: 0px !important;
  }
  .overview-buttons div {
    display: inline-block;
    margin: 0 0px 8px;
  }
  .prices-modularproducts {
    width: 100%;
  }
  .page.product-modular-page .product-price {
    font-size: 20px;
  }
  .add-to-cart-modularproduct {
    text-align: center !important;
  }
  .product-modular-list .variant-picture {
    width: 30% !important;
    text-align: center !important;
  }
  .product-modular-info {
    margin-left: 31% !important;
  }
  .product-details-page .product-price-heading {
    float: left;
    width: 100%;
    margin: 15px auto 15px;
  }
  .next-prev-wrapper {
    padding: 16px 0px;
  }
  .next-prev-wrapper .next-prev-container {
    margin: 0 auto;
    width: 88%;
  }
  .product-details-page .attributes-wrapper {
    display: flex;
    flex-direction: column;
  }
  .overview .add-to-wishlist {
    margin-left: 0px !important;
  }
  .product-price-wrap .add-to-cart-button {
    margin-top: 0px !important;
  }
  .product-name {
    margin-bottom: 15px !important;
  }
  .product-details-page .attributes {
    order: 2;
    padding: 0;
  }
  .gallery .thumb-item {
    width: 50px;
  }
  .productTabs.ui-tabs .ui-tabs-panel {
    margin: 0 0px !important;
  }
  .product-price-heading {
    margin: 15px auto 15px;
  }
  .overview .add-to-cart-panel {
    display: inline-block;
    margin: 15px 0;
    width: 250px;
  }
  .product-price-wrap .tax-shipping-info {
    color: black;
    text-align: center;
  }
  .overview .fns-rfq-block {
    display: inline-block;
    float: left;
    margin-left: 0;
    margin-top: 10px;
  }
  .intro-text1 {
    margin-top: 50px;
    padding: 0 20px;
  }
  .home-intro-container h1 {
    font-size: 36px;
  }
  .intro-text2 {
    margin-top: 20px;
    padding: 0 20px;
    text-align: left;
  }
  .home-intro .topic-block-body p {
    font-size: 16px;
    line-height: 24px;
  }
  .product-grid .ajax-cart-button-wrapper .add-to-cart-qty-wrapper,
  .product-grid .item-box .productQuantityDropdown {
    margin-right: 0px !important;
  }
  .item-box .button-2 {
    font-size: 12px;
  }
  .home-n-business-content .cck-left {
    padding-left: 0 !important;
    padding-right: 0;
  }
  .home-how-it-work {
    padding: 90px 0;
  }
  .full-width.hpc .in {
    padding-top: 50px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .email-a-friend .email-a-friend-button {
    width: 100%;
  }
  .variant-overview .add-to-wishlist button {
    margin-top: 10px;
    float: left;
  }
  .variant-picture + .variant-overview {
    margin: 0 0 0 350px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    float: none;
    margin-bottom: 0;
    width: calc(100% - 245px);
    margin-left: 20px;
    text-align: left;
  }
  .grouped-product-box {
    padding-top: 10px;
  }
  .variant-picture {
    max-width: 220px;
    max-height: 220px;
  }
  .rich-blog-homepage a.read-more {
    display: block !important;
    position: absolute;
    width: 100%;
    bottom: 0;
  }
  .variant-overview .add-to-wishlist {
    width: 100% !important;
    float: none !important;
  }
  .variant-overview .product-variant-list .add-to-wishlist {
    width: 100%;
    margin-top: 10px;
  }
  .rich-blog-homepage .blog-post {
    height: 186px !important;
    position: relative !important;
  }
  .home-intro-container img {
    height: auto;
  }
  .email-a-friend {
    width: 100%;
  }
  .product-modular-page .submit-ticket {
    margin-left: 0px !important;
  }
  .overview-buttons div {
    display: inline-block;
    margin: 0 0px 8px;
  }
  .prices-modularproducts {
    width: 100%;
  }
  .page.product-modular-page .product-price {
    font-size: 20px;
  }
  .add-to-cart-modularproduct {
    text-align: center !important;
  }
  .product-modular-list .variant-picture {
    width: 30% !important;
    text-align: center !important;
  }
  .product-modular-info {
    margin-left: 31% !important;
  }
  .product-details-page .product-price-heading {
    float: left;
    width: 100%;
    margin: 15px auto 15px;
  }
  .product-details-page .ui-tabs .ui-tabs-nav li a {
    padding: 15px 10px !important;
    font-size: 13px !important;
  }
  .product-details-page .ui-tabs .ui-tabs-nav li {
    display: inline-block;
    margin: 0 5px !important;
  }
  .product-details-page .productTabs.ui-tabs .ui-tabs-panel {
    margin: 0 0px !important;
  }
  .gallery .thumb-item {
    width: 50px;
  }
  .product-price-heading {
    margin: 15px auto 15px;
  }
  .overview .add-to-cart-panel {
    display: inline-block;
    margin: 15px 0;
    width: 250px;
  }
  .product-details-page .attributes-wrapper {
    display: flex;
    flex-direction: column;
  }
  .product-details-page .attributes {
    order: 2;
    padding: 0;
  }
  .product-price-wrap .tax-shipping-info {
    color: black;
    text-align: center;
  }
  .overview .fns-rfq-block {
    display: inline-block;
    float: left;
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  .overview .add-to-wishlist {
    margin-left: 0;
    width: 100%;
    float: left;
  }
  .productTabs.ui-tabs .ui-tabs-panel {
    margin: 0 0px;
  }
  .product-details-page .nop-jcarousel {
    padding: 0 0px 0 0px !important;
  }
  .product-details-page .nop-jcarousel.product-grid {
    width: 100%;
    margin: 0 auto !important;
  }
  .product-name {
    margin-bottom: 20px;
  }
  .full-width.hero {
    background-position: right top !important;
    height: 500px !important;
    padding: 0 60px;
  }
  .hero .cck h4 {
    font-size: 33px;
    text-align: center;
  }
  .hero .cck h1 {
    font-size: 46px;
    text-align: center;
  }
  .hero .cck p {
    max-width: 100%;
  }
  .hero .cck {
    text-align: center;
  }
  .home-page .topic-block {
    width: 100%;
  }
  .intro-text1 {
    margin-top: 20px;
    padding: 0 20px;
    text-align: left;
    display: block;
  }
  .home-intro-container h1 {
    font-size: 28px;
  }
  .intro-text2 {
    margin-top: 20px;
    padding: 0 20px;
    text-align: left;
  }
  .buttons .ajax-cart-button-wrapper {
    display: inline-block !important;
    width: 100%;
  }
  .product-grid .ajax-cart-button-wrapper .add-to-cart-qty-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-right: auto !important;
    margin-left: auto;
    float: none;
    max-width: inherit;
  }
  .productbox-buttons .buttons {
    min-height: 112px;
    float: left;
    width: 100%;
  }
  .product-grid
    .ajax-cart-button-wrapper
    .add-to-cart-qty-wrapper
    input[type="text"] {
    border-right: 1px solid #969696;
  }
  ul.toilet-options li a {
    max-width: 100%;
  }
  .best-feature-section .bestseller-featured-content {
    padding-bottom: 10px !important;
    padding-top: 30px !important;
  }
  .spc-header .title {
    margin-bottom: 20px !important;
  }
  .spc.spc-products .tab {
    padding: 10px 0px;
    border-radius: 0px;
    font-size: 28px;
    font-weight: 300;
    border-bottom: transparent solid 1px;
  }
  .spc-products .spc-header li {
    letter-spacing: 0px !important;
    text-transform: none;
    margin-left: 30px !important;
  }
  .spc.spc-products .tab.active,
  .spc.spc-products .tab.active:hover {
    background-color: transparent;
    color: #000;
    border-bottom: #95c539 solid 1px;
  }
  .home-how-it-work {
    padding: 50px 0;
  }
  .home-page .rich-blog-homepage {
    margin: 50px 0 50px;
    text-align: center;
  }
  .blog-container {
    padding: 0 15px;
  }
  .rich-blog-homepage .blog-post {
    float: left;
    width: 47%;
    margin-left: 2% !important;
  }
  .full-width.hpc p,
  .hpc h4 {
    text-align: center !important;
    max-width: 100% !important;
  }
  .outline-btn {
    display: block;
    text-align: center;
  }
  .hpc .tellus {
    font-size: 24px;
    max-width: 440px;
    margin-top: 25px;
  }
  .footer .topic-block {
    max-width: 100%;
    padding: 0 0;
  }
  .footer .foot-container {
    padding: 0 20px;
  }
  .footer .upper-footer h3 {
    margin-bottom: 20px;
  }
  .footer .lower-footer .brand-col {
    width: 22%;
  }
  .footer .lower-footer .about-col {
    width: 45%;
  }
}

/* k start 1-12 */

.category-navigation-title {
  color: #000;
}

.header-menu > ul > li > a,
.header-menu > ul > li > span {
  color: #000;
}

#small-searchterms-list::-webkit-scrollbar-thumb {
  background: #586752 !important;
}

.store-search-box .k-list-scroller::-webkit-scrollbar-thumb {
  background-color: #95c639 !important;
}

.option-list input[type="radio"]:checked + label:before {
  background-color: #95c639;
  box-shadow: 0 0 0 1px #95c639;
}

.footer .upper-footer .foot-col.follow p span {
  color: #8bc34a;
}

#checkout-step-confirm-order .terms-of-service a {
  color: #95c639;
}

.bestseller-featured-content ul.navigation {
  margin-bottom: 20px !important;
}

.product-modular-list .qty-input.ui-spinner-input {
  font-weight: bold;
  color: #000;
  font-size: 18px !important;
}

.cart .product a.product-name:hover {
  color: #95c639 !important;
}

.mega-menu .sublist li > a.with-subcategories.hover:before {
  color: #95c639 !important;
  transform: rotate(90deg) translateY(10px);
}

.foot-p p.title {
  color: #8bc34a !important;
  margin-bottom: 0px !important;
}

.terms-of-service input[type="checkbox"] + label:before,
.terms-of-service input[type="checkbox"] + label:after {
  right: -70px;
  left: auto !important;
  margin: 0;
}

.terms-of-service input[type="checkbox"]:checked ~ label:before {
  right: -60px;
  top: 3px !important;
}

.terms-of-service input[type="checkbox"] + label {
  /* padding-left: 0 !important; */
}

div#checkout-payment-info-load > div {
  text-align: right;
}

.checkout-page .new-address-next-step-button {
  margin-bottom: 16px !important;
}

.checkout-page .new-address-next-step-button span {
  line-height: 26px;
}

.checkout-page .new-address-next-step-button span small {
  font-size: 20px;
}

button#btnprint {
  display: inline-block;
  border: 2px solid #95c639;
  background: #95c639;
  font-size: 16px;
  height: 45px;
  width: 40px;
  /* margin-right: 59px; */
  /* margin-bottom: 10px; */
  width: 100%;
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 3px;
  font-weight: 500;
  color: #ffffff;
}

button#btnprint img {
  /* filter: invert(97%) sepia(25%) saturate(6682%) hue-rotate(21deg) brightness(96%) contrast(59%); */
  padding-right: 15px;
  height: 29px;
  filter: invert(1);
}

.quickViewWindow .overview .compare-products + .delivery {
  margin-top: 0 !important;
  display: inline-block;
  width: calc(100% - 280px);
  padding-left: 10px;
  vertical-align: middle;
}

.overview .compare-products {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}

.add-to-cart-qty-wrapper + .ajax-cart-button-wrapper input {
  margin-left: 0;
}

.quickView .overview .add-to-cart {
  margin-bottom: 10px !important;
}

.quickView .overview .stock,
.quickViewWindow .overview .purchase-area,
.quickViewWindow .overview .short-description {
  padding-left: 20px;
}

.quickViewWindow .overview #accordion .purchase-area .prices {
  margin: 15px 0 !important;
  text-align: left !important;
}

.block.block-recently-viewed-products .product-social-buttons.SocialCustom {
  float: none;
  clear: left;
  position: relative;
  bottom: auto;
  margin: 0px;
  width: 52%;
  padding-left: 10px;
}

.block.block-recently-viewed-products .product-review-box {
  text-align: left;
  display: block;
}

.block.block-recently-viewed-products .product-social-sharing a,
.block.block-recently-viewed-products
  .product-social-sharing
  .email-a-friend
  input {
  display: inline-block !important;
  width: 13px !important;
  border: 0;
  font-size: 15px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: right;
}

.block-category-navigation .listbox > ul > li.active > a:before {
  filter: invert(73%) sepia(50%) saturate(483%) hue-rotate(42deg)
    brightness(87%) contrast(93%);
}

.footer .upper-footer .foot-col.follow p.foot-ttile {
  color: #95c639;
  margin-bottom: 0;
}

.item-box .details .productbox-buttons .buttons .add-to-cart-qty-wrapper {
  margin: 0 auto !important;
  float: none !important;
}

.item-box
  .details
  .productbox-buttons
  .buttons
  input.button-2.product-box-add-to-cart-button {
  margin: 0px auto !important;
}

#checkout-step-shipping-instructions .button-1,
#checkout-step-shipping .button-1,
#shipping-instructions-buttons-container .button-1,
#payment-method-buttons-container .button-1,
#checkout-step-payment-info .button-1,
#checkout-step-payment-info .print,
#checkout-step-confirm-order .button-1,
#checkout-step-shipping-method .button-1 {
  margin-bottom: 16px;
}

#checkout-step-shipping-instructions .modal-dialog .button-1 {
  margin-bottom: 0;
}

.order-completed-page .order-completed-continue-button {
  margin-bottom: 25px;
}

.attributes-wrapper p.please-select-attr {
  font-weight: 600;
  color: #95c539;
  font-size: 16px;
}

.checkout-page .edit-address .required-label {
  margin-bottom: 0 !important;
}

.shipping-instructions .required {
  position: relative !important;
  display: inline-block !important;
  right: auto !important;
  float: none;
  margin: -10px 0px 0 3px !important;
}

#site-delivery-char-limit-display,
#instructions-char-limit-display {
  margin-top: 10px;
}

.inputs .option-list {
  margin-top: 10px;
}

.shopping-cart-page .inputs label {
  margin: 0 10px 10px 0;
  font-weight: bold;
  display: inline-block;
}

.contact-right .required-label label {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: bold;
}

.password-recovery-page label,
.login-page label {
  margin-bottom: 10px !important;
  display: inline-block;
}

.center-2 .product-list .item-box .buttons .button-2:hover {
  background-color: #7da530 !important;
}

.group-overview .compare-products {
  padding-left: 0 !important;
}

.product-variant-list .add-to-wishlist-button {
  width: auto;
  padding: 0;
  height: 40px;
  margin-left: 5px !important;
  padding: 0 13px;
}

.product-variant-list .add-to-wishlist {
  width: auto;
  display: inline;
  float: left;
}

.product-variant-list .add-to-cart-panel {
  display: block;
}

.two-thirds {
  width: 100%;
}

.one-third p {
  margin-bottom: 0;
}

.two-thirds p {
  text-align: left;
}

.topic-page .two-thirds ul {
  margin-bottom: 10px !important;
}

.variant-overview .add-to-wishlist-button:hover:before {
  color: #fff;
}

.variant-overview .group-btn .ajax-cart-button-wrapper {
  width: auto !important;
}

.button-2.estimate-shipping-button {
  font-size: 13px !important;
  padding: 0 0px 0 4px !important;
}
.product-modular-page .compare-products .add-to-compare-list-button {
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .product-modular-page .overview-buttons {
    clear: both;
  }

  .product-modular-page .overview-buttons div {
    margin: 0;
    padding: 0 10px 0 10px;
  }
}

.overview .back-in-stock-subscription button {
  background-color: #f1f1f1;
  color: black;
  font-size: 15px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.overview .back-in-stock-subscription button:hover {
  background-color: #ddd9d9;
}

.back-in-stock-subscription:before {
  vertical-align: middle;
}

@media (min-width: 1281px) {
  .product-modular-page .overview .submit-ticket {
    padding-left: 0px;
  }
}
.old-product-price {
  display: block;
}
.overview .old-product-price {
  font-size: 14px;
}

