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 */
/*}

@-moz-document url-prefix() {
    fieldset {
        display: table-cell;*/ /* Allows forms to scale down properly for mobile in Firefox */
/*}
}*/
/* End of CB Additions */
/*****************************************************************

BRAND COLORS


For naming conventions, enter the hex code into this website: http://chir.ag/projects/name-that-color

If a color is directly tied to another color in its usage, append it with how it's being modified. For example: 

$teal: #009482;
$teal-light: #35a08b;

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

COLOR USAGE

Take the brand color variables from above and apply them below to the common color usages

*****************************************************************/
/* PRIMARY, SECONDARY, & ACCENT COLORS **************/
/* BACKGROUND COLORS **************/
/* BORDER COLORS **************/
/* TEXT COLORS **************/
/*****************************************************************

FONTS

*****************************************************************/
/* HEADINGS **************/
.font-heading {
  font-family: "AmiriRegular", Arial, sans-serif;
}

.font-heading2 {
  font-family: "AmiriRegular", Arial, sans-serif;
}

/* SUBHEADINGS **************/
.font-subheading {
  font-family: "MontserratRegular", Arial, sans-serif;
}

.font-subheading2 {
  font-family: "MontserratRegular", Arial, sans-serif;
}

/* BODY COPY **************/
.font-body {
  font-family: "MontserratRegular", Arial, sans-serif;
}

.font-weight-bold {
  font-family: "MontserratBold", Arial, sans-serif;
}

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

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;
  }
}

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

BORDER RADIUS

*****************************************************************/
/* BORDER RADIUS SMALL **************/
.bdr-radius-sm {
  border-radius: 2px;
}

.bdr-radius-top-left-sm {
  border-radius-top-left: 2px;
}

.bdr-radius-top-right-sm {
  border-radius-top-right: 2px;
}

.bdr-radius-bottom-right-sm {
  border-radius-bottom: 2px;
}

.bdr-radius-bottom-left-sm {
  border-radius-left: 2px;
}

/* BORDER RADIUS MEDIUM **************/
.bdr-radius-md {
  border-radius: 4px;
}

.bdr-radius-top-left-md {
  border-radius-top-left: 4px;
}

.bdr-radius-top-right-md {
  border-radius-top-right: 4px;
}

.bdr-radius-bottom-right-md {
  border-radius-bottom: 4px;
}

.bdr-radius-bottom-left-md {
  border-radius-left: 4px;
}

/* BORDER RADIUS LARGE **************/
.bdr-radius-lg {
  border-radius: 6px;
}

.bdr-radius-top-left-lg {
  border-radius-top-left: 6px;
}

.bdr-radius-top-right-lg {
  border-radius-top-right: 6px;
}

.bdr-radius-bottom-right-lg {
  border-radius-bottom: 6px;
}

.bdr-radius-bottom-left-lg {
  border-radius-left: 6px;
}

/* BORDER RADIUS CIRCLE **************/
.bdr-radius-circle {
  border-radius: 50%;
}

/* BORDER RADIUS PILL **************/
.bdr-radius-pill {
  border-radius: 9999px;
}

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

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

.button (this includes css used for all buttons, plus padding and font-size for a default button)
.button-lg (this dictates the button size and would be larger than ".button", so you'd include padding and font-size)
.button-primary (this dictates the button color, so you'd include background-color, color, and possibly border)
.button-secondary (this dictates the button color, so you'd include background-color, color, and possibly border)

***************/
.hcontent a.button,
.hcontent input.button[type=submit],
.hcontent input.button[type=button],
a.button, button.button,
input.button[type=submit],
input.button[type=button],
.hcontent a.btn,
.hcontent input.btn[type=submit],
.hcontent input.btn[type=button],
a.btn,
input.btn[type=submit],
input.btn[type=button] {
  display: inline-block;
  padding: 20px 30px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 0;
  font-family: "MontserratBold", Arial, sans-serif;
  transition: all 0.3s;
  line-height: 1.7;
  border: none;
  text-decoration: none;
}

.hcontent a.button-sm, .hcontent button.button-sm,
.hcontent input.button-sm[type=submit],
.hcontent input.button-sm[type=button],
a.button.button-sm, button.button.button-sm,
input.button.button-sm[type=submit],
input.button.button-sm[type=button],
.hcontent a.btn-sm,
.hcontent input.btn-sm[type=submit],
.hcontent input.btn-sm[type=button],
a.btn-sm,
input.btn-sm[type=submit],
input.btn-sm[type=button] {
  font-size: 14px;
  padding: 12px 18px;
}

.hcontent a.button-xlsm, .hcontent button.button-xlsm,
.hcontent input.button-xlsm[type=submit],
.hcontent input.button-xlsm[type=button],
a.button.button-xlsm, button.button.button-xlsm,
input.button.button-xlsm[type=submit],
input.button.button-xlsm[type=button],
.hcontent a.btn-xlsm,
.hcontent input.btn-xlsm[type=submit],
.hcontent input.btn-xlsm[type=button],
a.btn-xlsm,
input.btn-xlsm[type=submit],
input.btn-xlsm[type=button] {
  font-size: 13px;
  padding: 6px 9px;
}

.hcontent a.button-lg, .hcontent button.button-lg,
.hcontent input.button-lg[type=submit],
.hcontent input.button-lg[type=button],
a.button.button-lg, button.button.button-lg,
input.button.button-lg[type=submit],
input.button.button-lg[type=button],
.hcontent a.btn-lg,
.hcontent input.btn-lg[type=submit],
.hcontent input.btn-lg[type=button],
a.btn-lg,
input.btn-lg[type=submit],
input.btn-lg[type=button] {
  font-size: 20px;
  padding: 24px 36px;
}

.hcontent a.button-primary, .hcontent button.button-primary,
.hcontent input.button-primary[type=submit],
.hcontent input.button-primary[type=button],
a.button-primary, button.button-primary,
input.button-primary[type=submit],
input.button-primary[type=button],
.hcontent a.btn-primary,
.hcontent input.btn-primary[type=submit],
.hcontent input.btn-primary[type=button],
a.btn-primary,
input.btn-primary[type=submit],
input.btn-primary[type=button] {
  background: #5ab7b2;
  color: #ffffff;
}

.hcontent a.button-primary:hover, .hcontent a.button-primary:focus,
.hcontent input.button-primary[type=submit]:hover, .hcontent input.button-primary[type=submit]:focus,
.hcontent input.button-primary[type=button]:hover, .hcontent input.button-primary[type=button]:focus,
a.button-primary:hover, a.button-primary:focus,
input.button-primary[type=submit]:hover, input.button-primary[type=submit]:focus,
input.button-primary[type=button]:hover, input.button-primary[type=button]:focus,
.hcontent a.btn-primary:hover, .hcontent a.btn-primary:focus,
.hcontent input.btn-primary[type=submit]:hover, .hcontent input.btn-primary[type=submit]:focus,
.hcontent input.btn-primary[type=button]:hover, .hcontent input.btn-primary[type=button]:hover,
a.btn-primary:hover, a.btn-primary:focus,
input.btn-primary[type=submit]:hover, input.btn-primary[type=submit]:focus,
input.btn-primary[type=button]:hover, input.btn-primary[type=button]:focus {
  background-color: #53a8a3;
  color: #ffffff;
  text-decoration: none;
}

.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],
.hcontent a.btn-secondary,
.hcontent input.btn-secondary[type=submit],
.hcontent input.btn-secondary[type=button],
a.btn-secondary,
input.btn-secondary[type=submit],
input.btn-secondary[type=button] {
  background-color: #a69a95;
  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,
.hcontent a.btn-secondary:hover,
.hcontent input.btn-secondary[type=submit]:hover,
.hcontent input.btn-secondary[type=button]:hover,
a.btn-secondary:hover,
input.btn-secondary[type=submit]:hover,
input.btn-secondary[type=button]:hover {
  background-color: #9a8d87;
}

@media screen and (max-width: 991px) {
  .hcontent a.button-small,
  .hcontent input.button-small[type=submit],
  .hcontent input.button-small[type=button],
  a.button-small,
  input.button-small[type=submit],
  input.button-small[type=button],
  .hcontent a.btn-small,
  .hcontent input.btn-small[type=submit],
  .hcontent input.btn-small[type=button],
  a.btn-small,
  input.btn-small[type=submit],
  input.btn-small[type=button] {
    font-size: 12px;
    padding: 14px 16px;
  }
  .hcontent a.button,
  .hcontent input.button[type=submit],
  .hcontent input.button[type=button],
  a.button,
  input.button[type=submit],
  input.button[type=button],
  .hcontent a.btn,
  .hcontent input.btn[type=submit],
  .hcontent input.btn[type=button],
  a.btn,
  input.btn[type=submit],
  input.btn[type=button] {
    padding: 16px 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .hcontent a.button,
  .hcontent input.button[type=submit],
  .hcontent input.button[type=button],
  a.button,
  input.button[type=submit],
  input.button[type=button],
  .hcontent a.btn,
  .hcontent input.btn[type=submit],
  .hcontent input.btn[type=button],
  a.btn,
  input.btn[type=submit],
  input.btn[type=button] {
    padding: 14px 20px;
    font-size: 12px;
  }
}
/************** 

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;
  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;
  }
}
/*Start Quote Created*/
#wrapper_quote_created #main-form-container .btn-default {
  background-color: #999;
  border: 1px solid #999;
  color: #fff;
}

#wrapper_quote_created #main-form-container .hh-required-fields {
  font-family: "Montserrat-r";
  color: #e16125;
  margin-bottom: 15px;
}

#wrapper_quote_created #main-form-container .wysiwyg-toggle-editor {
  float: right;
  width: 137px;
  margin-top: -15px;
}

#wrapper_quote_created #main-form-container fieldset > .row {
  margin-bottom: 15px;
}

