
/*!**************************************!*\
  !*** ../src/elements/menu/menu.scss ***!
  \**************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.wpce-menu :where(.menu, .sub-menu) {
  list-style: none;
  font-weight: 600;
  display: flex;
  margin: 0;
  padding: 0;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.wpce-menu :where(.menu, .sub-menu):is(.style-vertical > *) {
  flex-direction: column;
  align-items: flex-start;
}
.wpce-menu :where(.menu, .sub-menu):is(.style-horizontal > *) {
  flex-direction: row;
  align-items: first baseline;
  flex-wrap: wrap;
}
:root.no-focus-visible .wpce-menu :where(.menu li > a):focus {
  outline: 2px solid var(--focus-color, var(--primary-color));
  outline-offset: var(--focus-offset, 3px);
}

.wpce-menu :where(.menu li > a):focus:not(:focus-visible) {
  outline: none;
}
.wpce-menu :where(.menu li > a):focus-visible {
  outline: 2px solid var(--focus-color, var(--primary-color));
  outline-offset: var(--focus-offset, 3px);
}
.wpce-menu :where(.menu li:is(.current-menu-item) > a) {
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-underline-offset: 0.15em;
}

/*# sourceMappingURL=css-wpce--menu.css.map*/