@charset "UTF-8";
.flex {
  display: flex; }

@media (--breakpoint-sm) {
  .sm-flex {
    display: flex; } }

@media (--breakpoint-md) {
  .md-flex {
    display: flex; } }

@media (--breakpoint-lg) {
  .lg-flex {
    display: flex; } }

.flex-grow-1 {
  flex: 1 1 0; }

.flex-column {
  flex-direction: column; }

.flex-wrap {
  flex-wrap: wrap; }

.items-start {
  align-items: flex-start; }

.items-end {
  align-items: flex-end; }

.items-center {
  align-items: center; }

.items-baseline {
  align-items: baseline; }

.items-stretch {
  align-items: stretch; }

.self-start {
  align-self: flex-start; }

.self-end {
  align-self: flex-end; }

.self-center {
  align-self: center; }

.self-baseline {
  align-self: baseline; }

.self-stretch {
  align-self: stretch; }

.justify-start {
  justify-content: flex-start; }

.justify-end {
  justify-content: flex-end; }

.justify-center {
  justify-content: center; }

.justify-between {
  justify-content: space-between; }

.justify-around {
  justify-content: space-around; }

.justify-evenly {
  justify-content: space-evenly; }

.row-reverse {
  flex-direction: row-reverse; }

.content-start {
  align-content: flex-start; }

.content-end {
  align-content: flex-end; }

.content-center {
  align-content: center; }

.content-between {
  align-content: space-between; }

.content-around {
  align-content: space-around; }

.content-stretch {
  align-content: stretch; }

/* 1. Fix for Chrome 44 bug. https://code.google.com/p/chromium/issues/detail?id=506893 */
.flex-auto {
  flex: 1 1 auto;
  min-width: 0;
  /* 1 */
  min-height: 0;
  /* 1 */ }

.flex-none {
  flex: none; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-last {
  order: 99999; }

@media (min-width: 1280px) {
  .flex-1280-row {
    flex-direction: row; } }

@custom-media --breakpoint-sm (min-width: 40em);
@custom-media --breakpoint-md (min-width: 52em);
@custom-media --breakpoint-lg (min-width: 64em);
/*
Simple flexbox based layout system

```
Example of a sidebar with a header, footer and scrollable content area

<div class="pane hstack g">
    <div class="pane">
    SIDEBAR
    </div>
    <div class="pane vstack">
        <div class="pane">
        HEADER
        </div>
        <div class="pane f scroll">
        CONTENT
        </div>
        <div class="pane">
        FOOTER
        </div>
    </div>
</div>
```
*/
.pane {
  position: relative;
  border: 0px solid black;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0; }

.pane.hidden {
  display: none !important; }

.scroll.pane {
  overflow: auto;
  border-color: yellow; }

.hstack.pane {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  border-color: blue; }
  .hstack.pane.wrap {
    flex-wrap: wrap; }

.vstack.pane {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  position: relative;
  border-color: red; }
  .vstack.pane.wrap {
    flex-wrap: wrap; }

.f {
  flex: 1 1 0; }

.g,
.g1 {
  gap: 4px; }

.g2 {
  gap: 8px; }

/* Basscss Padding */
.p0 {
  padding: 0; }

.pt0 {
  padding-top: 0; }

.pr0 {
  padding-right: 0; }

.pb0 {
  padding-bottom: 0; }

.pl0 {
  padding-left: 0; }

.px0 {
  padding-left: 0;
  padding-right: 0; }

.py0 {
  padding-top: 0;
  padding-bottom: 0; }

.p1 {
  padding: 0.5rem; }

.pt1 {
  padding-top: 0.5rem; }

.pr1 {
  padding-right: 0.5rem; }

.pb1 {
  padding-bottom: 0.5rem; }

.pl1 {
  padding-left: 0.5rem; }

.py1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.px1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem; }

.p2 {
  padding: 1rem; }

.pt2 {
  padding-top: 1rem; }

.pr2 {
  padding-right: 1rem; }

.pb2 {
  padding-bottom: 1rem; }

.pl2 {
  padding-left: 1rem; }