#wrapper_quote_created #main-form-container input[type=text],
#wrapper_quote_created #main-form-container input[type=email] {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 16px;
  padding: 7px;
  width: 100%;
}

#wrapper_quote_created #main-form-container .btn-default:hover {
  color: #fff;
  background: #555555;
  border-color: #555;
}

#wrapper_quote_created #main-form-container .mce-wordcount {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: right;
}

@media screen and (max-width: 480px) {
  #wrapper_quote_created #main-form-container fieldset > .row {
    margin-bottom: 0;
  }
}
/*End Quote Created*/
#wrapper-viewfloorselection {
  min-height: 500px;
}
#wrapper-viewfloorselection .view-floor-overlay {
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #ccc;
  opacity: 0.85;
  position: fixed;
}
#wrapper-viewfloorselection .view-floor-container {
  max-width: 600px;
  z-index: 9999999;
  max-height: 300px;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  position: fixed;
  margin: auto auto;
  border: 1px solid #ccc;
}
#wrapper-viewfloorselection .view-floor-container .view-floor-inner {
  padding: 25px;
}
#wrapper-viewfloorselection .view-floor-container .view-floor-inner ul {
  margin: 5px 0 25px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 5px 0 5px 0;
}
#wrapper-viewfloorselection .view-floor-container .view-floor-inner ul li {
  line-height: 2;
  text-align: left;
  text-indent: 50px;
}
#wrapper-viewfloorselection .view-floor-container .view-floor-inner ul li span.question {
  font-weight: bold;
  padding-right: 15px;
  border-bottom: 1px solid #fff;
}
#wrapper-viewfloorselection .view-floor-container .view-floor-inner .floor-buttons input[type=submit] {
  padding: 5px 15px;
  font-size: 95%;
}
@media screen and (max-width: 480px) {
  #wrapper-viewfloorselection .view-floor-overlay {
    height: 100%;
    position: fixed;
  }
  #wrapper-viewfloorselection .view-floor-container {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
  }
  #wrapper-viewfloorselection .view-floor-container .view-floor-inner ul li {
    text-indent: 0px;
    line-height: 1.25;
    padding-bottom: 5px;
  }
  #wrapper-viewfloorselection .view-floor-container .view-floor-inner .floor-buttons input[type=submit] {
    width: 100%;
    margin-bottom: 10px;
  }
}

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

H-TABS

