input.accordion {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-row {
  display: flex;
  padding-top: 20px;
}
.accordion-row .accordion-col {
  flex: 1;
}
/* Accordion styles */
.accordion-tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
.accordion-tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.accordion-tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  color: #005221;
  background: #AECAD5;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid #90a9b3;
}
.accordion-tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.accordion-tab-content {
  max-height: 0;
  padding: 0 1em;
  color: black;
  background: #efefef;
  transition: all 0.35s;
}
.accordion-tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #AECAD5;
  cursor: pointer;
  border-bottom: 1px solid #90a9b3;
}
.accordion-tab-close:hover {
  background: #AECAD5;
}
input.accordion:checked + .accordion-tab-label {
  background: #AECAD5;
}
input.accordion:checked + .accordion-tab-label::after {
  transform: rotate(90deg);
}
input.accordion:checked ~ .accordion-tab-content {
  max-height: 100%;
  padding: 1em;
}
