:root {
  /*** Global ***/
  --theme-primary: #ffd504; /* yellow */
  --theme-secondary: #e7f5fa; /* lightblue */
  --theme-tertiary: #207bc1; /* blue */
  --theme-text: #3a3a3a; /* dark grey */
  --theme-lightgrey: #207bc1; /* bright blue */

  /* Top Bar */
  --topbar-bg: var(--theme-lightgrey);
  --topbar-icons: var(--theme-primary);
  --topbar-text: #fff ;
  --topbar-hover: #ffd504;

  /* Main Header */
  --header-bg: #207bc1;
  --header-icons: var(--theme-primary);
  --header-text: #fff;
  --header-hover: #ffd504;
  
  /* Header Search Bar */
  --search-bg: #fff;
  --search-icons: var(--theme-primary);
  --search-text: #207bc1;
  --search-focus: var(--theme-primary);
  
  /* Main Navigation */
  --nav-bg: #207bc1;
  --nav-border: #ffd504;
  --nav-icons: var(--theme-primary);
  --nav-text: #fff;
  --nav-hover: #ffd504;
  
  /* USP Strip */
  --strip-bg: #fff;
  --strip-icons: var(--theme-primary);
  --strip-text: #000;
  --strip-hover: var(--theme-tertiary);
  
  /* Footer */
  --footer-bg: #207bc1;
  --footer-icons: #fff;
  --footer-text: #fff;
  --footer-hover: #ffd504;
  
  /* Footer Newsletter Input*/
  --footnews-bg: #fff;
  --footnews-icons: var(--theme-primary);
  --footnews-text: #000000;
  --footnews-focus: var(--theme-primary);
  
  /* Footer Social Icons */
  --footsocial-bg: #207bc1;
  --footsocial-icons: #fff;
  --footsocial-bg-hover: #ffd504;
  --footsocial-icons-hover: #fff;
  
  /* Title Underline Underline Colour */
  --title-underline:  var(--theme-primary);
  
  /* Simple / Link Boxes */
  --linkbox-bg: var(--theme-primary);
  --linkbox-text: #fff;
  --linkbox-hover-bg: var(--theme-tertiary);
  --linkbox-hover-text: #fff;
}
.menu.expanded .catalog .submenu .submenucontainer > li > a {
    color: #207bc1;
}

 /* Button Improvements */
.btn.btn-outline-primary {
  border-radius: 5px; 
  transition: 0.3s; 
}
.btn.btn-outline-primary:hover {
  border-radius: 5px; /* Keep the rounded corners on hover */
}
button,
a.btn {
  border-radius: 5px !important;
}
.incr-btn {
  border-radius: 5px !important;
}
.delete-btn {
  border-radius: 5px !important;
}

/* Product Label Ribbon Banner Updates */
.ribbon-wrapper {
  border-radius: 3px;
  margin: 0;
}

.ribbon-side,
.ribbon-tips {
  display: none; /* Hide the side and tip elements */
}
.ribbon {
  font-family: Arial, sans-serif;
  font-size: 11.5px !important;
  font-weight: 600; 
  padding: 3px 5px !important;
  border-radius: 3px !important;
  transition: transform 0.3s ease;
}
.ribbon-wrapper:hover .ribbon {
  transform: scale(1.1);
}
  /* Out of Stock Label */
  .live-outstock {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    color: #fff !important;
    background-color: rgb(164, 20, 20);
}
  /* Available Label 1 */
.live-stock-content.in-stock {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    color: #fff !important; 
    background-color: #00B67A; 
}



  /* Product Page Social Links */
.social-links {
    display: flex;
    justify-content: center; 
     gap: 3px;
}

/* Rounded Corners on Add to Cart */
.softgraybackground {
    border-radius: 5px !important;
}

/* Branch Banner Selector */
.current-branch-banner .container a {
  font-weight: bold;
  color: black;
}

.current-branch-banner {
    background: #ffd504;
    font-size: 14px;
    padding: 9px 0;
  }

.current-branch-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  height: 10px;
}

/* Catalog Name Format */
.catalog-name {
  padding-left: 0px !important;
}

/* Account Switch Banner */
.switch-account-header p {
    color: #317cc5;
    font-size: 12px;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
}

/* Banner Rollover */
.page-content a > img{
    transition:0.35s opacity;
}
.page-content a:hover > img{
    opacity:0.7;
}

/* Start of add Sticky Header - EvoX */
.menubarStick {
  position: fixed !important;
  top: 0;
  width:100%;
  z-index: 15;
  background: #207bc1;
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
}

.headersection-2.menubarStick > .row-2 {
   max-width: 1450px;
    margin: 0 auto;
}
/* change me to the height of the sticky row */
.menubarHeader {
    padding-top:105px;
}
/* End of add Sticky Header EvoX */

/* Header Height Adjust */
.headersection-1 {
    height: 25px !important;
}
.headersection-2 {
    height: 105px !important;
}

/* Mobile Logo Adjust */
@media only screen and (max-width: 425px){
header .header-mobile .logo img {
    max-width: 110px;
}
}
@media only screen and (max-width: 769px){
header .header-mobile .logo img {
/* change this for mobile landscape view */
    max-width: 125px;
}
}

/* Featured Items Button */
.btn-widget-action {
    background-color: #207bc1 !important;
    color: #fff !important;  
    transition: background-color 0.3s ease; 
}
.btn-widget-action:hover {
    background-color: #ffd504 !important;
    color: #000 !important;  
}

