.gt-mobile-sticky-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #2E2F3C;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.12s ease-out, opacity 0.12s ease-out;
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;
}

.gt-mobile-sticky-no-transition {
  transition: none !important;
}

.gt-mobile-sticky-menu--visible {
  transform: translateY(0);
  opacity: 1;
}

.gt-mobile-sticky__nav {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 12px;
}

.gt-mobile-sticky__list {
  display: flex;
  gap: 6px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each item takes equal share of available space (1 item = 100%, 2 items = 50%, 3 items = 33.33%, etc.) */
.gt-mobile-sticky__item {
  flex: 1 1 0;
  max-width: 100%;
  text-align: left;
}

.gt-mobile-sticky__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #fff;
  font-size: 0.7rem;
  padding: 6px 8px;
  width: 100%;
  text-transform: uppercase;
  box-sizing: border-box;
}

/* Icon above text, but aligned to start */
.gt-mobile-sticky__icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

@media (min-width: 800px) {

  /* Hide the mobile sticky container on larger screens */
  .gt-mobile-sticky-menu {
    display: none !important;
  }
}