/* Match your previous widget overrides, scoped to the plugin accordion container */

.wu-cat-accordion li.wc-layered-nav-term.wu-has-children {
  position: relative;
  display: block;
}
.wc-layered-nav-term {
margin:3px;
}

/* Hide children when collapsed */
.wu-cat-accordion li.wc-layered-nav-term.wu-collapsed > ul {
  display: none;
}

/* Toggle button */
.wu-cat-accordion .wu-toggle {
  display: inline-block;
  margin-right: 8px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid currentColor;
  cursor: pointer;
}
.wu-cat-accordion  .wu-children {
	padding: 6px 0 0 30px;
}
/* Remove theme pseudo arrow-like decorations if any */
.wu-cat-accordion a:after { display:none; opacity:0; }

/* Top-level category links only */
.wu-cat-accordion > ul.wu-root > li.wc-layered-nav-term > a.wu-link {
  font-weight: 600;
}

/* Child links  style */

.wu-cat-accordion ul.wu-children li:hover {
    color: #000;
}

/* Archives styling */
.wu-cat-accordion li.is-archives-category > a.wu-link {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.12);
  width: 100%;
  display: inline-block;
}
/* Keep top-level toggle on the left (default) */
.wu-cat-accordion > ul.wu-root > li > a.wu-toggle {
  float: none;
}

/* Child levels: toggle floats right */
.wu-cat-accordion ul.wu-children > li > a.wu-toggle {
  float: right;
  margin-right: 0;
      margin: 4px 4px 0 0;
}

/* Prevent layout weirdness when float is used */
.wu-cat-accordion ul.wu-children > li {
  overflow: hidden;
}
li:has(> a.wu-toggle):hover > a.wu-toggle,
li:has(> a.wu-toggle):focus-within > a.wu-toggle {
  background-color: #000;
  color: #fff;
  transition: background-color .15s ease, color .15s ease;
}
