/*--------------------------------------------------------------
  VARIABLES
--------------------------------------------------------------*/

@import url('variables.css');

/*--------------------------------------------------------------
  TYPOGRAPHY
--------------------------------------------------------------*/

/* --- Noto Sans Fonts --- */
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Thin.woff2') format('woff2'),
       url('../fonts/NotoSans-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-ThinItalic.woff2') format('woff2'),
       url('../fonts/NotoSans-ThinItalic.woff') format('woff');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Light.woff2') format('woff2'),
       url('../fonts/NotoSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-LightItalic.woff2') format('woff2'),
       url('../fonts/NotoSans-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Regular.woff2') format('woff2'),
       url('../fonts/NotoSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Italic.woff2') format('woff2'),
       url('../fonts/NotoSans-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Medium.woff2') format('woff2'),
       url('../fonts/NotoSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-MediumItalic.woff2') format('woff2'),
       url('../fonts/NotoSans-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-SemiBold.woff2') format('woff2'),
       url('../fonts/NotoSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-SemiBoldItalic.woff2') format('woff2'),
       url('../fonts/NotoSans-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Bold.woff2') format('woff2'),
       url('../fonts/NotoSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-BoldItalic.woff2') format('woff2'),
       url('../fonts/NotoSans-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* --- Montserrat Fonts --- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
       url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic.woff2') format('woff2'),
       url('../fonts/Montserrat-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
       url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBoldItalic.woff2') format('woff2'),
       url('../fonts/Montserrat-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
       url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-BoldItalic.woff2') format('woff2'),
       url('../fonts/Montserrat-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/*--------------------------------------------------------------
  BASE STYLES
--------------------------------------------------------------*/

body {
  font-size: var(--default-font-size);
  line-height: var(--default-line-height);
  font-family: var(--main-font);
  color: var(--primary-dark);
  background: var(--default-white);
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  position: relative;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  line-height: var(--default-line-height);
  font-family: var(--header-font);
  color: var(--primary-dark);
}

h1, h2, h3 {
  font-weight: 700;
}

h4, h5, h6 {
  font-weight: 400;
}

h2 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

h2.lg-title {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 35px;
}

h3 {
  font-size: 30px;
  margin-bottom: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--alt-blue-gray);
}

p {
  margin-bottom: 15px;
  font-size: var(--default-font-size);
  line-height: var(--default-line-height);
}

a {
  color: var(--primary-accent);
  font-weight: 500;
  transition: var(--transition-link);
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--alt-accent-blue);
}

a.bold {
  font-weight: 600;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

mark,
.mark {
  padding: 0;
  background: none;
  color: var(--alt-gray-blue);
}

address {
  line-height: inherit;
  margin: 0;
}

.hr {
  border-top: 1px solid var(--primary-light);
  margin: 50px 0;
}

.center {
  text-align: center;
}

/* ----------------------------
   Responsive Breakpoints
---------------------------- */

@media (max-width: 1199.98px) {
  h1 { font-size: 44px; }
  h2 { font-size: 26px; margin-bottom: 40px; }
  h2.lg-title { font-size: 32px; margin-bottom: 30px; }
  h3 { font-size: 26px; margin-bottom: 20px; }
  .hr { margin: 40px 0; }
}

@media (max-width: 991.98px) {
  h1 { font-size: 38px; }
  h2 { font-size: 22px; margin-bottom: 25px; }
  h2.lg-title { font-size: 28px; margin-bottom: 20px; }
  h3 { font-size: 22px; margin-bottom: 15px; }
  .hr { margin: 30px 0; }
}

@media (max-width: 767.98px) {

  body {
    font-size: var(--default-mobile-font-size);
    line-height: var(--default-mobile-line-height);
  }

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    line-height: normal;
  }
  h1 { font-size: 30px; }
  h2 { font-size: 16px; margin-bottom: 20px; line-height: 1.7rem!important; }
  h2.lg-title { font-size: 24px; margin-bottom: 15px; }
  h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.7rem!important; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  p { 
    margin-bottom: 10px; 
    font-size: var(--default-mobile-content-font-size);
  }
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br, strong br, span br, i br {
    display: none;
  }
  .hr { margin: 20px 0; }
  ul, ol { margin-bottom: 15px; }
}

@media (max-width: 480px) {
  h1 { font-size: 22px; }
  h2.lg-title { font-size: 22px; }
  .hr { margin: 15px 0; }
}


/*--------------------------------------------------------------
  ELEMENTS
--------------------------------------------------------------*/

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* Form Elements */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"] {
  background: transparent;
  border: 1px solid var(--primary-light);
  border-radius: 0;
  color: var(--primary-dark);
  font-size: var(--default-font-size);
  height: 50px;
  padding: 10px 15px;
  box-sizing: border-box;
  width: 100%;
  transition: var(--transition-default);
  margin-bottom: 10px;
}

textarea {
  background: transparent;
  border: 1px solid var(--primary-light);
  color: var(--primary-dark);
  border-radius: 0;
  font-size: var(--default-font-size);
  line-height: 18px;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  height: 115px;
  resize: none;
  display: block;
  transition: var(--transition-default);
  margin-bottom: 20px;
}

input[type="checkbox"],
input[type="file"] {
  cursor: pointer !important;
}

input:not([type="submit"]):focus,
textarea:focus {
  border-color: var(--primary-dark);
  box-shadow: none !important;
}

.input-error {
  border-color: var(--error-message);
}

select {
  border: 1px solid var(--primary-light);
  border-radius: 3px;
  outline: none;
  font-size: var(--default-font-size);
  line-height: 1.25;
  height: 50px;
  padding: 10px 40px 10px 15px; 
  color: var(--primary-dark);
  width: 100%;
  display: block;
  background-image: url(../img/icons/select-arrow.png);
  @supports ( background-image: url(../img/icons/select-arrow.webp) ) {
    background-image: url(../img/icons/select-arrow.webp);
  }
  background-repeat: no-repeat;
  background-position: 100% center;
  background-color: transparent;
  background-size: auto 100%;
  text-indent: 0.01px;
  text-overflow: '';
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none !important;
}

select[name="orderby"],
select[name="ppp"],
.item-filter select {
  height: auto;
  background-color: var(--default-white);
}

select::-ms-expand {
  display: none;
}

select::placeholder,
input::placeholder,
textarea::placeholder {
  opacity: 1;
  transition: var(--transition-default);
  color: var(--primary-dark);
}

textarea.hidden,
input.hidden {
  display: none;
}

.woocommerce .loader {
  background: rgba(0, 0, 0, 0.40);
  position: fixed;
  z-index: 105;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
.woocommerce .loader::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: "";
  background: url(../img/icons/cog22_light.svg) center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
}

.indent-block {
  padding: 30px 0;
}

.indent-block.normal-padding {
  padding: 30px 0;
}

.indent-block.no-bottom-padding {
  padding: 30px 0 0;
}

.indent-block.no-top-padding {
  padding: 0 0 30px;
}

.indent-block.no-padding {
  padding: 0;
}

.indent-block.alt-background {
  background-color: var(--alt-lighter-blue-light);
}

.indent-block p {
  font-size: var(--default-content-font-size);
}

/* ----------------------------
   Responsive Breakpoints
---------------------------- */

@media (max-width: 767.98px) {

  input[type="text"],
  input[type="search"],
  input[type="email"],
  input[type="number"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    font-size: var(--default-mobile-form-font-size);
    margin-bottom: 10px;
  }

  .indent-block p {
    font-size: var(--default-mobile-content-font-size)!important;
  }
}

/*--------------------------------------------------------------
  BUTTONS
--------------------------------------------------------------*/

a.pbutton {
  font-family: var(--main-font);
  font-size: var(--default-font-size);
  background-color: var(--primary-accent);
  border-radius: 20px;
  color: var(--default-white);
  padding: 6px 60px;
  text-transform:uppercase;
  transition: var(--transition-button);
  white-space: nowrap;
}
a.pbutton:hover {
  background-color: var(--alt-gray-blue);
  transition: var(--transition-button);
}

.kd-contact-container a.pbutton {
  background-color: var(--primary-dark);
  color: var(--primary-accent);
}
.kd-contact-container a.pbutton:hover {
  background-color: var(--primary-accent);
  color: var(--default-white);
  transition: var(--transition-button);
}

/* standard button */
button.button,
a.button.wc-forward,
a.button.wc-backward,
a.btn-finance,
.btn, button.btn, a.btn, input[type="submit"], button[type="submit"] {
  position: relative;
  display: flex;
  color: var(--primary-accent);
  background: var(--default-white);
  border: 1px solid var(--primary-accent);
  border-radius: 10px!important;
  outline: none;
  vertical-align: top;
  padding: 8px 30px;
  font-size: var(--default-font-size);
  line-height: 1.2;
  white-space: normal;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  transition: var(--transition-button);
  font-family: var(--main-font);
  font-weight: 400;
}

button.button:hover,
a.button.wc-forward:hover,
a.button.wc-backward:hover,
a.btn-finance:hover,
.btn:hover, button.btn:hover, a.btn:hover, input[type="submit"]:hover, button[type="submit"]:hover {
  color: var(--default-white);
  background: var(--alt-gray-blue);
  border: 1px solid var(--alt-gray-blue);
}

.btn-default,
a.btn-finance {
  width: fit-content;
  margin: 0 auto;
}

a.btn-finance {
  margin: 0 auto 20px;
}

/* request a quote button */
button.btn.request-a-quote-btn,
a.btn.request-a-quote-btn {
  color: var(--default-white);
  background: var(--primary-accent);
  border: 1px solid var(--primary-accent);
}
button.btn.request-a-quote-btn:hover,
a.btn.request-a-quote-btn:hover {
  color: var(--default-white);
  background: var(--alt-gray-blue);
  border: 1px solid var(--alt-gray-blue);
}

/* alt button */
.btn.alt, 
.button.alt {
  color: var(--default-white)!important;
  background: var(--alt-gray-blue)!important;
  border: 1px solid var(--alt-gray-blue)!important;
}
.btn.alt:hover,
.button.alt:hover {
  color: var(--primary-accent)!important;
  background: var(--default-white)!important;
  border: 1px solid var(--primary-accent)!important;
}

/* add to cart loading */
a.add_to_cart_button.loading:after,
a.add_to_cart_button.added:after {
  right: 0;
  top: 0;
  margin-left: 0;
  left: 0;
}
a.add_to_cart_button.loading:after,
a.add_to_cart_button.added:after {
  right: 0;
  left: 0;
  top: initial;
  bottom: initial;
}

/* modal buttons */
.modal .modal-body button[type="submit"].submit-button,
.modal .modal-body input[type="submit"],
.modal .modal-body button[type="submit"],
.modal .modal-body a.btn.makeanoffer  {
  color: var(--default-white);
  background: var(--primary-accent);
  border: 1px solid var(--primary-accent);
}
.modal .modal-body button[type="submit"].submit-button:hover,
.modal .modal-body input[type="submit"]:hover,
.modal .modal-body button[type="submit"]:hover,
.modal .modal-body a.btn.makeanoffer:hover {
  color: var(--default-white);
  background: var(--alt-gray-blue);
  border: 1px solid var(--alt-gray-blue);
}
.modal .modal-body a.btn.makeanoffer {
  width: fit-content;
}


/* .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading */
button.btn.loading, a.btn.loading {
  color: transparent!important;
}

button.btn .fas.fa-check, a.btn .fas.fa-check {
  color: var(--primary-accent);
}

button.btn.added:hover .fas.fa-check, a.btn.added:hover .fas.fa-check {
  color: var(--default-whitet);
}

button.btn.loading::after, a.btn.loading::after {
  content: url('/wp-content/themes/maxcanvas_child/img/icons/cog22_dark.svg')!important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  transform: translate(-50%, -50%);
  display: block;
  padding: 0;
  animation: none;
  font-weight: unset;
  margin: 0 0;
}

button.btn.loading:hover, a.btn.loading:hover {
  color: transparent!important;
}

button.btn.loading:hover::after, a.btn.loading:hover::after {
  content: url('/wp-content/themes/maxcanvas_child/img/icons/cog22_light.svg')!important;
}

button.btn.loading::after, a.btn.loading.added::after {
  content: '';
}

/* ----------------------------
   Responsive Breakpoints
---------------------------- */

@media (max-width: 767.98px) {
  button.button,
  a.button.wc-forward,
  a.button.wc-backward,
  a.btn-finance,
  .btn, button.btn, a.btn, input[type="submit"], button[type="submit"] {
    font-size: var(--default-mobile-font-size);
  }
}


/*--------------------------------------------------------------
  HEADER
--------------------------------------------------------------*/

/* ----- Top Bar ----- */
header.kd-header .kd-header-top {
  position: fixed;
  width: 100%;
  background: var(--primary-dark);
  color: var(--primary-light);
  text-transform: uppercase;
  z-index: 900;
  min-height: 60px;
  display: flex;
  align-items: center;
}
header.kd-header .kd-header-top a {
  color: var(--default-white);
}

header.kd-header .kd-header-top .mobile-logo {
  display: none;
}

header.kd-header .kd-header-top .mobile-logo .mobile-logo {
}

header.kd-header .kd-header-top .mobile-logo .header-logo-image {
  max-height: 60px;
}

header.kd-header .kd-header-top a:hover {
  color: var(--primary-light);
  text-decoration: none;
}
header.kd-header .kd-header-top .kd-basket-col {
  justify-items: flex-end;
  padding-left: 0;
}
header.kd-header .kd-header-top .kd-basket-col ul {
  padding: 0;
  margin: 0;
  float:right;
}
header.kd-header .kd-header-top .kd-basket-col ul li {
  list-style: none;
  display: inline-block;
}

header.kd-header .kd-header-top .kd-basket-col .basket a {
  display: flex;
  align-items: center;
}

header.kd-header .kd-header-top .kd-basket-col .basket .cart-icon {
  font-size: 20px;
}

header.kd-header .kd-header-top .kd-basket-col .basket .count {
  width: 20px;
  height: 20px;
  background: var(--default-white);
  border-radius: 50%;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
  margin-left: 5px;
  color: var(--primary-dark);
}

/* search form */
header.kd-header .kd-search-form-holder input[type="search"].search-field {
  background: var(--default-white);
  border: 1px solid var(--primary-dark);
  border-radius: 50px;
  margin-bottom: 0;
  height: 40px;
}

header.kd-header .kd-search-form-holder input[type="search"].search-field::placeholder {
  color: var(--primary-dark);
  opacity: 1;
}

header.kd-header .kd-search-form-holder {
  position: relative;
}

.search-suggestions-mobile-wrapper {
  display: none;
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile,
header.kd-header .kd-search-form-holder .search-suggestions {
  position: absolute;
  width: 100%;
  top: 44px;
  background-color: var(--default-white);
  z-index: 999;
  border-width: 0 1px 1px 1px;
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile {
  width: 95%;
  top: 48px;
}

body.home .search-suggestions-mobile-wrapper .search-suggestions.mobile {
  top: 40px;
}


.search-suggestions-mobile-wrapper .search-suggestions.mobile>a,
header.kd-header .kd-search-form-holder .search-suggestions>a {
  width: 100%;
  float: left;
  color: var(--primary-dark);
  padding: 5px 15px 5px 5px;
  border: 1px solid var(--primary-dark);
  border-bottom-width: 0;
}
.search-suggestions-mobile-wrapper .search-suggestions.mobile>a:last-child,
header.kd-header .kd-search-form-holder .search-suggestions>a:last-child {
  border-bottom-width: 1px;
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile>a:hover,
header.kd-header .kd-search-form-holder .search-suggestions>a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>img,
header.kd-header .kd-search-form-holder .search-suggestions>a>img {
  height: 50px;
  width: 50px;
  width: auto;
  float: left;
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p,
header.kd-header .kd-search-form-holder .search-suggestions>a>p {
  float: left;
  width: calc(100% - 60px);
  margin: 0 0 0 10px;
  line-height: 50px;
  vertical-align: middle;
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p.title,
header.kd-header .kd-search-form-holder .search-suggestions>a>p.title {
  line-height: 30px;
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p.sku,
header.kd-header .kd-search-form-holder .search-suggestions>a>p.sku {
  width: auto;
  line-height: 20px;
  font-size: 14px;
  color: var(--primary-dark);
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p.price,
header.kd-header .kd-search-form-holder .search-suggestions>a>p.price {
  width: auto;
  line-height: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--price-color);
  
}

.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p.price .nprice,
header.kd-header .kd-search-form-holder .search-suggestions>a>p.price .nprice {
  color: var(--price-color);
}
.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p.price .nprice.reduced,
header.kd-header .kd-search-form-holder .search-suggestions>a>p.price .nprice.reduced {
  text-decoration: line-through;
  color: var(--price-reduced-color);
}
.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p.price .rprice,
header.kd-header .kd-search-form-holder .search-suggestions>a>p.price .rprice {
  color: var(--price-color);
}
.search-suggestions-mobile-wrapper .search-suggestions.mobile>a>p.price.call,
header.kd-header .kd-search-form-holder .search-suggestions>a>p.price.call {
  color: var(--primary-accent);
}

header.kd-header .kd-search-form-holder #search-spinner {
  display: none;
  position: absolute;
  top: 50%;
  right: 8px;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  transform: translateY(-12.5px);
}

header.kd-header .kd-search-form-holder #search-spinner img {
  vertical-align: middle;
}

/* ----- About Us Form ------ */
.saleforces-subscribe-from-section {
  margin-top: -30px;
}

.saleforces-form-section form p, .page-template-template-about form p {
  margin: 0;
}

.saleforces-form-section form p input, .page-template-template-about form p input {
  margin-bottom: 15px !important;
}

.saleforces-form-section form label, .page-template-template-about form label {
  margin-bottom: 5px;
}

.saleforces-form-section form input[type="checkbox"], .page-template-template-about form input[type="checkbox"] {
  position: static;
  margin: 0 10px !important;
  vertical-align: middle;
}

..page-template-template-about input[type="checkbox"] {
  margin: 0 10px;
  vertical-align: middle;
  position: static;
}


/* ----- Header Backgrounds ----- */
header.kd-header .kd-header-background-wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
}
header.kd-header .kd-header-background-wrapper.primary {
  height: 533px;
}
header.kd-header .kd-header-background-wrapper.secondary {
  height: 168px;
}

/* ----- Middle Section ----- */
header.kd-header .kd-header-background-wrapper .kd-header-middle {
  margin: 60px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
header.kd-header .kd-header-background-wrapper.primary .kd-header-middle {
  height: 276px;
}
header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle {
  height: 120px;
}
header.kd-header .kd-header-background-wrapper .kd-header-middle .overlay {
  position: absolute;
  inset: 0;
  background: var(--light-overlay);
  z-index: 1;
  pointer-events: none;
}
header.kd-header .kd-header-background-wrapper .kd-header-middle .content {
  position: relative;
  z-index: 2;
}

/* ----- Grid Layouts ----- */
/* Primary */
header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid {
  grid-template-columns: calc(33% - 10px) calc(67% - 10px);
  grid-template-rows: 57% 43%;
  max-height: 276px;
  column-gap: 20px;
}
header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-logo {
  grid-row: 1 / 3;
  grid-column: 1;
  align-content: center;
}
header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-logo img.header-logo-image {
  max-width: 300px;
}
header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 {
  grid-row: 1;
  grid-column: 2;
  align-content: flex-end;
}
header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 h1.title {
  font-size: 35px;
  font-weight: 400;
  line-height: 3rem;
  padding: 0;
  margin: 0;
  text-align: right;
}
header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
  grid-row: 2;
  grid-column: 2;
  white-space: nowrap;
  font-size: 22px;
  padding-top: 1rem;
}

/* Secondary */
header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  max-height: 160px;
  height: 160px;
  column-gap: 20px;
  row-gap: 0;
  align-items: center;
}
header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-header-logo {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-header-logo .header-logo-image {
  min-height: 90px;
  min-width: 135px;
}
header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 18px;
  font-weight: 600;
  padding-top: 0;
}
header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  text-align: center;
}
header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 h1.title {
  text-align: center;
}

/* Contact Container */
header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul li {
  padding-left: 20px;
  display: flex;
  align-items: center;
}
header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul li.pipe {
  padding-left: 10px;
}
header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul li.pipe::before {
  content: "|";
  padding-right: 10px;
}
header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container a:not(.pbutton) {
  color: var(--primary-dark);
  font-weight: 700;
}
header.kd-header .kd-header-background-wrapper .kd-header-nav {
  position: relative;
}

/* ----------------------------
   Responsive Breakpoints
---------------------------- */
@media (max-width: 1399.98px) {
  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 h1.title {
    font-size: 31px;
    line-height: 2.5rem;
  }
  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
    font-size: 18px;
  }
}

@media (max-width: 1199.98px) {
  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid {
    grid-template-columns: calc(25% - 15px) calc(75% - 15px);
    grid-template-rows: 57% 43%;
    max-height: 276px;
    column-gap: 30px;
  }
  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 h1.title {
    font-size: 28px;
    line-height: 2.5rem;
  }
  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {

  header.kd-header .kd-header-top {
    height: 80px;
  }

  header.kd-header .kd-header-top .mobile-logo {
    display: block;
    order: 2;
  }

  header.kd-header .kd-header-top  .mobile-home {
    order: 1;
  }
  header.kd-header .kd-header-top  .mobile-search {
    order: 3;
  }
  header.kd-header .kd-header-top  .mobile-basket {
    order: 4;
  }

  header.kd-header .kd-search-form-holder {
    align-content: center;
  }

  .search-suggestions-mobile-wrapper {
    display: block;
    position: absolute;
    top: 89px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }

  header.kd-header .kd-header-background-wrapper.primary {
    height: 435px;
  }

  header.kd-header .kd-header-background-wrapper.secondary {
    height: 75px;
  }

  body.home header.kd-header .kd-header-background-wrapper.primary .kd-header-middle {
    max-height: 200px;
    height: 200px;
  }  

  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle {
    max-height: 75px;
    height: 75px;
  }

  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 30% 55%;
    column-gap: 0;
  }
  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-logo {
    display: none;
  }

  header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle {
    height: 75px;
  }

  header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid {
    max-height: 75px;
  }

  header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-header-logo {
    display: none;
  }

  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 {
    grid-row: 2;
    grid-column: 1;
    align-content: center;
  }

  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 h1.title {
    font-size: 24px;
    line-height: 2rem;
    text-align: center;
  }

  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
    grid-row: 2;
    grid-column: 1 / 3;
    align-content: flex-end;
    margin-bottom: 30px;
  }

  header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
    grid-row: 1;
    grid-column: 1 / 3;
    align-content: center;
    margin-bottom: 30px;
  }
  header.kd-header .kd-header-background-wrapper.secondary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul {
    margin: 0 auto;
  }  

  header.kd-header .kd-header-background-wrapper .kd-header-middle {
    margin: 80px 0 0;
  }  

  header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul {
    justify-content: center;
  }

  .saleforces-subscribe-from-section {
    margin-top: -30px;
    margin-bottom: 30px;
  }

}