************************************************/
.h-tabs-container {
  /* H-Tabs Style: Button Tabs */
  /* H-Tabs Style: Button Group Tabs */
}
.h-tabs-container .h-tab-links {
  margin: 0px;
  padding: 0px;
  list-style: none;
  border-bottom: 1px solid #eee5e4;
}
.h-tabs-container .h-tab-links li {
  display: inline-block;
  margin: 0;
  cursor: pointer;
}
.h-tabs-container .h-tab-links li a {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  border-bottom: 3px solid transparent;
  color: #686162;
  transition: all 0.3s;
}
.h-tabs-container .h-tab-links li a:hover {
  text-decoration: none;
  color: #402020;
}
.h-tabs-container .h-tab-links li a.h-tab-link-current {
  border-bottom-color: #402020;
  color: #402020;
}
@media (min-width: 1024px) {
  .h-tabs-container .h-tab-content {
    padding-top: 40px;
  }
}
@media (max-width: 1023px) {
  .h-tabs-container .h-tab-content {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .h-tabs-container .h-tab-content {
    padding-top: 20px;
  }
}
@media (min-width: 1024px) {
  .h-tabs-container .h-tab-content {
    padding-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .h-tabs-container .h-tab-content {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .h-tabs-container .h-tab-content {
    padding-bottom: 20px;
  }
}
.h-tabs-container .h-tab-content.h-tab-content-current {
  display: inherit;
}
.h-tabs-container .h-tab-links-toggle.button.button-sm {
  display: none;
  position: relative;
  padding: 12px 36px 12px 18px;
  cursor: pointer;
  border-radius: 3px;
}
.h-tabs-container .h-tab-links-toggle.button.button-sm:after {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  content: "\f107";
  transition: all 0.3s;
}
.h-tabs-container .h-tab-links-toggle.button.button-sm.toggle-clicked:after {
  transform: translateY(-50%) rotate(180deg);
}
.h-tabs-container.single-htab .h-tab-links-toggle.button.button-sm {
  display: none !important;
}
.h-tabs-container.style-button-tabs .h-tab-links {
  border: none;
}
.h-tabs-container.style-button-tabs .h-tab-links li {
  margin-right: 10px;
}
.h-tabs-container.style-button-tabs .h-tab-links li:last-child {
  margin-right: 0;
}
.h-tabs-container.style-button-tabs .h-tab-links li a {
  border: 1px solid #eee5e4;
  border-radius: 0;
  padding: 8px 18px;
}
.h-tabs-container.style-button-tabs .h-tab-links li a:hover {
  color: #402020;
}
.h-tabs-container.style-button-tabs .h-tab-links li a.h-tab-link-current {
  border-color: #402020;
  background: #402020;
  color: #fff;
}
.h-tabs-container.style-button-group-tabs .h-tab-links {
  display: inline-block;
  border: 1px solid #eee5e4;
  background: #fff;
  border-radius: 0;
}
.h-tabs-container.style-button-group-tabs .h-tab-links li {
  margin-left: -4px;
}
.h-tabs-container.style-button-group-tabs .h-tab-links li a {
  padding: 8px 18px;
  border: none;
}
.h-tabs-container.style-button-group-tabs .h-tab-links li a:hover {
  background: #eee5e4;
  color: #402020;
}
.h-tabs-container.style-button-group-tabs .h-tab-links li a.h-tab-link-current {
  border-color: #402020;
  background: #402020;
  color: #fff;
}
.h-tabs-container.style-button-group-tabs .h-tab-links li:first-child {
  border-radius: 3px 0 0 3px;
  margin-left: 0;
}
.h-tabs-container.style-button-group-tabs .h-tab-links li:last-child {
  border-radius: 0 3px 3px 0;
}
@media (max-width: 767px) {
  .h-tabs-container .h-tab-links-toggle.button.button-sm {
    display: block;
  }
  .h-tabs-container:not(.single-htab) .h-tab-links, .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links {
    display: none;
    background: #eee5e4;
    border: none;
    margin-top: -3px; /* makes sure container is flush with toggle button */
    padding: 13px 0 10px 0;
  }
  .h-tabs-container:not(.single-htab) .h-tab-links.show-h-tab-links, .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links.show-h-tab-links {
    display: block;
  }
  .h-tabs-container:not(.single-htab) .h-tab-links li,
  .h-tabs-container:not(.single-htab) .h-tab-links li:first-child,
  .h-tabs-container:not(.single-htab) .h-tab-links li:last-child, .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:first-child,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:last-child {
    display: block;
    margin: 0;
    border-radius: 0;
    background: transparent;
  }
  .h-tabs-container:not(.single-htab) .h-tab-links li a,
  .h-tabs-container:not(.single-htab) .h-tab-links li:first-child a,
  .h-tabs-container:not(.single-htab) .h-tab-links li:last-child a, .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li a,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:first-child a,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:last-child a {
    border-radius: 0;
    border: none;
    border-left: 3px solid transparent;
  }
  .h-tabs-container:not(.single-htab) .h-tab-links li a.h-tab-link-current,
  .h-tabs-container:not(.single-htab) .h-tab-links li:first-child a.h-tab-link-current,
  .h-tabs-container:not(.single-htab) .h-tab-links li:last-child a.h-tab-link-current, .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li a.h-tab-link-current,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:first-child a.h-tab-link-current,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:last-child a.h-tab-link-current {
    background: transparent;
    border-left-color: #402020;
    color: #402020;
  }
  .h-tabs-container:not(.single-htab) .h-tab-links li a:hover,
  .h-tabs-container:not(.single-htab) .h-tab-links li:first-child a:hover,
  .h-tabs-container:not(.single-htab) .h-tab-links li:last-child a:hover, .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li a:hover,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:first-child a:hover,
  .h-tabs-container:not(.single-htab)[class*=style-] .h-tab-links li:last-child a:hover {
    background: transparent;
  }
  .h-tabs-container.single-htab .h-tab-links {
    display: block !important;
  }
  .h-tabs-container.single-htab .h-tab-links li {
    width: 100%;
  }
}

html.js .h-tab-content {
  display: none;
}
html.js .h-tab-content.h-tab-content-current {
  display: inherit;
}

/* END OF H-TABS */
/************************************************

FLEXIMAGE

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

START SITE SPECIFIC CSS

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

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

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

a,
a:active,
a:hover {
  color: #402020;
  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: "AmiriRegular", Arial, sans-serif;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 54px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 21px;
}

/* header styling started here  */
.top-header-wrapper {
  background-color: #402020;
  padding: 3px 0px 5px;
}

.top-header-wrapper ul {
  margin: 0;
  line-height: 100%;
}

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

.top-header-wrapper ul > li {
  display: inline-block;
  margin-right: 20px;
}

.top-header-wrapper ul > li > a:hover {
  color: #b4a9a4;
}

.top-header-wrapper ul > li > a {
  color: #cbbdb8;
  font-size: 14px;
  padding: 0 5px;
}

.top-links {
  display: inline-block;
}

.user-shop-wrapper {
  float: right;
}

.user-shop-wrapper ul > li > a {
  padding: 5px 0 5px 30px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 19px;
}

.user-shop-wrapper ul > li > .shop {
  background-image: url("/Pub/design/icon-bag.png");
}

.user-shop-wrapper ul > li > .login {
  background-image: url("/Pub/design/icon-user.png");
}

.logo-wrapper a {
  width: 100%;
  max-width: 220px;
  display: inline-block;
}

.main-nav-wrapper {
  padding: 15px 0;
  border-bottom: 1px solid #eee5e4;
}

.menu-wrapper {
  padding: 8px 0;
  display: inline-block;
  width: 100%;
}

.menu-wrapper ul {
  margin: 0;
  display: inline-block;
}

.menu-wrapper ul > li {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}

.menu-wrapper ul > li > a {
  color: #686162;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px 5px 20px 25px;
  display: inherit;
}

.menu-wrapper .mobile-nav li > i {
  font-size: 14px;
}

.menu-wrapper ul > li > a > i {
  display: none;
}

.menu-wrapper .button {
  float: right;
  margin: 2px 0 0 0;
}

.menu-wrapper ul > li:hover .submenu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.menu-wrapper .submenu:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("/Pub/design/icon-arrow.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: -11px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.menu-wrapper .submenu {
  position: absolute;
  width: 224px;
  border: 1px solid #eee5e4;
  box-shadow: 0 2px 5px 0px rgba(24, 23, 24, 0.15);
  -webkit-box-shadow: 0 2px 5px 0px rgba(24, 23, 24, 0.15);
  -moz-box-shadow: 0 2px 5px 0px rgba(24, 23, 24, 0.15);
  opacity: 0;
  visibility: hidden;
  opacity: 0;
  top: 80%;
  padding: 15px;
  background-color: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 999;
  transition: all 0.3s;
}

.menu-wrapper .submenu li {
  width: 100%;
  margin: 0;
}

.menu-wrapper .submenu li > a {
  width: 100%;
  padding: 15px;
  text-transform: capitalize;
}

.menu-wrapper .submenu li > a > i {
  margin-left: 10px;
}

.menu-wrapper a > i {
  margin-left: 8px;
}

.menu-wrapper a.button-sm {
  margin-right: 5px;
}

.mobile-toggle-icon {
  display: none;
  float: right;
  padding: 10px;
  margin: 10px;
  cursor: pointer;
}

.mobile-toggle-icon span {
  width: 26px;
  height: 2px;
  margin: 3px 0;
  display: block;
  background-color: #686162;
}

.mobile-menu-wrapper .user-shop-wrapper, .close-nav {
  display: none;
}

/* Footer styling started here */
.footer-wrapper {
  background-color: #402020;
  padding: 60px 0 0;
}
.footer-wrapper .contact-number {
  font-size: 14px;
  color: #cbbdb8;
}

.links h3 {
  color: #ffffff;
  padding: 0;
}

.links ul {
  margin: 0;
}

.links ul > li > a:hover {
  color: #b4a9a4;
}

.links ul > li > a {
  color: #cbbdb8;
  transition: all 0.3s;
  font-size: 14px;
}

.footer-logo .logo {
  max-width: 100px;
  display: block;
  margin: 0 0 25px 0;
}

.copyright a:hover {
  color: #b4a9a4;
}

p.copyright {
  line-height: 26px;
  padding-right: 10px;
  font-size: 13px;
}

.copyright a {
  color: #cbbdb8;
  transition: all 0.3s;
  margin-right: 5px;
}

.copyright span {
  margin-right: 5px;
}

.copyright {
  font-size: 13px;
  color: #cbbdb8;
}

.social-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons li > a:hover {
  color: #b4a9a4;
  transition: all 0.3s;
}

.social-icons li > a {
  font-size: 28px;
  color: #cbbdb8;
}

.contact-row {
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}
.contact-row .contact-number {
  padding-top: 25px;
}
.contact-row .contact-number a {
  color: #cbbdb8;
  vertical-align: middle;
  font-size: 14px;
}
.contact-row .contact-number a i {
  margin-right: 7px;
}
.contact-row .contact-social .social-icons {
  float: right;
}

.col.mobile-footer-logo {
  display: none;
}

#wrapper_test_products {
  padding: 100px 0;
}

#wrapper_test_products .products {
  margin-top: 30px;
}

/* Responsive satrted here */
@media screen and (max-width: 1270px) {
  .menu-wrapper ul > li > a {
    padding: 20px 5px;
  }
}
@media screen and (max-width: 1149px) {
  .hcontent h1 {
    font-size: 50px;
  }
  .hcontent h4 {
    font-size: 24px;
  }
  .menu-wrapper ul > li {
    margin: 0 5px;
  }
  .menu-wrapper ul > li > a {
    padding: 20px 5px;
  }
  p.copyright {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .top-header-wrapper ul > li > a {
    font-size: 12px;
  }
  .user-shop-wrapper ul > li > a {
    padding: 5px 0 5px 20px;
    background-size: 13px;
  }
  .main-nav-wrapper .col.grid3-12 {
    width: 15%;
  }
  .menu-wrapper {
    padding: 0;
  }
  .menu-wrapper ul > li {
    margin: 0;
  }
  .menu-wrapper ul > li > a {
    padding: 14px 10px;
    font-size: 12px;
  }
  .main-nav-wrapper .col.grid9-12 {
    width: 83.4%;
  }
  .hcontent .menu-wrapper .button {
    padding: 9px 15px;
  }
  .links ul > li {
    line-height: 1.5;
  }
  .hcontent p.copyright {
    font-size: 10px;
  }
  .footer-wrapper {
    padding: 30px 0 0;
  }
  .footer-logo .logo {
    max-width: 80px;
    margin: 0 0 10px 0;
  }
  .links ul > li > a {
    font-size: 12px;
  }
  .social-icons li > a {
    font-size: 18px;
  }
  .contact-row {
    margin-top: 20px;
  }
  .contact-row .contact-number a {
    font-size: 14px;
    line-height: 2.8;
  }
  .menu-wrapper .submenu {
    width: 160px;
    padding: 10px;
  }
  .menu-wrapper .submenu li > a {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .hcontent {
    font-size: 14px;
  }
  .hcontent h1 {
    font-size: 28px;
  }
  .hcontent h2 {
    font-size: 24px;
  }
  .hcontent h3 {
    font-size: 20px;
  }
  .hcontent h4 {
    font-size: 18px;
  }
  .hcontent h5 {
    font-size: 16px;
  }
  .hcontent h6 {
    font-size: 14px;
  }
  .top-header-wrapper {
    display: none;
  }
  .hcontent .menu-wrapper .button {
    display: none;
  }
  /* .mobile-menu-wrapper {
  	display: none;
  } */
  .main-nav-wrapper {
    padding: 5px 0;
  }
  .main-nav-wrapper .col.grid3-12.mobile-logo {
    width: 100%;
  }
  .mobile-logo .logo-wrapper {
    display: inline;
  }
  .logo-wrapper a {
    max-width: 170px;
  }
  .mobile-toggle-icon {
    display: block;
  }
  .main-nav-wrapper .col.grid9-12.mobile-menu-wrapper {
    display: block;
    width: 100%;
  }
  .mobile-menu-wrapper .menu-wrapper {
    position: fixed;
    width: 290px;
    background: #ffffff;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 9999;
    overflow: auto;
    transition: all 0.3s;
  }
  .mobile-menu-wrapper .user-shop-wrapper .button {
    padding: 17px 30px;
    float: none;
    display: inline-block;
    margin: 0;
    clear: both;
  }
  .mobile-menu-wrapper .user-shop-wrapper {
    display: inline-block;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
  }
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
  }
  .user-shop-wrapper ul {
    display: inline-block;
    padding: 10px 0;
  }
  .user-shop-wrapper ul > li > a {
    width: 46px;
    padding: 10px;
    margin: 0 15px;
    position: relative;
  }
  .user-shop-wrapper ul > li > span {
    width: 25px;
    height: 25px;
    background: #842d2c;
    color: #ffffff;
    position: absolute;
    text-align: center;
    line-height: 25px;
    right: 4px;
    top: 0;
    border-radius: 50%;
  }
  .user-shop-wrapper ul > li > .login, .user-shop-wrapper ul > li > .shop {
    background: none;
  }
  .mobile-menu-wrapper .mobile-nav {
    padding: 0 10px;
  }
  .mobile-menu-wrapper .mobile-nav li:nth-last-child(1), .menu-wrapper .mobile-nav .submenu li:nth-last-child(1) {
    border-bottom: none;
  }
  .mobile-menu-wrapper .mobile-nav li {
    width: 100%;
    border-bottom: 1px solid #dddddd;
  }
  .mobile-menu-wrapper .mobile-nav li > a {
    padding: 20px 15px;
    width: 100%;
    font-size: 14px;
  }
  .mobile-menu-wrapper .mobile-nav li > .submenu:before {
    display: none;
  }
  .mobile-menu-wrapper .mobile-nav li > .submenu li:nth-child(1) a {
    padding-top: 0;
  }
  .mobile-menu-wrapper .mobile-nav li > .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    right: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    margin: 0px;
    width: 100%;
    display: none;
    transition: none;
  }
  .menu-wrapper .mobile-nav li a i.fa-angle-down {
    display: none;
  }
  .menu-wrapper .mobile-nav li i.fa-angle-down {
    color: #cbbdb8;
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 24px;
    display: block;
    cursor: pointer;
  }
  .menu-wrapper .mobile-nav li i.fa-angle-down.open-menu:before {
    content: "\f106";
  }
  .menu-wrapper .mobile-nav .submenu li > a {
    padding: 15px 5px;
  }
  .close-nav {
    position: absolute;
    right: 15px;
    top: 18px;
    width: 25px;
    height: 25px;
    display: block;
    cursor: pointer;
  }
  .close-nav:before, .close-nav:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 3px;
    background-color: #686162;
  }
  .close-nav:before {
    transform: rotate(45deg);
  }
  .close-nav:after {
    transform: rotate(-45deg);
  }
  .col.grid3-12.links {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .col.footer-logo {
    display: none;
  }
  .footer-wrapper {
    padding: 30px 0 0 0;
  }
  .col.mobile-footer-logo.footer-logo {
    display: block;
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
  }
  .col.mobile-footer-logo.footer-logo .social-icons {
    margin-bottom: 5px;
  }
  .col.mobile-footer-logo.footer-logo .contact-number a {
    color: #cbbdb8;
    line-height: 2;
    text-align: center;
    font-size: 16px;
  }
  .col.mobile-footer-logo.footer-logo .contact-number i {
    margin-right: 7px;
  }
  .contact-row {
    display: none;
  }
  .footer-logo .logo {
    display: inline-block;
  }
  .footer-logo .logo img {
    height: 60px;
    display: inline-block;
  }
  .hcontent p.copyright {
    padding-top: 5px;
  }
  #wrapper_test_products {
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .hcontent h1 {
    font-size: 22px;
  }
  .footer-wrapper .setcontainer {
    padding-bottom: 20px;
  }
  #wrapper_test_products .products {
    margin: 0;
  }
  #wrapper_test_products .products .col {
    margin: 10px 0;
  }
}
/***************************

START SITE SPECIFIC CSS

***************************/
body {
  background: #fff;
  color: #686162;
  text-align: center;
  font-family: "MontserratRegular", Arial, sans-serif;
  font-size: 100%;
  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:active,
a:hover {
  color: #402020;
  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: "AmiriRegular", Arial, sans-serif;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/* header styling started here  */
.header + div {
  padding-top: 140px;
}

.site-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  overflow: hidden;
  padding: 50px 60px;
  transition: all 0.3s;
  border-bottom: 1px solid #eee5e4;
}

.site-header.headersmall {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0.25em 1em rgba(36, 36, 37, 0.1);
  -webkit-box-shadow: 0 0.25em 1em rgba(36, 36, 37, 0.1);
  -moz-box-shadow: 0 0.25em 1em rgba(36, 36, 37, 0.1);
}

.header-height {
  margin-top: 139px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.nav-toggle span {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  display: block;
  float: left;
  background: #000;
  clear: both;
  margin: 3px 0;
}

.nav-toggle {
  width: 36px;
  height: auto;
  display: inline-block;
  float: left;
  cursor: pointer;
  margin-top: 3px;
}

.site-header a.logo {
  width: 230px;
  height: 78px;
  margin: 0;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.site-header a.logo img {
  max-height: 100%;
}

.site-header.headersmall a.logo {
  height: 60px;
}

ul.logged-out {
  margin: 0;
  padding: 0;
}

ul.logged-out li.login a.button {
  color: #686162;
}

ul.logged-out li {
  display: inline;
  list-style: none;
}

ul.logged-out li.cart {
  margin: 0 8px;
}

ul.logged-out li.cart a {
  color: #686162;
}

ul.logged-out li.cart {
  font-size: 24px;
}

ul.logged-out li.get-started {
  margin: 0 0 0 24px;
}

/* menu stayling */
.main-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 470px;
  background: #402020;
  width: 100%;
  z-index: 100;
  overflow-y: auto;
  text-align: left;
  display: none;
}

.main-nav ul {
  padding: 22px 0px 48px 16px;
}

.main-nav ul li {
  width: 100%;
  clear: both;
  display: inline-block;
  margin-bottom: 5px;
}

.main-nav ul li a {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  transition: all 0.3s;
}

.main-nav ul li a:hover {
  background: #ffffff;
  color: #402020;
}

.main-nav ul li a.button {
  font-size: 13px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.main-nav .nav-toggle {
  margin: 10px 0 30px 0;
  cursor: pointer;
}

.main-nav .nav-toggle span {
  background-color: #ffffff;
  position: relative;
}

.main-nav .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.main-nav .nav-toggle span:nth-child(3) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  bottom: 10px;
}

.main-nav .nav-toggle span:nth-child(1) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  top: 10px;
}

#footer {
  padding: 32px 0 16px;
  border-top: 8px solid #402020;
}