/* Header Logo Adjust */
header .widgetlogo .logo img {
    max-width: 165px !important;
}

/* Header Mobile Landscape Mode */
@media screen and (orientation: landscape) {
    .header-desktop {
        width: 100%;  /* Ensure the header takes up the full width */
    }
   
}
@media (min-width: 768px) {
    /* Brands Slider Formatting */
    .brands_container {
        padding-left: 50px;  
        padding-right: 50px;
    }
    /* Recently Viewed Formatting */
    .lastviewedproducts_container {
        padding-left: 50px;  
        padding-right: 50px;
    }
}

/* Panel Formatting */
.panel-group {
    margin-bottom: 1em;
  	margin-top: 1em;
}


/* Highlight Menu Item */
li.standOut > a {
	display: inline-block;/*bug fix*/
	position: relative;
	text-decoration: none;
}
li.standOut > a::after {
	content: 'UPDATED!';
	position: absolute;
        bottom: 99%;
	right:11%;
	background: #00B67A;
	padding: 0px 6px 0px 5px;
	color: #fff;
	white-space: nowrap;
	opacity: 1;
	font-size: 12px;
	font-weight: bold;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
li.standOut > a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-top: 8px solid #5bd2ec;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	opacity: 1;
	right: 12%;
	bottom: 88%;
  
}
li.standOut > a:hover::after {
	bottom: 89%;
}
 li.standOut > a:hover::before {
	bottom: 78%;
}
li.standOut > a::after {
	
    -webkit-animation: fadeinndnd 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeinnd 1s; /* Firefox < 16 */
        -ms-animation: fadeinnd 1s; /* Internet Explorer */
         -o-animation: fadeinnd 1s; /* Opera < 12.1 */
            animation: fadeinnd 1s;
}
 li.standOut > a::before {
	
    -webkit-animation: fadeinnd 1.6s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeinnd 1.6s; /* Firefox < 16 */
        -ms-animation: fadeinnd 1.6s; /* Internet Explorer */
         -o-animation: fadeinnd 1.6s; /* Opera < 12.1 */
            animation: fadeinnd 1.6s;
}

@keyframes fadeinnd {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadeinnd {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeinnd {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadeinnd {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadeinnd {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* End Highlight Menu Item */

/* Swith Account Button Option from the Orders or Invoices Table */
div#myOrdersListErp,
div#myOrdersList,
div#myAwaitApprovalsList,
div#myRewardsHistory,
div#invoiceHistory {
    margin-top: 2.7em;
}
.switch-account-custom {
  position: absolute;
  top: 0;
  right: 2em;
  margin-left: 2px;
  font-weight: bold;
  padding: 5px 20px !important;
}
.invoice-history .switch-account-custom, .myawaitapproval .switch-account-custom {
  right: 10px;
}
@media (max-width:767px) {
  .switch-account-custom {
    position: relative;
    display: flex;
    justify-content: center;
    right: 0 !important;
  }
}

/* Start of EvoX Video Banner */
.tagline {
    z-index: 10;
}
.tagline:first-child {
    height: 54vh;
    min-width: 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
   display: -webkit-box; 
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex; 
   display: flex;
   -webkit-box-align: center;
   -moz-box-align: center;
   -ms-flex-align: center;
   -webkit-align-items: center;
   align-items: center;
}
section#section-top {
    height: 54vh;
    overflow: hidden;
}
.video-filter {
    z-index: 0;
    background-color: #2d364157;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
}
.bgvid-c {
    height: 54vh;
    width: 100%;
    overflow: hidden;
    position: absolute;
}
#bgvid {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100vw;
    position: relative;
    object-fit: cover;
}
#section-top h1 {
    color: #fff;
}
.img-icon {
    width: 10px;
    margin-top: -3px;
    margin-left: 5px;
}
.btn-white {
    background: transparent;
    border: 1px white solid;
    color: white;
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.37);
    color: white;
}
#section-top .btn-primary {
    border: 1px solid;
    border-color: white;
}
@media only screen and (max-width: 600px) {
    #section-top {
        height: 45vh;
    }
    #bgvid {
        height: 100%;
    }
}
@media only screen and (max-width: 600px) {
    #section-top h1 {
        font-size: 24px; /* Adjust as necessary */
    }
    #section-top .btn {
        font-size: 14px; /* Adjust as necessary */
        padding: 8px 12px; /* Adjust as necessary */
    }
}
/* End of EvoX Video Banner */

/* Mobile Class */
.mobile {
  display: none;
}

@media only screen and (max-width: 769px) {
  .mobile {
    display: block;
  }
}

/* Relocate Compare / Rewards Floating Icon Button */
.floating-buttons {
    bottom: 50px !important;
    right: 85px !important;
}
  	.rewards-tab {
      right: 25px !important;
}

/* Header Menu Dropdown */
.verticalmenu {
  display: flex;
  align-items: center;
}

