.accordion {
  max-width: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
  background: #009578;
  background: rgba(235, 235, 235, 235);
}

.accordion__label,
.accordion__content {
  width: 100%;
  padding: 14px 20px 5px;
}

.accordion__label {
  display: block;
/*  color: #ffffff;*/
  color: #24678d;
  cursor: pointer;
  position: relative;
  transition: background 0.1s;
}

.accordion__label:hover {
  color: #ffffff;
  background: #24678d;
}

.accordion__label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 6px;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 100,0 50,50" style="fill:%23ffffff99;" /></svg>');
  background-size: contain;
  transition: transform 0.4s;
}
.accordion__label path {
  fill: red;
}

.accordion__content {
  background: #ffffff;
  line-height: 1.6;
  font-size: .9em;
  display: none;
  padding-left: 47px;

}

.accordion__input {
  display: none;
  display:none !important
}

.accordion__input:checked ~ .accordion__content {
  display: block;
}

.accordion__input:checked ~ .accordion__label::after {
  transform: translateY(-50%) rotate(0.5turn);
}


