.accordion {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 2px solid #F2F2F2;
  border-radius: 10px;
  padding: 20px 20px 12px;
}

.accordion .title {
  display: flex;
  width: 100%;
}

.accordion .title h3 {
  display: flex;
  margin-left: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.accordion .title h3 a {
  margin-left: 15px;
}

.accordion .title svg {
  cursor: pointer;
  display: flex;
  transform: rotate(0deg);
  transition: transform 0.1s linear;
}

.accordion .title svg.active {
  transform: rotate(90deg);
  transition: transform 0.1s linear;
}

.accordion .title ~ * {
  display: none;
}

.accordion article {
  margin-top: 30px;
}

.accordion article header {
  display: flex;
  align-items: center;
}

.accordion article header p {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
}

.accordion article header span {
  margin-right: 10px;
}

.accordion article header button {
  background-color: transparent;
  border: transparent;
  margin-left: auto;
}

.accordion article header button:hover {
  background-color: transparent;
}

.accordion article header.bottom {
  padding-bottom: 15px;
}

.accordion article header + .content {
  display: none;
}

.accordion article ul {
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 0;
  list-style: none;
  padding: 20px 20px 0;
}

.accordion article ul li:before {
  content: "-";
  text-indent: -1.5em;
  display: inline-block;
}

.accordion article ul.expand {
  display: block;
  border-top: 2px solid #f2f2f2;
  -webkit-animation: expand 0.1s;
          animation: expand 0.1s;
}

.accordion article.expand {
  display: block;
  -webkit-animation: expand 0.1s;
          animation: expand 0.1s;
}

.accordion article:not(:last-of-type) {
  padding-bottom: 15px;
  border-bottom: 2px solid #f2f2f2;
}

@-webkit-keyframes expand {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes expand {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


