@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 DISPLAY-ROLE RESET FOR OLDER BROWSERS */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*****************/
/* BOX MODEL FIX */
/*****************/
*,
*:before,
*:after {
  box-sizing: border-box;
}

/*************/
/* CLEAR FIX */
/*************/
.clear {
  clear: both;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* CB Additions */
input[type=submit], input[type=button], a {
  cursor: pointer;
}

input[type=text], input[type=password], input[type=email], input[type=submit], input[type=button], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

select {
  -webkit-border-radius: 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

fieldset {
  min-width: 0;
  /* Allows forms to scale down properly for mobile */
}

/* End of CB Additions */
/************** 

Add reusable elements here. For example, with colors:

$blue: #0000ff;

To then implement this in the other .scss files:

.class {
	color: $blue;
}

***************/
/*****************************************************************

PADDING & MARGIN

The mixins and CSS classes below for padding and margin should not be used for the Header & Footer. 

*****************************************************************/
/* PADDING & MARGIN SMALL **************/
@media (min-width: 1024px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pad-sm {
    padding: 10px;
  }
}

@media (min-width: 1024px) {
  .pad-top-sm {
    padding-top: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-top-sm {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .pad-top-sm {
    padding-top: 10px;
  }
}

@media (min-width: 1024px) {
  .margin-top-sm {
    margin-top: 20px;
  }
}
@media (max-width: 1023px) {
  .margin-top-sm {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .margin-top-sm {
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .pad-right-sm {
    padding-right: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-right-sm {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .pad-right-sm {
    padding-right: 10px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-sm {
    padding-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-sm {
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pad-left-sm {
    padding-left: 10px;
  }
}

/* PADDING & MARGIN MEDIUM **************/
@media (min-width: 1024px) {
  .pad-md {
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-md {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .pad-md {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-top-md {
    padding-top: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-top-md {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .pad-top-md {
    padding-top: 20px;
  }
}

@media (min-width: 1024px) {
  .margin-top-md {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .margin-top-md {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .margin-top-md {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-right-md {
    padding-right: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-right-md {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .pad-right-md {
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-md {
    padding-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-md {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-md {
    padding-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-md {
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-md {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-md {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-left-md {
    padding-left: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-left-md {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .pad-left-md {
    padding-left: 20px;
  }
}

/* PADDING & MARGIN LARGE **************/
@media (min-width: 1024px) {
  .pad-lg {
    padding: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-lg {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .pad-lg {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-top-lg {
    padding-top: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-top-lg {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .pad-top-lg {
    padding-top: 40px;
  }
}

@media (min-width: 1024px) {
  .margin-top-lg {
    margin-top: 80px;
  }
}
@media (max-width: 1023px) {
  .margin-top-lg {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .margin-top-lg {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-right-lg {
    padding-right: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-right-lg {
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .pad-right-lg {
    padding-right: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-lg {
    padding-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-lg {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-lg {
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-lg {
    margin-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-lg {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-lg {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-left-lg {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-left-lg {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .pad-left-lg {
    padding-left: 40px;
  }
}

/* PADDING & MARGIN EXTRA LARGE **************/
@media (min-width: 1024px) {
  .pad-xl {
    padding: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-xl {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pad-xl {
    padding: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-top-xl {
    padding-top: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-top-xl {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pad-top-xl {
    padding-top: 60px;
  }
}

@media (min-width: 1024px) {
  .margin-top-xl {
    margin-top: 120px;
  }
}
@media (max-width: 1023px) {
  .margin-top-xl {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .margin-top-xl {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-right-xl {
    padding-right: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-right-xl {
    padding-right: 80px;
  }
}
@media (max-width: 767px) {
  .pad-right-xl {
    padding-right: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-xl {
    padding-bottom: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-xl {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-xl {
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-xl {
    margin-bottom: 120px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-xl {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-xl {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-left-xl {
    padding-left: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-left-xl {
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .pad-left-xl {
    padding-left: 60px;
  }
}

/************** 

Base button styles for the front-end of the site should go here.

***************/
/* Standard button: this includes css used for all buttons, plus padding and font-size for a default button */
.hcontent a.button,
.hcontent input.button[type=submit],
.hcontent input.button[type=button],
a.button,
input.button[type=submit],
input.button[type=button] {
  font-size: 16px;
  border-radius: 0;
  border: none;
  display: inine-block;
  padding: 15px 18px 12px 18px;
  font-family: "eurostile";
  text-transform: uppercase;
  display: inline-block;
  line-height: 100%;
}

/* Button Size Modifiers: these dictate the button size and would be smaller/larger than ".button", so you'd include padding and font-size */
a.button.button-lg,
input.button.button-lg[type=submit],
input.button.button-lg[type=button] {
  font-size: 18px;
  padding: 18px 30px;
}

/* Button Color Modifiers: these dictate the button color, so you'd include background-color, color, and possibly border */
.hcontent a.button-primary,
.hcontent input.button-primary[type=submit],
.hcontent input.button-primary[type=button],
a.button-primary,
input.button-primary[type=submit],
input.button-primary[type=button] {
  background: #425a3c;
  color: #fff;
}

.hcontent a.button-primary:hover,
.hcontent input.button-primary[type=submit]:hover,
.hcontent input.button-primary[type=button]:hover,
a.button-primary:hover,
input.button-primary[type=submit]:hover,
input.button-primary[type=button]:hover {
  background: #2e342e;
  color: #fff;
}

.hcontent a.button-primary:active,
.hcontent input.button-primary[type=submit]:active,
.hcontent input.button-primary[type=button]:active,
a.button-primary:active,
input.button-primary[type=submit]:active,
input.button-primary[type=button]:active {
  background: #2e342e;
  color: #fff;
}

.hcontent a.button-primary:focus,
.hcontent input.button-primary[type=submit]:focus,
.hcontent input.button-primary[type=button]:focus,
a.button-primary:focus,
input.button-primary[type=submit]:focus,
input.button-primary[type=button]:focus,
.hcontent a.button-primary:active,
.hcontent input.button-primary[type=submit]:active,
.hcontent input.button-primary[type=button]:active,
a.button-primary:active,
input.button-primary[type=submit]:active,
input.button-primary[type=button]:active,
.hcontent a.button-primary:visited,
.hcontent input.button-primary[type=submit]:visited,
.hcontent input.button-primary[type=button]:visited,
a.button-primary:visited,
input.button-primary[type=submit]:visited,
input.button-primary[type=button]:visited {
  background: #2e342e;
  color: #fff;
}

.hcontent a.button-secondary,
.hcontent input.button-secondary[type=submit],
.hcontent input.button-secondary[type=button],
a.button-secondary,
input.button-secondary[type=submit],
input.button-secondary[type=button] {
  background: #daa21b;
  color: #ffffff;
}

.hcontent a.button-secondary:hover,
.hcontent input.button-secondary[type=submit]:hover,
.hcontent input.button-secondary[type=button]:hover,
a.button-secondary:hover,
input.button-secondary[type=submit]:hover,
input.button-secondary[type=button]:hover {
  opacity: 0.9;
  color: #ffffff;
}

.hcontent a.button-secondary:focus,
.hcontent input.button-secondary[type=submit]:focus,
.hcontent input.button-secondary[type=button]:focus,
a.button-secondary:focus,
input.button-secondary[type=submit]:focus,
input.button-secondary[type=button]:focus,
.hcontent a.button-secondary:active,
.hcontent input.button-secondary[type=submit]:active,
.hcontent input.button-secondary[type=button]:active,
a.button-secondary:active,
input.button-secondary[type=submit]:active,
input.button-secondary[type=button]:active,
.hcontent a.button-secondary:visited,
.hcontent input.button-secondary[type=submit]:visited,
.hcontent input.button-secondary[type=button]:visited,
a.button-secondary:visited,
input.button-secondary[type=submit]:visited,
input.button-secondary[type=button]:visited {
  opacity: 0.9;
  color: #ffffff;
}

/************** 

This would be for Components or UC's (User Controls) we have built in our backend. 

Standard components in here as of 3/28:

1. Thank You Page UC - Styling for the thank you page after a form has been filled out.
2. Page Banner UC - Styling for a full width banner image + H1 and subheading. 
3. CTA Banner UC - Styling for a full width banner image + H1, subheading, and CTA buttons. 

***************/
/************************************************

THANK YOU PAGE UC

************************************************/
#wrapper_thank_you {
  text-align: center;
  padding: 40px 0 80px 0;
}

#wrapper_thank_you h1 {
  color: #333;
}

#wrapper_thank_you .thank-you-link {
  display: inline-block;
  width: 15%;
  margin: 0 2%;
}

#wrapper_thank_you .thank-you-link h2 {
  font-size: 18px;
}

#wrapper_thank_you .thank-you-link img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#wrapper_thank_you .thank-you-link img:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  #wrapper_thank_you .thank-you-link {
    display: inline-block;
    width: 43%;
    margin: 0 2%;
  }

  #wrapper_thank_you .thank-you-link h2 {
    font-size: 21px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  #wrapper_thank_you .thank-you-link {
    display: inline-block;
    width: 70%;
    margin: 2% auto;
  }

  #wrapper_thank_you .thank-you-link h2 {
    font-size: 18px;
  }
}
/************************************************

PAGE BANNER UC

************************************************/
.page-banner {
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
  position: relative;
}

.page-banner .setcontainer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.overlay-page-banner {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-banner .setcontainer h1 {
  font-size: 40px;
  margin: 0 0 15px 0;
}

.page-banner .setcontainer span {
  font-size: 24px;
}

@media (max-width: 480px) {
  .page-banner {
    padding: 30px 0;
  }
}
/* END OF PAGE BANNER UC */
/************************************************

CTA BANNER UC

************************************************/
.cta-banner {
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
  position: relative;
}

.cta-banner .setcontainer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.overlay-cta {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-banner .setcontainer h2 {
  font-size: 36px;
  margin: 0 0 15px 0;
}

.cta-banner .button-wrapper a {
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 30px 0;
  }

  .cta-banner .button-wrapper a {
    display: block;
    margin: 10px 0;
  }
}
/**
***************** Account-page Style
**/
body.account-page .tablesaw-stack tbody tr {
  border-bottom: 1px solid #dfdfdf;
}

body.account-page table.tablesaw-stack tbody tr:nth-child(2n+1) td {
  background: #f6f6f6;
}

body.account-page #wrapper_brand_cross_reference {
  padding-top: 20px;
}

body.account-page #refine {
  padding: 20px;
  background: #f6f6f6;
}

body.account-page #refine .hhTextBox {
  border: 1px solid #ddd;
  background: #fff;
  height: 40px;
  padding: 6px 12px;
  font-size: 16px;
  color: #959695;
  width: 100%;
  max-width: 300px;
}

body.account-page #refine select {
  border: 1px solid #ddd;
  background: #fff;
  height: 40px;
  padding: 6px 12px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("/Pub/images/dropdown-icon.png");
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 10px auto;
  -webkit-background-size: 10px auto;
  font-size: 16px;
  color: #959695;
  font-family: "lato";
  width: 100%;
  max-width: 300px;
}

body.account-page #refine h1 {
  margin-bottom: 20px;
}

body.account-page #refine .refitem {
  margin-bottom: 10px;
}

body.account-page #refine label {
  font-size: 16px;
  color: #959695;
  padding-top: 12px;
  display: inline-block;
}

.tablesaw thead {
  background: #2e342e;
}

.tablesaw thead tr:first-child th {
  font-family: "eurostile";
  text-transform: uppercase;
}

#login-form a {
  text-decoration: underline;
}

#login-form p {
  color: #666;
}

#wrapper_validate_email {
  padding: 50px 25px;
  background-color: #efefef;
  border: 1px solid #ccc;
  margin: 10px 0;
  font-size: 125%;
  text-align: center;
}
#wrapper_validate_email a {
  color: #425a3c;
  text-decoration: underline;
}

/* registration */
#wrapper_register input[type=text], #wrapper_register input[type=password] {
  border: 1px solid #777777;
}
#wrapper_register input.button {
  background-color: #425a3c;
  width: 100%;
}
#wrapper_register .check input {
  margin-right: 10px;
}
#wrapper_register .check {
  margin-bottom: 15px;
}
#wrapper_register .check a {
  color: #425a3c;
  text-decoration: underline;
}

/* selling groups */
#wrapper-sellinggroupdetail {
  padding: 20px 0 20px 0;
  max-width: 980px;
  margin: 0 auto;
}
#wrapper-sellinggroupdetail .group-image {
  border: 1px solid #ccc;
  padding: 10px;
}
#wrapper-sellinggroupdetail .group-desc {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
  margin-top: 25px;
}

/* free shipping content */
.free-shipping-content {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -400px;
  background-color: #425A3B;
  color: #fff;
  z-index: 999;
  transition: all 2s;
  overflow-y: auto;
  cursor: pointer;
}
.free-shipping-content .hcontent {
  color: #fff;
}
.free-shipping-content .hcontent h1, .free-shipping-content .hcontent h2, .free-shipping-content .hcontent h3, .free-shipping-content .hcontent h4, .free-shipping-content .hcontent h5, .free-shipping-content .hcontent h6, .free-shipping-content .hcontent ul, .free-shipping-content .hcontent li {
  color: #fff;
}
.free-shipping-content .hcontent p {
  color: #fff;
}
.free-shipping-content .free-shipping-content-inner {
  padding: 25px;
  max-width: 400px;
}
.free-shipping-content a.free-shipping-close {
  display: block;
  width: 100%;
  line-height: 2;
  color: #fff;
  text-align: right;
  padding-right: 25px;
  font-size: 24px;
}
.free-shipping-content.show-slide-out {
  right: 0;
}

@media (max-width: 480px) {
  .free-shipping-content {
    position: fixed;
  }
  .free-shipping-content.show-slide-out {
    right: 0;
    max-width: 85%;
  }
}
.newsletter-footer-close {
  display: none;
}

.newsletter-footer-overlay.show-popup {
  width: 100%;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999999998;
  opacity: 0.7;
  background-color: #000;
  transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715);
}

.newsletter-footer.show-popup {
  transition: all 300ms cubic-bezier(0.47, 0, 0.745, 0.715);
  position: fixed;
  max-width: 300px;
  max-height: 150px;
  min-width: 400px;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto !important;
  z-index: 999999999;
  text-align: center;
}
.newsletter-footer.show-popup a.newsletter-footer-close {
  position: absolute;
  right: 5px;
  top: 5px;
  display: block;
  color: #2e342e;
}
.newsletter-footer.show-popup ul.social-link {
  display: none !important;
}
.newsletter-footer.show-popup h2 {
  color: #2e342e !important;
}
.newsletter-footer.show-popup input#email[type=text], .newsletter-footer.show-popup input#email[type=text]::placeholder {
  border: 1px solid #ccc;
  color: #2e342e;
}
.newsletter-footer.show-popup input.newsletter-signup-button, .newsletter-footer.show-popup input.newsletter-signup-button:hover {
  background-color: #DAA11C;
  color: #fff;
}
.newsletter-footer.show-popup .newsletter-footer-inner {
  padding: 15px;
}

@media screen and (max-width: 640px) {
  .newsletter-footer.show-popup {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    min-width: 100%;
  }
}
#wrapper-search {
  padding: 40px 0;
}

#wrapper-search .menu-headers {
  font-family: "eurostile", Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  color: #2e342e;
  font-size: 21px;
  border-bottom: none;
}

#wrapper-search .facetdiv {
  font-family: inherit;
  color: #959695;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}

#wrapper-search a.facetentrykey {
  color: #959695;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
  position: absolute;
  left: 20px;
  right: 40px;
}

#wrapper-search a.expandswitcher {
  color: #425a3c;
  font-family: "latobold";
  text-decoration: underline;
  font-size: 14px;
  text-transform: uppercase;
}

#wrapper-search #breadcrumbs ul li {
  color: #425a3c;
  font-size: 14px;
}

#wrapper-search #breadcrumbs ul li a {
  color: #959695;
  text-decoration: underline;
}

#wrapper-search #ContentID h1 {
  padding: 20px 0;
}

#wrapper-search .cm-querybox-search {
  height: auto;
  background: #fff;
  display: inline-block;
}

#wrapper-search .cm-querybox-search input[type=text] {
  border: 1px solid #999;
  color: #959695;
  display: inline-block;
  float: right;
  font-family: "lato";
  font-size: 16px;
  height: 50px;
  max-width: 275px;
  padding: 10px 100px 10px 15px;
  width: 100%;
  max-width: inherit;
}

#wrapper-search .cm-querybox-search button[type=button] {
  background: #425a3c;
  border: medium none;
  bottom: 0;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 20px;
  height: auto;
}

#wrapper-search .current-search {
  background: #f6f6f6;
  padding: 15px;
}

#wrapper-search .current-search .current-search-title {
  font-size: 14px;
  color: #959695;
  font-weight: 400;
}

#wrapper-search .facetbody.refpanel {
  color: #425a3c;
  font-size: 14px;
}

#wrapper-search .current-search .facetbody a.cat.removeref {
  background: #425a3c;
  width: 16px;
  height: 16px;
  padding: 0;
  text-align: center;
  line-height: 16px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}

.cm-ui.ui-menu .ui-menu-item {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.cm-ui.ui-widget-content a {
  font-size: 15px !important;
  color: #959695 !important;
}

ul.suggestion-items li.suggestion-category {
  font-family: "eurostile", Arial, sans-serif;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background: #425a3c !important;
}

.product.ui-menu-item .product-sku {
  font-size: 13px;
  color: #959695;
}

.product.ui-menu-item a.product-link {
  color: #425a3c !important;
  font-family: "latobold";
  padding: 8px 0;
}

.product.ui-menu-item .product-desc {
  font-size: 14px;
  color: #959695;
}

#wrapper-search .line1 {
  padding: 5px 0;
  display: inline-block;
  width: 100%;
}

#wrapper-search .line1 label {
  color: #959695;
  font-size: 16px;
  margin-right: 5px;
}

#wrapper-search .line1 select {
  color: #959695;
  font-size: 16px;
  font-family: inherit;
  height: 35px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: 1px solid #ddd;
  padding: 6px 12px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("/Pub/images/dropdown-icon.png") no-repeat right 12px center/10px auto;
  font-family: "lato";
  font-size: 16px;
  padding-right: 35px;
}

#wrapper-search .line1 #sortPage {
  float: left;
}

#wrapper-search .line1 #perPage {
  float: right;
}

#wrapper-search .line2 {
  padding: 15px;
  background: #f6f6f6;
  color: #959695;
  display: inline-block;
  width: 100%;
  margin: 5px 0;
}

#wrapper-search .line2 #cm_metrics {
  padding: 0;
}

#wrapper-search .line2 .pagination {
  line-height: 100%;
}

#wrapper-search .line2 .pagination a {
  padding: 0 3px;
  color: #425a3c;
}

#wrapper-search .pagination.lowerpagination {
  padding: 15px;
  background: #f6f6f6;
  width: 100%;
}

#wrapper-search .pagination.lowerpagination {
  line-height: 100%;
}

#wrapper-search .pagination.lowerpagination a {
  padding: 0 3px;
  color: #425a3c;
}

#wrapper_search #subBlock {
  position: relative;
  overflow: hidden;
}

#wrapper_search #busyWrapper {
  left: 50%;
}

#wrapper_search .refinementtitle span {
  background: #425a3c;
  display: block;
  padding: 10px;
}

#wrapper-search #findParts.fixpos {
  position: relative;
}

#wrapper-search #findParts.fixpos #facetPanelWrapper {
  position: fixed;
  top: 10px;
  height: 98vh;
  overflow-y: auto;
  min-width: 285px;
}

#wrapper-search #findParts.fixpos #facetPanelWrapper.changepos {
  top: auto;
  bottom: 10px;
}

#wrapper-search #findParts.fixpos + #subBlock {
  float: right;
}

@media screen and (max-width: 991px) {
  #wrapper-search .menu-headers {
    font-size: 17px;
  }

  #wrapper-search #findParts.fixpos #facetPanelWrapper {
    min-width: inherit;
    position: static;
    height: auto;
  }

  #wrapper_search .refinementtitle span:after {
    font-family: fontawesome;
    display: inline-block;
    content: "";
    margin-left: 6px;
  }

  #wrapper-search .menu-headers.facethead.PanelControl:after {
    content: "";
    display: inline-block;
    font-family: fontawesome;
    margin-left: 6px;
  }

  #wrapper-search .menu-headers.facethead.PanelControl.expanded:after {
    content: "";
  }
}
@media screen and (max-width: 767px) {
  #wrapper_search #findParts, #wrapper_search #subBlock {
    width: 100%;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 639px) {
  #wrapper-search .line1 #perPage {
    float: left;
    margin: 10px 0 0;
  }

  #wrapper-search .line2, #wrapper-search .pagination.lowerpagination {
    text-align: center;
  }

  #wrapper-search .line2 #cm_metrics {
    float: none;
  }

  #wrapper-search .line2 .pagination {
    width: auto;
    display: inline-block;
    float: none;
  }
}
/* notification */
span.notification-icon {
  cursor: pointer;
  margin-left: 5px;
  padding: 0 5px;
  display: inline-block;
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
  color: #fff;
  min-width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
}
span.notification-icon.notifications-read {
  background-color: #4f5a4f;
}
span.notification-icon.notifications-pending {
  background-color: #daa21b;
}

