:root {
  --color-main: #3c87da;
}
label {
  display: block;
  margin: 0.5rem 0;
}
label.is-hidden {
  display: none;
}
input,
select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
}
h1 {
  margin: 0;
  font-size: 2rem;
}
h2 {
  margin: 1rem 0 0.5rem 0;
  font-size: 1.2rem;
}
h2.small {
  font-size: 1.1rem;
}
p {
  margin: 0.5rem 0;
}
dl {
  margin: 0;
}
dl dd {
  margin-left: 1rem;
  margin-bottom: 0.25em;
}
.fieldset,
fieldset {
  --border-width: 2px;
  --padding: 10px;
  --color: var(--color-main);
  position: relative;
  margin: 5px 0;
  padding: var(--padding);
  background-color: white;
  border: var(--border-width) solid var(--color);
}
.fieldset.is-hidden,
fieldset.is-hidden {
  display: none;
}
.fieldset[data-status="is-allowed"],
fieldset[data-status="is-allowed"] {
  --color: green;
}
.fieldset[data-status="is-not-allowed"],
fieldset[data-status="is-not-allowed"] {
  --color: #cc0000;
}
.fieldset[data-status="unknown"],
fieldset[data-status="unknown"] {
  --color: grey;
}
.fieldset .legend,
fieldset .legend,
.fieldset legend,
fieldset legend {
  display: flex;
  top: 0;
  margin: 0 0 0 calc(-1 * (var(--padding) + var(--border-width)));
  padding: 0 0.5rem;
  color: white;
  background-color: var(--color);
  width: calc(100% + (2 * var(--padding)) + (2 * var(--border-width)) - 2 * 0.5rem);
  line-height: 2;
  font-size: 1.2rem;
}
.fieldset .legend button,
fieldset .legend button,
.fieldset legend button,
fieldset legend button {
  margin: auto 0 auto auto;
}
.fieldset .legend,
fieldset .legend {
  margin-top: calc(-1 * (var(--padding) + var(--border-width)));
  margin-bottom: var(--padding);
}
.result-container .allowed {
  font-size: 2.5rem;
  font-weight: bold;
}
.result-container .limitation {
  margin: 0.75rem 0;
  color: #cc0000;
}
.result-container .speed-limits,
.result-container .license {
  margin: 0.75rem 0;
}
.result-container .speed-limits .title,
.result-container .license .title {
  font-weight: bold;
}
.result-container .speed-limits .value,
.result-container .license .value {
  font-size: 1.3rem;
}
.result-container .speed-limits .value-hint,
.result-container .license .value-hint,
.result-container .speed-limits .title-hint,
.result-container .license .title-hint {
  font-size: 0.85rem;
  line-height: 1;
}
.result-container .speed-limits .entry,
.result-container .license .entry {
  margin-bottom: 0.33rem;
}
.templates-popup {
  display: none;
  padding: 10px;
  overflow: scroll;
  background: #fff;
  border: 1px solid grey;
}
.templates-popup.is-visible {
  display: block;
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.templates-popup button.template {
  box-sizing: border-box;
  display: block;
  margin: 10px 0;
  padding: 5px 15px;
  width: 100%;
}
.templates-popup button.template.close {
  margin-top: 20px;
}
/*# sourceMappingURL=content.css.map */