/* Toggles */
.collapsed-archives ul ul {
  margin-left: 2.5em !important;
}

.collapsed-archives button:before {
  content: '+';
  padding-right: 5px;
}

.collapsed-archives-triangles button:before {
  -webkit-font-smoothing: antialiased;
  content: '\f105';
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-rendering: auto;
}

.collapsed-archives button[aria-expanded=true]:before {
  content: '\2212';
}

.collapsed-archives-triangles button[aria-expanded=true]:before {
  content: '\f107';
}

/* Toggled content */

.collapsed-archives button ~ ul {
  display: none;
}

.collapsed-archives button[aria-expanded=true] ~ ul {
  display: block;
}

.collapsed-archives button {
  background: transparent;
  color: #41597C;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.collapsed-archives button:hover,
.collapsed-archives button:focus {
  color: #2f415b;
}