#footer a {
  color: #686162;
}

#footer hr {
  margin: 0;
  background: #eee5e4;
  height: 1px;
  border: none;
}

#footer #footer-secondary ul.actions {
  margin: 15px 0;
}

#footer #social-navigation {
  float: right;
  margin-bottom: 15px;
  margin-top: 0;
}

#footer #social-navigation ul.actions.align-right {
  margin: 0;
}

#footer #footer-navigation {
  margin-bottom: 15px;
}

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

#footer ul.actions li {
  display: inline-block;
  text-transform: uppercase;
  padding-right: 15px;
  line-height: 1.5;
}

#footer ul.actions.align-right {
  text-align: right;
  margin: 15px 0;
}

#footer ul.actions.align-right li,
#footer #social-navigation ul.actions li {
  padding-right: 0;
  padding-left: 15px;
}

#footer p {
  text-align: right;
  text-transform: uppercase;
  margin: 15px 0;
  line-height: 1.5;
}

#wrapper_test_products {
  padding: 100px 0;
}

#wrapper_test_products .products {
  margin-top: 30px;
}

@media screen and (max-width: 1279px) {
  .setcontainer {
    max-width: 980px;
  }
}
@media screen and (max-width: 1079px) {
  ul.logged-out li.get-started {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .setcontainer {
    max-width: 100%;
  }
}
@media screen and (max-width: 899px) {
  .main-nav {
    max-width: 100%;
  }
}
@media screen and (max-width: 769px) {
  .site-header ul.logged-out {
    display: none;
  }
}
@media screen and (max-width: 759px) {
  .site-header, .site-header.headersmall {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .site-header a.logo, .site-header.headersmall a.logo {
    height: 58px;
    width: 180px;
  }
  .header-height, .site-header.headersmal + .header-height {
    margin-top: 70px;
  }
  .main-nav {
    text-align: center;
  }
  .main-nav .nav-toggle {
    float: none;
  }
  #footer .col.grid8-12,
  #footer .col.grid4-12,
  #footer .col.grid7-12,
  #footer .col.grid5-12 {
    width: 100%;
    margin: 0;
  }
  #footer #social-navigation {
    float: left;
  }
  #footer ul.actions.align-right {
    text-align: left;
  }
  #footer p {
    margin-top: 0;
    text-align: left;
  }
  #footer ul.actions.align-right li,
  #footer #social-navigation ul.actions li {
    padding-right: 15px;
    padding-left: 0;
  }
  .main-nav ul {
    padding-left: 0;
  }
  #wrapper_test_products {
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-height, .site-header.headersmall + .header-height {
    margin-top: 68px;
    vertical-align: top;
  }
  .col {
    margin: 0;
  }
  #wrapper_test_products .products {
    margin: 0;
  }
  #wrapper_test_products .products .col {
    margin: 10px 0;
  }
}
/* style for invoice page stared */
.invoice {
  font-size: 14px;
}

.invoice h4 {
  font-size: 24px;
}

.our-detail h4 {
  color: #686162;
  margin: 0 0 10px;
  padding: 0;
}

.our-detail p {
  color: #686162;
  font-size: 20px;
  line-height: 29px;
  margin: 0;
}

.our-detail, .purchase-order {
  margin: 40px 0 20px;
}

.purchase-order {
  float: right;
  text-align: right;
}

.purchase-order div {
  border: 1px solid #aaa;
  float: right;
  max-width: 250px;
  width: 100%;
}

.purchase-order h1, .invoice h1 {
  margin: 0 0 15px;
  font-size: 28px;
}

.purchase-order div h6 {
  background: #ececec none repeat scroll 0 0;
  border-bottom: 1px solid #aaa;
  color: #333333;
  display: inline-block;
  padding: 10px;
  text-align: center;
  width: 50%;
}

.purchase-order span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.7;
  padding: 10px;
  text-align: center;
  width: 50%;
}

.purchase-order div span:nth-child(1) {
  border-left: 1px solid #aaa;
  float: left;
}

.purchase-order span:nth-child(1) {
  border: 1px solid #aaa;
  display: inline-block;
  float: left;
}

.purchase-order div h6:nth-child(1), .purchase-order div span {
  border-right: 1px solid #aaa;
}

.vendor-sec, .shipto-sec {
  border: 1px solid #aaa;
  height: 150px;
}

.vendor-sec h6, .shipto-sec h6 {
  background: #ececec none repeat scroll 0 0;
  border-bottom: 1px solid #aaa;
  padding: 10px 15px;
  font-size: 14px;
}

.vendor-sec p, .shipto-sec p {
  color: #686162;
  display: inline-block;
  padding: 10px 15px;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}

.product-trm-due-date {
  float: right;
  margin-top: 35px;
  width: 100%;
  margin-bottom: 20px;
}

.product-trm-due-date table.tablesaw, .product-item-listing table.tablesaw {
  border-color: #aaa;
  border-style: solid;
  border-width: 1px 1px 0 1px;
}

.product-trm-due-date table.tablesaw {
  border-bottom: none;
}

.product-trm-due-date table.tablesaw thead, .product-item-listing table.tablesaw thead {
  background: #ececec none repeat scroll 0 0;
  border-bottom: 1px solid #aaa;
}

.product-trm-due-date table.tablesaw thead tr th, .product-trm-due-date table.tablesaw tbody tr td, .product-item-listing table.tablesaw thead tr th, .product-item-listing table.tablesaw tbody tr td {
  border-right: 1px solid #aaa;
  color: #686162;
  line-height: 24px;
  text-align: center;
}

.product-item-listing {
  border-bottom: 1px solid #aaa;
  clear: both;
  margin-bottom: 30px;
  width: 100%;
}

.product-item-listing table.tablesaw tr {
  border-bottom: medium none;
}

.product-item-listing table.tablesaw tr.total {
  border-top: 1px solid #aaa;
}

.product-item-listing table.tablesaw tr.total td {
  border: medium none;
}

.product-item-listing table.tablesaw tr.total td:nth-child(7) {
  border-left: 1px solid #aaa;
  max-width: 20%;
  width: 100%;
}

