.node__content .field--label-above {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
}

.node__content .field__label {
  cursor: pointer;
  padding: 12px;
  border-radius: 8px 8px 0 0;
  background: #f5f5f5;
  font-weight: bold;
  transition: 0.3s;
}

.node__content .field__label:hover {
  background: #eaeaea;
}

.node__content .field__item {
	overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 12px;
}

.node__content .field.closed .field__item {
  max-height: 0;
  padding: 12px;
}

.field__label::after {
  content: "−";
  float: right;
}

.field.closed .field__label::after {
  content: "+";
}

.field__label {
	font-size: 22px;
	font-family: 'Roboto Condensed', Arial Narrow, Arial, Sans-serif;
}