@media (max-width: 767.98px) {
  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-header-h1 h1.title {
    font-size: 22px;
    line-height: 2rem;
    text-align: center;
  }

  header.kd-header .kd-header-background-wrapper.primary .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
    grid-row: 2;
    grid-column: 1 / 3;
    align-content: flex-end;
    margin-bottom: 30px;
  }
  header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container {
    padding: 0!important;
  }
  header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul li {
    font-size: 14px;
    padding: 5px 0;
  }
  header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul li.pipe {
    padding-left: 0;
  }
  header.kd-header .kd-header-background-wrapper .kd-header-middle .content .kd-header-middle-grid .kd-contact-container ul li.pipe::before {
    content: '';
  }
  .saleforces-subscribe-from-section {
    margin-top: -20px;
  }
}

/*--------------------------------------------------------------
  BREADCRUMBS
--------------------------------------------------------------*/
.breadcrumbs {
  background-color: var(--alt-blue-light);
  color: var(--primary-dark);
  padding: 10px 0;
}

.breadcrumbs a {
  color: var(--alt-blue-gray);
  font-weight: 500;
  transition: var(--transition-link);
}
.breadcrumbs a:hover {
  color: var(--primary-accent);
}

.breadcrumbs nav.rank-math-breadcrumb {
  display: inline-block;
}