.product-item-listing table.tablesaw tr td {
  text-align: left !important;
}

.purchase-order span:last-child {
  border-left: medium none;
  border-right: medium none;
}

.invoice td h1 {
  padding-top: 15px;
  font-size: 24px;
}

.product-results-wrapper {
  /*.all-product-sec .item .details-sec a {
      border-bottom: 1px solid #ebebeb;
      color: #272727;
      display: inline-block;
      font-size: 12px;
      letter-spacing: 2px;
      margin-bottom: 10px;
      min-height: 85px;
      word-wrap: break-word;
      padding: 15px 5px;
      width: 100%;
  }*/
  /*.all-product-sec .item .details-sec span {
      font-size: 10px;
      letter-spacing: 2px;
  }*/
  /*.all-product-sec .item .details-sec span.product-name {
      font-size: 14px;
      display: block;
  }*/
}
.product-results-wrapper .page-header-wrapper {
  padding-bottom: 20px;
}
.product-results-wrapper .recommended-for {
  width: 50%;
  display: inline;
  color: #686162;
  font-family: "MontserratRegular", Arial, sans-serif;
}
.product-results-wrapper .recommended-for select {
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #686162;
  border: 1px solid #eee5e4;
}
@media (max-width: 479px) {
  .product-results-wrapper .recommended-for {
    width: 100%;
  }
}
.product-results-wrapper .view-my-list a {
  float: right;
}
@media (max-width: 600px) {
  .product-results-wrapper .view-my-list a {
    float: none;
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .product-results-wrapper .col {
    width: 100%;
    margin-left: 0;
  }
}
.product-results-wrapper .filter-by {
  border-bottom: 1px solid #ccc;
  color: #402020;
  font-weight: 700;
  padding-bottom: 10px;
  margin: 20px 0;
  cursor: pointer;
  font-family: "MontserratRegular", Arial, sans-serif;
}
.product-results-wrapper .filter-by i {
  padding-left: 5px;
}
@media (max-width: 800px) {
  .product-results-wrapper .filters .col {
    width: 100%;
  }
}
.product-results-wrapper .filters label {
  color: #686162;
}
.product-results-wrapper .filters ul {
  padding-top: 20px;
  padding-left: 0;
}
.product-results-wrapper .filters li {
  display: inline;
  cursor: pointer;
}
.product-results-wrapper .filters li img {
  width: 20%;
}
.product-results-wrapper .filters li.active img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  margin: 0 auto;
  border: 3px solid #5ab7b2;
}
.product-results-wrapper .filters .styles li, .product-results-wrapper .filters .activity-levels li {
  display: inline-block;
  color: #000;
  padding: 5px 20px;
  border-radius: 36px;
  border: 1px solid #ccc;
  margin: 3px 0;
  font-size: 14px;
}
.product-results-wrapper .filters .styles li.active, .product-results-wrapper .filters .activity-levels li.active {
  border: 3px solid #5ab7b2;
}
.product-results-wrapper .all-product-sec {
  display: inline-block;
  width: 100%;
}
.product-results-wrapper .all-product-sec .collection-name {
  padding: 40px 0 30px 0;
  font-size: 28px;
  color: #402020;
  font-family: "AmiriRegular", Arial, sans-serif;
}
.product-results-wrapper .all-product-sec .collection-name i {
  font-size: 21px;
}
.product-results-wrapper .all-product-sec .grid4-12.resposiv-wid {
  width: 31.26%;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .product-results-wrapper .all-product-sec .grid4-12.resposiv-wid {
    width: 100%;
  }
}
.product-results-wrapper .all-product-sec .resposiv-wid img {
  margin-bottom: 10px;
}
.product-results-wrapper .all-product-sec .item {
  position: relative;
}
.product-results-wrapper .all-product-sec .item .action-list-symbol {
  display: inline-block;
  top: 10px;
  right: 15px;
  position: absolute;
  color: #fff;
  z-index: 10;
}
.product-results-wrapper .all-product-sec .item .action-list-text {
  margin-left: 6px;
  display: none;
  font-size: 0.8em;
  vertical-align: text-bottom;
  position: absolute;
  top: 9px;
  right: 48px;
  color: #fff;
  z-index: 10;
}
.product-results-wrapper .all-product-sec .item .details-sec {
  text-align: center;
  margin-top: 10px;
}
.product-results-wrapper .all-product-sec .item .details-sec .product-name {
  color: #402020;
  @inclUde font-subheading;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 21px;
  display: block;
}
.product-results-wrapper .all-product-sec .item .details-sec .price {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #686162;
}
.product-results-wrapper .collection-name i {
  cursor: pointer;
}

#wrapper-spaces {
  min-height: 600px;
}
#wrapper-spaces .search-box {
  position: relative;
}
#wrapper-spaces .search-box label {
  font-weight: bold;
  font-size: 18px;
}
#wrapper-spaces .search-box input[type=text] {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  width: 300px;
  padding-right: 100px;
}
#wrapper-spaces .search-box input[type=button] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 5px 10px;
  right: 0;
  height: 40px;
  bottom: 0;
  font-size: 14px;
  position: absolute;
}
#wrapper-spaces .quiz-question strong {
  display: block;
  margin-bottom: 7px;
}
#wrapper-spaces .content-header {
  margin-top: 25px;
  margin-bottom: 15px;
}
#wrapper-spaces .space-detail {
  border: 1px solid #eee5e4;
  margin-bottom: 20px;
  padding: 20px;
}
#wrapper-spaces .space-detail h2 {
  color: #402020;
}
#wrapper-spaces .space-detail p {
  font-size: 14px;
  color: #686162;
  line-height: 1.5;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spaces .space-detail .edit-link {
  margin-top: 7px;
}
#wrapper-spaces .space-detail .edit-link a.edit-space {
  font-size: 14px;
  color: #842d2c;
  text-decoration: underline;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spaces .space-detail .buttons {
  padding-top: 15px;
}
#wrapper-spaces .space-detail .button-primary {
  margin-right: 10px;
}
#wrapper-spaces .space-quizes {
  border: 1px solid #eee5e4;
  padding: 20px;
  margin-bottom: 40px;
}
#wrapper-spaces .space-quizes h2 {
  color: #402020;
  margin-bottom: 10px;
}
#wrapper-spaces .space-quizes .quiz-question {
  margin-bottom: 15px;
  font-size: 14px;
  font-family: "MontserratRegular", Arial, sans-serif;
}
@media (max-width: 480px) {
  #wrapper-spaces .bottom-row .col:last-child {
    margin-top: 50px;
  }
}
#wrapper-spaces .bottom-row a.back-spaces {
  color: #5ab7b2;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "MontserratBold", Arial, sans-serif;
}
#wrapper-spaces .bottom-row a.delete-space {
  color: #842d2c;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: underline;
  font-family: "MontserratRegular", Arial, sans-serif;
  position: relative;
  float: right;
}
@media (max-width: 480px) {
  #wrapper-spaces .bottom-row a.delete-space {
    float: none;
  }
}
#wrapper-spaces .edit-space-wrapper {
  display: none;
}
#wrapper-spaces .edit-space-wrapper input[type=text] {
  margin-top: 15px;
  border: 1px solid #eee5e4;
  padding: 11px;
  color: #686162;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spaces .edit-space-wrapper input.button.button-sm[type=submit] {
  padding: 8px 20px;
  margin-left: 7px;
}
#wrapper-spaces #panel_result .row .col {
  background-color: #F9F6F6;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}
#wrapper-spaces #panel_result .row .col:first-child {
  margin: 0;
}
#wrapper-spaces #panel_result .row .col.create-new-space {
  /*min-height: 239px;*/
}
#wrapper-spaces #panel_result .row .col.create-new-space .fa-plus-circle {
  font-size: 36px;
  display: block;
  padding-bottom: 16px;
}
#wrapper-spaces #panel_result .row .col a {
  cursor: pointer;
}
#wrapper-spaces #panel_result .row .col a h2 {
  cursor: pointer !important;
  margin-bottom: 3px;
}
@media (max-width: 550px) {
  #wrapper-spaces #panel_result .row .col a h2 {
    font-size: 26px;
  }
}
#wrapper-spaces #panel_result .row .col a .create-date {
  font-size: 14px;
  color: #686162;
  margin-bottom: 15px;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spaces #panel_result .row .col .action-list-symbol {
  display: inline-block;
  top: 10px;
  right: 15px;
  position: absolute;
  color: #a69a95;
  cursor: pointer;
}
#wrapper-spaces #panel_result .row .col .button-primary {
  margin-bottom: 10px;
  width: 173px;
}
@media (max-width: 550px) {
  #wrapper-spaces #panel_result .row .col .button-primary {
    margin: 0 10px 0 0;
  }
}
@media (max-width: 480px) {
  #wrapper-spaces #panel_result .row .col .button-primary {
    width: 100%;
  }
}
#wrapper-spaces #panel_result .row .col .button-secondary {
  width: 173px;
}
@media (max-width: 480px) {
  #wrapper-spaces #panel_result .row .col .button-secondary {
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  #wrapper-spaces #panel_result .row .col {
    width: 250px;
  }
}
@media (max-width: 550px) {
  #wrapper-spaces #panel_result .row .col {
    width: 100%;
    margin: 30px 0;
  }
}

