.accordion-container {
  margin-top: 25px;
}



details {
  width: 100%;
}

details + details {
  margin-top: 10px;
}

details p {
  margin-top: -13px;
  margin-bottom: 0px;
  border: 3px solid #d52027;
  padding: 20px 10px 10px 10px;
  border-radius: 0px 0px 10px 10px;
  min-height: 27px;
}

details > summary::-webkit-details-marker {
  display: none;
}

summary {
  position: relative;
  padding: 12px 10px;
  padding-left: 52px;
  border: 3px solid #d52027;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 250ms;
}

summary:hover {
  background-color: #f6f6f6;
}

summary:before {
  content: "⏵";
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #d52027;
  border-radius: 50%;
  color: #fff;
}

details[open] summary {
  background-color: #eee;
  border-radius: 10px 10px 0px 0px;
}

details[open] summary:before {
  content: "⏷";
}
.answer-span{
    padding: 5px 10px;
    border: 3px solid #d52027;
    border-radius: 0px 0px 10px 10px;
    border-top: 0px;
}