/* global body padding */
/* global spacing overrides */

@import './styles/_colors.css';
@import './styles/_typography.css';
@import './styles/_spacing.css';
@import './styles/_common.css';

/* @font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Light.woff2') format('woff2'),
       url('/fonts/Lato-Light.woff') format('woff');
  font-weight: var(--font-weight-light);
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Regular.woff2') format('woff2'),
       url('/fonts/Lato-Regular.woff') format('woff');
  font-weight: var(--font-weight-normal);
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Bold.woff2') format('woff2'),
       url('/fonts/Lato-Bold.woff') format('woff');
  font-weight: var(--font-weight-bold);
  font-style: normal;
  font-display: swap;
} */

body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: #253540;
  padding-top: 53px;
  background-color: var(--white);
}

.ReactTable .-pagination .-pageSizeOptions {
  display: none i !important;
}

.page-fill {
  padding-top: 0;
}
.page-fill, .page-fill #app, .page-fill #app > div {
  height: 100%;
}

.navbar-brand > img {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  color: #2a3b47;
}

h3 {
  font-weight: 400;
}

/* Shared title class for settings pages */
.title,
.title:focus,
.title.focus {
  font-size: 20px;
  font-weight: 300;
  box-shadow: none !important;
  margin-top: 8px;
  color: var(--text-dark);
}

hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

.navbar-fixed-top,
.navbar-static-top {
  border-bottom: 0;
}

.container-fluid {
  padding: 0;
}

.navbar-nav .dropdown-menu {
  background:#05145d !important;
  border-radius: 0;
  color: var(--white);;
}

.nav-tabs .nav-item.show .nav-link {
  border-color: rgba(24, 50, 71, 0.1);
}
@media print {
  .notification_footer {
    position: fixed !important;
    bottom: 0;
  }
}
.navbar-blue .navbar-nav .nav-link {
  color: var(--white);
}

.iconav-brand {
  display: block;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  color: #eee;
  text-align: center;
  border-bottom: 0;
  background: none;
}
.bg-dark {
  background-color: #173e4d !important;
}

.navbar-dark .navbar-nav .nav-link.active {
  box-shadow: 0 -5px 0 0 #67bbaa inset;
  background: #133340;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  color: #a0d4ff;
  padding: 0rem 1rem 0.5rem 1.4rem;
  margin: 0 0.5rem;
  letter-spacing: 0.8px;
}
.navbar-dark .navbar-nav .nav-link .nav-link-icon {
  padding: 1rem;
}
.bg-blue {
  background-color: var(--navy);
}

.navbar-blue .navbar-nav .nav-link.active {
  opacity: 1;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--white);
  opacity: 1;
}
#nav-tab {
  a {
    color: var(--text-dark);
  }
}