.breadcrumbs nav.rank-math-breadcrumb p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  ALL PAGES HEADER
--------------------------------------------------------------*/
.wp-singular .row.padded-row {
  padding: 30px 0;
}

section.indent-block.all-pages-header-section {
  background-color: var(--alt-blue-light);
  padding: 0 0 30px;
  margin-bottom: 0;
}

section.indent-block.all-pages-header-section .all-pages-header h1 {
  color: var(--primary-dark);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0;
}
section.indent-block.all-pages-header-section .all-pages-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}
section.indent-block.all-pages-header-section .all-pages-header.center,
section.indent-block.all-pages-header-section .all-pages-header.single-product-pages-header {
  text-align: center;
}

/*--------------------------------------------------------------
  MEGA MENU
--------------------------------------------------------------*/

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:before {
  font-size: 30px!important;
}

header.kd-header .kd-header-background-wrapper .kd-header-nav {
  background-color: var(--nav-background-color);
}

/* sticky mav */
header.kd-header .kd-header-background-wrapper .kd-header-nav.sticky {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 99;
  background: var(--primary-dark);
}

header.kd-header .kd-header-background-wrapper .kd-header-nav ul {
  margin: 0;
  padding: 0;
}

header.kd-header .kd-header-background-wrapper .kd-header-nav ul.kd-parent-menu a {
  color: var(--default-white);
}

