/* Hide terms from orders page */
.ex-order section.myorderview #order-top .customer-orders-terms {
  display: none;
}

/*MH Badge*/
.b1318 .ribbon, .b1318 .ribboncart {
	 background: url("https://us.evocdn.io/dealer/1296/content/media/MH Folder/BestSeller.png") no-repeat center !important;
	 background-size: contain !important;
	 width: 87px;
	 height: 87px;
}
 .b1318 .ribboncart {
	 width: 40px;
	 height: 40px;
}
 .b1318 .ribbon-tips, .b1318 .ribbon-side, .b1318 .ribboncart-tips, .b1318 .ribboncart-wrapper, .b1318 span {
	 display: none;
}
/* ===== MH style nav to accomodate changes===== */
.expanded.menu ul.catalog li a {
	padding: 10px 0.9em;
}
.expanded.menu ul.catalog li.nav-sidenav {
	padding-left: clamp(20px,16vw,255px);
}
.expanded.menu ul.catalog li.nav-sidenav a {
  padding: 10px 15px 10px 45px;
}

.header-full .expanded.menu .catalog > li:nth-child(n+6) {
  display: inline-block;
}
.nav-interiors {
	background-color: #009fe3;
}
.menu ul.catalog li.nav-interiors a {
	color: #fff;
}
.nav-shredding {
	background-color: #91d4ee;
}
/*Login buttons style*/
.login-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 5px;
  padding: 7px 10px;
}
.login-wrapper.login-wrapper a.btn.btn {
  font-size: 0.9rem;
  color: #fff; 
  border-radius: 5px;
}
.buttons.group:has(.login-wrapper) {
  height: auto!important;
}
/* ===== MH landing page styling ===== */
.page-content.onecolumn:has(.landingpage-hero-title) {
  margin: 0;
}

.landingpage-hero-title {
  position: relative;
  background-color: #2a2a2a;
  min-height: 420px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.landingpage-hero-title > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.landingpage-hero-title .container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.landingpage-hero-title .content-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
}

.landingpage-hero-title h1 {
  font-size: 48px;
  margin: 0 0 25px;
  color: #fff;
}

.landingpage-hero-title p:last-child {
  margin-bottom: 0;
}

.landingpage-introtext h2 {
  font-size: 40px;
  margin: 0 0 30px;
}

.landingpage-introtext p {
  margin: 0 0 25px;
}

.catalog-grid:has(.landingpage-introtext) .row-breadcrumb {
  display: none;
}

.htmlcontent_container:has(.landingpage-buttons) {
  margin: 0;
}

.landingpage-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.landingpage-buttons .btn {
  width: 35%;
  padding: 1.5rem;
  font-size: 1.35rem;
  min-width: max-content;
}

@media (max-width: 500px) {
  .landingpage-buttons {
  flex-direction: column;
  align-items: center;
  }
  .landingpage-buttons .btn {
  min-width: min(300px, 90%);
  }
}

.landingpage-category-boxes {
  background: #f3f3f3;
  padding: 70px 0;
  margin-top: 30px;
}

.landingpage-category-boxes h2 {
  text-align: center;
  font-size: 36px;
  color: #444242;
  margin: 0 0 25px;
}

.landingpage-category-boxes p {
  text-align: center;
  margin: 0;
}

.landingpage-category-boxes .container {
  background-color: revert;
}

.lp-categoryboxes-inner {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 991px) {
  .lp-categoryboxes-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .lp-categoryboxes-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.lp-categorybox {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 20px;
  height: 285px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}

.lp-categorybox > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: 0.35s all;
}

.lp-categorybox > div {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}

.lp-categorybox > div img {
  flex-shrink: 0;
}

.lp-categorybox > div::after {
  content: "View Category";
  position: absolute;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  bottom: 100%;
  opacity: 0;
  transition: 0.35s all;
  transform: translateX(-20px);
}

.lp-categorybox::after {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: -1;
  transition: 0.35s all;
}

.lp-categorybox:hover > img {
  transform: scale(1.05);
}

.lp-categorybox:hover > div::after {
  opacity: 1;
  transform: translateX(0);
}

.lp-categorybox:hover::after {
  opacity: 0.75;
}

.zonebottom:has(.landingpage-category-boxes) > div {
  margin-bottom: 0;
}

.gotAnyQuestions {
  background: #2a2a2a;
  position: relative;
  padding: 0 30px;
}

.gotAnyQuestions > img {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 50%;
  object-fit: cover;
}
.gotAnyQuestions a {
  margin-top: 20px;
}

.gotAnyQuestions a:hover,
a:focus {
  color: #ffffff;
}

.gotAnyQuestions .questionsInner {
  padding: 100px 100px 100px 0;
  width: 50%;
}

.gotAnyQuestions h3 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 30px;
}

.gotAnyQuestions p {
  color: #fff;
  margin: 0 0 30px;
}

.gotAnyQuestions .questionsLink {
  color: #fff;
  margin: 15px 0;
}
.gotAnyQuestions .customButton {
  display: inline-block;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .gotAnyQuestions > img {
    display: none;
  }
}

@media (max-width: 768px) {
  .gotAnyQuestions .questionsInner {
    width: 100%;
    padding: 50px 0;
  }
}
/* ===== END landing page style ===== */
/*===== MH pop up reminder ====*/
.gift-reminder {
  width: max-content;
  text-align: center;
  background-color: #eee;
  padding: 10px 15px;
  border-radius: 20px;
  top: 20px;
  right: 30px;
  font-size: 0.95rem;
  position: fixed;
  z-index: 99;
  opacity: 1;
  transition: all 0.35s ease;
  border: 1px solid #ddd;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.13), 0 24px 46px rgba(0, 0, 0, 0.2);
  visibility: visible;
  max-width: min(calc(100% - 10px), 500px);
  pointer-events: none;
}
.gift-reminder__message {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.gift-reminder.has-sticky {
  top: 170px;
}
.gift-image {
  height: 25px;
  /*border-radius: 50%;*/
  mix-blend-mode: darken;
}
.gift-reminder p {
  margin: 0;
  font-weight: 500;
  color: #404040;
  line-height: 1.5;
}
.gift-reminder.inactive {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.gift-reminder .amount-needed {
  font-weight: 900;
}
.gift-reminder .amount-needed em,
.gift-promotion-container em {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: -1px;
  display: inline-block;
}
.gift-reminder .close-reminder {
  position: absolute;
  top: -7px;
  right: -7px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  pointer-events: auto;
  font-size: 0.7rem;
  padding: 0;
}
.gift-promotion-container > div > p {
  padding: 5px 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .gift-reminder {
    top: 10px;
    padding: 10px 15px;
    right: 50%;
    transform: translateX(50%);
  }
}
/*===== End ====*/