.navbar-blue .navbar-nav .nav-link .nav-link-icon {
  padding: 1rem;
}
h3 {
  font-size: 23px;
}
.btn {
  cursor: pointer;
}
.btn-primary {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.btn-nhs {
  color: var(--white);
  border-color: #1d70b8;
  background: #1d70b8;
  padding-top: 11px;
  padding-bottom: 11px;
}

.btn[disabled] {
  cursor: not-allowed;
}

.btn-primary:not([disabled]):hover {
  background-color: #08a742;
  border-color: #08a742;
  color: var(--white);
}
.btn.btn-secondary {
  color: #05145d;
  background: transparent;
  box-shadow: inset 0 0 0 1px #05145d;
}
.btn.btn-secondary:hover {
  color: var(--navy);
  background: var(--light__base);
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 0;
}
.table th {
  color: #7a8da0;
  font-weight: 200;
}

.table-wrap td {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}


.ReactTable {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.ReactTable * {
  box-sizing: border-box;
}
.ReactTable .rt-table {
  -webkit-box-flex: 1;
  -ms-flex: auto 1;
  flex: auto 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  border-collapse: collapse;
  overflow: auto;
}
.ReactTable .rt-thead {
  background-color: var(--dark__base);
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ReactTable .rt-thead.-headerGroups {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.ReactTable .rt-thead.-filters {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.ReactTable .rt-thead.-filters input,
.ReactTable .rt-thead.-filters select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline: none;
}
.ReactTable .rt-thead.-filters .rt-th {
  border-right: 1px solid rgba(0, 0, 0, 0.02);
}
.ReactTable .rt-thead.-header {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
}
.ReactTable .rt-thead .rt-tr {
  text-align: center;
}
.ReactTable .rt-thead .rt-th,
.ReactTable .rt-thead .rt-td {
  padding: 5px 5px;
  line-height: normal;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 0 0 0 transparent;
}
.ReactTable .rt-thead .rt-th.-sort-asc,
.ReactTable .rt-thead .rt-td.-sort-asc {
  box-shadow: inset 0 3px 0 0 rgba(0, 0, 0, 0.6);
}
.ReactTable .rt-thead .rt-th.-sort-desc,
.ReactTable .rt-thead .rt-td.-sort-desc {
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6);
}
.ReactTable .rt-thead .rt-th.-cursor-pointer,
.ReactTable .rt-thead .rt-td.-cursor-pointer {
  cursor: pointer;
}
.ReactTable .rt-thead .rt-th:last-child,
.ReactTable .rt-thead .rt-td:last-child {
  border-right: 0;
}
.ReactTable .rt-thead .rt-resizable-header {
  overflow: visible;
}
.ReactTable .rt-thead .rt-resizable-header:last-child {
  overflow: hidden;
}
.ReactTable .rt-thead .rt-resizable-header-content {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ReactTable .rt-thead .rt-header-pivot {
  border-right-color: #f7f7f7;
}
.ReactTable .rt-thead .rt-header-pivot:after,
.ReactTable .rt-thead .rt-header-pivot:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.ReactTable .rt-thead .rt-header-pivot:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: var(--white);
  border-width: 8px;
  margin-top: -8px;
}
.ReactTable .rt-thead .rt-header-pivot:before {
  border-color: rgba(102, 102, 102, 0);
  border-left-color: #f7f7f7;
  border-width: 10px;
  margin-top: -10px;
}
.ReactTable .rt-tbody {
  -webkit-box-flex: 99999;
  -ms-flex: 99999 1 auto;
  flex: 99999 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: auto;
}

#careplanGrid {
  .rt-tbody {
    background-color: #efefef;
    padding-inline: var(--spacing-sm);
  }
}

.ReactTable .rt-tbody .rt-tr-group {
  border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}
.ReactTable .rt-tbody .rt-tr-group:last-child {
  border-bottom: 0;
}
.ReactTable .rt-tbody .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.02);
}
.ReactTable .rt-tbody .rt-td:last-child {
  border-right: 0;
}
.ReactTable .rt-tbody .rt-expandable {
  cursor: pointer;
}
.ReactTable .rt-tr-group {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.ReactTable .rt-tr {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ReactTable .rt-th,
.ReactTable .rt-td {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 7px 5px;
  overflow: hidden;
  transition: 0.3s ease;
  transition-property: width, min-width, padding, opacity;
}
.ReactTable .rt-th.-hidden,
.ReactTable .rt-td.-hidden {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
}
.ReactTable .rt-expander {
  display: inline-block;
  position: relative;
  margin: 0;
  color: transparent;
  margin: 0 10px;
}
.ReactTable .rt-expander:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  border-left: 5.04px solid transparent;
  border-right: 5.04px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.ReactTable .rt-expander.-open:after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.ReactTable .rt-resizer {
  display: inline-block;
  position: absolute;
  width: 36px;
  top: 0;
  bottom: 0;
  right: -18px;
  cursor: col-resize;
  z-index: 10;
}
.ReactTable .rt-tfoot {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.ReactTable .rt-tfoot .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.ReactTable .rt-tfoot .rt-td:last-child {
  border-right: 0;
}
.ReactTable.-striped .rt-tr.-odd {
  background: rgba(0, 0, 0, 0.03);
}
.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
  background: rgba(0, 0, 0, 0.05);
}
.ReactTable .-pagination {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: var(--spacing-md);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.ReactTable .-pagination input,
.ReactTable .-pagination select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline: none;
}
.ReactTable .-pagination .-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.1s ease;
  cursor: pointer;
  outline: none;
}
.ReactTable .-pagination .-btn[disabled] {
  opacity: 0.5;
  cursor: default;
}
.ReactTable .-pagination .-btn:not([disabled]):hover {
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
}
.ReactTable .-pagination .-previous,
.ReactTable .-pagination .-next {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.ReactTable .-pagination .-center {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  text-align: center;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.ReactTable .-pagination .-pageInfo {
  display: inline-block;
  margin: 3px 10px;
  white-space: nowrap;
}
.ReactTable .-pagination .-pageJump {
  display: inline-block;
}
.ReactTable .-pagination .-pageJump input {
  width: 70px;
  text-align: center;
}
.ReactTable .-pagination .-pageSizeOptions {
  margin: 3px 10px;
}
.ReactTable .rt-noData {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: none;
  padding: 20px;
  color: rgba(0, 0, 0, 0.5);
}
.ReactTable .-loading {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.ReactTable .-loading > div {
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ReactTable .-loading.-active {
  opacity: 1;
  z-index: 2;
  pointer-events: all;
}
.ReactTable .-loading.-active > div {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.ReactTable .rt-resizing .rt-th,
.ReactTable .rt-resizing .rt-td {
  transition: none !important;
  cursor: col-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ReactTable {
  border: 0;
  background: var(--white);
}

.ReactTable .rt-thead .rt-th.-sort-asc {
  box-shadow: inset 0 3px 0 0 rgba(103, 187, 170, 0.6);
  box-shadow: none;
}

.ReactTable .rt-thead .rt-th.-sort-desc {
  box-shadow: inset 0 -3px 0 0 rgba(103, 187, 170, 0.6);
  box-shadow: none;
}

.ReactTable .rt-tbody {
  position: relative;
}
.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
  background-color: var(--dark__base);
  color: var(--dark__base-shade);
}
.ReactTable .rt-tr {
  border: 1px solid transparent;
  min-height: 30px;
  padding: 5px;
}

.ReactTable .rt-tbody .rt-td {
  font-size: 14px;
}

.ReactTable .rt-thead.-header {
  box-shadow: none;
  font-weight: 400;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 0 0;
  color: rgb(38, 41, 44);
  border: 1px solid rgba(0, 77, 128, 0.0392157);
}
.ReactTable .rt-thead .rt-th {
  text-align: left;
  padding: 10px;
}
.ReactTable .rt-thead .rt-th,
.ReactTable .rt-thead .rt-td {
  border-right: 0;
}

.ReactTable .rt-td {
  padding: 7px 13px;
}

.ReactTable.-striped .rt-tr.-even {
  background: var(--white);
}

.react-autosuggest__suggestions-container {
  position: absolute;
  z-index: 100;
  max-height: 300px;
  overflow: hidden;
  overflow-y: auto;
  background: var(--white);
  -webkit-box-shadow: 0 1px 0 0 hsla(0, 0%, 100%, 0.08),
    inset 1px 2px 3px 0 rgba(41, 108, 163, 0.18);
  box-shadow: 0 1px 0 0 hsla(0, 0%, 100%, 0.08),
    inset 1px 2px 3px 0 rgba(41, 108, 163, 0.18);
}

.ReactModal__Body--open {
  overflow-y: hidden;
}

.form-open #app {
  filter: blur(5px);
}

.react-datepicker-wrapper,
.react-datepicker__input-container {
  display: block !important;
}

.form-control:focus {
  border-color: #08a742;
  box-shadow: 0 0 4px 1px rgba(0, 208, 228, 0.3), 0 0 0 1px #08a742;
  outline: 0;
}

.was-validated .form-control:invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #f2545b !important;
  box-shadow: 0 0 1px 2px #f2545b !important;
}

.react-autosuggest__suggestions-list {
  width: 299px;
  list-style-type: none;
  padding: 7px;
}
.react-autosuggest__suggestion {
  padding: 7px 0;
  padding-left: 2px;
  cursor: pointer;
}
.react-autosuggest__suggestion:hover {
  background: rgba(245, 248, 250, 0.5);
}

.react-toggle {
  touch-action: pan-x;

  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.react-toggle-track {
  width: 58px;
  height: 31px;
  padding: 0;
  border-radius: 30px;
  background-color: #4d4d4d;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000;
}

.react-toggle--checked .react-toggle-track {
  background-color: #00a4bd;
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #00a4bd;
}

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  width: 28px;
  height: 28px;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  background-color: #fafafa;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #00a4bd;
}

.react-toggle--focus .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 3px 2px #0099e0;
  -moz-box-shadow: 0px 0px 3px 2px #0099e0;
  box-shadow: 0px 0px 2px 3px #0099e0;
}

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 5px 5px #0099e0;
  -moz-box-shadow: 0px 0px 5px 5px #0099e0;
  box-shadow: 0px 0px 5px 5px #0099e0;
}

.rw-widget-picker {
  height: 45px !important;
  height: 36px !important;
}

.redux-toastr .toastr .close-toastr {
  color: var(--white);
}

.react-autosuggest__suggestion {
  color: #000;
}

.navbar-nav {
  flex-direction: row;
  gap: var(--gap-sm);
  justify-content: center;
  align-items: center;
}

.nav-icons {
  gap: var(--gap-md);
}

#form-content .accordion__title {
  background-color: none;
  color: #444;
  cursor: pointer;
  padding: 6px;
  width: 100%;
  text-align: left;
  font-weight: 400;
}

#form-content .accordion {
  margin-top: 10px;
  border: 0;
  background: rgba(245, 248, 250, 0.5);
}

