.DOF_accordion {
  background-color: var(--color-main);
  color: white;
  cursor: pointer;
  margin-top: 8px;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  position: relative;
  transition: 0.4s;
  min-height: 50px;
}

.DOF_accordion > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.DOF_accordion[data-color="red"] {
  background-color: #ff6347;
  color: #ffffff;
}

.DOF_accordion[data-color="red"]:after {
  color: #ffffff;
}

.DOF_accordion[data-color="green"] {
  background-color: #70e096;
  color: #444;
}

.DOF_accordion:hover {
  background-color: #eee;
}

.DOF_accordion:after {
  content: '\002B';
  font-weight: bold;
  position: absolute;
  top: 16px;
  right: 10px;
}

.active:after {
  content: "\2212";
}

.DOF_panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}