.kd-header-nav ul.kd-parent-menu li.kd-menu-item-parent:hover a {
  color: var(--alt-gray-blue);
  transition: var(--transition-link);
}

/* General Mega Menu Styles */
ul.hf-dyn-category-submenu li.hf-dyn-submenu-item.hf-dyn-submenu-item-current a.hf-dyn-submenu-item-a {
  font-weight: 700 !important;
}
.hf-dyn-submenu-item-a {
  white-space: pre-line;
}
.kd-header-nav .container #mega-menu-wrap-primary {
  background-color: transparent;
}
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  font-weight: 600;
  transition: var(--transition-button);
  font-size: 16px;
}

.kd-header-top .kd-mobile-menu {
  display: none;
}

.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary {
  padding: 20px;
}
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mobile-only {
  display: none;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
  background: var(--default-white);
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
  padding: 0;
}

/* First Row Menu Columns */
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
  li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column {
    padding: 10px 0 20px 20px;
}

/* Nested Menus and Items */
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu {
  list-style: none;
  padding: 0;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item a.hf-dyn-menu-item-a,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item a.hf-dyn-menu-item-a {
  text-transform: uppercase;
  color: var(--alt-gray-blue);
  font-weight: 600;
  font-size: 16px;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item a.hf-dyn-menu-item-a:hover,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item a.hf-dyn-menu-item-a:hover {
  color: var(--alt-blue-gray);
}

.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu {
  margin-top: 0;
  list-style: none;
  padding: 0;
}

.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu a.hf-dyn-submenu-item-a,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu a.hf-dyn-submenu-item-a {
  text-transform: uppercase;
  color: var(--alt-gray-blue);
  font-weight: 500;
  font-size: 14px;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu a.hf-dyn-submenu-item-a:hover,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu a.hf-dyn-submenu-item-a:hover {
  color: var(--alt-blue-gray);
}

/* Horizontal List Columns */
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-first-row.mega-horizontal-list ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item .ebs_widget_content ul.hf-dyn-category-menu 
li.hf-dyn-menu-item ul.hf-dyn-category-submenu {
  columns: 3;
}

/* Second Row */
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row {
  background-color: var(--primary-accent)!important;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column {
  padding: 0;
}
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column {
  padding: 0 0 0 20px;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item {
  padding: 15px 15px 0 15px;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column:last-of-type ul.mega-sub-menu li.mega-menu-item {
  padding: 15px 15px 15px 15px;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item a,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item a {
  text-transform: uppercase;
  color: var(--default-white);
  font-weight: 600;
  font-size: 16px;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item a:after,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item a:after {
  content: "\f345";
  font-size: 17px;
  font-family: dashicons;
  font-weight: normal;
  display: inline-block;
  padding-left: 10px;
  vertical-align: top;
}
.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item a:hover,
.kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
li.mega-menu-row.mega-second-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item a:hover {
  color: var(--primary-light);
}


/* ----------------------------
   Responsive Breakpoints
---------------------------- */

@media (max-width: 1439.98px) {
  .kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
    li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column {
      padding: 0 0 0 20px;
  }  
}

@media (max-width: 991.98px) {

  section.indent-block.all-pages-header-section .all-pages-header h1 {
    font-size: 26px;
    font-weight: 600;
  }
  section.indent-block.all-pages-header-section .all-pages-header h2 {
    font-size: 20px;
    font-weight: 600;
  }
  .kd-header-nav {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .kd-header-top .kd-mobile-menu {
    display: block;
  }
  .kd-header-top .home-btn {
    display: none;
  }
  .kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a,
  .kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a {
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  ul.hf-dyn-category-menu {
    margin: 0 10px;
  }
  .kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mobile-only {
    display: block;
  }

  .kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
  li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu a.hf-dyn-submenu-item-a,
  .kd-header-nav .container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu
  li.mega-menu-row.mega-first-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item ul.hf-dyn-category-menu li.hf-dyn-menu-item .hf-dyn-category-submenu a.hf-dyn-submenu-item-a {
    font-size: 12px;
  }

}

.kd-header-top .kd-mobile-menu #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link span.mega-indicator:after {
  font-size: 50px;
  margin-top: -2px;
}


/*--------------------------------------------------------------
  MODALS
--------------------------------------------------------------*/

.modal .modal-dialog {
  width: 768px;
  max-width: 758px;
}

.modal .modal-header {
  padding: 10px 15px 0;
  border-bottom: none;
  overflow: hidden;
}

.modal button.btn-close {
  font-size: 1.3em;
  color: var(--primary-dark);
  outline: none!important;
  box-shadow: none;
}
.modal button.btn-close:active,
.modal button.btn-close:focus {
  outline: none!important;
  box-shadow: none!important;
}
.modal .modal-body h2 {
  margin-bottom: 12px;
}

/* activate pricing modal */
.price-info-modal {

}
.price-info-modal .modal-body h2 {
  margin-bottom: 12px;
}
.price-info-modal .modal-body h3 {
  color: var(--primary-dark);
  font-size: 22px;
  margin-bottom: 12px;
}
.price-info-modal .modal-body p {
  margin: 0;
}

.price-info-modal .modal-body .full-activate-pricing-form {
  display: none;
}

.price-info-modal .modal-body .init-activate-pricing-form .row .submit-col {
  height: 50px;
  align-content: center;
}

.price-info-modal .modal-body .init-activate-pricing-form,
.price-info-modal .modal-body .full-activate-pricing-form {
  margin: 0 auto 40px;
}
.price-info-modal .modal-body .init-activate-pricing-form form,
.price-info-modal .modal-body .full-activate-pricing-form form {
  margin-top: 15px;
}
.price-info-modal .modal-body .init-activate-pricing-form .row .submit-col,
.price-info-modal .modal-body .full-activate-pricing-form .row .submit-col {
  text-align: left;
}

.price-info-modal .modal-body .init-activate-pricing-form .row .submit-col button[type=submit],
.price-info-modal .modal-body .full-activate-pricing-form .row .submit-col button[type=submit] {
  width: 100%;
}

.price-info-modal .modal-body .init-activate-pricing-form  .row .submit-col button[type=submit]:disabled,
.price-info-modal .modal-body .full-activate-pricing-form .row .submit-col button[type=submit]:disabled {
  color: transparent;
  background-color: var(--default-white);
}

.price-info-modal .modal-body .init-activate-pricing-form .row .submit-col button[type=submit] .spinner,
.price-info-modal .modal-body .full-activate-pricing-form .row .submit-col button[type=submit] .spinner {
  width: 17px;
  height: 17px;
}

.price-info-modal .modal-body .init-activate-pricing-form .row .field-error,
.price-info-modal .modal-body .full-activate-pricing-form .row .field-error {
  border: 1px solid var(--error-message);
}

.price-info-modal .modal-body .full-activate-pricing-form .row .email-list-col {
  display: flex;
  align-items: center;
  height: 40px;
}
.price-info-modal .modal-body .full-activate-pricing-form .row .email-list-col label {
  padding: 0 0 0 5px;
  margin: 0;
}

.price-info-modal .modal-body .init-activate-pricing-form .results .result .result-wrapper,
.price-info-modal .modal-body .full-activate-pricing-form .results .result .result-wrapper {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: var(--default-font-size);
  text-align: center;
  margin: 0 auto -15px;
  flex-wrap: wrap;
}
.price-info-modal .modal-body .init-activate-pricing-form .results .result .result-wrapper.success {
  margin: 15px auto -15px;
}

.price-info-modal .modal-body .init-activate-pricing-form .results .result .result-wrapper.success,
.price-info-modal .modal-body .full-activate-pricing-form .results .result .result-wrapper.success {
  margin: 40px auto 0;
  color: var(--success-message);
}
.price-info-modal .modal-body .init-activate-pricing-form .results .result .result-wrapper.error,
.price-info-modal .modal-body .full-activate-pricing-form .results .result .result-wrapper.error {
  color: var(--error-message);
}
.price-info-modal .modal-body .call-for-price-instructions {
  padding: 30px;
  background-color: var(--alt-blue-light);
  margin: 0 20px 20px;
}
.price-info-modal .modal-body .call-for-price-instructions p:last-of-type {
  margin: 0;
}

/* request a quote modal */
.request-a-quote-modal .modal-dialog {
  width: 768px;
}

#requestAQuoteForm input[type=checkbox],
.request-a-quote-modal .modal-body input[type=checkbox] {
  margin-right: 10px;
}

.request-a-quote-modal .modal-body textarea {
  margin-bottom: 0;
}

.request-a-quote-modal .modal-body .modal-make-an-offer-link {
  margin: 60px auto 0;
}
.request-a-quote-modal .modal-body .modal-make-an-offer-link p {
  margin: 0;
  padding: 0;
}

.request-a-quote-modal .modal-body .modal-make-an-offer-link .copy {
  margin: 12px auto;
}

.request-a-quote-modal .modal-body .modal-make-an-offer-link .copy .machine {
  font-style: italic;
  font-weight: 600;
}

.request-a-quote-modal .modal-body .row.cta {
  padding-top:20px;
}

#requestAQuoteForm .submit,
.request-a-quote-modal .modal-body .row.cta .submit {
  justify-items: flex-end;
}

/* make an offer modal */
.make-offer-modal {
}

.make-offer-modal .product-thumbnail {
  border: 1px solid var(--alt-blue-light);
  text-align: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 250px;
  width: 265.27px;
  margin: 20px auto 0;
}
.make-offer-modal .product-title {
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--primary-dark);
  text-transform: none;
  padding: .5em 0;
  margin: 0;
  font-size: 1em;
}
.make-offer-modal .product-category {
  text-align: center;
  margin-bottom: 10px;
}
.make-offer-modal .product-referencenum {
  text-align: center;
}

.make-offer-modal .product-price {
  text-align: center;
  font-weight: bold;
  padding: 0 0 20px;
}
.make-offer-modal .product-price .value {
  font-weight: normal;
}

.make-offer-modal #makeOfferForm {
  padding: 20px 0;
}

.make-offer-modal #makeOfferForm .step .general-error {
  display: none;
  color: var(--error-message);
  text-align: center;
  margin: 20px auto 0;
  transition: all .3s ease;
}

.make-offer-modal #makeOfferForm .step { display: none; transition: all .3s ease; }
.make-offer-modal #makeOfferForm .step.loading { 
  display: block; 
  position: relative;
  transition: all .3s ease;
}
.make-offer-modal #makeOfferForm .step.loading:before {
  content: '';
  background-color: rgba(255, 255, 255, 1);
  display: block;
  height: 318px;
  width: 736px;
  position: absolute;
}
.make-offer-modal #makeOfferForm .step.loading:after {
  content: url('/wp-content/themes/maxcanvas_child/img/icons/cog22_dark.svg')!important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  transform: translate(-50%, -50%);
}
.make-offer-modal #makeOfferForm .step.active { display: block; }
.make-offer-modal #makeOfferForm .form-group { margin-bottom: 15px; }
.make-offer-modal #makeOfferForm #priceSection { font-size: 18px; margin-bottom: 20px; }
.make-offer-modal #makeOfferForm .error { color: var(--error-message); font-size: 14px; display: none; padding-left: 16px; }

.make-offer-modal #makeOfferForm .form-button {
  text-align: right;
}

.make-offer-modal #makeOfferForm .form-button button[type=submit] {
  position: relative;
}

.make-offer-modal #makeOfferForm .form-button button[type=submit].loading {
  transition: all .3s ease;
  color: transparent!important;
  opacity: .25;
}

