.accordion__heading {
  margin: 0; }


  .accordion {
    background-repeat: no-repeat;
    background-image: url("/img/file2.svg");
    background-size: 18px 18px;
    background-position: 2% 50%;
  }

.accordion__trigger {
  background-repeat: no-repeat;
  background-image: url("/img/chevron-down.svg");
  background-size: 18px 18px;
  background-position: 97% 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.5;
  margin: 0.0rem 0;
  width: 100%;
  text-align: left;
  padding: 10px 40px 10px 16px;
  /*font-size: 1rem;*/
  color: #021C51;
  background-color: white;
  border-bottom: 1px solid #E1E4EA;
  display: block;
  text-decoration: none;
  text-transform: none; }

  @@media (min-width: 55em) {
    .accordion__trigger {
      background-size: 18px;
      background-position: 98% 50%; }
  }
  
.accordion__trigger[aria-expanded='true'] {
  content: '';
  background: url("/img/chevron-up.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 97% 50%;
  /*background-color: white;*/
  background-color: #F1F3F8;
  border: 0px;
  }

  @@media (min-width: 55em) {
    .accordion__trigger[aria-expanded='true'] {
      background-size: 18px;
      background-position: 98% 50%; }
  }

.accordion__trigger:hover, .accordion__trigger:focus {
  background-color: #F1F3F8;
  border-top: 1px solid #E1E4EA;
  border-bottom: 1px solid #E1E4EA;
}

.accordion__content {
  display: none;
  padding: 10px 16px;
}

.accordion__content ul {
  list-style-type: disc;
  margin-left: 0;
  padding-left: 40px;
}

.accordion__content ul li span p {
  max-width: 70ch;
}

.accordion__content a {
  text-decoration: underline;
  font-style: italic;
  overflow-wrap: break-word;
  word-break: break-all;
  hyphens: auto; /* Adds hyphens where the word breaks, if supported */
}
