#product-menu-wrap {
  padding: 6rem 2rem 2rem 2rem;
  border: 10px solid red;
  background: var(--color);
}
.product-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-search {
  color: var(--white);
}
.product-search label {
  color: white;
  margin-right: 0.5rem;
}
#product-search {
  border-radius: 2rem;
  padding: 0.33rem;
  border: none;
  outline: none;
  width: 36ch;
}

.menu {
  display: flex;
}
.menu-item-link {
  margin-left: 0.5rem;
  color: white;
  text-transform: uppercase;
  border: 1px solid hsla(170, 50%, 100%, 0.1);
  padding: 0.5rem 0.8rem;
  cursor: pointer
}
.menu-item-link:hover,
.menu-item-link.active {
  border: 1px solid hsla(170, 50%, 100%, 0.5);
  background: hsla(0,0%,0%,0.2);
}

#downloadBrochure {
  position: absolute;
  top: 570px;
  right: 0px;
  margin: 0;
  width: 100px;
  height: auto;
  border-radius: 8px 0 0 8px;
  padding: 8px 8px;
  box-shadow: 5px 2px 8px rgba(0,0,0,0.3);
  z-index: 49;
  background: var(--brand);
  color: white;
  text-decoration: none;
  transition: background 200ms ease-in-out;
}
#downloadBrochure:hover {
  background: firebrick;
  
}
#downloadBrochure .fa { font-size: 1.6rem; margin-bottom: 0.5rem;}

.sm #downloadBrochure { width: 36px; padding: 8px 8px 0px 8px}
.sm #downloadBrochure p {display: none;}




/* SIDEBAR FORM*/

#slide-right-sidebar {
  --sidebar-width: 449px;
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  grid-template-rows: 100px 1fr;
  position: relative;
}

#product-pdf {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

body[data-sidebar="show"]:not(.sm) #product-pdf {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

#sidebar-form {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
body[data-sidebar="show"]:not(.sm) #sidebar-form.fixed {
  position: fixed;
  top: 78px;
  left: 0px;
  width: var(--sidebar-width);
}



body[data-sidebar="hide"] #sidebar-form-header {
  border-bottom: 0px solid #006935;
  background: rgba(255,255,255,0.0);
}
#sidebar-form-header {
  grid-column: 1 / 2; 
  grid-row: 1 / 2; 
  display: grid;
  grid-template-columns: 80px 1fr;
  z-index: 50;
  align-items: center;
  padding: 8px;
  
  border-bottom: 1px solid #006935;
  background: rgba(255,255,255,0.5);
}
#sidebar-form-header:not(button) {
  grid-column: 2 / 3;
  gap: 8px;
}

#sidebar-form-header button {
  margin: 0;
  width: 100px;
  height: 40px;
  padding: 8px 4px;
  border-radius: 8px;
  position: fixed;
  transition: 150ms linear;
}
#sidebar-form-header button:hover {
  background: firebrick;
  border: 3px solid firebrick;
  color: var(--inv);
}

body.sm #sidebar-form {
  display: none !important;
}

body[data-sidebar="hide"] #sidebar-form-header button {
  border-radius: 0px 8px 8px 0px;
  left: 0px;
  width: 30px;
  height: 120px;
  padding: 8px 4px 8px 0px;
  
}

body[data-sidebar="hide"] #sidebar-form-header p {
  display: none;
}
#sidebar-form-header p {
  font-size: 16px;
  margin: 0;
}
#sidebar-form-header p > a {
  margin: 0;
  color: var(--color);
  background: none;
  padding: 0;
  margin-top: 0rem;
  text-decoration: none;
  opacity: 1;
  box-shadow: none;
}

body[data-sidebar="show"]:not(.sm) #sidebar-form-header button {
  
  margin: 0;
  width: auto;
  height: 32px;
  padding: 4px 8px;
  border-radius: 4px;
  position: relative;
}



body[data-sidebar="hide"] .hbspt-form {
  grid-column: 1 / 2; 
  grid-row: 2 / 3; 
  opacity: 0;
  pointer-events: none;
  
}
body[data-sidebar="show"]:not(.sm) .hbspt-form {
  background: rgba(0, 105, 53, 0.05);
  grid-column: 1 / 2; 
  grid-row: 2 / 3; 
  padding: 1rem;
  opacity: 1;
  pointer-events: all;
  width: var(----sidebar-width);
  overflow-y: scroll;
  height: calc(100vh - 150px);
}