/* Убираем стандартный маркер Chrome */
details summary::-webkit-details-marker {
  display: none
}
/* Убираем стандартный маркер Firefox */
details > summary {
  list-style: none;
}
	

details summary:before {
  content: '🡢';
  margin-right: 7px;
}

details[open] summary:before {
  content: '🡦';
}

	body {
  padding: 3rem 7rem;
width: 100%;
min-width:800px;
max-width: 1200px;
	}