.notification-wrapper {
  opacity: 0;
  visibility: hidden;
}

body.show-notifications .notification-wrapper {
  opacity: 1;
  visibility: visible;
}
body.show-notifications .notifications-overlay {
  opacity: 0.7;
}
body.show-notifications div#notification-container {
  right: 0;
}

.notifications-overlay {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  opacity: 0;
  z-index: 9999;
  transition: 0.3s all;
  cursor: pointer;
}

div#notification-container {
  position: fixed;
  max-width: 480px;
  right: -9999px;
  bottom: 0px;
  z-index: 99999;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-left: 1px solid #ccc;
  transition: 0.5s all;
  display: flex;
  flex-flow: column;
  box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.4);
  /*.note-type-1{ // notify me
    //  background-color:#6b7a6b !important;
  }
  .note-type-2{ // order update

          p.order-header{
              padding-bottom:5px;
              span{                   
                  padding-left:2px;
              }
          }

          p.package-item{               
              //color:#fff;
              //font-size:13px;
              a{
                  //color:#fff;
                  text-decoration:underline;
              }
          }     
          p.incomplete-order{
              font-size:11px;
              padding-top:5px;


          }
  }
  .note-type-3{ // message
    //  background-color:#7f8b7f !important;
  }
  */
}
div#notification-container .close-row {
  background: #fff;
  padding: 20px 40px 20px 20px;
  position: relative;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
