.accordion-wrapper {
  margin: 3rem 0 0;
  text-align: left; }
  .accordion-wrapper label {
    font-size: 1.2rem;
    position: relative;
    display: block;
    cursor: pointer;
    background: #f9f9f9;
    padding: 10px 0px 10px 50px;
    border: 1px solid #eee;
    margin: 0;
    /*transition: ease .5s;*/
    }
    .accordion-wrapper label:hover {
      background: #eeeeee;
      color: #444; }
.accordion-wrapper label:before{
  font-family: "Font Awesome 5 Free";
  color: #005095;
  content: "\f078";
  font-size: 20px;
  position: absolute;
  width: 30px;
  height: 20px;
  left: 15px;
  top: 8px;
/*  background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjgzIDE2LjQybDkuMTcgOS4xNyA5LjE3LTkuMTcgMi44MyAyLjgzLTEyIDEyLTEyLTEyeiIvPjxwYXRoIGQ9Ik0wLS43NWg0OHY0OGgtNDh6IiBmaWxsPSJub25lIi8+PC9zdmc+) no-repeat center center;
  transition: ease .5s;*/
}
  .accordion-wrapper input:checked + label:before {
    font-family: "Font Awesome 5 Free";
    color: #005095;
    content: "\f078";
    position: absolute;
    width: 30px;
    font-size: 20px;
    height: 20px;
    left: 5px;
    top: 24px;
    /*transition: ease .5s;*/
/*    background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjgzIDE2LjQybDkuMTcgOS4xNyA5LjE3LTkuMTcgMi44MyAyLjgzLTEyIDEyLTEyLTEyeiIvPjxwYXRoIGQ9Ik0wLS43NWg0OHY0OGgtNDh6IiBmaWxsPSJub25lIi8+PC9zdmc+) no-repeat center center; */
  }
  .accordion-wrapper input:checked + label:before {
    color: #ffffff;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); /*transition: ease .5s;*/}
  .accordion-wrapper input {
    display: none; }
  .accordion-wrapper article {
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    max-height: 0px;
    position: relative;
    transition: max-height 0.3s ease-in-out;
    border: 1px solid #eee;
    border-top: 0;
    padding: 0 15px; transition: ease .5s; }
 .accordion-wrapper input:checked ~ article {
    max-height: inherit; transition: ease .5s; }
  .accordion-wrapper input:checked + label {
    border-bottom: 1px solid #eee;
    color: #ffffff;
    background-color: #005095;
  }
  .accordion-wrapper > div:last-child label, .accordion-wrapper > div:last-child input:checked ~ article {
    border-bottom: 1px solid #eee; }
