@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap");

:root {
  --color-primary-black: #374750;
  --color-primary-blue: var(--chakra-colors-brand-500);
  --color-primary-red: var(--chakra-colors-red-500);
  --color-primary-olive: #9a9384;
  --color-secondary-grey-medium: #a2aab0;
  --color-secondary-grey-light: #f7f7f7;
  --color-secondary-white: #ffffff;
  --typography-typeface: "Open Sans", sans-serif;
  --typography-typeface-weight-light: 300;
  --typography-typeface-weight-normal: normal;
  --typography-typeface-weight-semi-bold: 600;
  --typography-typeface-weight-bold: bold;
}

a {
  color: var(--color-primary-blue);
}

h1.page-title {
  font-size: 36px;
  font-weight: var(--typography-typeface-weight-light);
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  letter-spacing: normal;
  color: var(--color-primary-black);
  padding-left: 1rem;
}

.page-title-timestamp {
  font-size: 20px;
  font-weight: var(--typography-typeface-weight-light);
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  letter-spacing: normal;
  color: var(--color-primary-black);
}

h1 {
  font-size: 22px;
  font-weight: var(--typography-typeface-weight-normal);
  font-stretch: normal;
  line-height: 1.45;
  letter-spacing: normal;
  color: var(--color-primary-black);
}

h2 {
  font-size: 18px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  color: var(--color-primary-black);
}

.main-pane {
  overflow: auto;
  height: 100vh;
  padding-right: 0;
}

.auth-component {
  padding-right: 0;
}

.sidebar-col {
  padding-right: 0;
}

.col-form-label {
  font-size: 13px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  font-style: normal;
  font-stretch: normal;
  line-height: 1.23;
  letter-spacing: normal;
  color: var(--color-primary-black);
}

.get-out-button {
  padding-top: 20px;
  text-align: right;
  padding-bottom: 0px;
}

.form-check-container {
  margin-left: 1.5rem;
}

.form-label-small {
  font-size: 13px;
  font-weight: var(--typography-typeface-weight-normal);
  font-style: normal;
  font-stretch: normal;
  line-height: 1.23;
  text-align: right;
  letter-spacing: normal;
  color: var(--color-primary-black);
  white-space: pre-wrap;
  vertical-align: bottom;
}

.form-label-small-italic {
  font-size: 13px;
  font-weight: var(--typography-typeface-weight-normal);
  font-style: italic;
  font-stretch: normal;
  line-height: 1.23;
  text-align: right;
  letter-spacing: normal;
  color: var(--color-primary-black);
}

.form-unit {
  padding-left: 10px;
}

.form-control {
  font-size: 13px;
  font-weight: var(--typography-typeface-weight-normal);
  font-style: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: normal;
  color: var(--color-primary-black);
  border-radius: var(--chakra-radii-md);
  border: solid 0.5px rgba(55, 71, 80, 0.25);
  background-color: var(--color-secondary-white);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.04);
}

.form-control-plaintext {
  padding: 6px 0px;
  font-size: 16px;
  line-height: 16px;
}

.form-control:active {
  color: var(--color-primary-black);
  border: solid 0.5px var(--color-primary-black);
  background-color: var(--color-secondary-white);
}

.form-control.error {
  border:
    solid 0,
    5px var(--color-primary-red);
}

.input-group-text {
  font-size: 13px;
  font-weight: var(--typography-typeface-weight-normal);
  font-style: normal;
  font-stretch: normal;
  line-height: 20px;
  letter-spacing: normal;
  color: var(--color-primary-black);
  border-radius: 0px 16px 16px 0px;
  border: solid 0.5px rgba(55, 71, 80, 0.25);
  background-color: var(--color-secondary-grey-light);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.04);
}

svg.feather {
  margin-right: 8px;
  margin-bottom: 1px;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-top-color: var(--color-secondary-white);
}

.tooltip > .tooltip-inner {
  background-color: var(--color-secondary-white);
  color: var(--color-primary-black);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: var(--chakra-radii-md);
  padding: 13px 16px;
  max-width: 500px;
  white-space: pre-wrap;
}

.popover {
  max-width: none;
}

.tooltip {
  max-width: 500px;
  pointer-events: none;
}

.tooltip.show {
  opacity: 1;
}