div#notification-container .close-row .notifications-heading {
  font-family: "eurostile";
  text-transform: uppercase;
  font-size: 18px;
  color: #2e342e;
}
div#notification-container .close-row .notifications-heading .notifications-count {
  font-family: "lato", Arial, sans-serif;
  color: #7c7c7c;
  font-size: 15px;
  display: inline-block;
  margin-left: 2px;
  vertical-align: top;
}
div#notification-container .close-row a {
  font-size: 16px;
  color: #7c7c7c;
  text-decoration: underline;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s all;
}
div#notification-container .close-row a:hover {
  color: #555;
}
div#notification-container .notification-items {
  background: #fff;
  height: 100%;
  overflow-y: auto;
  font-size: 15px;
  flex: 1;
}
div#notification-container .notification-items .dismiss-all-row {
  background: #425a3c;
  text-align: center;
  padding: 15px;
}
div#notification-container .notification-items .dismiss-all-row a {
  color: #fff;
  font-size: 14px;
}
div#notification-container .notification-items .row-item {
  text-align: left;
  background: #fff;
  position: relative;
  border-bottom: 1px solid #ddd;
  display: block;
  width: 100%;
  padding: 25px 25px 25px 60px;
  transition: 0.3s all;
}
div#notification-container .notification-items .row-item:hover {
  background: #f6f6f6;
}
div#notification-container .notification-items .row-item .item-header:before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  display: block;
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
}
div#notification-container .notification-items .row-item.not-read .item-header {
  color: #daa21b;
}
div#notification-container .notification-items .row-item.not-read .item-header:before {
  background: #daa21b;
}
div#notification-container .notification-items .row-item:last-child {
  border-bottom: none;
}
div#notification-container .notification-items .note-message.hcontent {
  padding: 8px 0 8px;
  line-height: 1.4;
  font-size: 14px;
  display: inline-block;
  color: #7c7c7c;
}
div#notification-container .notification-items .note-message.hcontent p, div#notification-container .notification-items .note-message.hcontent li {
  line-height: 1.4;
  margin-bottom: 5px;
  font-size: 14px;
}
div#notification-container .notification-items .note-message.hcontent a {
  text-decoration: underline;
}
div#notification-container .notification-items a.note-message.hcontent {
  color: #7c7c7c;
}
div#notification-container .notification-items .icon {
  position: absolute;
  top: -16px;
  left: 10px;
  height: 32px;
  width: 32px;
  background-color: #6b7a6b;
  border: 1px outset #4f5a4f;
  border-radius: 5px;
  padding: 3px;
  font-size: 24px;
  text-align: center;
}
div#notification-container .notification-items .item-header {
  padding-bottom: 5px;
  margin-bottom: 5px;
  position: relative;
}
div#notification-container .notification-items .item-header .header-message {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
}
div#notification-container .notification-items .action-bar {
  font-size: 13px;
  padding: 15px 0 0 0;
}
div#notification-container .notification-items .action-bar .dismiss-note-wrapper {
  text-align: right;
}
div#notification-container .notification-items .action-bar a.dimiss-note {
  color: #999;
}
div#notification-container .notification-items .action-bar .item-date {
  padding-right: 5px;
  color: #999;
  line-height: 16px;
}
div#notification-container .notification-items span.button {
  display: inline-block;
  background: #808080 none repeat scroll 0 0;
  border-radius: 2px;
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 8px;
  text-decoration: none;
  transition: 0.3s background;
  margin-left: 5px;
  max-width: 50px;
  text-align: center;
  margin: 7px 7px 0 0;
}
div#notification-container .notification-items span.button:hover {
  background: #666;
}
@media (max-width: 480px) {
  div#notification-container .action-bar .dismiss-note-wrapper {
    margin-top: 15px;
  }
}

.notifications-label-mobile {
  text-align: center;
  padding: 8px 5px;
  font-size: 13px;
  background: #f6f6f6;
  border-bottom: 1px solid #ddd;
}

/************************************************

FLEXIMAGE

************************************************/
/***************************

START SITE SPECIFIC CSS

***************************/
body {
  background: #ffffff;
  color: #333;
  text-align: center;
  font-family: "lato", Arial, sans-serif;
  font-size: 16px;
  height: 100%;
  line-height: 1;
  -webkit-font-size-adjust: none;
  /* FIX: iOS Mobile Safari Font Adjustment */
}

/* Reusable Container Wrapper */
.setcontainer {
  max-width: 1220px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  text-align: left;
}

/* Anchor (Link) Settings & Focus */
:focus {
  outline: none;
}

a,
a:visited,
a:active,
a:hover {
  color: #333;
  text-decoration: none;
}

/* Default Heading Setup - Styling for standard content sections should be done in typography.css */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  cursor: default;
  font-family: "eurostile", Arial, sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 16px;
}

/* header section started */
/* top section */
.top-sec {
  background: #f6f6f6;
  box-shadow: 0 0 0 1px #ddd;
  padding: 5px 0;
}

.top-sec ul {
  margin: 0;
  padding: 0;
}

.top-sec ul li {
  display: inline-block;
  margin-right: 15px;
}

.top-sec ul li a,
.top-sec ul li a:link,
.top-sec ul li a:visited {
  color: #959695;
  font-size: 14px;
  text-transform: capitalize;
}

.top-sec ul li:nth-last-child(1) {
  margin-right: 0;
}

.top-sec ul.right {
  float: right;
}

.top-sec ul li a:hover {
  color: #2e342e;
}

/* top section ended */
/* Logo section started */
.logo-sec {
  display: inline-block;
  width: 100%;
  margin: 15px 0;
}

.logo-sec .header-left {
  font-family: eurostile;
  padding-top: 6px;
  margin-left: 0;
}

.logo-sec .header-right {
  padding-top: 18px;
  float: right;
}

.logo-sec .logo {
  display: inline-block;
  float: none;
  text-align: center;
  margin: 0;
}

.logo-sec .header-left h3 {
  color: #425a3c;
  font-size: 22px;
}

.logo-sec .header-left span {
  color: #959695;
  display: inline-block;
  width: 100%;
}

.logo-sec .logo a {
  display: inline-block;
}

.logo-sec .logo a img {
  max-width: 224px;
}

.logo-sec .srch-form {
  position: relative;
}

.logo-sec .srch-form input[type=text] {
  border: 1px solid #999;
  display: inline-block;
  float: right;
  font-size: 16px;
  height: 50px;
  max-width: 275px;
  padding: 10px 65px 10px 15px;
  width: 100%;
  font-family: "lato";
  color: #959695;
}