.additional_links {
  list-style: none;
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  margin-left: 40px;
  /* Paratus making the menu centered */
  justify-content: space-evenly;
}
.additional_links > li.has-submenu {
  position: relative;
}
.additional_links > li.has-submenu > a {
  padding-right: 30px;
  position: relative;
}
.additional_links > li.has-submenu > a::after {
  content: "\f107";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.additional_links > li > a {
  color: #fff;
  padding: 7px 1em;
  display: inline-block;
  user-select: none;
}
.additional_links > li > a:hover, .additional_links > li > a:focus-visible {
  background-color: #195f95;
}
.additional_links > li > .submenu {
  width: auto;
  min-height: auto;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0 !important;
  z-index: 100;
  background: #fff;
  margin-bottom: 0;
  list-style: none;
  display: none;
  padding: 20px 40px;
  gap: 20px;
  box-shadow: 5px 5px 27px rgba(0, 0, 0, 0.2);
}
.additional_links > li > .submenu > li {
  margin: 0;
}
.additional_links > li > .submenu a {
  color: #071928;
}
.additional_links > li > .submenu a:hover, .additional_links > li > .submenu a:focus-visible {
  text-decoration: underline;
}
.additional_links > li > .submenu > .has-submenu {
  min-width: 200px;
}
.additional_links > li > .submenu > .has-submenu > a {
  font-weight: 700;
}
.additional_links > li > .submenu .submenu {
  list-style: none;
  padding-left: 0;
  flex-direction: column;
}
.additional_links > li.active::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  transform: translateY(27px);
  right: 0;
}
.additional_links > li.active .submenu {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  .additional_links > li .submenu .nLeft {
    grid-gap: 5px;
  }
}

/* END Header Menu Dropdown */

/* Center Header 2 Strip Vertically */
.header-full .vertical-align {
    justify-content: space-between;
    padding-top: 0px !important;
    padding-bottom: 15px;
}

/* Fix Catalog Menu Display Issue */
.container.verticalmenu {
    box-sizing: content-box !important;
}

.mobFourBoxes {
  flex-wrap: wrap;
  margin-top: 20px;
}
.mobFourBox {
  width: calc(50% - 5px);
  margin-bottom: 10px;
}
.mobFourBox:before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: white;
  opacity: 0.0;
}
.mobFourBox h1 {
  position: absolute;
  top: 50%;
  margin: 0;
  font-size: 18px;
  text-align: center;
  width: 100%;
  transform: translateY(-50%);
  color: white;
}
/* Click For Details added to Live Inventory */
/* Initial styles for the span */
.live_inventory_locations {
    position: relative; /* Needed to position the pseudo-element */
    cursor: pointer;    /* Change the cursor to indicate the element is clickable */
}

/* Define the hover tooltip */
.live_inventory_locations::after {
    content: 'See Quantity by Location';   /* The text you want to display */
    position: absolute;   /* Position it with respect to the .live_inventory_locations element */
    bottom: 100%;         /* Position it above the element */
    left: 50%;            /* Center it horizontally */
    transform: translateX(-50%); /* Further ensure it's horizontally centered */
    padding: 5px 10px;    /* Some padding for aesthetics */
    background-color: rgba(0,0,0,0.7); /* Semi-transparent black background */
    color: white;         /* White text */
    border-radius: 5px;   /* Rounded corners */
    pointer-events: none; /* Make sure the tooltip doesn't interfere with clicks */
    opacity: 0;           /* Start off fully transparent */
    transition: opacity 0.3s; /* Optional: animate the opacity change */
    white-space: nowrap;  /* Prevent wrapping */
    min-width: 150px;     /* Adjust as needed to prevent wrapping */
  	font-size: 75%;       /* Reduce font size to 75% */
}

/* Show the tooltip on hover */
.live_inventory_locations:hover::after {
    opacity: 1;
}
/* Media query to disable hover effect on likely touch devices */
@media (hover: none) and (pointer: coarse) {
    /* Disable the tooltip altogether */
    .live_inventory_locations::after {
        display: none;
    }
}
/* Trustpilot Review Height Fix */
  .TPReview .trustpilot-widget > iframe[title="Customer reviews powered by Trustpilot"] {
    height: 400px !important;
}
/* Quotes 2.0 */
#salesquote .actions-fixed {
  display: flex;
}
/* Infinite Scroll Row */
.row.gridtools.load-more-infinite-scroll.fixed-bottom {
    display: none; !important
}
/* VAT Toggle White */
label[for="included_vat_130117"] {
    color: white !important;
}

/*MH Test*/
.row.account-message {
    display: none;
}

/* Search box on mobile*/

.headersection-5 {
	display:none;
}
@media only screen and (max-width: 768px) {
	.headersection-5 {
		display:block;
	}
}
@media only screen and (max-width: 770px) {
  .searchisfullwidth {
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 770px) { 
  .header-search {
  display: none;
  }
}
header section.search .search-form .form-group input {
  border-radius: 25px;
  border: 2px solid #ffd504 !important;
}

/* Accordion Menu Styles */
.arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

#myaccordion input:checked + label .arrow {
  transform: rotate(180deg);
}

.hidecontent {
  display: none;
}

#myaccordion label {
  box-shadow: 0 0 20px #d4d4d4;
  display: block;    
  padding: 8px 22px;
  margin: 20px 0 1px 0;
  cursor: pointer;
  background: #ccc;
  color: #000;
  transition: background 0.5s ease;
}

#myaccordion label:hover {
  background: #eeeeee;
}

.content {
  box-shadow: 0 0 20px #d4d4d4;
  background: #fff;
  padding: 10px 25px;
  border: 1px solid #d4d4d4;
  margin: -1px 0 0 0;
  max-height: 0; /* Start with max-height of 0 */
  overflow: hidden; /* Hide overflowing content */
  transition: max-height 0.5s ease-out; /* Smooth transition */
}

