.page-title {
  font-size: 164%;
  font-weight: bold;
}
.product {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 16px;
  overflow: auto;
  padding: 5px;
}
.product .title {
  float: left;
  font-size: 110%;
  font-weight: bold;
  margin: 3px;
}
.product .homepage {
  color: blue;
  float: right;
  margin: 3px;
  text-align: right;
}
.product .homepage::before {
  content: " - ";
}
.product .show {
  color: blue;
  float: right;
  margin: 3px;
  text-align: right;
  text-decoration: underline;
}
.licence {
  background-color: #e8eef7;
  border-radius: 3px;
  clear: both;
  padding: 16px;
}
.licence h3 {
  margin-top: 0;
}
.licence pre {
  white-space: pre-wrap;
}
.dialog #print-link,
.dialog .homepage {
  display: none;
}
input + label + div {
  display: none;
}
input + label::after {
  content: "show license";
  cursor: pointer;
}
input:checked + label + div {
  display: block;
}
input:checked + label::after {
  content: "hide license";
  cursor: pointer;
}