.logo-sec .srch-form input[type=text]::-webkit-input-placeholder {
  color: #959695;
  opacity: 1;
}

.logo-sec .srch-form input[type=text]::-moz-placeholder {
  color: #959695;
  opacity: 1;
}

.logo-sec .srch-form input[type=text]:-ms-input-placeholder {
  color: #959695;
  opacity: 1;
}

.logo-sec .srch-form input[type=text]:-moz-placeholder {
  color: #959695;
  opacity: 1;
}

.logo-sec .srch-form input[type=button], .logo-sec .srch-form input[type=submit] {
  background: #425a3c;
  border: medium none;
  bottom: 0;
  color: #ffffff;
  display: inline-block;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  font-family: fontawesome;
  font-size: 18px;
}

.logo-sec .srch-form input[type=button]:hover, .logo-sec .srch-form input[type=button]:focus, .logo-sec .srch-form input[type=submit]:hover, .logo-sec .srch-form input[type=submit]:focus {
  opacity: 0.95;
}

.logo-sec .phn-no {
  display: inline-block;
  margin-top: 10px;
  text-align: right;
  width: 100%;
}

.logo-sec .phn-no span, .logo-sec .phn-no span a {
  font-family: eurostile;
  color: #959695;
}

.logo-sec .phn-no p {
  font-size: 16px;
  margin-bottom: 0;
}

.grid-layout .border_box a {
  font-size: 16px;
}

/* Logo section ended */
/* main menu section */
.mobile-toggle {
  display: none;
}

.main-menu {
  background: #2e342e;
  position: relative;
  z-index: 99;
}

.main-menu nav.navbar > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.main-menu nav.navbar > ul > li {
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  font-size: 15px;
}

.main-menu nav.navbar > ul > li > a {
  color: #ffffff;
  display: inline-block;
  font-family: eurostile;
  padding: 15px 12px;
  text-transform: uppercase;
  position: relative;
}

.main-menu nav.navbar > ul > li.hassubmenu.open > a:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 11px solid #ffffff;
  position: absolute;
  bottom: -1px;
  left: 50%;
  content: "";
  z-index: 2222;
}

/* .main-menu nav.navbar > ul > li:hover > ul.submenu {display: block;} */
.main-menu nav.navbar > ul > li > i {
  color: #ffffff;
  position: relative;
  right: 12px;
  top: 2px;
}

.main-menu nav.navbar > ul > li > ul.submenu {
  background: #ffffff;
  display: none;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  text-align: left;
  top: 100%;
  z-index: 999;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.3);
  padding: 0;
}

.main-menu nav.navbar > ul > li > ul.submenu > li {
  display: block;
  clear: both;
  margin: 0 auto;
  max-width: 1220px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.main-menu nav.navbar > ul > li > ul.submenu > li:after {
  content: "";
  display: table;
  clear: both;
}

.main-menu nav.navbar > ul > li > ul.submenu h2 {
  display: inline-block;
  padding-top: 0;
}

a.view_link, a.view_link:link, a.view_link:visited {
  font-size: 20px;
  color: #425a3c;
  margin-left: 20px;
  font-family: "eurostile";
  text-transform: uppercase;
}

ul.manu_list {
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 100%;
  list-style: none;
  margin-top: 20px;
}

ul.manu_list li {
  display: inline-block;
}

ul.manu_list li a, ul.manu_list li a:link, ul.manu_list li a:visited {
  display: inline-block;
  vertical-align: top;
  width: 35px;
  height: 35px;
  margin: 4px 3px;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-align: center;
  line-height: 35px;
  color: #959695;
  font-size: 18px;
}

ul.manu_list li a:hover {
  background: #f6f6f6;
}

ul.submenu .grid-layout .border_box {
  width: 46%;
  margin: 0 2%;
}

ul.submenu .grid-layout .border_box a {
  font-family: inherit;
  font-size: 18px;
  color: #959695;
  padding: 20px 0 0;
}

ul.submenu .grid-layout .border_box:hover a {
  color: #425a3c;
}

ul.submenu .grid-layout .border_box .flexFit img, ul.submenu .grid-layout .border_box .flexFill .img-wrap.fit img {
  max-width: 80%;
}

ul.menucategory-list {
  padding: 0;
  margin: 20px 0 0;
  column-count: 4;
  -webkit-column-count: 4;
  column-gap: 30px;
  -webkit-column-gap: 30px;
  list-style: none;
  max-height: 280px;
}

ul.menucategory-list li {
  display: block;
  margin-bottom: 15px;
  line-height: 1.3;
  page-break-inside: avoid;
  break-inside: avoid;
}

ul.menucategory-list li a, ul.menucategory-list li a:link, ul.menucategory-list li a:visited {
  display: block;
  color: #959695;
  font-size: 18px;
}

ul.menucategory-list li a:hover {
  color: #e0b818;
}

ul.submenu .grid-layout.wp100p {
  margin-top: 20px;
}

ul.submenu .grid-layout.wp100p .border_box {
  width: 23%;
  margin: 0 1%;
}

ul.submenu .grid-layout.wp100p .border_box .flexFit img, ul.submenu .grid-layout.wp100p .border_box .flexFill .img-wrap.fit img {
  max-width: 98%;
}

ul.military-cate-list {
  padding: 0;
  margin: 20px 0 0;
  column-count: 2;
  -webkit-column-count: 2;
  column-gap: 40px;
  -webkit-column-gap: 40px;
  list-style: none;
  /*max-height:140px;*/
}

ul.military-cate-list li {
  display: block;
  margin-bottom: 15px;
  line-height: 1.3;
}

ul.military-cate-list li a, ul.military-cate-list li a:link, ul.military-cate-list li a:visited {
  display: block;
  color: #959695;
  font-size: 18px;
}

ul.military-cate-list li a:hover {
  color: #e0b818;
}

.main-menu nav.navbar > ul > li:hover > a {
  color: #ccc;
}

.main-menu nav.navbar > ul > li.small-dropdown {
  position: relative;
}
.main-menu nav.navbar > ul > li.small-dropdown > ul.submenu {
  left: 0;
  right: auto;
  min-width: 250px;
  width: 100%;
  padding: 20px 0;
  cursor: default;
}
.main-menu nav.navbar > ul > li.small-dropdown > ul.submenu li {
  padding: 0;
}
.main-menu nav.navbar > ul > li.small-dropdown > ul.submenu li a,
.main-menu nav.navbar > ul > li.small-dropdown > ul.submenu li a:link,
.main-menu nav.navbar > ul > li.small-dropdown > ul.submenu li a:visited {
  display: block;
  padding: 10px 20px;
  color: #959695;
}
.main-menu nav.navbar > ul > li.small-dropdown > ul.submenu li a:hover,
.main-menu nav.navbar > ul > li.small-dropdown > ul.submenu li a:active {
  color: #e0b818;
}

.main-menu nav.navbar > ul > li:last-child > ul.submenu {
  left: auto;
  right: 0;
}

.mobile-navigation .mobile-menu-list ul li.small-dropdown ul {
  padding-top: 0;
}
.mobile-navigation .mobile-menu-list ul li.small-dropdown ul li {
  padding: 0;
}
.mobile-navigation .mobile-menu-list ul li.small-dropdown ul li:first-child a {
  padding-top: 0;
}
.mobile-navigation .mobile-menu-list ul li.small-dropdown ul li:last-child {
  border-bottom: 0;
}

/* main menu section ended*/
/* header section ended */
/* footer section started */
#mainContain + footer {
  position: relative;
}

/* brand section started */
.brand {
  background: #f5f7f5 none repeat scroll 0 0;
  padding: 20px 0;
  position: relative;
}

.brand .setcontainer {
  overflow: hidden;
}

.brand ul {
  margin: 0;
  padding: 0;
}

.brand ul li img {
  max-height: 45px;
  max-width: 100%;
  padding: 0 15px;
  display: inline-block;
}

.brand li {
  display: inline-block !important;
  float: none;
  text-align: center;
}

.brand .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  background: #d0d0d0;
  font-size: 0;
  line-height: 0;
  border: 0;
  cursor: pointer;
  z-index: 9;
}

.brand .slick-track {
  min-width: 100% !important;
  text-align: center;
}

.brand .slick-arrow.slick-prev {
  left: 0;
}

