/* child-menu-items/src/scss/widget.scss */
.child-menu {
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
}
.child-menu-column {
  flex: auto;
  max-width: 294px;
}
.child-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.child-menu ul > li a,
.child-menu ul > li a:hover {
  font-size: 1rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: 400;
  color: var(--e-global-color-5abb337, #0D0D0D);
}