#form-content .accordion__body {
  padding: 20px;
  display: block;
  padding-top: 0px;
  animation: fadein 0.35s ease-in;
}

#form-content .accordion__body--hidden {
  display: none;
  opacity: 0;
  animation: fadein 0.35s ease-in;
}

.mainContainer {
  position: relative;
  margin-left: 260px;
  margin-right: 20px;
}
.mainContainer__rightEmpty {
  margin-right: 0;
}

.leftRail {
  max-width: 250px;
  height: 100vh;
  left: 0;
  background-color: var(--white);
  position: fixed;
}

.rightRail {
  max-width: 300px;
  height: 100vh;
  right: 0;
  position: fixed;
}

@media (max-width: 576px) {
  .leftRail {
    max-width: 100%;
  }
}

@media print {
  iframe {
    display: none !important;
  }
  body {
    background: none;
    padding: 0px !important;
  }
  #fc_frame {
    display: none !important;
  }
  .leftRail,
  .rightRail {
    display: none;
  }
  .mainContainer {
    margin-left: 15px;
    margin-right: 15px;
  }
  .ReactTable .rt-thead.-filters {
    display: none;
  }
}

@media only screen and (max-width: 766px) {
  .navbar-nav {
    display: block;
  }
  .navbar-light .navbar-nav .nav-link {
    text-align: left;
  }
}