.brand .slick-arrow.slick-prev:before {
  font-size: 24px;
  color: #959695;
  content: "";
  font-family: fontawesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.brand .slick-arrow.slick-next {
  right: 0;
}

.brand .slick-arrow.slick-next:before {
  font-size: 24px;
  color: #959695;
  content: "";
  font-family: fontawesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.footer {
  background: #2e342e;
  padding: 55px 0;
}

.footer h2 {
  color: #ffffff;
  margin-bottom: 20px;
  padding: 0;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer ul li {
  line-height: 36px;
  list-style: outside none none;
}

.footer ul li a:link,
.footer ul li a:visited,
.footer ul li a:active,
.footer ul li a:focus {
  color: #d0d0d0;
}

.newslter > input[type=text] {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #515151;
  color: #d0d0d0;
  font-size: 16px;
  height: 52px;
  padding: 15px 95px 15px 15px;
  width: 100%;
  font-family: "lato";
}

.newslter > input[type=text]::-webkit-input-placeholder {
  color: #d0d0d0;
  opacity: 1;
}

.newslter > input[type=text]::-moz-placeholder {
  color: #d0d0d0;
  opacity: 1;
}

.newslter > input[type=text]:-ms-input-placeholder {
  color: #d0d0d0;
  opacity: 1;
}

.newslter > input[type=text]:-moz-placeholder {
  color: #d0d0d0;
  opacity: 1;
}

.newslter {
  display: inline-block;
  position: relative;
  width: 100%;
}

.newslter input[type=button] {
  border: medium none;
  color: #2e342e;
  font-family: eurostile;
  font-size: 18px;
  height: 37px;
  position: absolute;
  right: 7px;
  text-transform: uppercase;
  top: 7px;
  width: 75px;
  z-index: 1;
  background: #ffffff;
  text-align: center;
}

.footer a:hover, .footer ul li a:hover {
  color: #ffffff;
}

.newslter input[type=button]:hover, .newslter input[type=button]:focus {
  background: #425a3c;
  color: #ffffff;
}

.footer .social-link li {
  display: inline-block;
  font-size: 28px;
  margin: 0 10px 0 0;
}

.footer .social-link {
  margin-top: 20px;
}

.footer ul li p {
  color: #d0d0d0;
  line-height: 28px;
}

.footer .ftr-logo img {
  max-width: 180px;
  width: 100%;
}

.footer .policy ul li {
  display: inline;
  font-size: 15px;
  margin-right: 5px;
}

.footer .policy ul li:nth-child(1)::after {
  content: "|";
  margin: 0 0 0 8px;
}

.footer .cpyright p {
  font-size: 15px;
  margin: 0;
  text-align: right;
  color: #d0d0d0;
}

.footer .policy, .footer .cpyright {
  margin-top: 80px;
}

.footer .cpyright a {
  color: #d0d0d0;
}

.footer .cpyright a:hover {
  color: #ffffff;
}

.newsletter-footer {
  display: flex;
  justify-content: flex-end;
}
.newsletter-footer .newsletter-footer-inner {
  max-width: 450px;
  width: 100%;
}

.back-top {
  display: none;
  position: fixed;
  z-index: 998;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #425a3c;
  cursor: pointer;
  padding: 10px 16px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.back-top i {
  padding: 0;
  display: block;
}
.back-top span {
  display: block;
  padding-top: 10px;
  font-size: 16px;
  font-family: "eurostile";
  text-transform: uppercase;
}
.back-top.show-back-top {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 640px) {
  .back-top {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer .flex-row {
    flex-direction: column-reverse;
  }
  .footer .flex-row > * {
    flex-basis: 100%;
    margin: 0 0 20px 0;
  }
  .footer .flex-row .newsletter-footer {
    justify-content: flex-start;
  }
}
/* footer section ended */
/* Home Slider styling */
.slider-sec.slick-slider {
  margin: 0 auto;
  padding: 14px;
  max-width: 1920px;
  width: 100%;
}

/* .slider-sec.slick-slider { margin: 0 auto;  padding: 14px; max-width: 1920px; width: 100%;} */
.slider-sec ul.slick-dots {
  position: absolute;
  right: 20px;
  top: 20px;
}

.slider-sec ul.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slider-sec button {
  background: #fff;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 18px;
  opacity: 0.4;
  width: 18px;
}

.slider-sec ul.slick-dots li.slick-active button, .slider-sec ul.slick-dots button:hover {
  opacity: 1;
}

/* Homepage Content */
.homepage-content {
  padding-top: 20px;
}
.homepage-content h1 {
  font-size: 36px;
}
@media (max-width: 767px) {
  .homepage-content {
    padding-top: 0px;
  }
  .homepage-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .homepage-content h1 {
    font-size: 28px;
  }
}

/************
INNER PAGES STYLING 
************/
/* Manufacturing landing page */
.innerpage-content {
  padding: 70px 0;
}

.innerpage-content h1 {
  text-align: left;
  padding-bottom: 20px;
  font-size: 42px;
}

.grid-layout {
  width: 100%;
}

.grid-layout .row {
  margin-left: -10px;
  margin-right: -10px;
}

.grid-layout .border_box {
  width: 23%;
  float: left;
  margin: 10px 1%;
  text-align: center;
}

.grid-layout .border_box .img-bx {
  border: 1px solid #ebeaea;
  width: 100%;
  display: inline-block;
  padding: 25px;
}

.grid-layout .border_box .img-bx:hover {
  border-color: #ddd;
}

.grid-layout .border_box a {
  color: #425a3c;
  font-family: "copperplate";
  padding: 25px 0;
  display: inline-block;
  font-size: 18px;
}

.search-result h2 {
  font-size: 28px;
  padding-bottom: 20px;
}

.filter-search {
  background: #f6f6f6;
  width: 100%;
  text-align: Center;
  padding: 0 !important;
}

.filter-search li {
  display: inline-block;
  padding: 12px 9px;
}

.filter-search li a, .filter-search li a:link, .filter-search li a:visited {
  color: #959695;
  font-family: "eurostile";
  text-transform: uppercase;
}

.search-result .result-found {
  column-count: 4;
  column-gap: 30px;
  margin: 20px 0;
  padding: 0 !important;
}

.filter-search li.no-items {
  color: #ccc;
  cursor: default;
}
.filter-search li.no-items a {
  cursor: default;
  color: #ccc;
}

.search-result .result-found li {
  list-style-type: none;
  display: block;
}

.search-result .result-found li a {
  color: #959695;
  margin-bottom: 10px;
  display: block;
}

.search-result .result-found li a:hover, .search-result .result-found li a:focus {
  color: #425a3c;
}

/* Manufacturer page */
.manufacturers-page {
  padding-left: 20px;
}

.manufacturers-page h1 {
  line-height: 100%;
  padding-bottom: 10px;
}

.three-cols .border_box {
  width: 31%;
}

.brand-sidebar {
  background: #f6f6f6;
  padding: 24px;
  border-bottom: 8px solid #425a3c;
}

.brand-sidebar .flexFit {
  background: #ffffff;
}

.brand-sidebar .flexFit img {
  max-width: 80%;
  max-height: 80%;
}

.breadcum {
  width: 100%;
  position: relative;
  top: -35px;
  font-size: 14px;
}

.breadcum .active {
  color: #425a3c;
}

.breadcum span:after {
  content: "»";
  padding: 0 6px;
}

.breadcum span.active:after {
  display: none;
}

.breadcum span a {
  color: #959695;
  text-decoration: underline;
}

.breadcum span a:hover {
  color: #425a3c;
  text-decoration: underline;
}

.grid-layout .border_box a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manufacturers-page .grid-layout a {
  text-overflow: initial;
  display: inline-block;
  white-space: normal;
  min-height: 80px;
  padding: 10px 0 10px 0;
}

/* SLider Section Style Started  */
.slider-sec {
  margin: 0;
  padding: 14px;
}

.slider-sec .slide {
  position: relative;
}

.slider-sec .slide .caption {
  left: 10%;
  max-width: 600px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.slider-sec .slide .caption h1 {
  color: #425a3c;
  font-family: copperplate;
  font-size: 31px;
  margin-bottom: 20px;
}

.slider-sec .txt-img {
  margin-bottom: 50px;
  max-width: 700px;
  width: 100%;
}

.slider-sec .txt-img img {
  width: 100%;
}

.slider-sec .slide .caption a {
  font-size: 26px;
}

.slider-sec .slide .brand-logo {
  bottom: 30px;
  max-width: 185px;
  position: absolute;
  right: 30px;
  width: 100%;
}

.slider-sec .brand-logo img {
  width: 100%;
}

.slider-sec .slide .caption h1 {
  color: #425a3c;
  font-family: copperplate;
  font-size: 31px;
  margin-bottom: 20px;
}

.slider-sec .txt-img {
  margin-bottom: 50px;
  max-width: 700px;
  width: 100%;
}

.slider-sec .txt-img img {
  width: 100%;
}

.slider-sec .slide .caption a {
  font-size: 26px;
}

.slider-sec .brand-logo {
  max-width: 185px;
  position: absolute;
  width: 100%;
}

.slider-sec button {
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 18px;
  opacity: 0.4;
  width: 18px;
}

.slider-sec ul.slick-dots {
  position: absolute;
  right: 20px;
  top: 20px;
}

.slider-sec ul.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slider-sec ul.slick-dots li.slick-active button, .slider-sec ul.slick-dots button:hover {
  opacity: 1;
}

/* deals */
#wrapper_deals #wrapper-view {
  padding: 0;
  max-width: 980px;
  margin: 0 auto;
}
#wrapper_deals .newsletter-capture {
  border: 1px solid #ccc;
  width: 100%;
  max-width: 100%;
}
#wrapper_deals .newsletter-capture p {
  display: none;
}

#panel_nodeals {
  background-color: #efefef;
  border: 1px solid #ccc;
  font-size: 125%;
  margin: 10px 0;
  padding: 50px 25px;
  text-align: center;
}
#panel_nodeals a {
  color: #daa21b;
  text-decoration: underline;
}

#wrapper-deals {
  padding: 20px 0 20px 0;
  max-width: 1024px;
  margin: 0 auto;
}
#wrapper-deals #deal-product-quantity label {
  display: inline-block;
  line-height: 36px;
}
#wrapper-deals #deal-product-quantity .button {
  margin: 0;
}
#wrapper-deals select#a2cSelect {
  background-color: #fff;
  width: 100%;
}
#wrapper-deals select#a2cSelect::after {
  display: none !important;
}
#wrapper-deals .is-deal-over .flexFit img {
  filter: grayscale(100%);
}
#wrapper-deals .product-description {
  width: 100%;
}
#wrapper-deals .product-description p {
  line-height: 1.5;
  padding-bottom: 8px;
}
#wrapper-deals .product-description a {
  color: #daa21b;
  text-decoration: underline;
}

ul.past-deals li span.dealover {
  position: absolute;
  display: block;
  margin: 10% auto;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  width: 122px;
  height: 120px;
  filter: grayscale(100%);
  background: transparent url("/pub/design/dealover.png") no-repeat left top;
}

