

:root {
	font-size: 14px;
}

details div {
	padding: 10px;
}

details div > * + * {
	margin-top: 10px;
}

details + details {
	margin-top: 10px;
}

summary {
	list-style: none;
}

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

summary {
	border: 1px solid #bdbdbd;
	background-color: #eee;
	padding: .75em 1em;
	cursor: pointer;
	position: relative;
	padding-left: calc(1.75rem + .75rem + .75rem);
}

summary:before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: .75rem;
	content: "▼";
	width: 1.75rem;
	height: 1.75rem;
	background-color: transparent;
	color: #000000;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

details[open] summary {
	background-color: #d8d8d8;
}

details[open] summary:before {
	content: "▲";
}

summary:hover {
	background-color: #d8d8d8;
}

code {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
}