.bottom-menu-custom {
  width: 100%;
}

.bottom-menu-custom__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.bottom-menu-custom__column {
  min-width: 0;
}

.bottom-menu-custom__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bottom-menu-custom__root-link {
  display: inline-block;
  color: var(--dark, #121212);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
}

.bottom-menu-custom__root-link:hover,
.bottom-menu-custom__root-link.active,
.bottom-menu-custom__child-link:hover,
.bottom-menu-custom__child-link.active {
  color: var(--theme-base-color, #66ac4a);
}

.bottom-menu-custom__toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bottom-menu-custom__chevron {
  display: block;
  width: 9px;
  height: 9px;
  margin: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
}

.bottom-menu-custom__children {
  margin-top: 20px;
}

.bottom-menu-custom__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bottom-menu-custom__list-item + .bottom-menu-custom__list-item {
  margin-top: 12px;
}

.bottom-menu-custom__child-link {
  color: var(--light, #666);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: color .15s ease;
}

.bottom-menu-custom .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 991px) {
  .bottom-menu-custom__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bottom-menu-custom__grid {
    display: block;
  }

  .bottom-menu-custom__column {
    border-bottom: 1px solid rgba(128, 128, 128, .2);
  }

  .bottom-menu-custom__heading {
    min-height: 54px;
  }

  .bottom-menu-custom__root-link {
    flex: 1 1 auto;
    padding: 17px 0;
    font-size: 15px;
  }

  .bottom-menu-custom__toggle {
    display: block;
    flex: 0 0 36px;
    color: inherit;
  }

  .bottom-menu-custom__children {
    margin-top: 0;
    padding: 0 0 18px;
  }

  .bottom-menu-custom--js .bottom-menu-custom__children {
    max-height: 0;
    padding-bottom: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding-bottom .3s ease, visibility 0s linear .3s;
  }

  .bottom-menu-custom--js .bottom-menu-custom__column.is-open .bottom-menu-custom__children {
    padding-bottom: 18px;
    visibility: visible;
    opacity: 1;
    transition: max-height .3s ease, opacity .2s ease, padding-bottom .3s ease;
  }

  .bottom-menu-custom__column.is-open .bottom-menu-custom__chevron {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .bottom-menu-custom__list-item + .bottom-menu-custom__list-item {
    margin-top: 0;
  }

  .bottom-menu-custom__child-link {
    display: block;
    padding: 8px 0;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bottom-menu-custom__children,
  .bottom-menu-custom__chevron {
    transition: none !important;
  }
}
.bottom-menu-custom__list-item::before {
    content: none !important;
}