.accordion {
  /* max-width: 22cm; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  /* border-radius: 10px; */
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
  background: #eee;
}

.accordion__label {
  padding: 14px 25px;
}

.accordion__label {
  display: block;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: background 0.1s;
  /* background-color: #dcdcdc; */
}

.accordion__label:hover {
  background: rgb(255, 255, 255, 0.5);
}

.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:%2300000099;" /></svg>');
  background-size: contain;
  transition: transform 0.4s;
}

.accordion__content {
  background: #ffffff;
  /* line-height: 1.15; */
  /* font-size: 0.85em; */
  display: none;
}

.accordion__input {
  display: none;
}

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

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