.consent-picker .fsp-header {
  display: none !important;
}

.consent-picker .fsp-drop-area-container {
  padding: 0;
}

@media screen and (max-width: 1024px) {
  #github {
    display: none;
  }
}

.rdw-dropdown-optionwrapper {
  min-width: 250px;
  border: 1px solid #05145d !important;
}

.rdw-dropdownoption-default {
  color: #05145d;
  padding: 3px  !important;
  font-weight: 400;
  margin-left: 8px;

}


.react-autosuggest__container {
  position: relative;
}

.react-autosuggest__input {
  width: 240px;
  height: 30px;
  padding: 10px 20px;
  font-weight: 300;
  font-size: 16px;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.react-autosuggest__input--focused {
  outline: none;
}

.react-autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.react-autosuggest__suggestions-container {
  display: none;
}

.react-autosuggest__suggestions-container--open {
  display: block;
  position: absolute;
  top: 51px;
  width: 280px;
  border: 1px solid #aaa;
  background-color: var(--white);
  font-weight: 300;
  font-size: 16px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 2;
}

.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px 20px;
}

.react-autosuggest__suggestion--highlighted {
  background-color: #ddd;
}

.react-autosuggest__section-container {
  border-top: 1px dashed #ccc;
}

.react-autosuggest__section-container--first {
  border-top: 0;
}

.react-autosuggest__section-title {
  padding: 10px 0 0 10px;
  font-size: 12px;
  color: #777;
}


.img-thumbnail {
  border: 0px !important;
}

.ReactTable .rt-thead .rt-th.-sort-asc, .ReactTable .rt-thead .rt-td.-sort-asc, .ReactTable .rt-thead.-header {
  box-shadow: none !important;
}

.alert-danger {
  background-color: #f94839;
  color: var(--white);
}

.dashhead {
  background: var(--white);
  padding: var(--spacing-md);
}

@media (max-width: 576px) {
.ReactModal__Content {
  width: 100% !important;
}
}

.navbar-toggler {
  background: var(--white);
}

/* Used by the beta version of reports to display separate app within the layout */
.beta-reports-iframe {
  width: 100vw;
  height: 100vh;
  border: 0;
}

/* Hide HubSpot bot during print */
@media print {
  #hubspot-messages-iframe-container,
  iframe[src*="js.hs-scripts.com"],
  .hubspot-link__container,
  [id^="hubspot-messages"],
  [class*="hubspot"] {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Same hiding rules when HubSpot agent is disabled */
body.hideHubSpotAgent #hubspot-messages-iframe-container,
body.hideHubSpotAgent iframe[src*="js.hs-scripts.com"],
body.hideHubSpotAgent .hubspot-link__container,
body.hideHubSpotAgent [id^="hubspot-messages"],
body.hideHubSpotAgent [class*="hubspot"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