.make-offer-modal #makeOfferForm .form-button button[type=submit].loading:after {
  content: url('/wp-content/themes/maxcanvas_child/img/icons/cog22_light.svg')!important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  transform: translate(-50%, -50%);
}
.make-offer-modal #makeOfferForm .form-button button[type=submit].loading:hover:after {
  content: url('/wp-content/themes/maxcanvas_child/img/icons/cog22_dark.svg')!important;
}

.make-offer-modal .thank-you-message {
  display: none;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  background-color: var(--alt-blue-light);
  border: 1px solid var(--);
  margin-top: 20px;
}

.make-offer-modal #makeOfferForm .product-price .value .nprice,
.make-offer-modal #makeOfferForm .product-price .value .rprice,
.woocommerce div.product .product-description .nprice,
.woocommerce div.product .product-description .rprice {
  color: var(--price-color);
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  font-size: 22px !important;
  line-height: 1.2;
  margin-top: .5em !important;
}
.make-offer-modal #makeOfferForm .product-price .value .nprice.reduced,
.woocommerce div.product .product-description .nprice.reduced {
  text-decoration: line-through;
  color: var(--error-message);
}
.make-offer-modal #makeOfferForm .product-price .value .rprice,
.woocommerce div.product .product-description .rprice {
  color: var(--price-color);
}

