@charset "utf-8";
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-size: 14px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
details {
	background-color: black;
	color: white;
	font-weight: bold !important;
	cursor: pointer;
	margin-bottom: 5px;
}
details div {
	padding-left: 10px;
	padding: 5px;
	transition-duration: 0.5s;
	background-color: #323232;
}
details a {
	text-decoration: none;
	color: white;
	font-weight: normal !important;
}
details div:hover {
	background-color: #4F4F4F;
	transition-duration: 0.5s;
	cursor: pointer;
}
summary {
	padding: 5px;
}