#wrapper-spacelist .list-dropdown {
  font-size: 14px;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spacelist .list-dropdown select {
  border: 1px solid #eee5e4;
  padding: 5px;
  border-radius: 3px;
  background-image: url("/Pub/design/select-dropdown-caret.png");
  background-size: 9px 5px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 7px center;
  background-repeat: no-repeat;
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #686162;
}
#wrapper-spacelist .list-dropdown option {
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #686162;
  font-size: 14px;
}
#wrapper-spacelist .project-status {
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  border-left: 10px solid #5ab7b2;
  padding: 5px 5px;
  font-size: 15px;
}
#wrapper-spacelist .project-status span.label {
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  margin-right: 8px;
}
#wrapper-spacelist .project-status span.value {
  display: inline-block;
  margin-right: 5px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  min-width: 80px;
}
#wrapper-spacelist .project-status a {
  padding: 5px 10px;
  font-size: 12px;
  margin-left: 25px;
}
#wrapper-spacelist a.back-spaces {
  color: #5ab7b2;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "MontserratBold", Arial, sans-serif;
}
#wrapper-spacelist .recommended-for {
  width: 50%;
  display: inline;
  color: #686162;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spacelist .clear-list {
  float: right;
}
@media (max-width: 575px) {
  #wrapper-spacelist .clear-list {
    float: none;
  }
}
@media (max-width: 575px) {
  #wrapper-spacelist .list-dropdown .col {
    width: 100%;
    margin: 10px 0;
  }
}
#wrapper-spacelist .saved-products {
  padding: 40px 0;
}
#wrapper-spacelist .saved-products h2 {
  color: #402020;
}
#wrapper-spacelist .saved-products a.product-image {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #402023;
  margin-bottom: 10px;
}
#wrapper-spacelist .saved-products .grid4-12.resposiv-wid {
  min-height: 600px;
}
#wrapper-spacelist .saved-products .resposiv-wid {
  margin-bottom: 30px;
  width: 31.2%;
}
#wrapper-spacelist .saved-products .resposiv-wid:nth-child(3n+1) {
  margin-left: 0;
}
@media (max-width: 600px) {
  #wrapper-spacelist .saved-products .resposiv-wid {
    width: 80%;
  }
}
@media (max-width: 480px) {
  #wrapper-spacelist .saved-products .resposiv-wid {
    width: 100%;
  }
}
#wrapper-spacelist .saved-products .resposiv-wid .item {
  position: relative;
}
#wrapper-spacelist .saved-products .resposiv-wid .item .action-list-symbol {
  display: inline-block;
  top: 10px;
  right: 15px;
  position: absolute;
  color: #fff;
  cursor: pointer;
}
#wrapper-spacelist .saved-products .resposiv-wid .item .details-sec {
  text-align: center;
}
#wrapper-spacelist .saved-products .resposiv-wid .item .details-sec .product-name {
  color: #402020;
  font-family: "MontserratRegular", Arial, sans-serif;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 21px;
  display: block;
}
#wrapper-spacelist .saved-products .resposiv-wid .item .details-sec .price {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #686162;
}
#wrapper-spacelist .saved-products .resposiv-wid .specefications h3 {
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #842d2c;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 21px;
}
#wrapper-spacelist .saved-products .resposiv-wid .specefications .row {
  line-height: 25px;
  font-size: 12px;
}
#wrapper-spacelist .saved-products .resposiv-wid .specefications .row label {
  font-weight: bold;
  display: inline-block;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spacelist .saved-products .resposiv-wid .specefications .row p {
  display: inline-block;
  font-family: "MontserratRegular", Arial, sans-serif;
}
#wrapper-spacelist .saved-products .resposiv-wid .specefications .row a.view-product-detail {
  text-transform: uppercase;
  color: #5ab7b2;
  font-family: "MontserratBold", Arial, sans-serif;
}
#wrapper-spacelist .items-for label {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
#wrapper-spacelist .items-for select {
  width: 100%;
  font-size: 17px;
  background-color: #fff;
}
#wrapper-spacelist .project-notes {
  background-color: #efefef;
  border: 1px inset #ccc;
  padding: 5px;
}
#wrapper-spacelist .align-right {
  text-align: right;
}
#wrapper-spacelist .content-header {
  margin-bottom: 25px;
  padding-top: 25px;
}
#wrapper-spacelist .toolbar-buttons .button-sm {
  margin-right: 8px;
  margin-top: 25px;
  padding: 5px 15px;
}
#wrapper-spacelist .project-notes-container {
  padding: 0;
  margin: 0;
}
#wrapper-spacelist .project-notes-container label {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
#wrapper-spacelist .project-notes-container .edit-notes {
  color: #5ab7b2;
  text-decoration: underline;
}
#wrapper-spacelist .project-notes-container .project-notes {
  line-height: 1.5;
  min-height: 32px;
}
#wrapper-spacelist .project-notes-container .project-notes span {
  font-style: italic;
  color: #a6a6a6;
}
#wrapper-spacelist .product-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
#wrapper-spacelist .product-item .details-sec {
  padding: 15px;
}
#wrapper-spacelist .product-item .specefications {
  padding: 15px;
}
#wrapper-spacelist .product-item .specefications h3 {
  padding: 0;
  margin-top: 0;
}
#wrapper-spacelist .product-item.type-ahfimportid:before {
  position: relative;
  background-color: red;
  transform: rotate(-30deg);
  padding: 0 15px;
  line-height: 24px;
  content: "Pending";
  color: #fff;
  top: -8px;
  right: 0;
  left: -15px;
  width: 150px;
  z-index: 9;
  position: absolute;
}

#ShareFloor {
  display: inline;
}

#wrapper-spaces .orderhistory h2 {
  margin-top: 0px;
  align-right-text-align: right;
}

.button-primary-border.add-to-favorites {
  font-size: 13px;
  cursor: pointer;
  color: #fff;
  background: #5ab7b2;
  padding: 12px;
}

#panel_cancelOrder {
  display: inline;
}

.collection-popup h3 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}
.collection-popup p {
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 10px;
}
.collection-popup a.lang-translate {
  display: inline-block;
  line-height: 2;
  font-size: 16px;
  padding: 5px 0;
}
.collection-popup .button {
  padding: 8px 20px !important;
}

#customer-share-link {
  margin-top: 25px;
  margin-bottom: 250px;
}

.account-nav {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  text-align: center;
}
.account-nav .pro-menu {
  display: none;
}
.account-nav .setcontainer {
  text-align: center;
}
.account-nav ul {
  margin: 0;
  padding: 0;
}
.account-nav ul li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}
.account-nav ul li a {
  color: #666;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 25px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.account-nav ul li a i {
  font-size: 24px;
  line-height: 20px;
}
.account-nav ul li a:hover {
  border-bottom: 2px solid #5ab7b2;
  color: #5ab7b2;
}
.account-nav ul li.active a {
  border-bottom: 2px solid #5ab7b2;
  color: #5ab7b2;
}

@media (max-width: 1080px) {
  .account-nav {
    margin: 0;
  }
  .account-nav ul li a {
    padding: 5px 5px;
  }
}
@media (max-width: 640px) {
  .button-sign-in {
    display: none !important;
  }
  .account-nav {
    background-color: #fff;
    position: relative;
  }
  .account-nav div.pro-menu {
    z-index: 10;
    display: block;
    background-color: #5ab7b2;
    color: #fff;
    text-align: left;
    font-weight: bold;
    font-size: 12px;
  }
  .account-nav div.pro-menu a {
    color: #fff;
    display: inline-block;
    width: 100%;
    padding: 5px 5px;
  }
  .account-nav div.pro-menu a i {
    display: inline-block;
  }
  .account-nav i {
    display: none;
  }
  .account-nav ul {
    height: 0px;
    opacity: 0;
    transition: 1s all;
    display: none;
    border-bottom: none;
    margin: 0 0 0 0;
    text-align: right;
    z-index: 9;
    right: 0px;
    top: 20px;
    min-width: 50%;
    position: absolute;
    max-width: 50%;
    box-shadow: 3px 3px 3px #ccc;
    background-color: #fff;
    border-right: 1px solid #ccc;
  }
  .account-nav ul.active {
    left: 0;
    height: initial;
    opacity: 1;
    display: block;
  }
  .account-nav ul li {
    width: 95%;
    display: block;
    border: none;
    color: #666;
    text-align: left;
  }
  .account-nav ul li a {
    padding: 5px 10px 5px 0;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    margin-right: 5px;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  .account-nav ul li.active a {
    color: #666;
    border-bottom: 1px solid #ccc;
  }
}
#wrapper-franchiseeregistration .g-recaptcha {
  margin: 0 auto;
  width: 300px;
  text-align: center;
}
#wrapper-franchiseeregistration label {
  font-weight: bold;
}
#wrapper-franchiseeregistration .form-button-bottom {
  text-align: center;
  margin-top: 15px;
}
#wrapper-franchiseeregistration span.warning {
  font-style: italic;
  color: brown;
  font-size: 13px;
  margin-left: 0px;
}

#franchise-header img.franchise-logo {
  width: auto;
  height: auto;
  max-height: 64px;
  float: right;
  margin-right: 15px;
}
#franchise-header img.franchise-logo-1 {
  margin-top: -8px;
}

#franchise-footer.footer-wrapper {
  padding-top: 10px;
  padding-bottom: 20px;
}
#franchise-footer.footer-wrapper .footer-logo {
  padding-top: 10px;
}
#franchise-footer.footer-wrapper .footer-logo a.logo {
  margin: 0 auto;
  padding-top: 15px;
}
#franchise-footer.footer-wrapper .addr p {
  color: #cbbdb8;
  padding-top: 15px;
}
#franchise-footer.footer-wrapper p {
  font-size: 14px;
  padding-top: 5px;
}
#franchise-footer.footer-wrapper .copyright a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}
#franchise-footer.footer-wrapper ul {
  margin-bottom: 0px;
  font-size: 14px;
}
#franchise-footer.footer-wrapper .contact-row {
  margin-top: 0px;
  border-top: 0px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.flooring-right-wrapper button:disabled {
  cursor: not-allowed !important;
}

.demo-site {
  padding: 5px;
  width: 100%;
  color: #fff;
  font-size: 22px;
  background-color: red;
  font-weight: bold;
  text-transform: uppercase;
}