#myaccordion input:checked + label + .content {
  max-height: 500px; /* Set a reasonable max-height */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 600px) {
  #myaccordion label {
    padding: 5px 10px;
  }

  #myaccordion .content {
    padding: 5px 15px;
  }
}
/* Accordion Menu Improvements */
#myaccordion label {
    box-shadow: 0 0 20px #d4d4d4;
    display: block;
    padding: 8px 22px;
    margin: 20px 0px 1px 0px;
    cursor: pointer;
    background: #ccc !important;
    color: #000 !important;
    transition: ease .5s;
    border-radius: 5px;
}

#myaccordion label:hover {
    background: #ffd504 !important;
    color: #000 !important;
}
#myaccordion .content {
    box-shadow:0 0 20px #d4d4d4;
    background: #ffff;
    padding: 10px 25px;
    border: 1px solid #d4d4d4;
    margin: -1 0 0 0;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
#myaccordion input:checked + label + .content {
    display: block;
    max-height: 5000px;
}

/* Accordion Menu Responsive Design */
@media screen and (max-width: 600px) {
    #myaccordion label {
        padding: 5px 10px;
    }

    #myaccordion .content {
        padding: 5px 15px;
    }
}

.myaccount .gridtools .actionBar {
  display: flex;
  align-content: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.myaccount .gridtools .actionBar .btn {
  margin-top: 0;
}

.myaccount .actionBar .addaddresssm {
  padding: 0;
  font-size: 0.875em;
  margin: 0;
}

/* Paratus Badge Pop Up Stylings */

.badgedriven-pop .modal-header {
  border-bottom: 0px !important;
  }
.badgedriven-pop .modal-body {
  padding-top: 0px !important;
  max-width: 500px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.badgedriven-pop h2 {
  text-transform: none; 
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}
.badgedriven-pop h3 { 
  text-transform: none;   
  font-weight: 700;  
  color:#207bc1;
  margin-bottom: 20px;
}
.badgedriven-pop p  {
  color: #000 !important;
}
.badgedriven-pop .boldstatement  {
  font-weight: 700;
  margin-top: 30px;
}
.badgedriven-pop ol li  {
  text-align:left;
  margin-bottom: 0px;
  color: #000 !important;  
}
.badgedriven-pop ol li::marker {
  color: #207bc1;
}   
.badgedriven-pop img {
  max-width: 250px;
}

/* CBS Approved Badge */
.ex-product .b590 .ribbon-side, .b590 .ribbon-tips, .ex-category .b590 .ribbon-side, .b590 .ribbon-tips, .ex-searchresult .b590 .ribbon-side, .b590 .ribbon-tips, .ex-searchresult .b590 .ribbon-side, .ex-content-page .b590 .ribbon-side, .b590 .ribbon-tips {
  display: none;
}
.ex-product .b590 .ribbon {
  padding: 55px !important;
  margin-bottom: 15px;
  background-color: transparent !important;
  background-image: url("https://us.evocdn.io/dealer/1324/content/media/CBS-Approved.png");
  background-position: left;
  background-repeat: no-repeat; 
  background-size: contain; 
}
.ex-product .b590 .ribbon span, .ex-category .b590 .ribbon span, .ex-searchresult .b590 .ribbon span, .ex-content-page  .b590 .ribbon span {
  display: none;
}
.ex-product .b590 .ribbon-side {
  border-left: 0px;
}
.ex-category .b590 .ribbon, .ex-searchresult .b590 .ribbon, .ex-content-page .b590 .ribbon {
  margin-left: 5px;
  padding: 45px !important;
  margin-bottom: 15px;
  background-color: transparent !important;
  background-image: url("https://us.evocdn.io/dealer/1324/content/media/CBS-Approved.png");
  background-position: left;
  background-repeat: no-repeat; 
  background-size: contain; 
}
.ex-category .b590 .ribbon-side, .ex-searchresult .b590 .ribbon-side, .ex-content-page .b590 .ribbon-side {
  border-left: 10px;
  border-color: #fff;
}
.owl-item .b590 .ribbon {
display:none;
}
/* CBS Bahamian Made Badge */
.ex-product .b609 .ribbon-side, .b609 .ribbon-tips, .ex-category .b609 .ribbon-side, .b609 .ribbon-tips, .ex-searchresult .b609 .ribbon-side, .b609 .ribbon-tips, .ex-searchresult .b609 .ribbon-side, .ex-content-page .b609 .ribbon-side, .b609 .ribbon-tips {
  display: none;
}
.ex-product .b609 .ribbon {
  padding: 55px !important;
  margin-bottom: 15px;
  background-color: transparent !important;
  background-image: url("https://us.evocdn.io/dealer/1324/content/media/Bahamian-Made.png");
  background-position: left;
  background-repeat: no-repeat; 
  background-size: contain; 
}
.ex-product .b609 .ribbon span, .ex-category .b609 .ribbon span, .ex-searchresult .b609 .ribbon span, .ex-content-page  .b609 .ribbon span {
  display: none;
}
.ex-product .b609 .ribbon-side {
  border-left: 0px;
}
.ex-category .b609 .ribbon, .ex-searchresult .b609 .ribbon, .ex-content-page .b609 .ribbon {
  margin-left: 5px;
  padding: 45px !important;
  margin-bottom: 15px;
  background-color: transparent !important;
  background-image: url("https://us.evocdn.io/dealer/1324/content/media/Bahamian-Made.png");
  background-position: left;
  background-repeat: no-repeat; 
  background-size: contain; 
}
.ex-category .b609 .ribbon-side, .ex-searchresult .b609 .ribbon-side, .ex-content-page .b609 .ribbon-side {
  border-left: 10px;
  border-color: #fff;
}
.owl-item .b609 .ribbon {
display:none;
}

/*MH Inv2.0*/
.productgridwidget .flex-buttons .live-inventory-v2-wrapper .out-stock,
.product-shopping-actions-addtocart .flex-buttons .live-inventory-v2-wrapper .out-stock,
.catalog-single.has-carousel .flex-buttons .live-inventory-v2-wrapper .out-stock {
  display: block !important;
  background: #e84141;
  width: 100% !important;
  padding: 10px 1px;
  border-radius: 5px;
  color: #fff !important;
  font-weight: 400;
  text-transform: capitalize;
}

.productgridwidget .flex-buttons .live-inventory-v2-wrapper .out-stock:hover,
.product-shopping-actions-addtocart .flex-buttons .live-inventory-v2-wrapper .out-stock:hover,
.catalog-single.has-carousel .flex-buttons .live-inventory-v2-wrapper .out-stock:hover {
   background: #ffd504;
}

.product-shopping-actions-addtocart .flex-buttons button[disabled="disabled"],
.productgridwidget .flex-buttons button[disabled="disabled"],
.catalog-single.has-carousel .flex-buttons button[disabled="disabled"]{
  display: none !important;
}

.live-inventory-v2-add-to-cart-wrapper {
  /*gap: 5px 0;*/
}

/* menu */

header .header-full .cd-dropdown-content {
	 width: 1440px;
	 height: 720px !important;
	 display: grid;
	 grid-template-columns: 300px 300px;
	 grid-auto-rows: min-content;
	 background: #f1f6fa;
	 padding: 30px !important;
	 overflow: auto;
}
 @media (max-width: 1469px) {
	 header .header-full .cd-dropdown-content {
		 width: 1170px !important;
	}
}
 @media (max-width: 1366px) {
	 header .header-full .cd-dropdown-content {
		 width: 98vw !important;
	}
}
 @media (max-width: 1100px) {
	 header .header-full .cd-dropdown-content {
		 grid-template-columns: 300px;
	}
}
 header .header-full .cd-dropdown-content .menu-active {
	 background: #fff;
}
 header .header-full .dropdown-is-active .cd-dropdown-content .menu-active .cd-secondary-dropdown {
	 visibility: visible !important;
}
 header .header-full .cd-dropdown-content > li {
	 border-radius: 8px;
	 display: flex;
	 align-items: center;
}
 header .header-full .cd-dropdown-content > li.has-children::before {
	 content: "";
	 width: 16px;
	 height: 16px;
	 background-size: contain;
	 filter: brightness(0) saturate(100%) invert(31%) sepia(76%) saturate(677%) hue-rotate(167deg) brightness(116%) contrast(92%);
	 position: relative;
	 display: inline-block;
	 flex-shrink: 0;
	 margin-left: 15px;
}
 header .header-full .cd-dropdown-content > li.has-children > a {
	 padding-top: 4px;
	 padding-bottom: 4px;
	 padding-left: 15px;
	 width: 100%;
}
 header .header-full .cd-dropdown-content > li.has-children > a::before, header .header-full .cd-dropdown-content > li.has-children > a::after {
	 width: 7px;
	 height: 2px;
	 background: #000;
	 margin-left: auto;
}
 header .header-full .cd-dropdown-content > li.has-children > a::before {
	 top: 23px;
}
 header .header-full .cd-dropdown-content > li.has-children > a::after {
	 top: 19px;
}
 header .header-full .cd-dropdown-content > li:not(.has-children) > a {
	 padding: 0;
	 font-weight: 600;
}
 header .header-full .cd-dropdown-content > li:hover > a {
	 box-shadow: none;
	 font-weight: 400;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown {
	 width: 750px !important;
	 height: 660px !important;
	 display: grid !important;
	 grid-template-columns: repeat(3, 1fr);
	 gap: 10px 15px;
	 overflow: auto;
	 border-radius: 30px;
	 box-shadow: none;
	 position: absolute !important;
	 top: 30px !important;
	 right: 30px !important;
	 left: unset !important;
	 padding: 10px 30px 30px;
	 visibility: hidden !important;
}
 @media (max-width: 1469px) {
	 header .header-full .cd-dropdown-content .cd-secondary-dropdown {
		 width: 500px !important;
		 grid-template-columns: 1fr 1fr;
	}
}
 @media (max-width: 1366px) {
	 header .header-full .cd-dropdown-content .cd-secondary-dropdown {
		 width: calc(97vw - 660px) !important;
	}
}
 @media (max-width: 1100px) {
	 header .header-full .cd-dropdown-content .cd-secondary-dropdown {
		 width: calc(97vw - 360px) !important;
	}
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li {
	 width: 100%;
	 border: 0 !important;
	 padding-left: 0;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li > a {
	 font-weight: 600 !important;
	 color: #252122;
	 font-size: 16px !important;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li.go-back + li {
	 grid-column: 1 / 4;
}
 @media (max-width: 1469px) {
	 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li.go-back + li {
		 grid-column: 1 / 3;
	}
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li.go-back + li a {
	 font-size: 18px !important;
	 font-weight: 700;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li li a {
	 font-size: 14px !important;
	 color: #545454;
	 padding: 0;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li li.menu-see-all {
	 margin-top: 5px;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li li.menu-see-all a {
	 color: #207bc1;
	 font-weight: 700;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li li.menu-see-all a::after {
	 content: "\f054 ";
	 font-family: fontawesome;
	 font-weight: 400;
	 font-size: 12px;
	 padding-left: 10px;
}
 header .header-full .cd-dropdown-content .cd-secondary-dropdown > li li.menu-see-all a:hover {
	 text-decoration: underline;
}
 header .header-full .cd-dropdown-content .menu-top-brands {
	 margin-top: 20px;
	 grid-column: 1 / 3;
}
 @media (max-width: 1100px) {
	 header .header-full .cd-dropdown-content .menu-top-brands {
		 grid-column: 1 / 2;
	}
}
 header .header-full .cd-dropdown-content .menu-top-brands h3 {
	 display: block;
	 color: #252122;
	 font-size: 18px;
	 background: 0;
	 padding: 0;
	 border: 0;
	 margin: 0 0 20px;
	 font-weight: 700;
}
 header .header-full .cd-dropdown-content .menu-top-brands-inner {
	 display: flex;
	 flex-wrap: wrap;
	 gap: 15px;
}
 header .header-full .cd-dropdown-content .menu-top-brand {
	 width: calc(25% - 12px);
	 min-height: 85px;
	 background: #fff;
	 border-radius: 20px;
	 padding: 10px 25px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border: 2px solid #fff;
	 transition: 0.3s border;
}
 header .header-full .cd-dropdown-content .menu-top-brand:hover {
	 border-color: #207bc1;
}
 @media (max-width: 1100px) {
	 header .header-full .cd-dropdown-content .menu-top-brand {
		 width: calc(55% - 24px);
	}
}
 .nav-icon-appliances::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-appliances.svg");
}
 .nav-icon-automotive::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-automotive.svg");
}
 .nav-icon-bath::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-bath.svg");
}
 .nav-icon-blinds::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-blinds.svg");
}
 .nav-icon-building::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-building.svg");
}
 .nav-icon-cleaning::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-cleaning.svg");
}
 .nav-icon-electrical::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-electrical.svg");
}
 .nav-icon-flooring::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-flooring.svg");
}
 .nav-icon-hardware::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-hardware.svg");
}
 .nav-icon-kitchen::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-kitchen.svg");
}
 .nav-icon-lawn::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-lawn.svg");
}
 .nav-icon-lighting::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-lighting.svg");
}
 .nav-icon-outdoor::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-outdoor.svg");
}
 .nav-icon-paint::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-paint.svg");
}
 .nav-icon-plumbing::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-plumbing.svg");
}
 .nav-icon-storage::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-storage.svg");
}
 .nav-icon-tools::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-tools.svg");
}
 .nav-icon-windows::before {
	 background-image: url("https://us.evocdn.io/dealer/1324/content/media/My_Theme/icons/icon-windows.svg");
}
 