#countdown_box {
  background-color: #fff;
  width: 100%;
  border-top: 10px solid #425A3C;
  border-bottom: 10px solid #425A3C;
  padding: 15px;
  margin-bottom: 25px;
}
#countdown_box .countdown_content {
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

#countdown_box .countdown_content p {
  margin: 0;
  padding: 0;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  font-size: 24px;
  background-color: #425A3C;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
#countdown_box .countdown_content p span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  right: 0;
  bottom: 0;
  height: 24px;
  margin: auto auto;
}

#countdown_box .dash {
  border: 1px inset #ccc;
  background-color: #efefef;
  padding: 2px 5px;
  text-align: center;
}

#countdown_box .dash.dash_sep {
  border: none;
  background-color: #fff;
}

#countdown_box #countdown_deal .dash_sep .dash_title {
  padding: 12px 0 0 0;
  font-size: 22px;
  display: block;
}

#countdown_box #countdown_deal .dash .digit {
  color: #425A3C;
  display: inline-block;
  font-size: 45px;
  height: 45px;
  overflow: hidden;
}

#countdown_box #countdown_deal .dash .dash_title {
  display: block;
  font-size: 18px;
  clear: both;
  font-family: arial;
  font-weight: bold;
}

#newsletter_Panel {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  #wishlist-wrapper .text-box, #wishlist-wrapper select {
    height: 33px;
  }

  #wishlist-wrapper .product-detail {
    padding: 0;
  }

  #wishlist-wrapper .product-detail .grid4-12 {
    width: 40%;
  }

  #wishlist-wrapper .product-detail .grid8-12 {
    width: 56%;
    margin-left: 4%;
  }
}
@media screen and (max-width: 639px) {
  #wishlist-wrapper h2 {
    font-size: 18px;
  }

  #wishlist-wrapper h2 + p {
    font-size: 14px;
    margin: 5px 0 0;
  }

  #wishlist-wrapper label {
    margin: 3px 0;
  }

  #wishlist-wrapper .product-descriptin2 h4 {
    font-size: 16px;
    line-height: 100%;
  }

  #wishlist-wrapper .product-meta {
    font-size: 12px;
  }
}
/*Order Status Start*/
#wrapper-orderstatus #pnlScreen1, #wrapper-orderstatus #pnlScreen2, #wrapper-orderstatus #pnlScreen3 {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 25px;
}

#wrapper-orderstatus .col-toolbar-links {
  text-align: right;
}
#wrapper-orderstatus .col-toolbar-links a {
  display: inline-block;
  padding-right: 10px;
  font-size: 12px;
}
#wrapper-orderstatus .col-toolbar-links a.cancel-order {
  color: red !important;
  font-weight: bold;
}

#wrapper-orderstatus #pnlScreen1 .part1 {
  padding: 15px 0;
  line-height: 1.5;
}

#wrapper-orderstatus #pnlScreen1 .part2 {
  line-height: 1.5;
  padding-bottom: 15px;
}

#wrapper-orderstatus #pnlScreen1 .part2 ul {
  padding-left: 40px;
  list-style: unset;
}

#wrapper-orderstatus input[type=text] {
  /*width: 100%;*/
  font-size: 16px;
  border: 1px solid #aaa;
  padding: 5px;
  margin-bottom: 4px;
  -webkit-border-radius: 0;
  word-wrap: break-word;
}

#wrapper-orderstatus input[type=submit] {
  background: #425a3c;
  border: medium none;
  bottom: 0;
  color: #fff;
  display: block;
  font-size: 15px;
  padding: 7px;
  font-family: "eurostile";
  vertical-align: top;
  margin-top: 15px;
  width: 150px;
}

#wrapper-orderstatus #pnlScreen2 .address-search-field {
  padding: 20px 0;
}

#wrapper-orderstatus #pnlScreen2 .billing-address {
  line-height: 1.4;
}

#wrapper-orderstatus #pnlScreen2 .billing-address strong {
  text-transform: capitalize;
}

#wrapper-orderstatus #pnlScreen2 .order-number {
  text-decoration: underline;
  color: blue;
}

#wrapper-orderstatus .order-header {
  padding-bottom: 20px;
}

#wrapper-orderstatus .main-header {
  padding: 10px 0 10px 5px;
  background: #725638;
  color: #fff;
  margin: 15px 0;
}

#wrapper-orderstatus #pnlScreen3 .header {
  padding-top: 0;
  background: #485246;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}

#wrapper-orderstatus #pnlScreen3 .return-note {
  color: red;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

#wrapper-orderstatus #pnlScreen3 .return-link {
  text-align: center;
  line-height: 2;
}
#wrapper-orderstatus #pnlScreen3 .return-link a {
  text-decoration: underline;
  color: blue;
}

#wrapper-orderstatus #pnlScreen3 .shipment-items {
  padding-top: 10px;
}

#wrapper-orderstatus #pnlScreen3 .shipments a {
  text-decoration: underline;
  color: blue;
}

#wrapper-orderstatus #pnlScreen3 #pnlNoShipment {
  color: red;
  font-weight: bold;
  padding: 15px 0;
  font-size: 18px;
}

#wrapper-orderstatus .hhError {
  z-index: 999;
  background: #cf000f;
  color: #fff;
  left: 0;
  padding: 10px;
  position: fixed;
  text-align: center;
  bottom: 100%;
  width: 100%;
}

#wrapper-orderstatus input[value=Search] {
  text-transform: uppercase;
}

#wrapper-orderstatus .hhError.hhSuccessful {
  background: #09b736;
}

#wrapper-orderstatus .back-to-link {
  padding: 10px 0;
  text-decoration: underline;
}

#wrapper-orderstatus .view-shipments {
  color: blue;
  text-decoration: underline;
}

/*Order Status End*/
/*Gift Card Start*/
#wrapper-giftcard {
  padding: 0 16px 20px 16px;
}
#wrapper-giftcard #panel_justadd {
  text-align: center;
}
#wrapper-giftcard #panel_justadd input {
  background-color: transparent;
  border: 0;
  font-weight: normal;
  color: blue;
  text-decoration: underline;
}

/*#wrapper-giftcard .row{
   padding-bottom: 20px; 
}*/
#wrapper-giftcard h3 {
  border-bottom: 2px solid #ddd;
  color: #2e342e;
  padding-bottom: 5px;
  font-size: 21px;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-top: 20px;
}

#wrapper-giftcard .gift-card-warning {
  background-color: #efefef;
  border: 1px solid #ccc;
  margin: 15px 0;
}
#wrapper-giftcard .gift-card-warning p {
  margin: 0 auto;
  width: 80%;
  padding: 5px 15px;
  text-align: center;
  line-height: 1.5;
  font-size: 95%;
}

.card-designs.slider {
  padding: 0;
  position: relative;
}

.card-designs.slider button.slick-arrow {
  background: transparent;
  border: none;
  font-size: 0;
  position: absolute;
  right: 0;
  top: -56px;
  cursor: pointer;
}

.card-designs.slider button.slick-prev {
  right: 34px;
}

.card-designs.slider button.slick-arrow:hover {
  opacity: 0.8;
}

.card-designs.slider button.slick-prev:before {
  content: "";
}

.card-designs.slider button.slick-next:before {
  content: "";
}

.card-designs.slider button.slick-prev:before, .card-designs.slider button.slick-next:before {
  color: #2e342e;
  font-family: FontAwesome;
  font-size: 24px;
}

.card-designs.slider .flexFit {
  padding-bottom: 95%;
}

#wrapper-giftcard .card-description {
  text-align: center;
  padding-top: 10px;
}

@media screen and (max-width: 479px) {
  #wrapper-giftcard .card-designs.slider button.slick-next {
    right: 0;
  }

  #wrapper-giftcard .card-designs.slider button.slick-prev {
    left: 0;
    right: auto;
  }

  #wrapper-giftcard .card-designs.slider button.slick-arrow {
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    padding-right: 0px;
  }
}
#wrapper-giftcard input[type=text] {
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none !important;
  color: #333;
  font-style: normal;
  letter-spacing: 0.05em;
  padding: 6px;
  font-size: 16px;
  width: 100%;
  background: #fff;
}

#wrapper-giftcard textarea {
  width: 100%;
  resize: none;
  border: 1px solid #ccc;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 10px;
}

#wrapper-giftcard .flexFit.preview {
  border: 1px solid #ddd;
  background: #fff;
}

#wrapper-giftcard #amount-chosen p {
  display: inline-block;
  color: #7c7c7c;
  margin-top: 10px;
  white-space: nowrap;
}

#wrapper-giftcard #amount-chosen #amount {
  width: 100px;
  text-align: right;
}

#wrapper-giftcard .required, #wrapper-giftcard .hhFormRow .star {
  color: #FA4D43;
}

#wrapper-giftcard ul#pre-select li a {
  font-size: 12px;
  font-family: "eurostile";
  letter-spacing: 2px;
  padding: 8px 20px;
  margin-right: 10px;
}

#wrapper-giftcard ul.list-option {
  padding-top: 7px;
}

#wrapper-giftcard ul.list-option a, #wrapper-giftcard ul#delivery-tabs a {
  background-color: transparent;
  border: 1px solid #425a3c;
  color: #425a3c;
  text-decoration: none;
  transition: all 0.3s 0s;
}

#wrapper-giftcard ul.list-option a.selected, #wrapper-giftcard ul#delivery-tabs a.selected, #wrapper-giftcard ul.list-option a:hover {
  background-color: #425a3c;
  border-color: #425a3c;
  color: #fff;
  text-decoration: none;
}

#wrapper-giftcard ul#pre-select li {
  display: inline-block;
}

#wrapper-giftcard ul#amount-info {
  margin: 10px 0 0 12px;
  clear: both;
  list-style: disc;
  padding-top: 5px;
}

#wrapper-giftcard ul#amount-info li {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  color: #7c7c7c;
  padding: 2px 0;
}

