.icon::after {
  content: "+";
}

#toggle:checked ~ label > .icon::after {
  content: "-";
}

.form-label2 {
  display: flex;
  justify-content: space-between;
  font-size: 32px;
  cursor: pointer;
}

.content {
  transition: max-height 0.25s ease;
  overflow: hidden;
  max-height: 0px;
}

#toggle:checked ~ .content {
  max-height: 1400px;
}

#toggle:checked ~ .content .hidden-row {
  display: flex;
}

#toggle2:checked ~ .content2 {
  max-height: 1400px;
}

.icon2::after {
  content: "+";
}

#toggle2:checked ~ label > .icon2::after {
  content: "-";
}

/* Development class to show hidden rows in Bootstrap Studio */

.show-hidden2 .hidden-row2 {
  display: flex !important;
  max-height: none !important;
  overflow: visible !important;
}

.show-hidden2 .content2 {
  max-height: none !important;
  overflow: visible !important;
}

.content2 {
  transition: max-height 0.25s ease;
  overflow: hidden;
  max-height: 0px;
}

.hidden-rowXX {
  overflow: hidden;
  flex-direction: column;
  width: 100%;
}