.py2 {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.px2 {
  padding-left: 1rem;
  padding-right: 1rem; }

.p3 {
  padding: 2rem; }

.pt3 {
  padding-top: 2rem; }

.pr3 {
  padding-right: 2rem; }

.pb3 {
  padding-bottom: 2rem; }

.pl3 {
  padding-left: 2rem; }

.py3 {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.px3 {
  padding-left: 2rem;
  padding-right: 2rem; }

.p4 {
  padding: 4rem; }

.pt4 {
  padding-top: 4rem; }

.pr4 {
  padding-right: 4rem; }

.pb4 {
  padding-bottom: 4rem; }

.pl4 {
  padding-left: 4rem; }

.py4 {
  padding-top: 4rem;
  padding-bottom: 4rem; }

.px4 {
  padding-left: 4rem;
  padding-right: 4rem; }

/* Basscss Padding */
.m0 {
  margin: 0; }

.mt0 {
  margin-top: 0; }

.mr0 {
  margin-right: 0; }

.mb0 {
  margin-bottom: 0; }

.ml0 {
  margin-left: 0; }

.mx0 {
  margin-left: 0;
  margin-right: 0; }

.my0 {
  margin-top: 0;
  margin-bottom: 0; }

.m1 {
  margin: 0.5rem; }

.mt1 {
  margin-top: 0.5rem; }

.mr1 {
  margin-right: 0.5rem; }

.mb1 {
  margin-bottom: 0.5rem; }

.mb-1 {
  margin-bottom: -0.5rem; }

.ml1 {
  margin-left: 0.5rem; }

.my1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

.mx1 {
  margin-left: 0.5rem;
  margin-right: 0.5rem; }

.mx-1 {
  margin-left: -0.5rem;
  margin-right: -0.5rem; }

.m2 {
  margin: 1rem; }

.mt2 {
  margin-top: 1rem; }

.mr2 {
  margin-right: 1rem; }

.mb2 {
  margin-bottom: 1rem; }

.ml2 {
  margin-left: 1rem; }

.my2 {
  margin-top: 1rem;
  margin-bottom: 1rem; }

.mx2 {
  margin-left: 1rem;
  margin-right: 1rem; }

.m3 {
  margin: 2rem; }

.mt3 {
  margin-top: 2rem; }

.mr3 {
  margin-right: 2rem; }

.mb3 {
  margin-bottom: 2rem; }

.ml3 {
  margin-left: 2rem; }

.my3 {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.mx3 {
  margin-left: 2rem;
  margin-right: 2rem; }

.m4 {
  margin: 4rem; }

.mt4 {
  margin-top: 4rem; }

.mr4 {
  margin-right: 4rem; }

.mb4 {
  margin-bottom: 4rem; }

.ml4 {
  margin-left: 4rem; }

.my4 {
  margin-top: 4rem;
  margin-bottom: 4rem; }

.mx4 {
  margin-left: 4rem;
  margin-right: 4rem; }

.color-red {
  color: #e83434; }

.color-green {
  color: #23a968; }

.color-grey {
  color: #dddddd; }

.color-darkgrey {
  color: #5e5e5e; }

html,
body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #f4f5f6; }

body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box; }

.turbo-progress-bar {
  height: 5px;
  background-color: #23a968; }

.main-layout {
  flex-grow: 1; }

main.standard-main {
  flex: 1 1 0;
  align-items: stretch;
  overflow-y: auto;
  height: 100vh;
  position: absolute;
  left: 68px;
  width: calc(100% - 68px);
  padding-right: 8px;
  padding-bottom: 8px; }

ul.messagelist {
  padding: 0px;
  list-style-type: none; }
  ul.messagelist:empty {
    display: none; }
  ul.messagelist li {
    padding: 0.25rem;
    margin-bottom: 0.25em;
    border-radius: 4px;
    color: white; }
  ul.messagelist li.info {
    background: #00929b; }
  ul.messagelist li.warning {
    background: #ff783e; }
  ul.messagelist li.success {
    background: #23a968; }
  ul.messagelist li.error {
    background: #e83434; }

ul.errorlist {
  padding: 0px;
  list-style-type: none; }
  ul.errorlist li {
    padding: 0.25rem;
    background: #e83434;
    color: white;
    border-radius: 4px;
    margin-bottom: 0.25em; }
  ul.errorlist li:before {
    content: "⚠";
    display: inline-block;
    font-weight: bold;
    margin-right: 5px;
    font-size: 1.1rem; }

.pagebreak {
  page-break-before: always; }

.gaps {
  gap: 8px; }

.full-width {
  width: 100%; }

.full-height {
  height: 100%; }

.half-width-gaps {
  width: calc(50% - 4px); }

.custom-radio-select {
  list-style-type: none;
  padding-left: 0; }

.circle-icon {
  display: block;
  background: white;
  width: 1em;
  height: 1em;
  text-align: center;
  padding: 5px;
  border-radius: 1000px; }

nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 255px;
  padding-bottom: 1rem;
  height: 100vh;
  overflow-y: auto;
  position: absolute;
  z-index: 100000;
  background-color: #f4f5f6;
  box-shadow: -1px 0px 14px 0px rgba(0, 0, 0, 0.1);
  font-weight: 500; }
  nav .menu-head {
    margin-top: 19px;
    margin-bottom: 12px; }
  nav .logo {
    margin-top: 3px; }
    nav .logo a {
      color: none; }
    nav .logo img {
      width: 100%;
      height: 20px; }
  nav .logo.logo-contracted {
    display: none;
    margin-left: 21.7px; }
  nav .logo.logo-expanded {
    margin-left: 21.7px; }
  nav.nav-contracted {
    box-shadow: none;
    overflow-y: hidden; }
    nav.nav-contracted .logo-expanded {
      display: none; }
    nav.nav-contracted .logo-contracted {
      display: block; }
  nav div.menu-heading {
    color: #62626a;
    font-size: 10px;
    padding: 24px 0px 0px 21px; }
  nav .menu-divider {
    padding: 24px 0px 0px 21px;
    height: 16px;
    display: none; }
  nav a.menu-item {
    color: #6E6E6E;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 24px;
    gap: 8px;
    height: 32px; }
    nav a.menu-item.impersonation-banner {
      color: red;
      height: unset; }
    nav a.menu-item i {
      font-size: 16px;
      margin-right: 0.5rem;
      width: 16px;
      text-align: center; }
    nav a.menu-item .menu-label {
      line-height: 21px; }
    nav a.menu-item[href]:hover {
      font-weight: bold; }
  nav.nav-contracted {
    width: auto; }
    nav.nav-contracted .menu-contract-toggle,
    nav.nav-contracted .menu-label,
    nav.nav-contracted .menu-heading {
      display: none; }
    nav.nav-contracted .menu-divider {
      display: block; }
    nav.nav-contracted a.menu-item i {
      margin-right: 0; }
    nav.nav-contracted a.menu-item[href]:hover {
      width: auto; }
  nav > div:last-child {
    margin-bottom: 96px;
    margin-top: 24px; }

.index-menu-page .index-menu-section {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap; }
  .index-menu-page .index-menu-section .index-menu-page-item {
    background: white;
    min-height: 8em;
    width: 300px;
    flex-direction: column;
    color: #222222;
    cursor: pointer;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 4px; }
    .index-menu-page .index-menu-section .index-menu-page-item .index-menu-page-item-label {
      font-weight: bold;
      color: #00929b; }
    .index-menu-page .index-menu-section .index-menu-page-item .index-menu-page-item-description {
      color: #5e5e5e; }
    .index-menu-page .index-menu-section .index-menu-page-item i {
      color: #5e5e5e;
      font-size: 1.5em; }
    .index-menu-page .index-menu-section .index-menu-page-item:hover {
      box-shadow: 5px 5px 10px -10px rgba(0, 0, 0, 0.75); }

.breadcrumbs {
  position: relative;
  top: 21px; }
  .breadcrumbs > a {
    font-weight: 500;
    color: #222222; }
  .breadcrumbs > i {
    margin-left: 1em;
    margin-right: 1em; }
    .breadcrumbs > i:first-child {
      margin-left: 0; }
  .breadcrumbs > a:last-child {
    font-weight: 400;
    color: #666666; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  row-gap: 15px; }
  header h1 {
    flex-grow: 1;
    margin-block: 10px;
    margin: 0px; }
  header .header-chips {
    padding-left: 8px;
    display: flex;
    gap: 4px;
    position: relative; }
  header .header-controls {
    display: flex;
    gap: 4px; }

table.data-table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 8px;
  background: white; }
  table.data-table.left-align td,
  table.data-table.left-align th {
    text-align: left; }
  table.data-table.right-align td,
  table.data-table.right-align th {
    text-align: right; }
  table.data-table.thin {
    width: auto; }
  table.data-table th {
    text-align: left;
    text-transform: uppercase;
    vertical-align: top;
    font-weight: 500;
    min-width: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: sticky;
    top: 0;
    background-color: white; }
    table.data-table th:last-child {
      padding-right: 1em; }
  table.data-table th a {
    color: #222222; }
  table.data-table th.orderable .on-asc,
  table.data-table th.orderable .on-desc {
    display: none; }
  table.data-table th.orderable .on-unordered {
    color: #dddddd; }
  table.data-table th.orderable.asc .on-unordered {
    display: none; }
  table.data-table th.orderable.asc .on-asc {
    display: initial; }
  table.data-table th.orderable.desc .on-unordered {
    display: none; }
  table.data-table th.orderable.desc .on-desc {
    display: initial; }
  table.data-table th,
  table.data-table td {
    padding-top: 8px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 6px;
    vertical-align: top; }
  table.data-table th:first-child,
  table.data-table td:first-child {
    text-align: left; }
  table.data-table thead tr {
    border-bottom: 1px solid #dddddd; }
  table.data-table tbody tr {
    border-bottom: 1px solid #dddddd; }
    table.data-table tbody tr:last-child {
      border-width: 0px; }
  table.data-table td a {
    font-weight: bold;
    color: #00929b; }
  table.data-table td pre {
    margin: 0px; }
  table.data-table .false {
    color: #e83434; }
  table.data-table .true {
    color: #23a968; }
  table.data-table tbody tr:hover {
    background: #EBEBEF; }

.card {
  padding: 0px; }
  .card table.details-table {
    width: 100%;
    border-collapse: collapse; }
    .card table.details-table tr:nth-child(n + 2) td,
    .card table.details-table tr:nth-child(n + 2) th {
      border-top: 1px solid #dedee3; }

table.details-table {
  color: #62626a; }
  table.details-table th,
  table.details-table td {
    padding: 12px;
    vertical-align: top;
    font-weight: 400; }
  table.details-table th {
    text-align: left; }
  table.details-table pre {
    margin: 0px; }

.table-controls {
  padding-top: 1rem; }

ul.pagination {
  border-radius: 8px;
  background: white;
  padding: 0px; }
  ul.pagination li {
    display: inline-block;
    padding: 8px;
    border-left: 1px solid #d6d6d6;
    min-width: 16px;
    text-align: center; }
    ul.pagination li a {
      color: #222222; }
    ul.pagination li.active a {
      font-weight: bold;
      color: #00929b; }
    ul.pagination li:first-child {
      border-left-width: 0px; }

table.data-table.permissions-table {
  overflow: hidden; }
  table.data-table.permissions-table thead th {
    text-align: center; }
  table.data-table.permissions-table tbody tr:hover {
    background-color: #23a968; }
  table.data-table.permissions-table tbody tr td:not(:first-child) {
    text-align: center;
    border-left: 1px dashed #5e5e5e; }
    table.data-table.permissions-table tbody tr td.permission-section-start:not(:first-child) {
      border-left: 1px solid #5e5e5e; }

.table-sidebar {
  min-width: 300px; }
  .table-sidebar form {
    padding: 1em; }

.fold-target {
  padding: 1px 4px 4px;
  font-size: 1.1em;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear; }
  .fold-target::before {
    content: "\f107"; }
  .fold-target.folded {
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); }

.foldable {
  transition: max-height 0.25s ease-in;
  overflow: hidden; }
  .foldable.folded {
    max-height: 0;
    transition: max-height 0.25s ease-out;
    overflow: hidden; }

.multiline-data-cell {
  white-space: pre-wrap; }

table.mastercard-match-table {
  width: 100%;
  border-spacing: 0.5rem;
  background-color: white;
  border-radius: 5px; }
  table.mastercard-match-table thead th {
    border-bottom: 1px solid #222222;
    padding-bottom: 1rem;
    text-align: left; }
  table.mastercard-match-table tbody tr th {
    text-align: left;
    padding-bottom: 0.5rem; }
  table.mastercard-match-table tbody tr td {
    padding-bottom: 0.5rem;
    width: 40%; }
    table.mastercard-match-table tbody tr td.match-type {
      width: 20%; }
    table.mastercard-match-table tbody tr td.single-column {
      width: 80%; }
  table.mastercard-match-table tbody tr:not(:last-of-type) > * {
    border-bottom: 1px solid #dedee3; }
  table.mastercard-match-table.grey {
    background: #EBEBEF; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem; }
  .section-header h2 {
    margin: calc((34px - 22px) / 2) 0px; }
  .section-header h6 {
    margin: 0px;
    font-size: 0.8rem; }

.btn {
  background: white;
  color: #323643;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #323643;
  cursor: pointer;
  font-size: 1em;
  gap: 4px;
  line-height: 1; }
  .btn i {
    font-size: 16px; }
  .btn:hover {
    background: #E6E6E6;
    border-color: #E6E6E6; }
  .btn[disabled], .btn[disabled]:hover {
    background: #8d8d8d;
    color: #5e5e5e;
    cursor: not-allowed; }
  .btn.small {
    padding: 6px 16px; }
  .btn .secondary-icon {
    display: block;
    background: black;
    color: white;
    font-size: 10px;
    width: 1em;
    height: 1em;
    text-align: center;
    padding: 3px;
    border-radius: 1000px;
    font-weight: bold; }

.btn.warning {
  color: #e83434;
  border: 1px solid #e83434; }
  .btn.warning:hover {
    background: #e83434;
    color: white; }

.btn.primary {
  background: #323643;
  color: white;
  border-color: #323643; }
  .btn.primary:hover {
    background: #65676f; }

.btn.error {
  background: #e52626;
  color: white; }
  .btn.error:hover {
    background: #e83434;
    color: white; }

.btn.outline {
  border: 2px solid #222222; }
  .btn.outline:hover {
    border-color: #23a968;
    background: #23a968;
    color: white; }

.btn.compact {
  padding: revert; }

.btn.borderless {
  border: none; }

.cursor-pointer {
  cursor: pointer; }

.adverse-media-list .media-item .opinion-summary {
  height: 1rem;
  width: 1rem;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #dddddd; }
  .adverse-media-list .media-item .opinion-summary.OK {
    border-color: #23a968;
    background: #23a968;
    color: white; }
  .adverse-media-list .media-item .opinion-summary.DIFFERENT {
    background-color: #00929b;
    border-color: #00929b;
    color: white; }
  .adverse-media-list .media-item .opinion-summary.ADVERSE {
    background-color: #e83434;
    border-color: #e83434;
    color: white; }

.adverse-media-list .media-item .snippet {
  color: #5e5e5e;
  line-height: 1.1rem;
  margin-bottom: 1rem; }

.adverse-media-list .media-item .search-terms em {
  border: 1px solid #5e5e5e;
  border-radius: 3rem;
  font-style: normal;
  padding: 0.2rem 0.4rem;
  display: inline-block;
  margin-bottom: 0.2rem; }

.adverse-media-list .media-item .opinion-options {
  display: flex;
  justify-content: stretch;
  padding-top: 0.5rem; }
  .adverse-media-list .media-item .opinion-options input {
    position: fixed;
    z-index: -100000;
    height: 0px;
    opacity: 0; }
  .adverse-media-list .media-item .opinion-options label {
    flex-grow: 1;
    flex-basis: 1;
    flex-shrink: 1; }
  .adverse-media-list .media-item .opinion-options label:first-child .opinion-option {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  .adverse-media-list .media-item .opinion-options label:last-child .opinion-option {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }
  .adverse-media-list .media-item .opinion-options .opinion-option {
    padding: 0.5rem 1rem;
    border: 1px solid #dddddd;
    text-align: center;
    font-weight: bold;
    cursor: pointer; }
  .adverse-media-list .media-item .opinion-options :checked ~ .opinion-option {
    color: white; }
    .adverse-media-list .media-item .opinion-options :checked ~ .opinion-option.positive {
      border-color: #23a968;
      background: #23a968; }
    .adverse-media-list .media-item .opinion-options :checked ~ .opinion-option.neutral {
      background-color: #00929b;
      border-color: #00929b; }
    .adverse-media-list .media-item .opinion-options :checked ~ .opinion-option.negative {
      background-color: #e83434;
      border-color: #e83434; }

.adverse-media-list .media-item .opinion-notes .note {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #dddddd; }
  .adverse-media-list .media-item .opinion-notes .note:last-child {
    border-bottom: 0px solid #dddddd; }
  .adverse-media-list .media-item .opinion-notes .note .note-time {
    color: #a3a3a3;
    font-size: smaller;
    display: flex;
    justify-content: space-between; }
  .adverse-media-list .media-item .opinion-notes .note .note-email {
    color: #a3a3a3;
    font-size: smaller; }

.adverse-media-list .media-item .opinion-notes textarea {
  width: 100%;
  font-family: "Liberation Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 12px; }

.attribute-case .attribute-match {
  text-align: center;
  font-size: 1.5rem;
  border-radius: 8px;
  background-color: #e83434;
  color: white; }

.attribute-case .attribute-match-but-success {
  text-align: center;
  font-size: 1.5rem;
  border-radius: 8px;
  background-color: #23a968;
  color: white; }

.case-view .case-controls-widget-legacy .case-controls-widget-contracted {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  margin-right: 0.5rem;
  width: 450px;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: white;
  padding: 1rem 0.5rem;
  cursor: pointer; }
  .case-view .case-controls-widget-legacy .case-controls-widget-contracted h2 {
    margin: 0px; }
  .case-view .case-controls-widget-legacy .case-controls-widget-contracted i {
    background-color: #f4f5f6; }

.case-view .case-controls-widget-legacy .case-controls-widget-expanded {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0px;
  right: 2rem;
  height: calc(100vh - 90px - 50px);
  box-shadow: -1px -1px 14px 0px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: white;
  width: 450px;
  margin: 0px; }

.case-view .case-controls-widget-legacy #timeline-container {
  padding-left: calc(25px + 0.5rem);
  overflow-y: auto;
  flex-grow: 1;
  flex-shrink: 1; }

.case-view .case-controls-widget-legacy .timeline {
  border-left: 2px solid #D3D3D9;
  min-height: 100%; }

.case-view .case-controls-widget-legacy .timeline-items {
  margin-left: -26px; }

.case-view .case-controls-widget-legacy .timeline-row {
  display: flex;
  flex-grow: 1;
  align-items: start;
  margin-bottom: 1rem;
  min-height: 1rem; }
  .case-view .case-controls-widget-legacy .timeline-row:last-child {
    margin-bottom: 0rem; }

.case-view .case-controls-widget-legacy .timeline-icon {
  min-width: 50px;
  min-height: 50px;
  border-radius: 100%;
  background: #EBEBEF;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center; }
  .case-view .case-controls-widget-legacy .timeline-icon i {
    font-size: 25px; }

.case-view .case-controls-widget-legacy .timeline-item {
  margin: 0rem 1rem;
  padding: 0.5rem 1rem 0.5rem 1rem; }

.case-view .case-controls-widget-legacy .timeline-item-AddNote,
.case-view .case-controls-widget-legacy .timeline-item-AddTransactionScreeningNote {
  background: white; }

.case-view .case-controls-widget-legacy .item-information {
  color: #a3a3a3;
  font-size: smaller;
  min-height: 15px; }

.case-view .case-controls-widget-legacy .timeline-icon.positive {
  background: #23a968;
  color: white; }

.case-view .case-controls-widget-legacy .timeline-icon.negative {
  background: #e83434;
  color: white; }

.case-view .case-controls-widget-legacy .timeline-icon.neutral {
  background: #00929b;
  color: white; }

.case-view .case-controls-widget-legacy .item-content {
  margin: 0rem; }
  .case-view .case-controls-widget-legacy .item-content table {
    border-collapse: collapse; }
    .case-view .case-controls-widget-legacy .item-content table th,
    .case-view .case-controls-widget-legacy .item-content table td {
      text-align: left;
      vertical-align: top;
      padding: 0;
      padding-top: 5px; }
    .case-view .case-controls-widget-legacy .item-content table td {
      padding-left: 5px; }

.case-view .case-controls-widget-legacy .item-note-editor {
  border-top: 1px solid #dddddd;
  padding: 0.5rem; }

.case-view .case-controls-widget-legacy #case-opinion-form {
  padding: 0.5rem;
  border-top: 1px solid #dddddd;
  display: block; }

.case-view .case-controls-widget-legacy .note-attachments {
  display: flex; }
  .case-view .case-controls-widget-legacy .note-attachments input[type="file"]::file-selector-button {
    font-size: 0px;
    opacity: 0; }
  .case-view .case-controls-widget-legacy .note-attachments input[type="file"] {
    max-width: 100%;
    font-weight: bold;
    font-size: 1em; }
  .case-view .case-controls-widget-legacy .note-attachments .btn {
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    width: -webkit-fill-available;
    width: 100%; }
  .case-view .case-controls-widget-legacy .note-attachments .attachment-indicator {
    max-width: 50%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 1em; }

.case-view .case-controls-widget-legacy .attachment-list-container > summary {
  list-style: none;
  font-size: smaller;
  display: flex;
  justify-content: end;
  cursor: pointer; }

.case-view .case-controls-widget-legacy .attachment-list-container > summary::-webkit-details-marker {
  display: none; }

.case-view .case-controls-widget-legacy .attachment-list-container .attachment-btn {
  max-width: 90%;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
  gap: 4px;
  align-items: center; }
  .case-view .case-controls-widget-legacy .attachment-list-container .attachment-btn .attachment-btn-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.case-view .case-controls-widget-legacy .predefined-notes-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
  font-weight: bold;
  min-width: 100%; }
  .case-view .case-controls-widget-legacy .predefined-notes-container .select-wrapper {
    width: calc(50%); }
    .case-view .case-controls-widget-legacy .predefined-notes-container .select-wrapper > select {
      width: calc(100%); }
      .case-view .case-controls-widget-legacy .predefined-notes-container .select-wrapper > select > option {
        width: calc(50%); }

.case-view .case-controls-widget-legacy .chat-box {
  background: white;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 4px; }
  .case-view .case-controls-widget-legacy .chat-box textarea {
    box-sizing: border-box;
    width: 100%;
    height: 8rem;
    border: none;
    resize: none;
    line-height: 1.1em;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    padding: 0px; }
    .case-view .case-controls-widget-legacy .chat-box textarea:focus-visible, .case-view .case-controls-widget-legacy .chat-box textarea:focus {
      outline: none; }

.case-view .case-controls-widget-legacy .opinion-choices {
  display: flex;
  justify-content: stretch;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  .case-view .case-controls-widget-legacy .opinion-choices label {
    display: table;
    flex-grow: 1;
    flex-basis: 1;
    flex-shrink: 1; }
  .case-view .case-controls-widget-legacy .opinion-choices input {
    position: absolute;
    z-index: -100000;
    opacity: 0; }

.case-view .case-controls-widget-legacy .opinion-choices label:first-child .opinion-choice {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; }

.case-view .case-controls-widget-legacy .opinion-choices label:last-child .opinion-choice {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; }

.case-view .case-controls-widget-legacy .opinion-choice {
  display: table-cell;
  padding: 0.5rem 0.7rem;
  border: 1px solid #dddddd;
  text-align: center;
  font-weight: bold;
  cursor: pointer; }

.case-view .case-controls-widget-legacy :checked ~ .opinion-choice {
  color: white; }
  .case-view .case-controls-widget-legacy :checked ~ .opinion-choice.positive {
    border-color: #23a968;
    background: #23a968; }
  .case-view .case-controls-widget-legacy :checked ~ .opinion-choice.negative {
    background-color: #e83434;
    border-color: #e83434; }
  .case-view .case-controls-widget-legacy :checked ~ .opinion-choice.neutral {
    background-color: #00929b;
    border-color: #00929b; }

.case-view .case-controls-widget-legacy .case-opinion-editor > div:last-child {
  text-align: right; }

.case-view .case-controls-widget-legacy .case-opinion-editor .btn.submit-opinion {
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  background-color: black;
  color: white;
  width: 100%; }
  .case-view .case-controls-widget-legacy .case-opinion-editor .btn.submit-opinion:disabled {
    background-color: #dddddd; }

.case-view .case-controls-widget-legacy .case-controls-title {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 1rem 0.5rem;
  margin: 0px;
  border-bottom: 1px solid #DEDEE3; }
  .case-view .case-controls-widget-legacy .case-controls-title i {
    background-color: #f4f5f6; }
  .case-view .case-controls-widget-legacy .case-controls-title .toggle-collapse,
  .case-view .case-controls-widget-legacy .case-controls-title .toggle-expand {
    cursor: pointer; }
  .case-view .case-controls-widget-legacy .case-controls-title .toggle-collapse {
    display: block; }
  .case-view .case-controls-widget-legacy .case-controls-title .toggle-expand {
    display: none; }

.case-view .case-controls-widget-legacy.contracted .toggle-collapse {
  display: none; }

.case-view .case-controls-widget-legacy.contracted .toggle-expand {
  display: block; }

.case-view .case-controls-widget-legacy.contracted .case-controls-widget-expanded {
  height: auto; }

.case-view .case-controls-widget-legacy.contracted #timeline-container {
  display: none; }

.case-view .case-controls-widget-legacy.contracted .case-controls-title {
  border-bottom: none; }

.case-view .case-controls-widget {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0px;
  right: 2rem;
  height: calc(100vh - 90px - 50px);
  box-shadow: -1px -1px 14px 0px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: white;
  width: 450px;
  margin: 0px; }
  .case-view .case-controls-widget .timeline-container {
    padding-left: calc(25px + 0.5rem);
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
    flex-shrink: 1; }
  .case-view .case-controls-widget .timeline {
    border-left: 2px solid #D3D3D9;
    min-height: 100%; }
  .case-view .case-controls-widget .timeline-items {
    margin-left: -26px; }
  .case-view .case-controls-widget .timeline-row {
    display: flex;
    flex-grow: 1;
    align-items: start;
    margin-bottom: 1rem;
    min-height: 1rem; }
    .case-view .case-controls-widget .timeline-row:last-child {
      margin-bottom: 0rem; }
  .case-view .case-controls-widget .timeline-icon {
    min-width: 50px;
    min-height: 50px;
    border-radius: 100%;
    background: #EBEBEF;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center; }
    .case-view .case-controls-widget .timeline-icon i {
      font-size: 25px; }
  .case-view .case-controls-widget .timeline-item {
    margin: 0rem 1rem;
    padding: 0.5rem 1rem 0.5rem 1rem; }
  .case-view .case-controls-widget .timeline-item-AddNote,
  .case-view .case-controls-widget .timeline-item-AddTransactionScreeningNote {
    background: white; }
  .case-view .case-controls-widget .item-information {
    color: #a3a3a3;
    font-size: smaller;
    min-height: 15px; }
  .case-view .case-controls-widget .timeline-icon.positive {
    background: #23a968;
    color: white; }
  .case-view .case-controls-widget .timeline-icon.negative {
    background: #e83434;
    color: white; }
  .case-view .case-controls-widget .timeline-icon.neutral {
    background: #00929b;
    color: white; }
  .case-view .case-controls-widget .item-content {
    margin: 0rem; }
    .case-view .case-controls-widget .item-content table {
      border-collapse: collapse; }
      .case-view .case-controls-widget .item-content table th,
      .case-view .case-controls-widget .item-content table td {
        text-align: left;
        vertical-align: top;
        padding: 0;
        padding-top: 5px; }
      .case-view .case-controls-widget .item-content table td {
        padding-left: 5px; }
  .case-view .case-controls-widget .item-note-editor {
    border-top: 1px solid #dddddd;
    padding: 0.5rem; }
  .case-view .case-controls-widget #case-opinion-form {
    padding: 0.5rem;
    border-top: 1px solid #dddddd;
    display: block; }
  .case-view .case-controls-widget .note-attachments {
    display: flex; }
    .case-view .case-controls-widget .note-attachments input[type="file"]::file-selector-button {
      font-size: 0px;
      opacity: 0; }
    .case-view .case-controls-widget .note-attachments input[type="file"] {
      max-width: 100%;
      font-weight: bold;
      font-size: 1em; }
    .case-view .case-controls-widget .note-attachments .btn {
      padding: 0.5rem 1rem;
      margin-top: 0.5rem;
      width: -webkit-fill-available;
      width: 100%; }
    .case-view .case-controls-widget .note-attachments .attachment-indicator {
      max-width: 50%;
      display: flex;
      flex-flow: row;
      align-items: center;
      margin-top: 1em; }
  .case-view .case-controls-widget .attachment-list-container > summary {
    list-style: none;
    font-size: smaller;
    display: flex;
    justify-content: end;
    cursor: pointer; }
  .case-view .case-controls-widget .attachment-list-container > summary::-webkit-details-marker {
    display: none; }
  .case-view .case-controls-widget .attachment-list-container .attachment-btn {
    max-width: 90%;
    margin-bottom: 0.5em;
    margin-right: 0.5em;
    gap: 4px;
    align-items: center; }
    .case-view .case-controls-widget .attachment-list-container .attachment-btn .attachment-btn-text {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
  .case-view .case-controls-widget .predefined-notes-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5em;
    font-weight: bold;
    min-width: 100%; }
    .case-view .case-controls-widget .predefined-notes-container .select-wrapper {
      width: calc(50%); }
      .case-view .case-controls-widget .predefined-notes-container .select-wrapper > select {
        width: calc(100%); }
        .case-view .case-controls-widget .predefined-notes-container .select-wrapper > select > option {
          width: calc(50%); }
  .case-view .case-controls-widget .chat-box {
    background: white;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 4px; }
    .case-view .case-controls-widget .chat-box textarea {
      box-sizing: border-box;
      width: 100%;
      height: 8rem;
      border: none;
      resize: none;
      line-height: 1.1em;
      font-family: "Poppins", sans-serif;
      font-size: 13px;
      padding: 0px; }
      .case-view .case-controls-widget .chat-box textarea:focus-visible, .case-view .case-controls-widget .chat-box textarea:focus {
        outline: none; }
  .case-view .case-controls-widget .opinion-choices {
    display: flex;
    justify-content: stretch;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
    .case-view .case-controls-widget .opinion-choices label {
      display: table;
      flex-grow: 1;
      flex-basis: 1;
      flex-shrink: 1; }
    .case-view .case-controls-widget .opinion-choices input {
      position: absolute;
      z-index: -100000;
      opacity: 0; }
  .case-view .case-controls-widget .opinion-choices label:first-child .opinion-choice {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  .case-view .case-controls-widget .opinion-choices label:last-child .opinion-choice {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }
  .case-view .case-controls-widget .opinion-choice {
    display: table-cell;
    padding: 0.5rem 0.7rem;
    border: 1px solid #dddddd;
    text-align: center;
    font-weight: bold;
    cursor: pointer; }
  .case-view .case-controls-widget :checked ~ .opinion-choice {
    color: white; }
    .case-view .case-controls-widget :checked ~ .opinion-choice.positive {
      border-color: #23a968;
      background: #23a968; }
    .case-view .case-controls-widget :checked ~ .opinion-choice.negative {
      background-color: #e83434;
      border-color: #e83434; }
    .case-view .case-controls-widget :checked ~ .opinion-choice.neutral {
      background-color: #00929b;
      border-color: #00929b; }
  .case-view .case-controls-widget .case-opinion-editor > div:last-child {
    text-align: right; }
  .case-view .case-controls-widget .case-opinion-editor .btn.submit-opinion {
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    background-color: black;
    color: white;
    width: 100%; }
    .case-view .case-controls-widget .case-opinion-editor .btn.submit-opinion:disabled {
      background-color: #dddddd; }
  .case-view .case-controls-widget .case-controls-title {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1rem 0.5rem;
    margin: 0px;
    border-bottom: 1px solid #DEDEE3; }
    .case-view .case-controls-widget .case-controls-title i {
      cursor: pointer; }
    .case-view .case-controls-widget .case-controls-title .toggle-collapse,
    .case-view .case-controls-widget .case-controls-title .toggle-expand {
      cursor: pointer; }
    .case-view .case-controls-widget .case-controls-title .toggle-collapse {
      display: block; }
    .case-view .case-controls-widget .case-controls-title .toggle-expand {
      display: block; }

.case-view .case-controls-widget.small {
  height: auto; }
  .case-view .case-controls-widget.small .fa-window-minimize {
    color: white; }
  .case-view .case-controls-widget.small .case-controls-contents {
    display: none; }

.case-view .case-controls-widget.medium {
  height: auto; }
  .case-view .case-controls-widget.medium .fa-square {
    color: white; }
  .case-view .case-controls-widget.medium .case-events-side-container {
    display: none; }
  .case-view .case-controls-widget.medium .case-event-summary {
    align-items: center;
    justify-content: space-between;
    background: #EBEBEF;
    cursor: pointer; }
  .case-view .case-controls-widget.medium .case-events-collapsible-container .fa-up-right-and-down-left-from-center {
    display: none; }
  .case-view .case-controls-widget.medium .case-events-collapsible-container .fa-down-left-and-up-right-to-center {
    display: block; }
  .case-view .case-controls-widget.medium .case-events-collapsible-container .timeline-container {
    max-height: calc(90vh - 60px - 300px); }
  .case-view .case-controls-widget.medium .case-events-collapsible-container.collapsed .timeline-container {
    display: none; }
  .case-view .case-controls-widget.medium .case-events-collapsible-container.collapsed .fa-up-right-and-down-left-from-center {
    display: block; }
  .case-view .case-controls-widget.medium .case-events-collapsible-container.collapsed .fa-down-left-and-up-right-to-center {
    display: none; }

.case-view .case-controls-widget.large {
  height: auto;
  width: 80vw;
  height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  border: 1px solid #dddddd;
  position: fixed; }
  .case-view .case-controls-widget.large .fa-window-maximize {
    color: white; }
  .case-view .case-controls-widget.large #case-opinion-form {
    border-top: 0px solid #dddddd;
    display: flex; }
    .case-view .case-controls-widget.large #case-opinion-form .chat-box {
      flex-grow: 1; }
    .case-view .case-controls-widget.large #case-opinion-form textarea {
      height: unset;
      flex-grow: 1; }
  .case-view .case-controls-widget.large .case-controls-contents {
    display: flex;
    align-items: stretch;
    flex: 1 1 0; }
  .case-view .case-controls-widget.large .case-form-container {
    flex-grow: 1;
    display: flex; }
  .case-view .case-controls-widget.large .case-events-collapsible-container {
    display: none; }

.case-view .case-controls-widget.unclaimed .case-events-side-container {
  width: 100%; }

.case-view .case-controls-widget.claimed .case-events-side-container {
  max-width: 500px; }

.standard-main.case-standard-main {
  overflow-y: hidden; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding: 1em; }

.case-archived {
  opacity: 60%; }

.case-number {
  font-size: 4em;
  font-weight: bold; }

.disabled {
  pointer-events: none;
  opacity: 50%; }

.case-view .case-details {
  padding-right: 0.5rem;
  height: 100%;
  overflow-y: auto; }
  .case-view .case-details .border-right-3 {
    border-right: 3px solid; }

.case-view .case-bottom-buffer {
  margin-bottom: 500px; }

.case-view .case-context-cards {
  padding-bottom: 0.5rem; }
  @media (min-width: 1280px) {
    .case-view .case-context-cards .flex-1280-row {
      flex-direction: row; }
      .case-view .case-context-cards .flex-1280-row > div {
        width: 50%; } }
  .case-view .case-context-cards .related-parties-card {
    flex-grow: 1; }

table.matching-grid {
  width: 100%;
  border-spacing: 1rem; }
  table.matching-grid thead th {
    border-bottom: 1px solid #222222;
    padding-bottom: 1rem;
    text-align: left; }
  table.matching-grid tbody tr th {
    text-align: left;
    width: 150px;
    padding-bottom: 1rem; }
  table.matching-grid tbody tr td {
    border-bottom: 1px solid #222222;
    padding-bottom: 1rem;
    width: 50%; }

.edd .cra-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .edd .cra-details > div {
    flex-basis: 32%; }
    .edd .cra-details > div:first-child {
      margin-left: 0rem; }

.edd .political-exposure {
  font-size: 16px;
  font-weight: bold; }

.edd .political-exposure-small-box {
  font-size: 13px;
  font-weight: bold;
  width: 40%; }

.edd .high-risk,
.edd .low-risk,
.edd .medium-risk {
  border-radius: 8px;
  padding: 12px 16px 12px 16px; }

.edd .high-risk {
  color: #e83434;
  background-color: #FFF2EF; }

.edd .low-risk {
  background-color: #E3F6ED;
  color: #23a968; }

.edd .medium-risk {
  background-color: #f6f6f6; }

.edd .big-text {
  font-size: 28px; }

.edd .border-top {
  border-top: 1px solid #DEDEE3; }

.adverse-media .entry {
  margin-bottom: 10px;
  border-bottom: 1px solid #DEDEE3; }
  .adverse-media .entry:last-child {
    border: unset; }
  .adverse-media .entry .read-status {
    flex: 1;
    font-size: 2rem;
    color: #23a968;
    text-align: right;
    display: none; }
  .adverse-media .entry .snippet {
    color: #5e5e5e;
    line-height: 1.1rem;
    margin-bottom: 1rem; }
  .adverse-media .entry .search-terms {
    text-align: right;
    margin-bottom: 10px; }
    .adverse-media .entry .search-terms em {
      border-radius: 3rem;
      font-style: normal;
      padding: 0.2rem 0.4rem;
      display: inline-block;
      margin-bottom: 0.2rem;
      background: #EBEBEF;
      color: #62626A; }
  .adverse-media .entry.viewed .read-status {
    display: block; }
  .adverse-media .entry.viewed a {
    color: #dddddd; }

.case-documents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .case-documents .document-thumbnail {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; }

.related-case.pending a {
  color: #62626A; }

.related-case.pending i {
  background-color: #f4f5f6; }

.related-case.negative a, .related-case.positive a, .related-case.neutral a {
  color: white; }

.related-case.negative i, .related-case.positive i, .related-case.neutral i {
  color: white; }

.related-case.positive a {
  color: #23a968; }

.related-case.positive i {
  background-color: #23a968; }

.related-case.negative a {
  color: #e83434; }

.related-case.negative i {
  background-color: #e83434; }

.related-case.neutral a {
  color: #00929b; }

.related-case.neutral i {
  background-color: #00929b; }

.related-case.archived a {
  color: #62626A; }

.related-case.archived i {
  background-color: #f4f5f6; }

.no-border {
  border: none; }

.thumbnail-container {
  display: inline-block;
  position: relative;
  width: 125px;
  height: 125px;
  margin: 5px;
  border-radius: 5px;
  overflow: hidden; }

.thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.remove-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: white;
  color: #e83434;
  font-size: 12px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #e83434; }

.file-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #00929b;
  font-weight: bold; }

.no-results {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #a3a3a3; }

.card.collapsible {
  margin-top: 0.5rem; }
  .card.collapsible .summary {
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    cursor: pointer; }
    .card.collapsible .summary.collapsed {
      border-bottom: none; }
      .card.collapsible .summary.collapsed .toggle {
        -ms-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg); }
    .card.collapsible .summary .title {
      flex: 1 1 0; }
    .card.collapsible .summary #title-chip {
      z-index: 99; }
    .card.collapsible .summary .chip {
      cursor: default; }
      .card.collapsible .summary .chip i {
        color: #00929b;
        background: none; }
    .card.collapsible .summary .chip a {
      color: #00929b;
      cursor: pointer; }
    .card.collapsible .summary .toggle {
      margin: 10px;
      padding: 4px;
      font-size: 1.1em;
      -moz-transition: all 0.25s linear;
      -webkit-transition: all 0.25s linear;
      transition: all 0.25s linear;
      cursor: pointer; }
      .card.collapsible .summary .toggle::before {
        content: "\f107"; }
  .card.collapsible .details {
    overflow: hidden;
    transition: height 0.25s ease-in; }
    .card.collapsible .details.collapsed {
      transition: height 0.25s ease-out; }
    .card.collapsible .details .pane.f {
      flex: 1 1 content; }

.number-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100px;
  height: 100px;
  padding: 0.5rem;
  margin: 0.5rem;
  justify-content: space-between; }
  .number-block .small-number {
    font-size: 12pt;
    font-weight: bold; }
  .number-block .big-number {
    font-size: 28pt;
    font-weight: bold; }

.card {
  background: white;
  border-radius: 0.5rem;
  padding: 0rem; }
  .card > *:first-child {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-bottom: 1px solid #dedee3; }
    .card > *:first-child:last-child {
      border-bottom-width: 0px; }
  .card > h2:first-child {
    margin: 0px;
    padding-bottom: 1em;
    padding-top: 1em; }

.flex-grow-3-components {
  flex-grow: 1;
  max-width: 33%; }

.chip {
  border-radius: 1000px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: white;
  font-weight: 600; }
  .chip i {
    display: inline-block;
    height: 1em;
    width: 1em;
    background: white;
    padding: 4px;
    border-radius: 1000px;
    text-align: center; }
  .chip.circular {
    min-width: 12px;
    display: inline-block;
    text-align: center; }
  .chip.positive {
    background-color: #23a968;
    color: white; }
    .chip.positive i {
      color: #23a968;
      opacity: 0.9; }
  .chip.negative {
    background-color: #e83434;
    color: white; }
    .chip.negative i {
      color: #e83434;
      opacity: 0.9; }
  .chip.neutral {
    background-color: #00929b;
    color: white; }
    .chip.neutral i {
      color: #00929b;
      opacity: 0.9; }
  .chip.grey {
    color: #62626a;
    background-color: #ebebef; }
    .chip.grey.large {
      padding: 6px 12px; }
  .chip.white {
    color: #62626a;
    background-color: white; }
  .chip.small {
    font-size: 10px; }
  .chip.pending {
    background-color: #ebebef;
    color: #62626a; }
    .chip.pending i {
      color: #62626a;
      opacity: 0.9; }

.number-icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  background: white;
  padding: 4px;
  border-radius: 1000px;
  text-align: center;
  font-weight: bold;
  line-height: 1em; }

.relycomply-dialog {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.12); }

.bg-white {
  background-color: white;
  color: #222222;
  border: 1px solid #f6f6f6; }

.bg-lightgrey {
  color: #222222;
  background-color: #f6f6f6; }

.bg-mediumgrey {
  color: #222222;
  background-color: #dddddd; }

.bg-black {
  color: #f6f6f6;
  background-color: #222222; }

.bg-y,
.bg-positive,
.bg-success {
  background-color: #23a968;
  color: white; }

.bg--,
.bg-negative,
.bg-failure {
  background-color: #e83434;
  color: white; }

.bg-failure-inverse {
  background-color: white;
  color: #e83434;
  border: 1px solid #f6f6f6; }

.bg-neutral {
  background-color: gray;
  color: white; }

.bg-pending {
  background-color: white;
  color: #222222; }

.bg-archived {
  background-color: #dddddd;
  color: #5e5e5e; }

.stats-block {
  padding: 12px;
  background: #ffffff;
  border-radius: 8px;
  width: 300px; }
  .stats-block .stats-block-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 8px; }
  .stats-block .stats-block-subtitle {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 1em; }
  .stats-block.negative .stats-block-title {
    color: #e83434; }
  .stats-block.positive .stats-block-title {
    color: #23a968; }
  .stats-block.neutral .stats-block-title {
    color: #00929b; }
  .stats-block .stats-block-chip {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.01em;
    /* Grey 5 */
    color: #62626A;
    background: #EBEBEF;
    border-radius: 1000px;
    padding: 4px 8px; }
    .stats-block .stats-block-chip:empty {
      display: none; }

.chart-container {
  background: white;
  border-radius: 0.5rem;
  padding: 0.5rem;
  padding-top: 0px; }

.header-input {
  position: relative; }
  .header-input label {
    color: #62626A;
    top: calc(-1rem - 4px);
    position: absolute;
    font-weight: 400;
    left: 4px; }

#modal-dialog {
  background: none;
  overflow: hidden; }
  #modal-dialog::backdrop {
    background-color: black;
    opacity: 0.6; }
  #modal-dialog:focus-visible {
    outline: none; }
  #modal-dialog .modal-dialog-waiting {
    color: white;
    animation: spinner-opacity-fade-in 3s ease-in;
    text-align: center; }
    #modal-dialog .modal-dialog-waiting .modal-dialog-spinner {
      width: 100px;
      height: 100px;
      background-image: url("/static/img/relycomply-logo-spinner-white.svg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100px 100px;
      animation: spinner-rotation 3s infinite ease-in-out; }

.h2-icon {
  font-size: 24px; }

.configuration-structure pre {
  margin: 0px; }

.configuration-structure table {
  border-collapse: collapse; }
  .configuration-structure table th {
    text-align: left;
    vertical-align: top;
    background-color: #f6f6f6; }
  .configuration-structure table td {
    background-color: white; }
  .configuration-structure table td,
  .configuration-structure table th {
    border: 1px solid lightgrey;
    padding: 0.5rem; }

.configuration-structure ul {
  list-style: none;
  padding: 0;
  width: 100%; }

.configuration-structure ul {
  width: 100%;
  margin: 0; }
  .configuration-structure ul li {
    margin-bottom: 0.5rem; }

.configuration-structure table table,
.configuration-structure ul table {
  width: 100%; }
  .configuration-structure table table th,
  .configuration-structure ul table th {
    width: 200px; }

.configuration-structure div.parameters-root {
  display: flex;
  flex-direction: column; }
  .configuration-structure div.parameters-root > * {
    width: 600px; }
    .configuration-structure div.parameters-root > * th {
      width: 200px; }

.configuration-structure a {
  font-weight: bold; }

.chip.match-score {
  padding: 6px 12px 6px 12px;
  gap: 8px;
  border-radius: 8px; }
  .chip.match-score.ismatch {
    color: white;
    background-color: #e83434; }
    .chip.match-score.ismatch .chip {
      background-color: white;
      color: #e83434; }
  .chip.match-score.isnotmatch {
    background-color: #23a968;
    color: white; }
    .chip.match-score.isnotmatch .chip {
      color: #23a968;
      background-color: white; }
  .chip.match-score.neutral {
    color: white;
    background-color: #00929b; }
    .chip.match-score.neutral .chip {
      background-color: white;
      color: #00929b; }

.small-td {
  width: 40px; }

.checklist-item.negative {
  color: #e52626; }

.checklist-item.positive {
  color: #222222; }

.customer-type-icon {
  margin: 0px 16px;
  font-size: 24px; }

.customer-summary .pane {
  margin-block: 8px; }

.customer-summary.card > *:first-child {
  border-bottom: none; }

.customer-summary .chip.case-count {
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 12px; }
  .customer-summary .chip.case-count .chip {
    color: white; }
  .customer-summary .chip.case-count.empty > a {
    color: #5e5e5e; }
    .customer-summary .chip.case-count.empty > a .chip {
      background-color: #5e5e5e; }
  .customer-summary .chip.case-count.negative > a {
    color: #e83434; }
    .customer-summary .chip.case-count.negative > a .chip {
      background-color: #e83434; }
  .customer-summary .chip.case-count.closed > a {
    color: #5e5e5e; }
    .customer-summary .chip.case-count.closed > a .chip {
      background-color: #5e5e5e; }
  .customer-summary .chip.case-count.archived > a {
    color: #8d8d8d; }
    .customer-summary .chip.case-count.archived > a .chip {
      background-color: #8d8d8d; }

.customer-summary .chip.indicator {
  box-shadow: 2px 2px 4px #5e5e5e; }

.customer-summary .indicator-icon {
  font-size: 12px;
  margin-right: 0px; }

.customer-detail .related-party-node {
  background: #F4F5F6;
  display: block;
  margin: 8px;
  padding: 8px;
  border-radius: 4px;
  width: 160px; }

.customer-detail .customer-documents {
  display: flex;
  flex-wrap: wrap; }
  .customer-detail .customer-documents > * {
    margin-right: 1rem;
    margin-bottom: 1rem; }

.customer-assessment-diagrams h2 {
  margin-top: 1em;
  margin-bottom: 1em; }

.customer-assessment-diagrams .assessment-archived {
  display: none;
  opacity: 0.4; }

.customer-assessment-diagrams.show-archived .assessment-archived {
  display: flex; }

.screening-detail .screening-error,
.assessment-detail .screening-error {
  color: #AC450A;
  background-color: #FFEEDF;
  border: 1px solid #AC450A; }
  .screening-detail .screening-error > :first-child,
  .assessment-detail .screening-error > :first-child {
    border: unset; }
  .screening-detail .screening-error .btn,
  .assessment-detail .screening-error .btn {
    background-color: #AC450A;
    color: white;
    border: 1px solid #AC450A; }

.customer-detail,
.screening-detail,
.assessment-detail {
  gap: 2rem;
  flex-wrap: wrap; }
  .customer-detail > :first-child,
  .screening-detail > :first-child,
  .assessment-detail > :first-child {
    flex-basis: 0%;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 400px; }
  .customer-detail > :last-child,
  .screening-detail > :last-child,
  .assessment-detail > :last-child {
    flex-basis: 50%;
    flex-shrink: 1; }

table.customer-assessments tr.archived {
  display: none; }

table.customer-assessments.show-archived tr.archived {
  display: table-row; }

.assessment-diagram-headings {
  display: flex; }
  .assessment-diagram-headings > h3 {
    width: 160px;
    margin-right: 60px;
    margin-top: 0px; }

.new-assessment-diagram-node {
  width: 160px; }

.related-assessment-node {
  border-style: solid;
  border-color: #dddddd; }

.related-assessment-node,
.new-assessment-diagram-node {
  display: block;
  border-radius: 8px;
  padding: 8px;
  background: white; }
  .related-assessment-node a,
  .new-assessment-diagram-node a {
    color: black;
    display: block; }
    .related-assessment-node a .node-label,
    .new-assessment-diagram-node a .node-label {
      font-weight: 500;
      margin-bottom: 16px; }
      .related-assessment-node a .node-label .node-sublabel,
      .new-assessment-diagram-node a .node-label .node-sublabel {
        font-weight: 400;
        color: #5e5e5e; }
    .related-assessment-node a .node-status.chip,
    .new-assessment-diagram-node a .node-status.chip {
      text-align: center;
      padding-top: 16px;
      padding-bottom: 16px;
      border-radius: 2px;
      display: block; }
      .related-assessment-node a .node-status.chip.pending, .related-assessment-node a .node-status.chip.archived,
      .new-assessment-diagram-node a .node-status.chip.pending,
      .new-assessment-diagram-node a .node-status.chip.archived {
        background: #ebebef;
        color: #222222; }
  .related-assessment-node button,
  .new-assessment-diagram-node button {
    width: 100%;
    margin-top: 4px; }

.assessment-diagram-node {
  display: block;
  width: 160px;
  border-radius: 8px;
  padding: 8px;
  background: white;
  margin-bottom: 20px; }
  .assessment-diagram-node a {
    color: black;
    display: block; }
    .assessment-diagram-node a .node-label {
      font-weight: 500;
      margin-bottom: 16px; }
    .assessment-diagram-node a .node-status.chip {
      text-align: center;
      padding-top: 16px;
      padding-bottom: 16px;
      border-radius: 2px;
      display: block; }
      .assessment-diagram-node a .node-status.chip.pending, .assessment-diagram-node a .node-status.chip.archived {
        background: #ebebef;
        color: #222222; }
  .assessment-diagram-node button {
    width: 100%;
    margin-top: 4px; }

.assessment-diagram .elbow-link-container {
  width: 40px;
  position: relative; }
  .assessment-diagram .elbow-link-container svg.assessment-diagram-link {
    position: absolute; }
    .assessment-diagram .elbow-link-container svg.assessment-diagram-link path {
      fill: none;
      stroke: black;
      stroke-width: 2px;
      stroke-linecap: butt;
      stroke-linejoin: miter;
      stroke-opacity: 1; }
    .assessment-diagram .elbow-link-container svg.assessment-diagram-link.positive path {
      stroke: #23a968; }
    .assessment-diagram .elbow-link-container svg.assessment-diagram-link.negative path {
      stroke: #e83434; }
    .assessment-diagram .elbow-link-container svg.assessment-diagram-link.neutral path {
      stroke: #00929b; }

.related-parties-diagram-link {
  position: absolute; }
  .related-parties-diagram-link path {
    fill: none;
    stroke: black;
    stroke-width: 2px;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    stroke-opacity: 1; }

.outline-error {
  border: 2px solid #e83434 !important; }

.error-message {
  font-weight: 100;
  font: normal; }

.transaction-stream-schema {
  border-collapse: collapse;
  flex-basis: 600px;
  flex-shrink: 1;
  flex-grow: 0; }
  .transaction-stream-schema td,
  .transaction-stream-schema th {
    padding: 0.75rem 4rem 0.75rem 0.75rem;
    text-align: left; }
  .transaction-stream-schema th {
    text-transform: uppercase; }
  .transaction-stream-schema tbody tr:nth-child(2n + 1) {
    background-color: #f6f6f6; }

.rule-step {
  margin: 1rem 0; }
  .rule-step .rule-step-header {
    padding: 0px;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 1px solid #f6f6f6; }
    .rule-step .rule-step-header > * {
      padding: 0.5rem 1rem 0.5rem 0.5rem; }
      .rule-step .rule-step-header > *:first-child {
        background: #23a968;
        border-top-left-radius: 8px;
        color: white;
        padding-right: 3rem;
        flex-basis: 600px;
        flex-grow: 0;
        flex-shrink: 1;
        box-sizing: border-box; }
  .rule-step .rule-step-content {
    padding-top: 1rem; }
    .rule-step .rule-step-content > *:first-child {
      padding-right: 1rem; }
    .rule-step .rule-step-content > *:last-child {
      font-family: monospace; }

.dataflow-step-description {
  width: 600px; }

.developer-tools .developer-token {
  background: white;
  color: #23a968;
  border: 1px solid #dddddd;
  display: inline-block;
  font-weight: bold;
  font-family: monospace; }

.thumbnails-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; }

.small-document-thumbnail {
  gap: 9px; }
  .small-document-thumbnail .small-thumbnail {
    width: 36px;
    height: 36px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid lightgrey;
    display: block;
    justify-content: center;
    align-items: center; }
    .small-document-thumbnail .small-thumbnail.curved {
      border-radius: 4px; }

.document-thumbnail {
  background-color: white;
  padding: 0.5rem;
  width: 300px;
  border-radius: 8px; }
  .document-thumbnail .thumbnail {
    display: block;
    width: 100%;
    height: 300px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 2px;
    border: 1px solid lightgrey;
    display: flex;
    justify-content: center;
    align-items: center; }
    .document-thumbnail .thumbnail.curved {
      border-radius: 4px; }
  .document-thumbnail .thumbnail-placeholder {
    font-size: 6rem;
    color: #dddddd; }
  .document-thumbnail .thumbnail-upload-form {
    display: block; }
    .document-thumbnail .thumbnail-upload-form > :last-child {
      text-align: right; }
    .document-thumbnail .thumbnail-upload-form input {
      width: 300px; }
  .document-thumbnail .document-label {
    font-weight: 500;
    font-size: 16px; }

ul.check-list {
  padding: 0px;
  margin: 0px;
  list-style: none; }
  ul.check-list li {
    margin-bottom: 2px;
    padding: 0.5rem;
    color: white; }
    ul.check-list li > div:first-child {
      font-weight: bold;
      display: flex;
      justify-content: space-between; }
    ul.check-list li.check-list-success {
      background: #23a968; }
    ul.check-list li.check-list-failure {
      background: #e83434; }

ul.check-list-large li {
  margin-bottom: 0.5rem; }

ul.check-list-light {
  padding: 0px;
  margin: 0px;
  list-style: none; }
  ul.check-list-light li {
    padding: 0.5rem;
    color: white;
    border: 2px solid black; }
    ul.check-list-light li > div:first-child {
      font-weight: bold;
      display: flex;
      justify-content: space-between; }
    ul.check-list-light li.check-list-success {
      color: #23a968;
      border-color: #23a968;
      background: #59b475; }
    ul.check-list-light li.check-list-failure {
      color: #e83434;
      border-color: #e83434;
      background: #ed5d5d; }

.error-page {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }
  .error-page h1 {
    color: #e83434; }
  .error-page img {
    width: 300px; }

input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="datetime"],
textarea,
select {
  background-color: white;
  color: black;
  border: 1px solid #dddddd;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0px 10px;
  line-height: 34px; }
  input[type="text"] option,
  input[type="password"] option,
  input[type="date"] option,
  input[type="email"] option,
  input[type="number"] option,
  input[type="datetime"] option,
  textarea option,
  select option {
    padding: 0px; }

textarea {
  resize: none; }

input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: textfield; }

select[multiple] {
  border-radius: 5px; }

button {
  cursor: pointer; }

.select-wrapper {
  position: relative;
  display: inline-block; }
  .select-wrapper select {
    padding-right: 20px !important; }

.select-wrapper::after {
  content: "▼";
  font-size: 1rem;
  top: 0;
  right: 0.5rem;
  position: absolute;
  background: transparent; }

.multiselect {
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: calc(0.5rem + 2px); }
  .multiselect input {
    border-bottom-width: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-top: 0.5rem; }
  .multiselect select {
    margin-bottom: 0.5rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    height: 20em;
    width: 100%; }

.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.has-value.is-pseudo-focused.Select--single
> .Select-control
.Select-value
.Select-value-label {
  color: black; }

.dash-dropdown .Select-control {
  border-color: #dddddd; }

.DateRangePickerInput input {
  background-color: none;
  border: 0px solid #dddddd;
  border-radius: 0px;
  padding: 0px;
  box-sizing: border-box;
  padding: 11px 11px 9px; }

.DateRangePickerInput {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .DateRangePickerInput.DateRangePickerInput__withBorder {
    border-radius: 5px;
    border: 1px solid #dddddd; }
  .DateRangePickerInput .DateInput_input {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit; }
  .DateRangePickerInput .DateInput {
    background-color: transparent; }
  .DateRangePickerInput .DateInput_fang {
    top: 30px !important; }
  .DateRangePickerInput .DateRangePicker_picker {
    top: 41px !important; }
  .DateRangePickerInput .DateRangePickerInput_arrow_svg {
    height: 16px; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important; }

input[type="number"] {
  -moz-appearance: textfield !important; }

form.standard-form .card, .test-super-form .card {
  padding: 40px;
  width: auto;
  width: min-content;
  min-width: 70%; }

form.standard-form .standard-form-field-container, .test-super-form .standard-form-field-container {
  margin-bottom: 24px; }

form.standard-form .standard-form-label-container, .test-super-form .standard-form-label-container {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center; }
  form.standard-form .standard-form-label-container label, .test-super-form .standard-form-label-container label {
    text-transform: uppercase; }
  form.standard-form .standard-form-label-container .help-text-icon, .test-super-form .standard-form-label-container .help-text-icon {
    background: #dddddd; }

form.standard-form .standard-form-buttons, .test-super-form .standard-form-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #f6f6f6;
  padding-top: 24px;
  gap: 8px; }

form.standard-form input[type="text"],
form.standard-form input[type="email"],
form.standard-form input[type="password"],
form.standard-form input[type="date"],
form.standard-form input[type="number"],
form.standard-form textarea,
form.standard-form .rely-select, .test-super-form input[type="text"],
.test-super-form input[type="email"],
.test-super-form input[type="password"],
.test-super-form input[type="date"],
.test-super-form input[type="number"],
.test-super-form textarea,
.test-super-form .rely-select {
  min-width: 30rem; }

form.standard-form .rely-select, .test-super-form .rely-select {
  display: inline-block; }

form.standard-form .select-wrapper, .test-super-form .select-wrapper {
  min-width: 30rem; }

form.standard-form .helptext, .test-super-form .helptext {
  color: #5e5e5e; }

.vertical-form p {
  margin-bottom: 1rem; }

.vertical-form label {
  display: block;
  text-transform: uppercase;
  margin-bottom: 2px; }

.vertical-form input[type="text"],
.vertical-form input[type="email"],
.vertical-form input[type="password"],
.vertical-form input[type="number"],
.vertical-form select {
  display: block;
  width: 100%; }

.vertical-form ul[id] {
  padding-left: 0;
  border: 1px solid #dddddd;
  border-radius: 4px;
  max-height: 15rem;
  overflow-y: auto; }
  .vertical-form ul[id] li {
    list-style: none; }

.vertical-form .select-wrapper {
  width: 100%; }

form.horizontal-form label {
  margin-left: 5px;
  font-weight: bold;
  text-transform: uppercase; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  margin-right: 20px !important; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  margin-top: 1.5px !important;
  margin-left: 1.5px !important; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 0 !important;
  float: right !important;
  margin-left: 3px !important; }

dialog {
  border: none; }

input.space-between-inputs:not(:last-child) {
  margin-right: 5px;
  margin-bottom: 5px; }

input[type="text"]:read-only,
input[type="email"]:read-only,
input[type="password"]:read-only,
input[type="number"]:read-only {
  cursor: not-allowed;
  background-color: lightgray; }

.form-details {
  width: 1322px;
  min-width: 1131px;
  max-width: 75%; }

.generic-workflow-debug-screen .generic-state-machine-log .context-cell .toggle {
  display: block;
  margin-right: 1rem;
  cursor: pointer; }

.generic-workflow-debug-screen .generic-state-machine-log .context-cell .full {
  display: none; }

.generic-workflow-debug-screen .generic-state-machine-log .context-cell.expanded .preview {
  display: none; }

.generic-workflow-debug-screen .generic-state-machine-log .context-cell.expanded .full {
  display: flex; }

.generic-workflow-input-layout {
  display: flex;
  flex-wrap: wrap-reverse;
  margin-left: 1rem;
  gap: 1rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem; }

.generic-workflow-input-information {
  min-width: 400px;
  flex-grow: 1;
  flex-basis: 400px; }

.generic-workflow-template blockquote {
  border-left: 3px solid #23a968;
  margin-left: 0.5rem;
  padding: 1rem;
  background: white; }

.generic-workflow-template table {
  border-collapse: collapse;
  width: 100%; }
  .generic-workflow-template table thead {
    border-top: 5px solid #2e2e2e;
    border-bottom: 1px solid #2e2e2e; }
    .generic-workflow-template table thead th {
      text-align: left; }
  .generic-workflow-template table tbody tr:nth-child(2n) {
    background-color: #dddddd; }
  .generic-workflow-template table tbody th {
    text-align: left;
    border-left: 3px solid #2e2e2e; }

.generic-workflow-template td, .generic-workflow-template th {
  padding: 0.5rem 0.25rem;
  vertical-align: top; }

.generic-workflow-input-form {
  flex-grow: 1;
  flex-basis: 400px;
  flex-basis: 1; }
  .generic-workflow-input-form .list-wrapper {
    max-width: 40vw; }
    .generic-workflow-input-form .list-wrapper .list-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline; }
      .generic-workflow-input-form .list-wrapper .list-header .btn {
        max-height: 1rem; }
  .generic-workflow-input-form .input-group {
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    .generic-workflow-input-form .input-group label {
      margin-bottom: 0.5em;
      width: 20em;
      font-weight: bold;
      display: inline-block; }
    .generic-workflow-input-form .input-group .input-wrapper {
      flex-grow: 1;
      width: 100%;
      max-width: 50vw; }
      .generic-workflow-input-form .input-group .input-wrapper .select-wrapper {
        width: 100%;
        max-width: 40vw; }
      .generic-workflow-input-form .input-group .input-wrapper .button-group {
        max-width: fit-content;
        background-color: #dddddd;
        border-radius: 12px; }
        .generic-workflow-input-form .input-group .input-wrapper .button-group button {
          border: none;
          background-color: inherit;
          font-size: 0.9em; }
        .generic-workflow-input-form .input-group .input-wrapper .button-group button:first-child {
          border-radius: 8px 0 0 8px; }
          .generic-workflow-input-form .input-group .input-wrapper .button-group button:first-child:hover {
            background-color: #5e5e5e;
            color: white; }
          .generic-workflow-input-form .input-group .input-wrapper .button-group button.selected:first-child {
            background-color: #5e5e5e;
            color: white; }
        .generic-workflow-input-form .input-group .input-wrapper .button-group button:nth-child(2) {
          border-radius: 0 8px 8px 0; }
          .generic-workflow-input-form .input-group .input-wrapper .button-group button:nth-child(2):hover {
            background-color: #5e5e5e;
            color: white; }
          .generic-workflow-input-form .input-group .input-wrapper .button-group button.selected:nth-child(2) {
            background-color: #5e5e5e;
            color: white; }
    .generic-workflow-input-form .input-group input[type="number"],
    .generic-workflow-input-form .input-group input[type="text"],
    .generic-workflow-input-form .input-group select {
      width: 100%;
      padding: 0.5rem;
      max-width: 40vw; }
    .generic-workflow-input-form .input-group .error-message {
      display: block;
      color: #ff795f;
      text-align: start;
      min-height: 14px;
      box-sizing: border-box;
      font-weight: bold; }

.field-set {
  border-color: #dddddd;
  border-style: solid;
  margin-bottom: 1em; }
  .field-set:empty {
    border: none; }

.form-width {
  max-width: 50rem; }

.upload-btn-wrapper {
  display: flex; }
  .upload-btn-wrapper .btn {
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    background-color: #dddddd;
    color: black;
    width: -webkit-fill-available; }
  .upload-btn-wrapper .attachment-indicator {
    max-width: 50%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 1em; }
  .upload-btn-wrapper input[type="file"]::file-selector-button {
    font-size: 0px;
    opacity: 0; }
  .upload-btn-wrapper input[type="file"] {
    max-width: 100%;
    font-weight: bold;
    font-size: 1em; }

.upload-btn {
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  background-color: black;
  color: white;
  width: 100%; }
  .upload-btn:hover {
    background-color: black; }

.form-builder-root .field-error-message {
  opacity: 0; }

.form-builder-root .has-error .field-error-message {
  color: #e83434;
  opacity: 1;
  transition: opacity 0.5s; }

.form-builder-root .has-error input[type="text"],
.form-builder-root .has-error input[type="email"],
.form-builder-root .has-error input[type="password"],
.form-builder-root .has-error input[type="date"],
.form-builder-root .has-error input[type="number"],
.form-builder-root .has-error textarea,
.form-builder-root .has-error .rely-select > div:first-of-type {
  border: 2px solid #e83434;
  transition: border-color 0.5s; }

details.collapsable-section {
  border-left: 1px solid lightgrey; }
  details.collapsable-section.collapsible-error {
    border-left: 2px solid #e83434; }
  details.collapsable-section summary {
    cursor: pointer;
    display: flex;
    list-style-type: none;
    align-items: center;
    padding-left: 0.5rem; }
    details.collapsable-section summary .summary-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      text-transform: uppercase; }
  details.collapsable-section summary::before {
    content: '\25B6'; }
  details.collapsable-section[open] > summary::before {
    content: '\25bc'; }
  details.collapsable-section .collapsable-section-content {
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px; }
    details.collapsable-section .collapsable-section-content > .collapsable-section {
      grid-column-start: 1;
      grid-column-end: span 5; }
    details.collapsable-section .collapsable-section-content > .list-field {
      grid-column-start: 1;
      grid-column-end: span 5; }

.tab-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 10px; }
  .tab-panel > .collapsable-section {
    grid-column-start: 1;
    grid-column-end: span 5; }
  .tab-panel > .list-field {
    grid-column-start: 1;
    grid-column-end: span 5; }

.form-button-container {
  padding: 0.5rem;
  border-top: 1px solid #dddddd; }

.standard-form-field-container.fullwidth {
  grid-column: 1 / span 5; }
  .standard-form-field-container.fullwidth .rely-select, .standard-form-field-container.fullwidth textarea {
    width: 80%; }
  .standard-form-field-container.fullwidth textarea {
    height: 10em; }

.goaml-report-main {
  background: white;
  padding: 0 5px;
  border-radius: 0.5rem; }
  .goaml-report-main form.standard-form .standard-form-label-container label, .goaml-report-main .test-super-form .standard-form-label-container label {
    font-size: smaller; }
  .goaml-report-main form.standard-form input[type="text"],
  .goaml-report-main form.standard-form input[type="email"],
  .goaml-report-main form.standard-form input[type="password"],
  .goaml-report-main form.standard-form input[type="date"],
  .goaml-report-main form.standard-form input[type="number"],
  .goaml-report-main form.standard-form textarea,
  .goaml-report-main form.standard-form .rely-select {
    min-width: 190px; }
  .goaml-report-main .case-details {
    overflow: visible; }

.identity-case {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; }
  .identity-case .identity-check-list {
    min-width: 300px;
    flex-grow: 1; }
  .identity-case .identity-documents {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    gap: 0.5rem;
    flex-basis: 50%; }

.login-screen {
  background-color: #f4f5f6; }

.organisation-select-form,
.login-form {
  background-color: white;
  color: black;
  padding: 2em;
  text-align: center;
  border-radius: 5px;
  min-width: 300px; }
  .organisation-select-form ul li,
  .login-form ul li {
    max-width: 300px; }
  .organisation-select-form img,
  .login-form img {
    width: 50%;
    margin-bottom: 1rem; }
  .organisation-select-form h1,
  .login-form h1 {
    font-weight: normal; }
  .organisation-select-form form,
  .login-form form {
    text-align: left; }
    .organisation-select-form form label,
    .login-form form label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold; }
    .organisation-select-form form input,
    .organisation-select-form form button,
    .login-form form input,
    .login-form form button {
      box-sizing: border-box;
      width: 100%; }
      .organisation-select-form form input:focus,
      .organisation-select-form form button:focus,
      .login-form form input:focus,
      .login-form form button:focus {
        outline: none;
        border: 1px solid #23a968; }
    .organisation-select-form form button.btn,
    .login-form form button.btn {
      width: 100%;
      margin-top: 1.5em;
      padding: 0.5em;
      text-align: center;
      display: block; }
  .organisation-select-form a,
  .login-form a {
    color: #222222;
    text-decoration: underline; }
  .organisation-select-form .password-reset-link,
  .login-form .password-reset-link {
    text-align: right; }

.organisation-select-form strong {
  text-align: left;
  margin-bottom: 0.5rem;
  width: 100%;
  display: block; }

.organisation-select-form .organisation-option {
  background: none;
  border-radius: 5px;
  border: 1px solid #dddddd;
  display: block;
  text-decoration: none;
  text-align: left; }
  .organisation-select-form .organisation-option *:first-child {
    font-size: 1.2em; }
  .organisation-select-form .organisation-option:hover {
    background-color: #23a968;
    color: white;
    border-color: #23a968; }

.organisation-select-form .organisation-options > form:last-child .organisation-option {
  border-bottom-width: 1px; }

div.principal-member-heading {
  display: inline-flex;
  flex: 2; }
  div.principal-member-heading div {
    padding: 1px;
    display: flex; }
    div.principal-member-heading div div {
      padding: 1px;
      display: flex;
      border-right-color: #0f0f0f;
      border-right-width: 4px;
      border-right-style: solid; }
      div.principal-member-heading div div h3 {
        margin: auto; }

.principal-member-card {
  width: 100%; }

.attention {
  color: #e83434;
  font-size: 20px; }

.case-alert .opinions .opinion-summary {
  height: 1rem;
  width: 1rem;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #dddddd; }

.case-alert .opinions .NotMatch {
  background-color: #23a968;
  border-color: #23a968;
  color: white; }

.case-alert .opinions .IsMatch {
  background-color: #e83434;
  border-color: #e83434;
  color: white; }

.case-alert .opinions .case-alert-note {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #dddddd; }
  .case-alert .opinions .case-alert-note .meta-data {
    color: #5e5e5e;
    font-size: smaller; }

.case-alert .case-alert-opinion-editor input {
  position: fixed;
  z-index: -100000;
  height: 0px;
  opacity: 0; }

.case-alert .case-alert-opinion-editor .opinion-choices {
  display: flex;
  justify-content: stretch; }
  .case-alert .case-alert-opinion-editor .opinion-choices label {
    flex-grow: 1;
    flex-basis: 1;
    flex-shrink: 1; }

.case-alert .case-alert-opinion-editor .opinion-choices label:first-child .opinion-choice {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; }

.case-alert .case-alert-opinion-editor .opinion-choices label:last-child .opinion-choice {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; }

.case-alert .case-alert-opinion-editor .opinion-choice {
  padding: 0.5rem 1rem;
  border: 1px solid #dddddd;
  text-align: center;
  font-weight: bold;
  cursor: pointer; }

.case-alert .case-alert-opinion-editor :checked ~ .opinion-choice {
  color: white; }
  .case-alert .case-alert-opinion-editor :checked ~ .opinion-choice.positive {
    border-color: #23a968;
    background: #23a968; }
  .case-alert .case-alert-opinion-editor :checked ~ .opinion-choice.negative {
    background-color: #e83434;
    border-color: #e83434; }
  .case-alert .case-alert-opinion-editor :checked ~ .opinion-choice.neutral {
    background-color: #00929b;
    border-color: #00929b; }

.case-alert .case-alert-note-editor textarea {
  width: 100%;
  border: 1px solid #dddddd; }

summary.list {
  list-style: none;
  font-size: smaller;
  color: #5e5e5e;
  font-weight: bold; }

summary.list::-webkit-details-marker {
  display: none; }

details[open] summary.list::after {
  content: attr(data-open); }

details:not([open]) summary.list::after {
  content: attr(data-close); }

.people-dashboard .stats {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 1fr 1fr; }
  .people-dashboard .stats .number-block {
    width: 160px;
    margin: 8px 0px; }
  .people-dashboard .stats > div:first-child {
    grid-row: 1 / 3; }
    .people-dashboard .stats > div:first-child > .number-block {
      height: calc(2 * 80px + 32px);
      width: calc(2 * 80px + 32px); }
      .people-dashboard .stats > div:first-child > .number-block span {
        font-size: 2rem; }

.people-dashboard .filter {
  min-width: 300px; }
  .people-dashboard .filter label {
    font-weight: bold;
    display: block;
    margin-top: 1rem; }

table.people-table.data-table td,
table.people-table.data-table th {
  text-align: left; }

.person-number {
  font-size: 4em;
  font-weight: bold; }

.person-details .person-detail-block {
  background: white;
  border-radius: 0.5rem; }
  .person-details .person-detail-block .person-fact span:last-child {
    flex-shrink: 0;
    text-align: right; }

.person-details .person-detail-block-short {
  background: white;
  border-radius: 0.5rem;
  max-width: 720px;
  min-width: 420px; }
  .person-details .person-detail-block-short .person-fact span:last-child {
    flex-shrink: 0;
    text-align: right; }

.person-fact-source {
  display: block;
  text-align: right; }

.alternate-row-colour:nth-of-type(even) {
  background: #F4F5F6; }

.highlight .hll {
  background-color: #ffffcc; }

.highlight .c {
  color: #0099ff;
  font-style: italic; }

/* Comment */
.highlight .err {
  color: #aa0000;
  background-color: #ffaaaa; }

/* Error */
.highlight .k {
  color: #006699;
  font-weight: bold; }

/* Keyword */
.highlight .o {
  color: #555555; }

/* Operator */
.highlight .ch {
  color: #0099ff;
  font-style: italic; }

/* Comment.Hashbang */
.highlight .cm {
  color: #0099ff;
  font-style: italic; }

/* Comment.Multiline */
.highlight .cp {
  color: #009999; }

/* Comment.Preproc */
.highlight .cpf {
  color: #0099ff;
  font-style: italic; }

/* Comment.PreprocFile */
.highlight .c1 {
  color: #0099ff;
  font-style: italic; }

/* Comment.Single */
.highlight .cs {
  color: #0099ff;
  font-weight: bold;
  font-style: italic; }

/* Comment.Special */
.highlight .gd {
  background-color: #ffcccc;
  border: 1px solid #cc0000; }

/* Generic.Deleted */
.highlight .ge {
  font-style: italic; }

/* Generic.Emph */
.highlight .gr {
  color: #ff0000; }

/* Generic.Error */
.highlight .gh {
  color: #003300;
  font-weight: bold; }

/* Generic.Heading */
.highlight .gi {
  background-color: #ccffcc;
  border: 1px solid #00cc00; }

/* Generic.Inserted */
.highlight .go {
  color: #aaaaaa; }

/* Generic.Output */
.highlight .gp {
  color: #000099;
  font-weight: bold; }

/* Generic.Prompt */
.highlight .gs {
  font-weight: bold; }

/* Generic.Strong */
.highlight .gu {
  color: #003300;
  font-weight: bold; }

/* Generic.Subheading */
.highlight .gt {
  color: #99cc66; }

/* Generic.Traceback */
.highlight .kc {
  color: #006699;
  font-weight: bold; }

/* Keyword.Constant */
.highlight .kd {
  color: #006699;
  font-weight: bold; }

/* Keyword.Declaration */
.highlight .kn {
  color: #006699;
  font-weight: bold; }

/* Keyword.Namespace */
.highlight .kp {
  color: #006699; }

/* Keyword.Pseudo */
.highlight .kr {
  color: #006699;
  font-weight: bold; }

/* Keyword.Reserved */
.highlight .kt {
  color: #007788;
  font-weight: bold; }

/* Keyword.Type */
.highlight .m {
  color: #ff6600; }

/* Literal.Number */
.highlight .s {
  color: #cc3300; }

/* Literal.String */
.highlight .na {
  color: #330099; }

/* Name.Attribute */
.highlight .nb {
  color: #336666; }

/* Name.Builtin */
.highlight .nc {
  color: #00aa88;
  font-weight: bold; }

/* Name.Class */
.highlight .no {
  color: #336600; }

/* Name.Constant */
.highlight .nd {
  color: #9999ff; }

/* Name.Decorator */
.highlight .ni {
  color: #999999;
  font-weight: bold; }

/* Name.Entity */
.highlight .ne {
  color: #cc0000;
  font-weight: bold; }

/* Name.Exception */
.highlight .nf {
  color: #cc00ff; }

/* Name.Function */
.highlight .nl {
  color: #9999ff; }

/* Name.Label */
.highlight .nn {
  color: #00ccff;
  font-weight: bold; }

/* Name.Namespace */
.highlight .nt {
  color: #330099;
  font-weight: bold; }

/* Name.Tag */
.highlight .nv {
  color: #003333; }

/* Name.Variable */
.highlight .ow {
  color: #000000;
  font-weight: bold; }

/* Operator.Word */
.highlight .w {
  color: #bbbbbb; }

/* Text.Whitespace */
.highlight .mb {
  color: #ff6600; }

/* Literal.Number.Bin */
.highlight .mf {
  color: #ff6600; }

/* Literal.Number.Float */
.highlight .mh {
  color: #ff6600; }

/* Literal.Number.Hex */
.highlight .mi {
  color: #ff6600; }

/* Literal.Number.Integer */
.highlight .mo {
  color: #ff6600; }

/* Literal.Number.Oct */
.highlight .sa {
  color: #cc3300; }

/* Literal.String.Affix */
.highlight .sb {
  color: #cc3300; }

/* Literal.String.Backtick */
.highlight .sc {
  color: #cc3300; }

/* Literal.String.Char */
.highlight .dl {
  color: #cc3300; }

/* Literal.String.Delimiter */
.highlight .sd {
  color: #cc3300;
  font-style: italic; }

/* Literal.String.Doc */
.highlight .s2 {
  color: #cc3300; }

/* Literal.String.Double */
.highlight .se {
  color: #cc3300;
  font-weight: bold; }

/* Literal.String.Escape */
.highlight .sh {
  color: #cc3300; }

/* Literal.String.Heredoc */
.highlight .si {
  color: #aa0000; }

/* Literal.String.Interpol */
.highlight .sx {
  color: #cc3300; }

/* Literal.String.Other */
.highlight .sr {
  color: #33aaaa; }

/* Literal.String.Regex */
.highlight .s1 {
  color: #cc3300; }

/* Literal.String.Single */
.highlight .ss {
  color: #ffcc33; }

/* Literal.String.Symbol */
.highlight .bp {
  color: #336666; }

/* Name.Builtin.Pseudo */
.highlight .fm {
  color: #cc00ff; }

/* Name.Function.Magic */
.highlight .vc {
  color: #003333; }

/* Name.Variable.Class */
.highlight .vg {
  color: #003333; }

/* Name.Variable.Global */
.highlight .vi {
  color: #003333; }

/* Name.Variable.Instance */
.highlight .vm {
  color: #003333; }

/* Name.Variable.Magic */
.highlight .il {
  color: #ff6600; }

/* Literal.Number.Integer.Long */
.react-tabs {
  -webkit-tap-highlight-color: transparent; }
  .react-tabs__tab-list {
    border-bottom: 1px solid #aaa;
    margin: 0 0 10px;
    padding: 0; }
  .react-tabs__tab {
    display: inline-block;
    border: 1px solid transparent;
    border-bottom: none;
    bottom: -1px;
    position: relative;
    list-style: none;
    padding: 6px 12px;
    cursor: pointer; }
    .react-tabs__tab--selected {
      background: #fff;
      border-color: #aaa;
      color: black;
      border-radius: 5px 5px 0 0; }
    .react-tabs__tab--disabled {
      color: GrayText;
      cursor: default; }
    .react-tabs__tab:focus {
      outline: none; }
      .react-tabs__tab:focus:after {
        content: "";
        position: absolute;
        height: 5px;
        left: -4px;
        right: -4px;
        bottom: -5px;
        background: #fff; }
  .react-tabs__tab-panel {
    display: none; }
    .react-tabs__tab-panel--selected {
      display: block; }

@keyframes spinner-rotation {
  0% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(359deg); } }

@keyframes spinner-opacity {
  0% {
    opacity: 0.1; }
  50% {
    opacity: 0.7; }
  100% {
    opacity: 0.1; } }

@keyframes spinner-opacity-fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

._dash-loading {
  background-image: url("/static/img/relycomply-logo-spinner.svg");
  color: transparent;
  height: 100%;
  position: absolute;
  background-position: center;
  width: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: 100px 100px;
  animation: spinner-rotation 3s infinite ease-in-out, spinner-opacity 9s infinite linear; }

.report section {
  border: none;
  border-bottom: 1px solid #dddddd; }

.report .explanation {
  padding: 0.5rem 0rem; }
  .report .explanation ul {
    padding-left: 20px; }

.report .double-border {
  border: 1px solid #222222;
  border-width: 5px 0px 1px 0px; }

.report h2.double-border {
  padding: 1rem 0 2rem 0; }

.report .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px; }

.report .grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px; }

.report .span-col-4 {
  grid-column: span 4 / auto;
  position: relative; }

.report .span-col-2 {
  grid-column: span 2 / auto;
  position: relative; }

.report .span-col-3 {
  grid-column: span 3 / auto;
  position: relative; }

.report .state-group {
  border-bottom: 1px solid #f6f6f6; }

.report .group-subtitle {
  text-align: center;
  white-space: nowrap;
  transform-origin: 70% 70%;
  font-weight: bold;
  transform: rotate(90deg); }
  .report .group-subtitle:before {
    content: "";
    padding-top: 110%;
    /* takes width as reference, + 10% for faking some extra padding */
    display: inline-block;
    vertical-align: middle; }

.report .dash-table .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr:not(:first-child):hover td {
  background-color: #dfdfdf !important; }

.report .dash-table .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr:not(:first-child):hover td:first-child {
  cursor: pointer; }

.report.workflow-status-report .case-section-title {
  margin-left: 0.5rem;
  font-weight: bold; }

.report.workflow-status-report .active-cases-section {
  flex-grow: 1;
  border-left: 1px solid #f6f6f6;
  border-right: 1px solid #f6f6f6;
  margin: 0px 2rem;
  padding: 0px 2rem; }

.report.workflow-status-report .workflow-status-section {
  border-top: 1px solid #dddddd; }

.report.system-report .period-selector {
  padding: 0 10px 0 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 50%; }
  .report.system-report .period-selector label {
    font-weight: bold;
    margin-right: 10px;
    margin-left: 10px; }
  .report.system-report .period-selector #time-period {
    flex-grow: 1; }

.report.system-report .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 4fr;
  grid-template-rows: 200px fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-items: stretch;
  align-items: stretch; }
  .report.system-report .container .chart {
    max-height: 200px;
    padding-left: 10px; }
  .report.system-report .container .break {
    height: 1px;
    border-top: 1px solid #dddddd;
    grid-column: 1 / -1; }

.report.system-report .total-container {
  display: flex;
  justify-content: center; }
  .report.system-report .total-container.with-border {
    border-left: 1px solid #f6f6f6; }

.report.management-report .container {
  display: grid;
  grid-template-columns: 6fr 1fr 1fr;
  grid-template-rows: 200px fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px; }

.report.management-report .dash-table {
  grid-column: 1/-1; }

.ring-chart-container {
  border-radius: 10px;
  padding: 16px 32px; }
  .ring-chart-container.positive {
    background: #D4EEDC; }
  .ring-chart-container.neutral {
    background: #FFE5D6; }
  .ring-chart-container.negative {
    background: #FDEBEB; }
  .ring-chart-container h1,
  .ring-chart-container h2 {
    font-weight: 700; }
    .ring-chart-container h1.positive,
    .ring-chart-container h2.positive {
      color: #59B475; }
    .ring-chart-container h1.neutral,
    .ring-chart-container h2.neutral {
      color: #FF783E; }
    .ring-chart-container h1.negative,
    .ring-chart-container h2.negative {
      color: #ED5D5D; }

.ring-chart {
  --ring-size: 100;
  --ring-stroke-width: 10;
  --ring-percent: 0;
  width: calc(1px * var(--ring-size));
  height: calc(1px * var(--ring-size));
  position: relative;
  display: block;
  margin: auto; }
  .ring-chart .cra-score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    height: -webkit-fill-available; }

.ring-chart::before {
  box-sizing: border-box;
  content: '';
  border: calc(1px * var(--ring-stroke-width)) solid white;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 0; }

.ring-chart svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0; }

.ring-chart circle {
  fill: none;
  stroke-width: calc(1px * (var(--ring-stroke-width) * 2) / (var(--ring-size) / 100));
  stroke-dasharray: 314;
  stroke-dashoffset: calc(314px * ((100 - var(--ring-percent)) / 100)); }
  .ring-chart circle.positive {
    stroke: #59B475; }
  .ring-chart circle.neutral {
    stroke: #FF783E; }
  .ring-chart circle.negative {
    stroke: #ED5D5D; }

.transaction-explorer {
  width: 100%;
  height: 100%;
  position: absolute;
  background: white;
  /* The Loading component has a terrible API 
   * This is the only way to get a solid style on it
   */
  /** 
   * Override tab styling
   * This is an abuse of CSS and probably quite fragile.
   * But it is practical for now
   */ }
  .transaction-explorer button {
    background: #f7f7f7;
    color: #222222;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 5px; }
    .transaction-explorer button:disabled {
      color: grey; }
  .transaction-explorer .result-layout > :last-child {
    flex-grow: 1; }
  .transaction-explorer .tab-parent.custom-tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 5px; }
  .transaction-explorer .custom-tabs::after {
    content: "-";
    flex-grow: 1;
    border-bottom: 1px solid lightgray;
    color: white; }
  .transaction-explorer .custom-tabs-container::before {
    content: "a";
    width: 5px;
    display: inline-block;
    color: white;
    border-bottom: 1px solid lightgray; }
  .transaction-explorer .custom-tabs-container .tab,
  .transaction-explorer .custom-tabs-container .tab:last-of-type {
    display: inline-block;
    background-color: #f9f9f9;
    border: 1px solid lightgrey;
    padding: 5px 10px;
    -webkit-transition: background-color, color 200ms;
    transition: background-color, color 200ms;
    width: 100%;
    text-align: center;
    box-sizing: border-box; }
  .transaction-explorer .custom-tabs-container .tab.tab--selected,
  .transaction-explorer .custom-tabs-container .tab.tab--selected:last-of-type {
    border-bottom: none;
    border-top: solid 2px #23a968;
    background: white; }
  .transaction-explorer .status-sub-bar {
    display: flex;
    align-items: center; }
    .transaction-explorer .status-sub-bar > * {
      margin: 0px 5px; }
  .transaction-explorer .status-filter,
  .transaction-explorer .status-filter a {
    background: #23a968;
    padding: 5px;
    border-radius: 5px;
    color: white;
    font-family: mono;
    font-weight: bold; }
  .transaction-explorer .result-or-definition-buttons {
    display: flex;
    align-items: center; }
    .transaction-explorer .result-or-definition-buttons label {
      cursor: pointer;
      display: flex;
      align-items: baseline; }
  .transaction-explorer .dash-spreadsheet-menu {
    padding: 0px 3px 3px 3px; }
  .transaction-explorer #message-container {
    display: flex;
    justify-content: center;
    align-items: center; }
    .transaction-explorer #message-container div {
      border: 1px solid #23a968;
      padding: 2rem; }
  .transaction-explorer #error-container {
    background: #e83434;
    color: white;
    padding: 5px;
    margin: 3px;
    font-weight: bold; }
  .transaction-explorer .error-marker {
    position: absolute;
    border-bottom: 2px dotted #e83434; }
  .transaction-explorer .data-cube-hidden {
    width: 2rem; }
    .transaction-explorer .data-cube-hidden > *:last-child {
      display: none; }
    .transaction-explorer .data-cube-hidden #data-explorer-toggle {
      cursor: pointer; }
      .transaction-explorer .data-cube-hidden #data-explorer-toggle > :first-child {
        display: none; }
  .transaction-explorer .data-cube-visible {
    width: 450px; }
    .transaction-explorer .data-cube-visible > *:last-child {
      display: flex; }
    .transaction-explorer .data-cube-visible #data-explorer-toggle {
      cursor: pointer; }
      .transaction-explorer .data-cube-visible #data-explorer-toggle > :last-child {
        display: none; }
    .transaction-explorer .data-cube-visible button {
      margin-bottom: 0.5rem; }
    .transaction-explorer .data-cube-visible .Select {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem; }
  .transaction-explorer #result-container:first-child:first-child:first-child {
    height: calc(100% - 20px) !important; }

.monitor-run-detail .table-container .pane.f {
  flex: auto; }

.transaction-screening-case .section {
  border-bottom: 5px solid #2e2e2e; }

.transaction-screening-case .transaction-details-section .card {
  width: 50%; }

.transaction-screening-case .screening-match .screening-match-header {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .transaction-screening-case .screening-match .screening-match-header .match-block {
    height: 1rem;
    width: 1rem;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center; }
    .transaction-screening-case .screening-match .screening-match-header .match-block.undecided {
      color: #dddddd; }
    .transaction-screening-case .screening-match .screening-match-header .match-block.match {
      background: #e83434;
      color: white; }
    .transaction-screening-case .screening-match .screening-match-header .match-block.not-match {
      background: #23a968;
      color: white; }

.transaction-screening-case .screening-match .screening-match-compare-table {
  display: flex;
  width: 100%; }
  .transaction-screening-case .screening-match .screening-match-compare-table > div {
    flex: 1 1; }
    .transaction-screening-case .screening-match .screening-match-compare-table > div > div {
      padding: 0.5rem 0rem; }
    .transaction-screening-case .screening-match .screening-match-compare-table > div > div:first-child {
      font-weight: bold;
      border-bottom: 1px solid #dddddd; }

.transaction-screening-case .screening-match-opinion-editor {
  padding: 0.5rem 0rem; }
  .transaction-screening-case .screening-match-opinion-editor input {
    position: fixed;
    z-index: -100000;
    height: 0px;
    opacity: 0; }
  .transaction-screening-case .screening-match-opinion-editor .opinion-choices {
    display: flex;
    justify-content: stretch;
    padding-top: 0.5rem; }
    .transaction-screening-case .screening-match-opinion-editor .opinion-choices label {
      flex-grow: 1;
      flex-basis: 1;
      flex-shrink: 1; }
  .transaction-screening-case .screening-match-opinion-editor .opinion-choices label:first-child .opinion-choice {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  .transaction-screening-case .screening-match-opinion-editor .opinion-choices label:last-child .opinion-choice {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }
  .transaction-screening-case .screening-match-opinion-editor .opinion-choice {
    padding: 0.5rem 1rem;
    border: 1px solid #dddddd;
    text-align: center;
    font-weight: bold;
    cursor: pointer; }
  .transaction-screening-case .screening-match-opinion-editor :checked ~ .opinion-choice {
    color: white; }
    .transaction-screening-case .screening-match-opinion-editor :checked ~ .opinion-choice.positive {
      border-color: #23a968;
      background: #23a968; }
    .transaction-screening-case .screening-match-opinion-editor :checked ~ .opinion-choice.negative {
      background-color: #e83434;
      border-color: #e83434; }
    .transaction-screening-case .screening-match-opinion-editor :checked ~ .opinion-choice.neutral {
      background-color: #00929b;
      border-color: #00929b; }

.transaction-screening-case .screening-match-automation {
  margin-bottom: 0.5rem; }

.transaction-screening-case .screening-match-notes .screening-match-note {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #dddddd; }
  .transaction-screening-case .screening-match-notes .screening-match-note .item-information {
    color: #a3a3a3;
    font-size: smaller; }
  .transaction-screening-case .screening-match-notes .screening-match-note .item-timestamp {
    display: flex;
    justify-content: space-between; }

.transaction-screening-case .screening-match-notes-editor textarea {
  width: 100%;
  border: 1px solid #dddddd; }

.transaction-monitoring-case .alerts {
  width: 50%;
  flex-shrink: 0;
  max-height: 400px;
  overflow-y: auto; }
  .transaction-monitoring-case .alerts.new-ui {
    width: auto; }
  .transaction-monitoring-case .alerts h2 {
    padding-top: 0.5rem; }
  .transaction-monitoring-case .alerts a.alert {
    color: #222222;
    display: block;
    padding: 0.5rem; }
    .transaction-monitoring-case .alerts a.alert:not(.new-ui) {
      margin: 0.5rem;
      padding-top: 0.5rem; }
    .transaction-monitoring-case .alerts a.alert.selected {
      background-color: white; }
      .transaction-monitoring-case .alerts a.alert.selected:not(.new-ui) {
        margin: 0.5rem;
        padding-top: 0.5rem;
        border-bottom-left-radius: 0.5rem;
        border-top-left-radius: 0.5rem;
        margin: 0rem;
        padding: 0.5rem;
        border: none; }
      .transaction-monitoring-case .alerts a.alert.selected * {
        color: #e83434 !important; }
    .transaction-monitoring-case .alerts a.alert.not-selected:hover * {
      color: #23a968 !important; }
    .transaction-monitoring-case .alerts a.alert .alert-title {
      padding-bottom: 0.5rem;
      font-weight: bold; }
    .transaction-monitoring-case .alerts a.alert p {
      color: #5e5e5e; }

.transaction-monitoring-case .alert-details {
  flex: 1; }
  .transaction-monitoring-case .alert-details.new-ui {
    flex: auto; }
  .transaction-monitoring-case .alert-details h2 {
    padding-left: 0.5em; }
  .transaction-monitoring-case .alert-details .border-top {
    border-top: 1px solid #DEDEE3; }
  .transaction-monitoring-case .alert-details .whitelist-controls > * {
    display: none; }
  .transaction-monitoring-case .alert-details .whitelist-controls.whitelist-inactive > .whitelist-inactive {
    display: flex; }
  .transaction-monitoring-case .alert-details .whitelist-controls.whitelist-confirm > .whitelist-confirm {
    display: flex; }
  .transaction-monitoring-case .alert-details .whitelist-controls.whitelist-active > .whitelist-active {
    display: flex; }

.transaction-monitoring-case .details-table {
  border-collapse: collapse; }

.transaction-monitoring-case #transaction-details[busy] .rows-loading {
  display: flex;
  justify-content: center;
  padding: 2em; }
  .transaction-monitoring-case #transaction-details[busy] .rows-loading i {
    font-size: 4em; }

.transaction-monitoring-case #transaction-details[busy] .transaction-table {
  display: none; }

.transaction-monitoring-case .rows-loading {
  display: none; }

.transaction-monitoring-case .data-table-scroll-pane {
  overflow-x: auto;
  width: 100%; }

.transaction-monitoring-case .data-table {
  display: table; }
  .transaction-monitoring-case .data-table .alert-row {
    background-color: #e83434;
    color: white; }
  .transaction-monitoring-case .data-table .alert-row + .alert-row {
    border-top: 1px solid #f6f6f6; }

.disabled-link {
  color: #8d8d8d; }

body {
  color: #222222;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  font-size: 13px; }

h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  /* identical to box height, or 129% */
  letter-spacing: -0.01em;
  text-transform: capitalize; }

h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  /* identical to box height, or 156% */
  letter-spacing: -0.01em; }

h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  letter-spacing: -0.01em; }

h6 {
  font-weight: normal;
  font-size: 1rem;
  color: #5e5e5e; }

a {
  text-decoration: none;
  color: #00929b; }

.text-center {
  text-align: center; }

.text-left {
  text-align: start; }

.text-right {
  text-align: end; }

#unsupervised-alert-dashboard .card.p2 {
  padding: 1rem !important; }

#unsupervised-alert-dashboard .card {
  min-width: fit-content; }

#unsupervised-alert-dashboard #alert-metrics-table td:nth-of-type(1) {
  font-weight: bold; }

#unsupervised-alert-dashboard .text-center {
  text-align: center; }

#unsupervised-alert-dashboard .height-30 {
  height: 30px; }

#unsupervised-alert-dashboard .graph-header {
  height: 30px;
  margin-bottom: 0; }

div.principal-member-heading {
  display: inline-flex;
  flex: 2; }
  div.principal-member-heading div {
    padding: 1px;
    display: flex; }
    div.principal-member-heading div div {
      padding: 1px;
      display: flex;
      border-right-color: #0f0f0f;
      border-right-width: 4px;
      border-right-style: solid; }
      div.principal-member-heading div div h3 {
        margin: auto; }

.principal-member-card {
  width: 100%; }

.attention {
  color: #e83434;
  font-size: 20px; }

.nested-data {
  padding: 3px; }

.watchlist-screening-dashboard #custom_scenario_parameters td,
.watchlist-screening-dashboard #custom_scenario_parameters th {
  padding-top: 0.5em;
  padding-bottom: 0.5em; }

.watchlist-screening-dashboard #matching_mode label {
  margin-right: 1em; }

.watchlist-screening-dashboard #matching_mode input[type="radio"] {
  margin-top: -1px;
  vertical-align: middle; }

.watchlist-screening-dashboard .control-border-top {
  border-top: 1px solid #dddddd;
  padding-top: 10px; }

.watchlist-screening-dashboard .header-row {
  border-bottom: 2px solid black;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between; }
  .watchlist-screening-dashboard .header-row > * {
    margin-top: 18px;
    margin-bottom: 5px; }

.watchlist-screening-dashboard #screening_config_id {
  min-width: 250px; }

.watchlist-screening-dashboard .input-emulator {
  padding: 5px;
  width: 64px;
  height: 18px;
  margin: 4px;
  text-align: center; }

.watchlist-screening-dashboard input[type="number"] {
  text-align: center;
  width: 86px; }

.watchlist-screening-dashboard .red-border-input {
  border: 3px solid #e83434;
  height: 28px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

.watchlist-screening-dashboard .cell-key {
  width: 100px;
  margin-left: 20px;
  margin-bottom: 20px;
  float: right;
  padding: 5px;
  font-family: monospace; }

.watchlist-screening-dashboard .dash-table-container td,
.watchlist-screening-dashboard .dash-table-container th {
  padding: 0 4px; }

.watchlist-screening-dashboard .dash-table-container table table th {
  background: transparent !important; }

.watchlist-screening-dashboard .legend-block {
  width: 10px;
  height: 10px;
  border: 2px solid;
  display: inline-block; }
  .watchlist-screening-dashboard .legend-block.current {
    border-color: #00929b;
    background-color: rgba(0, 146, 155, 0.5); }
  .watchlist-screening-dashboard .legend-block.proposed {
    border-color: #23a968;
    background-color: rgba(35, 169, 104, 0.5); }

.watchlist-screening-dashboard a[href="#no-link"] {
  color: black;
  cursor: help; }

.watchlist-screening-dashboard input[type="checkbox"] {
  position: relative;
  top: 2px; }