#wrapper-giftcard ul.tabs {
  height: 45px;
}

#wrapper-giftcard ul.tabs {
  list-style: none;
  margin: 0 0 2px;
}

#wrapper-giftcard ul.tabs li {
  font-size: 12px;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
  float: left;
  padding: 0;
  text-indent: 0;
}

#wrapper-giftcard ul.tabs li a {
  background-color: #fff;
  border-color: #425a3c;
  color: #666;
  height: 43px;
  letter-spacing: 2px;
  line-height: 43px;
  padding: 0 20px;
  border: 1px solid #777;
  display: block;
  font-size: 90%;
  font-weight: 800;
  position: relative;
  text-align: center;
  text-decoration: none;
  top: 1px;
}

#wrapper-giftcard ul.tabs li a.selected {
  background-color: #425a3c;
  border-color: #425a3c;
  color: #fff;
  height: 43px;
  line-height: 43px;
  border: 1px solid #425a3c;
}

#wrapper-giftcard #email_delivery h4 {
  padding-top: 10px;
}

#wrapper-giftcard .hhFormRow {
  padding: 8px 0;
}

#wrapper-giftcard .label-row {
  padding-bottom: 5px;
}

#wrapper-giftcard .hint {
  padding-top: 5px;
}

#wrapper-giftcard .buttons {
  padding: 20px 0;
}

#wrapper-giftcard .buttons input {
  border: none;
  text-transform: uppercase;
  padding: 10px 0;
  font-weight: bold;
  width: 260px;
  font-family: "eurostile";
  font-size: 16px;
  font-weight: 400;
}

#wrapper-giftcard .buttons .button-secondary {
  margin-left: 20px;
}

#wrapper-giftcard .hhError,
#wrapper-getgiftcard .hhError {
  z-index: 999;
  background: #cf000f;
  color: #fff;
  left: 0;
  padding: 10px;
  position: fixed;
  text-align: center;
  bottom: 100%;
  width: 100%;
}

#wrapper-giftcard .hhError.hhSuccessful,
#wrapper-getgiftcard .hhError.hhSuccessful {
  background: #09b736;
}

#wrapper-giftcard .gift-open .enter-pin .validation-hh-error:after {
  right: 82px;
}

/*Gift Card End*/
#wrapper_register .login a {
  text-decoration: underline;
  color: #425a3c;
}

#wrapper_order_status .bottom-content {
  font-size: 16px;
  line-height: 1.7;
  color: #7c7c7c;
  margin-bottom: 15px;
}

.main-menu nav.navbar > ul > li.hassubmenu > a {
  pointer-events: none;
  cursor: pointer;
}

#wrapper-getgiftcard {
  padding: 0 16px 20px 16px;
}

#wrapper-getgiftcard h3 {
  color: #2e342e;
  padding-bottom: 5px;
  font-size: 21px;
  margin-bottom: 10px;
  padding-top: 20px;
}

#wrapper-getgiftcard .hhFormRow {
  padding: 8px 0;
}

#wrapper-getgiftcard .label-row {
  padding-bottom: 5px;
}

#wrapper-getgiftcard input[type=text] {
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none !important;
  color: #333;
  font-style: normal;
  letter-spacing: 0.05em;
  padding: 6px;
  font-size: 16px;
  width: 100%;
}

#wrapper-getgiftcard .buttons {
  padding: 10px 0 0;
}

#wrapper-getgiftcard .buttons input {
  border: none;
  text-transform: uppercase;
  padding: 10px 0;
  font-weight: bold;
  width: 260px;
}

#wrapper-getgiftcard .star {
  color: #FA4D43;
}

#wrapper-getgiftcard #Panel1 p {
  padding-bottom: 25px;
}

#wrapper-getgiftcard .gift-card-html {
  border: 1px solid #ccc;
  padding: 20px 0;
  margin-top: 20px;
  margin-bottom: 10px;
}

#wrapper-getgiftcard #Panel2 .gift-card-html h3 {
  text-align: center;
  padding-top: 0;
}

#wrapper-getgiftcard #Panel2 .card-number-pin {
  text-align: center;
  padding-top: 20px;
}

#wrapper-getgiftcard #Panel2 .card-number-pin label {
  font-weight: bold;
}

#wrapper-getgiftcard #Panel2 .pin-label, #wrapper-getgiftcard #Panel2 .number-label {
  padding-left: 25px;
}

#wrapper-getgiftcard #Panel2 ol {
  list-style-type: decimal;
  padding-left: 18px;
  line-height: 1.4;
}

#wrapper-getgiftcard #Panel2 p {
  text-align: left;
  padding-left: 60px;
  padding-bottom: 20px;
}

#wrapper_buy_gift_cards .section-padding {
  padding-bottom: 0;
  padding-top: 40px;
}

#wrapper_buy_gift_cards #email_delivery label {
  color: #7c7c7c;
  margin-bottom: 10px;
}

#wrapper_buy_gift_cards #email_delivery .hhTextBox {
  padding: 6px 12px;
  height: 40px;
}

#wrapper_buy_gift_cards .grid9-12 {
  float: none;
  margin: 0 auto;
}

#wrapper_buy_gift_cards .buttons {
  text-align: center;
}

#wrapper-getgiftcard {
  text-align: center;
}

#wrapper-getgiftcard > #Panel1 {
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin: 50px 0;
  background: #f6f6f6;
  padding: 40px;
}

#wrapper-getgiftcard h3 {
  padding: 0;
}

#wrapper-getgiftcard p, #wrapper-getgiftcard label {
  color: #7c7c7c;
}

#wrapper-getgiftcard .buttons input {
  font-family: "eurostile";
  font-size: 16px;
  font-weight: 400;
}

#wrapper-getgiftcard .giftinfo {
  margin: 20px auto;
  max-width: 800px;
  background: #f6f6f6;
  padding: 40px;
}

@media screen and (max-width: 991px) {
  #wrapper_buy_gift_cards .cuscol1 {
    width: 15%;
  }

  #wrapper_buy_gift_cards .cuscol2 {
    width: 40%;
  }

  #wrapper_buy_gift_cards .cuscol3 {
    width: 40%;
  }

  #wrapper_buy_gift_cards .wp100 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #wrapper_buy_gift_cards .cuscol1 {
    width: 50px;
  }

  #wrapper_buy_gift_cards .cuscol2 {
    width: 100px;
  }

  #wrapper_buy_gift_cards .cuscol3 {
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #wrapper-giftcard ul#pre-select li a {
    margin-right: 4px;
  }

  #wrapper_buy_gift_cards .cuscol3 {
    width: 260px;
  }

  #wrapper_buy_gift_cards .buttons input, #wrapper-giftcard .buttons .button-secondary {
    margin: 5px 0;
  }
}
@media screen and (max-width: 479px) {
  #wrapper-getgiftcard .buttons input {
    width: 100%;
  }

  #wrapper_buy_gift_cards .cuscol1 {
    width: 20%;
  }

  #wrapper_buy_gift_cards .cuscol2 {
    width: 80%;
  }

  #wrapper-getgiftcard > #Panel1 {
    padding: 20px;
  }

  #wrapper-getgiftcard .giftinfo {
    padding: 20px;
  }
}
#edit_page {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 35px;
  z-index: 9;
  background-color: #333;
  border-top: 1px inset #ccc;
  color: #fff;
  font-size: 14px;
}
#edit_page .edit-page-inner a {
  color: #fff;
  text-decoration: underline;
}
#edit_page .edit-page-inner {
  padding: 10px;
}
#edit_page .align-center {
  text-align: center;
}
#edit_page .edit-link {
  text-decoration: none;
}
#edit_page span.bull {
  display: inline-block;
  padding: 0 10px 0 10px;
}
#edit_page span.bull:after {
  content: "•";
}

.product-detail .on-sale {
  padding: 0;
  display: inline;
  color: #2e342e;
  font-size: 14px;
  line-height: 1.3;
  font-family: "eurostile";
  text-transform: uppercase;
  text-decoration: line-through;
}

.product-detail .sale-price {
  padding: 0;
  display: inline;
  color: #2e342e;
  font-size: 21px;
  line-height: 1.3;
  font-family: "eurostile";
  text-transform: uppercase;
}

.featured-product .product-description span.on-sale {
  color: #2e342e;
  font-family: eurostile;
  font-size: 14px;
  text-decoration: line-through;
}

.featured-product .product-description span.sale-price {
  color: #2e342e;
  font-family: eurostile;
  font-size: 18px;
}

.product-detail .sale-price:before,
.featured-product .product-description span.sale-price:before {
  content: "Sale";
  color: #daa21b;
  padding-left: 10px;
  padding-right: 5px;
}

#wrapper-sellinggroupdetail .no-group-sale {
  padding: 50px 25px;
  background-color: #efefef;
  border: 1px solid #ccc;
  margin: 10px 0;
  font-size: 125%;
  text-align: center;
}

#schematic #pnlYourPrice span {
  font-size: 15px;
}

#pnlYourPrice span.on-sale {
  display: block;
  text-decoration: none;
  font-size: 100%;
  font-size: 18px;
  color: #333;
}
#pnlYourPrice span.on-sale i {
  text-decoration: line-through;
  padding-left: 5px;
}
#pnlYourPrice span.on-sale:before {
  content: "";
  /*'Price'*/
}
#pnlYourPrice .sale-price:before {
  content: "Your Price";
  color: #2e342e;
  padding-left: 0;
  font-size: 15px;
}
#pnlYourPrice span.sale-price {
  color: #daa21b;
}

#wrapper-sellinggroupdetail .qty-price-break-text {
  line-height: 2;
  color: #2e342e;
}

#wrapper-sellinggroupdetail .product-detail .product-quantity {
  padding-top: 0;
}

