h4 {
  margin-top: 0;
}
.compulsory:after {
  top: -2px;
  left: 2px;
  color: red;
  content: '*';
  font-size: 0.8em;
  position: relative;
}
.bold {
  font-weight: bold;
}
menu {
  margin: 0;
  padding: 0;
}
menu span {
  font-weight: bold;
  display: inline-block;
}
.form * {
  box-sizing: border-box;
}
.form > div {
  padding: 10px;
  position: static;
  margin-bottom: 20px;
  background-color: #fff;
  border: solid 1px #CCCCCC;
}
.form > div:hover {
  border-color: #999999;
  background-color: #f2f2f2;
}
.form .panel {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .form .panel {
    flex-direction: column;
  }
}
.form .panel > * {
  flex: 1 0 50%;
}
.form .panel div:last-child {
  padding: 10px;
  font-size: 0.8em;
}
.form .panel div:last-child p {
  margin: 0;
}
.form .panel .option {
  width: 100%;
  padding: 5px;
  color: #999999;
  display: block;
  cursor: pointer;
  font-weight: bold;
  font-size: smaller;
  border: 1px solid white;
  background-color: #FFFFFF;
}
.form .panel .option:hover {
  color: #333333;
  background-color: #f2f2f2;
}
.form .panel .option.selected {
  color: #fff;
  background-color: #FF9900;
}
.form .panel label {
  display: block;
  position: relative;
}
.form .panel label:not(:last-child) {
  padding-bottom: 10px;
}
.form .panel label > span:first-child {
  display: block;
  padding-bottom: 5px;
}
.form .panel label > span:first-child.with-hint {
  cursor: pointer;
}
.form .panel label > span:first-child .icon {
  vertical-align: top;
  display: inline-block;
}
.form .panel label aside {
  padding-top: 5px;
}
.form .panel label input,
.form .panel label textarea,
.form .panel label select {
  width: 100%;
}
.form .panel label small {
  bottom: 0;
  opacity: 0;
  z-index: 1;
  color: white;
  display: block;
  font-size: 1em;
  padding: 5px 15px;
  font-weight: bold;
  position: absolute;
  border-radius: 6px;
  pointer-events: none;
  transition: opacity 0.25s;
  border: 1px solid darkred;
  transform: translateY(100%);
  background-color: rgba(255, 153, 0, 0.8);
}
.form .panel label small.shown {
  opacity: 1;
}
button {
  color: white;
  border: none;
  display: block;
  cursor: pointer;
  font-size: 1.1em;
  margin: 30px auto;
  font-weight: bold;
  padding: 10px 20px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  background-color: #FF9900;
}
button:hover {
  background-color: #995c00;
}
button:disabled {
  cursor: not-allowed;
  background-color: lightgrey;
}
input,
textarea {
  padding: 2px;
  color: #FF6600;
  line-height: 130%;
  border: dotted 1px #FF9900;
  font-family: Arial, Helvetica, sans-serif;
}
.orange {
  color: #FF9900;
}
.wrong-captcha {
  padding: 20px;
  color: #FF9900;
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
ol {
  padding-left: 25px;
}
.progress {
  display: flex;
  position: relative;
  padding: 10px 20px 20px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .progress {
    padding: 10px 0 20px;
  }
}
.progress:before {
  left: 25px;
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  width: calc(100% - 50px);
  border-bottom: 6px solid lightgrey;
}
.progress div {
  z-index: 1;
  color: white;
  width: 50px;
  height: 50px;
  padding: 10px 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: bold;
  text-align: center;
  border-radius: 100%;
  border: 4px solid white;
  background-color: lightgrey;
}
.progress div.complete {
  background-color: #FF9900;
}
.progress div.complete:last-child {
  background-color: green;
}
.consent {
  cursor: pointer;
  position: relative;
  padding-left: 27px;
}
.consent:before,
.consent:after {
  content: '';
  position: absolute;
  border-radius: 0;
}
.consent:before {
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 1px solid grey;
}
.consent:after {
  left: 4px;
  opacity: 0;
  top: 5px;
  transform: scale(4);
  width: 12px;
  height: 12px;
  background-color: #FF9900;
  transition: opacity 0.2s, transform 0.2s;
}
.consent.selected:after {
  opacity: 1;
  transform: scale(1);
}
.radio {
  cursor: pointer;
  position: relative;
  padding-left: 27px;
}
.radio:before,
.radio:after {
  content: '';
  position: absolute;
  border-radius: 100%;
}
.radio:before {
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid grey;
}
.radio:after {
  left: 4px;
  opacity: 0;
  top: 4px;
  transform: scale(4);
  width: 12px;
  height: 12px;
  background-color: #FF9900;
  transition: opacity 0.2s, transform 0.2s;
}
.radio.selected:after {
  opacity: 1;
  transform: scale(1);
}
.non-consensual {
  line-height: 1.7;
}
.non-consensual .center {
  text-align: center;
}
.non-consensual h5 {
  font-size: 0.9em;
  margin-bottom: 0;
  text-align: center;
}
.non-consensual button {
  margin: 15px;
  font-size: 12px;
  line-height: 1.7;
  text-transform: none;
  display: inline-block;
}
.non-consensual button.deselected:not(:hover) {
  background-color: lightgray;
}
.non-consensual .stack {
  padding-top: 10px;
}
.non-consensual .stack button {
  width: 100%;
  display: block;
  margin: 0 0 1px;
}
.non-consensual small {
  display: block;
  font-size: 0.9em;
  padding-top: 5px;
  font-weight: normal;
}
.non-consensual p {
  font-weight: bold;
  text-align: center;
}
.non-consensual p ul {
  text-align: left;
  font-weight: normal;
}
#captcha {
  padding: 10px;
  margin: 10px 0 0;
  text-align: center;
  border-color: #F2F2F2;
  vertical-align: bottom;
  background-color: #F2F2F2;
}
#captcha > div {
  display: flex;
  justify-content: center;
}
#captcha > div div {
  margin: 0 10px;
}
#captcha > div div img {
  margin: 0 auto;
  display: block;
}
#captcha button {
  color: white;
  border: none;
  cursor: pointer;
  margin: 30px 0 0;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 20px;
  letter-spacing: 0.9px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #FF9900;
}
#captcha button:hover {
  background-color: #995c00;
}
#captcha button:disabled {
  cursor: not-allowed;
  background-color: lightgrey;
}
/*# sourceMappingURL=report.css.map */