.wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin: 1%;
}
.xpandable-block {
	width: 98%;
  height: 55px;
  overflow: hidden;
  order: 0;
}
.xpand-button {
  order: 1;
}
input[type="checkbox"] {
 display: none;
}
input[type="checkbox"]:checked + .xpandable-block {
  height: auto;
}
label {
  order: 1;
  color: #87060C;
  text-decoration: underline;
  font-size: 100%;
  font-weight: 100;
  cursor: pointer;
}