@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Source+Serif+Pro:ital,wght@0,300;0,700;1,400&display=swap");
body {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-family: 'Source Serif Pro';
  background: #282a2b;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans';
}

main {
  background: #f0f0f0;
}

label {
  display: block;
  cursor: pointer;
}

label span {
  font-weight: bold;
  font-size: 12px;
}

input[type=radio], input[type=checkbox] {
  margin-right: 8px;
}

button {
  white-space: nowrap;
}

.patient-type {
  display: none;
}

.patient-type + span {
  border: 2px solid rgba(0, 0, 0, 0.2);
  display: block;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
}

.patient-type:checked + span {
  background: #bc1c64;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.important {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 24px;
  background: red;
  color: white;
  text-align: center;
  z-index: 20;
}

.conflicts {
  margin-top: 12px;
}

.conflicts .suggestion {
  border: 1px solid #bc1c64;
  background: transparent;
  padding: 4px 8px;
  font-size: 13px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 100px;
}

.conflicts .suggestion:hover {
  background: #bc1c64;
  color: white;
}

.conflicts .suggestion[name="ignore"]:hover {
  background: #dc3545;
  border: 1px solid #dc3545;
}

.card-title {
  background: #6c757d;
  color: white;
}

.bg-pink {
  background: #bc1c64;
}

#black-trans {
  position: fixed;
  z-index: 500;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

#black-trans div {
  background: white;
  display: inline-block;
  width: 64px;
  height: 64px;
  padding: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
}

#black-trans div img {
  width: 100%;
}

ul.ui-autocomplete {
  max-height: 300px;
  overflow-y: scroll;
}

span.required {
  font-weight: bold;
  color: red;
}

span.required::after {
  content: "*";
}

table#report thead th {
  white-space: nowrap;
}

#dutchForm {
  overflow: hidden;
  overflow-y: scroll;
  max-height: 250px;
}

.col-1-5 {
  width: 12.5%;
  position: relative;
  padding: 0px 15px;
}

#pills-genogram .card {
  border-left-width: 3px !important;
}
/*# sourceMappingURL=style.css.map */