/* end menu */

.fa-brands::before {
  font-family: FontAwesome;
}

.shopping-cart .cart-resume {
  max-width: 340px;
}

@media (max-width: 1200px) {
  .shopping-cart .cart-resume {
    float: none;
  }
}

.promotion_discount {
  position: relative;
  isolation: isolate;
}

.promotion_discount .row > img {

}

.promotion_discount .row > img {
  display: block;
  position: relative;
  top: -60px;
  margin-bottom: -60px;
  z-index: -1;
}

.mobile .promotion_discount {
 margin-top: 20px; 
}

/* ===== MH Thank You page stiling ===== */
#thankYou .hero-banner-grid-sp {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 3fr);
  gap: 20px;
}

#thankYou .banner-grid__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#thankYou .banner-grid__inner {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

#thankYou .banner-grid__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.25) 100%
  );
  pointer-events: none;
}

#thankYou .banner-grid__inner:hover::after {
  opacity: 1;
}

#thankYou .gr-s {
  grid-column: span 3;
  grid-row: span 1;
}
#thankYou .gr-l {
  grid-column: span 6;
  grid-row: span 2;
}

#thankYou .gr-w {
  grid-column: span 6;
  grid-row: span 1;
}

@media (min-width: 1200px) {
  #thankYou .container {
    width: 100%;
  }
}