div.addon-inventory-note {
  border: 1px solid #5ab7b2;
  border-left: 5px solid #5ab7b2;
  padding: 0 5px 5px 5px;
  margin-top: 2px;
}
div.addon-inventory-note label {
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
}
div.addon-inventory-note span.inventory-text {
  font-family: "MontserratRegular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  display: inline-block;
  color: #686162;
  margin: 0;
}
div.addon-inventory-note span.last-update {
  font-family: "MontserratRegular", sans-serif;
  display: block;
  margin: 0;
  color: #686162;
  font-size: 13px;
  font-weight: normal;
  font-style: italic;
}

@media (max-width: 480px) {
  .important-message-flooring {
    clear: both !important;
    padding-top: 10px;
  }
  #franchise-header .menu-wrapper .user-shop-wrapper {
    text-align: left;
    border-bottom: none;
    float: left;
  }
  #franchise-header .menu-wrapper img.franchise-logo {
    margin: 0 auto;
    display: block;
    clear: both;
  }
  #order-flooring-wrapper .hardwood-body-header {
    padding-bottom: 25px;
  }
  #order-flooring-wrapper .hardwood-body-header a {
    display: block;
    width: 100%;
  }
  #order-flooring-wrapper .addon-inventory-note {
    width: 100%;
  }
}
.product-category-result .paging.paging-top {
  min-height: 30px;
}
.product-category-result .no-products-found {
  text-transform: uppercase;
  padding: 50px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid #eee5e4;
  box-shadow: 2px 2px 2px #ccc;
  border-radius: 5px;
}
.product-category-result .product-filter {
  margin-top: 30px;
  border: 1px solid #eee5e4;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 5px;
}
.product-category-result .product-filter .filter-content label {
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #402020;
  letter-spacing: 0;
  font-size: 16px;
  display: inline-block;
}
.product-category-result .product-filter .filter-content div.keyword-input {
  position: relative;
}
.product-category-result .product-filter .filter-content input[type=text] {
  border: 1px solid #eee5e4;
  padding: 5px;
  height: 30px;
  border-radius: 5px;
  width: 100%;
  padding-right: 30px;
}
.product-category-result .product-filter .filter-content input[type=text]:focus {
  border: 1px solid #eee5e4 !important;
}
.product-category-result .product-filter .filter-content .button.button-search {
  padding: 2px 10px;
  height: 28px;
  margin-top: 1px;
  position: absolute;
  right: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  top: 0px;
  font-size: 14px;
  color: #5ab7b2;
}
.product-category-result .product-filter .filter-header {
  display: none;
  text-align: center;
  padding: 14px 15px;
  font-size: 15px;
  cursor: pointer;
  float: left;
  width: 100%;
  background-color: #b6dad3;
  margin-bottom: 15px;
  border: 1px solid #eee5e4;
}
.product-category-result .product-filter .filter-header i {
  margin-left: 7px;
}
.product-category-result .product-filter .filter-by-text {
  font-weight: bold;
}
.product-category-result .product-filter .clear-filters {
  text-align: right;
  margin-bottom: 20px;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
}
.product-category-result .product-filter .clear-filters a.cta-text-link {
  line-height: 1;
  white-space: nowrap;
}
.product-category-result .product-filter .clear-filters a {
  font-size: 12px;
  text-decoration: underline;
}
.product-category-result .product-filter .clear-filters a:hover {
  color: #5ab7b2;
}
.product-category-result .product-filter .clear-filters a:active {
  color: #5ab7b2;
}
.product-category-result .product-filter .clear-filters a img {
  width: 12px;
  margin-right: 7px;
}
.product-category-result .product-filter .clear-filters.filters-added {
  opacity: 1;
  pointer-events: auto;
}
.product-category-result .product-filter ul.filters {
  padding-left: 0;
  /*max-width:83%;*/
}
.product-category-result .product-filter ul.filters li.filter-row {
  border-top: 1px solid #eee5e4;
  list-style: none;
  padding: 10px 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header {
  transition: all 0.3s;
  cursor: pointer;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header:before {
  clear: both;
  display: block;
  content: "";
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header span {
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #402020;
  letter-spacing: 0;
  font-size: 16px;
  display: inline-block;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header .filter-selected {
  display: inline-block;
  font-size: 13px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header a {
  display: inline-block;
  float: right;
  width: 7%;
  margin-top: 5px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content {
  display: none;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li {
  list-style: none;
  padding: 5px 0;
  position: relative;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li label {
  transition: 0.3s all;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li label.off {
  pointer-events: none;
  opacity: 0.5;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li label.off span:before {
  content: "\f00d" !important;
  border: 10px solid red;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox]:not(:checked),
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox]:checked {
  position: absolute;
  top: 10px;
  left: 5px;
  z-index: -1;
  width: auto !important;
  opacity: 0;
  visibility: hidden;
  margin: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li span {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  min-height: 22px;
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 16px;
  color: #686162;
  font-family: "MontserratRegular", Arial, sans-serif;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li span.product-number {
  display: inline-block;
  margin-left: 3px;
  padding-left: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox] + span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 5px;
  line-height: 18px;
  z-index: 1;
  background: #fff;
  border: 1px solid #eee5e4;
  border-radius: 2px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox] + span:before {
  border-radius: 2px;
  font-family: "FontAwesome";
  font-size: 14px;
  text-align: center;
  line-height: 18px;
  text-indent: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox]:checked + span:before {
  background: #5ab7b2;
  border-color: #5ab7b2;
  content: "\f00c";
  color: #fff;
  border-radius: 2px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox][x-data-display=white]:checked + span:before {
  background: #5ab7b2;
  border-color: #5ab7b2;
  content: "\f00c";
  color: #000;
  border-radius: 2px;
}
.product-category-result .selected-filters {
  padding: 5px;
}
.product-category-result .selected-filters ul {
  padding-left: 0px;
}
.product-category-result .selected-filters ul li {
  list-style-type: none;
  font-size: 13px;
  cursor: pointer;
}
.product-category-result .selected-filters ul li span:before {
  font-family: "FontAwesome";
  background: #ffcf01;
  border-color: #ffcf01;
  content: "\f00c";
  font-size: 11px;
  margin-right: 5px;
  line-height: 15px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  padding: 2px;
}
.product-category-result ul.filter-swatch {
  column-count: 5;
  display: block;
  margin-top: 10px;
  column-count: 5;
  column-gap: 0.5em;
}
.product-category-result ul.filter-swatch li {
  position: relative;
}
.product-category-result ul.filter-swatch li input {
  z-index: -1;
}
.product-category-result ul.filter-swatch li input[type=checkbox]:not(checked) + span:before {
  border: none !important;
  background-color: transparent !important;
  z-index: -1 !important;
}
.product-category-result ul.filter-swatch li input[type=checkbox]:checked + span:before {
  border: #5ab7b2 !important;
  background-color: transparent !important;
  z-index: 9 !important;
  margin-left: 5px;
  margin-top: 2px;
}
.product-category-result ul.filter-swatch li img {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 2px #ccc;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 100%;
  margin: auto auto;
}

@media (max-width: 768px) {
  .product-category-result .product-filter {
    width: 95%;
    float: none;
    margin: 30px auto 0;
  }
  .product-category-result .product-filter .clear-filter {
    max-width: 100%;
  }
  .product-category-result .product-filter ul.filters {
    max-width: 100%;
    border: 1px solid #eee5e4;
    padding: 0 20px;
  }
  .product-category-result .product-filter ul.filters .clear-filters {
    text-align: center;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .product-category-result .product-filter ul.filters li.filter-row .toggle-header img {
    width: 3%;
  }
  .product-category-result .product-filter .filter-header {
    display: block;
  }
  .product-category-result .product-filter .filter-toggles {
    display: none;
  }
  .product-category-result .product-filter .filter-toggles.filter-active {
    display: block;
  }
  .product-category-result .product-filter .filter-toggles.filter-active .clear-filters.filters-added {
    opacity: 1;
    pointer-events: auto;
  }
  .product-category-result .product-filter .filter-toggles.filter-active .filter-toggle-section {
    display: block;
  }
  .product-category-result .product-filter .filter-toggles .clear-filters.filters-added {
    opacity: 1;
    pointer-events: auto;
  }
  .product-category-result .product-filter .filter-toggles .toggle-section {
    display: none;
  }
  .product-category-result .product-result-col {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product-category-result .product-filter ul.filters li.filter-row .toggle-header img {
    width: 5%;
  }
}
/* product results */
.product-result-container .product-listing-wrapper {
  background-color: #fff;
  max-width: 300px;
  padding: 0;
  margin: 0 0 25px 0;
  min-height: 400px;
  position: relative;
  border: 1px solid #eee5e4;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 2px 2px #eee5e4;
}
.product-result-container .product-listing-wrapper .product-img-wrapper {
  width: 100%;
  min-height: 300px;
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  position: relative;
}
.product-result-container .product-listing-wrapper .product-img-wrapper a.bg-image-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-result-container .product-listing-wrapper .product-img-wrapper a.bg-image-link span {
  display: none;
}
.product-result-container .product-listing-wrapper p.sub-category {
  font-size: 12px;
  background-color: #959595;
  color: #fff;
  padding: 2px 0 2px 5px;
  margin: 0;
  border-bottom: 1px solid #eee5e4;
  margin-bottom: 2px;
}
.product-result-container .product-listing-wrapper p.sub-category span {
  font-weight: bold;
}
.product-result-container .product-listing-wrapper p.color-width {
  font-size: 13px;
  padding: 0 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  padding-bottom: 0;
}
.product-result-container .product-listing-wrapper p.color-width:before {
  content: "Color/Size: ";
  font-weight: bold;
}
.product-result-container .product-listing-wrapper .product-detail-favorites {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  z-index: 9;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 27px;
}
.product-result-container .product-listing-wrapper .product-detail-favorites span.toolbar-toggle-item::before {
  margin-right: 0;
}
.product-result-container .product-listing-wrapper .product-description-box {
  z-index: 9;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  background-color: #fff;
  right: 0;
  height: 130px;
  transition: 0.5s all;
}
.product-result-container .product-listing-wrapper .product-description-box p.product-result-meta {
  margin: 0;
  padding: 5px;
  font-size: 14px;
}
.product-result-container .product-listing-wrapper .product-description-box span.product-name a {
  text-decoration: none;
  font-size: 15px;
  display: block;
  line-height: 1.25;
  height: 38px;
  color: #000 !important;
  padding-right: 5px;
  overflow: hidden;
}
.product-result-container .product-listing-wrapper .product-description-box span.price {
  display: block;
  font-weight: bold;
  font-size: 13px;
}
.product-result-container .product-listing-wrapper .product-description-box span.sold-out {
  display: inline-block;
  margin-right: 5px;
  padding: 5px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  float: right;
  font-size: 12px;
  border: none;
  color: #fff;
}
.product-result-container .product-listing-wrapper .product-description-box span.sku {
  padding: 0 5px;
  margin: 0 5px 0 0;
  font-size: 13px;
  float: right;
  display: inline-block;
}
.product-result-container .product-listing-wrapper .product-description-box span.sku:before {
  content: "SKU: ";
  font-weight: bold;
}
.product-result-container .product-listing-wrapper .product-description-box p.price-meta .button {
  width: 49.2%;
  display: inline-block;
  font-size: 12px !important;
  font-weight: normal;
  padding: 2px 5px;
  text-align: center;
  background-color: #dddddd;
  color: #000;
}
.product-result-container .product-listing-wrapper .product-description-box p.price-meta .button.btn-buy-request {
  background-color: #5ab7b2;
  color: #fff;
}
.product-result-container .product-listing-wrapper .product-description-box p.price-meta .button:hover {
  background-color: #ff6a00;
  color: #fff;
}
.product-result-container .product-listing-wrapper .product-description-box input.quick-add {
  background-color: #5ab7b2;
  margin-right: 5px;
  padding: 5px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  float: right;
  font-size: 12px;
  border: none;
  color: #000;
}
.product-result-container .product-listing-wrapper .product-description-box input.quick-add:hover {
  background-color: #5ab7b2;
  color: #000;
  opacity: 0.75;
}
.product-result-container .product-listing-wrapper .product-description.on {
  height: 125px;
}
.product-result-container .product-listing-wrapper .product-description.on .quick-add-form {
  height: 125px;
  z-index: 9;
  opacity: 1;
}

/* end product results */
.slideout-product-detail {
  padding: 5px 10px 100px 10px;
  border-top: 20px solid #5ab7b2;
}
.slideout-product-detail .image-wrapper-multiple .thumb {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 1px;
  transition: 0.3s all;
}
.slideout-product-detail .image-wrapper-multiple .thumb.on {
  border: 2px solid #5ab7b2;
  padding: 0px;
}
.slideout-product-detail .image-wrapper-multiple img {
  border: 1px solid #eee5e4;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #ccc;
}
.slideout-product-detail h1 {
  padding: 5px 0 0 0;
  margin: 5px 0 0 0;
  border-bottom: 1px solid #eee5e4;
  font-size: 24px !important;
}
.slideout-product-detail .image-wrapper {
  width: 100%;
  text-align: center;
}
.slideout-product-detail .image-wrapper img {
  border: 1px solid #eee5e4;
  padding: 5px;
  border-radius: 5px;
  max-width: 300px;
  box-shadow: 2px 2px 2px #ccc;
}
.slideout-product-detail .attributes {
  border: 1px solid #eee5e4;
}
.slideout-product-detail .attributes ul {
  margin: 0;
  padding: 0;
}
.slideout-product-detail .attributes ul li {
  padding: 3px;
  font-size: 13px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.slideout-product-detail .attributes ul li:nth-child(odd) {
  background-color: #efefef;
}
.slideout-product-detail .attributes ul li label {
  font-weight: bold;
  display: inline-block;
  padding: 2px 0 2px 5px;
  width: 49.2%;
}
.slideout-product-detail .attributes ul li span {
  display: inline-block;
  width: 49.2%;
  padding: 2px 0 2px 0;
}
.slideout-product-detail .button.button-primary, .slideout-product-detail .button.button-secondary {
  padding: 10px 15px !important;
  margin: 10px 10px 10px 0;
  font-size: 14px !important;
  width: 95%;
  text-align: center;
}

@media (max-width: 641px) {
  body#franchise-page .account-nav {
    position: relative;
    transition: 0.3s all;
    background-color: #5ab7b2;
    color: #fff;
  }
  body#franchise-page .account-nav .setcontainer {
    padding-left: 0;
    padding-right: 0;
  }
  body#franchise-page .account-nav a.mobile-admin-nav {
    display: block;
    text-align: left;
    font-size: 20px;
    color: #fff;
    margin: 10px auto;
    padding-left: 10px;
  }
  body#franchise-page .admin-nav ul.clearfix {
    display: none;
    opacity: 1;
    z-index: 100;
    background-color: #fff;
    top: 40px;
    width: 100%;
    max-width: 75%;
    min-width: 75%;
    right: 0;
    left: 0;
    padding: 0;
    margin: 0;
    bottom: 0;
    transition: 0.3s all;
    height: 100vh;
    padding-left: 5px;
  }
  body#franchise-page .admin-nav ul.clearfix li {
    background-color: #fff;
    position: relative;
    margin: 0;
  }
  body#franchise-page .admin-nav ul.clearfix li a {
    background-color: #fff;
    margin: 0;
    padding: 15px 10px;
    display: block;
  }
  body#franchise-page .admin-nav ul.clearfix li.drop {
    background-image: none;
    padding: 0;
    margin: 0;
    height: auto;
    display: block;
  }
  body#franchise-page .admin-nav ul.clearfix li a[href="#"] {
    display: none;
  }
  body#franchise-page .admin-nav ul.clearfix li.drop ul.subnav {
    position: relative;
    display: block;
    margin: 0;
    opacity: 1;
    width: 100%;
    top: 0;
    padding: 0;
    position: relative;
    height: auto;
    min-width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
    overflow: visible;
    max-height: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  body#franchise-page .admin-nav ul.clearfix li.drop ul.subnav li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: block;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
  }
  body#franchise-page .admin-nav ul.clearfix li.drop ul.subnav li a {
    width: 100%;
    margin: 0;
    padding: 15px 10px;
    display: block;
    background-color: #fff;
  }
  #wrapper-spacelist .take-quiz {
    width: 100%;
    background-color: #5ab7b2;
    text-align: center;
  }
  #wrapper-spacelist .toolbar-buttons .button {
    width: 100%;
    display: block;
    text-align: center;
  }
  #wrapper-spacelist .project-status span.label {
    width: 32.2%;
  }
  #wrapper-spacelist .project-status span.value {
    width: 49.2%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #wrapper-spacelist .project-status .button {
    width: 42.2%;
    display: inline-block;
    margin: 10px 0;
    text-align: center;
  }
  #wrapper-spacelist .project-status span.label:last-child {
    clear: left;
  }
  .product-category-result .product-listing-wrapper {
    max-width: 100%;
  }
  .order-results .buttons a.button.button-sm {
    width: 95% !important;
    display: block;
  }
  #wrapper-addeditorder .aeorder-main {
    padding: 10px !important;
  }
  .wrapper-custom-orders.front-end-table td.manage-quote span {
    text-align: center;
    max-width: 100%;
  }
  .wrapper-custom-orders.front-end-table td.manage-quote b {
    display: none;
  }
  #ap-dview-204 .hhsearchButton {
    white-space: nowrap;
  }
  #ap-dview-204 .hhsearchButton .grid8-12 {
    width: 65.2%;
  }
  #ap-dview-204 .hhsearchButton .grid4-12 {
    width: 28.2%;
  }
  #ap-dview-204 .front-end-table span.tablesaw-cell-content a {
    font-size: 16px;
    font-weight: bold;
  }
  .mfp-iframe-scaler {
    padding-top: 80vh;
  }
  .hmodal-component.hmodal-popup.hmodal {
    padding: 25px;
  }
  #wrapper-spaces .search-box input#SearchProject {
    width: 325px;
  }
  #wrapper-spaces #panel_createCustomerProject, #wrapper-spaces #panel_createProject {
    float: none;
    width: 100%;
  }
  #wrapper-spaces #panel_createCustomerProject .button.button-sm, #wrapper-spaces #panel_createProject .button.button-sm {
    background-color: #ff6a00;
    width: 100%;
  }
  .user-shop-wrapper ul {
    margin-left: 0;
    padding-left: 10px;
  }
  .user-shop-wrapper ul li {
    min-width: 100px;
    text-align: center;
  }
  .user-shop-wrapper ul li img {
    text-align: center;
    margin: 0 auto;
    max-width: 26px;
  }
  .user-shop-wrapper a.shop {
    width: auto;
  }
  .user-shop-wrapper a.shop:after {
    content: " Cart";
    display: block;
    font-weight: bold;
    width: 100%;
  }
  .user-shop-wrapper a.login {
    width: auto;
  }
  .user-shop-wrapper a.login:after {
    content: " Account";
    font-weight: bold;
    display: block;
    width: 100%;
  }
  header.add-edit-order-header .exit-wrapper {
    display: block;
    width: 100%;
    margin: 5px 0;
    background-color: #ff6a00;
  }
  header.add-edit-order-header .exit-wrapper a {
    color: #fff !important;
    padding: 5px 0;
    display: block;
    border-radius: 5px;
    text-align: center;
  }
}