body {
  margin: 0;
  padding: 0;
}

.accordion-panel {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.accordion-panel .parent {
  background: #1176d4;
  color: #fff;
  font-weight: bold;
  padding: 1rem 1.25rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.accordion-panel .parent::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 10px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='16' height='16' viewBox='0 0 16 16'><path d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v3h-3a.5.5 0 0 0 0 1h3v3a.5.5 0 0 0 1 0v-3h3a.5.5 0 0 0 0-1h-3v-3z'/></svg>      ");
}

.accordion-panel .parent .mini {
  font-size: 12px;
}

.accordion-panel .parent .mini::before {
  content: "";
  height: 1px;
  width: 30px;
  display: inline-block;
  margin: 3px;
  background-color: white;
}

.accordion-panel .content {
  border: 3px solid #1176d4;
  border-top: 0 solid;
  overflow: hidden;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-height: 0;
  opacity: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.accordion-panel input[type="checkbox"] {
  display: none;
}

.accordion-panel input[type="checkbox"]:checked ~ .parent::after {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7z'/></svg>");
}

.accordion-panel input[type="checkbox"]:checked ~ .content {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  max-height: 100%;
  opacity: 1;
}

.accordion-panel:not(:first-child) {
  margin-top: 1.5rem;
}
/*# sourceMappingURL=style.css.map */