/* make an offer modal */


/* ----------------------------
   Responsive Breakpoints
---------------------------- */
@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {

  .price-info-modal .modal-body .call-for-price-instructions {
    padding: 20px;
  }

  .make-offer-modal #makeOfferForm #priceSection { font-size: 16px; }

  .price-info-modal .modal-body .init-activate-pricing-form .results .result .result-wrapper,
  .price-info-modal .modal-body .full-activate-pricing-form .results .result .result-wrapper {
    font-size: var(--default-mobile-font-size);
  }

  .make-offer-modal #makeOfferForm .product-price .value .nprice,
  .make-offer-modal #makeOfferForm .product-price .value .rprice,
  .woocommerce div.product .product-description .nprice,
  .woocommerce div.product .product-description .rprice {
    font-size: 16px !important;
    margin-top: 0 !important;
  }

  .modal .modal-dialog {
    width: 100%;
    margin: 8px auto 0;
  }
  .modal .modal-dialog .modal-content {
    width: 90%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
  MAIN CATEGORIES
--------------------------------------------------------------*/

ul.products.main-category.columns-4 li.product.product-type-main-category {
  flex: 0 0 23.5%;
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  
  margin: 0 2% 0 0;
  padding: 4px;
  background-color: var(--default-white);
}

ul.products.main-category.columns-4 li.product.product-type-main-category.page {
  margin: 0 2% 2% 0;
}

ul.products.main-category.columns-4 li.product.product-type-main-category:nth-of-type(4n) {
  margin: 0 0 0 0;
}

ul.products.main-category.columns-4 li.product.product-type-main-category a {
  position: relative;
  color: var(--default-white);
  font-family: var(--header-font);
  font-size: 17px;
  font-weight: 400;
}

ul.products.main-category.columns-4 li.product.product-type-main-category a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0; 
  right: 0; 
  bottom: 50px; 
  left: 0;
  background-color: transparent;
  transition: var(--transition-default);
  pointer-events: none;
}

ul.products.main-category.columns-4 li.product.product-type-main-category.page a::after {
  bottom: 70px;
}

ul.products.main-category.columns-4 li.product.product-type-main-category a:hover::after {
  background-color: var(--light-overlay);
}

ul.products.main-category.columns-4 li.product.product-type-main-category .img-holder {
  height: 291px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
}

ul.products.main-category.columns-4 li.product.product-type-main-category .main-category-name {
  padding: 0 10px;
  background-color: var(--nav-background-color);
  height: 50px;
  text-align: center;
  white-space: normal;
  text-transform: uppercase;
  position: absolute;
  font-size: 13px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
ul.products.main-category.columns-4 li.product.product-type-main-category .main-category-name::after {
  content: "";
  background-image: url('../img/icons/categories-chevrons-right.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 20px;
  width: 27px;
  min-width: 27px;
  display: inline-block;
}

ul.products.main-category.columns-4 li.product.product-type-main-category.page .main-category-name {
  height: 70px;
}

ul.products.main-category.columns-4 li.product.product-type-main-category a:hover .main-category-name::after {
  background-image: url('../img/icons/categories-chevrons-right-white.png');
  transition: var(--transition-background);
}

@media (max-width: 991.98px) {  

  ul.products.main-category.columns-4 li.product.product-type-main-category {
    flex: 0 0 48%;
    margin: 0 2% 2% 0 !important;
    padding: 3px;
  }  

  ul.products.main-category.columns-4 li.product.product-type-main-category .img-holder {
    height: 130px;
  }

}

@media (max-width: 767.98px) {

  ul.products.main-category.columns-4 li.product.product-type-main-category {
    padding: 2px;
  }

  ul.products.main-category.columns-4 li.product.product-type-main-category .main-category-name {
    font-size: 11px;
  }
  ul.products.main-category.columns-4 li.product.product-type-main-category .main-category-name::after {
    height: 15px;
    width: 15px;
    min-width: 15px;
  }
}

/*--------------------------------------------------------------
  PAGES
--------------------------------------------------------------*/

.entry-content h2 {
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 28px;
}

.page-template-template-manufacturers .manufacturer-historical-title {
  text-align: center;
  margin: 0 auto 60px;
  font-weight: 600;
}

.page-template-template-manufacturers .manufacturer-historical-list {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  column-count: 4;
  column-gap: 1;
  width: 100%;
}

.page-template-template-manufacturers .manufacturer-historical-list ul {
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 40px;
  margin: 0 auto;
  list-style: none;
  text-align: left;
}

.page-template-template-manufacturers .manufacturer-historical-list ul li {
  position: relative;
}

.page-template-template-manufacturers .manufacturer-historical-list ul li:first-child {
  font-weight: 600;
  margin: 0 0 20px;
  max-width: 50%;
}

body input[type="text"], body input[type="email"], body input[type="number"], body input[type="tel"], body input[type="password"], body textarea {
  border-radius: 3px !important;
  border: 1px solid var(--alt-blue-light);
  color: var(--primary-dark)!important;
}

body select.invalid, body input[type="text"].invalid, body input[type="search"].invalid, body input[type="email"].invalid, body input[type="number"].invalid, body input[type="tel"].invalid, body input[type="password"].invalid {
  border-color: var(--error-message)!important;
}

.huge_it_google_map_container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.huge_it_google_map_container iframe {
  width: 100%;
  height: 100%;
}


.contact-block .flex-column {
  width: 50%;
  align-self: flex-start;
}

.contact-block .map-holder {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.contact-block .form-holder {
  align-self: center;
}

.contact-block .flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-block .limit-box {
    display: inline-block;
    vertical-align: top;
    max-width: 585px;
    width: 100%;
    padding: 0 15px 0 70px;
    text-align: left;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

.info-table {
  color: var(--primary-dark);
  width: 100%;
  table-layout: fixed;
}

.info-table tr td {
  padding: 13px 20px;
}

.info-table tr td:first-child {
  border-right: 30px solid var(--default-white);
}

.info-table tr td:last-child {
  border-left: 30px solid var(--default-white);
}

.info-table tr:nth-child(odd) {
  background: var(--alt-lighter-blue-light);;
}

@media screen and (max-width: 991px) {

  .contact-block .form-holder {
    padding-bottom: 60px;
  }
  .contact-block .flex-row {
    flex-direction: column-reverse!important;
  }
  .contact-block .flex-column {
      width: 100%;
      text-align: center;
  }
  .contact-block .map-holder {
      height: 460px;
      margin-bottom: -20px;
  }  

}


@media (max-width: 1199.98px) {
  .contact-block .map-holder {
    height: 750px;
  }
  .contact-block .limit-box {
      padding-left: 15px;
  }
}


@media (max-width: 991.98px) {
  .contact-block .map-holder {
    height: 460px;
    margin-bottom: -20px;
  }
  .info-table tr td {
    padding: 10px 15px;
  }
  .info-table tr td:first-child {
    border-right-width: 20px;
  }
  .info-table tr td:last-child {
    border-left-width: 20px;
  }  
}
@media (max-width: 767.98px) {

  .content-block .flex-row .form-holder {
    padding-bottom: 60px;
  }
  .contact-block .flex-row .map-holder {
    height: 360px;
  }

  .info-table tr td {
    padding: 8px 10px;
  }
  .info-table tr td:first-child {
    border-right-width: 5px;
  }
  .info-table tr td:last-child {
    border-left-width: 5px;
  }  

}

@media (max-width: 480px) {
  .contact-block .map-holder {
    height: 300px;
  }
  .info-table tr td {
    padding: 5px 10px;
    display: block;
    font-weight: normal;
  }
  .info-table tr:nth-child(odd) {
    font-weight: 600;
  }
  .info-table tr td:first-child {
    border-right-width: 0;
  }
  .info-table tr td:last-child {
    border-left-width: 0;
  }
  .info-table tr:nth-child(2n+1) {
    background-color: var(--default-white);
  }
  .info-table tr td:nth-child(2n+1) {
    background-color: var(--alt-lighter-blue-light);
  }  
}

/*--------------------------------------------------------------
  SINGLE PRODUCT
--------------------------------------------------------------*/

.product-img.single-product .sold-img {
  position: absolute;
  z-index: 100;
}

.single-product-slider {
  margin-bottom: 2vw;
}

.single-product-slider .product-slider {
  margin-bottom: 20px;
}

.single-product-slider .product-slider .default-thumbnail {
  background-image: none!important;
}
.single-product-slider .product-slider .default-thumbnail img {
  width: 100%;
}

.single-product-slider .product-slider .slick-slide {
  height: 484px;
  background: center center no-repeat;
  background-size: contain;
}

.single-product-slider .product-slider .slick-slide .btn-zoom {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--default-white);
  border-radius: 100%;
  box-shadow: 1px 1px 8px var(--primary-dark);
}

.single-product-slider .product-slider .slick-slide .btn-zoom i {
  font-size: 17px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--alt-gray-blue);
}

.single-product-slider .product-slider .slick-slide .btn-zoom:hover {
  background-color: var(--alt-gray-blue);
}

.single-product-slider .product-slider .slick-slide .btn-zoom:hover i {
  color: var(--default-white);
}

.single-product-slider .nav-product-slider {
  padding: 0 40px;
}

.single-product-slider .nav-product-slider .slick-slide {
  background: center center no-repeat;
  background-size: cover;
  height: 120px;
  margin: 0 15px;
  border: 1px solid var(--default-white);
  cursor: pointer;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.single-product-slider .nav-product-slider .slick-slide:hover, .single-product-slider .nav-product-slider .slick-current {
  border-color: var(--primary-dark);
}

.single-product-slider .nav-product-slider .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  font-size: 0;
  border: none;
  width: 30px;
  height: 30px;
  margin: -15px 0 0;
  background-image: url(../img/icons/right-arrow.png);
  @supports ( background-image: url(../img/icons/right-arrow.webp) ) {
    background-image: url(../img/icons/right-arrow.webp);
  }
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  background-size: contain;
  cursor: pointer;
  opacity: .6;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.single-product-slider .nav-product-slider .slick-arrow:hover {
  opacity: 1;
}

.single-product-slider .nav-product-slider .slick-prev {
  left: 5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.single-product-slider .nav-product-slider .slick-next {
  right: 5px;
}

.video-box {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
  margin-bottom: 25px;
  margin-top: 30px;
}

.video-box p {
  margin-bottom: 0;
}

.video-box:not(:last-child) {
  margin-bottom: 15px;
}

.video-box iframe {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
  position: absolute;
}

.product-description-title {
  padding: 15px;
  background: var(--alt-blue-light);
  text-align: center;
  text-transform: uppercase;
}

h2.product-description-title {
  font-size: 32px;
}

.product-description-title.extra-margin {
  margin-top: 25px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {

  .single-product-slider .nav-product-slider {
    padding: 0 0;
  }  

  .single-product-slider .product-slider .slick-slide {
    height: 328px;
  }
}

@media (max-width: 767.98px) {

  .single-product-slider .product-slider .slick-slide .btn-zoom {
    right: 20px;
    bottom: 40px;
  }

  h2.product-description-title {
    font-size: 22px;
  }
}


/*--------------------------------------------------------------
  SPECIAL PAGES
--------------------------------------------------------------*/

.featured-machines-top-buttons,
.new-arrivals-top-buttons,
.recently-reduced-top-buttons {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 30px;
}


.featured-machines-top-buttons .view-all-featured-machines a.btn, 
.new-arrivals-top-buttons .view-all-new-arrivals a.btn,
.recently-reduced-top-buttons .view-all-recently-reduced a.btn {
}
.featured-machines-top-buttons .view-all-featured-machines a.btn:hover,
.new-arrivals-top-buttons .view-all-new-arrivals a.btn:hover,
.recently-reduced-top-buttons .view-all-recently-reduced a.btn:hover {
  color: var(--default-white)!important;

}

.view-all-category-product {
  margin-bottom: 30px;
  padding-bottom: 0;
  margin-top: 30px;
}


/*--------------------------------------------------------------
  SEARCH RESULTS
--------------------------------------------------------------*/

form.woocommerce-product-search {
  display: flex;
  gap: 30px;
  height: 50px;
  align-items: center;
}

.search-result-table {
  width: 100%;
  table-layout: fixed;
  min-width: 660px;
}

.search-result-table tr td {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.search-result-table tr:hover {
  cursor: pointer;
}

.search-result-table thead tr:hover {
  cursor: auto;
}

.search-result-table tr:hover td {
  background: var(--alt-blue-light)!important;
}

.search-result-table tr th, 
.search-result-table tr td {
  padding: 10px 5px;
  text-align: center;
}

.search-result-table tr td.price-cell-search {
  color: var(--price-color);
}

.search-result-table tr td.price-cell-search span.rprice {
  color: var(--price-color);
}

.search-result-table tr th {
  border-bottom: 1px solid var(--primary-dark);
}

.search-result-table tr:nth-child(odd) td {
  background: var(--alt-lighter-blue-light);
}

.search-result-table .name-cell {
  width: 15%;
  white-space: nowrap;
  padding-left: 0;
  text-align: center;
}

.search-result-table .price-cell {
  width: 10%;
}

.search-result-table .image-cell {
  width: 10%;
}

.search-result-table .image-cell>div {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: center;
}

.search-result-table .description-cell {}

.search-result-table .btn-cell {
  width: 12%;
  padding-right: 0;
  text-align: center;
}

.search-result-table .cart-cell {
  width: 12%;
  text-align: center;
}

.search-result-table .btn, 
.search-result-table .cart-cell a.button {
  padding: 8px 15px;
  text-align: center;
  font-weight: 400;
  font-size: var(--default-font-size);
  position: relative;
  display: flex;
  color: var(--primary-accent);
  background: var(--default-white);
  border: 1px solid var(--primary-accent);
  border-radius: 10px !important;
  outline: none;
  vertical-align: top;
  line-height: 1.2;
  white-space: normal;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  transition: var(--transition-button);
  font-family: var(--main-font);
  margin: 0 10px;
  width: calc(100% - 20px);
}

@media (max-width: 1199.98px) {
  .search-result-table {
    font-size: 12px;
  }
}

@media (max-width: 991.98px) {

  .search-result-table .cart-cell, 
  .search-result-table .btn-cell {
    width: 18%!important;
  }

  .search-result-table .btn, 
  .search-result-table .cart-cell a.button {
    width: 90px!important;
    font-size: var(--default-mobile-font-size);
  }
  
}

@media (max-width: 767.98px) {

  .search-result-table {
    width: 100%;
    table-layout: auto;
    min-width: 100%;
  }
  .search-result-table .btn,
  .search-result-table .button {
    font-size: var(--default-mobile-font-size);
  }
}




/*--------------------------------------------------------------
  FOOTER
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  background: var(--alt-blue-gray);
  bottom: 353px;
  color: var(--default-white);
  left: 2%;
  display: none;
  z-index: 11;
}
.back-to-top a {
  color: var(--default-white);
  text-align: center;
  display: block;
  height: 45px;
  width: 45px;
  line-height: 1.4;
  font-size: 29px;
}

.pre-footer {
  width: 100%;
  background-color: var(--default-white);
  padding: 5px 0;
  border-top: 1px solid var(--footer-dark);
  z-index: 10;
}
.pre-footer .logo-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.pre-footer .logo-list li {
  display: inline-block;
}
.pre-footer .logo-list img {
  max-height: 100px;
  width: auto !important;
  max-width: 100% !important;
}

.post-footer,
.site-footer {
  width: 100%;
  background: var(--footer-dark);
  padding: 30px 0 5px;
  color: var(--primary-light);
  font-size: 14px;
  z-index: 10;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  position: relative;
}
.site-footer .logo {
  display: block;
  max-width: 210px;
  margin: 0 auto;
}
.site-footer .logo svg {
  width: 190px;
  height: 140px;
}
.site-footer .logo img {
  width: 100%;
  height: auto;
}
.footer-nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}
.footer-nav .menu>li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  text-align: center;
  padding: 5px 0;
}
.footer-nav .menu>li>a {
  display: block;
  color: var(--default-white);
  width: 100%;
}
.footer-nav .menu>li:hover>a,
.footer-nav .menu>li:focus>a,
.footer-nav .menu>.current-menu-item>a {
  color: var(--primary-accent);
}
.footer-nav .menu>.current-menu-item>a {
  font-weight: 500;
}

.site-footer address p {
  margin-bottom: 5px;
}
.site-footer address a {
  color: var(--default-white);
  font-weight: 600;
}
.site-footer address a:hover {
  color: var(--primary-accent);
}

.site-footer .social-list {
  list-style: none;
  margin-bottom: 35px;
  padding: 0;
  text-align: center;
}
.site-footer .social-list li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 3px;
}
.site-footer .social-list a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 18px;
  background: var(--default-white);
  border-radius: 50%;
  color: var(--footer-dark);
  fill: var(--footer-dark);
  padding: 2px;
}
.site-footer .social-list a:hover {
  background: var(--primary-accent);
  color: var(--default-white);
  fill: var(--default-white);
}
.site-footer .social-list svg {
  width: 19px;
  height: 19px;
}
.site-footer .social-list .ebay svg {
  width: 24px;
  height: 24px;
}

.site-footer .office-locations {
  display: flex;
  justify-content: center;
  margin: 54px auto 0;
  font-size: 16px;
  flex-wrap: wrap;
}
.site-footer .office-locations.states {
  margin: 12px auto 0;
}
.site-footer .office-locations li {
  list-style-type: none;
  white-space: nowrap;
}
.site-footer .office-locations li:first-child {
  font-weight: 500;
}
.site-footer .office-locations li:after {
  content: ", ";
  padding-right: 16px;
}
.site-footer .office-locations li:last-child:after {
  content: "";
}

/* ----------------------------
   Responsive Breakpoints
---------------------------- */

@media (max-width: 1199.98px) {
  .footer-nav {
    margin-top: 5px;
  }
  .site-footer .logo svg {
    width: 150px;
    height: 110px;
  }
  .footer-nav .menu {
    font-size: 15px;
  }
  .footer-nav .menu>li:not(:last-child) {
    margin-right: 30px;
  }
}

@media (max-width: 991.98px) {

  .back-to-top {
    display: none!important;
  }

  .site-footer {
    padding: 30px 0 0;
    text-align: center;
  }
  .footer-nav {
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 0;
  }
  .site-footer .logo svg {
    width: 140px;
    height: 105px;
  }
  .site-footer .logo-list {
    margin-bottom: 10px;
  }
  .site-footer .logo-list li {
    margin-bottom: 10px;
  }
  .site-footer .social-list {
    display: flex;
    justify-content: center;
    margin: 30px auto;
  }
  .site-footer .info-col {
    margin-bottom: 5px;
  }
  .site-footer .office-locations {
    margin: 26px auto 0;
    flex-wrap: wrap;
  }

  .post-footer {
    padding: 0 0 30px;
  }
}


/* temp */
/* main.main { display:none; } */
/* footer.site-footer, .post-footer { display: none;} */
#side-buttons { display:none; }