.faqblock {
  margin: 1rem 0;
  padding-left: 10%;
  padding-right: 10%;
}

@media (max-width: 767.98px) {
  .faqblock {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.faqblock__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faqblock__item {
  border: 1px solid #eeeeee;
  border-radius: 5px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faqblock__item summary {
  display: block;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  padding: 0.85rem 2.6rem 0.85rem 1rem;
  list-style: none;
  background: #f5f5f5;
  border-bottom: 1px solid #dedede;
  position: relative;
}

.faqblock__item summary h3 {
  margin: 0;
  font: inherit;
  color: inherit;
}

.faqblock__item summary:hover {
  background: #eaeaea;
}

.faqblock__item summary::after {
  content: "+";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  line-height: 1;
  color: #449944;
  font-weight: 700;
}

.faqblock__item[open] summary::after {
  content: "-";
}

.faqblock__item summary::-webkit-details-marker {
  display: none;
}

.faqblock__body {
  display: block;
  padding: 0.9rem 1rem 1rem;
  border-top: 0;
  background: #fff;
  color: #222;
}

.faqblock__body > *:first-child {
  margin-top: 0;
}

.faqblock__body > *:last-child {
  margin-bottom: 0;
}