@media only screen and (max-width: 517px) {
  #thankYou .gr-l {
    grid-column: span 8;
  }
  #thankYou .hero-banner-grid-sp {
    grid-template-rows: repeat(4, auto);
  }
  #thankYou .gr-s {
    grid-column: span 4;
    grid-row: span 1;
  }
  #thankYou .gr-w {
    grid-column: span 8;
  }
  #thankYou .gr-w:last-of-type {
    grid-column: 1/9;
    grid-row: 3/4;
  }
}
/* ===== End ===== */

/* ===== MH Popout gift reminder ===== */
.gift-reminder {
  width: max-content;
  text-align: center;
  background-color: var(--theme-primary);
  padding: 5px 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  top: 120px;
  right: 30px;
  font-size: 0.95rem;
  position: fixed;
  z-index: 1000;
  opacity: 1;
  transition: all 0.35s ease;
  border: 1px solid #808080;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.13), 0 24px 46px rgba(0, 0, 0, 0.2);
  visibility: visible;
}

.gift-reminder span::selection{
    background-color: #000;
}

.gift-reminder p {
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
  color: #000;
}

.gift-reminder.inactive {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .gift-reminder {
    top: 30px;
    right:50%;
    transform: translateX(50%);
    padding: 10px 15px;
    width: min(90vw,400px);
  }
}
/* ===== End ===== */

