.accordion {
  width: 100%;
  color: #315470;
  border-top: solid 1px #d5d5d5;
  border-bottom: solid 1px #d5d5d5;
  overflow: hidden;
  margin-bottom: -1px;
}

.accordion__toggle {
  display: none;
}

.accordion__label {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px;
  margin: 0;
  cursor: pointer;
  -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
}

.accordion__label::after {
  font-weight: 400;
  font-family: "Material Icons";
  content: '\e145';
  width: 25px;
  text-align: center;
}

.accordion__label:hover {
  background: #f0f5f6;
}

.accordion__content {
  color: #555;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}

.accordion__content .accordion__inner-content {
  padding: 25px 20px;
  line-height: 24px;
}

.accordion input:checked ~ .accordion__content {
  max-height: 2000px;
}

.accordion input:checked + label::after {
  content: '\e15b';
}

.accordion input:checked + label {
  background: #f0f5f6;
}
/*# sourceMappingURL=Accordion.css.map */