.modal-title {
  font-size: 20px;
  font-weight: var(--typography-typeface-weight-normal);
  font-stretch: normal;
  letter-spacing: normal;
  color: var(--color-primary-black);
}

body {
  font-family: var(--typography-typeface);
}

/* body p {
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-normal);
  font-style: normal;
  font-stretch: normal;
  line-height: 2;
  letter-spacing: normal;
  color: var(--color-primary-black);
} */

body p.alt {
  color: var(--color-primary-olive);
}

small {
  font-size: 13px;
  font-weight: var(--typography-typeface-weight-normal);
  font-style: normal;
  font-stretch: normal;
  line-height: 1.85;
  letter-spacing: normal;
  color: var(--color-primary-black);
}

small.extra {
  font-size: 11px;
  line-height: 1.45;
}

.largeText {
  line-height: 29px;
}

.btn {
  border-radius: var(--chakra-radii-md);
  padding: 6px 24px;
  font-weight: var(--typography-typeface-weight-normal);
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  font-size: 14px;
}

.btn:not(:disabled):not(.disabled):hover {
  box-shadow: 0 3px 16px 0px rgba(100, 39, 39, 0.33);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.3;
  filter: grayscale(100%);
}

.btn.danger,
.btn-danger,
.btn-danger:hover,
.btn-primary-red:not(:disabled):not(.disabled):active,
.btn-danger:focus,
.show > .btn-danger.dropdown-toggle,
.btn-danger.disabled,
.btn-danger:disabled {
  color: var(--color-secondary-white);
  background-color: var(--color-primary-red);
  border-color: var(--color-primary-red);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:focus,
.show > .btn-primary.dropdown-toggle,
.btn-primary.disabled,
.btn-primary:disabled {
  color: var(--color-secondary-white);
  background-color: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
}

.btn-outline-dark,
.btn-outline-dark:hover,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:focus,
.show > .btn-outline-dark.dropdown-toggle,
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: var(--color-secondary-grey-medium);
  border: solid 0.8px var(--color-secondary-grey-medium);
  background-color: var(--color-secondary-white);
  padding: 6px 16px;
}

button.icon {
  height: 42px;
  width: 42px;
  background-color: var(--color-secondary-grey-light);
}

.btn-undercover {
  background: none !important;
  border: none;
  color: var(--color-primary-black);
  padding: 0 !important;
  cursor: pointer;
}

.question-list {
  cursor: pointer;
}

.card {
  /* box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.06); */
  border: none;
  border-radius: 8px;
  padding: 37px 4px;
  margin-bottom: 37px;
}

.breadcrumb {
  font-size: 12px;
  line-height: 15px;
  background-color: inherit;
}

.table-responsive {
  margin: 0 -0.75rem;
  overflow: visible;
}

.table thead th {
  color: var(--color-secondary-grey-medium);
  font-size: 16px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  line-height: 16px;
}

.table tbody td {
  color: var(--color-primary-black);
  font-size: 16px;
  line-height: 16px;
}

.report-table thead th {
  color: var(--color-primary-black);
  background-color: var(--color-secondary-grey-medium);
  font-size: 16px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  line-height: 16px;
}

.report-table > * > tr > * {
  white-space: nowrap;
}

.report-table .form-control-plaintext {
  width: auto;
}

.table-responsive {
  overflow: auto;
}

.wrap-text {
  word-break: break-all;
  white-space: normal !important;
}

span.disabled {
  color: #6c757d;
}

.table-risk-matrix,
.table-risk-matrix-disabled {
  margin-top: 20px;
}

.table-risk-matrix th {
  color: var(--color-primary-black);
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-normal);
}

.table-risk-matrix thead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.table-risk-matrix td {
  color: var(--color-primary-black);
  font-size: 12px;
  border: 1px solid black;
  padding: 10px;
}

.table-risk-matrix .selected {
  background-color: orangered;
}

.table-risk-matrix .highlighted {
  background-color: orange;
}

.table-risk-matrix-disabled th {
  color: #6c757d;
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-normal);
}

.table-risk-matrix-disabled thead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.table-risk-matrix-disabled td {
  color: #6c757d;
  font-size: 12px;
  border: 1px solid #6c757d;
  padding: 10px;
}

