.accordion {
  margin: 0;
  padding: 0;  
}
.accordion.focus {
  border-color: hsl(216, 94%, 73%);
}
/*.accordion > * + * {
  border-top: 1px solid #ccc;  
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}*/
.accordion > * {
  border-bottom: 1px solid #ccc;  
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.accordion > *:last-child,
.accordion > button:last-of-type:not([aria-expanded="true"]) {
  border-bottom: 1px solid #ccc;
}
.acc-trigger {
  background: none;
  color: hsl(0, 0%, 13%);
  display: block;
  font-size: 1.063rem;
  font-weight: normal;
  margin: 0;
  padding: 10px 12px;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none;
}
@media all and (max-width:576px) {
	.acc-trigger {font-size: 1rem;}
}
.acc-trigger:focus,
.acc-trigger:hover {
  background-color: #eaebef;
  transition: 0.3s;
}
.acc-trigger[href] {
  line-height: 1.15;
}
.accordion *:first-child .acc-trigger {
  border-radius: 5px 5px 0 0;
}
button {
  border-style: none;
}
.accordion button::-moz-focus-inner {
  border: 0;
}
.acc-title {
  display: block;
  pointer-events: none;
  border: transparent 2px solid;
  border-radius: 5px;
  padding: 0.25em;
  padding-right: 1.25em;
  outline: none;
  letter-spacing: -.075em;
}
[aria-haspopup="true"] .acc-icon {
  border: solid hsl(0, 0%, 62%);
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem;
}
.acc-trigger[aria-expanded="true"] {
  background-color: #05367b;
  font-weight: 500;
  color: white;
  border-left: 1px solid #05367b;
  border-right: 1px solid #05367b;
}
.acc-trigger[aria-expanded="true"][aria-haspopup="true"] .acc-icon {
  transform: translateY(-50%) rotate(-135deg);
  border-color: white;
}
.acc-panel {
  margin: 0;  
  background-color: #f2f3f4;
}
/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.acc-panel[hidden] {
  display: none;
}