#wrapper-deals .newsletter_form {
  padding-top: 20px;
}

#wrapper-newslettersignup input[type=text] {
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none !important;
  color: #333;
  font-style: normal;
  letter-spacing: 0.05em;
  padding: 6px;
  font-size: 16px;
  width: 100%;
}

#wrapper-newslettersignup .hhFormRowInput {
  padding: 5px 0 10px;
}

#wrapper-newslettersignup label {
  color: #7c7c7c;
  margin-bottom: 10px;
}

#wrapper-newslettersignup .star {
  color: #FA4D43;
}

#wrapper-newslettersignup .buttons input {
  border: none;
  text-transform: uppercase;
  padding: 10px 0;
  font-weight: bold;
  width: 150px;
  font-family: "eurostile";
  font-size: 16px;
  font-weight: 400;
}

#wrapper-newslettersignup .hhError {
  z-index: 999;
  background: #cf000f;
  color: #fff;
  left: 0;
  padding: 10px;
  position: fixed;
  text-align: center;
  bottom: 100%;
  width: 100%;
}

#wrapper-deals .product-description {
  padding-left: 0;
}

.product-list .substitute {
  padding: 5px;
  border: 1px dotted #2e342e;
  background-color: #efefef;
  text-align: left;
  margin: 5px 0 5px 0;
  line-height: 1.5;
}
.product-list .substitute a {
  color: #daa21b;
  text-decoration: underline;
}

#wrapper-newslettersignup #pnlSuccessMsg {
  padding: 50px 25px;
  background-color: #efefef;
  border: 1px solid #ccc;
  margin: 10px 0;
  font-size: 125%;
  text-align: center;
}

#wrapper_validate_email {
  border: none;
  width: 100%;
  background-color: #f6f6f6;
  padding: 25px;
  text-align: center;
  font-weight: bold;
  margin: 40px 0;
}
#wrapper_validate_email p {
  font-size: 15px;
  color: #959695;
  font-family: inherit;
}
#wrapper_validate_email a {
  text-decoration: underline;
}

#wrapper-validateemail h3 {
  color: #425a3c;
  padding-bottom: 20px;
}

#pnlAdz h3:nth-child(1) {
  padding-bottom: 0;
}

#pnlAdz h3:nth-child(2) {
  padding-top: 5px;
}

#products-wrapper .cs-status {
  background: #425A3B;
  padding: 5px;
  color: #fff;
  margin-top: 5px;
}

a.button.button-secondary.print-receipt {
  margin-bottom: 20px;
}

.brand-sidebar h3, .manufacturers-page h1 {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}

/* New header style for mobile */
.header .mobile-nav-icon,
.header .mobile-search-icon,
.close-mobile-menu,
.mobile-navigation,
.mobile-sidebar-overlay {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    cursor: pointer;
  }

  .mobile-sidebar-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
  }

  .close-mobile-menu {
    color: #fff;
    font-size: 20px;
    position: fixed;
    left: 80%;
    top: 0;
    z-index: 99999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
  }

  .mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99991;
    background: #fff;
    width: 80%;
    overflow-y: auto;
    transition: 0.3s;
    -webkit-transition: 0.3s;
  }

  ul.top-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
    border-bottom: 1px solid #e0e3ea;
  }

  ul.top-icons li {
    display: inline-block;
    list-style: none;
    padding: 14px;
  }

  ul.top-icons li a i {
    font-size: 34px;
  }

  ul.top-icons li i.fa-star {
    font-size: 14px;
  }

  ul.top-icons li a span {
    color: #959695;
    font-size: 16px;
    display: block;
  }

  ul.top-icons li a, ul.top-icons li a:link, ul.top-icons li a:visited, ul.top-icons li a:hover {
    color: #425a3c;
  }

  .header .top-sec,
.header .main-menu,
.header .header-left,
.header .header-right {
    display: none;
  }

  .header .header-right {
    position: absolute;
    top: 101%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    margin: 0;
    padding: 20px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
  }

  .logo-sec .srch-form input[type=text] {
    border-color: #ddd;
  }

  .header {
    border-bottom: 1px solid #e0e3ea;
    padding: 10px;
    position: relative;
  }

  .logo-sec .logo a img {
    max-width: 110px;
  }

  .logo-sec,
.logo-sec .logo {
    margin: 0;
    padding: 0;
  }

  .header .mobile-nav-icon {
    float: left;
    display: inline-block;
    font-size: 28px;
    color: #425a3c;
    line-height: 56px;
    cursor: pointer;
  }

  .header .mobile-nav-icon i, .header .mobile-search-icon i {
    line-height: 56px;
  }

  .header .mobile-search-icon {
    float: right;
    display: inline-block;
    font-size: 28px;
    color: #425a3c;
    line-height: 56px;
    cursor: pointer;
  }

  .mobile-navigation .mobile-menu-list ul {
    margin: 0;
    padding: 10px 10px 0;
  }

  .mobile-navigation .mobile-menu-list ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "eurostile";
    text-transform: uppercase;
    border-bottom: 1px solid #e0e3ea;
  }

  .mobile-navigation .mobile-menu-list ul li a {
    padding: 10px;
    display: inline-block;
    width: 100%;
    color: #2e342e;
    font-size: 15px;
  }

  .mobile-navigation .mobile-menu-list ul li > ul,
.mobile-navigation .mobile-menu-list ul li .fa-caret-down {
    display: none;
  }

  .mobile-navigation .mobile-menu-list .more-links {
    font-family: "eurostile";
    text-transform: uppercase;
    color: #2e342e;
    padding: 20px 20px;
    font-size: 15px;
    cursor: pointer;
  }

  .mobile-navigation .mobile-menu-list .more-links:after {
    font-family: fontawesome;
    content: "";
    margin-left: 5px;
  }

  .mobile-navigation .mobile-menu-list .more-links.active:after {
    content: "";
  }

  .mobile-navigation .mobile-menu-list ul.HHMenu {
    /*display: none;*/
    padding-top: 0;
  }
  .mobile-navigation .mobile-menu-list ul.HHMenu .help-link-hide-mobile {
    display: none;
  }

  .search-result .result-found {
    column-count: 1;
  }
}
@media screen and (max-width: 479px) {
  ul.top-icons li {
    padding: 14px 10px;
  }

  ul.top-icons li a i {
    font-size: 24px;
  }

  ul.top-icons li a span {
    font-size: 13px;
  }
}
.join-newsletter-label {
  padding-top: 10px;
}

#join_newsletter {
  margin: 0 !important;
}

.image-used {
  z-index: 9;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 2px;
  background-color: #daa21b;
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  font-size: 85%;
}

.image-usedOver {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  top: 0;
  background-color: #333;
  opacity: 0.75;
}

.product-detail-discription #panel_free_ship, .product-list #panel_free_ship, #wrapper-cartitems #panel_free_ship {
  line-height: 2;
  color: #425a3c;
}
.product-detail-discription #panel_free_ship a, .product-list #panel_free_ship a, #wrapper-cartitems #panel_free_ship a {
  color: #425a3c;
  text-decoration: underline;
}
.product-detail-discription #panel_free_ship i, .product-list #panel_free_ship i, #wrapper-cartitems #panel_free_ship i {
  color: #425a3c;
  padding-right: 3px;
}

#products-wrapper .shipping-msg {
  line-height: 1.5;
}

#quiz div.row div.share-header {
  float: left;
}

#quiz div.row div.share-header h3 {
  font-size: 24px;
  padding-top: 5px;
  padding-right: 10px;
}

#quiz div.row div.social-share a i {
  font-size: 30px;
  padding: 5px;
}

#quiz .quiz-question {
  padding: 0 0 10px;
  text-align: center;
}

#quiz .quiz-ques, .quiz-final-step {
  border: 1px solid #c8cbd4;
  padding: 20px;
}

#quiz .quiz-ques .grid6-12 {
  margin-top: 10px;
  margin-bottom: 10px;
}

#quiz .quiz-final-step {
  text-align: center;
}

#quiz .quiz-final-step div.row div.share-header {
  float: none;
  display: inline-block;
}

#quiz .quiz-final-step .social-share {
  display: inline-block;
  padding-bottom: 20px;
}

#quiz .quiz-final-step div.row .social-share a i {
  box-sizing: border-box;
  margin: 1px;
  display: inline-block;
  padding: 5px;
  border-radius: 2px;
  color: #ffffff;
  background-color: #425a3c;
  width: 30px;
  height: 30px;
  font-size: 18px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s;
}

@media screen and (max-width: 480px) {
  #quiz .quiz-ques, .quiz-final-step {
    padding: 10px;
  }

  #quiz .quiz-question {
    padding: 0;
  }

  #quiz div.row div.share-header h3 {
    font-size: 18px;
    padding-right: 0;
    display: block;
  }
}
#admin_toolbar {
  position: fixed;
  z-index: 99999;
  height: 50px;
  border-top: 3px outset #2e342e;
  padding: 5px 0 5px 0;
  width: 100%;
  background-color: red;
  color: #fff;
  left: 0;
  bottom: 0;
}
#admin_toolbar input {
  font-size: 15px;
  padding: 10px 13px 10px 13px;
  background-color: #fff;
  border: 2px solid #333;
  color: red;
}

#Panel_Old .schematic-Image {
  border: 1px solid #ddd;
  margin: 10px 20px;
  cursor: pointer;
}
#Panel_Old .schematic-img-left2 {
  float: left;
  position: relative;
}
#Panel_Old .schematic-Image a.image-popup-vertical-fit-schematic {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  line-height: 50px;
}
#Panel_Old #schematic .schematic-img-left2.fixpos .schematic-Image {
  position: fixed;
  max-width: 539px;
  top: 20px;
}
#Panel_Old .schematic-img-left2.fixpos .schematic-Image img {
  max-height: 90vh;
}