.hero-top-nav-shell {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
}

@media (min-width: 768px) {
  .hero-top-nav-shell {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 20px;
  }
}

a[href],
button,
summary,
[role="button"],
[role="tab"],
[aria-controls],
[aria-expanded],
[data-menu-open],
[data-menu-close],
.accordion-item,
.automation-item,
.sticky-tab,
.highlight-tab,
.finish-button,
.solutions-tag,
.homepad-option,
.interface-toggle button {
  cursor: pointer;
}

button:disabled,
[role="button"][aria-disabled="true"],
[role="tab"][aria-disabled="true"],
[aria-disabled="true"] {
  cursor: not-allowed;
}

/* Sticky nav tabs: animated underline from left to right on hover,
   and persistent underline while the tab is active. */
a.sticky-tab {
  position: relative;
}

a.sticky-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.24s ease;
}

@media (hover: hover) {
  a.sticky-tab:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

a.sticky-tab:focus-visible::after,
a.sticky-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

a.sticky-tab.is-active {
  color: #111;
  font-weight: 600;
  border-bottom-color: transparent;
}

.sticky [data-sticky-ctas] a.sticky-menu-cta {
  transition:
    background-color 180ms ease-in-out,
    color 180ms ease-in-out,
    border-color 180ms ease-in-out,
    box-shadow 180ms ease-in-out;
}

@media (hover: hover) {
  .sticky [data-sticky-ctas] a.sticky-menu-cta-outline:hover {
    background-color: #5e5e5e;
    color: #fff;
    border-color: #5e5e5e;
  }

  .sticky [data-sticky-ctas] a.sticky-menu-cta-solid:hover {
    background-color: transparent;
    color: #5e5e5e;
    box-shadow: inset 0 0 0 2px #5e5e5e;
  }
}

.sticky [data-sticky-ctas] a.sticky-menu-cta:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
