.form-header {
  display: flex;
  align-items: baseline;
}
.form-header > *:first-child {
  flex: 1;
}
.form-header .saving-indicator {
  text-align: right;
  font-style: italic;
  font-size: 0.8rem;
  color: darkgray;
}

.form {
  background: var(--ireina-lightgray);
  padding: 2rem;
}
.form .breadcrumbs {
  display: flex;
  margin-bottom: 3rem;
}
.form .breadcrumbs .breadcrumb {
  display: inline-block;
  flex: 1;
  font-size: 1.1rem;
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.form .breadcrumbs .breadcrumb:after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--ireina-lightgray-darker);
  position: absolute;
  left: 0;
  top: 1.75rem;
  z-index: 0;
}
.form .breadcrumbs .breadcrumb.active:after {
  background: var(--ireina-blue);
}
.form .breadcrumbs .breadcrumb.active .breadcrumb-indicator {
  background: var(--ireina-blue);
  color: white;
}
.form .breadcrumbs .breadcrumb .breadcrumb-indicator {
  background: white;
  color: var(--ireina-blue);
  border: 1px solid var(--ireina-blue);
  height: 3.5rem;
  width: 3.5rem;
  display: inline;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.1s ease-in-out;
}
.form .breadcrumbs .breadcrumb .breadcrumb-indicator:hover {
  background: var(--ireina-secondary);
  color: white;
  transform: translateY(-5px);
}
.form .breadcrumbs .breadcrumb.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.form .breadcrumbs .breadcrumb.disabled .breadcrumb-indicator {
  border-color: gray;
  color: gray;
}
.form .breadcrumbs .breadcrumb.disabled .breadcrumb-indicator:hover {
  background-color: white;
}
.form .section > p {
  margin-bottom: 1rem;
}
.form .question-wrapper {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
  gap: 1rem;
  position: relative;
}
.form .question-wrapper.masked :after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: green;
}
.form .question-wrapper .mud-radio .mud-radio-content {
  font-weight: bold;
}
.form .question-wrapper .checkbox {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: baseline;
  font-weight: bold;
  font-size: 0.9rem;
  gap: 0.3rem;
  margin-top: 0.5rem;
  cursor: pointer;
}
.form .question-wrapper .checkbox label {
  cursor: pointer;
}
.form .question-wrapper .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.form .question-wrapper .checkbox-wrapper.disabled label {
  pointer-events: none;
  color: gray;
}
.form .question-wrapper .checkbox-wrapper.disabled input[type=checkbox] {
  pointer-events: none;
}
.form .question-wrapper .question-guidance {
  color: var(--ireina-blue);
  padding-top: 0.5rem;
  display: flex;
  gap: 1rem;
  width: 1.2rem;
}
.form .question-wrapper .question-guidance i {
  font-size: 1.1rem;
  cursor: pointer;
}
.form .question-wrapper .question-guidance .guidance-icon {
  background: var(--ireina-blue);
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.form .question-wrapper .question-label {
  flex: 1;
  padding-top: 0.5rem;
  padding-right: 2rem;
}
.form .question-wrapper .question-label .question, .form .question-wrapper .question-label .description, .form .question-wrapper .question-label .hint {
  margin-bottom: 1rem;
}
.form .question-wrapper .question-label .question {
  font-weight: bold;
}
.form .question-wrapper .question-label textarea {
  width: 100%;
  max-width: 75%;
  min-width: 20rem;
}
.form .question-wrapper .textblock-label {
  flex: 1;
  text-decoration: underline;
  padding-top: 0.5rem;
  padding-right: 2rem;
}
.form .question-wrapper .textblock-label .label {
  margin-bottom: 1rem;
}
.form .question-wrapper textarea {
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 5px;
  border: none;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 1rem;
}
.form .question-wrapper .question-answer {
  flex: 1.5;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.form .question-wrapper .question-answer .validation-message {
  color: var(--ireina-validation-error-red);
  text-align: center;
}
.form .question-wrapper .question-answer.yes-no {
  width: 10rem;
  flex: unset;
}
.form .question-wrapper .question-answer.yes-no label {
  margin-right: 1rem;
  margin-left: 0.2rem;
  font-weight: bold;
}
.form .question-wrapper .question-answer.date_and_time {
  display: flex;
  gap: 1rem;
}
.form .question-wrapper .question-answer.date_and_time input {
  flex: 1;
}
.form .question-wrapper .preconfigured_tags_row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  position: relative;
}
.form .question-wrapper .preconfigured_tags_row .preconfigured_tag {
  background: white;
  padding: 0.2rem 0.5rem;
  color: blue;
  font-weight: bold;
  text-decoration: underline;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: all ease-in-out 0.1s;
}
.form .question-wrapper .preconfigured_tags_row .preconfigured_tag:hover {
  background: var(--ireina-blue);
  color: white;
  text-decoration: none;
}
.form .question-wrapper .preconfigured_tag--seemore {
  position: relative;
}
.form .question-wrapper .preconfigured_tag--seemore .preconfiguredtags__selectionbubble {
  display: none;
  color: black;
  background: #f1f1f1;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 1.5rem;
  position: absolute;
  width: 30rem;
  right: 0rem;
  top: 2rem;
  z-index: 1;
  height: 10rem;
  overflow: scroll;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.form .question-wrapper .preconfigured_tag--seemore .preconfiguredtags__selectionbubble .preconfigured_tags_row {
  margin-bottom: 1rem;
}
.form .question-wrapper .extra-controls {
  width: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form .question-wrapper .extra-controls .upload-cta {
  text-decoration: none;
  background: white;
  color: black;
  border: 1px solid lightgray;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
.form .question-wrapper .extra-controls .upload-cta:hover {
  border-color: black;
}
.form .question-wrapper .extra-controls.question-file-upload-column {
  gap: 0.5rem;
}
.form .question-wrapper .extra-controls.question-file-upload-column span {
  font-weight: bold;
  font-size: 0.8rem;
}
.form .form-navbar {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.form .form-summary .form-summary-review-label {
  font-size: 2rem;
  color: var(--ireina-blue);
  text-align: center;
}
.form .form-summary .form-summary-overview-label {
  font-size: 2rem;
  color: black;
  text-align: center;
}
.form .form-summary .form-summary-controls {
  display: flex;
  justify-content: center;
  margin: 1.5rem;
  gap: 1rem;
}
.form .form-summary .form-summary-controls button, .form .form-summary .form-summary-controls a {
  padding: 1rem 2.5rem;
}
.form .form-summary .form-summary-section {
  background: white;
  padding: 30px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.form .form-summary .form-summary-section .form-summary-section-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.form-summary-risk-label {
  padding: 1.2rem 2.5rem;
}
.form-summary-risk-label.high_risk {
  background-color: var(--risk-high);
  border-color: transparent;
}
.form-summary-risk-label.high_risk:hover {
  background: var(--risk-high) !important;
}
.form-summary-risk-label.low_risk {
  background-color: var(--risk-low);
  border-color: transparent;
}
.form-summary-risk-label.low_risk:hover {
  background: var(--risk-low) !important;
}
.form-summary-risk-label.medium_risk {
  background-color: var(--risk-medium);
  border-color: transparent;
  color: black;
}
.form-summary-risk-label.medium_risk:hover {
  background: var(--risk-medium) !important;
}

.legend {
  margin-bottom: 2rem;
}
.legend thead {
  background: gray;
}
.legend thead th {
  text-align: center;
  color: white;
}
.legend tbody td:first-child {
  width: 10rem;
  text-align: center;
}

.report-summary-header .form-summary-risk-label {
  margin: 0 auto;
}
.report-summary-header .risk-title {
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem;
}

.document-details-bar {
  display: flex;
  width: 100%;
  margin-bottom: 3rem;
}
.document-details-bar > * {
  border: 1px solid black;
  padding: 0.5rem 1rem;
  flex: 1;
  border-right: none;
}
.document-details-bar > *:last-child {
  border-right: 1px solid black;
}
.document-details-bar .document-details-bar-documenttype {
  flex: 2;
  font-weight: bold;
}

.report-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  background: white;
  transition: background ease-in-out 0.2s;
}
.report-section-header.expandable {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.report-section-header.expandable:hover {
  background: var(--ireina-lightgray);
  align-items: center;
}

.report-section {
  margin-bottom: 3rem;
}
.report-section.dpo-conclusion {
  /* border: 1px solid var(--ireina-blue); */
  border-radius: 10px;
  padding: 1rem;
  background: rgba(128, 128, 128, 0.1098039216);
}
.report-section .question-wrapper {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
  gap: 1rem;
}
.report-section .question-wrapper .question-guidance {
  color: var(--ireina-blue);
  padding-top: 0.5rem;
}
.report-section .question-wrapper .question-guidance i {
  font-size: 1.1rem;
}
.report-section .question-wrapper .question-label {
  flex: 1;
  padding-top: 0.5rem;
  padding-right: 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.report-section .question-wrapper .question-label .question {
  margin-bottom: 1rem;
  font-weight: bold;
}
.report-section .question-wrapper .question-label textarea {
  width: 100%;
  max-width: 75%;
  min-width: 20rem;
}
.report-section .question-wrapper textarea {
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 5px;
  border: none;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 1rem;
}
.report-section .question-wrapper .question-answer {
  flex: 1.5;
  display: flex;
  gap: 0.5rem;
  /*textarea {
      width: 100%;
      box-shadow: 0px 3px 6px #00000029;
      background: #FFFFFF 0% 0% no-repeat padding-box;
      border-radius: 5px;
      border: none;
      padding: 1rem;
      box-sizing: border-box;
      font-size: 1rem;
  }*/
}
.report-section .question-wrapper .question-answer .validation-message {
  color: var(--ireina-validation-error-red);
}
.report-section .question-wrapper .question-answer.yes-no {
  width: 10rem;
  flex: unset;
}
.report-section .question-wrapper .question-answer.yes-no label {
  margin-right: 1rem;
  margin-left: 0.2rem;
  font-weight: bold;
}
.report-section .question-wrapper .question-risk-result {
  width: 6rem;
  flex: unset;
}
.report-section .question-wrapper .question-risk-result .risk-badge {
  font-weight: bold;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.3rem;
  width: 6rem;
  border-radius: 5px;
}
.report-section .question-wrapper .question-risk-result .risk-badge.low {
  background: var(--ireina-validation-green);
  color: white;
}
.report-section .question-wrapper .question-risk-result .risk-badge.high {
  background: var(--ireina-validation-error-red);
  color: white;
}
.report-section .question-wrapper .question-action a {
  text-decoration: none;
  color: gray;
  display: block;
  border: 1px solid lightgray;
  padding: 0.5rem 4rem;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
}
.report-section .question-wrapper .question-action a:hover {
  background: #6c757d;
  color: white;
}