.table-risk-controls {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.badge:not(.badge-pill) {
  border-radius: 3px;
  padding: 5px 8px;
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  font-style: normal;
  font-stretch: normal;
  line-height: 16px;
  letter-spacing: normal;
}

.badge-pill {
  font-size: 11px;
  padding: 2px 4px;
  line-height: 11px;
  border-radius: 11px;
  position: relative;
  top: -3px;
}

.badge-success {
  color: var(--color-secondary-white);
  background-color: var(--chakra-colors-green-500);
}

.badge-danger {
  color: var(--color-secondary-white);
  background-color: var(--color-primary-red);
}

.badge-warning {
  color: var(--color-secondary-white);
  background-color: var(--chakra-colors-teal-500);
}

.badge-primary {
  color: var(--color-secondary-white);
  background-color: var(--color-primary-olive);
}

.badge-secondary {
  color: var(--color-secondary-white);
  background-color: #fe687f;
}

.badge-light {
  color: var(--color-primary-black);
}

.dropdown-menu.show {
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
  padding: 5px 0;
  max-height: 50vh;
  overflow-y: auto;
}

.dropdown-menu.show > a {
  padding: 10px 16px;
  display: block;
  color: var(--color-primary-black);
}

a.dropdown-item.disabled,
a.dropdown-item:disabled {
  color: var(--color-secondary-grey-medium);
}

.dropdown-menu.show > a:hover {
  background-color: var(--color-secondary-grey-light);
}

.spinner-border {
  margin: 20px auto;
  border-color: var(--color-primary-olive);
  border-right-color: transparent;
}

.alert {
  border-radius: 0;
  padding: 24px;
  font-size: 15px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  font-style: normal;
  font-stretch: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: var(--color-secondary-white);
}

.alert-success {
  box-shadow: 0 26px 14px -28px #fe565b;
  background-image: linear-gradient(to top, #6348fd, #6b52f8);
}

.alert-danger {
  box-shadow: 0 26px 14px -28px #fe565b;
  background-image: linear-gradient(to top, #fe8488, #ff6663);
}

.alert-dismissible {
  padding-right: 55px;
}

.alert-dismissible .close {
  top: 12px;
}

/* sidebar */
.sideNav {
  height: calc(100vh - 64px);
  position: static;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  padding: 20px 0;
  color: var(--color-primary-black);
}

.sideNav.fullSize {
  background-color: var(--chakra-colors-gray-50);
  border-right-color: var(--chakra-colors-gray-300);
  border-right-width: 2px;
  border-right-style: solid;
}

.sideNavTemplate {
  background-color: #f7f7f7;
  /* #9A9384; */
  border-right-color: var(--chakra-colors-red-800);
  border-right-width: 2px;
}

.sideNavOpen {
  padding-left: var(--chakra-space-3);
  padding-right: var(--chakra-space-3);
}

.sideNavClosed {
  width: 80px;
  margin-left: 0px;
}

.navMenu {
  padding: 16px;
}

.navMenu > aside div {
  margin-bottom: 14px;
}

.navMenu > aside > h3 {
  color: var(--color-primary-black);
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  line-height: 19px;
  display: block;
  width: 100%;
  background-color: var(--color-secondary-white);
  border-radius: 4px;
  padding: 8px 16px;
  box-shadow: 0 8px 24px 0 rgba(95, 109, 138, 0.06);
}

.navMenu div[level="1"] {
  padding: 8px 0px;
}

.navMenuHeading {
  display: flex;
  align-items: center;
}

.navMenuHeading h3 {
  font-family: var(--typography-typeface);
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  margin: 0;
}

.navItemSelected span,
.navItemUnselected span {
  margin-left: 8px;
}

.navItemSelected,
.navItemUnselected {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navItemSelected {
  background-color: var(--chakra-colors-white);
  border-radius: var(--chakra-radii-md);
  padding: 4px;
  margin-left: -4px;
  display: block;
  width: 100%;
}

.children {
  margin-left: 16px;
}

.sideNavCollapse {
  margin-right: 0px;
}

.sideNavOpen a,
.sideNavOpen a:hover {
  color: var(--color-primary-black);
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  line-height: 40px;
  font-family: var(--typography-typeface);
}

.text-link {
  color: var(--color-primary-black);
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  line-height: 40px;
  font-family: var(--typography-typeface);
  display: inline;
  cursor: pointer;
}

.text-link:hover {
  text-decoration: underline;
}

.hasReadableID a,
.hasReadableID a:hover {
  line-height: 2;
}

.readableID {
  font-size: 12px;
  margin-left: 48px;
  line-height: 1.2;
  height: 20px;
}

.navItemSelected a,
.navItemSelected a:hover {
  color: var(--color-primary-black);
  font-size: 14px;
  font-weight: var(--typography-typeface-weight-bold);
  font-family: var(--typography-typeface);
}

.childlessNavItem {
  margin-left: 16px;
}

.nsewdrag {
  cursor: pointer !important;
}

.sideNavLogo {
  flex-grow: 0;
  padding: 0 10px 20px 25px;
}

.sideNavBackButton {
  height: 50px;
  border-radius: 30px;
  width: 50px;
  text-align: center;
  margin-left: 8px;
  background-color: transparent;
  border-color: transparent;
}

.sideNavBackButton.btn {
  width: 50px;
}

.sideNavBackButton svg {
  display: block;
  margin-left: -8px;
}

.sideNavContainer {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.sideNavContainer > .row {
  flex: 0 1 auto;
}

.logoutButton {
  margin-top: 10px;
}

.accountSwitch {
  flex-grow: 0;
  padding: 0 30px 20px;
}

fieldset {
  width: 100%;
  display: block;
}

/* Question Wrapper */
.greyTitle {
  color: var(--color-secondary-grey-medium);
}

/* pagination */
.page-item.active .page-link {
  background-color: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
}

.page-item:first-child .page-link {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.page-link {
  color: var(--color-primary-blue);
}

.page-link:hover {
  color: var(--color-primary-blue);
  background-color: var(--color-secondary-grey-light);
  border-color: var(--color-secondary-grey-medium);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
}

.newObjectTypeDropdown {
  position: relative;
  left: 860px;
  bottom: 75px;
}

.deleted {
  display: inline;
}

.fakeLink {
  text-decoration: underline !important;
  cursor: pointer;
}

.templateButtonsRow {
  padding: var(--chakra-space-3);
  margin: 0;
  text-align: right;
  justify-content: end;
  float: right;
}

/* custom field */
.customfield-row {
  margin-bottom: 15px;
}

.tooltip-inner {
  background-color: white;
  color: #000000;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  border-bottom-color: white;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-top-color: white;
}

.bs-tooltip-auto[x-placement^="left"] .arrow::before,
.bs-tooltip-left .arrow::before {
  border-left-color: white;
}

.bs-tooltip-auto[x-placement^="right"] .arrow::before,
.bs-tooltip-right .arrow::before {
  border-right-color: white;
}

.select > div {
  font-size: 13px;
  border-radius: 25px;
}

.select > :nth-child(3) > div > div:first-child {
  border-top-right-radius: 25px;
}

.select > :nth-child(3) > div > div:last-child {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.select > div > div {
  padding-top: 0px;
  padding-bottom: 0px;
}

.select1 > div {
  font-size: 13px;
  border-radius: 25px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

/* plotly */
.modebar {
  display: none;
}

.js-plotly-plot {
  margin: 0 auto;
  width: max-content;
  display: block !important;
}

.js-plotly-plot2 {
  margin: 0 0;
  width: max-content;
  display: block !important;
}

.js-plotly-plot .plotly .cursor-crosshair {
  cursor: pointer !important;
}

g.slice {
  cursor: pointer !important;
}

.chart-no-records img {
  height: 305px;
  margin: 0 auto;
  display: block;
}

.chart-no-records p {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  background-color: var(--color-secondary-white);
  padding: 0 10px;
  border-radius: 14px;
  box-shadow: 0px 0px 10px var(--color-primary-olive);
}

/* Settings Page */
.inlineDropdown {
  display: inline;
  margin-left: 5px;
  margin-right: 5px;
}

.darkText {
  color: var(--color-primary-black);
}

.stealthLink {
  background: none !important;
  border: none;
  padding: 0 !important;
  /*input has OS specific font-family*/
  color: #069;
  text-decoration: underline;
  cursor: pointer;
}

/* uploader */

.ant-upload.ant-upload-drag {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.ant-upload.ant-upload-drag .ant-upload.ant-upload-btn {
  padding: 0;
}

.ant-upload.ant-upload-select.ant-upload-select-text {
  position: relative;
  width: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  padding: 0;
}

.ant-upload-list {
  position: relative;
  width: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 0 0 4px 4px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  padding: 0;
}

.ant-upload.ant-upload-select.ant-upload-select-text span.ant-upload {
  padding: 16px;
  height: 100%;
  width: 100%;
  display: block;
}

/* Froala Rich Text Editor */
.fr-view p {
  line-height: inherit;
  font-size: 1rem;
}

.fr-btn {
  transition-property: background-color;
  transition-duration: var(--chakra-transition-duration-faster);
}

.fr-box {
  border: 1px solid;
  border-color: var(--chakra-colors-gray-200);
  transition-property: var(--chakra-transition-property-common);
  transition-duration: var(--chakra-transition-duration-normal);
}

.fr-box:focus-within {
  border-color: #3182ce;
  box-shadow: 0 0 0 1px #3182ce;
}

.fr-box.fr-basic .fr-wrapper {
  border: 0;
}

.fr-second-toolbar {
  border: 0;
}

.fr-toolbar {
  border: 0;
}

.fr-toolbar .fr-command.fr-btn,
.fr-popup .fr-command.fr-btn,
.fr-modal .fr-command.fr-btn,
.fr-wrapper,
.fr-placeholder,
.fr-element.fr-view {
  z-index: initial !important;
}

.fr-view {
  & ul {
    margin-left: 0;
    padding-left: 0;
  }

  & li {
    margin-left: 1em;
  }

  & table li {
    margin-left: 2em;
  }
}

.fr-wrapper.show-placeholder .fr-placeholder {
  display: none;
}

.light-font {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
}

.list-item {
  margin-bottom: 10px;
}

/*classes used in PageFields*/
.header-row-pageFields {
  color: rgb(162, 170, 176);
  padding-bottom: 10px;
}

.normal-column-pageFields {
  padding: 10px;
}

.checkBox-column-pageFields {
  padding: 10px 0px 0px 40px;
}

/* Register Dashboard*/
.header-row-register-Dashboard {
  color: rgb(162, 170, 176);
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: var(--typography-typeface-weight-semi-bold);
  line-height: 16px;
}

/* Notes */
.note-card {
  padding: 0px;
  margin-bottom: 20px;
}

.button-invisible {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  padding-bottom: 5px;
}

.button-invisible:not(:disabled):not(.disabled):hover {
  border: none;
  background-color: rgba(0, 0, 0, 0.03);
  box-shadow: 0 3px 8px 0px rgba(100, 39, 39, 0.33);
  border-radius: 5px;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.mention-input__mention-tag {
  background-color: rgba(107, 82, 248, 0.1);
}

.mention-input.editable {
  min-height: 100px;
  padding: 10px;
}

.mention-input.read-only {
  max-height: min-content;
}

.mention-input__input {
  border-radius: 5px;
  border: none;
  outline: none;
}

.mention-input.editable .mention-input__input {
  padding: 10px !important;
}

.mention-input__input.editable textarea {
  padding: 10px !important;
}

textarea:read-only {
  border: 0;
  outline: none;
}

.notes-modal .modal-content {
  min-height: 60vh;
}

.note-card .card-body {
  padding: 5px 10px !important;
  background-color: rgba(0, 0, 0, 0.03);
}

.note-card .editable.card-body {
  padding: 0px !important;
}

.note-count {
  margin-left: -10px;
  background-color: var(--color-primary-blue);
  color: white;
  border-radius: 10px;
  padding: 0px 5px;
  font-size: 0.6rem;
  display: inline-block;
  min-width: max-content;
  max-width: min-content;
  position: absolute;
}

.mention-input__suggestions {
  margin-top: 30px !important;
  margin-left: 20px !important;
  padding: 6px;
  overflow: auto;
  max-height: 30vh;
  width: 300px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--color-secondary-grey-medium);
  box-shadow: 2px 2px 2px var(--color-secondary-grey-medium);
}

.mention-input__suggestions__item {
  padding: 4px;
  font-size: 0.9rem;
}

.mention-input__suggestions__item--focused {
  background-color: var(--color-secondary-grey-light);
}

.mention-input__suggestions__item__display {
  margin-left: 5px;
}

.note-avatar {
  padding: 3px;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: inline-block;
  letter-spacing: -1px;
  text-align: center;
  font-weight: 500;
  color: white;
  margin: 0px 5px 5px 0px;
}

.note-avatar.dropdown {
  padding: 9px 5px;
  margin: 0;
}