/* ===== MH variant product styling *SKU-MOJO* ===== */
.ex-sku-mojo {
  .variantproducts_container .gridcontent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1em;
    margin-inline: 1em;
  }

  .variant-products-wrapper .table-wrapper {
    display: none;
  }

  .variantproducts_container .product .variant-product-image img {
    object-fit: contain;
    object-position: center;
    height: 100%;
    mix-blend-mode: darken;
  }

  .variantproducts_container .gridcontent::before {
    display: none;
  }

  .variantproducts_container .gridcontent .mask {
    position: absolute;
  }

  .variantproducts_container .gridcontent > .product {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: solid 1px #e8e8e8;
    padding: 1em;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
  }

  .variantproducts_container .gridcontent > .product > * + * {
    margin-top: 1em;
  }

  .variantproducts_container .gridcontent > .product > .variant-product-image {
    order: 1;
    position: relative;
    padding: 1em;
    height: 250px;
    background-color: #fff;
  }

  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-description {
    order: 2;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    padding-top: 10px;
    flex: 1;
  }

  .variantproducts_container .gridcontent > .product > .variant-product-sku {
    font-size: 0.85rem;
    font-weight: 700;
    background-color: var(--theme-lightgrey);
    padding: 0.35em 0.45em;
    border-radius: 5px;
    color: white;
    order: 3;
  }

  .variantproducts_container .gridcontent > .product > .variant-product-price {
    order: 4;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
  }

  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-price
    > * {
    padding: 0;
    margin: 0;
  }

  .variantproducts_container .gridcontent > .product > .variant-product-qty {
    order: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-qty:has(.quoteme-wrapper) {
    flex-direction: column;
    gap: 5px;
  }

  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-price
    .footer-wrapper-price {
    background-color: var(--theme-primary);
    padding: 0.3em 0.5em;
    border-radius: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
  }

  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-options {
    display: none;
  }

  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-image
    .divquickview {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
  }

  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-sku::before {
    content: "Item SKU:";
  }

  .variantproducts_container
    .gridcontent
    > .product
    > .variant-product-qty
    > * {
    width: auto;
    padding: 0;
    margin: 0;
  }
  .variantproducts_container button {
    display: revert!important;
  }

  @media only screen and (max-width: 1267px) {
    .variantproducts_container .gridcontent {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media only screen and (max-width: 1100px) {
    .variantproducts_container .gridcontent {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media only screen and (max-width: 860px) {
    .variantproducts_container .gridcontent {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media only screen and (max-width: 500px) {
    .variantproducts_container .gridcontent {
      grid-template-columns: 1fr;
    }
  }
}
/* ===== End ===== */

/* ===== MH delivery indicator styling ===== 
.productaddtocart_container .sp-flex {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.productaddtocart_container .sp-flex h3,
.productaddtocart_container .sp-flex span {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
  text-wrap: wrap;
}

.productaddtocart_container .sp-flex span {
  font-size: 0.65rem;
}
.productaddtocart_container .sp-flex .in-stock {
  --stock-color: #3db54a;
  position: relative;
}

.productaddtocart_container .sp-flex .in-stock::before {
  content: "";
  background-color: var(--stock-color);
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.productaddtocart_container .sp-flex .out-of-stock {
  --stock-color: #e54842;
}
.productaddtocart_container .sp-flex > * {
  border: 2px solid var(--stock-color);
  padding: 5px;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.productaddtocart_container .sp-flex img {
  max-width: 100%;
  width: 70%;
  margin-top: auto;
}
/* ===== End ===== */

/* ===== MH Special Order badge styling ===== */
.ex-product .b1168 .ribbon span,
.ex-category .b1168 .ribbon span,
.ex-searchresult .b1168 .ribbon span,
.ex-content-page .b1168 .ribbon span {
  display: none;
}

.ex-product .b1168 .ribbon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  background-color: transparent !important;
  background-image: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/CBS-special-order-badge-v3.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.tileparent .b1168 .ribbon {
  width: 75px;
  height: 75px;
  background-color: transparent !important;
  background-image: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/CBS-special-order-badge-v3.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.ex-product .b1168 .ribbon-side,
.b1168 .ribbon-tips,
.ex-category .b1168 .ribbon-side,
.b1168 .ribbon-tips,
.ex-searchresult .b1168 .ribbon-side,
.b1168 .ribbon-tips,
.ex-searchresult .b1168 .ribbon-side,
.ex-content-page .b1168 .ribbon-side,
.b1168 .ribbon-tips {
  display: none;
}

#cbsSpecialOrderLabel {
  text-align: center;
  font-weight: 700;
}
/* ===== End ===== */

/* ===== MH delivery/collection visualisation ===== */
.delivery-option.unavailable {
  --bg-icon-cd: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/icons/delivery-unavailable.png");
  --text-cd: #f5333f;
}
.delivery-option.available {
  --bg-icon-cd: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/icons/delivery-available.png");
  --text-cd: #219653;
}
.collection-option.unavailable {
  --bg-icon-cd: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/icons/collection-unavailable.png");
  --text-cd: #f5333f;
}
.collection-option.available {
  --bg-icon-cd: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/icons/collection-available.png");
  --text-cd: #219653;
}
.special-option.unavailable {
  --bg-icon-cd: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/icons/special-order-unavaliable.png");
  --text-cd: #f5333f;
}
.special-option.available {
  --bg-icon-cd: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/icons/special-order-avaliable.png");
  --text-cd: #219653;
}

.cd-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.cd-wrapper {
  border: 2px #ccc solid;
  border-radius: 10px;
  position: relative;
  padding: 10px 5px;
  margin-bottom: 20px;
  order: 2;
}

.cd-wrapper h3 {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  background: #eee;
  padding: 0 7px;
  width: max-content;
  font-size: 1.1rem;
  font-weight: 500;
}

.cd-options {
  display: flex;
  gap: 5px;
}

.cd-tile {
  width: 50%;
  min-height: 100px;
  height: auto;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--bg-icon-cd);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 7px;
  border: 1px solid var(--text-cd);
  cursor: pointer;
}
.special-option {
  width: 100%;
}

.cd-tile p {
  --margin-top-cd: 60px;
  margin: 0;
  margin-top: var(--margin-top-cd);
  color: var(--text-cd);
  line-height: 1.2;
  font-size: 0.9rem;
  font-weight: 700;
  text-wrap: wrap;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 5px 5px;
  pointer-events: none;
}

.unavailable {
  background-color: #f8d1d4;
}
.available {
  background-color: #c5f3d9;
}
.special-order {
  order: 3;
}
.default-branch {
  border-color: black;
  order: 1;
}
.default-branch::after {
  content: "";
  background: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/icons/current-branch-v2.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -20px;
  right: -10px;
}
.tileparent .buttons.group {
  height: auto!important;
}
.tileparent .delivery-collection {
    margin-top: 20px;
}
@media only screen and (max-width: 1200px) {
  .cd-options {
    flex-direction: column;
  }
  .cd-tile {
    width: 100%;
    min-height: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .cd-options {
    flex-direction: row;
  }
  .cd-tile {
    width: 50%;
    min-height: 100px;
  }
  .special-option {
    width: 100%;
  }
}
.lastviewedproducts_container .cd-wrapper,
.gridlist-grid .cd-wrapper,
.gridlist-list .cd-wrapper{
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    margin-bottom: 15px;
}
.lastviewedproducts_container .cd-options,
.gridlist-grid .cd-options,
.gridlist-list .cd-options{
    flex-direction: column;
    width: 100%;
}
.lastviewedproducts_container .cd-tile,
.gridlist-grid .cd-tile,
.gridlist-list .cd-tile{
    width: 100%;
    min-height: auto;
    background-position-x: 5px;
    background-position-y: center;
    background-size: 23px;
    padding: 5px 5px 5px 25px;
}
.lastviewedproducts_container .cd-tile.special-option-only,
.gridlist-grid .cd-tile.special-option-only,
.gridlist-list .cd-tile.special-option-only{
    background-size: 30px;
    padding-left: 33px;
}
.lastviewedproducts_container .cd-tile p,
.gridlist-grid .cd-tile p,
.gridlist-list .cd-tile p{
    margin: 12px 0 12px 12px;
    margin: 0;
    padding: 0;
}
.lastviewedproducts_container .cd-tile.delivery-option,
.gridlist-grid .cd-tile.delivery-option,
.gridlist-list .cd-tile.delivery-option{
    display: none;
}
/* ===== End ===== */
/* ===== MH Can't find you're looking for dialog styling ===== */
.cant-find-wrapper {
  position: fixed;
  left: 0;
  top: 50%;
  transform-origin: left top;
  transform: rotate(-90deg) translateX(-50%) translateY(-35px);
  background-color: var(--theme-primary, #ffd504);
  z-index: 100;
  padding: 5px 20px;
  transition: transform 0.4s;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.cant-find-wrapper::before,
.cant-find-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
.cant-find-wrapper::before{
  left: 10%;
  background: linear-gradient(107deg,rgba(238, 28, 37, 0) 0%, rgba(250, 250, 250, 0.5) 100%);;
  transform: skew(-30deg)
}
  .cant-find-wrapper::after{
  left: -80%;
  background: linear-gradient(90deg, rgba(238, 28, 37, 0) 0%, rgba(250, 250, 250, 0.4) 100%) ;
  transform: skew(30deg)
}
.cant-find-wrapper:hover{
  transform: rotate(-90deg) translateX(-50%) translateY(0);
}
.cant-find-wrapper p {
  margin: 0;
  text-align: center;
}
.cant-find-wrapper p:last-of-type {
  font-weight: 700;
  font-size: 1.1rem;
}
.cant-find-wrapper a {
  color: black;
  position: relative;
   z-index: 2;
}
#cant-find-contact .modal-body > div {
  margin-top: 1em;
}
#cant-find-contact h3 {
    font-weight: 700;
    text-align: center;
    padding-block: 10px;
    background: url("https://us.evocdn.io/dealer/1324/content/media/MH Folder/CBS-special-order-badge-v3-tile.png");
    background-size: 45px;
    background-position-x: 15px;
    background-position-y: center; 
    background-repeat: no-repeat; 
}
@media only screen and (max-width: 600px){
  #cant-find-contact h3{
    padding-inline: 60px;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }
}
@media only screen and (max-width: 500px){
.cant-find-wrapper {
  padding: 3px 7px;
  transform: rotate(-90deg) translateX(-50%) translateY(-20px);
}

.cant-find-wrapper a p:first-of-type{
  font-size: 0.6rem;
}
  .cant-find-wrapper a p:last-of-type{
  font-size: 0.8rem;
}
}
@media only screen and (max-width: 400px){
  #cant-find-contact h3{
    padding-inline: 15px 30px;
    background: none;
  }
}
/* ===== End ===== */

/*===== 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 ===== */
.message-stock-wrapper {
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}
.message-stock-wrapper p {
       line-height: 1.3;
    margin: 0;
}
.message-stock-wrapper i::before{
  font-family: FontAwesome;
  content: "\f05a";
  display: inline-block;
  font-size: 1.2em;
  font-style: normal;
  margin-right: 8px;
  vertical-align: middle;
}